From d3ae4ae74fa97c883f2ef61a7bde22c48d25cb8d Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Tue, 12 Jan 2021 21:22:06 -0500 Subject: [PATCH 1/3] apply main fix to prevent relationship duplicates. closes #58 - removes description from Relationship --- frameworks/nist800-53-r4/parse_mappings.py | 17 +++++++++-------- frameworks/nist800-53-r5/parse_mappings.py | 17 +++++++++-------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/frameworks/nist800-53-r4/parse_mappings.py b/frameworks/nist800-53-r4/parse_mappings.py index 28244029..cd5ef65e 100644 --- a/frameworks/nist800-53-r4/parse_mappings.py +++ b/frameworks/nist800-53-r4/parse_mappings.py @@ -52,7 +52,7 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): for attackobject in tqdm(attackdata, desc="parsing ATT&CK data", bar_format=tqdmformat): if not attackobject["type"] == "relationship": # skip objects without IDs - if not "external_references" in attackobject: continue + if "external_references" not in attackobject: continue # skip deprecated and revoked objects if "revoked" in attackobject and attackobject["revoked"]: continue if "x_mitre_deprecated" in attackobject and attackobject["x_mitre_deprecated"]: continue @@ -66,7 +66,7 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): controlID_to_stixID[sdo["external_references"][0]["external_id"]] = sdo["id"] # build mapping relationships - relationships = [] + relationships = {} mappings_df = pd.read_csv(mappingspath, sep="\t", keep_default_na=False, header=0) for index, row in tqdm(list(mappings_df.iterrows()), desc="parsing mappings", bar_format=tqdmformat): # create list of control STIX IDs matching this row @@ -74,8 +74,8 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): # create list of technique STIX IDs matching this row toIDs = dict_regex_lookup(attackID_to_stixID, row["techniqueID"]) # only have a description if the row does - description = row["description"] if row["description"] else None - + # description = row["description"] if row["description"] else None + if not fromIDs: print(Fore.RED + "ERROR: cannot find controlID", row["controlID"], Fore.RESET) if not toIDs: @@ -88,13 +88,14 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): for toID in toIDs: joined_id = f"{fromID}---{toID}" # build the mapping relationship - relationships.append(Relationship( + r = Relationship( id=relationship_ids[joined_id] if joined_id in relationship_ids else None, source_ref=fromID, target_ref=toID, relationship_type="mitigates", - description=description - )) + ) + if joined_id not in relationships: + relationships[joined_id] = r # construct and return the bundle of relationships - return Bundle(relationships) + return Bundle(*relationships.values()) diff --git a/frameworks/nist800-53-r5/parse_mappings.py b/frameworks/nist800-53-r5/parse_mappings.py index a58ac584..33b55ba8 100644 --- a/frameworks/nist800-53-r5/parse_mappings.py +++ b/frameworks/nist800-53-r5/parse_mappings.py @@ -52,13 +52,13 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): for attackobject in tqdm(attackdata, desc="parsing ATT&CK data", bar_format=tqdmformat): if not attackobject["type"] == "relationship": # skip objects without IDs - if not "external_references" in attackobject: continue + if "external_references" not in attackobject: continue # skip deprecated and revoked objects if "revoked" in attackobject and attackobject["revoked"]: continue if "x_mitre_deprecated" in attackobject and attackobject["x_mitre_deprecated"]: continue # map attackID to stixID attackID_to_stixID[attackobject["external_references"][0]["external_id"]] = attackobject["id"] - + # build mapping of control ID to stixID controlID_to_stixID = {} for sdo in tqdm(controls.objects, desc="parsing controls", bar_format=tqdmformat): @@ -66,7 +66,7 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): controlID_to_stixID[sdo["external_references"][0]["external_id"]] = sdo["id"] # build mapping relationships - relationships = [] + relationships = {} mappings_df = pd.read_csv(mappingspath, sep="\t", keep_default_na=False, header=0) for index, row in tqdm(list(mappings_df.iterrows()), desc="parsing mappings", bar_format=tqdmformat): # create list of control STIX IDs matching this row @@ -74,7 +74,7 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): # create list of technique STIX IDs matching this row toIDs = dict_regex_lookup(attackID_to_stixID, row["techniqueID"]) # only have a description if the row does - description = row["description"] if row["description"] else None + # description = row["description"] if row["description"] else None if not fromIDs: print(Fore.RED + "ERROR: cannot find controlID", row["controlID"], Fore.RESET) @@ -88,13 +88,14 @@ def parse_mappings(mappingspath, controls, relationship_ids={}): for toID in toIDs: joined_id = f"{fromID}---{toID}" # build the mapping relationship - relationships.append(Relationship( + r = Relationship( id=relationship_ids[joined_id] if joined_id in relationship_ids else None, source_ref=fromID, target_ref=toID, relationship_type="mitigates", - description=description - )) + ) + if joined_id not in relationships: + relationships[joined_id] = r # construct and return the bundle of relationships - return Bundle(relationships) + return Bundle(*relationships.values()) From 45fb5bbf4f94b8a009882533b474d96bdfedb297 Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Tue, 12 Jan 2021 21:39:42 -0500 Subject: [PATCH 2/3] update mappings and json files --- frameworks/nist800-53-r4/layers/README.md | 8 +- .../nist800-53-r4/nist800-53-r4-mappings.xlsx | Bin 181749 -> 125911 bytes .../stix/nist800-53-r4-controls.json | 12622 ++-- .../stix/nist800-53-r4-enterprise-attack.json | 41994 ++++---------- .../stix/nist800-53-r4-mappings.json | 46524 +++++---------- .../nist800-53-r5/nist800-53-r5-mappings.xlsx | Bin 182361 -> 127679 bytes .../stix/nist800-53-r5-controls.json | 4758 +- .../stix/nist800-53-r5-enterprise-attack.json | 37959 +++---------- .../stix/nist800-53-r5-mappings.json | 47439 +++++----------- 9 files changed, 56433 insertions(+), 134871 deletions(-) diff --git a/frameworks/nist800-53-r4/layers/README.md b/frameworks/nist800-53-r4/layers/README.md index 6df37dc4..f6c20916 100644 --- a/frameworks/nist800-53-r4/layers/README.md +++ b/frameworks/nist800-53-r4/layers/README.md @@ -109,10 +109,10 @@ The following [ATT&CK Navigator](https://github.com/mitre-attack/attack-navigato - SI-12 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_family/System_And_Information_Integrity/SI-12.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_family%2FSystem_And_Information_Integrity%2FSI-12.json) ) - SI-15 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_family/System_And_Information_Integrity/SI-15.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_family%2FSystem_And_Information_Integrity%2FSI-15.json) ) - SI-16 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_family/System_And_Information_Integrity/SI-16.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_family%2FSystem_And_Information_Integrity%2FSI-16.json) ) + - impact=LOW mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/LOW.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FLOW.json) ) + - impact=MODERATE mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/MODERATE.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FMODERATE.json) ) + - impact=HIGH mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/HIGH.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FHIGH.json) ) - priority=P1 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_priority/P1.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_priority%2FP1.json) ) - priority=P2 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_priority/P2.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_priority%2FP2.json) ) - priority=P0 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_priority/P0.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_priority%2FP0.json) ) - - priority=P3 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_priority/P3.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_priority%2FP3.json) ) - - impact=LOW mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/LOW.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FLOW.json) ) - - impact=MODERATE mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/MODERATE.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FMODERATE.json) ) - - impact=HIGH mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_impact/HIGH.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_impact%2FHIGH.json) ) \ No newline at end of file + - priority=P3 mappings ( [download](https://raw.githubusercontent.com/center-for-threat-informed-defense/attack-control-framework-mappings/master/frameworks/nist800-53-r4/layers/by_priority/P3.json) | [view](https://mitre-attack.github.io/attack-navigator/#layerURL=https%3A%2F%2Fraw.githubusercontent.com%2Fcenter-for-threat-informed-defense%2Fattack-control-framework-mappings%2Fmaster%2Fframeworks%2Fnist800-53-r4%2Flayers%2Fby_priority%2FP3.json) ) \ No newline at end of file diff --git a/frameworks/nist800-53-r4/nist800-53-r4-mappings.xlsx b/frameworks/nist800-53-r4/nist800-53-r4-mappings.xlsx index 1db86d435c8976ce2d8e0e883ddf038bb999c3b1..d6efda8d28f257c7bf1d1fedbac81bf8785b38aa 100644 GIT binary patch literal 125911 zcmY(rWmucf(>4sHxDzC}lp+NR6bn||-Ca}My|{aD3MuaHQlJ!RfKUn)ch}->Mc@4X z&zJZ95IAzob?xrVo;!2S%!0ZS%4=dIBqR)^v@&*0bO{y9P{g-J#D@U!`Q!ptcXx61 z;IwdcegE0XQ6*6n`xQ5V^viFzt~QCEl9uA*nhj0({*;`_pQM^3gSrKOCOOl%0A<&( zY~F2F;&DW2Cv7pL;vW?20hol9nsAuZ1FT>8%CqJBSDsIeCPzOI3&IJJrd<9^a0Qi1_%f2`#~A zleI9pN!_$41^uW2{hTke?7z1A-;U)l8Kux~?`C2{-IaYsjX z5`aHGeiRuS&a6`^5e|<`oy7oXXwlAiYJd`IBV1&B^PY6XJAVUS=f0|oSGt&7cJW@4 zJkM%wvVOZIY#LAbKC82B=(_mj-Bp*D|1JKOOabHLy}&i*|2524$l9-cK`H=^KtGkegow4xhf=U51o z`(z$y%5Ez@uB~C{Vn)}pL(6kVGOV3oRg4VKlVIwIX}S34IPkc*`q64^Ux@lcs52L( zK3(u1m-1~@!(;KZbSNZ3$dI_h_Yo8l=Fj1RcNLb>{XyaR6fkMkkF z7d?5MDAu>mKZCvvPsY1ay*N%V2?LJqF?yHN1SC4xh+A%Rd)j5>xliEtkZXNm&k+klJPthUi zyL!)#Orm6%vfg{8Q!G$-u1FZ4>7NM35F=&`q* zU!FFnBKgPl2Rr8Z!y6-uXl7?&fV&Wtjby;s%}q+_+Ye)>|F8~KMQmtwGa5|B#;jJj)q z*AT7)0^7PVeyt_M+*Z3}iRu;VD=bFb5y(<(=6LLSOgKKEmu==@kN&eSJC&IGRU zR`Ib9%zpmTdtRF(LJc4qO~*!)h{|MSBB~S&QjrHdvz0DB=S+#8rE@agE2bpbHNPqM zWE$P$q4+6VPw5qHJ1OG#jQTH!4~r^=lKPbmWwR`Ogk9$uO+8~`RxON>P4c59IX{Ja zD{1IAx5@}}Ln8RZXVu9T!bgJ|zO;|#zm7&zy#CCl;1Q;p3Lu{S6Q4}jLlXs3%sMV| z(|`SxXWFOmb1!Vz`l&rAYKF&=J@HmD{eNAjPZ35m!~3VH{x_kyPq$J_Xc#4>u;>+iyy_v@)gIDI~j5oWAES3xV>W zDIHi-n#nGG|MmwyQ)~(@yzU5u>N)+LpO|>~`%|N#_*5i=dNAgqi2kH73Od#&747S9 z2DSMDSLY>ma;#xwmu)j|pF3wKUjJmyQGgy^ukq?aQ^%a!2#&&*Toj-Tk=b+on`vye zHIcftRA$xcT+ix5?!=%e2(yC%Y^r~+S~dREp&rvQx@hRO7i}R?9eXyY{gsbHs7i`W zBo9s}D^o1GB-iTx%cjt;1L~3C`9_op{IRt==%%XGPUQU!|J8?%PQgk)D{h;zi!}}$ zOm?Ff1ENh8ljE7c**SH74Bq#dK0nPbo?M6I@OOm&nq8Sl)dk(GY~4Gj3CkpD$yv`4mIJ4~kLMSqs&--k6p*CnA<6w_S*yHrWg z&%n625W;H9?(g+#|K8>ZxA>oj(q%u+E|uJ@tm6bsR~wdoVj~n&LJy!#MFT^Ou6WIo zh%IZ&8f)Q;+&I1=`jR->?5g zk(OMeG)g&d=NBx?ydw;cX`OarS4$B>;-Q;yxhCQw_~qwU_F;@QOyjb}rG>#y$oCA6 zDkrTjxMK5t8)w6^oZ2V9b-sT2S8mqUneQT2tNSpqCT8a1{Bn(-fAf(2ayg^drkAgq zpV=0?yjsH_{j$^Nee2sH_BgjPSnurOUA^=0F#h+j{ysi_K`%e^aFq7>vHYRuA?Wt6 znA7Ra+~MfK!^+;x$>rajli|7Q!{hpw`{)yVwczu<`>pb)C$oU-zhW!wVs)#vH^E(k zukl{4tJfBNd!BzRF4whXPdHz1n7y1eJ&0wd)%CRFue=n$7}p1Nkp$CF2j}O1Tgp#* z**Sg)e(D=I2iMl=={dXgFZJmvgwXzTMB`0`j@ zy+wNxeE)PBeE0WoG-bB)>Ex`Z4qwdW+F!w*WwgEPm^X9g{tA)EPg57&b`L0;8v z<>N^!0|kM<1c>j(cCPQA_I74wZk(Ivf~I%Gm`)#}7zLgamVrUPmNGfZC^WY^vcM8~=A-TULxwpwf!6KocTB%RWx;dT$X+%b952Ns)szB*lVrop;8 zhxxaC|GrdvYbML-qnAG${l2wlsnRQif=5sjLr}B#?_JVR)Yg?iqShU~Sg)1*%d^;N zoj~=-U+D3v6-O+bj{=EbD0xgP)|FpD8;8)3lW6o*&AaZmloR&%|oI2Sa;r zqhEqsyE}A4e-xD|#}P}$5udR>gPRK5?-Dk{SiQ+8WU)kUR%e{A>^uK8Jb%6gO)4qbm5OqG_itppYQiyni-Ug5Jr3`!1a%c9d}-JZN3r zpeJ+6zU`0TZ6U1=&CNE`mre2O%U`D|T zM%KbcKWKQ>W!E!M8m(sr`XFa$5OOm2#>sz<9zfegYVK}tjsmCQMYwZY+)bM>o% z3&xd4#^?vCMAIpZbiz3O^IxXXwQi5Jozw45a@%iY>rX$f?fDE2mqn6p4TTAPh(M9m z>EotT+T6L`K<^TK9w0&CASWn0>Q<>VUh~ea5EIl;OB6TfPDYK#UBDm4#ojbcWIfqY zDJlK@p&*Y6nN^ccrSX#l6!x4L>l*B0Xd4>mOPLyuqCOMJb>{5V91t++1|;a}UaG&A zlbsL2ogAk*`3qINzAXDfx;GT&my=IlP@$qx@b=+n`by8le0y-`?o|FrIWwWSUxlKE z-`jzo#J3KL{SU1ULQg}Uejh?mHt0>=Yvtgf_-7m55EfyzFhr`tzv_nz)jtkvEO z3V!hF4_BFIQAsOY9i
de+PEMYDt--6~RThb-AZ1X}t_zRS^`v|0D_7E1q!YRBXIC^!xE+~TN--|BsH^rcg%{gWoN3Hx=aJ1UH? z>U^jI{)tMS7{#LKZ6Pdu<$=}eDrhbb&g@UI6@kCeCk`}I$m1F?$tF6lJNBF2-qrx* zY=rX70e{sz4ay$L9IkpMFLrW&IapC)|G!1`aSFf*)ej2{%|z3(})uYgmlnfb712cQ|sCL@pJ>*Gz{a{JkvpuUnKX1 zCbzfc0bpO3;>)ZU!Q$Pq3(J@MA=|rc>1!( zbsk=3{(X^0&~A)T*efEmcbd@JDRFj5Tu3fpkab|7U}ETe0ku675VXI>v$$UjJC*%7l>+zj@y$+$QtQXxu(e9a}%m!pcHP`{RD`^^8P=>^J_& z1B50lBNNvJ`$OSnQRvqP*;P;kkPbczcK>?_Y8C!y^0LB&aeG>HNM<(#;j-$J5ytAf z_K_f1qFcZC0OYiw`)CSda?ClBCRM#E;!>T9En{ZR+En7@GTjva{38OP<3b#Jj;*Xk zP92GgnlA6Cb81NF`g=@hn?Vz~0sDC-cC+WGt>1@YL~8#UZ~IoI_nTu~jXbH|3PQ)+)`1EU3iUp|8oo3WIE&O|gT_sZ6~=F61Qn*$BYomc#p z#h>Jw)Dg2xwiYi8C0Z{W6N3mkbuuF`wB%w$ISPJG_Z)xo5hy-wn>(!Lj1KF*Z&k+cBHVg%geE~KB_91>KBJt4+V00scF4ci0yH9PAXoV@pp03o09C5+8**p1Amu4 zUIWJ91vVi2XUmgPZ8i04?=~Su@Xe#L;o60G<{g0~^4@m*BsPUYG0dQd!}u$09w%zP z!p9ZoHCh_9mE2IbZ;r84bFQRXpijXi>WG~Xje$kUI-Iqeij}a3%A}24)tP7ANPz3Z zpm@NiM1))97}%&z)vTrdc`^aUFOrT zHsxMi1X22_w94mRv9v9&Cf_M|#q7pKga^VyLliA%%k2K)o2BlFoxI&w9D8IGy*#3E z2gaPSE#Q^i+4rNmMpjQ;=lvV<-;KK6Yoo^MCn3siC^TH{BYW$Y*!jW-sr@Ck^RG00so_eH5uEW-Pl94j)e&RSz9w@kC^_D9spc*eS^ z`$IwS)W7C&^(w}jy6yZXTLw80o0OHe$SCB2{jx`wP{q}7*4qQeR0Ifa*_(vlnA4#) zeG-Gh4grA3!)Ckc0l%hvRA*ZBPI`;=mRFZI-d_Ixj8)#gj=i$>Ki;&An^O9Q#|i}Z zbgb6lqkQkoubb23e4nXztK{zDTu0mHq*?f#zXh}~{^~Z}|DUAE`tQ)=4at>dr&DLS zHD`gtK2+>z3=3?2ovj4=0>xMg9laP*W_rV9fpPkLU`+l+tjfH8f=?t8+gp2m6E(ve z5xdYdDQ)C&i6W8$MkT0_WbWn)W^m{6-|Ur}%X@FWR2PhT{%HT%89y&!!_|6fvE1aS zQyc-YqSC;N3RFMhiCrhsuoflK$V%qLgRM``$Ha>l1Y%#R*>vO6^f}aPV%QcH(;XD5 zxxB`7tm0_3X~I6gswwjHvUi)TL|r6Y>B7myTJ2Kgk7Vs+I4c)5k~zb7CSh(Xk|A`K z>I`dl7;L5BBqM(tD&|zk`1+6A7xa!zH0O|6dFcgrz#l~B>>%T3u`XZqp(TMuet^7= zjPV^W#+GydG298HoG=&HF7A31KvMKXj&);d&ivKlDE*f?XC=kph~&>k#Zp@%Eu{D< zGtOTQKrWi{EF@#$dlIm0ZLeL8a_w1CXcxiXUek5SkH9oH1|gO$QmP_H$1cC1d&)$S zcT0VJW5>}G_|;=ePaAP2$3X^tap~WL?R+F-_` zND$yAj5rD#`R#|u0&iY+IL*2e3x=q>{Eep6s7T4rtIET`YXY+~#HG?14$czt>y zM}-GV-_7qxMt1=sP33ruV*n8io%#04x3AGGB19JXv92iSWu)T0pdOS(z_q9Vj)MqNuZ8R2oL}NKc7*VprhTH~Fa=@`xoC`d3D~n)V&knRzRQ-@oQ1!pz{qhe5UYaq-=M zmvKtw5){7gq#BoJG@n(*0IM#P05etALi{YmyWHk$@KOM7G4oNlgkbN5e*G#({#q9E zNYZOKnorkvWG1=pHK$vA|9)yS!IVynp5>$<{go;jj-_|t#vj$OIqS|>$L9ir22R1C{!{j;So-v;qN;S< z`pa&0Xy2GLfXy!Ez&=X-H1!ZH-vhTsT9kp@zxLt|43XSHq>(9i%@t*sk#!AKGzsDR zo8F#$-}(ArP#$eiyait^OLC;eb$bXR!#bCYhEUFkI`TW8h7P--+dKWn1P>L4o*H(! z*3#VWSXU8aYS#La!gC76y}Bzg-%&+cU*B01d6dW}gH;;2c9-vm5#+H6RgkobPZn1q z85kSd-;PTJzNw`Ff39{R!V)jk20M(oBH6O&yf#-UZaF2Ct~x-_mo zKMqx6WvED(m#kGlfGWG&KSq16?38j+A20%R)zKczck+=+DtERFk`#jD{4p(MI>2UhB%lX6 zl8UCqJBWQ4JXD!g!`v{94YCl91lgb~P+(z?lvlw?d6kjQ(oi!*4F60Ql5!_rU?+*p z#%OOTPaIMzjqIpW!exz*cBeOrgO;UB+zqQ@Dxq}Q&;6jf9Q;H}b34&4#-{Fw>-kt6 zeD8eg)?x56_7p5^%pBZha_szKAZM2L9wOMrE%p6q33_S_*f0j95|$;zHc!^ElEZU^ zsRkZ}bLy=Dh1P(r*DSpV!Dii8N`yUV2kv(N4lhdoTI`=^qUHi`)<7NJM{}14fVOm(37ED=yCm6Yn`%$3pEI==thMPH^wdkFvj&{Rx2 zINR&#&p_<>$xDt;!R%^145|mpE`Vw1FHX-JQG+ZQel?a^13eV2|E*LpRfZ4?@$>N; zpeI8y!fIj>@V5LKR9~gQf)r_?GQ&m)W8^<1__g~6p2W) z%!;6cRlSsZKF%;2`ti_%c(#79IuJuR87C9XOm^cB5Tw%iCkw;_7%e zvoClr{EOalnbdr8De~T?yioJ^sm5HcR)0`4d2ds3hN?Yc> zJ$HQ09`-`Xh_1Zm}MWB>l z9yXxT_r2plsN>OZ)nvr!uHQOD{ho zJL%T;w)40ZueHn@$WyTC93xTDJ%tO~N9)@!sG;Do9GtUG$~HTiy$x?!+7gUQ`s`K1 z*VYFOB~jsxnYnG3_`IBa15)i5#anW9rJ#`mofmA=sje-cZ8(NE&J_3wJY~HZM4pLn z%U*iAxc9q$ZsSq)EZ}qMgCeIhXcTl8;Yv$}l-tfjq^8w*85C1kG|UEfB?ouy zsQaW%2OC(k-@&2pWW%(xe@N<7%q>I3r_f7sKHsFj=08^F4~S>cVpLr4sqS#C?%*yi z(?e0-u0rPDBH-J$uj@Iq3s@hu?INdcvA@F5V?KzVHjbGVd4iKMVa*gUX#;sGE`n&e ztGd-kBh^O}=DG?f%s2nd6zm!Rc~~ytwA{bDZAK$)MyCc%+!!7Skg{EEDZ*rUebS%>Q}$l z;8&s0-e+I$+T>Qa=wMsuVE0vd7D0az4p=)D0XvziCi{Px(W2c~R|^OHSo=hh1uG-n z5B$KDLi@#13s2)4bM+jUef%)HMp9>filK{!5P(|67Y>82Tym4{{Zr8`e1~J7!q1{i zTrrD-1(rQ6moK?}xM?A{Y2i9jFk>8y&EBzT3!8mJ5Rc$n0lDqxlZOe(y9wC5Jpsaz z!5Xb)fgXPCJ!}lOu4@od7=#o~8s19?AWY=rfI%n9S&8(Y!htlGePV}hOm zA_rI*e4tJIDvA)`|0ghQ;Pplb(lMIZ|KSZb1bg(Kt~u#$fJmtlP^y@!j$F5|?R!=p zzt!zus#WKH*Nvcb70-(6qh4ME<_Wh~3r6R&n^Qz<5-P_+>|nrZlbMdJQWfyuBFAI6jeG6Q;SRE(aHn?@o~Z zJR#7wQE+7)a+R3aC@$yHgr#aBL)~o{0ZPbBfq@)M5do?A!L*-x<+e!mvxd!&gx8=1 z6=sCQI)b~nSc`FTB9QGMg2Zbf@D3tvt3vjd8WIKYYBwVrOf-AEUa|K;rC#~5#=-Yw;nm#L66UlU?jFz6n5os5~ROx$t@4rV)dsjFnMMoVV|wJ z_yKJi6XgKn^bhF`6Jo-f@c$NCvN#b)c@T+v4bKY{GF0s!w_KHt=k6>9kL>TMsQzSO zuNbTy*e^t9n#31vc#B@KAt{?V2%Xx=&UvNXuAY?5NjLths2w<-MQ8yL7L$$3?Xgn} zWyh%$;AcVqmBQ!F{fkcx!R66hqefU!y5C&GQvAT>?kg!=g!9N>`tYQr5^M5Y_H$+~ z0|gHvsjj1_kflV-SYZu_bHyVhtm;T2-07m!)ljT{TX;>l3oj*MQyEIU3_>%>^2dJ?a}*|SGS2HBq8u9AfaU3Yl2yA4Dj**x8~8Nia(Zap&VE$34=}M zmA->y1b3$g!j#J@suC>QHjcS}N=`8QQ`WlZJ@3*RzC#fQ%x@CKWI5|k)Ax2xQ82wI z`0z6m61kAf+$#efS_nBc_1q1K@OKv}u!R)Zp$cO?>Kjwr`fNJF9r+Bt4O8{Gy|!V$ zvT;-)-B%Ohc7K@(?p&op@;gju#EmX3ml)r26Zlv@_&~u+O2PZhIy&U7%m;P^)VPbM zvh%-|k8fViLh~f|5S|z4AAUf=foh7usSV(pMY|&M^A@1%fNT zEtKr8)waUehC)mVl$330C?mf`T0ijC7ef3HFqJ2%7c=?#uTF9uHvmv-bomytAW8#P zO>%L^QrM6MfXQ>ay^#U2B(d{R;gcSWUBj2Bwm$!u$_t1SdAT#jkrkI2ghQLG6@WbV zBHgGuN0;4#DiMMzO_Tv14B>6Nsz47R(QefpPrtP^CRiHN!f025w7Z9k^ANJ3k+DsX zbM@gvH!oo~FE{@UT0us@cF1fACRi33borsPOcb?=pfa}c4Yhcp(5tAJW@~vlF&VKyeF8lmYBEXo;*vsc7A$5{K~9=NwR6DRjrUCUr-}R0&l+rm(2gmz9IerYcAW@`vOYoHM(Sn2 z)lg|+9wOYdBSq>nI>5C{9J?vhjj%DvDxVCc?{yLSH)27RDoFRkSts`9&T|k>8MtLsjejB{N1MvI+!(qXxCE>K15gtH*Y0!#Q#k<%5&!TB`JdQV6It;VkYQxmxSaw! zwLKOIak}Z*+%iS37Z2u@5mb=_)_Z z&D%L#zm!Q|r_rbU?)8;g zYkLGAvSgH>X>0x3(E8OaD9xE5=j?XuZ$saNI?rZI3Z0zUfVJd+byS>$%)ryXuudQt z1y8B3E9R|i7<=FgMMN+zTy>|xj9s?qVE|DNRfcdYC-$53`=XYq*VA{EBm*|yMj{Bn zl=}Ok*c3VyvqrQ+eJMW!dM2Xy)&>Mo-O!ByyphQ1Hp7M0M_r|pF>h*_BJeXszzRb= zuWD9?Mz0lqO_Y%c05sxua-9}@0%uj>zh86RUI}XbLDTi4LlBZmORN8pJ@C%$;S#Ii z{u?ib5d~zf{;E-g*>dR(A|Cu!jL_GJ#?lXzp@?9>-Cr5uPFekoX5^04{FdIF_~$G0 zH7J^ea`<^vMt2ql;8a&&cyRK5C3@npv+J2|lca4u#7aZ5;m!ctJkX9Jf)^KFZQ#08 zB>jnu1V>oeAS;>myGdvzr+PR+#m~k1P048c9~YipZA;XDTi2*RZa=NB>A#LY1_cChSqcHc+l%yUM2oTkagomTuKf&kV6*BHv1cKi)15$UPk4_Bv~RzJclr8(ZE9I zE5o(6U0B=hp3$fJ9E>G4{*7d-70D)0f)3qb^_+3VoQOZ~d*+KItwz>pE=nK~+^kuA zzOAvNp;7QXYk&d?8Q>KEw&^;0?c@F~;*P}1^VB&f?aM)a_fnv-^X!Yq%NkzKyj#!3 zQt<4?Tn;W6?U6^wXe#5C8EA=$jJmsIm=ch5rYAfW)rcAGXu8CuNq^|DWNf>%te=9B z$@lgHN^Dkx#Zid&kMW5`*iGAvnx%TjlW(nBxIit7dSumTf={nG2BAOt2#w_QC&cjD zMzclgfhyV9D%mz_n|ws)Kc!S=xvaTbtvG&9&$V=nw+K?;j5>fB1nLt;LB_ZWZ|c64 z$aLKMeIxMuCSNbuFC7GmQdw~1hCBY78)ZHMmmAiamBK6f`9B? zeMN%=26uI@(7q43?ZKt>D(TMTh{)uayflaYqN|N1hts5(+6sgVP(4^&TlzOI)~pV@ zWpux*NTmZMr7x_WcxhqGd)f({7-FMNbNsF z_FkP~`L%l1r#8~HHu78%`f)5I7G^X&pAkNn{QmHJss7dXYbyu(PYxEpNDKH>+Z2my z6%g)+Ez|NV+uU4T_w&K%V zs9$onhGOZ|oO`#2xGyPo^dBjlmeir%VU>-eokG7p5EXiT$nic;;*=qyErd9o){EOi}5Te>oSW$FIW==_4Y3VtDK}lg-FyB+M1_rLUZKBu(!*ozQ4`g)W34~^0E)$27F3r zYYK6+6u?b#94Z6t8n=zLRer;bJfYj8;4l41ye<7$NY}Pu&gW>qIOWg?KW#T!83S@-$^y+;TP+=K~ zO!taPNA{5V{pvKrb+yn={;L}ym_2|{fP+OmGQ%q>V;_v6{K?E{J%g$xs=&b3EtL~8 zJJ+nbXOJlx2L<@H{O9X6P*_qckh@F0V3R_9lhX#TRi({dZ;(>uMU@(4zWXy9$*Hq8 zA+%v@auZ^y`q~tEqd{t_;X^!=>RzPXz3D6_=b>vBwyr&S?4BZrGt9#N4mvjmo<0)wTH6l2#(@s~rwo69VK@n%KcQC^aL z-;c`3b1(q47I_uQFfsV`cTTGck*(M3K{t3I^4Ikelg>~Yk-Sn;EXnBh;K5UuDz(lk{;~1vHh;D)|E%b0rjqPn znsUmh_kZ=$SlB$GC?dR3@7rv6;!G1t!z_&dL_?!w{H>P7F;f0|!3kY3<&#kwD@3$0 zQYfxx_jEp}dG)bI>sqIZ>>Xkz{8u`PjFq#VSYS2n85M;Dvr8ZCU;|FMQ{7Ip*?YVO zCmt;0LY=Ngl)~q6e84|J1IORUju@n0beFeQ*=xJiuO%z|wvO4&V=oPTGx%B&cwZR2C$3uU*jwy!@(>M=91BD}dpG?L^n-8dlt5V{SDBl) z8TK2(zlJ<-A%dvs0$-Cz)Yr1%uxxlc5ne2XKfY}2YycupAy4?1Y9t$Ik%eKA1=P|M z(pQ$YxobeCWP`WISoX6QsVLI3^xImF2qH@?|6ovTD3by%5VQ%By3OehM6HQLlaG%nH-wEdM#-(Vk_3Lz;m!vdzS5eCgXuzN zc)OtZ0EKUSU9fq85evpxPK^BpmJYqq)YariWdzD0*a(zgZy>*9^%UD@=$o~bNw$^k zC$Mp)n9+o)2)g2)7JWEWQ5yJN<6^31VLEm66PCl$P|FI0=V{lV+R?pR7=NC%L zgcaa`6~$e?{Ly2v>OV*)t4s|)acR&Q@qB;?z7??kWIc54<;djeXkBwXMW*A*&`|NJ zk6#tymNFn;^$XFr;*AU+g^2ehQ{u_!glPHu&+u>oXYNsBhfa? zvzE-W-XCS=B4jeuVuA?nT(PI=Bkn@YNa#-`o1R6-vgkPWmc?;*LN7RhY-K8@8>~O< z*vUw|d$i-q zcp=n`i%6Me!~%PB@2qiYDQD{<5}4ws#|tqC0?fP!-S`4`AGQAjb1cP0JTf;CnxO~F ze@ptOrG;pFY0;~r(12vB5!-EQ63QXyc*&y$9QvZOR)S`siDHLVoG_w1Fg_cB7|2(2 zxLr@1MXzbh*W{hj3)y>CW{NUI1{mHkdt0NP7{Kap3*J>#SrY%1! z(j_Ov9HxvIs?onpNG(p}BH#z_HT7dw155)tvpi2h4WeMyjRej9K=|mnGTqWu*Q1rr zp1sF_ge>fYEXs%c!{Kreq3}8OC7xIYOS6j>`%GJ4bQX4W7Nvhaik9;0um3A{uI)Bg zz6xB@EALP*?`Yf*boIph=OsAXk2vgWvTjA)#}1Rmwv)@_jDh$;$`QBggQQepHFDOc zyMS_{t|ftz4z7|83wd!8l{d<*|J7^m1!N?jmNE-Fk_$WNrNoI!8I+rtBoOscP>|`t zM)&nd$(RY6*GZlVy1N zj>$$4xx|jsh8&ZQAyE^H3qN|FzdVQqn-Qm)oxv3=ed2z=Z-vi}gy-6`i! z%R611ElZpy=}J2Lud{c`4K3bA1<`QuwEZi!NWDmw6-kg4>9zfy%Twg1rG6SYMDU5c zJiJ2efvA~)sJZv8+Zv1x9gsxiAyR44)}621Lv7;hGuTmpI|I)eHy_zwBUZY0F>@!C zbSG`+#rs!8N^&>ri4K+x_R$_ZIqlwLkJw~~XnBRQDr$trx&W7L_(mA(t-l*6W%i@%EP%mK0e%aXAesUT03Sm5j9D<2vd z%1I3VGr><}Q!*+xP%_HhoaKsBr9i39;uGfXz4%K$qD&Zcdd72PUqn;em(o)!aN5?h z8mA`Y*D1KHc9Iy}{{`R4A8XOHfUjREaM6)bQY~BXw196req6I8Zq}<|Xh6S!k4l+Z z&6VN4Aj!yeoq|c$l~ptH@b|*DCBr&}d)Y^)4e50|>}cw`s9Zw5IPH$_oBSP6tUCBn z+WRglx6;gFJYA`2M8T^{-^482c;xkLO}!h#Dd}=X_`(?JmwW){NTfog`t6!xYyb;1piKM64v^L#uGx>8%K5%39~ zdml2)Uv6%U0fFO?nfFT*fEC6-HxU{pk@f+LDDXix67l<>Sxm9Rrg%iP6^C)xDH-Vh zs&3obLX?^1wK7eb zY#1%^H4r&GZ~qYR`mDTFPV~QeD`O>(?g_H2T&gjIj~fORJ=jn?Oz=b8ve2|uw_%?} zN&cgpf!)Le0(!`bg0!NGY0SVvh1|J?+(_f&P=ekpxcLbAwfYFv^&Q?6X7oNzG;&l_ zUj%TL3Jv_H0)0&$3*r|LzaKep6*aKOB1k9|>r43-{&_k)Wxb+&h>az3>?&#uNwLpH zlEvX;IJf_Fcw;X@@Qx*N_9|+2Z;Y3lFmJ7wlnRr0TCKRg;+!v+km(p8?EhX zHj-Qfz!m~qM@w=!Fn#`I*sQ0|i>=P~4Jp+lHf!K|Vsppbs6HjNY zAtbmPr*XyfYxZ!MJ)HN<2Kr}O1N}uCaMK7`FoHZ0K}~l<5-^DhKlnkE4l~qx16g>( z3PF|CRMGwU4#!TCDAZv}(Cts_{+$-pdYT9;4*`-(`iYC~p7$C~k-T z*$CoE*aXu)SuDs+caqP)56Y7fKdQXn8yK985uE)=0K!FNgKEkn3?VNT$!Wz(ya*V~ z#u&{0bQ}9WL9-Y{a7)a%pA7i&j|fCU1XAgV>yMrH^B-Aa;r5p902OHCJFm|N*WC0t z`-ml()+a7GLreoNbq5x<5tkmG%l0D!5S`8Kz8~RJL?2O@2Z}&}``K9g*=1yx77Rb$ zAsM-b7*^RJmFg2$)cb1{`cGX&0GSv71VC?nLsFZD68-d27Y{894=v+MSv5v3jn53B zPJ*@^Haz2+>~XUKZIxVYc8kj(w?7t0&&258t(?(3<75gSXaq=T1o%W$MNyaJ@5W!i zoxUkZW*&kN!F5(r)KiBQZQB)I(d(#KMf%DiN;sY^`qNK**;Oa8qhOPhM5D14W0#&~ z7nJiYZ~xjPSHz{9@34(ByXdWc0|$lC4K8a}1ao$~)p35O?VPpB5eATGu27(WCrbal z>qQ6G*R}ba$|dEKtKX;c15){wdh7;bp*rTPva#F+nQCiqXei z>h!4OQFPf@Ejyx8)k&Ymuda;-ep8sLuTSs(yGtcSMCN+W7}$}8*^yPcHVKn{j55=D z2N7h~pbgCERve8`9ED`ItOq3-2}z&a@=3v<;e>OX_rO4&EKHuPQsxej+w6npXg=5O z8Q#CNKTC7v5_?nTj?r~u^PBx0w2m8UO<%zy)`{Htz5pF4_87&a@Rb__KXLC5sZ@^Y z!}p$X#Q*$!+RUhD39JO!B)R>CQwY+GuP*#6Q6cA zJ4r~*tQoD)KNkVq_w+caojD`S&3z8uL zcN8u17ORu^@v0pXGKXn9_#t|16_)G<+S%R+_7B~)18+(bIE+FOy$>D8PF&TgipPe^ zstHwHTHRV zVKC_&htX<8=C2!PrBuzS=RvP`c~usQ2z0gkB=DTgxJF~Q>udY>SN3_UVg!H`n|DC( zW}v9mg6)ufXDA5m`^5Y_XB4GTzzARVHFAPvHjf{LWlAYID}NV6avQcEr+ z3QI^R-5ml8vaq0ZH%O--l7hf9{{HX#JRg=1Glw~6X3m*&&vjqdbxP>A%5I8KeT{-L zb7Obkf&Wl-O4CjtDKO4GrR`K8vQsYBmjq3p92lm#qThwg%kh~6*nTk|0 zZ!Tbt>g4Ff9CgU4(a@bhO(>wc6>q)_6i`fzgGnnFE>S$k=U3C)oZu&gX{18d^B!7H zG?XGLOYsH0pLN7FkvhteIu#e|$S9KKv_P0s!kg<7=H$+yvM znTdksXiXn1=qG=Qgpi!QH7>TKP}`WJ7y}TPo~C^T$Ioq~-g8LPo+1r3$xUH!TQ1#o zCXH}k)A#^qe`6u^hq{~0p9cQxPw^P>%k65vA@@(NGTrrnSqDpFsIn6mLF6Z7 z#off&U(S%+Fk^WejhWWsTt-&dOlJg$Zig{?*ok&1G`d=mQals?jK+`;OPv4-qH93I z%%+e_trUK4zl_8Vj_lPv0g^0*>+ zJ*IUdq^KfHs5z0cW_jB+FINr&jrSpQpsego$Z(`?<_ z{vz993?9?-tFfI%(8(i^QJv0KsdGFtA1AKZt{$~kS}wJC(vJoY37u*1)_XdOuhKb| zA4Qb&oz*Ql2U;LF*PMisC220)_ej+CF9~nd)BMB!~g&x!)81jU8VUUPj<2E%%a48QcHD6p`?%gW@zdrVWOW3cFhz>vul!2dTVgSN()0J?X%|s3o;x zFXfvG!Mr!4Ox5B1HfGRn{=hOzwjq@|u^@@T)3y4NO(U8Ue$GBcO0`?l%O<7mZ5-t! z^~UHlK~VACn}EX|#Ghlk!<9~{E<7-6ANy}L>2iLXr$?I;fvZ2lsN5tZgnYnEC2q=d ze-|40x!3UPZNuWiCS^e44x;B6Ys!Qq%t*?dKX{@(C~Wg&)#&l9PeQh>2{j8Swb1iu zZfiuu4aimpDmd|RNyPAEN!3sZ{3JkBLt*cnp`O?ZNo>`5e~Obfq$348Et(;v-8c+0 zq0s96c;mso(>~6zhaLYLJGJM*r=A)ahYN9!yPi6!(q^wSKDkx5uMJz$UfGqg%_uZ& z1_;ko{QMHvCp^WA*$N7a^WOCIoyBshgS61NsmbE1q2j8ls+Oz2(bOA(fr!W7{@_l1 z{YBb7-Oxe*BWB7la!Rs!xFs=?+(=~K()y3|T+*9T8Y$WIfT^-mEn&}y_($h^1=q%A zTk*solULf&j-58!h*fZ;jPW7lYo@h2wjEzK4EV}K`jyG{^!kT_w_%Kcq@__6CBGuC zWxy5_=@uyeyrJ+q+eB0l$*9Jo1KpOHGL)QRXt3^H3au$pvOm+R5kWFWUh-5*S}hK8 zbqsQConpZH^;P(ahFK2FAg4s~3!M8*{wEifNi|>>8|5B9|BGA7;zrEfKpdJPe;hQ4 zMi_}kb@L2!)YKIDA%%W&3nun?cXZ;soBIW{j(PrY-bHyYnAFJxa5@5#cK2eH*u_0T zKsc@?+Yz0Jt8a14C4bDdrT8926hB{yPgt7cdXtU=zY^V{9@YVP3ybdT4?QuJn6cjy zmf(2Z#YL`;MXu>q1xam&X0VW3^{(9zQ6h;9NJ%G3NzXM<2Fod|A#ESp7Zjg}>%Vx) z)p5$THU2I`@?xrtD}q53eFI5@zF|SZEl`NJ&|mG^ z*XLrZ;HTTE`NmfI4?WZmF~7%RdQ#jzc5>o%bV{42c}JZHWeUH8N-oAx^T!C_je6A-( zPvxfSL>K^fIgjZ*ginT=-|}TkzgVo!@2JkV>s?kzuKpp!c5Xaf90@UI)mNH;Gu|PXeYyBgs@K2El4bn7J`g?dbCH9 zD#Tcn?O%Vc3Ks+lRe5O;#N=B=TxwwtCd7zfC-V`Hi~UaRK9MNpJbmU{;G-5MJi!9W zV+mo2%$n5tPe=%vM$&C9*>6^JJplp%DbRoSv`SnZqM?KZaXe~-wcS)Q22vsa*H7R1 zDVl^_9ua;t@>oreVKNt7=A9ybMRlEE-rU#stSt)%=ni=bA+n%Tp~XAe)GrH3WSLwG z9_Ma5en|XeObzlcrzIPaI@J1&B-%_PF3!+T9d-GD%H?b^sGZL>=k}4*8lawIUdD)X zK*i0wCj_|Lr@cEn<4d!Pfm7FC=C%~7sL~%`&#+x>&?W4+SpE?0o|r`a%)Ku(s>5Zf zG+?6WuyZE*NqVj%QE4mH;#k#0nt?QRXdl`L+Sg_T(MA+h7By9+6CC8KMBA#D0Odoz zFkO>6n1I5e;wE?qJyo7c^y_~J{bDw#c>1s6SBa1BTVIU~cOxF~FnKSu2KC1On^zWE!SE9#5rp^drHrM}i}|a8zX9J?PX|C#lcD z=~lL#KhxLbQETi0;$mDRx1Ll9M4;DF2m%I$2A?c83?V9q6ldfCq5vhmqS^4P;vYLR zf8dGT?>Zet{2Em}w-(X3Nhkq1?3_wG`_&zzaW@UNtHm#I!9BXT_h#B~%i z%OL6~^|_B_g_>_R)4+D;3w}Dk^=LTNy!$#$E0UzmG}nS4!6Tanvs_L z=1OT?G3_QJ;%I;ysLJs2X37_D&GvZ2 zauMj$ILuNWHEfaGkoD#r`m;yJ@R!|%2qm!0=Gy@(c#&>yPtGFJ+NOsi*gjxRc(VX^SDh#& z2QQ6rVxzcArQhAhWC-IQTKY&@}Pa2hcrG)S*LYn)H4&-61YnW zXHx9-KYl@8^=}_bHmsfcT8#Lz*|myP<<)d5pzhaO)^svhlrR)ol&B|>Sg_d#cq&tB zD6ob>r=B{TrNC3I`r6de3q!Pf46^2Lhf%X3Aq7D8gkajAds(5iSmC>55O9KetwF;& zYH31Yhxt@WnrszJI&oTHex{pc7Sa<%GM@GVU~NWF{)g4}9V7-&-2hKgDh<8Hi9Wz; zHO2J9nhDM3oRRu7V*CrE}#LlhB8s8a`Zu1J4 zl*eWjtnoG%HW%7ixvzf<3{(v@!B6nTIjArIYUajfx^AyAz%(VZ^d}$l=RCH&Y+Ufy z`zEf=^9s=uOP+{VjrHxKoCc@cjVkp;-RsWm$u$4?w(*tFWb=4MuR|+|SQ*&KEX0zx z;x%FyPT3kE7|ay4X}}2qOkl1%fY|X1dMOsM6dPNId@?EALOGu{4w@?evUa1}_{(GG zhDqNXCnjwaNgH#)MzYPhcklKN=|WEM#NGCmnXCD)oK4I3vVWuIZA?o9&`L?5GucBy#A?>u|{ zT>FfG<6f1UOB1;yumRWaNyV$K-@QtsTuW8Y&4e{NH?0=(V?_KU5x{Az*iHe;yKDb0 zkQp?e4{7dTxK$v0n^6Ny+-J%n)e}k)4ysi{YLHRK0Ngf0SKa(8PoLepKvFV5bbvd4 z#o2C3lFRNebbSJ{yxH>UTw4b1!c>ID)ZEDFXS~R@2t9RO5|bRAq}>CnjL4cYAa&b) zN{f9STAUBTuh1${Jwb|SbRJBslE6+XNnmx*m!laS28|P(e!m#Fm;D{;5hAvhYt#C# zE!X@e6ud$CO-AlzJ%@aR2<$cD5T2OxLFgql+smY*;%91|s{c~a13yT-;>jq={o~U} z;sL+)-ipF2b^37ds;cRJ$v_%clGf6pb2cj0+DA#vmJIO$`H|cX!$6gBu{=v!X^6Uz z3_w&I`tyWs;`4>|nbaX=;I=YSuaRMQV^^r>`ls#FVJIQbOxrwkBuz0blDdwv!DOGC=3k1{)gkfzE;gP}%Q16)nU zzpE)65%XhV+E}j211XzF!v{MKY5n1?Jem$6YT9{$XE7 zcS&dT2+NEr)G9XuAQDvHznb@9-|ssPTr3XB3!!+__(N04)WLQ+_rw!vtIyfMR6 zpCp=0MMl(+X9U8ALCF$f3~eYU#6JC^hot z4m>8MrpFw~F_;L+Y#%UW*^!dt2Sj8LM`YwJ@&V+zEi}!{s*jNqYw(0ARAG_Nwu8@hntBwh zHs2=BfOA zc(u@$$t8lJC7$Fy9z`^;4p0Oa73X$oE9hQXfD)i%DXyiy2KR zd)hN$$sf5}tIT2HzIt#dH<$aS5P|?fuhTN&afQ0Yr*-*H>sVfu>`1CCb|t51hLsni z7YR)-YV6d5c{%MeGm#hts1@F<+r7y!V%SyQi~?=3JZgQ5M^a6%aAK7hhRyTS_pvwD zy+`VkR?yJA(J6Je7`y|1P12CUf@5Y3N}IGweSAN~ff+WV1{>>?3nRr+JN2(Z3XYiz z*P+x^5yB|1c4Mac_JSV_7dAc(P3LdwCT&^LQ1aRjrXKm#)+7??loB&w_jtB%YSZ1d zab^|Lyo~as)|Vt%Oe;9O_@S`tL%Mz^F4>LIfMX^n0CN5XLjMJ#x&QNP)V;1WIJB>k z>ELH$&-f-O*w{<}ks2dc$1VLz{D|BXE3Dx{wZ=CAnM zmfSQ^-H?r^#Xd2xpNu+@kcYwZo-unDJ;z(ULn}us5_vZ5m?J)G6cJmg5j7UML#as+ zV;X_x6bR!K7$Kz>(H7Qr?1kDFCBTiA{ajA0w;YD#Uk|ajTF7$oDmYY!imdQ<{ZwE# zDB2e%T@ojSRh(;FRJX174AWS&%+KwmOiq@Ze*T|3k4(0aC<{_*(zf3<4b`E;Fc8Au zZV7e^y=fbkeT@&ZR;1Job9f%vCYs;xiE@`a0*~KN`7|Y)?Kuq-xB!B zoX^_-IaJEBZg!m2*Yd*k@Kgoy>nFh|+U`B=9Td;+Uo<{PPc96<2v#(-ZHt+GWfJs# zD%xB+sB+WpA4yh|_K9pwC`{8@%&+RpHpCQ(zp%S3$3f-W*zH4Dkz-PmHU#@y9YmP z{=>$-{NROgmqIHYk7;rcm@k_G**4s|OQoe+T>ZfVgbygbEkz}7Gz!$*iXTpUD`;O@ z)Jf+Uo1OUEXsm8fH3<;b6`7gB4!k@ZN?lAp3YQO{{^AzK!Sk{wb^&JpEpJNddAW<# zN8u{L=6-f=-YEx-aFNfrx}4g<0U|qLD356~Iw@^76J0StLrncpt)CDeuoIT-F)bhh zV)25ze+ncmx@1{!hO0`T3Y_&{!*VbMzB5X?lelBTm>!*OWlT5za)P0ScFhw<@~k*w$vYL zweZzJY9+&*YGtZqe*0Gq>#2To#lv(yr+co`;yIMG3sbg({^GZveu8*(PEl)n$kKGP zMxkfN6rv_hu>f?lDtfD zeqg+9GG}NwC+XJ-`bgE)qD})deIcS#mZu&{V#4+c2AffTdlDM;tA(rn$57p?m=YfB z@;IQaL3zU*9Mw8-bd!@FjHanU`^pO#V#Y?fN{49H#Rf9Z`=TWK(_}z#Aw!J87%+w? zaxH+L{IJykbi7>vudC;&H07U*L+HdI1DRUbs2(I&_?^nk=TD`&?CQOxj$hjI>)B_> zmLRFwG9d9CC|yfk1o)>X^t07lR(<8= zf13%49sWTqNolXVq*fIW4*f;KHuNUQt{A7$FnK_V<7}Q~Vc5b8?y5ONBEU!QGDX$6RTu%|0^iFFsS2)AO8R8+ zZ>*X&oCD8W^4%HSdH)>RV*l+Gq%*6Ix%J(0zCun)KCSQogO|)|sp7nSkM{b2&*WIZ0K`PatWl9_&L{k`oq2 z%RK~CFw7Z5%o(|huP_Q{M)&J~1VLC5+CN>>wx6?0(y~iJ^2d)h=uwf6+S)7oX<&Uc z9QgU_CV)2>JbHAl1R(bH@W)-jE}Lv$mB|I$Pw&8aS>S044q?<)7fkDSN_P?Tq5*wD ziT|?!I=yAkx#S7oMtqiNFzDU6xPDr&lfI;fTB7;5xkh^Yij1R5*0eLd`RDx4&Doze zt&4j{m%SEnY6{Bmz5X>TtTbozt+u00Zr3;OJB+WSAnd! zML;#Rc;8ib$yHaZI+O{6h%xbJDKa;!xCMK7!z2l`VhLKQL}U8HF#WEhaScMXr}60Z z&e;`A_+UK#DU?sk))lB-vPH1jB07ZgVnso8RuY((@h&;P-K;!38f56^QzlF1uTFqF z>Ed-YTGrD1&b9wg%jC}dwtd?bKC6Z$hQiZRs#7D;*7Ed&GuM0P@XXSKX>oyCbq$ZCPkm~0deX9 zam-Iz_^WU#uUFx!gghlo?BqqpG(|#oqHK1eb2n~xziRyWHc(C99RgAu&&uf(cTHy0 z3}?s$$dzF&``x0-Fi0%05O|ae*ZzTS?+}5=0Tqu3w_Dji|^tcoj}MKNiKW^!!!&1WmR43;|3vU#_Q1 z!73rfNz!$CkkWZ-P~J5F!W@=Hj*V6exQC58dq6+y`oq|hz!f9v%+`p`B$po~cmz*n zJ+fjy$o{X+7u3}_fx0a6jzI$d6!JT`9QDsE`*7@~7;lgdRv?1Tb;OByn8|qXqS_<* zs8DZE#^wZS7*Tt+d^Cz&zK?)Lw30|S`eKe9ISxEbL*#tM3FSg|?re64wYgAsUc0HFemYnm9fx8) zkn@`4fZ}{8dyXAY;!Tc-wKGrD-ZQrtTbCbOx6@uxFdYNRy^8zxK@$A-Pg~H%{Xpe4 zS{xn~Rt#mPFn=+A!^Lns#5=$!ozy6O!&$VN7r#^1@TM!S zE|(qy#aO98Sg8O~K;um=O66XcxMMDZpM0^)c6`;f>EgnjFV{<<6%~3Y0NwNKIzp#X z<*t?$Oz(ox$*=06@@+e?<7;iR)5zglbxcea)!^KmSS5pb?spqjo=W)O7g1Its%ohc zn1qTEi4$RDFpYg>#2df13JcO43sRWC=PNxb>RUp@77I@0tP2LRWUX)BL2hAC!^b|; z)dnIIZ+xTw zd|XH=MI@Bs^NyC#f4r(?=2&!oE1g;L+y26Qk?uw)h5X9e!|k7q5S6lqi`#XSx9fz> z`8o1iZhgko<^w767pbmK^K++ph+lb#13|{%+(^=Y(q;E^iLSp_KhKB%F0U$sX#8&^ zHT?0ixEhM(qH0Ibcc!ENtaIn|)}Y7UX`kfDWpn>Z923)QJsZM_d&-8pMlumG*i=pDshKel!j?ifsHH7koFfSmQnWTa(M9T5pIrZA9`6zo5QEi?yLh>ciP_Ow>51lKG=x8X{|V7+_svb)ZGHd;QKMP|n*bFFtjO z6rgnYwbjgEX%=K5#c)Z8mNj#fu0RuYH`3}kRRiivGH8i3F8qEG#o+(%QIRqXJXWr9 z6t*Z|RD%ZIEqC|p>rAGt17+GoCD)CZ8a3_8`##GkU8O&U)rO46w8hjU<4aiPPHJlH zOz<=U|5EZU!}7V;*v25MPQGk)t>6cyMWQE9^bB%b<;&%z zG8KP1DfbFUiOIrnKW%z{dp;wU3xvUAj2nqK&^flp>WwyfB<9KasF_eICUEd2@ImQ&2sa0kORtqmfumN_HDSbK3*=kC^@ugxNJd>`-qc2c!bb7p04v#V!tvZnRWGM z(pP*0XXpJs+E8LX^-^;n*nN-%zMd(ysU_wZ{XmCPZCIkvoIx*sLsV2Tx{<~K8&L#nXQQ1mzBaDx+&Dz_7Q2=$BKfzp0t~o=_cYZD{oHVakcz~D+ z5C!QqrCux@dpPjFad6yB{^Hj+$s)xncf5R+(X+E6xe-+#O~+g{Y}Ka}Q$;fa^i*ZS z6>#5&q}0RT_#NAG>@yA^x(0vUR{IwpmsVt*i2vD38FyZlz4tmzr;-GRnHiVB5T5oR zx^5lH(A*t8Xex3dQ+x4qg)L{F;`4Ey?~euR+4mv(hSO7(51+*B;Cz1V;0Ds(wOWMU z95HX7`1zllV76`i{QTFO;tB;{!bsixI5+2zFwr z?>vE?BSK_aJ9zPLK--&S5#RBQK~$sP6PY@x)D$ zca{bYE+Tg*|I=gU(;Ldi`^j{3iujCWP6fupjc|vxJ=Ug4*>#FuU5jr?c&Z=*V zh^E);=Hfl>j(gk_U#)%xSgyW3z9`({!XjCNUGnk$!uC_Bmr|%5D73P&I(mBNan=sd zzJFQcL`x%PcZGIV{_aryTJzj^D<%CmEdsPh2HGRAkmr_{=f)D;J9?SjaODy}3sLPt z4c~Ijv8lX!W+P2yBmK>}p(m;<0#ZhM0VG2+ zBlT^sv?q$JC+)S>E-U9x#*QkNl#3G0&o26RZ#_QF?vD5R{LJOT#(_V;Db0ac6Jf70 zx&skOyoYp}3Io|wLkle=&@rWRjC7OxUVnMKH`6*1KkLA(-AFQ=kw59=#*WUuG3(mM zUk+#YFy`%lGSxGvV*`YBN*sI-X#yL&sR%9!|dnl2G(aE6VS39x?bfCzM=ba7o{ zuGNTtUAprAb&XCBYljOevHNC_N&p3Py?HLl6RI}cGjj=AbBQkCbNIOmq4FNqKMc0K zH==1tgDRYKfeGCl>rL=?|Wx*ID8@vJXG>?n%0hp9$#&EKX`+{SsnzcaqmR z7NQwd&xR7`RYI~I=s+%1(2`%5K1~VOf3(_Q^*PU1=rzJLMps)fV@HA?xzPt3ba)oE zHuAML*b%j$$f$drY1ZJ%Za5m}k^I=1RNI{FGei-;5uwU8aTh{L&1YH_Iqx%1sxg4_ z$fEdK$%9`rp$&g;A5!S*HoVDf(T<+{8PJwS+?K|;!;izx6+-D?1>Q-sHKrfFw7Qsz zLQO?s9`}bJ13nbPWko>C@2pv+*KmsOz;)BXru5TTR;|_Yl79?v*|C_IXv zqFy!vttRvhSU4?w>OB_Z5<>M3 zKN)(DPV%Yn3$+TqPW5P4WM@Ra)asK_6R;RDxP-0l{PetbwGMprdSNzn;f{prS(frn z^JDp&KhBrMh~P|QaNNdlNyLwTLbX#@_!1?SwOuZO<#M#4m(MA7+B)69l?1^=hQQ4T zmq)lx&;XH~WX`qj?qmInf8RJ!zFk5w){qa>h?a)bHz1`vH*0Owfn2Cqb`7|(-YviK zuDkr3x~GcfChtfJujK|bo~m_Kz;h<@@;4Q3ve-KTR@4o@#QUt7U#gH8F^wc?qk3d# zyKPvqlSRME5;sWmEGGF|Gle}Q-%{mO<7Axd0}Sr6D63(UBq8VdN z3zXk`5lA|Wa`fE&CrQ64iIWk(E1Rap?)uSVJ5I~<@eyT}B~s`Hgd;~f;^y>(0x4|Z zvV_Z6T@43-;Lf`dx1Mmwgx(CE$N&|xrF*98dcnLI4$hJ(=<;{e@#$5Uy_;^W7k_^h zL^vsHR{j)Fsj?$zy@5uu*Xb(CsJS*UpuHgN~v>n1$j7Xe-FU zJVN9mv!^Z6Pt)-e$*Uy~Qh%wK1;`JDGc!ELj^NZ&DdhY80QDFWizRnbe+cOxCLwpl zKNF8AU?;K^u&;imNd}Q5@g}(zD?sD@x_=Q2d9N@XIt3!|Kn>9*FjDab&OT7P?!@4} zX9RI^up&`ea*8=BG06Z*r$0>C3_soZ$+SXT-Lo0?)@C`b+xs0bW{Un6)Iov3Vurtn z36Y3N?rB%M0)cCPJMd@ym}zIJZvK>)%rS9+4Ud{J7cveqJbu3Q_7DLvEqZ$Hap@~5 z!VlE&!nttb53u#iDDW$a<>8chIxvd!u!F?fNRA|tjDaYGH_FMjE&QdNDuYuTejr-T=sW@ zaV6Tc(CjDzd}({mPtxDjC56d@)8cLkj~kdto(NBZaB=1Q(4J7t%*@!d4__U|`r_mJ zH3eUtWTV0Pn_)P&`;e6&+yGeKikpNJ!E}UJ!TsJ^*8^L~Tr?{+ueDF_`T;srtC4to0y?Dx3 zS|o8&eWMmd^r?&oIQ6DQSLvxc{c{0+yIpf(#1M6FEKL%Mbl_ET1IH_|@zNAah*u4< zt_Ai-d6lHEjT)uj1)pTGq)sxJ3jy{k+@FiB_|0DemyG<59A6kWspa-tkAZ+6^OOm8*LY=!UoC#>wjT$(X>!Ijn(+G{YD##o^nmTX_K)Dq3YefGNP_hxI7|_e=$4Y1KhJ z%@4@LIpSdA5eQ0RWqapd0&86T!ig!c$7;7?$Emk5We~OB^;xe-v!N-Luf=Y%*Cqgq z3xwWO7+#$?qU)}txmCbq8qs9h51Ly~*Ay6d#i7rDe;4!*-UgrJXtKOP;Us7439tkB z0yzXxjO8CZTN1~AHUT}8oXv!Y#7OtDCVFfm+KSV_0tj^q<(s&$ZchR{DXE*rKTIL< z>cw*qRo<~qX_G7}P zSva|{2_2#y7NS1lVh;Uuqrt|C!F_v=aRZ%JPxD>=8y7a+@JZ@zU^)iDpmhBPA5u@$ zj{N>eB9m@&>(07DrjWSxVHd-s#mY0=ZI@9bu0hYVShGoXqW6hI*iN{FKig@Q=6>D}^4uPlm5 z%*9H}j`?+IiW4ayHu{Y2iiat&|5YGQ2iy5@J@n_M>PX+((!*7f3(eMbh+MKh^t?NPutOARTlvZ`0f~$Ix@`e zoIrw>K%zghzbk5P^o}DIYCpv+(xn27b(}<@PBlmCp(qvps;}aX*$gr_%=+Li+{jkH z)0E-f=F5U-pW;i?2x#)J`L?dlCjCM)S)uQ?*NgzbL2nvem*7r z@?^!?=g=;|<8K(qnp~`DPVUTVb{}lDl1d7R!DcBOpEdGNo%Je1FUld*<&a)hZ%0lm z%-cShN8~xx-k%tie9omI)Y6a_fb19Y$Uz!Wb+;Lvz5-)F-r4`#{PTG8V$H^*Ea}M1 zp3Bre*^@^j%#0-6)w23Us&Lt@-S#6zdoBh0WZ4rGbrTM+_{t4y#KU0Y<_FSG0^X(( zzfH@t#e(olw;hCEjyha=u$Os+AZ{bQmGa{metDbSv&WINDn|;&G#u3 zuL3#h#`g}-PflF#u(;&!Pu`7-&p$5rm=-S;rsIX=dQJRLNPzd}3VRNsD)edEE~ZP? zT9Kx)nd6T4pfn{+LIfV!Y5*W$BqkVH*)zVf@e+Hg1YR#tpvmG zOzoN&Dn0n^*p3b*@Ayi9`Fcb6zI>1aF35_8|4^27AwRHoqO2BYkny_V_BZLlc_5PL1HzD|huYkB`s8_xz6B+7`>+eihjK4e}Aa`)Fl|5yR@EOD1OSWt7A1D3Rt*mb)#qd4EJmymLMr z9{D+gXssgkJ`mr9RJnh6zfSm|2cbJKn!XHUzxJj{cNZ zVi~T?R%3>APc(_H+HplN`yh6|chj_Ia}H&6^DoLo@m!!JuJz+`*d+eFi6o@2OS}5~uE3MG~ z>~--oc3_x(3_&>tlz(z+tNZ0s?*T;Gm-JRW-u9oXKDAlyX?3T9Rpy;p*C*A{8r|o{ z*2w?sD?1Fn!8m`xF*N@he9vWG^V;J9p|tTLguVkpkG0pjT%zS(PTB*xj$~`UXUtc7PCL0Wyu`lmB5vP9WV< zzks`$reM`~Lp_n?_2O;%j@$H&-tVw@8AS1fmBbPJvuyA3R1l>?!K7@#qi*yCQC9pg+uP17wO1`J#m)l!^DoqQ%kbWtY(H5nsA}=by z)`ZB`gkd0G=<8PnXCFcFl_BfL=^97h4h@^xcI? z_ZP`65cUsZ6mGi!mrT!i`Yh#N6@R=-k3TDKs+is15fs$W@VvHg)3H$)(YL9!{seLJ z-eOAas4J<>Pu%0QgT>IYgMMwjYhaW*lq-uHU;vr{9B z`D9^c-p_2wp5jwt!H(yYMXja9Q$mL zS_&bXImwzgBF#2lXA-(mlPDa8mc{@ZN*C3i$PBNp<$Z=PR%UrJf74SH(gN^?q7?$B zUt>Poqwbj3p833>FXQuycq^*XafW80t~alWxh*L5G4Zh6q;_h^W9Q4<(qiBJmn%PT zj}N|3MLo8VU^=MGcN#dq^Mby7$35b0O+sXi3kg#q&GNe;MydVp0pTM&cK8n5AIp2u z4__;GjM6J{Q0N0bqu|>g-#^UO=CdU~oV0GRtYT;ERE)u7xUX3WzF8BuBQL3K6!c5T zp!!C0)3Fm{zcqubuMu{8`_~Q#l&+fbxNX}jN?~&Xfd{vfIJz*XHPL!ReU6Btn z$MGZXJKh?4@#@P=>qRa2j;DSYhxI*X${LMmBioGo%CtBfsnJ^RMf-eG1lOuloS*bd z7ulGd7)tTI!!aHEUvWo@bNi6A-D|UjA<5gPgpL?I2gWpyH61~}HG;pTNr4kad+1RI`2%Ba+Ol4aM#jXk_X)#sgp<``JIi^dC(GoL#@u(xdI!ERCi1U* z%7+d#2l3FOgYfbvUg+)|*0?b6^brF+mt~(6y~z4IdiZD@)@a)}E6Wd~f^Z+65#BKE zLB*K&sN*qN@;C%LukHL&_LSoI z`%fw?4O{i??q3q031@!Xey0QP>M0fp31d&dB^DUAqTARdBFDW{rY4f$`19Lvwidg67BE=Th zB;N=rhn~z5FU4S{mqlJqZw%<~FHcPTC(y zl25pQD1V^!jQ2zN%M*tjx*#eSQk5?(>v4J;Z+^T_Hd*{wx(U8JR2Nzl&2GxUi(ej_ z`JzDK;VD`*3X_3P@6Ost5xkSz?h)Po^^#tBpzXS2hQP5eAaq`DaZJx`Uwr48M9o5H zDNP|x3fH9Kt>RI3`Wu;IGJTAn)7|5S&B7ci^Ts`f1q^B5c|Q#1MJ2o$Hv)ed2XjhHb6%SZR{|1dphza6?pL&m0$BRiV9azIIneL^0-@ z^wujg|Cv~hU^@wZEA8D)5$kQugl}NMt3S?sUrp?GDvwY#S+` ze0q|vLgY3wBJ34XN@ixt@aIjltlj?BU2_2!x$(z`v(IChOnL0h{Czl;M6{qY?bf>7gak^S#*a=MgcsLkDzfqZv zl{`&GPju5icjLsB;;})ADhaRSax@ldhw@#P8fX{?owO&Wr~e$iT#!^&=dlbPUqvbj z1x~GQdUzWP$(9+2^RcymFCvj^S5?JiK-}PR!oqHM$|qhJ?5vEwW`WDCcj3|*_K&_^ zU5-$XGmWS})|ov&(_>O@2}=4NF6FSg9OD?AxFg(Po@R14OC1yGFhDp;Hy&1fAe6#V zPhq{2SABfI2tl50a+#64PoP?ZN@yYWdU++sOV23ZBi%;@@X_9Y09S&p9TYhd1HP=B&N6M#(H_vs#GcW3YU~OgeTB&yIfJ z+<#}+tP01>i5jC^yXOG^?Ib&8XKfvRa(QX@*+qW$SN&7p*=!c!Cy_kwo@Ufaf-a=E z#SQNy)IWVbo2|n9=>AINArB*6r8n1tHs=;G+%?+>HD z^XWA&G`p`4X0MN29{-eM6>PoUKXU2q-_43InP0ia-B!)RWGH@gqu8bhWzPLd-ndC+ z8zaI_c~|07CDv_ZS=hGDBID&zgGEGVtj@BM*u&hILeJC{4~4qXI>8{ zBr8s~0{bDxu+ys8JMBA-#p{|>=_AMYzT!%!SCj0)j4$}DL|*!<-iv zyU9~o)o>fWw_B!H8N~ZAAGa%I*fE=ekU1|jwvl|bWS{B0ccYB9?a^+-U9a8<&7Jg> zf{a$5Iibgn6Y*JbPRDOXEj_1mKSBo@!+F|}r%d|q3!kPWi+{@F88Y$^ydk^w@1~bT zH`~O!MpVR(Oe(GM2c2ggKj*5mYtcjgt7_m-TEio_FDS`OR!IqMb>#7qv{y$F7IX3C;;TXVQFIhfg< zzD`wU98_%>b~@YseX)T@KT*rOuIQ#WXrH-1lDA#u_^sd*8Ja77 zv$eUBGLKvZWnEbp18;NW9AxM{?Ykox@10xv&aXA_(cDUf&7g8B`j3ChtSRyNrDrqFGoIqHU(fL}R#=me^zorFKh%xyu4{PX2xy2b$nsA%Pw$Kim0T$M zhG^$HsN@~>!%b9`o+na{oNpJ%_)VNquHPBM;=TKgW(IQgMWWisJ;s7WVz90ygd zYA7ZHZjH$}{jN__nD}9!K2j)eHS(H`YofB93p5i&YNB0&HRPRTN9Vrdz`?4*!0~1n z)8Ak8$4cPI*!oD;`7%Y^jHHfmshw(1Dkxv^*yeMnN#`Kd50xP2kxAhKv+;r7b?jyw zya7&BkEMb*a6YM;VKO|lWeg^xaUqreho!F$i0b*?rWFwolrHH;YJnyFNQ2aZbR!@g zOGyYwx40lHETFh_cZci}!m=vT9kNIY(*0h(zxUsnJ9F>cJNL|Up7Wd;$RzDPj8K#s zA>J!XJBO^b6M@=6>1UrY&T=S%;?nunkqy8|TdYiH5`$?bU>QxCA9DyN=t=APWl7vH z40JM>7!hyPOh&s657@r|W~w5M3~$K1XtCvQ(bcv=nhjtX_JsKc;29KZWVntlh&o&T z5nb>6K|}27UD&BJgpV(3mzIu>R+y;6;}xcWCL~z_12#9GLn20WD)?^=9~iicJcj#8 zkZLERmkZSJvJ#y9GKja50y?4km&4e^sMO$tv2>pe0;Lh_JGu*u_!L{$4vbiE$8%*Z zLF0oCzpj+aYk0lLn|1SB7-4F@fHYL>=z-zlS}}b;?B2j6yEVm>?99vj7 z&>Ur_k=^3@9+#ULAF}Y#&Gb1)^B26pTNW-GU6KB5BHAW*RpZiya#DQC9&0#U$^aVg%Ul*RS&B@3WXC5Sup8x^oo1q8=dXf7h6kxZHq(?lE#`nV?Gh z5p7L`EA9BIAtUx`^=fwO*8>kwu2YjW ziyHcOPaU-Da7NcqzomEQPxC-!NRwWi+`YCx+$`i!^})vZdy9M@Cx@^8oz^&9?KLb* zyc`Zqsq$+eS&P{S#vUF2(wSkz>H7H`5MZw^{aTC{E1j%IDWGnJt&Jt(8jPI$qoyN| zQ(B!zml!U|*s3_<(zb}KGD;&qFir|E-cexWT<{=heM@WtlX*oA->3H1uoUF3>f?XH zqeZ3k6WM2neRUsBCKX$tn^I-eD%DZRt$yhT8Gb}w}a3i6}aVs2Y9HPyt!GG-R z%Y^5vkOUkLHOAx(E__&n+A!bntE|iACcv>ghDN}Afo3oCMP>w;V<)vxZmY9qzC2`d zrNFNvd*>Qki(S_5G%mAddgBI6qidINyfb@Q);r`c}|9UDaQ{$3&Qw?pb2W`dy|?mTPrXxdQEv-lsSnLhQAVDLbpk^ ztKZn%f=*E)m6M@KGaQBZ$stPTPNka5=)B>ZTep%fb0F|lW*s>W44US0E7n}qpeWW% z%c{6TO#J`~KlAZ#_LpJ72{)Df!Z!(3#gdM(`{q7s)qO2Y5eexhljQe=*Jl%~73h3r z_sPv@(ftTlZjq5#j|P@pj9D&T_<$*|w~PgEZY63&b0JI`f2OBmZg_2^T8}b9rqmVw z3kbY)ShBpC&{W#eZ-TombxLQtjs6sMJ|Z4cy?Be7l-+P+8KMKEP@S*od2`93#vwf} z{iY$_d=|W!m4>O8u^=jDACY&x1hf|8lM#Yly*Q%HcMaBB=4p4j*!5FoBJJ@B`Ebdx z5v{h$e4ArSTH0Hh7LQu!_j`597;wqD5v``Yd_!YXS`u5Ch41%*iPRC*>bCevl|>E@ zyPjiOw{BTACs4@2#U@TOa&xc7I@q+j0*1s-qWT-56HJd2D(R^Db!U9pzSFNZPd>&5 z))T)4B7JV50;2jAU*ImAAWKw{MKBT9oMFUqeW%$JwNeI#_tUUozKyfnbY@g5c6>xq zlX~kU(&2P1Bl)puVV&QuV`)FE0%qQz)T*RY#<+EmpSzeGG5R;o9dD=FqT z3q6mPueiX}jyYq(7#B|3aGl9`e|qC5BwQXO4&q(A51kq8UqpfGSj?p~gqc=mBW$_q$nVnDzT*Krodx!7{rdmPrXMIa zrEs#>Xey%+QpP{AmJZ{~PEmgK|4rW|a?j$7oPSXhA0x@{3_nPH5r-g$U`f_qNfDF} zeq?hW#flcEjMr~h+^*+xOc`IM|J+lfIw=B~eqH%^D2{o3rwlbrvf&uzE5u|l-b}o& zufxcIYcL4@kPf^qJ(rhJz64BGNIvQ|4el5Bp?8o6)(j;wCr2pC`mLj#&33k?VT(EU z&+#TLsiSDMwI0w?V)|VZA$#w>ISG>>avErLxBCQJg@RC`A9?v$jacX#DfMTju&$U^ zVAl$*kJX|#?xpq3IXhl>6U!D~4l517o+&*mA&yivnzg-i2SJrq_ZRqD1Bb7QVZ^(h z#+1BmY+aaz&Y+u<>70x2Tl2@)GT$UGzOQ+P&3Qa3k(+bN*ah{^lX0?dYM%7YNgT~2 zJ@Lx0%sfAGZEZi3yl`>OH?=mdV$U*`>aV=d$^KgtAU`C0The+gY0i}X-u(R)(A}2H za#Q_uhTZK;Mx&UB8#Ad4F>S4eU|rF?xh*!(%>eCYSy-OpW3s9d?KV0t>O610B(64D z8H1Ws+i?4`;uihl^*2l!sMH<)%Tt)|VQZr|-z;CI$NhX{r3!~FYy!YQ6K{R#fb#fx zzCO?UY?VOy7~uH-uY7&cTn6DKlIz8)_|hVQ=$!)9*z8if$9CzABG zPtuoSpj|Ty3hsZ?!ZQ{Z+4M%Ic9*_Bpluv1Hy>h)c}rKi$L ze~|ZqMxd{A+@3m#D~(?NB`#Z1DWB6440N1z#~}HD$`@bfrke#+*Jex}v-noYaD@>^ zN-tm9{5Q%k<~-lFL?JY7K^NzQEp)5>Jn_tf;3)0z}cP-a_)u&ocZdq*3+ro+ZbmZrk%s}kA$ldWl3j$7Ux zx9D4cAY5Vgp&lS0@c}rprKhAE$s;m0P7(v1eMh z=r0s-BI)-zbYvgnlFM0eB0i0RiIef#cP!tL@uS67xbqHgVR-wE*rMR=?H4Wh);odQ zcSr-bp9R3_jMdBz@BxQLcW4u5zivs>ryGZb65y6{8{{!&lbr`b)$x;mw1zGCKB)UC z$bFL8;0dFIPSETLEeei;T1HQ36aP|Ke$RQW+oE}ZLi}4|kchnVT{Y$2g67aXa*$=I zPlNf%2k|{%pyNHj*8(N3fR0BGdHN3HJDux(d{f*Ag-dwKiUuC*s2jABSPv~C2iYP| zFs!m)c|pKfckbZon%PvpGJ5gH!Z>0Zg+E&hq;HL*{>`pL<-hsZsVJ!;J4~c)iVy}x z&r)E{JmrA*Rpy7%^ieJt3i;4d%CmFZ3kh(N29s(V$&1ZJYhLTKb9k4em$B#Pwi8yF=rong&#mCj-I@X{JfQ~e22F*3RVzBgjg(w66(1E$aaf$ zZFEv0j$RjXzxdQ(ncin7GRB3hcI~a-H)Xm*tAEVmGMWsCM+{t_9_{1noU`F7%2~R| z|Fq3aA5U77UdUZ*zvESxmj_oK{6@U_ygElL;^(-}xU05e9G&KEh>nw64?_H^_Cd&< zFq#-w)p~Nf_3g)lR6{GE<^$lXfBmh$*D8ffmFG0kzzNS%SVNB8l!KO7V%c?n1k~#H zP!PG>liFBHIuj233UKWz;!Wu)VjW^qL`|wc@{wiz6kpu=lJea!BdF@j zZ^i`$!vvxh+;$3dB1L6zp+K6tsi)BdN~#dLi=ZZb`kjG!y<#@u-PagTUiVD5YTEZf zr$(~e)Q|HX%3{r=X+E0}D@fBctu&gzh$^?yW;PFc(xO=TIBf*m+s_9kfnf8->Io{M}i7MZCXegmWnPDugNdy21) z?5Nm6&u}Qu0+Q1n+qNO&Yy%g!`Xb0(W1wsHxGfU3^Sn)y0gVV)^|?M4bxdKjDGg2W z9VOT&XLfh~r&9)e>YTKjuU7U$E1**dVa{IUedcdHdS$?*VS0B{I$}RGMDwq*0WB43 zM5s>vyY|C>tk8a)ySO@Oc3_Ho^QU>765ZkUJx(C7oINM-wHWZm1{y-pZY_m+P0NJL z8H2>$yetoaCiifb()_AzY8F~A%Qd)u_74)j;_ah`4(X5qFHRVEabBfql?7>NCQiDg zTq7+EgR~gD9j)`+pySw4qtl(H6ZwRYlkQafeOm%}wTJ|Gabv)XTa1?cX)I=N&Lip@ z>BZqv1lT)YkxLSLvzlXK4Kt7Zpnr5VzcV;*&Kg>6c0RC83`9{mO-c`6gmmRTHy6NF zw12DzsDo8d6$D~YClw>8`pgm*kO&t{|c}O6Uab&-F7ALO&F?9 zjo6)crw(QKjY>$3!xkU`XrcWncL7Vr33*g)kd-){?!Z6BPhF7br-@+*WQNOKq<$%} zR2Bi%bAE@sGvtbv-+%!&L|8Pdvyt!KgobwC_R2v9Jt-D$$3oUr0J}o`6%jpIak<&} zAw3~&NP5;cJP=mb2Z%9OuJ0YEK38`ei%ODDRApiFIyzl5}`^fX^bt7Q~ zh1@ohB_NT7`gS8p9-Rl!@1}0KJ1NKIte#>4#YM-5do}Ycbkkl+Y`gChYEc)m8(~(V zB-ESgGT`ys{R7V@wEkRPW!+sfeC_qdv-KC7Qk8@-l7GSj=3y}w$w*;ZpD z3H(wKlq_ycKg665sW8)F$oL6;ZT#(3Xfksv-X@aH9{We|vK@V{Wl-F2Wo}!IFvRy_ z_eF>QyGK`xCrDcYdVo=7)G$D*nPl5kGwc25mr3{F$`3XJJcgk@_9s7c-K6&PRwj%u zzVzSm=X{sZLx4OaTDZpx_#rcs+B;i6W30m_$64z-jKt%<2h1G&yBOGs{T}qYgLv|v zg6o}@BwZwn%**Pmy2&rw{4af+Fq%>>z}U_4*O)7Nmi;>q+gLkwmlLYD!LNB70ndkN zDa^y(qsK0wQ?lI}9Qq)S(&6`Pf3s3G>q-03M(y|2?VSMWkRzAZdb2dPVq^^k0jMCn zdAwJMp4kQA$&&$?E0AE~R6jFvJ;N2zjM@u!3F`FSe!OptO^H9y6=1>Xc0_`@9<+8^ z-TZSrUToi+RMNrQscHMqeExx=yM6+Z=i{1qe0peqM8BoyQ@S-*MBym;kU$KzA-zIl6L(s$+4oHaHA4zeJ!;nL8B#w+}-gmH! zl0Lk-6wsNP{*3{2O~BoS$HZRxP2`pNPrj&xt`7rDLlsBhrfGktqp!pCa!{0C$A8nR z8T5j28mIKUER@h0y#CjNXuN<|3y(ow@qcAdR5!-VfNxO_&y$Va_voFY513kfyaQB; zq0;eiNIZL8rv8j?_Z{N!C?I%u5L@=`{mH+o#Js-hXtCkmJ4~^MMP+p1um5?}e=3j% z^MM?S7LzZLC0ZMl69i@yNXLFBHsZi0G1H1J+3$uy{m1uLr7%|>jooLnsDJzW&9l@0 zt^)$jPX_dcEzJ2XjLMcX-vEv9jX113G@Aj?YHiA$)VivX+X>`{rWLmbKHU^;Ghm#j zS3J~9IHky0A)tj!$b_LGB8v7bB+^<@OsMr6eyS%6$R@j8h9~mCY2)Qri(gsEm?Tb*0H!Kk?{lS!LhuLz_vR*m1;;WS!_dxiTW z5Dip-MF+}>o}iABrjItAnrD9X`2CsU^LM|Wzf`Q!Ap;WuIzV`{CAC)9dn#4!Zr=IU zU8&+GUl^D&w0s|J2#%W{kl?q1hv3XEdH|MFX`#D|B$c9@vCsy%fDHW;Zd(uLxw;4C zP3?Inu4I)o{C)fA*F0g@IApBkzszSKfjgoPj2vi3VzVC!V9cZov+-u63n@~vwNtVM z8HqK(D=LY^_mS`rwR>CtiJlAyUD%Kl^Gqj+gPKM^;}Vs>BA=+u-I@0$O{#J<@E%TU z-4hNsC?zpv9Jdq`AV~h@`ld&-xEJ9g9Roh_EYp~X(2C2BOB-6%z}dsGG8L27Wz zzjkC+9C8{20UqFKjz_&*B&rfOT8Z1INu>W)p^vtwwH~g2^#}Okek|C=ci2Y#2|fbX z7(oxE=Pen!`+4@XGCT2Sn{v3b=xP2AN=o6&1rw^BAkRxfdn~XP6Af zSBk~ZIOO<=1G_85f&=O}APxe#?vc)8VulXlg8h;%&TzxLAP1g3bbE;bq0p6kr1l+# z8nI3qLWCp;ST{T2(D_5!4MuDJS7esrgFz|NRrCwUYCG%$J4~NS3!mYtkfX=v4o{N0 z{`8(%4pa1s8<#fXf=t354cHp4e_SXM>mDKVw!IM`k z%<8(6@iuvr%B+Evr(W7zH#^1i18Z03H@Vk4-ePC#tF9-f-J47M1N2K`&dDB_n1KL; z(qnFow46b=j3@Y?y}b@B}! z(y3_uO-Y_bIytnlGh}Lk?L_Tr1J!LT9k*y7(msRd7m`<8)KUxkxaA_^SK5fptov-Ibrx#Al`*k|mthl`CUI#Xe z0`%%^>E}h}b?c(>Ee~^*v*N}8Ua^#aODxoq_^)&aU$1hw=}sJ>?kIloDYbfP5I=7x z)|#(&etl?6l=-9x|}Tm z!kP(3`u_Z2TW%f*%Cbd4{h2i}<37MTSLiXuu_x5*o>X&H*>0|}vaG`ae$SC70R~zS zu1QRYyN7R8@q7b!9KPq|$AV$2i1BB9bRO&!nQq7-(DDd7K#QklB+*BRIX6&X94*uh zYShfltsXA0LK0Loc-JVP-;rBnQ!*zWce||>uGCjDnD(YuS6A*IHa}B}@I_5+c6vB&*+v;-Ie4KiPX& zpuAVwB>*V*gp*m%CCY+&Ab%LCSuMFftBAB}ybVu2qWN944df48g1Ktasi&6sJuj_n zf7dOlLg>Vt8*`GLZ)ZBXE=Dx;k)#E!df@?6p5#4i0=S&r%IUni!tmlAQc-GIHD8Ns zbRRYo-%7aD)y0}5@!k6dDSL5!{UalU)yPbGsQWJ@?hT!E`)BA$w7PEBbYw^cvBw*p+qC0Jh{=e8Lu9X(-$a zDjOx8ZF%U+^$fHT4VN<@E@%lKwu!&qxp7y*dl7f92|_&Ea__df^esGuwcMKlH8;s} zOldh87?&iX?>}WL=ut!d1p^`#+gIT@JuZszOWNGoHKr4_MrL$QxK}PLLVhiSWRBt1N3v`X4%tQ_J=vu@Zb;F z0U?X2%*0K^(pd;lJ^6uz0VLk+OD)zO(H>dtnFL-y#lD;?ka4l7sqMzl63Soi*x+6mi`G%hppZxJwE8_Uen%{GMAiwnk=2* zR@whkV9b+qiUgt>A|F9XAeh(bw8X9&g>6SZ{wR%pks7$FsiAa==-ON~%k_kI_}1z} zduGzPI}TJy6*vzdFw^=?wxKd>W@0sRGDry+*FxHITJ4mZeR1u;$x6pIOTeUd`_}4# zGqcY^svUk(nNvU`R1XNBn9R1fuU0_@ZvLJ-HNTO$CS^5p=$=v7HV&C8sH!j_6k@5S zWXrBp0Yn+cv8@kntt(So17{bF+qd+}$%P_>-h#3r^XI3MjOvJ!R$#QHnhfM7ilcJU zmMp;&+6r4JrYt_HCrijYU=mfy6grWc#CUf*JQMHwHb8EJvUBe5Jf+a{_c=wRfwu#=sjvE;`!>)Xx%w3rk?&h+ zimrUg0Z3m4LK^7AQ{lIujM0JE(@;h=@&2Sfp}Op>pDm8*m=ue+0&>XD*gbp#VBY8^ z(&H-ZlIz_kL<8`ztxpHW{@o2yBKMwW}-SIu%jQbl| zf$AV}v5xYM$4l?ih;|?C5_L`)uLz_0%4pzXqa3=D%t;rfAEnf9p9dUU@-n9u^^;`d zmGUKvWUA${n?^P>uHth(sFlOiK}5&%@prIjwSPyJIojzuZRaYGYFBd=pusPnxQD8C z&X};Lcs-_rblpp~ye`+sX2(@1MOHA-e!X{MkiA?2XK!FhmC1i;j~~T@qmW!Dd&Beq zx`=&$aolPrrgBT{$;t@GYG`Dd$+3+hsQ|we*s#%dH*RNS+3VZmP2lu5^JRKPv!@9` z3AY|8Z^2WT_)Y6vg_m$P#ST;9amvt^>z*W>6I=ZC_Jfw>o%8B}7xOz%Cu$oZU&NQy zG*VVq+>x4-D8vy^GYQljsBOGSL0$tv^9r^N(mf`;>2AB$0Q`>0aL9%fB36jYzLH09C03Y!^SE+LK zd*|IrZ><;E1I}2{71YN=E)0M827LdrkZze#YeVDU6vLn<4g;HFILgndZu-B3p2Mn0TpdsH;erYZanF$LRH2{-+=pBOm~_ZKn1D>1JAJ zFp_C?K`N-mVG7fY0hhPtts1GesJ)OKm+xxiQ0Fj$8OMMtOY- zZvA5^d`+M98qzJg?)HG<%3R~hJeqRKn1hZuO{pI*4g4j>7W?a2qIXLBVT0=Fa}RD` zvt7;4D8%SX(N!05)s}wCd-EKM8+}ykNIKe@R|3@1R5}B3R!Z_78CPCO)S#l#725q= zM(~Pbwxl#B7cP*Cue7(bvt4ZS23$3;)o*v)Ej>#)pzAZId(kp}<{SPFncvJ5L|Vyb z;UJvrNfl0-!f8FBnFjcAZl=Xw*-noGt|~*qXx^E$kC*-xcKIGtV3blV*{*u~PXwLu z05XE_q07evP_H-L;El`ek!2|d2>=>Yq$<5R_H1moP*P+qWD}J$@?wACMHLQC;lw6r z2-(^hOH$6({Il!ym|A{Kw(&aY^x_rszPOGoE3QH+neDVgYP+U8rlDIk^dVJhkQwg? z01uh^DVe=c6m*svbe4P)?&wLGv=Lm+ElKSG_dS!^7VXx|UVNlv%EWn{U?*f30m!K1 z&!qjNR|-^8$`0E!KZbLbwYYTVyN*taIycx~3x9X*Q=Mk?aPfoL`>8NV*PZ;*m1V&t zJ7KyVTNvmHU84&ZbrKh;?BrK4dNKfMAu%I{8{KIsF(njU^Mw4S$m4fFgM89ll4@N8 zdL}=AHs%eOn&a~Dgt(_hK+tz2OMQX)B6|IH9b^~xU1xNir*HkPq-y9Vm^i?$+^jsI z|JzMbn}eLvNt~jxM36zh>X@_ODkijBL%00z&U3|hCbBi8q+`rUg`C(;)+oFM+2&>w zSe{91e$H9BOyb*}{nS;Kf;~@yBKk6m3bwjBNM>14* z5L_;76C7L(bgrN^wmh$wG01Jww3k-fm3+$e*qI<@HlXj?RpeWow7daF7I!{O3u{(+ z75=iUM#$nqjrJdtL6h=luiwc#`W%ZISTNWbbd#jR_o2{rv6rhmW^V<;?K|zo?p%bZ z7op6`3lI`C?n+kEa(SpY2ZW@m(5C38DXk|uzs7BHmoU=xA>CL0{(oBt9{B@mnHZ^M ziLOiyBF|ApvB0;(t8k@5Pk+Xy#Z;AZ58ynbOewqo8E4Mi`UE*%b&d!aHlfwI#~Z(I zE^XMxq`0!Yt2;#Iuu(ZqZfWAK+;)BX@ick|#!1zyd4ZmjuxokjyF12wjSe~e6CQHo za-{9CHZ-f1%V=AgqZ33^O1)p{`)5n`XdevO*9x7_--rD{c zO6Yf$(ww%18^TW%WNYWK_^TJM*tbUcM^ z0){DSg{Y)BO7?zvX6(2CnOr1~IzqBG;=hMbwL5)?;wai>ARzssvaSRc&j<^V`iX?t zVgG!BL;ZemSP%+;%E+r{f5(TsV9%;~=Sp38sE+{$ze=xU&s-RbrE|T-jxIWI!!|xA zd8>xIlR;WKt~5Fvd5=i%TXaSxve-($nA0$qs z5t22tx1yaIG;s$I)VQ=#gAC@@`hKdgl#OY8X@n^ zRo~y`Rt@EY#YTh6{UO+KS(d~xEmc?4tgbIQPGUnHUf;&^#$0{Uj}O92Q<_wrjMi{! zWTll@vd6wExV)IrX&9VX(z4iG(PkHW|29XG7sIcR8E&Gk2Y~%LNKV^cY6i1r`t6#M zOq&GOO9G19MnARf#RA1Yb=rX9)FiO_fN&iEZHwDZIn+~$ijHdHi9z54G~3Ki7Z$~F z&HT-kaz-$9WVWOL#)ah=F$|FRWdrbe{u zXqBk5|Cof+=R|k%vPTsnT}|&e>8!?MmHK=05aqpy;&oY-3K$2V3V!JOyKV~B9}BJ& z%$NA`B3cj=QtB2K1k>X7HNc%Z+{eKs&ZThjVeNM(TeM+Ys2n4K^kH8;!00ApQ^D%a zPwGJ1kc0C*#Y`=9t1Tfgg=iXcs_=Lm7cQ@BrmIfs1NGRXwsQV1hNLGPJG9czC~hHi;ugF8&`T=0 zx$3Ol$+%|e<@l{g(IVlt#6xzgHz~sElgp8vhdtK&PZ@jqSu;O7|7VJMTY37px9B-- zlQLyUX3Qq=Prso@I;-u z@ULZ6n!1^*o(IlG)!S4D+Ll`Dq~HCRv*|%exq8~k)o~HtD_aSUcl#$nq*Ii z%0RPsMN@NLTeu6^;XCQP?1|+e!I$ImdG}t1@BQ6CZhD`2TZb9@;n+cUa^?GV{-?{2 zue|T(>kg!2c0jcC`t|(cuBb;*B`kR|8hXqcg{NID843nVRX}a`7K+U=j7liyQkA}r;gW;746HHEyz;l#2OaV~YwS6OWuI00HJs3X z=<2k^`l_o9KZD{kGg6;oh(Pbz##AUo{iBg8CRd+8O`bUHYX6PDTu5t|&2ATSGvn#i z@b*aL*28v9gK`oR*Odq1oT;1(IqS&FTOTsx*FdTAfm$g575!yWWefn#4L2^sC-Ea% zM%Zrv?5{>uskxXqgmR>D zMkdG$+2iXn(&7$%wnQro7$@izoh%bnym^Glpff?8pB!l#T_Xw|Q}!DX07|PDyA+!+ zdFLmF+2EX6wuf%mADlkZO|^U^b4^bugUb+0`-p}=aUJg>aB+wBP5lwnFIuxq^Qeg+ zHra2aH6FCb?JQFqG(eZPjy(PA7gFcs7|>8oQoou?Q@ zHA1@@AsABq;LVtX(lt`Y9_uQe(QXOz3Bp+h<1F`|6L=v4SgC`BoWh6`z3kgRW6q{n z6lJp%WhwJv1L=>Bky$_!`4+a37^XCo#rmkl`ZD2>%=>eW_dtxVoY-L3S9s8_j?4u( zdsmEvnN&XKD+ft1pia9Z;k+txt37bDLQ_gDX%GdDS^_i_GsdcA?U7P35L(OvDioJA zev@gO3*nNDqgs<1vsZY>erUt2-mUE`OQc#JerC9)-x@XuqwAs{Lfpj2FbA@;1pY@- z63R~Bx=r`~&=zC1b8p@M$y^n)Q^z}}j`-@}wL!=30;GZi*7X%IPGxA&!L#54jyGsR zbwnDjCL$)cvNhlJWX3B4GkdhV+YIdZ6w)}qlgIi9Nx^BY!D-F6Wp0f0M11`=G zhNssNhosB82eNwvey;E${?;3RvqABp=2P9OxY5w*XIYFt`-nf)V*ew~szzmaQ&3%* zxZcp|YgtLZ_l&ZA(&Bv@I88iSi9LJWuSpEj3jl{vJ%;74%4H@srKGK`sS6M{&J#Vd z_aFSt<><@tZKeHo+`IR~lZo^EVP6gVDHlG!hZ%k2SL7d}TF(XW|GPRa3KPP`J^S7B zn+v;uu$FGC`8Nt||BhYM|Iz@t3$}&Sy8FsUGAqP6848%(9s;AhFY{s6J5H0cHph#x z+w-X7uIrDtENzcgdd^DRmJgats`M4WSk>D8M9d2RWn*hEsPpid`R_qW{8*tq%>&&oVt74CBHp@ zgz<2eIz8<6ut&9;RASV35>Iz%wN3S>`wyie*uXzX+ecJsT{asSkra ziDm{;B;VHQl6!FejJ1*et%2u(?UyNTCg5IwMeNu{(wM2A=~(9fZ7qKNYx);2naKJ`fjs#7|0``d9nJper6(Qxt<+B z(d*u)1Ex#DR#6`!Tb~Z|xsL5=ySVilzS8<#cM1!L0~eOs@=O^4;<65x72l3&x)<`iHxA_41)pDDGF?@|TMN^?(0< z7|;3HoGAdR7$szK%&xqSwn{k7tAXN^m9M;sr=bgst&zo4r{gB07assh``6qbYI+2^ z;%t3#Mjx2|PvMch_ume)kHVeahCZX8axb+$(i_IDfFS$Xds|`5-{>W2>mLY~#l`Qx zN_t=)_Xh+y%x?MP!?nVp`4feRr41Y;{p|nBS`buC?j`(1MI=}qz&R0VU}D7^Evi#M zC?Con4az`fETh$5ghRy{bU)nizj8wNHC+G6zdPBJ1deAF)0;gU?fU+`Rj38%}4 z&*`|ZW4w3;h?ho*GAK0N3XzS=C?cqZwZCFpr+ouoAAy0v+ZoFy2 zH2EYoD4pks4EkN8G|ql^=OS?C)K9}i5Rlku)2SmyV~B;|iGHP4FyG)wzj$Lo)pGJ` z7a$0lp*hlvm;muR1nR_@H$p0B_5{?pS5!aVM#roknuxcx6`?B3U5o*Tt$-SkZOs5I zMO6a$i<>NSStbQQzKZywZ=Mrto668cK`waK4!bsLige8l>1@j5sg#}z+4Z0iqhK+I z04#@D6u)puQnfBx1J7wRO4RvK_j)jI!R$7WN9n(;OeI4dkuAxAVVH+OgHMEfL5R_W zw$nP5*)Co(^@4Rf!Ds<+R@zbzQU-zD2)%$Vr9Jbm>L>)Dc_XEK+TYeKBNM&3vO{ zDn|V^+m8?UB$8m5(QntMg{nu(I~19Ns&q;KoBWPm7~9w=9I0VsgB z*S@jkgX8bCv$irFHeA&cJI6Sr{)M~$?M|}Q1A=B1sd?F?f)JWNQIZ}1nJL}<0rvIz zbNc1}AHao@b;49xbGiK}ydodceo1tdoHbbR1C|;O{!;IN9iIlmeO-Qi|Gkb$UdrFU zXZGmLD4&?KUm$j4zH@NAM!T4KMfY2J#HB42SqUzK^TY$A;3a>(-qt;Ra*}p2|7)ME z`r;#(k2zg8{Z&k>e|yLnt|1 zqKgE>-4$D4yyNyx9Ncg749KZlpdd4i0I6E;d6L0H&erT+|A`*>DjIUVHxPIgFiXDV z|7V5I-^Ym7zBiXe9T6B{+S6OE`6)Kb*QbL*n7NQPb*T4wi;z7!+$N4&s3-f;1S@OD z&o?May|nV_oRQ6g$?uos+uH-v$}d+QKd$g3u<2K-`U+1CaS`ziC>dnvA%3a?Xqt^o8K0J#A;ZMUJm zfkx$PHU4miP#r!sNC}KO9$YTAn*HOcL%`so<p|0!$5T8)*5kwfs-_l0@EzSGt0r3vu*Yg&<_1l7Ws ztj8c9*2SRr|BFNm0JdP(LFC6y5+mpm!oI$rSGEp8BH zoC>y31&g}lB}ldY5F%vzpRv5}66Xf^1W4~cY6ns+o4S5Gmlfo7Aj*` z+l#!>XMT^!OkdG>8T~Bajr$>+>?4u_JhVa#r*(s-HgHp6+d_=eZKAH;zz&MoHe%Bo z)#`_O9ZE-&e9AU%M@m+1AH5l`N=T7n8uw5H`A{Uo>c!IASgJ{s>~kgn%zF1(#=995 z_P4!JP?n}n+ zo76H0fH4_X#@MGb4!s6Vu$e`tNati~J4)kO4}O0=af z%6y#z_K5Jk8u;>iWZ$RAnOSbklYQKi%0wRhN*Cw}xD|)7?PBHT_l!jLEAH zJNdhs9&+M$XwCx3E=gipfBFDfmir&@9m}g0=Lld zTVHvKgnK@W8*mm`)=~Zcimcc6=sPkl{_tPHqK@JUQ=g%*u~znBRZb!u#a-1K`8SP8Qq! zg6shU;iSDd4FV~;Uv^MkwmF10`EH$MN+9R!IBEPB9M@+LMC^TOQ;>G_HwVrpea&{k~rB(xJkum%8_SL~

{mZd+ zM*8Ql7l%A$iHgXD&hL(NU~9jTkEd3FX645;_x}mr^?F_g)X@CKyoVb9?Vby@11dnt z|J?3+ncP-@eqX|%6XVMT^@+EAiDfND7koa{;j2%~`)DCzD>m^w!vqK2RWfd;ET2FA z6xhJgjhToL;nMGuCoK_=`9qiu)59tdRz6u>nmYdk zru`QTDYd=>LkYQLX(C+W`nTBnDGXq#K0(NH_9jHM&}5ROF>pD2Vz`V+s}0MpUQ_$( z!;gSbZvJ|Hnj&I(kmL&L7`>abcgUtb2Q{?pC8(Irn;_s@cfqGI>S?Bj+z9@rXq6hH$-}(C)%Y|g2of-| zI&(&2Vp1#boSTnA5Clgzw@quyQ^V!*q4N$%uTk|jJHoMh?{ZxeG!(ylw~@N_pfh=zK=}m1MITluALaHEl#*> zTwi%^fItXolNdIa@gkuh*Qf-R0Vl-pQcmH2}yb>5UnE}>D)FK`=WA5VNaT{gN z>dPCG!&rswrhQEyy7-L;Q1$cHJ*Cm( z>sYJ~SPZiu6q6I}3TZPbUP;mdH9+ppo*n|B=Ism$B%zh)RF&f)qK^Rv8Bs* zUX6zd(TWb*>oPRJNhxOvAb=2{TjY|KRsAw;wlsZu79~7wrX4VDV^f-{2||E9Y<5MiDpx8Hh|qG_IPM?&VEGxx2@lxD_~xX znW3^uR{6sN0-7v!!i#7!T>($fe~4k*wg+IM2w8!JnC@K$7!woQtc(lhhlZU#R{#jz zYk<(bh8tevoth+G<3GxDwTUq5QmhK4-*+SZP_ra3Bpo2%a>i+M6Lx%Z)crxad!_!I z!$Mg=r`qIs^+!U(q05f8Syt)$-I2}y*8FB=J)NTZX48F{*+aAid60ajNL=NylbS82N+3-Jc!YCQ8%RI0>p>g!qnt%xaUN2DqxOS0g2F-_dDI}2Eyyi9 zEJ5<$RxrMtP<7Ua$pPUs&MXf)&0!QGCXX_3?{nb)>2001@D$V$h8WYHh{V>Dff2`+ zI}W>Nxqs=Jn}O}U*DmJ&UHcsPXE0x%9oSj+d{%NC0g{b;l}}CmxL1gC$7C?MPYGYT z8D?h1rG>W7g?;RttMpP@QLQd9Boy@bjPC{wP_2hb&;q`&R&lEBP_D#VmNIFLai$DS zc><4;JaXC6Kwt}xnns_ZKq5IwuXowf=*0q5{7nWY(!p?FMs(7 zz{Xr7C5+3LshK6TTp|lrT4SAQrFzB=4Pr=fNh&Mw-NY-J0~1bt4vI4BVDAX$Q4h_y zWdS_4%|o1n2dYqeBrZY9b9$1;>5=gcQp;q`6;xc4^zDF%=306eL? z8=KDG!GP0wzAMlB`AJnO1bT9S0-p}rAKyR6z}Z$}7A4H$mE4^>kbZajcKv1e1}9DZ zU7$-|b=X0b^<+hv10bo`sjlhC!beHO0u`#Y2Yl=724#!_rEzbfoVmz}biTY1 zi-3$44Ks>&m7i+;KnBRAa%38_z{^jjdxcNI!dys^x_q#g5ufD_!51rT#9Nh@zXOTe zPJtZvpI!to13vjZz$>GD3JxUmo|?CunYaAdNf^@~f8)dRL9_*k7ZJddBqIwnQYtfA zUx%)7s}Z=v1ONtx+_rz71dtk)Kvr=3&D)}Y_x(r`!;pdpT~O11RN|8s{XJSN{4^ST^}(UV(#HQq7v#*j+w4S0akZZ0*VHfxs@bMxyU%yJ#_x zT6=o&R=EWSX~FHENhc%sc-F|E#yLF>+Z`Ug%Qnyr8z_*yE&HU~2bZ7S!$E5{{Ix_u zUu2AxnYHO1Yg7F9Iv=j5bV>AnV#N)_n3maR2A^YJ2uyJ(=J%)Hoj^tdsl<2S2Tf50 zPg5!mYg9wUQ#k2zI{`+`UKcJAzuMlan5-AD4^!rpOd=_Ws*JF zQ#`2_*mTu~nEkF-`PIlG>xZuM88 zee>4H=Kk2dh%)6PTF4P?;-&#%(ctjf>gH+p$h9x@j_GaAQ8}5u$O18QRr9;5W_`=F z2S754%tkPxWoG=Xq6S%G)e0+#c0QdCvN`q`zr~9|IRXIgg8- z>HN{A-=8Lf9UeJ|$R`3z;2h+d2l3p{`-=v*53eeaycPp24KbB>#|O2}a=g`a*pm#+ zHS07-0MIMg@ZIYqk;6(^=*qL#j5PtH>xdX0Vu3@?G@Rml-S9872Q8&7Dv4toO3QunLJ+S5!R<8&IVRv?1kDcp@>olnVY)`;P=Y>xpmxIjJX(797*q>1O zcn$g44!cRzau>2iL?M=ggzL0y-68DrkN)qIrZmvxf%o~y_ycA|DNVK>!>d@6!!{JD(N zkcUZ?9lBVWhuG;6XTepfxK1zVSjKE0l545=J=@HUgimfwFpko+)`bltJTXb?({e3; z%l6zvro*(=iAiA|Uy|WdVr|!Rer1RF45yA~t7mpTTh?C_n|EUT^dM^8!qP2+h6$%H z8bQ+I`#L>|QSVRnwhvicZFR-N2&wN{Dtt{f$BMVda(aqWf|e$IMgk!-uC@Or^i8F- zyn+n^=>1xhVbbVYVA)R0@9H(;#+W**`#15nOT$nzhYLx0c?S(yvcnS_@$3(m(}^c` zQG?{<^}U?K6KGFmG*4Gs!_KJk9rei?YNXu6bKeXi;d8kfx~)eW0tlCGi>q}(GK<6d zIowJYZ9RsvGL_P@+u!~Sl`ru1`FhJ%v z@ysl=k56@tB3v(cVluhv|{mZXgL3N6lJQ4jKx|&EVESqD$P6R zx1nvFQhl{OCBqZ_&>6nbJqmT2kcila^SLX)6k_MY$GB;T@YNBuJtHyv-}}5Yec=7Y z+-2~-{mpBDhp1@Pv14t(D}&`u@@+vmjsp4*dv2BrPS-BSo!f`)QAcx;V5|M8!C`C+ z4=@y@gJD1I$RO<~o06&O0Ir~b@?zFop(D#KO1&P#JS6K6%-*o@9vE|4a4(Q+>mH-n zw!)P~MjY)=K%75Hk)Y+H&=U}?XMJr z7e#%2UdhL38bR)#aiVh9k#zm)rhCP^%(+d|QIs+2Dkxn>sK_t5`ts2oP5JH0lMY2J zy#P4osR1@k$5V1d=UMS`@|w(* zDDnl7TGWG_?QJZ)X>c)=zqSmX^< zUKk}MB_@Koh`7Wb!d3@dd*E*izBZ@ ztB%D#&zDT5CD6Z?wL)g8E4`#z$h#z|ZGuHF>52Xi76-!ynTf9S36mdcW%P#KEE*;F zhelnoIE%UFV0o$8)Yc>@@1V{#$313~~Va{qg^3KDX1Wq))ChPB+?FTmnH`j zb}pB_cwf&w@BR*PIMX=mWMLRl%smlRe*H=B}%S9wX{3os>Lq21j1>WYYRdxl=&jspJzJ-Ue0{RN@_UBGsK z!D+YMzu;fOIF6q~1eZl$UK|jXNulz_ z=>h|LSD5Zr8>i5`!)H6eZ(CeCkq-x$GJt(uBStCy#Nd=lRZtp2_46p1MG93vjvIX7 zOP{6Z6}uH4Emava1P0%7?e67p=$dCRbn~=$V5&iunu?e@C`BN$rw*lun`AcV zz@)F`J@I#7O7JrCUXzV{=+ESW2k+Csh98t@s$^kk?aY%cRS+_~X}HH@Ij(f2pLA*b zhJDB@j|wj*(0zsRDulntESaa=AQ^7h9PW)r*K@4E(`q(O}eG%LcU4W$0v5Wvu577vp zEDR$t&5I<3jaG458kCOIl+qgoGPA+dS+TPKyoRqx8(ghs$*dWRc%32Fo5~U{sm!$& z6z+k>yb+20bR(U#@csig*3ldeE8zsu7g~`34G4Q%&S_?t6aGFbKfVOY{AjF4`lH1t z*oo`sU+{Qws7VG>=vZlt!E>|twI4-;6`l9U?Sj*amS>F}uv*6S)q2C1L z#7F`L^5XlXqRWktUNtyhbg5Qv9M?vZeSe}zK?-05(MnTse;^p1av1mnroz3W5PvIz|AdgUep(4TDH8#qbdBecX{a0N z3RweF-(;yls5+TIJ<>gk$p8l~^`axan&|023Uw<}?DPuLLbBtx3f4e>FXpG#9VzA) z8p4(v!sbxCL%h%OBQ|Z!YGi}_wRT5=M8#-zm|2TCVVg|6RJ^;(= zrae~j@#f)^ir}Xe=m!lyls)2nUySFvn2cPW6r`X3SXwc{-ZsLXhtn=`^oQNuII)_T zXw+hVUhQ;9M1l;Te335p`g^{BPp%uGDZH#ma=Zv=eK!d)P(7HjNeex#Xpw2Bv{5Ys z{UKkzmYZD-uQoMTS79)O`Xe!eZ>e@y2k7x{L5~jxJ-$LVCw0}!)tK=k-?loiDrtaL zDhA!O#JO0;k=eZ>D%NjNOfjQ>0%WMe0OUo*J#R%|vMe*c!^h}$pb6TXVThY>Jz^3tl7 zpZNR*dO+Q)ySc5Ig7Bw)u04+z+sQ2a^0IS7J^~=?c3+L%e*liDIn&m5P)X&{=p&TL z_t*Sv6Jz-`Ux7}#u(H9p=sx9hc$4PMxq;QkVmAGVlHlBM`nN-ofW(%x9zz=mG3Fvd(Hk%H zPZ*teIf@Rn0T0WKKpMJ4nlvC!{$Z(j69vQ|iu(|q`T;`~L(2k{Z+b0ih@6f)@#))^ z_)p6&(%KBqOEKG*@+7WFxl2tP%^$(G4M}+X=AByS>;RL%0x=aMF!!Tmfz)`n0yy)u zbF|6$^umKuZAZH}3p)95k(g5^rcu0=Om?PJpLpki&s8xHrkhMu-rYxGWft|PPRpl~ z?wzkbjp*v-^ixAyd#!vSW9kSFZ1NL6bL96aI`gRbDyHj2(szXQjoL$|NYB2=1y4kJ>zDb>H*50L#3d6NEE$HonwcW2G+F&}8p=(~|!0 zZ0pD$CC%MYJ$t()IIsC3_Q_)d zrcC0KCXQt_4Vqp8rTk;(s^70q99{HnuQtwatlj48oA-u$gdren1MIuqb0)53yg>Tl z6-s!#q-Tta%^9)4`7(|ekXoCE&%SC_pYNs_X-Q0EIhUz7ktlucqr{42w0l{RD48^@ zSWq&Pp)j@LT;|+Fk`aAK|4P{1+Yja1su4KQm3$XOsSlnPiZBl2!QZv9{V*{-_~CKh zzgFPayr}N?cTV;b#e0Zr8TXvjXA#rQ&~$ZSq=!PD88#EjCyfYVTiwhH**YwFQk)##Gv<5z3I$J z7T+NBkBjO*At$;-qDaQy4`Dj-e5YeCbILLdEN=^9QA)Y@qCn56jIR&-+mM! z0TPa9p^ZeQZNnY&S?7!1y5%P876c_L@l8|xF2HM_F0%kq{)#(~;=MAB!H8;Tnloi^ za5v--LBx2`ND*QL)UvjuZmNhM2^xN*`yVr--yENTd|YM*L`=wDTJmCquAPn^Umj`R zP<=O6um)}s4FC3W#2dl*@+8?Qmd&hRWn^|dJGvGvFD(?M)DEi@| zWEVY&`fzUz#>XLf1Kf@*(?In~y0*bD48GmH;O|xFQJ$!mTLV8k$<%U5&A=gGTX~r&s!;m1-5I zn<>^SM^}e-T|0|Vz1{k`h5ohDVXFaAUo@O(4fPU&#Av>kmN}hznPix4>z`a$2UFi$ ziI6P(oG_y<=aZhIh}T*RW0lN)A6Eq)@k4cF%#u2vPj-wVVeIEe7O4RJ%IHpFxD;aD zXyTw&vaU~~crt94K7~axTR*NY7@D{A2a&Q}FIh`rzHP`LgejWbE4|vuI$0&HhlL?R z3NOzDm_FycpeR9=9%smxtTdoPCifwQN4M#{zh@dm9m{Y04VmGGKz*Tq?PCFeuZepHOQ^h5E5*$1I3OBK`gDEdktPZ)M=fB8l@MpgIN#^~6_@eFVDL+uwDAo41hFYinx9AwKLY)iA`0k}Q|xM2M(ZAcT! zgt(2kyOJ&FQ-BnKCBsJMuxtzR9#w3suf`-)PVFR+4XvQ zk74j^jF2HEhbf$j0wXTAQORVUDK*goBBDadR-vol@>`*0)XjDGM`TDww~w8kBwM-o zrU&Vj`$wI@e>>4fOd-pT{r!v=xs-qpvqI|B4Kg@2&fURIPalK{NYSrGNwPMuhOTLJ z{}AIk_q>|B>0kKcdg?8Ad9(0`fr?1yY0<9){sv{m5FmcQ{H3t-3{YA9S!psW?m;@e zffIBA*pPsTBg}a!OcMn_+{%2!mbHHJ=nSM|-cvW#e{QN*c8;<8%vE(`emCb-e|bK0 zuesh8qyEZ#=c3npv$J+w%Y>47FP1VuJy-qYj2U{zmV3t*Pn`6Snt}9VCa*ZsY8Xu` zx+yKR`@xItk8xFaL?7V4y=S%OzC}TE3XDhQ)BurrSrzxix`807Vl1uZQ2)&yVB2rI z+BKS#$}sfIUv2E{2=bvHQk`%#w*0GU%4l7@hX$P;2!ZgYft7#UA62Sfd0}7eRBt)Y z<&!Yjd{=i#r>1r&D@L_wYz?Hpy`mMA6_diZ2HM92hS4t>TD-Lna4Kg|&pBx}-foV0s z+qsOYJs5B7H|r;K-Tnig(N}+={OiHTO7Sfwh;tmh^AREUJ5&xj;4bII&Jc}+kkalwQoHj(T+k>*3$WFAn?hbb;R~fJB$wN1C2W`{EFU}jPJN_1PZ*;t6!?I zOU<~pY+JKKSiqu~On*y|PV{PodK&NgVHlj_tlIAiaeA|VR^NYz{@OMtt(=6g(A4>1 zJiYHXXvW$+&(BM^%ZLFjZHbtzW_|VfQ2%W3x$Sd(aUq#p6PL9xS}Vl`LASS9f{u$v z9D;Xees#1cMctDWR0hEE&e_faYy3Y3jK3}p!rBFW-&6z`VCupRvgg21S^ zF4Se;9#1XHLSU<^A+b2~x$!27R#?|1LTPUSeOn7ln`qHl_0t8dloLTjv8idqC1fex zBNNTD)wgAaM!sIuQD*}L-u(CmpHjZjs7wDVu0TPyp{SfdBG+gS-x}CAADDvX134ISe{!}YV=^wR6#aog!D@j*e65k(|$|mYF<`5}>z1Q5)qx?$U9oA0Gn1>6e z(1OJf(rSe^xu`BQH8hzp{vxPId_xAuGC>ACCe;8g<#v}9t)GIcG>rhAJ2*M%TuX8$ zb%pL$(ycU_P zSyE_~S-Epmsd%YPx_JAQfxJTI9Vq)@{Ue2nr3?5P2bwN^lf6R~(9`b89%P!7KVl^1 z;b`~s6S)$b!#@@97}CehuPI}<(<3`}o5-~_QDpd}mqx}&9X=t`yR#Y|9E)7?R;}bL z;Og~Jz{$r$?Br^>I3iZ1e=CV>Yb1Lu{T(Cj_?^KbRwh<@{sV1!Gr`ks=criGQ-k!J zIr8G}D9$h#8pWctD%l{^Qk-Ns(cg;2@QMFpEe@z>`IzOa@au*`RR-49;utStsd)xc z7H$26VVbMNDQc&C`F?fM9NWACaU%uro%(oxr<3Ad(Ajs%1?>LkgHfhir*$%{Z zzfQ=Yyjp7&du7)Y!4qD#TC^5W9EBtWFx5GC`lO1#+<;GMG##;N0}uWlCTtPGQdM-7g$ z@sQM_8)KKQbuH~8zN<02dMM!RZ>XzHYxE_Iz|Tw?3`|9J|CfsPKJK3S!;3bWU)%A5 z*52R&z}?x}&c@gu-;YZEuoe_;mLtu!tBWTZSsEx_XxDr(Pdp4UmR}V0>J5h@Z zldloNgK`ZK1tKgO-9TfZFdUB#*mCvW-q*Ix&G($Vvyz3qQ+zR?Sk8(X z{n^)$Wzw_YQ5n#y!NaTVAC_WY5FN&|8H2X^O}s+qd``9u>{YDIyxYJxYm(u+AE7F2 z3ptY}A98qWxa>ZVeRrO}PruX4L&Z!&3!_xW`x*)z8AqMsvO)ElS(R8Lq>tZuh5n&M zzt&Oo54(1&qrK4mcdud*teQEjpze!O8kpH=zm$hSvANjmk%0%y^NoafA9h^%&*8AE`X^48>FbLtRJ;;y#kUxJR%Z(H_t z+vsNOKO{rRj`o$2!~lH9^VxL7A2_Z*%c`XHCvlqgEZ9{BNUHzhNqD*bN`l&gKgohW zhQq8!I=k7FEuxJ61GCMk(z`=>)^=J>LWmaA~TA6s~hHB@=mfGRb zA?( zKB*9#uO&1O4H(V~7*^>_<}OE%R93t{<3hSopWlio#kbpPiFloOxU^4Q2wlV2Z(z|U z7RV%ex;B~PuK799jKYM>Q zS+e5~Q)6`OGA6%q{-ZHFznMGN*%iCfiW%QV;pmlfJ$+)0@uIARKlL4-c+lB&#}9_O zeXktry)SCoQf~TpfVFwe_n%3%@3r&ga{sUEwLiC<$uW0W<8iWK&?uqXKW}#Mh|+U0 z6$N`;zu{#Dq_`

N0YqwG($85@+yeg0>y8YC*cpJXx)O_NBi~^V=rd2el*W;=5#G z-)@bOeR?GVf*AVdV*UB9mX}gj9ZFaGD}8@2@P4^g|GWHx=ioB1%xLbQ`u;Npmt;Uy zlnZOk;9_(biC8slnfM)3k)N9W9VekPQK?y$hO4VYO~Zpv;EgM$BA>WFtCS0MCQM#) zA?R!agX}Sn$?NHlK^dSW#sz!TGmoHVtjHF9(emiKxjl}PA02!}Udh6W>z%F=$sVoq z9Mr-Ir1$9?x45eGFW*-2!hzW$s~eatu&Fnq{ZvDL?X2%UX_CQOcx^8eU++`S5GmG;os6A?|5|OiC+5+u2?Q*nj~S)EEYv zd5f}w7z|N<`?q?mz2_Sk{Gsm@=^8-|D+1Ge?HPD&cp7gBCz5qg&&7e>qjv&L66VonK96|ryd zbP8K*pBForx_Z$htQM}fT$_-{`wg;|XFE8%(!TxN);t=|>JiiSYK_`z{_j$g=sF6@ zjreGK?R8$!DkciM`;V%4 zH4`&8H-X`vHtBX@Px7Un+w5J72nQ1CQ82IcUF0NRMWJ!cdFxgXaeT4sd*yIFG;eQT z_i#qNz1xpRW?(SF>ER4qsE)`<7A0Yx=l72Ah3tVxz#XNHOTe*ho+3J&!Mx%PdC-(d zeAtN#eqO*EQn=Jmhkl*;Q*>Bz9ufbq^PTuGS~yT-TH=@@(H}Xg6ad7pNnq1otnF2r zn7M+hx%HL&e?M&RK$#;im831Y#Rt2#z$&o3J}Kg1Si4 zvZOZgpM*^#C`FrQ?h){sfuKmq8^It%Y}eGX;iWr|f9%EZ!^A31mLXoRxAG}s(N7Kb zMG^Lz)w^lyHzF9rJq`^ArUYLzeuwiT>=>gzL>ruwGiw^&p()3W$Bj!iM`s6Vj1M-a~-LEr+c*N?fhe9`Y-y<8Fa>vy%?&7l+{ zAa_^4{If^X+LUr3K{Dc@9eQP0uMwA|^;I&oV4qYHmYc_0H)zNvLBT*UDq{}>Bu5ap zUm=H|2Q_8QDMb$SA|$q6xDdiMOA6+n>$P?Z=xwLj&Iwt8Wkx;Xy1-c3fXRi+r=9sx&H;SKh==?Gf2Kn}jT?i1{z6f&v# zA3YV|8MRs{hXPuDW*p&@oN^lbt7?g4$7YHYAgSIL-6+R@wi*gd{9^m7W65O4IZA_& z|6a!iuUn1}$QkXg#-)=T$0-d0ba>xE(nK{yv$&RUQAtL2$-}SowWtNnm zEEfqNEH)}BY+lI{+p9&o&@BYX1{oqiQDWS!Kq~55kQ&W|$6lZru$t3pI>Q5qXOp4) zfu#8OX`5?qzS_P}XS^H%LEh@P)EUVovvGR=0*H1GeQ7ciVPE4<9FtH5*HNbC1_jfe zC7(F{Pf%PAb5(ch!D%`3y#x_U6oBJpBV!?R=PFq4mB+AGDGkw*HKF}F*CXA6Zw85| zHVq}3rn}1*5D0awbZco>i7)(>z&_nyz{d6ETUz{EWX4ui%8|X7SM%-cPYa-idvT(F zBwIvbRpjgQmlZ&Z54ynKxwP;r7TI~mCp1?wLk?U-3?+@!wa-0xYU~p2Kw#|<9}m8p z*LXU(8~%{^Jk3#DA(e8YR3$>rc`XM_#jQ^pXz+uVF_8U9p_C4zzd6s_tc2VJ{Zj>5)kXQPWS!#qQ=b|M(F5(b$+Ef{lf$dY!!ciC$>Ssp{h81r?ptHEC^b zqlqHg&`BU&1)k+@UiInVS=Pfu`rEcNXMVt;^El&pIB5b4tf{4I(D%Z*=N+YVZszr zg!*yOA&r}K*!bQc?&wvozeH(6t;sLVLb<9LLU4|b!=f#nknwtgz2niFX@ia|lfdx` zx^fdTN2A6Huw$G#Q+p01k<=2@c>L0jC|B`9?&~@Qnkd2w1Vy&23h>q_avgDxAv}>6 zj!cq3`%K!4Yx~MzJWD%Jy_8N=DEb(gex+N-|@W!jU{GNw|ld;L!MdSa@G0QaHraib;4_dT4 z1B$0f-}Xk*7I(K}Yy;}y8%C-5VGPPF()MAsVTpjhThGhfStXBrJY|uP^DjDdU@0MaId^40tt=6N_4(su|J7e^tJJ zEZ~lgI>Os48qbZyS@K|!h=FW};V}$O z^A@z}6~i271lNHf+40f~#s#3O+UiwGr)|ZfOv{Z@I3AYfT*ZhY#`&477Q$|kE?z${ z6(&oNwkjNH+~cDaLd=>y_}zW>XRp5R7Rhtix4blkV-YFN)khgmd5~7(N!*KByA{m%@t~Lsa3c4+JkRPs6(cXFP|e@{f_O9H;0$BHpSKwe}VLmX4CA`uN>XdsJ5!J zoNl2c6{;ICC)lBPK0ZFz7$jDq0}86Y^DlzPrLMJVa@)a-BcH-(99pk1I+uSD310OP zD1rfS2-^Cq;m#~r+<5ILUMa9`00X=PM60UeW$<)Da}-8@&#|*%b(Pj&hHVZxe8~4TIE@l87JetFz=RWoc)bmkVgOdFv z-4hnu*6{fWPQt@x?ZK|nhS|qIC^+Hslv~}yJMPW!O85G??h+=+w)^&=5_9{=5NnuL z!;7?1hO7ne{H)Tko}rrJ27~2|>JXShdULkZC8%lmT$Sw(E35gMS&6)=I*Ep3|rUlJa-q!Oj8g^AUejNO~d-2+c}b4es1dXqQfufcJ&M^QQ+yRbwghMu%iO_o7_~#INiDwGSHR~ zURN6nt4oX5M|;ux?P&UXBdI)emi>N@7dc-N+~J~;{;G6}7RIprLY>2^oii^zxRNvy zFCFBhI4W3hjy1CGDXD|NXiE6j9YF(-d(I;Zf(34vBOXl>Ddi^njFU&R0Q!CSu`!@G zUNTDWq4_9V7k~YR4TOMYLn;ii`YwG85VCI`Ot8(+f?6{po-)u@?SxSg`G=pKv8WxFKBGeAAK~K64I_)}@9!2Qro*2d8+XDraZziZptNU_> zJI|UnY`(;IhepGDl%NIhbkMPUWwhWG>t)ci=W6=6|DL9pzONUV4_G*`Ly+3L&aEwJ z`J|pUs&;1=?;&C&jty$eyaY37#AAL8xuaV#B$U0mdz(vj%+N~#V807=>;B=5cTEeo z-U0$Dn>xR(U*&;wk}gs$mPg=6ZkowKPqpYmcjMTnhY_^pZRO`v&1Kx$z@rGlsuVRW zAtjGfDD6i3@6{et>`0#m9X~@`x3A|V2%}}YZv&IbvXrncfd0i4d$OiVqH8|pz4xFv zF{P|FY-&Ij6V@e14gK;gt%eJ!L!IcP8S0{~#ZXp)+5W9B_Tgl%FVMZ$#AEa6h6eME zcBLM%SW(GvD((RNo^Qm+_EtUKm36KU-v=YHS4C0&ma@NxcbwpDP{XdwL-xshYM>%2 zar#MKhvs5BY*&Z3V4Z8n_klh#!Du7gL_rn^5EbR1C1XO)C9zEt%XkB77L>g42=Ac*G=nxydJZGnHiM;7 zguGFQE{UE--^Y@s)L(nmk}V;c%-RulT^~d!e|!C60;S%h5P%8-i_nh(W!p&3hm6Z< za8I1>>+?nWMl?#dvxSd8lVgB6(&C2fadC6}&iw*n4~-Wt)FM+^=4InmnkhIXK5gJv z&g^*lTp!+EIMaN)A4$5^d6CsKLcFC36q8?)U&=djvv%=X;PC9x*`!p zB*zrW5G@0DQmJT=sRV*l&36hTPQ>?dZ#9F9XWY>jR!j!qRbijV?`7H2z&=~d-q!Pk z!M8>x4@j-$XgLcs-oqpSfY7n5OZs;oZ3L*LT2}n^@sAX(lA)omnww%AnSMI9^)SJ* z79`M$rtNfHL6|{MR?JE*dF&gI+fJCMWz-b0w|u34H!oLrAK6ob(94o@sD#R~<;k(F zVLyhh8pQ?k;p8W)C7bqruNjz1md(%&Ij`81_Wp;SSoPCdRq_L5O>)Wx&$(O5-!a(HBmH+h|@5v!|T_T?bq!~!Zl^|j7Z=G=`Z7Bm}jSudP!38 z1j`V*$xl;8$C%*%r0dInv|PH_ut3p-&7JPK33!iBTre?fZn!m_>UDr&F5c8m9_;jZ zs#b8d-3b&BEnd|zxKUOanOCSvcV`#1x&7gJ>ad@ORUR0UTHqmc1*Cl<88j=Ut zi*|ITE;KA3r?U)N$IA_M*d9-DMLtBBY4@*|43PfGlaEJ;cX>igM6j@oMqY6^d2m?D zkanl{X&VTV8Sg1q88Yk88oddN4cjs$z%I{z|5$55g#l&C#G;kATGYEKnGo}WouqP^ z**e5w;=BRXfjVSTPJDOm%F?*UPb~3%|L}f-dI#-2r~oP_w!7B+!GY01FVUF?Nj=SO zl7eAjczb3A_c*yh?DZSrd4H`h2#xqSWnvXrQ{z7#e2C;EZ0G4##V|)g;<<`ILtiq2F;w ze}`PW1^gopXRr${c}&%nCy!d*y@Ijr5LiV(KYwS+=yVq$31pxhY_Riqjs&DtN%fKv zv5?reyzU@S{h@Aj2_s#i`|5G@#UVpQNU-KHzeI%BOg})j*nXbnUuGpTTDY)TpPpc| zvP&L2TJ1aIYWZJX`9T^gXY-Ri`@`0%=Qkj!X9}a0cwrjahO4@Sp&vdl{6?pB%MMS* zzkB{z8$*;P2Cjr?H!vu(KTA95J-Mkz2z!1_pw})Gyce@jwlG zU;_Ykx25A@s#9QLz_>1s_1}F`r-C&{M#>+_7zC;(eNJG=o;drsi3pwz?4FU@w#lgq zrB^v)4gagE*hINeL-K~)KEi=)?q!s%I*BBq-j7Bz!#Wu_kgPEs?Mh)(h_5geIS@7B ziputfU8x9Za{dHXE4*ZEzEIF?WxNfLHc>(b-#Qsbz|tn zwu~Gw20gxzlfozwpJFP4#c>x*cC_GI^lS=y&)ymO>9w@9>D)LsHr_g^*Y%F=_Z}PX zPFVIXS2P4Ka0^-!Zk1#)ttdChFwf_<6ot$?h97V>{AYGW%ZjY`7j(A!A|wFu3VLRn z?(c;&EAt(EZ~Z5)-+vaivHwyh0J#d~tvJBvaocSv=bxH#gD-z2p`F~UzZxE{?;T46 z1(LSwM)n$2f0^2TqIG%tityRE3e|>y%t=~&_uvzLYb^>_Rg`~mFKvUk7x`Czw#is8 z<(Ae+^la%{^~hYUDVhGoyPk|)+56ccW4#2E@7cys)(iU)$47*$ zCY`l^V^YyGtEjC>@b1#`?uNtf2nCu6V~p!br%nLyL~kB9)Qqr`RXsxr1P-e!Nu`OSkLLq$9LYx+jl%4r(N{s0H2M ztx4rwhuZvG>dqCrYUg@rn01kJ+O`ta- zwEYnjKz&Ci9nWBxt^el5Aheahf&J&>L3+NLC<#hYUENO&q=inn*yU$UdOi$-Bk>3< zk=7QS!_^%LbHda`GQu1Fe&2WQagwfRpz zH`xP?Uv7-*c8N~JGNR=j*6J4!BD>FTkN(I<_aqWHQSZL^X;_@Y6f?v_JNny}$mRzI zrf`cz9D~XB%4#Folq+Uj3(lhc_|e;z%i4H}N!!v9S4ZbWC8rrH-9M2TGk0WrWAnq}A5jo#uoGk3%XpZMSYRCkHlNR3G^>C9Va1r# ztQFDXn>Yr{W$hu9XlTx{*#Q@&-!Vtg&ErwCw4?2Ls_)m2Wxj%~+cnpD*l_!W+qf@U zQG21$HUU3rRbDcM7F0rI}~iih&giQNG!6G zO0$)t%4^y*D@C(Qw_?M~Gbqj}Dgixpqae5R}H@gS@|YR>hy_S5YNS$PQT( z4+Yd>lR0v{>c%4Z6=Z6{)k01scUhtb*s-Y&3Qb@^&AT2tj20k&d3)iGRt z5R`RcnaCN?P|546i*uUjoysun0bwRGp!3ns=iF?RCtjgYwbINm)eHhNaIQ=ls6-ak zmA*#te|MiN)JB4<3&+7M+7d*H!6{pO#V^&xSu%>Tzh-w3h|T6I19Od(2_8a4GP_R& zOM_Gtmd@ZCEtB@&ZS=P&G}OTsh<^fdRr^FQ9UWe+Pz*?muyJwq;>V!mbiz)2tM+5a zh;3smlL&BP@$EdI`R~E+TxLU9YIBg8kd!exG!Fi$&F1|x6ymV^t7iFjDqsEgHAITX z_;u-O;vI7oJnwI-KAjUT5tZ||P;o{A9je+l%(blo3IeOdtg1*RV9n+IEzGM5#;WX% zOkyM9oCbYe%47r{#SAn!qdAF#c+6q(+;+J#G5=o^ykjGdvHtYZB3f9zjMQFBYq$3+ zi4q6<+3xOc@73w)!Jo4$@rf%Ur`!Do*sxuDW24cxGZVLFF{3--WhHPhi^rz0$R@4H zR^E5}JX))si|zLac`fG~dan&=xCAZdE18X9KrySz#Tyiz;)nS+cLcnlZp!Xl#9BP= z`?v@$C%JhP+JS8U9V!i^rlq?(;`4~dQx|gQddvr**IXwYD_@^VB6Ubt9)+34maQaZ zH>gWgmics8>h?w5-5lSYT!!8D->m-IxgN5(`gePGoOGHAo^J>$e^Q7g8j=KCi-nC3 zCa@K&`^Fj; z+aUHau-YG6-sZJGzJ)~@Jp_~l3V0^A3qkqK6V;Diw%96{bne){{I>C9$1OnpWg8^4 zd|I;ZOjz3XfX_Chwkp}9Neo3qlu7KCqJMY=|La-Ou%p`)!-iIK>kUz-(r0x`B!m=p z>)ILNqEdLKC+%{;=aRpKitlofbVDNJ)0gg;(MM%i5FvrvGQMdzW{Dcpe|j_2@q(BF z3_}WdmYlOn-kF(n@Bv?NJ}sIX-c8aCnM_n)x{Hf%m=x*Cto<{-rYYW3U$j>^t43#( zj2aa1$>4tvm<`^;#QfE_4b`lsBZ7GrMJ5}AdU>;YlQE5~sCDP%*beyEm>NoZ?HXiy zL6dCbu-L^G#>R)w_2VOyxqZLL7=TyVyq_9?hT6hY)e5~>A(rh^Ae93Q4@>=dFzy<_ zxKl666uhQ!CS|iZFmfrKpH6h1yOh1%z zq}0?zp^y%Asr#u1q2B#QMf~^B;UlRFCKoXE@PVmk7)(9Ms^=Jz=TDg0>B#(3fU%xD zi49CWdSL1?E^-LWc6gk;L=cIhXbp5qEK}k&rGP~*%SQQ>O}zX%(KraES_>wV7MgFm z_ww=L$!~?4k61#uPS*B^<7mZ1JnCj|+oD9d6pBeUYFMVsiZoRUF|_V4BLRDP6ubXE zUDs6%rXt2XYg}+{k{Ns`%>->LrD$S;D{-Ogur~lzcqaONe2BBqwD>da!Ft zHei6q6&8}b1^2POzmI+y=VpU0a44u1>E=`^yqE^kelK1#>Ihg@EhkZ{DRD3e6T+gl zbaB9Tx8wd??l{p!WmpU5f&BO~0`mwfRYqAJD?MO()lbGYXbflO>l&@=yC5JS`$VX? zLjsCIPl-F1-20RlDAxMl7&Bt=-x~nSjq#7l==Ii^ePHT}9v`FfxxP$)pn&Pv5G@9$ z9BCj|408UKt3U_+pQ(XDvfD=B6Yov#K+9*3w)b6p#{s_3`)EjM$xM#Bwo2Yxk1sU* zy)kAT(gEC)+%L^W8nVIEBY7|A8|}}(;KC;R-f?dlh%BMlpwg{4C!Df-ohd z8*jA`_h%L7N=(bjpTro4X~aB(C%ws=$OCa4ZmISVM)yFN2@&bpC z12;Jdvs2?akqe+mT>P)sLe8+nCcge3^vlx5Q{KS9sqQUzle5Y5o2q+kMX&mA8Pu2L z!F~OpF5uOS$#g0g^9*$y9&NB#=S0m8k9|Cm3o}u?$|;D%7|qhC9xsOa{zZ|R_xfyx z9+7RTwqx{)R_TB&4X-jaPkZ=S?J?)-yVSoBq>kS~X#iesos^5^+nngTClZ4M9IEBt z7}lxo%HSc8#1x8NDb=16jICc^2_3~Q*CFxyti&#>Y z?h=rWrIb=?>5!!aL4lR-S~`|cQfcXsML?EzhH8o(maAu}|UiB9Rjd z@0jg8+mRzIrh-V#jXKUGR|)_56?$ zzD|Hf9$cBpYOIC_>rN0+7(_koz%xZ5^{y^{5xZ_M^RcnoFjzO``u}#QMIoonhUNc3OYp)m)YYxyeUqNO;o`pKPVYL6-0sah))BsEQ!QcD33Cb7<*%?;1 z_=5YhC{P)md;{F?uZS{eqV&WO#qW0MU6}S*@Lkk=Q4_x?&(F1o4vuz&N)#FNDCLI0 z>T@2vvNQ8Qe^}$^!;L$|icz|ha^3%J&hE@StkXq3{{7jp}66tSVa=p`#7% zioe_-V7HmyuG0+W9qF?IT}BZ@=Ce+e4%41|UMB;M#bCh=p)8qHf?pNIiqpE3^}I3H z?qAt7NDyzj_t}@w6c|`)80?MIj}`dho^Mya1%@M1F&3>8;M{mc$_(;r}nT1UF3ckQQ{_V(3JfDqMxN#izB zaH2T6JNkTkbBA&Fsvat&cBI3|hWjpn<*_=B0K!A3kvX=nfwg{a6-C zoArBirGOk~c;YpS5}PYMncw_{XmB^QUhcJs4l^G;d*Si=A_$0ohjBJ?HoYl2%sFDUn6Tg$&fQo*ui}G)nc_3|5CwT1RE!s*rx6?D4v@pq;(R6V zV#xJosd4e+AFbZ&R0_2Ix&z&_K^gSr6w}jx>n^1}_hc5CfYWa-7vB-4$QO63s_XhI)Eo{zpA^SHtT(`1*%=D81;+PQnasTv7oWeUc&JwyxI6lVrv1Bh zbWD-vT@~ms{c3^Ee%6_Ips7_|H}Bt#+he+E)?E?Tt*0$y)xXJg?!*kKLqqCxB%<>_ z_WP-a3R;7V^x{Igz188ZwN1B5jAx~df8{;J*-7CN3$1aJn1bJr736hMG5nYq{^S7B z#mL)=_cWhhs*$UO3H!@~{&q-vI&phB(a%diiM+=01+cD5IIOOvoPQ&mu(VROw^Fq^ zy1j9g%3VIG;}(tXU`GVcPT9}=jf4sex&l*`Ong9)X%+S7OvL%@D;o`& zw;{tmvM)7;t{n0@$6Mhw#~=yP=i$p7a%8VpZX zx=eP0Yw517xc;nX^eR)_xN7gl%1)?dm!{~YqMhN&>OInSHp3Qli5ZMI{qwS)l}i;I z2Rft4c=HkXxTQghSc#n6WLV;&_Tv)kN?lnJzbiJf589XXTmBTwT}aa@=BOn_fzPFU zQ6BoTx8zCvt3u-d|6$UYr++zOfr>)Dy?o>OW<}|v>4`h$t`Uh{NzNrUyWN>1ltL>% zZ(e#H`@jzCh{W5Ic}P&lAW0+n6PBYGTM2~Ltt8hKMPiZ|!eP0RyOUnO|0g%NE53Bo zIHrr!sS-Rz)WQ#=IXz%TAy3+gxhvcNui#JzhDW;(CV8S#B~A%?5+LQOOPSCe z0Sd9=#GcPM%~0=15rg5!8J0|YaqO08a?Su(;E4<+3=K1of>*l_3;2;>)xv3B_QWJ$l zK8od8!<|HMDrCwgg@?hMoe(|Z63hVF^ zS4T6O65)P0&^7g&bwB5(ytkQ9q@^-mz{i=_PpNR0nxCf%v=b`ncl1zdv4~GSST*qf z4v7-ytKieV4TKgIkYWamZtM~+9!3##<28n_l}~>lRfMe-Qq6!djP2{_C5<)dJ6lR3 zyi5esfNq>*(rBTyV@C>mj-S#h22+|E^adBFQG=oQjWS#rhrPbG|0fb? zQSx?$LW6Bd6fvNTgzYb!(iVB{-FavJN&W*2SaED2%g|$1-?HPd*3rpRBVxs8P zfs>8R)un~nW6M(?rmN*VL?BW%K;8YcQ@N|PB0?c~tJs`{^;YmG0F1}G&YvA0uBmU$ zuj<~{zsiGgyv6D@ka*{7o~PyZH7c`(#o6Nc9hzZp8Nv;>Qh4J;9#(Iw`hoVng_#jB zp&krG9@%-e_}0!Wv`CycOklEjL5@L*>4~z!frw%eu8zarSo>_8Kkga}8R%xXHd7!} z$^BP0DoWr+6I4MqB+!d~Z3OT{eS6v=@mwGK+|-roT&u@h!(B zDlKM?0WeBHF!EJ4mxuV!NQJG<`d!&C%b(BBi~n{}lNbmkc>}}4SLt64Dc<6|B*aTu z)X<}PgPp?+bBR>P#?#&!g^>}Sdy)Hw#Bh|}Afgz5d>G2Kw*UcjoO~a%Y$wu=t#x49*+{y*mB1l2p%n zLEuvXL#Ut@a?AFjrMg_xkUuKb%4V+ph2U{Gi zwqkbbGF$hJe^@b+QF7H{_JuB4_xn-V)vNUU44hZ@`KRmJR=>0VUFp{zU>)E5c!m@x z@V|>O-xpwS4RkhM{Oy$TA^Cj6xDnYiaKiF?bOyI3dsoix6YT1bOz}^93iW4c-dvW@ z>0t|=Bgx6dq0r1GEFetVv@!rSousHG>_z^BsI7T>?wMXF#P@9CR zAL|Img&J_0-a)D`_QX_^(q4+r-+)zKh5O6q*SZz>3Q{h#T-&)7d|ch8%%INYH?w(q z$ag%r$}HS`s|p#@4d@n z*1KI*Fih0sbLR%G66D5iw=?YuZj#MC7L5h1dlRp%=hXpiQ8#w7#fM6!xioQpBGhh2 ziXwBjU7E(Adv1&^MoF$0Re}3%wC?2W&p-x!G+@x%9s{#Ev+9uvj3yMX7@3;hb%|ku z%ZBtC(U>UA)(FQm9McJ?0EoAx;|kK3?#l-au=HBvu10?(z#-@SxrVkcNtMDj;hEUn!)P>#vnq3hR!Mq&LQ~Yo|#M z6er=wxk)&eXlS4v#s($U?&H6rv521jaZ9uJV&wv@(!hs5qhDfEIX)IW)#%-+KP6pL zoHRWiHXMXkE@%WO}lV5#bwP~proo-&1a=b4`vru{1_|#l~HrLoAcI|%vbsFR26A^!Jww! zuF`MRlivpTnqNA>gP~q`L%?R%jk&HCU02(6Q_%lm1o_d`$0ZhQ<0jDwh@RLnHe*$8 zWHgRXXK1zN3n9 zpj;{x9)p;-pS^o%I%`M>Lr#Fn<%uE*9zuw498zg)p1L% zs_U+*tE6JS<77~>fN?Ss=o1gsYHi2u4o z@A*egbs)Cq?AZCW!47f#g^@hmvq_@6DM!{VO=GCb{D!A>KgIbjBRr|w*2{Q_7WOr;fE(^sYu!Yfi2F@1ZE_d4yBa+m^!bMxv_UJI?^`- zn>6I2F>6BWk`lrK!QQ4!z2(-`rgH_rYIP~E>BRdVy(+pB?VXXu6#Vhs%PiB{0gcG_+)=I++IJUbMBG==_x z)0k$)*KAubwK{uVNA-~+R*7xkoP?j$SlmW_0;R!CDg!4K*@*xZ6M`%Yy%ui(Eiw?L0u3nl^rq$VhZ+ zQg|O-JCm1YsgdiT-bAm%94?{qgfZDrVgr)p%-J%>R%n|x`qijkoU{hQ%7}@N-NO+I z{r-y4F_>B|F`)PO6q8i_q+hYn#`Or4S|mme~NAx|*gr zsh?(@Yz|3OwcG*@bdd)ZeAXbME0|XFQ8NH&m=)SnO4G^(b}1k4LG`L`@P3le@XrO} z{?w)!oaxuUf49Aj&nwD#mKcn<9Vy?@=3*S_rPDW>ciptF@WRfp&p9K8 zc0Uovq&7fQk&B92fhETRGHC<&WqzPJYo0y#JZ8}pER&cSJQ%##-q|~k8)D(s~va&$->szr? z{y~Jk3%S`llMC4dUwwV1=J>W;6m_ka)8Lf7QN->8?<1aQcg*%L47HWiWlu(@qVOIs z-CFw(_RQOS>*s@lD6TF>M~Ux_oZ^rFFezG1D)Cu&=;diT3Y=B4j+sPNi7z9ruN}`a zD+YHZ34naCkGs7PNi+y+ucE@y+x<)vX$0&i1h9jNllQG=MBwh&*+(G#v&f*4eviO| zt3UQ^i=C^BY?B>gmx&P_>TB`|Wfm8G^ME@J2pw;pxHP|)67xu5fc0t$wJQ^QjocTu zJD}=Y^^3v@+O4NnFQ@K~p`i<`S^s*M$8CeW{$+35l>y*2UA2M1%n1?If{x#90rLQZ zc=w2(ddM@1km_hQTA9Wq~5SrjMy}iiAGwL;Z>x^sQcP2U4t>OKKw-fZpZR=4nyU%IJ9lgm(@WSi0 zY?1z#&M^SS?=PT{JfksBsWgwh$p;NN)-;}Ol7=ALD9?vy4lEPyX&G~#R_jsd+R{dH zDfmA{(tK&4{C1L@aCyY8SKCR?Q)jPV!_sgux%|)RzpA;)URc`3%32V2VTIQ(4!;_h zGfVmtW9xVh?No0{%B6o!mz@O;`faiBO{7`oX|E}688^r;s1ERl505BnerK@+_s|}U zd_cy1hHVCiEAdMSzNn)+v}NGM%R z6VdntNp#HnEWQL~kfN}9rz1IF_+-MjcsO$MqerYxgCZ=0AWPP*E9f)bWs~2EPf{+M zI6CIliuVcM?xKQ{e}ZcQXX*3ULETJW=DG=GV@LG(hcR-Y-)ZHVzuS6F2*g5iAH`Pt z$!$PhI_5QtW4DtEt$(-|a)v>W6BUwmcJ3Ef{zw1DhH>zRFDbtezMWcmh4TkQRHF#e z;Fvcnj@9STR%nRUQs)5y5000HUQQG2^DO}j_H*8fGcFKMY~ zlZ5{?i;~ETBm@d(eZ^Wp>~%DccpqZJ$i@Z2@(-kn9bdmp75lik_?O)_aMFLc^`1>S zkTnAq;FIeSNnt0v*!H>tiqX~hn!zHN;mP!Ek(zjJop4Rhhy!%&loCA6L4_xfV-$ zl4AU8qoeLG%1TFGpUpW}%Sm>2Iuq|s{(Yn5QgOCAPavA*hq`BSmEYMpa_yGTix^qLpJ3`Zg#Fl_xfY&tW70y^*_elu z?~W7L^9#6JhJH?@Aw4%inUnwAnLfJ*r|io>#%uW8aOnhMX4DlU#kXJfBuL7nfz0Q9 zG;7ew=}D##NQ&kTaG^hf#dK{aR>pLv1;o+I#636?1$ixqlR1&*^;=35l3oV=goAH; zKWOcWd|>XZM|ali%$J3D@i4iUX?GCPnCi9QO8LKb$6C5fpoq`v4>Y66Hb)7rH)Tui zRw1=M_2@DzAYQ(QOcYvl)oKup(&%{0hDS*=hHN}*!RWNu_#-uj^0Eo66{5u$S(6kS zViUb1%mus4_2W!l+fXsR9J8T1E*Ji3t?@BFo$fqGEw)vsL#|nrQ_0GQ&Y&l!f1=m( zo0+vI^Tnj&*P#wY_uqz0Hg43oe2>+`m`rK`kQA zN)_%C0=H%C{nDC3NIw8?luzZ~KU>+x^G)a5$Lg=EaA&XV0|REygedYe#pDOxhl}y0 z_0F#6<aZR=3uMi?ap((f@u_BH$uu zZ~siIjM&)7B74e`NOb-5LCFg({pZh|zxTwL*VxFQD^gXaI3-Lv)UsY7C;&OqrSJKx zdK{IXeN@0%^Yx)0?wki8Vwx!EOjh-V+0 ze+;XVm0pO=?U6K5X(_x1b2FDdl>gj4;uNYFoR@SF0mC?2b9}3fHWKeb+(YeZL6~md z(_mo7$7sYhJk1wy7#C6vVCuAkxv@vU*5lGd8%6ORa}Ad#q4v1J`lCIuD~4pE%8m0r z1u|W0E8+7al^=KHTHZkEC*ZMNnc_99`p{?(5H13}ZX-gT`5sDU9`d@D{|uhpW%Apl zYbhz@&lfiT%n*u~*UsRTU76m|zay*+$BNujtzehFtE5in*zEo z4>jK1!`FNq$d-{tGY3nlJYrf2{+x(f;Inp)ZsdrV{`$$}#S58VZfI|*o-J_gS031- z(niCj+l=U$Hz0yc7}~hK*eAji&3qixcaYcHt0juKeGp0cw6v#CeEjM7;mPm71g499 z!Oio7DB=d(RnGM{+WvjyP~lmFp7z)VnOU!~G}y<$x~4g^lEVd>;lqsRVP9J{t^9C( zhDET(oCqb`VKbPqDvS6i(ItHJn$2vi;?vXrVId}MXBdAJ|wRVg>uf8kbJ)cWps5hAZgzi)*qRVn7$ zUk-4rkN+Efn^sMTRJ(MZ``ZzzZgbNvR6YtZ z>?Y)nhOfU<9}KluN4*(ZeAW#wTFxuD_o#>8nIa*{Ap%zVfDVa*G(tEt^C&g;oE?NN z$(9cX3?Br0Y_lwVZG&$tJVpFDBW-c+Pn6Hx+dsQ7`Ll!k+b&u78n{n0Yn57SReM$M zA5GQ|6BInzwdMA$7WsCaRxHLpDB$n;$%$=SgAB>yiSNapPmNce!N9{P7%0u$u}>^u zOGZfYj=oag5?oJz3v2!I_Xle0U~uENM?j_2P2zU76Gl8=8rnJyB-miy5BBk~oOK}C z&#uQ~_&)Gi+xcjUST>O0=L4GlJ|6xW^(?lq1}H;j;xF*uT1A5P;n#7Q3e@`H4m!+3 z;;L)!lA-6j!)CDe4|eUcJp~2~Wx4ZzdlpRa={oA+*M16S-*eSV%>Xm!!(+7*H}i9s zwx$l8Ll&Ma!Pfp+ z^>1%h%dS!pQ@W&~(1v(*QHsZXvNG*bfAX5@YwCLWi7YUNS|7r-c}AHQ)`*~TnQ%CO z$0t37wZc6NzVVg5(4$dB6z3_|=yD|AK++6WP*6v{#k+B!e;$){7;D_8Xj%P%kbX84 z;B;aWkX-n?a;H94RxafXS54s@;AL1!+?e=*TI=4|X0*_4X-?HkVe{~*l+W$Lenke}di1R&Q&RJ==8p0K+V25}`eAj~x~+IVC)VOJ>Q3gu|@C;FqHyI(4PXmz|ux@~b}H zT-rGcUSI~6KrNeAxMSX#*OS;9E^QoNY@rrJ{NVuBRwxd}t(I0zEU@akD9v7&_;!q| zDPHUV{$NNsM}B^uDY13hWWFR>FX7Mq0mG}bZ7xpWu%bkYajqmp#CK~gjRAOcXQsFt zjs|Gzo?;Zl`%0*$K$f0&JP}_^)MI|mho3nk0fKUB;lXOJd0Ym{WPa>)I!sqx!fybs=JQVS}Z2Q@VsvFh_Nwf6kIn3-G|t*dX^ zN?I#bm}h$)OI4+qzHsk1-QHWx6TlDqvAKB#rvLU|0`X2ltzw^1?k_F)qVO_NwkJRf zwBtft2a*^6RheeL{Qd1+QdjaQy+YYAR~q&j2z>-rd-j-kG0mdJ}6@KT`LB-kx>z93u_n$vsd zQrx^4-u7mVRC3KV0c{3EwpZHz$o(W-{5r4a;L12@7ALhuLSpcXdW)HHRyF}CI3IW= z1`_Fv>8k7N(`bIb$27Fv{2qS7hv&;dTjxN;xANY3zkByMs9mjD-hw-X3x7K&?MV(0 z+Uhjgp*UF=v!#_XgEm0&b-|4_{~l)=q^padtAu9juT~bupRTpsXZp#Wq=jN%G+>tT z307UvV&F~F^yHS*-UCUZoF_ywg~9JVJXi+etl3)^NmUJ{s3~=nxLC5+7(PNeHuDy} zj_Vi&0#_n}_82EB3V5vY5#9WXCOXVClkn(Gw_)KtM4+AI`3+w(;v57K{z@|y( z6()_0anGQ>&dJ#>`vIuz*gxXkz+SozcY|Q_Gw%HIq11&OO z?+-E#HosP3#;P!%Y{rlejPSo2;QYYTmnuTu3K2F|5jN)G6<>P9ueeO+0CX3rEhXtU z1#PmnX6IAmp&Ra#ww%ND(gsx1JW-m^CJKpQVv;?x+SxF4;elMA>&Z2d-+@5m@sy^P?+CHwRxw|EJ`OnBWc%^TanNQ1Aha0 zJQH_g|6aiB(iU7T?0o=FE3AUHX4sFs1DToH15&+(xGZ9O&5)|A?0h&N<)kO35&i&5 z_62Fk+hg~PLwLj;o_YJR7qrf?kQTs`Ix|HOuocEag;ru+hVc(h@nk{gbnf!cx^K~F z9dZSvEjv8w74kYByBpx}Orn=FhiZ>f-G~ZbBOFD)M&~s(cGuaVotxJ`Fqr&kpR&Y) zTz!KIFKa#aQ9ER;kih)V>c0jjmkmxHW`jVPoRR$S-S5^+@LzdhwS0B(kDZxzHPWFD z36I4?X1(Fj_4nZ&61s=NK3AsI{%w}L@j(k8O&(mF{eFei zvNP;*;KLZi_MPf~H5aA`vIxWQ6-Aj9>bO%Xzc0d-DB9~m-%-oyFGc)oxHVDX#sd~& z@-p9ye$>q!E7JPLQxOz*?H4c~%TiY(UM}m!OKYNZVi84(t2M$5Syb+hJbD!tJP1r@ zm+78Y8YG(mqZ#X--5D{H543FBd)(9<+p7gQ&w?>7U5A)rDn*L=Q-l7_q5^ajb$#z- zr8J)dnns+1=C373t2d#lp#gO?qHqf_$}y%UZEY;;nJG(I|RKk6d(*6|WVNlO15Z zGgg+{-L^qkHj`%4g|o()fBt_qng7gyz_h8 zgK?p$_SsXBm@ZZmOYUfq)6{tyF4`9)5Za8qX!SjtU^@664S?^gA%2wpBE-%2J3G*Z z3)23lyXpt^m0Nv8#$iuJISTEy{a5cQooQNEhKHpdsO^wrb3e2xN$EJhEt2S_y#w?d z684U1qwlWT#w|37ClRV@5b@pCCgd@pD!KgBB{0PCCOWe28medz zF^)f;paVE6bq3&e4Sd*OA@8O<&3E59&Q%YTX0HkARV*60D4xIecoVp|TV?p_d(5ca z?UZ|g6>wf)btU7X+`10o&%mS%VowsjEN@c)%^f%RLS()S{9|NJf{eqVslZeyo!FDU z`;;MdL>Q^Db2}616JGU{)E!FRtI58iM(D2bO{(`nuxKTV)vWhG+F${bNEt6iEMQ(xFhhum*J4_qP%oG~m)mjHi04F;AHmCK5z%cEP+>GAH=m zjBytA6?4wAo8Uy`mX{|o1PBe6M-5=Jf{QF8JAU`ggi4pB^#BoH-MijFEN#{AH{Era zferr@~y3%gq2xPHlek4%}p((LJ6e~S*Edim1GfWI@7{d0Il#_qbQ zSi7V=Cb>4%NMG)?<~UG+ej~(U*wS*`IOF6x>pVr%wC9xa9H$CR2GP4in^HauZJs2L z8d&9hXM&%sGZcENAIFN^U+#(`x?PecV;QE(fNza|#yJC)luA7tIL^Z9l{y`nuz*>Sm<(|9 z$PPRe^aVx+>viwgs?fJ|eq%#lqzb)(>OUY2X?_Btwb~KC-t9`O#IaxDYyqpv3U|aM zyvaR%O`$Di9XF+o`g5PoI=;k)he?7~swU@54wK5Yj>>*iU353^UX~(D`sb}@OtmVA zjiya0%`^(15`IVuM!~jT9T^1cQx$b22Tz95>hL69nax`PwuP?`ruL$4QCF3EHcK>T z0;u;FE7A}?U{7GeTj^tS)JV(6{%?o=r4P~-u`5K|)ps2h&YP`5oeFZ zYeuFUclFMg_HxyE{?}p_w0Im_tWzh@{DxiW%p|Eb9JbkbDAlTmF6>Bd1v(b=4`u%+ z@G=`qjdzTA3VkV5gV)F`I15Nz`Jf>UDvpkG)-opG7dDYL$#;^6w?AmoeD#LY8G@YF z-KlgcPvQtJo_I{z1ct6+9Yj_$vKQ zaM{?JR?OjBW`ZNWZcjqZ6IMK$7kIP4u4klGf7&pI@0cGQmUMeQ)_4bs|De?@*!4KJ zLagJm75O1wk0*tOG#fBsEv-mdYJCbflwLx(KYo=8-djHOU@!<<4+W3-O=b-&S_3-< zVYxfT!tI&!e@(1qEdRR&OCo{n1a=hdNg5HbEtO*f4Fjs8M=2WE7}o8c^lLxzD8Yn> zLT>72^eyVn7SB$z8Ec{&)*Kpis`R12jdt_zW_VdBcnjIChX$O@$;NbwKhsh*I&qW@XQXUam*xk9PhFRJt^biuOxC|a_3YblrK0o49Y+US)PmUQ}d z2>mb2?Zcb&U1}!8m1v@OHVKbb)`{uALYRMHAcr@Z!R*isS{RZx`cRvLXqqjg1>Iq0 zIDOMG2}WU%5u?D@>GUQ*zsad>OyqJwaP%W??qlosfa~Xf&is9hoxRI>x&hGp{9sS_ zJ%D)GvA-unGMEiK-<57IPo1C4#q9+UE3o)xC+a*Lupda?Z&?{&=8#gRWcs?XD;EO2 zIK5qB3G54mX`(mV!34x&{q+<7RZhj({`iXEFnw+L&ggV-Z%#-N=iyx@cWsyJ-3|H( zOW}9l{FmiLc%A#r6RTYHfiBmT3N(?Cs61h8`t28}zoa8);k$+2DqRhRG&B`Id8Q}p z|84#%kq|QDY4H0X?*urXGq}~$!4q3A_vhz-=Ez=8E(L`AX=Q6=BT-x){&9J-Z*tUP zt^RbxTf41~UM+n1Rr~#QyagV2a^@X`RWOrnY549M*jO6!s!XTi3U6aRVGk`0?lp6( zr1AnIdQgH~NQ17CfYTY&pk5OQ*j!Y#$OXQVk>l7gj#!=a9NvKR8-1l-(*C$| zA!7Lxvcibji|sREebn1fje4Z{>MkA~eb<(dwj)Q8w6>;=To=OXsX3U@Qx+N#b*{(!#v$@+R7_|;+7+j)r`E~ z>XEsBgeW;&X1y5E%JD*V@wxbhqSsKpIK>_`dA^&Y%I;r@070Hhz)p0lT+m|sU{lg{;otgJb-d<$;PLhE-5ZNJ ztn;$Q&F1E14rC@~x+);xt26@*f3O@wF1VIA3iL;!LZ1d6MQ1tHX+muO{TReAFH@Lx zaQ_znFtW_y{EcG{=1b!&y~FfY0#pmd7fmot;!^%DZ{;NI%eTobhl~9*I^oq|>~`Oc z@|%CE8`nHLwd;u4JoE=kFY=xys2}W&ERi^%xdbsYPPDtS`l9 zv!@#a`HSG_oLoXy|7n1^Q%T!Wkg|c{$>?#;1ktgytV;@uWbcDG==`UIKT-qCA3L3| z+Qv}|H|;~e&TM%HMEZ~_ykXGd_CP-VA(Zs<20Rg$Nt`O;f`y1qA?-yjTy>)`0oV!@-9*vGZuZ*1&pYA{X=6*cfR&q31 zta^9Lt=_P4hDlzF02(*~GPP%!?LVlcQ?4#>c4co#(q_NBJu@Wn{-zz!X4jm0aLfiY zpoh|sCok|OfnurRjsuKeWLwEO?I;G2BRw#d$;`;u%_@ypcV7D5{1qw6)?J|Htz35B zz^saIJW((*s2x| zk$knRmxyB_yFX+D_fM6y%EL|j%yS23*}P50(t5H$#fAR-8nP@9kp~2VTjEQ!ds4qY z_;g}Rh~9O_`$bs~4;pB?(^)`CD{i($_aHdg{9m8>)MP*UAx8?MT^A#1b5o+~nWL7FJ-|11jWgW8bf14gk z@EL9m*v8^qsap&Xd#5}x3GBlpnDwO;G4@i5_^J#@5t%9zZp ztHOr8sMD32txVpY;;_9bOo;*=(^Q(M5i$NPe{O;P3V%zb`oJA4jt&{_7_j+zkg4V- z7g)bTkj-?>f|uOB&gC-TE4BnLrv5t)%;0u86-GK+A?}FYoPtY&uOwX(+3{l2?WZO0 zK}D?Kl~uK1pGz!uE#$1RY+^~MU5~+{IP=Rh^N75s-q|jJrdyN$+$|a}eHcprPOaNo z4TI)KDejj!f3qc(-E<(E0;E*Q;>~{nP4ndfZYfO>6GE#09FxUAhSEdhU&GeJ(wcBF z<(0_o!43Rb|MJ1f{?dZq@z2ffnep)x->lh9W;uRe-9r5p!SRaNwv*oUu5%>>xo|$I zW1m!bE$*7JeX#S{f!q*qMa6=sXCb`)nFnraDWcS~OQP8c4V|~iHR;G1u>Bm8DiYVR z>DI0xZGoE6yQda|wFH(W4txw-bi;ScYj&}?wKM^rp;WjNNaqay=EN1W1OI(^vj0hy_0xwe)x|)&M!mevUrAmC0xW z7~MXP4dvTYkwM>G0*(ETt6D?Hs}w52wWEwsoVSHE{8t8JMGNf!1f_)a!C*t1a~*Ay zc{v%2zn9mMRn6lGHv9MJ8UX=&rkB_U7S7QP_v{^fy2lG_eY|{)I3JWo`!Oi7yzv|X zph_hMu9eDL3rc_H3R*(~{Qv$t{&Hk~w8`j8SzDrSEy!G|%@jLj{eygp^F1jtU(0L( z@*4TC_Qb|(_+0ZJ2I7rs@fw+z?w-FPrN~0yJAxOon|uCDqveYmmoaB@srILX8zNwb z2jX%^;BEs+&lc**S_)zGAPgQX_O2Ar!Wotp;;VJKkXN3dG-(NPE}- zdpid;8FJzQ!z$C!3rK^pN`o=SC%jP7!wfWR!0_lfI(jwa|VGO?6*l=NkJ zLoFIu1_{{2v>xmk%En;x-(Q+j6D2~U=z%dd|6pYF6@a$(0djLP;D-5rAALu|6f1f< zgG04Q3AmY>Zv(hybla>Gvt6bLd!AyO3{{onZjJB2GJl#<)&8|YA}PGw28W-p;l(CE3rCa$ z1i^S+fpKY`2xu;8OKhI?&L&FB4zHEJ3erBd^>OzzJg03f3U#!=+=cAf%g4!{9bR)Z z{$NN)FBV8f_5#HNK~ST*Ojtot<1QGo_xF6Z*eib3E^XqTP$tDyc0-b$E^_ucST^I@ zyhqu+u12PX;({QkP{%o%fOzKwrbdP9Y)elm4;MY@7Vna}DXT45a_psMi^&Zzx5o*2 zq0;THi%p_VLsy7(XEt$m_py*l#=I#~Y-eIGkHVR?cp)-v^gm;QrE^G49a}4)O2xaW zCV)pKz-hYremSCJHUk$SweZWOJieTEa@dszCq6auJ^c8UdfcT3st>H#OT7LxV7`s2 zb+`jS5JuC}2~$x-qLBibe?a0~Zkl-`GR6v(6^j_|>6+k8i^O#!h)o8#!6JQ@mht7C z$pZO0VCd1>Y)M4IshTFOC%i^qtbh&IiJB^ipp#W;S6)~Fpi=69ZJ|?Ag%|fA+!LHCYR|KVWeg#U_ zX4*bYtERhTXHr4=6%rmOOGj8-#`7VEAYHbOa3l zNNr_bXfh5!G8i#~v5~83Y4C^Y)4=P~5p6Cm?8|&lQYDcw`HQ6Q?a0K>*2;WV1bQ** z%(chi?m*c+8Iv2tbKr@02LH?BDtnO^xwIiv2WObcb3zj$y8#c2+M4{T5I$xp z3g(QZ`3RVv_DMPRPbs0~@8H_FOc4{|B)T$iDHhz$+Wsi280-T&UIWjhqHvg3iS++g zV<+{jy5dE+UjSnC2K1JZR~-it2v%iw&lEOSaX&0_rIVe+`vb95`IFT?k(r<@8bsVS$J_xvL`!6wH-2Xbp5-CN1S08!rq(BU4IfDTt6 z)>)5Z^8a2Lt3p16kWpNkOe;(Mf~mlKX`Lh1lDA5HVq^h-e2o#jsJupiabcFhdZ<}k z;H~(`$OitH?{d56$ZxQn$6BL7S3pF(2k{FmJ*P6gyw(H%1{N?kV_@eK4G}=_)t|A# z%K`g+BQ0qH1zXVrgd^kidnO_L2d;7DX+J(g+ciKCXN|Gr8B3(GBZ_rsglz5j)8&b_ z;pSblM~~*en%-EwXq?YBH**!ZQtceIpDxtBB7fI5t$a<*w>3+3-2j%)NU}C%(5Dt_ z4^8j!d9Ko?dh-)38f>M@ z)F#c18Lxm)IQrYO+ff)GmwRAyTvBU7Q6eTGGAh`;`)@Ph?StzKYg2d8@ZZSvIl!bL435q>r#4|#{AWtFGn?Xaf5c%q4Z{KUlQ*OWcs)dHKup(thc0l(HTHV zOSDoH2@PYOezqdNTvwIhA4vBxQm6{oxn+=B63?DTb(2l~9W5SsvcWHJpzw)UyH5|q zE53!YrNR3F(8o0lc0OMeG489<;n2w#;l|!2YOj|j>QV$aN`-*lRfH&Gu%RT+`F~uU zWk3|)`}RddMFo@w3CVToh9yLh20`gA3F%lGq+w}) z|Ka<4UOjK;Fzn3i?94g$eO;eRCF%ZHo{oh&CaY6z+4)lus8>EO>97vHNBwy{>Y6(6 zjs3b+f!1PdPOGBTDAtd!Mk>7_Y9l?USXu}8`TnxSUF|xDVHm+uvHRkX?GS6)WTePL$4j_uVTw@2xCC-0(VF#XUiemfr^AI&s%CO3C&YHR=$UFfvzUNk z@uu!U`L?xA&y`YX3=dCCOvL{9{0W~oW;9s!<7UcO@Ui!S7-k%Up7~OW^O>fk>}EHY|0mwdq49$ftT`m#%&h__7vp)5!4)URZg^#Vtm40+nsHknk>ok@MZEjV;&)2L>xuPOBS`}P8_D$4 z9BgdJwCH++z3S@6WHRaW$rXtUl_4|7BNh%dnG;=2u0p+^h@88d14`_<$@E$wj_}0- zWyN?&){GQg&P&Q-nRM}qh=mjI$JeBwekci4qox@a(IjJUF+#Ps>_8f#vJY(Q)9=;ix_5#pQ?62{SD_} zV)w189*-Ul`MG}s)z<$fuw~w~BG6!OD=*e6zIL?LdYO$66b+G8De`G`8cq|a*xIdJ zC8BDNHtS`1z5&)p5EBx(f`1QsE+_Uiper?7%N|`#I7cN1Xm+UKNnXa}#WHE-paxDF zc~v<+1YW_mQ_sPZt+y@tDL{q%mx#p~0uUY=B2q1kFNVI8&?SFPN&XzC3Q|&@B9lQK z=k6jT!2=Jm!JWUsjU#ghfiutlf`Wb98xO4`mjxy_Rj6BkLl>C&IlCiC5g3+@mo!}| z|Mrdpn_4C5MKSvHt&wh-W(GjoYB(q0>)q!qb2-H-#5OJ z9e=-Ngfu+c@GJIsV|j~Yplgq*GUckA|Fg%~(gP@6OY=vM35&66p`KSop*WiXj3WHy z2L*jv6Gk&=^n>4Z_dz(NaN>_1zEy!&lT2PMGN`%_Gp(67{JM%P5qdGp(TF<(+7o^{)CM-Y2?s z#9Oixse6Os81!ETjvM+Bp_HPMLf_fBiQ(R_Q>#=k{*_y?L8W+xXN{OY?r8hQzkc|R z^rjQ46^MaN)H-8f7lYB41NeODaH@ZO z-Z_{+O^dxrr<*4Jw*@NQG3O6#|E;`cT+iFE7^3}_qDu4{@ry|FZ{+^XOFCsPjxIys zOrfddPY*F6FX>1d7Y+CRqsL4VR1i|feVR!itJtAd{SgEiZ0C~@AB<)H_r+-e$@4xm zo%WPihc1tUc$)4}seD&l-r0KC6vM^dyS@E3Gsb)A4<#sT-#Tn6VY3CMmUjQsOuv7A zo78PM+&s!>gd5~yx%cJY#607<1x*jDk6)dX6vLn@^gcwG?@E(gmcN_W!o^M0 zxR~ip@MY+)I0WP~B`nn}r+mR4(>WM5Q|M{?Y7OA5=Q8Hy9{oil=q+C zVO=Y|=r9uU?!QIR^^#`EOCo2Xd){1MbN@{! zkD;|H_SG^z5<7Gq2J47G`J>4E(0A@Z^Tx)dpJV@5^9ZTKZm@57Xw7bjU71SM5g1VC zk4?b*{yfudCi*XHW^8rYSz>qx<`}J;QpA+5E6P?1RE#s`R{>Y0>hwb?NB3+I-=B~C zEC~N@0p?+L9;li~UWS{yjIG46S$W+cxON^eFe02kj7| z`*6tqH(kEpf4eQB+9aKguDz$<6jeRWA~WhVXAg7;$p=iN8=nU8pHDb55HDrr?+-@D zn_s;f$R!6121DJKY?dlp45sJNVtjOhgx{2#K>hf2uv&(Hf#qCxiE1N~(|+_+r7nxi z9+7clA#WPIIa(Vm;>H5#O+{5JvdB!q=E=MXfPks@iU=%TnJ;s0oiz#ly}ni9ZMInG z66>uYec^lH{;%JrZN`+IO6J_NuFao`bWtMCC9OvkvbMvA41VVUJSK}+5Zt4)g!o&B zy=Q9|S#zkslw7D58Zh#J-pyiCHIt>uo>b{E4}YKW55IawAXzXDQLfEg)5e#9;vdz&1GE=vsbm4 z1Dm0}TJAm%3$129yQR_!f6C6I{crmxXor^j=3v%I^jOwsmC8ss)J-9A0_=c>7J~uq ztYrUFZlio3B46GlMbT?I%z-P=7BCQ>ne4w9Z-UL26i%%`{#0W z?u_##lEQ!KfK)OwL_T?ylEaZ7_j73|<|?&BwmfGp$IK^NWBNI8is12zNBRE4-y-6d9-}I zR(O7p(#BXH)Jv6NrW2#HFEX+~8}Oazz_KfX>c>sffj7M~*Gvam&US3t{yyPtIlahf zkojDs^O4iKyyN@@s+)btDKpN_h*DvhTiuYs8WGFWa zbV{;+cAn#}C1jucLlLAAhdJbR2sfk>){GJjS!UFV4rKqmHp^tb`%l?8ma3`3Y$E;L z<=$n9Q{km;zxOSmxG=PX6YV0tzV^(j`Nsa77!Ii&z42|O_2c=`?xFi{PBPCghAh@) z9a1W&A|40I?|DTQyT1?`VH9w)ldaT%Thsg1ppjqptNP~WCac=Ubc5GOb%1G@-ptrA z+-2ASCOS}VTrwvt*;EYFxr!U-F73c>P=5-v3?mQ*AWI3)Yy0>E=f~X$#zFqgZ)FOb zx?w*YhBv106moW)KT~nSV;|**MhF!HG%2Uv%ijA2T82Hh1d#bg2JDtV~ zO)-`fU1g)?09wZk;OP%u5#aN$-8=3ymTieK6znnt&nC(e+(U>m%&2bfchg34k z|E(`5BQaV=5gAGYEfTXd=!&3)f^AnVqc>z2%?~{~D&U`dd}{2*F)%0$wL}Rr(7E!Q zF1~-PjpfWQjaLOhQ$9$|NEmJjZ+(`8B!(1-=X$0a;w`#Jt|%9R43Er*j;?*Ut@qYz zq*c7Tb@SE@C=D+75u06Q7y4l38hiTNh|Ko%VmBK z_P#t7aJbilVZX_Ob7hH&go@Sqp*LdI2Q!``??k|!ox`ZKFLPf+Y-w(e3VhH)@nbAU z7Gq%8Kd^PL3m{1>`c-7z`H}Ax*%b-<-c&DI@g&wYKL1xie)YmFu8`g@CH-R+vA+Sw zwOhg9EWs_dP*_o3(v99q`xHIx=Oy{V6rJ$FkJ$jozG^c)s zooaS{6)k>&66|7x6CUu|kAd7oLyj5$`=&8s2khN<;E`vqc$h9h$;)&@SJm2^q*L_) zWIoRfoYJ*m*b&~-q|y$M2czxv>k*3Fty2y758@ElP_a*LJiaqFsWN8B@zCqOQHoy!g(!7jYH;PS;L3GO0oGn>HVqy`AwZ1Zc@f+K zPp`puZ(RpyB<*5@mg-w9GWk(t{}F^G$rp|HKRkU|)T3*!$2h?g2R^0l>QnHBFpT%e z*#L^h<=AbZGYV-x@)_J2big{g^z=dbK}z5lXQ0kMq+fyDd?}CUde%pKM#egnDpzF! z!FXl~bLA42Dcq9G*_Rfmb~2b0nhb#xPiuiv~Xb8c9+EL(QbKro@`|89J|>uaPW_rWiEXr$k-yFW^BD3|~SAs_dN1(g-a){yvHa^N%Rqrt?(td1O*A)_lPJssEW=>W-omKJSFTh` z+8CLau+TUM;;^@1It0U}z}7`pbLEICgqoO~y{My?pJ&pq-LvjND`v#H5|yT4WRft` zw*m^}R*3r-{!M1hdBLe~9}oXCF1GHd3r|=CDx8;2JfJ+Hn)Q%83uqHs4qEb%3g9EN z`O{yngKJc;-6-=?JalJ@cj2x?u_sFK7Y&^74X|43tCl?^F9R)?or9KAq&?W>1AqF9 zpSim6b+t`0RT7pvQ}-A8#X&Zwpb#zmWjxOvou`SK#|rYt*Mt;E-&dvK(ZVBDUJVtG zfZo0y$3oF##)EvNNEgk2e1$)SY|!E+D-MqN`|&aR4~$~0CfV~z;E|fIhRR04U1VYB z|IyN4ZW2zJneI9QI=Qcf*Fz0Wz@#c|UX){A@x2t}qpu8P4(wtGA1WIM;#f<&;8(NP z_>*POLZH9v7Y|D`rCOpjhQ9e&jmOe)th8`Yo7mlt3vz3H!tnl@BXS4ORM`-i=)27B+&&X9yA+=8>{ zdhNXxoqSEOx^L!hg*;I(_BXYhUjBskDM@Ze&%UukUu#(^-XEA$LOzLvIiaf+6?%)GePu5ONNahKxYKch zSF_hk&?W^5Ic4UT}fG9wknfg(ITO~x_siH^z0(aWLe8c_SDLfH?W3a?f2G# zM<9k?Rz#I4D;4{dmQP?HK>yvsuBhk&rG|_1N!B~(t*9JMihH$JuE%W8vr+(Yl5RbH z0WpvRHMlo}eKJ-`r168#1;AUriG`3HdW1uOh@iigEiF@}JXE~S6|KwIX&@mg(XPlC zSozZgsY^Rni`LF;uNnI@{MjtT=_;ZuUb7GSan!=7rnZbGG06rUqAWmRdlg|y1nN$a zpPn_@6r0ot@ZQuQ6s!K{akORMc9Ga!GI+6hAuR>ObF4==iqj*8#AQ%9cd^bo ziUj#lHc*QiW{YrYusjg6109A)A#3Jm(-yWhwKWD+HJjC`wkist=STMbZl`TQtt=OT zZ{TOYJepz&xcmAzlszA5sndM$i4 zpPsw^)pWL;6>2%yi-#=i|Xe<3S+Ot@6&?= zatyA;_?Z5=m#xV#d45-^&EsJ)Y^)~G6>Oai#4I@XJp59n6F`6Yv6*R6HNPmr@VhXD@Y-yVlSK)S zc(mb^L)+N^nk9&GY3g|WWm2Mg)xwkQQ~PwJ@Q^_q|GJH16Zog9JxjkQ#Yo?!FB(!> zbWdw{qTpopEoF_=tQOYJWsX!TE8D%2#xu-0Wa4b=?9O*hJgeSzrD8;U7&8&3+1FX=NAplPT$=EE~w!Wtjo+?Ma|ZrU-;c&pMnF@ zm&HD*1wP-n_+ClJES7d_eur5p(?C=ay*eW}j&9sfnj1F8!;ko!zH6h2?3T|m6APY= zb3h#^l;aNfLj*Ah68+)jlBkD=`Eke!>?DVsV`}xlgIz3Na^pm|J*Bby+ z=(6M?-3Z(1lrMiio9oZWmK8nBEr=tl!%lH*IO+r>#|uvR^K!k$(`_cg!`;XtseCrc z0d-706rr8>_^^U;X-v+E#3a2A3fbxv`+ewKH#=xrAxhFVoRA*BI{4APb)NE_iU~zb zDz&P0$+DIc`an=UlV**9CXC;FR|2=^-?(j?-rM_v)&!BGqdCms)EfUYcLcL>MdF7v zK25VeJSj5AwM)&TgG}ZJ6SAF}cw7GY>J(``HBx0M5oQVFq_?5F2sXe6$=vn97&Rjl zIp_COFI~v?Jwb*>WeJdeb)S#Q;Wko$t$bwEesDC3(^}FPnG*@ir!Z%qyum`$a5L-Jx(A4sv5|TERc%L~ z7tu+hVJf9IFLmYBH<%g_Dg_9!xbh^0iN^?QeCN14*H^;$qHA$CLoxdJ87a_^H1~!R+^>Z z#xdp}9oeD*;PY$5TgcpfkShIs?%SL^o$jO(r(?>*+WmT42HqPI&=}MYal)WeeTbXB zB@1`eORl89b++^c4th^`teI?Hm6|_O9x@IzDBtU88f}uW_Fk}SmeY-~B%9YvW&tV? zc~Dj3YJJp;+4Jc2zg$Rbn!)kzonuXW3q$SVNiFRnpZlmPC$Qd!WZ#D;MitX&?f!GF z8M4^s>r|k%_(;vfe}bl6v_gBx3`hwS_}}Y0_hHx#->&RXm^MeE`mu5TJS0G4Z-9sS zr`e-C$`k;H1{`(esthzlTM__+Xk2+L=IKQC=;IHmF`|ik_MJ2!b!P&AOzKgw9y7{G zq()FLxD#>WWbVDjsjD@vLVCAxQNQ}9ltq<@EC;wRpG*u*?+vI8cd4Vpq!~ZXYJ;y9 zBUFnKaZ%)g;w&;!KwN2ds(aGV=G!VvN)<-LS`lR8hGc@pq=8hb`-hy(`&Afnu>F;y zHWc?EQyXlb8$B&mFD3qysrn}qQm`t9%;MDAEBA=F*Z zb>&o2d#GI*vt8}^O`DM!7jyZ$^=wYxr1_|RG9qc&Mn|TmyVN15uOF{00dd5k7^Pbo z8_t8Ghh{s5??yxU)J?Cd4$ulXn-;s0#)Ppg=}EpxqS*s73P?F z{vrydkQ3}XLIxOIDTSy{S>#Ze^q$F{&q_;Q$ewES0j8nE4kV)~OB?z!{qH1uy>f?| zSJ@rPT75{tAs_C>c4d#c;j2QrgXh8gNP;*5A`r^jD6)3l#9#BHoS_OBIf>7cDiM8_ zha3X7XuVfFBP9@dm7;thuV@N1N*SCr3pnd|%nL-0HaP2%NxP#!zTy~~-+924w`gCk z|0GHAPb3LqM~qMRvxp9Y-Aj|Ksq5Y&8@eAHs5&2eQzglRra!*oag|7gNw)b3Y~0ox zDK#TG;SHAD)15Op`sE4bgDujEO*i)64K!N@al$h!J*QLWarC(p%HOwA44(R(MrZuO zY5-Wv_*ueZoal*`7s>=OSpMueRvtyI+@cdU#?_wL|G*sG^$Xui$r!>`e)k<`Z&H__ zMyd7E*su8g<mVfqWKqfXhjFyp+Z;0g)sYG{Cfn zQd$k-ZVL=~{biE4SDt=z0=M|8_SHU4wf6SwkvkE7+$C^sK|8}6LG zq(!3Uf~briuv$j%88^CFCq`%63EbsnzXopZjQ5gy>AC@8_;_U9Z*cwfZLJ>bFR1!S zj`dI$qrSXJamn&@aLBrFclPx@{o&j)^n--jgMj^ePXF!lw_(_Vbrr5ZC|gEHl~4pl z%I@$rnP!?)py)k;(jml;72KJ$K9W+B`14BvVIHka{7#6B(r|N`|6P=?i#g<+OKC%* zi{(fke?$`8d9Sia9$l9ht;H@s%M=_&-p+JT&R{e9Lq)%1x&QA(eIMncGw!`h-}`-u z{zX%WoeIu|_?#5z_f%RjR?~5898QF`hEi`_I-4`FjamN zrGxI%Y~jEQY6rv}Voicu@&tD7Hv~7nJ}7!?O$WP-q;)Wwq_ESj`uMA-QX<9eZJ*fVScwC#X!zBeLh@UooXY~T7t(`5)ao(*KE_=->uW$!3+2?k(Wo7 z++8`Uk(*S}EEIgWhHPwU2Pyof>cA8iI(=9OR$F?-?M9xbup*Yhe=0u^Frj|EY$$9%qEe zZ12}Z{Hlo%c%vv1mr+afO8#z5f!#D;0s0lS#Hb_FnBxOI!31=L&DBh%I3qICop_X( z-bjhwsB57P_l4}edJN54?V3!6(vd6mlq~HO^FbQDP4(ZaiMp~37X9k!OsKBeZ5fFR zd2&A6}u^2hpAln2%hCG-p4lVKoilcv5Upq!s7ETjn zksz3}eh*#mY9CV&|Kcoi_kq2t;hXQuMF+xZ=mVKSLYnnjeifQM>bm&S)}L%cr`0NK zNWV%j9dFN!1lDlrHviFS5nZ!;z;9Wh#)j-dYw-=);ZOqeZjM`eZ>rt~rxNn}cwqq- z@L~CDrtve?hhI<2=2)gaSfq|ts$@V|zM+)EdSY(A9)P~05ge+L{F;7W^;StICmYPY zM@5;(UPj%JW^MMPujYqvLqmi7W){UFsVp>r=t>d6r+uFM_`&{%)M~?y!dXX_m&}#* zNB~c-<|jMATV8~0-~X%^dhjL?O?&vA(klK?X!u*0yuBawQAyBDVEAWIq`!1lKtCeQpjs zxj3BLKKH^%?^k+Kn{mfiB)rq^r4iLGHGkSY%QAWxn1=p0Jhq!YrYsa(3;Q^rWXd!|_@`A~vcPu<5 zy?ng`NKZG!)&prP|1kzw*!XCc-Ox8Q&PF+5<6ha{t^x5U(<$YB3&THjARDCWP)AS8 z0wO^Mw6ZiXb!b4>HwuZROY+~19dJJv!-Zs!^MMHgx%J3*W%^AW)#FdN-tTTb_<|d{ zs2_fh#VtP}#MMgD3UnN5oc5a^2$p|URWouGE*oil9QaI+%JZ=fcj~9{wXxfetplDS zFT!CZiGV++NPnTN8uUpx2wcvCCACH}5R@KMzy33i7;c{j6V8O;sSh-`T28k|!}8ND z*~e5NV=Aus&xA9db)<;fx@&Ff4|h7zP>~Sm)zoiHLy1q z=8?jJPC(Om1xaRwI`XtetPSR`4Pp_u9w!~yy>bc@S&L(chbboJSgDrg9}lJ?@uP&n z#O6wuV(Z~}!Q<8Y-^j&aD$C;kMn-P%7yfd&V923wQu zOZOOef9}64k!=mvwqG*N>R`!xtp}1Esk&wfp}Sqai7PkWNkZd~c@rFc|u718!MvNcw-Q0Q@a{2tv` z8j^wkAcFX)*y9l83{t&f_c9TrqA?V=lnD?xH1xsn17f~nols7vviLp7SDFbS=>qQN zm`n?j_iv8?q+tOjc#&)go0)gf;;KxDRz)cqm6$q!~A8cn3ifDkT=d^h)JFac!Iupw9dxc!jH6U5y_75<`ITBW0MJRG zIP@;IXPVM~j5k6Shgq{>WeoWe?y6v~|tyg{X71hFFIGB7( z0Xad<^xZYmoo>gy(W#5Gu9Lo{C!SJ8 zY~ze9EmzRo{8dE+COXR3)MG8cIbw99BP!Gk(LEL<-c%`Z}w);Y9dUNpy3|$S#C4erCY#^~|CtcdCr8g`8 z-%cPA3+~g4N;$nv%XgCn1XpDPMzBCF7w~}oKHA)$@%p`$Sp4xaf_PH+1lK;+5FkBWw|3WyuxSK{Gq{bEK4W{8Ymgfr?2X4wwj8Yy_;+z5PZ_A+yS224}fXtHu2Yoc`HQG=f-?E**H7UjEu_(hUsab z@>HMZe+?tRX4CdErk9vKx}Fj<7!tf0nE zNREfnfC15sw#t$au{bxTc((@&w2>_96&vl-H=PEcJ2wQUyab^7p}afp4;DBhSv0Om zLo-o=nRnNc2dy^zFdp0AZ$ew6eNycKj zmoOQ^j3>{G$2E8VPt6Ez3@Gloka%Z}IsfVZyW8O1bv)>fZ~Li5J4RoB3c~wIr9%bN zzaU+{M=X7FZwA*R#k&`Ui{(%d|y)*wyHoDnhzRYEO27!CkF#~3b z&i?vykHbXmQc*RJwRqI0KBU|&PPr?m3mzfDp}6Npa+h_bcD6GJh?1uvr!G@u1(@YErxqRjxrvc zH^0o7UGUepOl4Kwnx|0KxSOV=mn`JWgUy42plPK1kW?}ciOs5ipjpGAeck18Ws9_l zVZEqPrvs-Y{H1DhL+?FYzS3=%Ap+R%sL#!x+1AS|F0Vg!x^&>7jV2wQesvWQJpfF8 z3@_6rHaQsouBQi&oHVXk^1NJz`Nt(QGo`>%akDIaBg?0Narpaq&FkMx;0dnx(gtG? zX!wT4i0fKCMLFg*o4Nc_Ut%`MXM(3W7@!U2fAv%IP!5{*IKFe>5hpbE{roog*4o|Y zi?A{rTDTHQML$_TDooX~qE-;r*pU?M?E2ttrKQJaR1c>mugNdR=qokHj6N`p3Ey91O@NQb(+u5Oj?eh7cB*qa_B286h2;Z$KtOva zIIt8y#rjef>Qt&}dX4qJEbM8J1G+`E7CKR(oK0%J@hbK3(CiP9D%)}pHW`SwuUar? zQyQdfDI>j~_BjLTV7Mx3s=9B6fj2+jMD@?ps@+NZqWY$!(?JI2PWk7*SYn-a2i!*5@wKfvooG2%~tM<#s{>tP0M&v?g~Lt4fm zwL+1FHy8D03tW3PF1nw$5WLo3kbZ1mG=FWL);?5_eT&QmGB2xEYwYa1r!I-_Fa6H1 z1KeIkTCyJJmOwwJh8U@lZ>J|$Ys~u6BOtH5FLAFj?WR5_r$Drzd@dR}f`B>DY4Hdo z(C6r>4ws~^rt=ktBz5K89IvM4^h3PL5SXgke%oxQVoLw63ab?9IkE#sm*sJBXVc z^5%s5tmsif3Pb#MT=wlfXn|aQB;9v#DSnQe&{`WNzSmme`lDgNo{iE zBJ(s^HBN4nHdfzN_?Xiv$GzC9=fl1=29r&H>G`I{Xo2zH+(viD+_|&xg~U^@A~Tk; zifG=RE~VS8tW1c|sex_Qye|FvWUCURFl|g07@ffKa_EXcGiDE6cdjGO za>yGL?n@#9+J=`6|7~}I+IkrwT7*aDX;)w03{^>bJPO=IL-q|Ra3N#F=fV8XgQ@Yl z04A$PoSPm85|9cfVz(?+x2#@0W6P_r zEf$bml0KsUF|WV)jM4t=8-T~IFvOegs|1`vi#IA8>+w+*gJOq`2E7IZp3iY4z_T(a20Eo z-ZopNt|h11zWuF9chjWgC%wL)Lg;v$=M|Gc=@t8PKg}vR!#qh<=u9`^d3v_^ZD?)%A z)D0)$$ECcYt-<0MZ3H`=bxXvd;n)y)?(G;dX0N~vp4d62m@@KiktZSGwIg+#vWkz> zvLRTQ0|kp&!m{6*WQ*3@slyQ|&O5L378GFF;p*~w%ae!Wi96@SQ z9A#qsfIs<#97uK;Cx6KjXEyPC@K zL`|nE&*S78`6#QtRnzKv4ku>w|6cpsjs3ez=_*cMiM%t}oo;K%8ZHP(84^o3QUZ$p zVlO=2gLuA8Xa6AM`Zr>Mr^og|&CX{RPF{chZLZ-Z>c7+FSxVcS=r-%eDiu&%NkPXS z6`-F)(dSGk4{t5=E?clJGk`DWYjPn@4yNM93r$Hbbqsu+g&g z&GFvPdO(11^Li|G1Hb69vw5uKfbm73{*Fk0Q}1(BprZx;??%w_s@I(TdwP;V9c?^O z8P%N@A3t>{;mK4_Y`v9Vee7n9{Q`5sk2Necm_iBfRgzlnxYnDB8!>u|#D)9GjZE=* zTixZR5p%l4hUjA)yPUv1@A9miC4d{mCR!T8*g9=xL+!~njLp_SNoE5G^pKv_Ia4i9qm zX1fhq2R9@<%7NE|b8ogo@D>np!+?mp+R{@j2JF#I{BRlm7Ass0%Inx!mf4Z?25om2mmmy=#zi@#0((d~ za!7eVB*^bhY{q534+>dkK3eqfJ-v4)W-cd}PcGKoNhGY)JK6e1PACuPuTF6l7#w!x zXl~;g`;Q9;H@!|QTMTwv{}g>!W#_|Mx3>y-EQFc#zSK^X`d* zzBPYz>ZuBWaaZ9!A8CeFC-8>pJ~?I}g7-;HgJXpfxjeXfuiv)03OAZXS`0NqvRFZp ztcQDfZ`6V{T&UOyCAizcS2!E?T!0Ow`Hhm5#U219rc)#mZ0(h3-X@vY#fIFFL^# zCK$O1g2_SlR&5}Ob;-n;Y|+F4Z>S`Ubn&aaM-KX-@AxXBL1pb=V@D$^XfZRcL^gzU zOhuEZgi>*+;b=XV(ptXmt$%uisap=H?_8ngUqwGFsU1U@PgEm9HJrZ7c*Nvc_7&j$X#)8`UntOl}N*`MxcXt}ZG7VCG(ej?OK z^e^UIfFC>hw~0Tor6`f=FIg;*SMkWV&~d|dDt)U25<-1JE+RhlA^B?(Rwc>RIuYqK z?klClNwol1Uh8(kBRlh7{hFhB_brRFrDA5!fNPhscG;TKTS(9B=r0Bgh3AZorl_IdEI|F6x7y|4ZdPf**R=Gg$|24ZYU z{?gci0e@WhB6~bgVmDk%OZ`%x z%RZa>1;$of5{?yV^?C?13EUThO5_OwWb__UMI|^PF2*!3H}^y36T%G@N6z^~mv?Bb zxp2P&j-5}^kEPQ@+m`31S&c$DQY(mgjaQUz+iM6B-@Oa(x+j_Z z>d0Hfn^8$DOg+j~*jZeAgoNb){cn-__u}`;({Ab^K9ejdS(1`D7&uZSVGm-fGat4Q ze=N!WK6Vf-1`LMF;EkovFJ5<$ixH=-cs55{?EKtk?|y>Zd$2&`SW5|s&6sV^PT}NF zW1r}v5(mYiheBNT{CWfG4?$kiy%pv98wRu{WbbOg6Y?!G5}cp;QHV=%$j-NB1$$Gn z3CTEgw`8#|czW>htv6s%R;q9F=Y^M!T4AJ{-+)_f_Q7TVXkMha0%L`=qfL;}9&s<3 zwZ`5%C+DZx5H=OZ{C?p+2Ij6bW~O@Obnu8Z^6`nrw6*v=X?haZCdg1hoa&I*C)~G9 zU#hsIWG;1wvI=F-0rYmGpl9Lv*qDW)oX};zLXO$-N=E9?oa;S}8?$hY7XlS#=xxQJ z#wa!&z%4wL&pt{tLv#vjE@kdBFwwzcJvBG37C&f%+TI%M&$W@CYkf(M`*PP=q9LUE z{ZC_Iuc%)QNymXhjLQEuh+VICV+|AAa6<_y@UCrtm$;fI$7dl&B!i+~OVN6Jie9*- z_qMs!{1vFb`6w$zbl^=94-a`#`|Q@%`ou(y=*J!kqe&emLuO8Er}8hfvs;#|?iI1} zTm{qO{Q&y2IO|~QW4EU);#_=CV0F?SEl?7JB#?#RCMY~yk_bYG!rn* z?V^`Rzg@_ynmLaqhw`T-h(NqwQv09ydI+dz(ypn;h47Y>&drxg2OhP1ewjAzn?|!L zglrkuZ-i%QiwsB+n_pMMc=uxmZAr`!m4o?}gE+V|b@Twn;z4ZbiF?+#hZ}$XoCkfU zNP4G8V%uC~(zggM00elLaRRrl)!ZH1n)q13>y3N+rm4wfr&KWkDa+QW`C~1npySm| zkbW!(AQP3j)*Kdn5rh(~WvR*IJ$h=EtRqyFQNRQVXjk%t8h27}t13EBD29C&;v)@E z#oy9@OChbrguB!C*a}frH!^N`NJVK8$0|qdVDKJ@z$k=PJKxhEj;r`O;10pMT9_nO zKipuRCsUni;76EQFXPhAZ^lJ8lCsq$i(B4yVDiwYi8Hj0Au9K#BQ)LvNzmy8>V^Hg zH1D_WH|X9mjukmMGqCerzsq(g_VN73&SQ$L#Kd(m$%WY*^)l&;=f>NAG>aYZY_ooZ z)I{A3mdGnl)tt!v!0$S{u%fo8jK$6pinXs{S5GeYESjG+t_E)JH|qMC#JaTeTNd z5AyYlByHT@B|%vxW!`43m!DaDdh z1&;g*tbvGQKQ*j|`;|$ofa-ho40jQ0#IfhdUvX`*g1B5C_Emss`)`_Z=f_SuZ|{V? zM#Xr}Q%18|sg`JuHY56<9qW0f(M>7s#H&#loJzMK2GRm_Mjs#Y_@VqipF7nxT{Jgx z?kP$Wr9D!m+D>c?zHENN zqdZmSY+IQA)TP(Rd=hG{`SFIHidkW4D{BKeVaIdOB~W+8E43*uncJ?)Kd%}mUKB4a zN9s;=+aB|gf|;S{fK-C9{Y}&ix9GorJG*@T7tvMX&1J~>@ufrMR@?UYN5jpwN}qsT zm?30=!&T&YKBu=2_!1fH&3;DQs%Z_cp{ph98YQr^_I%a1W}1h&EP4B9)}1q z#{VKjj2~-m`FRKt@Y=}wAa4Q_Gq?HB7$qI;glha&>KtE3I?TP57lhB$AKGM3bM80Y z0G*aYKRe$RcUnCD-Y;Z)8hwm_&Yb&PTY)y}*@Yi8sKwpz|BYPHJa^O)kxb(OdagZxW>|vdHn5Pn5pVGzfJi1pzA;;Vi zBL4tR>-GzG-wnY|tVxDAt>>hUmfUG)zG*m+Eh5GHv3p?kU~XUvG57aJ;n>07BE}%G zGBB&oc71VT#Pr{HbLY_-gLev~J;ne0u+6mX&BbP$>G{HhbPGzVt;K}XgPuW5iG(gC zUe|m&lO@E?fy?r{4#~4?)js!SU4M#mxxS?od%Pt{$fLmQiX@JLIs9B!^-KD&^|oC` zWifb*@u2)Vi|xFQxyjuIzZ1Il9{76b$El^rFb^zK>meD-`l0$2zzk0v^X-~<)Y7AF z*QkoKt}mE&5O0C$t#L5tDZ0@^62GA><@#Tr;`?eckKdW8~#|Z zGDGycg5zKW0ztiWE6OdTR(8R$rx`wUgtH2-9^9?=^13dwMuHC8zTXi+-XR}A^H^c1 zd8)mU(tAgrV7Z(N|GAsD*s`qnGBdx{my9pM_e=CqbvW|df(}l^HP0xiG%2a3*4M z;?VQtV(X4~eq3j(ud|9xel{EeC>F$B6kMf_Zez<01^H)R^#3FW%?6)aW16Jqe81vd zf9sUwz)MSLkg?6_@-k2E;#bP@>P7(O$8^M8{jbh()%+CsENk_`o%@Zqoo3djV=;MU zj)$7_?y)SxF6zDgEsTms&Ts6=|4of~{SK4ZAF`ug=b9(3i`}muEN^+u=CbNYV9%8E zMk37r4g6)S1ZVcp+y~DGyY*vrRM{)#19)jJNEk2!?p##TyTtEGSGd^V^3Rr>SA8G# zQgHut^cDAbBEw8DchYi_oBqws(xsUSb8R!l7l_6iXXY!sf&$B>{cC39^n7O3Q|}sn zo4WM)8Bi;Cr;$5+r~A7iyix5S;5+Mv~=?>%ih6RU)jJQfx<)}#Cq1$S9c^oRP& zzNIg2m_2d0CTJ5l@0^qE;n;F!{eLu_Wk6GJ*v17#MPx`fNIM$oR+J9u7~Lf?Mk=Ww z-3?O&2S|4}Bb1bGiAk4$gi`Or|9#&N`!dFMc6QDa_kCTzYX`HqzV_Ruuz)37X**w#miNj=JTRp*!j_~ zv}K*UL;c|N361D^f%H`EZ?10btAEpqzlP6P%^k*wHsj?V)d2qU%t!07VdN+nHTM_mACt&3ASZSng@{hoI3#d)B&$t4 z;h7;cT2%Jru2&2J1e}o-r2k09FD3n43BkTAc2~SW(BSg`1x(k`eBOMMR@MR{lTEGY z%8i8IhuQA7OR503lY~cUGk`b4Y|zO;TBMQJaldT+fLAEW>GZoHyTiX*5qrF=bjw%Q5LTX&BeAm-P&5 z2q@l7a6w-u8U^hcJ(x2RmBQMvU{)pPpmGN+>{;IR#%k43mY&f$uusA5qG;h76e(~? z<1ckYj+Hqk8ikjR*EM*mU>EPVt9bf>&h5sHv46|MDS;heF@>f)r5I|H6suH$Vm@h` z%4T4Dmf669quZ&}$xG%nG|?urT4;cB3UmjiY7|Rf>cQrW#CKvgG+9-J3tp#Hl{(r& z=WcW}$xboi2JBIAuQ*N&stj-gOIiG!5`b5rRcLCGt20Av0NIcS*@nd>&VCTRJY4%x z+b~}1V==>MGbD?w26{!khUym81eUJRpKG&jvNBO~ACTc9P&oMQJr%<h}e$hh#r$ivh}z)X-*Xt77RL19syg zC~YykCn_MCKc(E8l?8&>(s52;A4wvbav+iyfR7Hn;s@m~EpEFsJ|4S7tMI(>THP_B zoN$D@e}Q^N}M?pcR!V8=9 zOb5*#K(~(v9{Iw+5{0aDWzg0Tp7d)+Qy&S)5EZnG*v2@9YB2y1iae zwLkdkwVG|Pah?z^>(SSVKS8l zyd+kdzYRh-?RCI!E^BKr!EB7pUQ(zPgT?l_emR7|PV+1H-rfl^g5Q(Xm9n=wZ5yER zM~ei#vt;Wi82H-kqT_{$4inihKI2u0}DcAc;k8xZT znsYv+3t&+9z%G)i9xJ!bQAFD{j$On~`LVgGsLha(R*VPNYzl?uQTsljJsm`p21Nsz zJyc+HZfi(k`b6?_z+N)==@s1yFZy}La-4TGKL2`-+ALT+>&l3Falr4dJjQ|l_-Xfk zLNo24?7W+ZOuzqLf#Z_0cYNuxYv*&Z<+$lL^!!-$ig;bf$;VGHE{`CWh6~j21#SQggJpej*}m+Gx9J*rW}y-#62z(sM&(#~0;=Cv zXS9{Iah0`?&3&$j(k*_i*_@Y)rVV@DWb)+hd1w1m9gv|H2>r5Ph%$fdp@%ck)mRtgh#E%bO@9Z4-(8~s!TdV0Zoo;tNXh~Cdt z-q2yt@0?La*565huUy1Y+p2vMISs42_?dCY;^msQDWHihst_ka4~99v&(v0G*&?U+ zD=&z6*G+ing@m(Qf^thV7P@6BU!uLQipPCSp2W9F&O7Ngt@3P-?eqZ!Qk6MUG;sxa z%%6|^%kT9~i)FQdvCJ%oBK#4c{%8zPwz&@+@c0oyE0VAQU-k*-hyWvJ;v0af>x~gT z?v+wZc2$xsOd6C}Vx?mWnOJtI%{=!0(xshP2wox_E4nQ#jhoW0Bo1C8dH?m&eSYHC zqY1pWmw$YYi#&hHS-V z724w)U6m36y$zWCtNrc4-IKZ%L`9KI^&M?7O;RuBsIwqeT3kfzvkpN%FTW!n52J+u z@$>Te)ULC_N8Aj_pR~Irahd#4imy6>=5(oxG&Z2~@BVegB~F}JR6#C}mBD<47}@gbBb6Pl2Bc-<9-BKDEeBQOb!9 z<^#<`QYNggir1aU6U=Et>LJGKOpoibh*feqv=kI7+`AdcbQ}vK{4eWyN3M>=?-ZwC z>ta?UZ6X{u7*!InLHf&jY+0(0{}lwMDEHmO!FP_R;IFKt4-vEbi}|K~`-|CT(c0y# zt^Wv^_SSjyJDx=}FpbJmLIXNL&8&ZLcjv5ZJ9FXR)t{9OxbWbA(v-L9zd_xse7r(# zgwK05nZMWCf7pL^hoHX+W9B_iPr}QF^AJI0bCIGr0AX@O#S8W+>#fR8()d*PP0w?C zEvoe=>k3~y#^M0=&$hx9!a={(BW+?jbUb#mI6J)N8> zuHyY5cYt)U(D?y>>eY{%KAk3bdHVfD8Z%}$M4&9_q#1#1LFYmU#sLKv{K_f4IPbhYTOS$osJ<*??u8}NO14YPoDK)fg!&xS>7m$0^q zJ!0}lDh`9|lkIa?3s*|$>JG;FeDzgkN1N$_%V~ZMq?-V)^F&{Uv!w{P?QJ)q^a{!y zlvletF<1k}0dy{9`*qtZW7$PA<$(z95XaI1pXaZ-zim&r1*92EzIJYH!+9Bc%N6G~ z8*q2Fn~vJuN;JdGuP$n^&T5N#dfI^gRx2x1*0cqJI<*E!0gmG{hqkq>;*xkr2 zklPTbSRSnPWmtc{keq3B*0Q-o7+kX3|Lnr!;rno@!J zwP))h3UrUow8`Xv(#SJJw1jZUBy2`*iMO;tpw!3L4UdVTPjM4m=D4nI{abe+9U00U z8NE1oOwJvh56IL&6Y|*;AEv)N{l{m|y$CR>%SFdmHs>BXM(+_iPc++Sl|~%k8C!zp z-QTjv2qgCe|M_|y`S|%J9X})H)gS(^v}D5=2h4nN0Mc{dRm)4Xc~`%SvHxz5l@D>p zErU>xn$bp>^^rGKD}@hDWoqUt%yqR`D=zXSnX4vjjmKi%1o?*Sg2!-%I6Gi*(k4jw!gGd+Y7G^GVSo1gIh3J6!)dQFLC!PS7 z-ul}12rI9R@2JgdF7zC<9~b_u&F!3XfAZe>rjxCPTR~DIbTvvYH(zH9h!OoMJyuX+ zmhDHix(^JCXo&BY1(-1({<}w3u~b>kXVmv{SxllN`O_r3OHjw82+iLyLfWY!G<<24 zg?rOJZEQ)C^}$s3>k{o+T_4&gZZ{IRG*RyZG6U6_Fiz_nE859PMaS(GY6mlBMiNl7 zixkD-wt45u<^en$B_8$nBwB4^Yj(HurBD|2GkI}`GXj!jU>D!0@_KBOb|8y%bR*lY!vh7Noa%fCs%@^pzoyZJXtyj}It? zqh8*jjMUdR_&J^z*zim%ZTv|`^5G=LfBRu7BSXDn0I+5g@e;qr1l>z{(gI}DeT3;n*#3^PZ@r!-kJzo z>{m+kYsEI80M8HK`1#nwrQH|;x4~r!PiHB%{?Uybkv`l0cixMV3$GApV~_%l%7+-# zEekb!$_pJ!E=$e)F8v2fj}`^!nJ9Y{3A&IYEF$ZhM2YU5bKQlOMOvFLDWoVrVzaMXy}MS3ghMCj*m6;O(KsWf}IUmt>megm@(ueqm&$GkDn^ zB8!hdx~S(JnB@}4&2#vH1*#5Q;#Wjs3_~ddO^sT{KbTtNCGw#Nz5z#!Gr*7*53@bO z79MvyKWoVTQZBk8_8=2OrY*bph+U24!)LKyPH~4qpSv#pJTxI~|CV`>A5isEYNvPj zP1951t`0FW2swhq`4YXRF?S5X$Ctys9oflR4fI2 z@r^modycgjBjv0U&F@C^y8TTvN9X5F0d)DkViJBQ=I7fFbT3sSl7A}+8+O^Q@)9*5 zL1(j^(OQ8bm-EH6xecDZ4c@As$eXnH>HPF-X2y|?Ira*)ZC)Q5(bHt3(`2(8ZUW^8 z-BtVJv9IRaq-kgNubn*o^yyARnrN@L2`_;%9rBYC)YUyye}#$p??3bi9p*v}bFFOi z@vXQ_g4}@lusZ1Agb{nXbS^)`<$E#B;DZPCi9EAmqrfFpE2LYK z>paScRrr}8q;lADI9`EUWl8g5@MY=(g*L8Qsm)-F; z-SOPT<|W9O_6990-pOk5iF$aiWZ&ueU42>7_UOvHJTqN3HoccCv>Re)9$@|Yo z+=k7K{fmUO1YO6zX-HbC_Og@afVhY1CcOzmhA4%L-;{{<3p>ZGXmBO0mKn(= zg9FT21zmx0FDy4eXIT%xPh^mPfVYb2l#?J6rL3PDsw2Yil7mEq$TYjXhO@CS9_kKV z|FT_Pt_0K1IuZq=XA*{joie%lS?V@bTC9CaUncns3@hcviVHcOF zdfAa`h49)xRS!(Jb8swZ;9QR|_1!xB{LviT9Z{|x_hBqJC7pGXcF`2_7LHx@K;wfD zz~@~B`Lcz&iaJF}$nA*=et0!`)YsqXeSnxG*o;>FPy(*XF>N@u3Woh|~;G1+tVsqb` zU<6O=0?+CB4E$9r=KbX^I#w{2$$n|uwGP&3Sh6FDJp~5%Ptrh-0_cHV7ujFJ*pk61 z`!)fOM=Nway~$A{7RBdVT?wOQ)KiWxLYL*hnc)>^7@7Uxy1-}>$SbQi=2|F?8Llwz zT8OOx@oIdHwawb${7mCBM@?vlI#H?gM~*YC`?0)N1lueco+2h(v}KSs6c8clsfp2o zfbAsFd(|)Y9SXcW&b|r(BZ7OlAm>m7hQYQEiJr-RTQd$sIN#!#vK`Gvk9qTh@&-gd z)6VKC?-pUilU>)EbFYo2-j#_w?#v$${Y@*TuS{E9W2_7$6HO`1i?@~<$$Yzs2wN+Y zZKzt&B#!nG9%n5gF;;t6Hvom`y2?76j5;(8wSA208JB2G{r;Vbch4yi@_mBNCON*} z7q;9ROn>g$N;}!;Z6D5<>4gxnl#h~ABS|dFNe;Bcx(heu(25q~dY2y$R{MV?vLI*gh6bH9eLB5IFGb~oIC7Xa|jM2i-OX*vM zkab7YkzmA8kP+fn=#gaWqR7w0%h;m5|1UnYT(mye{`1=Ax-3wtASA7dDr6fe(xf5s zx;$QJy36Si6CrgMBbn*o-I}I*Mw(k~Z(Z-3G2wuCshytqM{}qhP-6~K*LAq-{Fo+U zN}=1av#b@)94rjdMyg=%x9defG#h7WJlWKevc&*c4YVryfs#CRP-4=F6YzJejgGG^ zBUVI+%p+tU=A~)vG4m4FCxQh;P;#D7ud&pbIknA@@AL-`uIZHajvC;ccAP`K46myO zx^+|HA!NTe6mZ{4z0&ZE_gQt6zU7V$)~Kr9Z>T6xr1H@`=Cw7t%}3sJSFI1QH+C}} z^GO~ZwKps=tSM51ydC2%q@OYJr7|-2{!k77gRm+;x#uwm%}dY$;DF2Vx|X<$EEaUwl=R#isNk>BBceWI7SOpR?~n-D!MAL*37M z^_K*-#@n@q?)_wlEJ^AX;*O*U|HeqhS8g!`+AQRgijBcKg%+9WvI9t;vLFwx@eFo{ zukd@6_TKXNMwJXIwh@T49tEGgG7Sk^lrw~5LiOeE+n-dN+>-Eh~9g_$@GuS_Xu~Vj@?eC z&{RU)_3YYD;K`j+31?5Hgd&1VofI2@cijShI`}QjW7?Qww={Zq!<_l0kiA=4)m^UD zi}#ZZ@RFo@G8Twe6*}y#uz0ZniDghH^yCNmPvm6k7BFNMJZuVcgfq@g|XXJG9$IdH(`yh#Ra(M`P=1(Diu^(!V zANh67;-$7I=g{-gQ#qQ*#(&4>!t#CYf%NG)=H7MxKl=Vm(*wRKlo4*Zb~%KtyB^Ps`3Ft{(FZW9 za#Ig7cy8#kc@(43;~M}8a%YGV%w3k?T=SLE4)S?^HDH@4j@-|EM;MT$phUSQ*M4c# zu-Wr-(tUtQ{5(eO~cS()I7Spzb*C%c|hOFtFx)qSn_R) z@lVEa#pXLYVg~d9ln^HWuZqM#?WZl$kA+BWD+6ffe$zeOsw|;%w3~b7g1zkO&Vs|K zwVwm=`OKnTzo~FN#~R8Tx1qXP>MDjt?&4dbGnif6+Evr{Y0XbQ{yShYU2qDxT?pad z&P_jt^P|JE97YFtPetOCUn%g^ylR&4r3?LSUejc-kR^4>vuLybDd4Ps$L+|YWzJcR zxH!OYZ?d-o@(pOrlzp}_V|Ek=Os@*50eJuoak>as{>DV!uDD9%Qs621$-2E6tQS54 zVX5Sy$t{c^`UQl zD26Ia9i8H^rEPy85cTrJ45+y6yZ?=667)%a9}Gp`e!Cge;)V^<@$4J!AKz5#sTM^p z(`XkV)H}KOCwA|>Ujib$JPK&+s#$^sTA`=Rm^p^<_eovPXIzNCBAB1iMpBIP*+#hx zSofZy%)+Y$dKp@GS>+fBG5|$h3>usEHsU}MYLdgf3J;?%2#kMpjFSHEQGZUwi(}u;<81lyrE6H5BN#Mh zP&7c8M)p;6t@pY9VgcQ&O&<}OGH-gX{!8;ySA_R8p=Br~Wb|R^S-20)!7DFI{K!hy z53o8xwLwI*Y3MZ<>Y8iCb`{<=Oy)@On$Px+A=uIFG8^Zx8@mMc^QN=QVS^fOsOT4r z1@{j)*k-@Z9pQ4tVXf*`2z1ii01XGD0o2<)ltp-DbpuWzWobZ%g4HD+F#R}Euy>_PIpDriS|z&pn#JZRNw3ECa<1w{4}L7px+Q(Ng_iQ&o8S#5X-1Ws3O z$RNqqJ_28aNv~)m&)!1%s$xgn|-(IQ!5=u138MLimKC|aOEkc?a;#Bn0l}};% z?CDSCo$<52tc~$rVP2aX@h+MmvLUHEGh{#Ki=1kD|Kk3B?Kb*!SkixK2HwANAph51 zuxWmgv*NEYsY8k@53}>U|1TB^+7(b~^k(^sL1Ql?&*5rJ0~|s}!L)SxiUh?;AsIiA ze46#gXPDlzv9;|p`ni>uU7qBeyWRuPB|gO6GsQt7Z~G6V8OzH0SVQsar>9=AZ<|{U z_aNJt0Q8(Br)9Pc)M~uhfj@SZAuO4s>j4g-%b5sK%Q9Mt%xUsPo@zS6PCU3Gp;JGb zcQnS5=3q~xhm^CgI9w$?)ou+co>Y<0r=R`w&{)uBpvgf6<~{R>lE-=ogg$mDiCN@| zSQx*t-U~_i+rL#l>m*$wRCEYY;7KmV(I1hyqmqueC0<;fpsNqnolZ(wZ&iQFQ&(y^)HXNYtHH_}A<`{)P3^=-#)0K;S zh7z5_gOlcnn(78vg{U`k5aB5kZm}7kb*^QeNdLOc)}wmZ1EZ4rG?Y(mXg)+4;IUCt zW4aV2h1Ei{CPs%H28Y{2`G`-=Iju*mbu1f2BG>b_A63C33`&sio}ENe=3iR;l<9Nm zQGjCP0qYJHp-)TB7j;MW;kLe&L01|l_mF#{hn*f%O_7G0^sU`a1q;DPlTSA+)UqQf zh5vKbZ==~7kE>fokpi}YSUR^y8y zDyVI=n=b8hVcR8c;jEr(dk>oL@}~;`W72P1-lkn>P)*A5Vz!6VD6JMfLbYk9IzPfo zgb?7gG}ooU=c68TH6MUjI-)8B;g%SM@#*peSs0%Xv(v!05JmBelK891Cs%TbAJh2Q z#QE&Ab-M6Js1R`TYDlyrsz(qv8Xffl!|T|gBLG>ZB6cyahZH!X#szP3a*Vb>nlvn4 z%*tt?EyO^aq%1ySikXCfU#%P6jH9n1ap(0wYY3Kja9MokR96TA)AMDt7@4i?SzHz0 z5!u?#kG6*KHXoyF-h?00#n$CL$WAJL#Ytc{p47a%-nZ@3t-50JgcA2WfAA6w|8m-N zTrw&RK2U5qFztJ#r^u3#*b+@_IC{n^s>>E67=>iul;=&6@bafO2l&)UnG9X~5Z(Ul zd4I|1!4i!VWIcs%CBv|%S~j&McC#_nRBThM*@e5sC1x&miI_PGd2|Oi686IYi?Z>p zMjmnF3#@fbto7M%>%~)W`kEZ_F}Bp$#uUsz@L!d4PCHowk_NDPWO?4w3Aax+m6YD21_5XnL6_2 z^noQxU24EeR6MCHxo@hc&b~uorGRj%^!4}UEV$oU1GMd7 zhxvWvU*a{uvCWD-=E@4@Ezy0)8B!L#KiV1pHQbCPvTDWm+svx3^AH5%n0rtYzH7j1 z`IE(R6uamN-8&EHCvboMhC#hc7`@$NqbPeNpW1L$N6az6Qs){*#0E-}ZKfO$e(s@B znR-3@aW`{&bhYyFJPP0fl|~#%N6_b%5-JNm0mvlD0ef%b%JrUY^%k{4ll+0>j*oZb ze0icQ=Kr^ZuX$6=am}6c==()C|J;oED;?N20PC=(C-hTh<%{29P;X;j7y;9Py(Fh~ zkS}Z|HHfTX$1X%%xv)A{qnbR!}mb0{m1cE zZoceL$|DUNR<6p7RYHT);7_r|FOI|te2gum2>4@cNz-bk9U|mkFC6(u)k1o=b1}!^ zn-T+E^txc=60Vgj} zfEfsV8O>Piu;)xmS4-N{&1d3B^{QGI7IsJetu_m<5oo6Kz^6Ab>pK31Jw|4tx^urQ zpdydB?8WXIus(MV3n$>>bsKtt$LXLk#ToncoZMNgKwP3M_0yCi@!Mw~87q3p^m|r{ zzth1_coyB=JU2{uJj$kQ{s!{PIF!=bqxv8a!C?OM^?a zwinClA*6D)O*=MG+vTm#VT+$>vu+Xa@)8FGf^RyVflc)K`l%Y*>(Dz8P3(Kt`($r| zgDBUT9u61=3!XD|UUg@xbwaMGQP=o==5JlkKM*dyco=2qOFR^sE?^pZgg^TCE^-3h zOF@Av)zdCUwh?@3&Wb;49`L@p4Qu#$?>!LxD*dfplgx4T*0E%M{amDrHI zZ)+qtZByG8LCr5>xW4p(pi*$|0{$$c+T*Br-euG(=tEI#Xs+cCdcV5fIqWgnx+3(%Wnqnl(0Q-{1n&5B@LH#-rfc^&aqIdEIOK191-)@Ye`1vsHVhRf2SA9etGw-@cw zzi`HH`11nx=}A3%m-5TpYOa;h5Ak-=3QC~o1y@d=ulJyslcAc!p3-@0?K{D(AX)%8 zXLou1brx@VhRw=E%*u%3&{|P2g`Z|sq=e{+<9@u$XYKZWdf5?g(-ChqPMmR96njBg z%pRyI?>_Z623U=6vod|NGBY-bz;q@pwbB-iF+W{B4-l7fzdlk637yENRr3I5nL4)( zTFC3ZUw3OuTqE(aUBTKtL66ZkaeY?IXK3^G!WH+{v#cKFdX8{IAIUOb;$FfjRhnL| zoW73r-%sB0_l6Sm!iUSsJUB~>)^wbgIia)FyOn0FUwY7 z=9_k1iWZL7CyWi&@;Zq6*52MKLq37ZiENJCWqS1Q6N?G@Q$#K z=qn8JE;YZ&bZrI~_g!2=4gTpNB>(d6KtmFao&kTjD<3ArF>+?bf?=86LhfS_#R?iyMEv0xxv~rwgtw?ImWJ2f$?3&x50GAG3Lnb*k`RTPE(u!(e0*v$kYn1 zLAehKV`$)m$ts@yy3}Dl+FuRPC^LTx>0`M&VbXPR%yACUA)_1dwT&(pg_n& z@3oIr4Phuk#py)Ebu3WI54DM-XUV*}CmTl}1Szxd8?>Dc>kZkYo@cU@dNi<)a~`BV z(2E~y_KmsVt6ZR&1nPaA;n$st9%vf+gFecA!m_akEQO=X?A^;@g@VQ&LtoV%(5(r~ zu75I;DpAkj!Y_-UrUT$7&(Yt!y|(OdRm=l$j$J&2m6**_Ub zpLZS}djoXG=Y_w6K{VUDgO5ov1NJ*vCr^UyTd>bzO6Ig#2>?;NQ&HPNhiEQgvVA%y zrdE{vO=RF(OV!Uy|M(W#5ZMZF_^{4VL38_S|IJCxn`5~C9Ie( zgeHJYRyhNJI_i(5w_YjQlfl1cxR_n{zSPsHnpm<*`9$YFEdI|u`Ukj2lgpLj9arR$2-YA$s55w)W9`p~*v-?5jw@Pk zDGpSX%;y;kILmfA&}Va!r8xdIR3STa_SC5abGx(~Qz$juqVY0Tsi{yxw*R7zU+4&~ z;_M-P&JQsEY*^?Y4VM!1FDx(9)r(0K$J0%A>6!eeax_a5hp&oi548A+%sbV!f#GpT z7CpXf9{s0W&ftxr2y~?@U7L46a)omtz?8i~9vLv>FWO3YE0aX!hy|tDl5y6l93>LZ z>V$`gRWNtr1@*C3>C%^2NXV)K%1toBjZiH@1kTEZhv*Yv1FT;p*ouADtfdmjUmtd0 zR7!7iJ|Q?gom)7F&bw}yaljo@&P@qP-HkX{;bw7ehJ1HGSqUCYBvZg+rcm2G=fn)o@t6kJLM@M`teU|e14PsBo-nFtscy+9@Lmk zx+Z^;_&0!|z!fwjaEC8)Vd3blwb89LJC6r0eOBIVv;+v4Wye0111F?E6T~%hu#vS_ zxkvd*KU#s)H?Go3@d43@p6s7-=Nu=Uzg7!f=D`U2V8r}F{D@XptP~XVOJHHOA=Wt| zBAjq;E_h542jx@Qi?~Dw0HAdFd^Z$G5eU{b3D%j_nWk2>+woYArY;>$ck&0X%A1?S zJ=f_mSWB#egaG){?(#2b5WO5*@~4+)fINljF>*y$$YyCO zXtBzP*~g@5&EB_>ak2vEL9fq(I#o96%!&}S^jAZgeR{|G(%$+9T#woKrM0}dq{`@I zhUGxHDs))4mn?eYkI3b~v{iFB`6+^G*s@MTT)RA(eVV;DajZS}TjZ+0$HiOBu;UT@ za??B?e-VXkF=P=DdNiX#+c>4P;D|}|rhp5*M=b#q6YIRP+1@MS!K^9M)}^_|L?SS% z{hmFOpp!#tC%yr!kBR3EFFwylx}5f3`g=BS(2?i5(D!7PW7y{w$b@n-wAnk7AyYlT zX4}u{deW+;3MRbf-V7p4c9Gm zQuD(H2>5O2njGp98E~FP&GWBn`*?S2W_$OLj7KNYJN&D53AdCexP?bh z7GQ25v0K6N+794!@xR0@gpUPD2aYr7eb7%(E17~IQDE-&|BpNYO~s*T8jIw$5J*Aj26qBYfbf7Imim&88<%Ux7Bz-$gKMdF#yUUxn7b1$!YK`Qj zot;qL-NMX<#D{qTX-Gky@$V;i{EM*z^Yc5c3-siMv|jgaS~Q1wf4(%bk3&0>uO@mg zBbm6bJL^Mqj(9o?|LNT-deQX;YSF@IF@EbcVH2GTPD++;LTyJB(4GbJ*Cw!ME~2D3(81?ypZd?E zKsR+zacZ#!Z6=R292b1fv{m>S=c~9%Now9CN1og%@XbEpovb)>NRji^QO5i2u>s@p zDA9ArSD|3SCGLTdS*i|)RTSD{^*~-xqw?_&xR`)XmhO{TB9e!sX7fmIGEqee~P*Jlv0P%?2Vf+~g}gL_)IrpNt-$05#Pc(n3H zGNEw1B1ZQ=rF=I2v%V(Rl~NbOhK~ccel$Gantzm~hgSF@QXV6#$0vqTPNy&q9mXGB z|8Vw)O72~2kOyaD#4v;L)c|25B$FC7h#zhsG$0Y;WCo9HSn>XbY*Pqs_z$J|!nYEi z>G>4c%oumC#&Ij#2bZFM-L-dn;p?anBhg{(3KTB+gzF9H`|!{?{L$UJM0Bfk6ih$g zE}?#ytD*ZCsXD*`g^V|ZJl(zP)lLClz_Oe*ix3Tg+Q_J|=>S7uDOZx-z|s{tQ~V4g zr$x3-68^{`Sqfn_#N1H9+^~yng%{9A{s;}wj&vHbqyblDeV3<)&ixcSB@M&R9>6LW zY{%*Wpwk)6zbO&D#JKW=jhX3ow2ifKjkRHI>L21C&7z9H&WQ_O_e78f7FxuGD&iv1 zW2*kgdO3-~i853dlx6xXvT6f&*PoGr&B#^GT!NzTDk*5Bo>&X)Lgd3et07zEB_Y)%ID7wshFbwY;Uol{*bD#y&IJYZ=| zMn!t!#5yD^Y-p5df_5k_S$wxBAKuqZZH%;*^5+fhhe?bYpP?n1ZVvqFZbLTeU)66~ z0DV>zBde5o6bnfxLa(B2h5Q?b|PRn0ZCU+Qle&!`t|sve6ElqT5dLD>okt$-iu*G)c(15MJAFeLPsj^-h| zb(9*>%H^<+!BNK%ggrkY^HAXFl|A;pmMVk8Wt4&gdMwHJ2rP zkErqo!Qkvl3)h}UB1tlM(vGBQj13170mu6!N7 z2BTD-A`=>Ufapb@uS*rETd+qL$8f{68Lw*0lz>{WQrJH~yE`Ou`?4(mV@7PR&4r(z zsf6?AIG&(nMqT+S9`^W0(B~=P@zxqSFrLF8y_$89OCXB#d z6A7#o8ycVHrQd|gPK@SkZLG+0t-Q~0e==Y%?S(vk>c0nZEX)<07+H-_Vy?f!+t!yz zzTBT!l;k#WzuNo1_u?Q=R!DNv%mE7TTO?4g+pZKkOwonmWky{Jaom#tcBZy@Cyh_6 zgIR9{>I9zG0l{tuJ_Ge(6o5>hiEgi~D)^YA0m`27#k5LYVzqoe_~1!8n^Ip3FwN+1DsJx26& z*bn&9w3TKg8nbhV4)|0HDb|t}#cZM$|1s<3JXv)t<>U>{3y)uFbS}0$sLrbmD_}Q^ zF>QI#wWis%*4HRwp&b8Y4!App{#_RJt^T_dM>%rmI+hkQFgKEfkE(8wu2rjjE==wm zW6(xGwGpe;w)z9n@m&_q#nyZ^Yt3Orh3YZROX>v;+64`Vo#Y4juiv{Is=`Ruieo;* zl8cx`njN@X9OxuJs)SqJXCuW!!1UCQmCU!|3LBCNeg5b_<#M}Haw>M>t7Yv8tJ*S( z;a+wv({0qFUN|y|L=ICsQa6J&F%bDS^#Ds*y?d3ek7`ty#cXSL>6L!Y2+B5o3<{wGtC5>D+%*#vxN8rZY=#arj~t>V6>FGb&;d(>pMoL@M#wHkn2FZ%0c zJXeo;BM#$ISw72B3cmUq6EIt;@4cV~=?Y0T!NDtll=T)fDoy5|%IRLz{Dk@LvW z{HkK7yipfsOr6Dr2}8i{;pv+hta{%+vY~5W*imoRWjCSD62^p)yN+T2YRTwl#)z~V zE%%gS>h{W!9jJY)o6UZX5VfARU=@AMb`1Qibsh(zf>CE1tb-2`J!#!WW&>&tNne$; zw!i70sYNmU`$)0I`6(leP#Fa7Ei6V`9t9tw*B4Hf$JS?nHWlCqc)W_n0*yfkPM(M6 zn3(L?h8hG_ROTA(%Q`w?JFv5}TCRcTQ1$wkQ_NrV8|X$#Mr@k4qWr&nF?y}YXR zy1H$q#Zme3yrvhb z>t7Il`4T)oU?m|; zw6~6-eP+lS1+eCN!UUmXTJ1N=ro%nwnoQ$pOUo1In)8a!4$|l64u7}vUdQT%tgxJD zcHfol4r{R;CSW^9#hUNkJ74j`5qV;bn~q@%b2JVH!JftETcoaZ%m zA6aAtYuxzL0RtnbEyAOI=JCR7_4(qQBFa(&36ndJ-t%wki}a5Nu3Dvhe@fBVNPi>~ zkp6jp_~)L@Fg+wIHsDp0V2|{-l~M&{-$yqguh2I9(Z##ni{%*2o-ughzYn5#EUT}R zAP8zy1AaX<)1Fmi{5Q4Q8*E`%W<-*kkY;EV{^-oz`QU@Ws!_>*0NsTNkM=DUX`0=$ z;gRMM_GVCKr&;5yPO1V;KPQGkr=b1+sq4Cfnp*a70+`SdfdJA(;0Z_v=^!KuNDW;; zS|AV=2+|RiUX)&>30H&kcIik*1nGi+28@v+C`C%>5Xy_!@p)x@=gjWToH^e&^ZWMu z?d~6Y&c+h1&^tf4(Q-7QOXxkHDiMWn8;byW(Mbp5NxPWqkB_i}N7F|Snv`q=Z9cj3 z#Km)|9tP%R>!ES-rz4IZ4I2lbZaWdLJ`=5o9zz8$=b)%JOXWRsVqHO1$u7ht^OU)i z!d=?PO;Oe6&$Em$!rVYY)~)ogXkL1{%q|$ae*ovD3EXEkp{te>s8`$M{DbhFF1#Fm z!nE3QPr0|sR*uXzoVOaoTfKK5DX37lMMYkKqUjE8X106^-)T``fF!Rp3VfhOJHgOS z;hpUIY=v(P*uo)n-a-|*#-XO;(i|V8p9BKgb>h(KUE@MiP)j`ueZ@=e;gQvt$ZDuI z-PgIXQ;z%o4a1$7Hye2h?14+Tji!8@>8l6CmtG?Q2Gesc^K&BHwCfkR79J(t@m=-( z{H43*b%Xs!W|!$3jA5~XFnX8p;A%{8wVzn4M0%y5RDcBQ2Zb@Zd*QtyLs!`A@Fjo0 z*@_DIK&*rsM|9vOhH)0kLSd0IPIGabBjG*_-a@nYw6q}};XBosooc@XN>*59zQt}R z-%$}(Z|ftL+50)GR|)PgZfO_JP1Ky)um9Y-J2im!iT*;R{1ECJ)i{*_*Od># znHF{|hu|#43=MNCN(U|~NsPX3}lnZ)O- zAn#87!mA<|9TJNLRjrJE=`dg{FFCSo=(@yGqf6e2YNNfWv!{}I@rA9(V+MQIM}@;! z5IgGqZqih-^Im-u=Qj9*z19Jz=iBJ=mWi(AJ{iZD)sh5p?vF#plGiqk?_|(8W>aLy zXsYQ4K&1n?pl=KoD>bB}`fr?D0=15F3^l6YR0b9aJ3gM%EA^G{h{|X9HMaD$OnX)t zO_Js#-7;_v*3_b;9a*SRo1p=hDA^|2WPwa-7PEp1>W3<@641y!AJ*md?gXzzb43FA zbp9fx4pZZ$#xv!G%tu3VBe%ti=hNVS!no~(Do zPZWro;>D?Vh^Z~=O-pIf)?1Z_^^nvX$?lTv7$s?_HL`g(We?(#h7>d(Ys<;PY+p z?giTSj=9qL>If~^F|rDWzn&8qz>+C3Mpp-^m>EPbJ!xDn9(9^Z2rs+^imZA;0^@uT8LUhxzP^lu1 zAe=ROxq_=qZEN}sR&qynIw=iA-H(L!BiBV)wKv0PL|GT~SdatLsIzB9iZu-({ z(^cI0HPKJ94?~pNTcHtX#9qe`p?HjM)EBTmOAb;v200RR9cAUR*e z$N}ePRYnE?_|pIYbfl+#F5;eE{w_#QF+W!qycy07CqaA2@`^_SE9uk;IgcYBDau^Oa?=GtC1@|fYLQ7Mhr8P1$}JIyOpyi)9Yp|@W2tC*s25mCx5dr4K` zTHEag#36X}4xN@mDS|%L=jmqlT(h#fc7*<~%6FB9XTF;dp2bfVZ zd-*h+12}HF5kWW7V)qy)A(nhd2NoL?Z?X~R?enW@+pwf9PIr@yqO#uL`&;hw$jU{u zhF#FNT`JgpunLg@m{;>rF;R`G@-2T0Na)rB1BSZIYn_A(Y!mV-H;}ikd_V1pj%II?v4=gce>J> zyAq*hw;=JEnm5noELZZ5mtvI? ziXs)h75sH|PMhyBQKpM3kC*gYruN5qm!)?~T%LqmsSrcS*x5m@`I4+ zgFG<~MA0k*QJR*BjThu=x$|%Wc8l)|;LNh13jYVO)Ali|E0G#`Q$2%;QANF0KAM~>9HUguc|5DMZIKe)XLek)eNwwvoUUbX_{9RHIm z`(77U?;{~6eJerJ5p7{!w@gFB4pCM%8w6@CKO?s1;iy_PeP$Y9y^;}98k#4`KXS0| zgr_JN9%1D=oQ^7LenA=)`+Sj2XU4Jy9-9O(AI z3bmSdyvEyJ#jK9p+E0S?WvlH)cTKpUsr;;KI9iJ@I9)cs` zb&d%FZ3C@afxm~j9o=w_g%l!|8~|V4V3D z<|!}Sr-CwV1kLAzc_g;;D;Lw6aY;ui90evh)P;o&<2FMp1LL>FC*v6_=CilPQ@9N8 zogp&?>m#_%`)Pbg$l|9THM>&e<3TfHU+Kpz>_=w6LdQ9Gt0BT{MU-Xe^N|`pMM~p# z3O`e`yx)Cw%WTRe3fZrA&gVbffm$?g4umvgQ(_PnQ5X5eE_x1xqrqCesNJ-N;W~|A z`dh0na$l#b-TDUTnIHu}?dZ+N)S}%TlT(klvZ#>vP>IaglAW!ah+}S3!azfW|D!?r zoSVF=fbO|qM5hG<6$~dcUow_)*NpIV@R0Uq8rInN0myK6;dS&e@iCp}axS4wVUN<@ zSN7a`pv`@fia;`Ez^~~PtgeR$Ch1p6DyK>1=M_ZK765QWJHS2A?w;cI?(W|uJ&FD> z#r%4a^j<&dZN{HaQX2&PZo&Vd9nc=gKfyC@WbvH_0RUMSestnbh9F=MiI6n2d!dl7 z$RD-jp9r?BI=OcyfB;Jn1iDgICMN0yUIil0P5K-n4K z?+c8R0-PMRe?jTzfd3xDPXbSlg1>+}Bp@mDf2Zq7@W~wi1vdNo5BUFN{7IgZN%V_H cWghsal!EJ=B6Sx4Kt;M$N#l3u!grhe7k16#pa1{> literal 181749 zcmY(rbyQnj&@YS?m*DPFw79!Vad!zti%W425L_Ax1&X^CcPK#%#jVBN-JLJbd+%EB zcmFuaI&1dG{+*dUv*+wY^CKb>0UR70D%`)%Oxh^YYQQkqT^;NKz^+fO)|wu!Zl0W0 zZf+lZot@MY#W4`L0dj96?p-a?y)r@7~|b?oE9jIt=+&KXuW#9>3i^$Y*S8!Vhx*Z%V07Me-Gq#je*Um=X+*^$xt(g!)_GAX$O{TUvAPnei!lj{|FKp{|pInsDv*)>ByS+`s}&Com={K zK}}}dt&<(?;)&kGD*C;PD87dXg`G^`#O-ZLF(c2!*#r8Kx|kic{f8NxDCcJXtU^ONDSGMBC*X$Xoa|kEHqe@DWLj!%O7t`22 zFIlfbExC8J{j`|>>$`_+esqcya!Ld{@&*N3kVD5gRV_neW;GO-O-2GpDnRDZL=@KS zUJkM}#v7dSRiAFeeKxA%|0-cQd_0!oJwBg;jhkvN2pc;dmyFv(6(yvSc~anRi1dA zvE%QHF8FP*Q?n*K0RC-iQ4m^rAO1@?Z*YAbpTs?@XM@s)CD2|5FY3 z;sW0XW@`hFvEd=z+OI5sg>!!$zt~IUT%0`qV*u4=8gbAQC4UTSkY;FojvF~=?MK`H zWWtCxsykyN7>k!9L+)~*bEA^Buv6Q{+$v_WeNdb4CBZ)NAZD@GIEKM1+v4%@uo=?b z#3ZD0UH8XLooWZWJ@jxRE?M4ciT%hwb+_U-C8QK zX>zG$@ga4l(-ww0WZ>IXj;z|$_3BYh=$Typ>~<7yBvhYxHL4!Y#l%%7!oX9qh7gyi z6kL(&bnme#_v;Du$n!SirIU1S?GCxC>$Kv1X~sd|Y3mR!_qXA;E4f_bz(iv=0UP0M zs+pb4?PX=x_|tuPO!w)vynJ!{t%$QDx@U21CR-DHyR!A@@>NtxHQR3h7v4)Afj*4_ znTVKYTk|wE85tjb4Dws<93lKu2}NkeBSzOHW*ZCPc(sIZh&+2ll)CveBOXEQPt13; z#2#B`XI~wC;ujv-!<<37JfG%>M`UAq#d$qs|LQVc)hse$L@sUWj&+cAGg*G@^LP2d z@&0Yed{(@XSX|+%@cTMdL$qg>e=AhJ>dkPT>VaoX*lkH<714YbpIx>nxHl*^HWarK z*xg>M@xYiZ+8A&VMw9hCzf^R)vW^)zTWMVUi49lsBT683DzbIF$u*xv5&^Kfq^^2! zksH%5)bI*3-&SZXT0WDEcP_3S#Ep}<9{B%FAd9dt%yvtXx4b^aCuG>wUTi1s2?pQ zj-n8x0&>9(Lno*2V@zH3c8y(kb~t`HP<#1DK{2&?c zst_kR;W9Kc7joqy&_l{$@aF#ddNgnnDAwK{?NZZon*HOZyPH(4#Ny?I^X~05`eE&r zr^CctqhyPEw|Zb@Y|Q?3NpS1vA7{u*#mn5T#j}v#o0Z=iXZP!pg^S|Z5b@TIq^rTN zL&@NmwjY(h$9&r}{*+Wd+^<;l_)opwUA3>BEz91$6~1N0hZuoFT&kb0W}I%X9wj^5 z9*+#{j&k|CsVqJ$RLAST?QPxf+&}uS{5>3co{;UZaDF?@guHb+ygo}HRa)H7*mDO9 zcf2laJ3egGT3~fMnkB3yoYtgEjt4&s-RGO!+`jK7<4_EF8V$Vt___P^Z0*&f?KS$T zCwT2`?k$kVOz{XPZ1K|ab#Be%^~6KKY}{_4TCn!@^2X!l^ZeWG(J0C-IkhO|N<7B( z#~cDZ0q7W~w9)?$%BoPPED#Q2hv{K22G z&yGVRw`pH0fYU;Z8nUVJ_C!56bKxP;9x}U{NIW{{%7P|!KlVx3PtrJ%xVRPnx;bc` z^JRDe>3Lz_-($|--A}k9>%+&8!@%^;5W!E|6%#3y>q(t{7o8vE6JPH*Prt$B?QDBA zW{;VyC6rX+THPFSe%vS&m_5e@ZP5S1UiIa@vCwI1(xzcZqBT~?wxTcQLCBkh&%(?_ z;PuS5Kjp8u(J3$VGp?pQjYq^p3c1^MtSrsznPA`Q(ZSPP2!Bp3ei*g> z+u6?cZ97SF`YeP@KAbBS>95u@BelHyy>P5-BJin-Kmmbjb@ih2#zP=T&@bdJd3;}o zr>R6Cl_s76{tJW8Z^aa+Txa|%UdC@HKoRwRfsEYT@#w~%H$eY6{}*?!AVL4^Vu_-I z*$Oh7;rA1E@=#=901ltfU?V|cQfs(<96)*`7M&0|r|0E*`2wx?>NAe$V+54n7YeZ zn|qdb6Gk_C4Gq(IZ)D}^g`+r?@CS2F&i|Ut$A=6)FWKl)Y)?=(T?%C{;gu!uV?}u(cJwEo^L*$@tTCn=mF?c4K!MBRPyklB%~P?#au!MXXN zz<=9V_7#uPDj_{}z^%Kbsz8yYky6=6I0c-KjIP((jM&=G=J*>SwPPx!4b@&Ey6{y9 zMpXm2_g}<}t5ywoRM)r!P!dJi;=R3a7!Y1C#N% zqzbtd$huLrGnw#$_?J)!A&7;2B;-}Ph*Jf<$qO81jyKmFXuiH(c6gXY{1Pl2@O?S! zerDIgw5e!@8JAlZl7IKF%3WlMtTf`EWF#b1N=au9OZ)M2fLmxQW}3rl=|<~fz9 zRhQScl$Iwgwj|m1YJ1i{4=hEf_p+H44$0bUE=Bhz!6323T*D*<7KuR|_>gB0jOkgt z5)x6mXV(^^G2JD{66k;}r)8ep`fF*I3Fm3YTR&HqW6VwPQOHf{+1{Dr%gl?4hIzYViXjC!)nKdZX)7HdB5BpZL#xUvoaObj z2EuUVe^E~9N=HIoZ}E#eUucj}-S#Vw6uN;ODd=4*NydH@v(EB!12_@{y3a)fXpR*nGAcp6DVxO4xR*lV zO9&Mo-ytgidT8b8GFbDIp*|F7ccQOlkwd-9`Z{Jio|@bSz+X-5@b2RAi`uQz6M+f+ z1IH_u=~IEr{`}otIWJ#&_)@<~tq^%s%TEfyzq(5~>ADCkQ(!K;NC4UJ7 zg|1Z&FYC>yOz8qkh_jkH=PSXU~5rg zO}s3PNU^o7zh>L*RCw&u_ho7RkNN&4=yOwZ?x?<{Ua){=N|!d~x)^GYaQG&3(@ap2 zrd=lVg>F4#I%RHa*gKg>u_|)eo$m-{0m_^T zvwuSESMznNM@-QGVMvQ;jctss>&GHvQKkIW2kMwEfj8?)e{h@Av`l=^m*~IjS^i7) z<)uGrHJ7R5`-7h%>Wp5Vzw3$*{J0&w*TP7$?yN5LH*}D482QEYbI)f+gFI@D-FD%A z87S(ns`2{H9-Dq@aQ5;tPyzaT25 z52=k(cspoCMpQS=J6ak>Yz9N7wWbAMaOuC34J(-mV`C6{r+FP4I6ZI)o!ra=(bj zbYcD##21&su$enEAaX=$Vf49!s_Fb5H0-=GV<16HxaNw~S&k!+M~(mcUE-x79ibmP zHUA|n5t5bG2J*5Fef>;fC#ExirG0Nnw-Lm#> z%O-gpz6riK`^_W;Gs^tJAJMgmAdpOyyQfxcXg+ZLoF#GE9`=U{Pwa0;Akht2Z1UxQ^y@*9(?q<68a0FQci$70)Q&L@A%# zav+j?alV)_5Wq~cjvdfoC@IH7WeJwL`w;dY7-e_PXndL~d7E5OkKIg_7xI#d z9bkpBKU6ZlTm<%P1l(gxHvjRlk}ALgoJLy$NdFk5THcPra&-_WCxN})d)u2VNaQLpVnoP>pIqP;7yG3<(*HZju)%*akA`h_PctA@_T=>Scy}n zQD|P960oFpZFzE;HeZda7?tsh@4XyTI~w)>0gL0Mo(_gf~mf3*0{Q}$cX zb|Sdp4`Q{9U{_rV^($G@Xp^B0nk~l!C`3{h7pUHQYPs~GcGj!K4bcx~k|*EBjUvU zJaa>d)jtQdQ;ESm3$0g~eZt=UK%$`9Gn*FTwy(bs^w@v#r>ZCFbSax@?sa_`kZ)q?UAX{xp zxr^mpb0{D0Dz4Zca`GVYvJ%r#X16r5XAbW0=*bW~ZSx?i8>2V>V28U@5^BL7n3LYu zquAmD<*fMI>>+B@mMR17d5v4*+H_s1Gaa{XP0ANz`g>u=F;P%RX(N}gl;|SziLOAk zW<*|f!VS>ClWl3BV+;;&pEoF_qS-i>`M@^aG4iL0u=NC_l>b@y ziGSCvT4S-2TUk!50qUdP@z}cb0R~yKX$PPd6d&t=#1VFo1Mp>gp=qa?eiT{{&)=vT zOrU>kWJVg0_HQ0h!Rx7<>#06Cl&B4Xf?Iq*=8tM!vXdsJ7R0B(Czwr6D&ABtF(U^^ z8^uC|hZResa;1K~=@y9!PG%d!-6Fui4T+6Z<0}I*{}xqI#*U@I)nqV8r7tNp1V?JK zI~7Y?$px+UCRK6f`ou<0@Lu)>Ha~kwT={pjboOoy)Zc9RYAvVrjgitBHTes#$gqEN z@dI)_@gNs!aQim5ZHJDpu1={y&L~Z*{}^wCl?qpT6pH~B5EL@LhYI_z#ETTvoUJd~ z>Z43(j+K9{yujtv=IPv>RQ*k{;-WyMwe9m0&ejiAdE_hGJuYu5A5=)$)2oHlNG@ir z_hy0}gI3wdV@Cq0ve-mdg-=}>Qm#OGq~#!D zO$VPy%u#Jz;4?UZPna5xTRcdX{ad#~kc&RK6_)NjcUDtxrC8wNwiA5+wHFpQo7s&2 zzbY~)eVJQ|KxLR<`2Fng10wj~fD~x!U*g?hBn*<)w7U4?v3^4*A?&dW2lN+-A}O&p zzROIL{tKT5L`lX}VL48rHF%{TJRqifz5aOgxgir=-=jSeJT1o(DxSGL64)Q_HM$Bq zQEo}pyD}))t-UW8zMOMX4HRt8F;$=cIAuOwGgy66`+*I@c7w}XUt{~NVd&|#$_?kI zXSq3}<6G?64~Fkx)DZ~V11>M#&*O?aU)MWa1>HBoHGO3$0GEKt;F{ic8+b5qadCQ@ zuWB&+Y}UPn2a%>L!4xQDi^$0NMjPc|)S30fOsDenVJ%rX7J#eEV6Z_yNJ>WcipjCM z7qpE#7erhc0Eq_YiM7#DbBh~oxhSMI`7YdPDeJzNRXwgjYB}ua&I1Hgb}-@kuZyti z45y>UDCAf-P`##brOLrdN@=_(u;(GzU)7J*8v&*d4FB+m#EgxL=I-$g9_W7=mGQlk z)(_wfvYs4>C7YwA%U2&4llr5y4jp|-5dyP9+4os(;mg8Xh6nY2lOlszl$T$R-s)l^ zlo;Z}Yk&lya=vOhrUltXp&2Q|{PnbOCc$?^fk2=X@nJv*^F>2XM1-Un6f##-hI!=wk<=$fwxrPGxt6W#p*Q+1h?xwWl!F z-te2%9c(C4;$w9f$CFmokjCvJm?e*t{m2rZLgtJO!HZES{^Q34c3+JJOS;}fZBMqN z6BjFJAbHCdXqkB;V*vf@;|!Vq-6-r%UZPW%C>TVJH^|a?q@lL}htroD!wlKSb}T6k zBsXSf_dD`}<@&Ejzw?1f9h|<@q&0O}LIu_#@k}1raom(_P_lqZ zr*&$$P*{@PR8l-Y0%km=`>Ra3CdUlVBQanUiRg9u4b0&2H7Qk%BLMGAyOgB$6tTIy zMjIn#K@y1fQJ5HkTU=Halebao4X8y-B%{%0LRpXq;yo0;g5y?i23)*12^$||0DO?b z`RosYLn}pUd!**3cXj*}t(Z5#%_!%+)@S^}n5`25dc+Xm*^c$^k7qCY?o2^ZDDDkl z48Xx~n}rvY^z|CnI|P%mXnx5>RksJqYsU_$Jcsz%mq51unsCcR6p1k8YHw)l+Bk4~Ljx|nyTa<1B0*KIXS_;5>n{-LoenEUE*@}zt`<|Q256Ktx>FHgCG zbCxYd*Bwik#Y3Q{;;5zt&5jl53Mo*QmrqzVXf}b=`dby8KbhYLuPJPpJ|t%3b6KfJ zX01j{6+xj0`&)CEUf*%>Pe%iPqRA=`yqknD{3+k2`Y+Kk-#@AJS~QzyoEvctlS>;o zzDgib2xfyZGHdO6NEf(KM4p{~OjT)2`*sBrf1rN-5y(AWYd{xxv1a~Xqbqu0e6<>H zdgoK8?>xE<4^(KMZ4mwwkBU~;Oj>=8@EIJpyvA}p?hNlHUACNtmEtv_D1ry+vq;VJ zaeck8D+0H?kr)bniBo@(P-H#g#urS2mcq_YaA+5O-D}T33kv>**DwRCnBV4;3n+?8 z3(B~3kga&%p=od@{iH1cmLzBRUMr~n0q1+*aYyp0p5ydC( z$yCC^H}iP2`?yBjQaE~H(bN7T3AQW@T^RK8KF6gEkNz7wacY0naxI}Yc(W6Dt1fnA zb;^;xH^*dpZsD>dk1B~BlFckgAe49pb3m&!b_R0|`baLd!l-6rp!6T4!A=6HYY;C!m%-e~>{dvLU00yJsm zZZ++b;Eqvg#WJPuh13~<7Fj<@Wigu_H8JIG0b3b%&X^z+UQP7__5d!W{+{<%I#ISx z&^%l4asEH`s2FB2x=KUaslj|Zop6}pYySrbC%k1W!+ z4uFI+9=**Pc0S=BC{pq_!N0gjJA@i2ZnEjaGw{5ho5st|eAM-kjK;$KH$W|34Y5fW}-L&Wr3lUsR&^gX@`$|!KJ z3b&u2?&46h^zW0IxW9H?qzRAiGF}F5nmCoHnPKC&lnZBju=&G5(3xshL;;zIjxyF=_UNWhoE0JM|MtO*k+(& zbuP!#76TcvVnr>RsKuPsN~(9F-H)W_>LF@tA7+Xml(fYjq-yT#Hgsa=9y(Fkv88ez zm;5{u!dcx>CCb8Vw59dp7|76~wPDoW#j=jY3;Y+a5fkL!fq&bL8gRX8%oJX3KB8uI>>R)^HkrsfktC68 zO5BpgDB`3+)lx`~IhkmPNUJ{!u%ctu9|2f7(d%FE*6t~Wh<<-HB|3tOQj)652eA1U za^OqXX@5bnz5}L3(rxGF#%^5fPzL#Ecr`2MFGBy=v)L-N$;r@}(^=`X8-fq|Xn=`U zlf6{hTvi&5gaHUheezW9y&gpGfRCEs3~OeupV0)W8Gw_YXkl_PKeN%oNN}RTLQ%4x zlIXwvBw36d&|Fq104#F;9sbIT3*beTT0&iiKZj$Ik)pH0Z%nf`lcHk~!`s0`=#QtJ zkcf$l?nKPq#7kDnKzH8BCQ3#{OOg{-gy*(Nrtjw+rd&t;7AgjHwpYY4(n4*Sic%w? ztNWLS?R|UFEH=yU4OJ=S=#2W}wUi)pACYrK3e(5A#J1jBS45$n*`~0C;loWSGMBLMAP?E^x@Vg4AaCOVt*TE zN2GNj^+@9f4*GsF7!sq}SWRX61c>xR8MXWt257--J0#_{k)rG8rP)YKVqyS9x+^{` zVxzCy{OGk_Ze^53Z&KL}`(5+J&vLP6LKF|Y*-~iAgMhbwl4XVF!OsO8%=@(PON{ws zZI2R7j%8U3oBSQxxxm;@q_$WRnBeJVGegAb*OwKv9_Cn4!-pv#J_ACW+D|O{^LYa= zlHg;`4YB8b|16=T;u%~<&*%!7Z-__3p%iTuq}^yrS4rLq{8o&<;Ifwfa~n)7rx4K^{dgFL-(>6`5h3C(|q~EXQxgqG%OP zF=F-3McCtp5BT`MBt0{EjXGU0Oj$b_w@n@l1I-g3^N5e=T1Ey_&v1OM}<6>jV4RkHWx(w}vr!nbDoV%bAsmr?=9Zt$SO&21&k- zE0&wS{TY;5gTkG%o0U)Pk2vFJWoc!*mFJ6oOxg8&j=ue;Hk=>Thl7S!$Ls_x|;2$LYo2R>aVudSwL$>8zkDtzkbju(JZ3lFs?zwBED+qDE}brP%c7TEa2( zcNxL^!p=Y6(H8j0|B%H8gH(++x~CsyS>h$YXv+ zCU6|!zyTi#LNmDExq*Uva6->Z+D8~U&*6NVt?sEpvt=VmG?2jz?-3Ih&+hU8*hU6z zgTz$m6Z$x7vME=;0W+nrV%{N){`x5h4)lJ3aV@4M7zlO0!S9ROjU_D|L&^*)8$%+2 ztkv#9pO08~sqNK4AFr~nqBD5zw>ERP*WZRb5j&t*$E+?iVkmO0IT6`};0*57tyc=` z&bO_9!Dd!Z-h@lFSOtY&Z(A{JHarKZVcuCwiC2mB7$UY+%NE~L1AI<7_x%etxX-?U z$-RVu@$lyR#nRw!nAre!Q8YXb?}Y@Wuq=Sv`hF<)Gv-@}*i|jt9~j?j)2N9U;9+y& z8{-6N2$&R6^20}7U;TK#y*WC~mp4>|AOxLdT;Dci{t?vF1L$k5kH!lxuE zL>Y=C>G5+}RqA70UgUtp-)9CMR;P2ZZ3`?pofAqMdufpq-~GV{vJ$|-Q*<;Ze+=%Nxv<5NHhZ-Int*+)44<#mZlEJsar8wL+c$y*3 zK)m~{wvZ;bH^+gO!aeDx+3X3~aX7g@87Pyre7j+iIsXhW8fvkrS^7awO0-T;%~g*l zOCrtSpCTB1Uy3w2RGY~Xm@!*{W`2k{SBn6hD07*5*)ysiZ`z=opI!c~=<#xvP!0rv z{5aUEwn}Ro@AKs4^?n^{dB_q#JxY$AjOrviAP^5WQPArd_W^@1Kiv>bvj=lAMLu*>XHH09#?$Dce%S$1gg;=%9bIajX4f za@#D!|J1;w^c*=THt~%bTSTW!1jLEjoc=5=GDw^|yWcQZJeQQ_)~XZkG`3_;nY@Uj zv^Cmt$-Neqzh|5Z8=!I9%)0tgvozm51rULHXLU|P!tHu}{95*mhTBxZq}CxG^ei4d zk}HuZvpOzUA6ANPu<(-t8ts3CoN60AWaol1xF6r&rPAF!>6rgj65j!Q&|Lj1L#8dU z_nx*S{te6Z{lIN-h(^SDtN#e8eFfTVE1uq!wz}OuZs?3G#DYM#qx;d$IicAzFz>j0-x3eAGXMcJvtW=d z;frAUaVT6vYWzx8^*b8bs#NTMLeV!6ZwaXZIp`A)`%|TKd#H4_e=vWa6b-{@a2u~T zQ}_W7orpnDTzG7ap(5+1Knzt7mSQNa6>~1BfAZMK8=RXkwgg=b8oCdqSW?9Xa+^N zHfMVGt3oUmHCq9F=iPh^2v0h&+`S+BA|bmln6X0^WpY+lCi@N4|%F_N?3PnZne3LmV>=KVSsoFa;oa{4|EcHk#Q$ z0nqt0u$GzZy;kUt{h`v0IclU=H2D;;A#6=;C9Cy?SyPKo8!r~7V4|0hFlta!RP?Ee zz1-u^pPiM!Zu8?Wb%(P-%H>Xh{a-M>|NWKno@!Dq>o`kUL@_WRVU)G8z~AnxGn25f z^3+EI#{RTNVg#+YhI}p5Egx^*{r#A0od&B@*c4r4)1tT`Q7Nr_%lZ-1jgfr&b)mJz z0CS7DEG~#u+`F{iIZ8B}>%PXL1;zh8O)<}E)6G?4KbQRw?%WjI z)%JQfaI)|5yin`1x24x2nb@<4^>>*3r(VH@RN@}pdx!E&pUBUIke1n8k9ho;GLF^l2-61{_Thd81s2{7}S6|S+a9MkyQNa5BMU3S`Slq2} zn&UNyd8C&&`Q0OS&Q!xMhz?9h>?y=o{@>X-X*zQdEqV?l{2|w)IacuPqaS5FOXj|L zv;ltCXxJZD8oH!Nkt$AWy2kGKEbf9@UtEHqmAG>S$z^A2`S^-SO=f}>Kd2m?pav;M zJPYf=V7LLJ;|_qeDY9)+|4-zlX_A~}&5(eXAHd}I%*oqBmDw}j*k7E5uLB;0jg=G1 z`dZnRNz~4YdIAkZxAoKd^WH9Z&tqQycQ0GJs2543FE83o0g3@n3fCgkq2y1fd_DR+ z7)&9VyOLO1`7_3=s})^h@#sB6^SS)u2=MFW@vz)EM8@TJvT2=sqfZvsSqG)rm&;Gv zL^U5xgnuG!&nG^CfB*2*2k@@CLFrt5uZL6L)3BgzfF9_H6~GZ-tn~p7>gDyuz8Iu%lz@JM2qX3o1%}(jsFYnaAbRro^B?~ zAW?lQ)RSc%{D=T2YS;!Z>oCwXZSEj8-~XVZn1mh7!;0}%SzT2IpBCd*neEvHGr$f? zcjoEEGNz-|PA}G&=rI%6_6&qJ9cTNQ+4o;BkaF)GQS3Wk)Jy51Sh;&cDp#dZcIdp) zv4sOLxL+b=+0UWx{3#Y>gfuC4uy4Nz7fSa(lalj$jN=0bP3lUo`f(kl(5$e%AwSfM zkZPJ9~0qCnK#!oqusog^J4BnfpZ@+kD!2`!)fGLGV;tBV(p z>ZzN88{0*ZT+?(M``BCIhSp+wv6#e7bt-L}K6t1tIiRDDi=$!gAr}TrIlytA@)-kO1YhI`#dkn4tx>{)2;4i23=HRZ3fO|ejiFFzS;1Zg*M|5I$b<_t zN=gELu;?B}V~U4 z=pf@k|+k;E>{Yc7btXv)_Nb*{^7LhyH0dUd7_jK*^{uDaAzZs4s1kFO* z!(Ckt#l6Y?8kX@EhU0Z_^f}jLtfGdCwY^meKCM@c+T6xN{T*=R>1U4)?!ifSJt}=c zTpaoSqNIZM!mGPyl!~w@0{7cfgo#cju}UkJnd$Q{8QfF?);(dGl1}xf0PMg0@Va>4 zWDGi-n>+JTQliE8bAJRI%f@q%K<#s6a!*Bo#{)@{jpm84BiSaBf0*LtX3bP}#_tZ! z)z>4bC+9w-NB(M{UB?O>2S^>ms*$`aMwXequLoCiI6)J$2JlC`tqpa|P^LHNlF< z=5#r;by+Q2Q_r{3l{eE9bLU7okA4M5Y9sn_&@O!!2*+rYoT`A6LONDmg451-P{%{0 z)0%pTB=NgApLVTYxi$;7g`sduIiz=^Y0qG1B(|6R1r@;_!130n*>;i%N%axI6sE`3 zG8gEFvcBjPI$R5_cs0^RmO*$`YjD{NiS|&6vM)-LhY9;Iq@ARRU1wZgN;P++wKAm~ z(?mGY3u;l;m-RkbNh!U72*6vydtBiuLjNjMfL5E2?b;|sM{7K8EA=O1`e$Vw%L#iOQg7^to`HNO(d=92AGq5H~ znE%J@{63mVA+dSVFVIt=kU;+DC=v}#a2Y;iO8(96Jm;L=e`5zl^`8F66&+y4j-p?N zH*xAj>N>J=vd{IJBxr|O!}Z$J1p&5?4$tsJ=N6#=cl<>2_myE9G!xdDA-~HOhwYKx z(-39h#|NW8IaOYA>LGAY>U)Sec5uxvMOD&e_o)bx*64ZkewWX+{;1nYD31~K%us&GzZ_e`NuK3gi_`i@d| zOgP4K5L_)@+cY`1waR(g>MjJZ?`;auGQRuy82Hd>@`V_eJ7iEH#WW}(gGZxCACqQI z>0G{dxi2#{LIW&%|36)t0{c%KaLv;onjkIwy9;t5^l-2Nz)6Z2i94udo$ApReVaT* zhF~nHirENVW?6gN(YF7(JUoCTllA9!1p?eiFAL#sa7Y({IX)*p2fkt2Y+CH$YL&(# z`?ur!YAN5P>Aa&k&%rtE{bDu5TLhEN$nmcAlkdMKk`??qWy@_FWjjp0dDzHrY;pvX}|>`>Mz?@D*FJ4W+0VA|u+YNDfCSJ`dQ8`k{aiX2^W_d8+@TsrzC? zoKJ@^z~0pSc?Ux+q2n-XF#IlP8$EqPYD3-*`t)xFHQRHMYxo|+3v$OFq$q-n#~IXGOY{u|Fl$#riMijoQiR! zJVAU@SCq7iGN={wMyL}*{<(nif-G+DLrZoZZ@#G~ zN^TLE`2Fc%rcGcGy8Ga)Lj?C)t%~Lh7PPufnA;xx0^7^{o0_2skW4iyYXPuvi@KsWMZABapdm?)id?Bm)1JHQ7IEA-_DG_Y;6u zLBn)cx)8<&T!exhwpPQ=%DlMZGj8TuuYSLf#mFB83RrL^W=vCL@Y=ve>p*1+S@^a8 z249!&S;)!F6w^C>!#?GpF-un34|hIjrx~=Sr^~6s-9T;x5GkVwlIIb{dIIL@?7q>I zBzb|Sl%k~&$x!18BiN|Sf0YU{opPdu2(|^bt_J!ybsgT%^gPboUELKPY=@k^&Fr_| zObqyT-?!9@2$RE-0g@~`Pq-ERkqdHZYN8vDNGkyXqfCKTjK?<=;E1K|U&=>I1vdqv z4Hd6*I626>7zLZ(|A=A8khz@YxhI6iQ$TI@K?Y%58z!=$ow)V`_WMMxMRwa3Uk~Pv z(_a81A_7l%(L}F32UbBCL&ODheqsn4&qzmv;32#`Ia4D@6 zy$D1RrX`khHeM>iIY{bROOSr6DCy6a9_x64G^VryW9!G_KtsFoe>HWvS(UV8>SHBr za0=d`croGROVjTZ;@>GSuy8fE zgm9RnNftpS$<+O8P>MoLWx0Q2ugAByAofWJS&>BAYt=uS!I_ zj3g-Jr2eMV_5DnT#Yc@1zoPVjcu<83RHz)nNRyWuqAX`roXr^iSE2ZFp7*thEsbiG zWb%OdqonQ+&{yrqmMyN0S(d#Nn&v6k50bFz(mlyq66>2~=M)Xu^!^%KLCZD9jisFm zHU9O<94}3+TwnI-85I=zGFQk!naiP~_8D#}5MC9)l9KL-?0?bwU=`@?Bi`-UMaeOe zC4wj}4$+3blo8w^LM}z&Y>GWrQGjE>%y~|Y4WDB)1u{1|4 z{-vjl_>qBO|3|QCW*;9^@k!rU&1FPUGh5N$pSc*Mr4{MZ#kJ88lOhPw{)5gzIb`v< zXiJfsi7%}k8nn+UYC6Koy`h8l|55eUaZ!C=*rpgp>$^LkI%GfFKR`e1Gr#y!UheJ!|%yeP+(yd#z_Z>sdiITmT)c zFrpzl<;AsPh8{W&u$imyI9SHLHJ*415LbpE{l3<_tLev(U+U&!tSYRPf&srXC0M~T zGhUbvfN3qA6FQ-8?!}@4tAqtS%JO0PpNZ*r`}_Wk@m}dBmONVw!z=B zunAz)@ANFFFx=dWU4^d_9>ACF!~XvpHI8aTXkxm#NWv8`>U z#{yWjS?phlG~A2qzwF@k*}{lA5vl)U(3-{ii2u*P37*OHx#{-zo|u*^FhdvA^lu^9 zu$EN`&Fq<*I$3|c_X~@1B?2T9kUWO*lb=-3T!s^A!0$TJ;bW#fu`vyY`oo!(=kP$e zT5=))9f(nr?7bJo&@=`@0dJ56vr#~Vy}WzMHe#N{H)`=FF|MZF=Al8tKqh$Y{< z6(6DTD_J^$O;!X!FT;@$B)Ol87= zMW?Yyb9^}R@Tu;2WP;ZAG~G!c>x;)<0b=iahifbT}eQN`6y?8FK23wjWWhewsH zol*ARKVG0s^$KV7{U!g3f8iALOZj1(CWFKl^@?jjsh8iaO*SNzpUCCPA#wtzS z$sCA}QF^|=( z_3$Igi!j5T)Ba1+Jlr1V&->k>SkhKv1O`I!97X@peRm7m$O6MBvZhkjD(qa4N z#J3rZU__@HN{&WNxjYR=LpbUjeRSE66rs{wL48`IKOWQIfziDW7_-y(d-8{%ZQ=du zKIP+3h1WK@uS!(nDJ6->kv~Lb7~jcCRqnY8 z`c0|>X`EwXze)zyBl(g4(Mv*ndwnwW5?LCqVuP5`m2c(V+t^(agzKB-B6{Kw1lTqq z5)Km>Y9%|Qu8YR>XA_GZQnazzv$>(}hCi#u6ee&}`CJLa*(RE*2A4KKXI>SIIEJGG z=#i;bj_CaJ&3Yotd@1YCEd`9N?c{#r6Utr&M7Z}7@CETv?-uVEDfjz}8ut{=Mdp=K zf9I#D)azM&%C?MBJ*&s(yy~!>c&;)&MMB3X`$7J^Dy9_29XFazw8=>c($9!*7N$aU z>Z0Tv*FG~n=C(H=>t_V06pjJka!L!F&3J3=?U-ws-F46g-zfWWu0-4gy1T&XruLjW z7DnxE=1DyF(>1;n#}J2AV9vvB`T*~bxpkasu|vwGsN?t;`-6^8qSX6n(a>fXRgW)4 zkUHvZl2+fVqDUro4iITCt zh(rqHkL44i82GU(6jqg)B7XEFWA^kbG=1>$5%q~YmGQJ0C*7<~H%|wQfh?K2lLP!* zL5S*cMD;+gBdRmqh1Vr@qxOmEsIW5f+mipMFf$4n_SNx& zoOM4xf6Mz(lYeclU=t^c^I(fxAHfL{Y@)0x3(Y%VBdHACKTXD}bK-Y921Q)hp2oCuHgtQvfKR3PT0CK3KNKuzH! z{<2eO=h*+a6&{NN#dQhOBQB6}7H(=Y@?o6Q@X}QZx(i*|hyR7xzp3sc`aq9&Ptr}O zT2&R?7)7xrLN1IzIQ%RrmRqu6Mict@jN;FB96onfu}}wry7WM3Bwum}UBTB6&MBPv zo?_n zkYKw1G3p-oRp+KI1e26N-trCO?`>QmqzhcHxW}z%D}s(g)N&Y^>3E63e7=u-Noy5V z|2{1M&GUSl4WOI=pw*KlCi&*gGUz!ePX%+gP!uQ^@t=R}z|A2jpZR8)^f$3c1=SDC zXQZY$(huNG@Q4knWzr9AKT8C00EWrW@X!bNZBE2B1u&<>B)dO_GtK$kZBnz$_P)Ml zGD4#1hFmVeY*mvs%L`M>v0o%hk~}5kr+4Y{hIuppN`Ys#crnpF)U7j-lIV}ya1Y0) zFpkF)y+C;W3jFHJL!wWGrTfGVWicUF_N5=yB-^J7ZWBu_L-~kceZS)i5}JNDD4?UZ z;rf~eC=G(q4r&yGgrS6vOmlvc7TRMQ-X_2cFNbX=fiOvr-j-J0|E8zGg_ZCv%asSN z^KX&?*U#VPS2BFl)!?)j@+}LYr$)Dl69#cyC4Lg+Wzn7--l1#do|)gd>l*f+WRyR8 zGp~5rum)Lf5NmEOioM);)zwIisHcYMRemU9dBlh1G#SlE^u9<&UJ4MlK7CesMpQu~ zQiFT$cN9yVjicjtVt=?;t&U!wVRsv@peNy^Vz+vmvI;+!2Gp1>oeE4rWLrAB& zx=EgyC=~V?fMQC~uK7j^z<&1Uzx|AF9v}1&WzM@sb#Bc?7RTR3iUipy#{-LbK%V~J zm>AE-YZ(ubC%0mkZvz{3Dq`aAk0ARD_;i@qk|p+IBxl+S{UY;VVD>l_9=mY^kWZ-* zt;A;&b>xGPF$N+O9~6Sn@;#y<%l4$L#gPzlT0gRy5LMANj0dZ~$!s#KK~@@IA0hMV z7(TJ9bv&7{RndizrfN+MpkE08)0^%@3vX*QC7PhPjU}%HI+al^%BbxNww&SdPBhK7 zhKR2Lv7K{V7sU17J^7bi#(6Ed?|*;V{d7qEuZSo(sHCq>;3~3ljVMxk5uZewe^c-- zX5W-w06ttd?L8YTQ~cw@2L18+nSX1ZpvzzHd2g2A=cQRxw5l?}<7H~H*<*`%fJ@(W zBqN6rR!;gQ@RoaXCKcALn57M{{WT^nOo;8yW4cPAA$U8yC>@a`L)^wCPbc~zFtHpH z;%aR`iQnYNlO%hVd*h-fN=HI|SwzDa9&pwXj zQv!*2_8VIVLB;dVxF_^9eu35Zpez!U_BJrgu|2@{q2DNBdJMC-nN9S&3x!}ac(<(B z207SZBak$FKgmU8u3`LwG#fTU$iYH*C#7twDy5x(Gp|TS!8H;Kb)xdbe?c;s|5CL1l+otEnY(o}5|R|H{)j06gLidn((n1ReC8|5=545=i0~Xnc<h_pvWx#9;7< z=BZ;p0n^~HhP7ILktcERs8QTIab3vHycYdbWPLM#;qHHO z?!_N}v$3zD-;S^3^ho{OfrY9kHE5VIx`iV$8Um%>+o)p266JK* zy2Hi6$-6j`D}Rh^nljFj&w6acsmRTTj(g(9S@HyVZ%+RFD6XiPCD_6@lN1R@6QBW? z>DyD4Lt;>3e9zcQoPoXtWq0$*XLu%o&<%~cNGpqhh+1^8)VAy~a(#+)HKGqG@plYh z(lw|*5R5M}w;q3>Cp-iwaqP7+{mE=H-v-^5()H{|gIwO_`p^LM@U?8391R}3x+yw6 zxSeI4K~Z>`=T-nfZHFT2Gmfmtvt@-fjUUN^uW{Z4oQizR=r|QO{t}f?T_o4k2p#uv zEM%IJbq589y#hSfZb@UjW3&`Wm2JF2e~SoNoO1Y+YD_ZV-N^vn9lU`2F7%L`F$WIk z_Wsy|179S@-zjhu$y|mjY_S21bejNey@MAT!a3`6REKN-{$2dV=S;yD9J<|*RuxtahABYGqIO`ANhmqX{NfsUUH}5wtVEM?utE>xoQCY(CdjP6CsNa zKSP5!tr=`5G*xud$=ZT|MR;zO*wf5*5h#ZLD^xp(W#Zi1{~jVS`k5vtHO7hc(j^KV zv@IaO%C`Q^VN;!rbo`tO#aCAPARXM$X9~s#=oaWYw!CK-pX7n}i4SAJ2Zw6gTQO83 zZvnsg81S2809X5g6@c5DrSx_?tZkm`?Yr8@d@+B}adNGHtJEXd$JD)V2R0Z7Eb5#!W?eU+MQmBiKTdR09bJ zs3ypiw+z^-YT~riK4vz(r6;j-ptm)SLMp@z(fa-XJN%$e*d0ulFK|b1(#M%wvSCMl zLZmro1S!(U(vgllZL)FbHTt*(8@BY}pDjY_s$cf+5I`RB2DWF@t79F=`US-Do{7f{ z^&(JJLCkFTVW8>z*005=8wU(JPRk1WB&K}{Q-Pg8`@O8ne}9ftAmyMz9!)<^iT-~- zb@JH@!iVRK#4t*~nf}pA^YVfCV(0R6Q#l-u9ZHOva8NYVjf<*hmN`gW_)Ec^4$nz# zcw=T$FFgs51HE!D6cjO053rj|6eD3USD#(cU>B=i#PwtglL7nviM!__Z=qswP%$V# z(;v~ArG-AEd&-LxICoef?po9HeKiy*dgLi}T1(iw>U_3T#T(XM_et>c+dl~_mYTz~ zO2umIh3_f_L4*5Fw#K{^EZh_wq|QH3SF(rKov7>Y zUqGNauBEa%OF!&|b@V|h&bP>bX|t|ZWgjPy3s1Ia$y(O-31InG(dvGZSY*hw*)l0OB{d#LlKWQ#JR?Dd z87GTz@R6)UMog#dGuWe>OeXqNbSK5Y?|sN9CZ;Q(6dDS_CEQfuZ@pOv5y3fqy$k71 zo`EUcIXKbpiSc(4*b%6Ei?=W#LZhf9^;I8MuD}94@Jv8hfiecC}J&+~Z>aC?b&uRcWd*~=AZp?jZc<~|X{Lit>5*_=6PgZ@UZdrM{` zgQm^KNevQ+bG7BR@WeQ(zYTT#9A?s~PVp3$pI%bU$895<8>xU2P~hp`0G7u*_Ex^l z&G8Kcx|lXvPpddLFZ`Ix{9)l{vDKAmms6dnqTYProbuh>!<~;s-Bvf^1-oUSu`;S3 zlxVodhr%ELSOF$bMW@AL#AR>pTNZ#6PdDUqv1Y5*zR| zPmB5uB19D3!^f(VaJePw9W#+~i>qytkz$g_99aAD{<|!gnBu*t`AKp#q93(e?Z!D8 zM1$g6glF0kNc(GbAQh(jUQ!9>`iI9@H5NVwutCj=mn58&Z&O9NVQRcgP8*XArlX?H|?=*q}RAZ*h=v=ie@3ZX_hz9VrHY|*TSuBgYFN{u4n<>H&x zAk48Fo|wdI74h;{o{Y8Is?;RYHNtYN00{U>Wqbk#{zA-g1rSL9D(T|-UP7d(+}2$& zr4W_zOeMC$bPZV&8ro4_a%i%4=HL6ke;gOqMTnI6N=#X5lp_}@d82=`S+cc^kC|6J z@R|ZG-3z;XVYOT68s2s@q_6*VH+456#Oris&0D#{=CdR0~Z9@{c#E4;Ekmv^Z}tKB>q01qk(xJtFOEn+f?LcJbxB_;89wc~*% zHA9f(Qc|~ShMCQTbBgECq(+=#XX2J&xN5pqs7PO{uNP!y;9z4MH&Xjo#28>bwqu|Ao`^M9qrPggLv>)1=d0GZs|+R8I3h zg9#JOszso8Z-u~BhWj@WRrH_Sr=)RD3+&30;*jSW{h3zmHukZ;Gy?Z#(I*i1kKW?**p;Iu~zF|?NG#N{c&V856la&S#5T?=NvV{Rz7qCW>Z&a5D& zFNPh_*q5g6BUy^9G!)1oB#zzXP*mHzBEuYefyHiRhY#fno}g!IXpHe^(WX=^AH7ou z5rbf@ybxl=j$%X72jvtV%BnEzG;oUh#uG*|$R zw?S;gfWeq3-!lV_ahV#a07};;T3hvG1(*RN=lwbEEloD(B#-Ulvmu$69FI-d>_uj$ zKdDid8Af^2-a`x;R11#a$osM~{GjbsX8n5{NO2YMS(v5=J~oGP`S~ zq}ULVM9Z4UPU(BBa_*yVLEMc?X4jRC9qk}Sy+rai#i;DPH}K%eeULh4MUH2qlx2d3 zZ^te?6vbxoZ*j2sir1)b!~|l$@gO5j)Y7R2lr|7CNZFsrn??fRzE)w;=Dv ztr2q<8g1?oV6yHSF4AT&gY|o!l<_bn6uo;=wx`90z4?X|qCetOMoM!+f6+trd-Te9 zk`ir?zZ!F28ExtU84gv*W8%q@z#~(r64v?{UB{V*dzJ0O1=I#S9MBu4c*SEUJx$f4 zA<`9d4>Z}vgCyUi{-nkT0r@1M08eh3?w`hkP+1-*OE!4kR85za4Dy#Ojw!$VH|KJ4 zcwp2$sPG%_c|wFD1uTP=NX|^tSTB$H8V7o##i?vzZxxqTdl=OZL;Pz-ZQm5vUZA_T zqBAGgb5n4BSFA68&mlE@w1ph|M_Po z_puVk{iLwGXC?)ObU@sT^-vnW$s2`FlOhOJ2xsvih4O4oer@-mSq3UIZc$({62f>{D4BoT`@2rhOO&6U=EaX>vnYNn6hZ^V1E3o!F)Yn{dd{f z=>*3Q#VlQP7l2ZiJVo;vPc*Bz{dLY3+*nBJ&bMta{x|pPGnt z_#rTh_QE>g5Zt258T+f>vw>i%Pm4mtM*1hp{roEI63gbiah^j19sjGppG1a~5H~1< zfc3?Qt=BdS0R&HR)my_l=w?JIy%YzJOXM-iNdgr+4)12L4+bg2ihwEnN_T|*8!~8l zpu)ZGY+_thcn$ahTO7Z}|9)Iyc_f4lAfxFmzk0*~I_*>iB9bw0#nF6V^18(wzLMR@ zMKP0ciYd~`cfPyX?-hWG`!LK}hceObv#%h0#~OMzHfGx!Y>u!?6kC>X}Bur_k8?;cAQOCwHppsb1(F_|D!9Us0pZ#1!+kMKTq;9X9& z5Bvmz77-i~Ga6aW6LDVUoY-?+Rr@PlxL7SXTu+L<&GXb6Xy&JJaBZBlkX&p4eL7Qbm z0peIAVW&jVD(=%Hf{YL@HO-kifn%dR@YE~fTw6XKq}cc_gV)B1wn<8rp^&7JF69)8 zI9G$OH%3gV(q%mNt3aPzfr%2k>2Zxd_gYAQyO6rv*bcArS<<<9=&#civiS$Qq>pMe zTplG2Fta~0(jauu;PwzYCU!j9ezn&$p;DtxBUk4jxJvvs(_4gILfrq>h(dpG!ghEC zk33ezB>uh1AQ1Jb@J#~#w8W{%f~V83!0q2FBp+jCrc+k3M&WAgK(dioObK68FeA!= zgM1sd950AMWYlp#b{RB{bbLhx4Qzw&@yqIefr%D%KDz z(swXsC`HOmr4;#GDNAzd=Av-VzE@yRDjO%ppCeZufS0mBy zwpgdB6kEzNaPnw|1Ql4~t7qd)*z-W2wwPlD0A++zel#Fnpm_T0q@ANRB_vjk5%Hks zqVyznBqCLIBPwP8PzbwNYu%aOpbt%a&RZX=ckD?T>*<>Jo(lYFp}C%wozn2re*{tC zh1*kQ=bQ>n%Z0RT6Ip6zrxA6p{uH%#={->ot=bOg=!-{r>mL<+u#v5=nOV7j(5fYEOf%rbW$=1%*{8G}@qW^Lher}$ zS?(ry_ilnGC{IEUY;3Eg<}I>eD4p+kLhY}sxftLac^CBvjAPAX*wPI-TvpizMHpdkbIGkg}@U1^=0@%=k z_c2T&>E5w!v-OS0a-&$f1kvdlQMpwDvCS~o*?_)zae2_|ibNKHTClP@P`i5f3n#;x zivgyG`Nw0C2iC%4t5x`K6sLY6wcFXU*Pv7Vh&+~w&TtG3_{fvo>Q!z&f-Kl~4-2}ZgIWb+!V|vUEq!0Rm@DFRm>mtZD=mCKh zwV}$rC6kdqrpOO80B?{0IP@J0-j;Nk1d7Jr82xDjZ7zl#-u&MJjwk;ouj^w2vsd&j z&utV>Pv>UM8onQ(=L)sZe%t&qEv-7K>oQ60;iDQwg{P5uhlHD5L>LOb z6i>!Z6BB{8XP3guYa5CHRUyEIbrOi5MmenG+yg~Os2GJ0&o)u#oe!G5q zjU76eTn)Xv81lyGyL0%)CQl{Xey9cOz47M8Lr}`U$u=4X&d?jb(4e-i)zpvqkY5dd zP4_ltRxTC-kN;(CgAf~k`@DWX(M}dHRn-h2I_}^r3oZmzj*&iF~)l6@GAJ9 zj$yru3nf=hGt&;votnE4v1v_&k?wamM0gHLXBy&6Nsn&~c0dwk6dsE9=u>*uM?lA+{^Af z;lY$sp1`S_VH;>e2o+BErT`%>X5%dIjTwpdpNW&SRnYb1-vi|)$<^HxE1ClzPP#I^ zF6ZOA%CJ4-hH_eKZ;nGT#~|{S4dh^-e1R{T?Kj^p5TJvg2?H`fW~st82X_@0CbiXe zO&eH)AjYq#u3x_+MuyMHsqx=|oHs=L0>QH6(HGC3>!}!wWz*Asa!Aqggz3gjtm5&GORBFy`=zyk>eV`Jd?&%A$-1CV#uvN#yC_qL`l z6CQ%j-;ULXIsw8(-uncI!Fu1%PORVj)jE1`oEL$$czi?f%u%e}bhdgD4=?Pl*8-<$kp(RHjMGE740J_i9o1;&H789W=ZX6at(~=0vXd7M4HXzdd zs;`vldtzV&sxD`KcTcUQ0;d zC<1ac@P$jnMFtSz@f$pK?;*in?Ry8AFO&GN{JtoypqhXKR22fMo@~is#;?!ak>aVP zf7gnK^m;hUMUq~HpCyrU7e;T6lVFm9$dVZ*75$HB=)&xu9%s|gv1NND*YcT86aab9 zA>5A1Ent+Q3&Xk{XG_ts<#{#K@>xv0SJBNMB7QXKz+>kw2A&^Ov2-{5=acR!lG{h? zdk7Hz#W7bB3`D=5Wq|q}N(6iEjC^ClY3E2t07+MIjG_-i{MIuBsMn$7jG2uV65isS zLWH<*i_43UUT0%|ERGE%qaMQNTqhv29q}$ALMRrqXS|t|wbrE44`jn1z~>XmQboTv zAhcJP8M_npmMqu&tomIhBOAVbBpEgSy;&H#(rn@ycz^-Vh6EQ{g^ndLu=@~Or~>G} zfXNJCb>E9KZ@=Ja&b0a;eH(3_4s5CdTRv=6<2J~Ot;Wnt7JO_7ndb;zLxU=;rIm0= z-0_1VIB&GM>EaKnXXd{WmA!bjaLtxg$oMG9VgC zMGOTgH4E8L0)%yt*zGLxv1Cc2C|4YoQ8jJ2CgVL1c%6?peUBPRE?ts}V~@k?sOCNM z&L#t1;Ev@TGR)O`3h8tUdI{>re$h}lVya}4EFW$l4bFy9qynQEo+GP8G2Nj510(^o zK8ast*XDLlsTiV=$)cDa#JpfAFyb#G*tn{)%G~N{44^ibDQZ%9FKyJ$D)-@VK9B%{ z(`PL_g}n=sa-6kl;(j%@2yBUM093!vOBP!$N+wbSq`0E!g4Cr3OxWf;v2XybzXYjc zdC2;C%z^kfElP;KlTR4$cN~S9T3e<_H9g6YeT`r>?`42i;FSWBe1!T{6sLL!kcxbp zYe+WHT7>~BKN(PJl6g@$JHwAoWFMV48-?0v^py!+UX~giyXnVza?&^5EzUcN(|BvAAb|#zETRJC(@rlW*%uTnO?eIZn0(rH&f}iaaMQlgw z!SCl7#kybr5W)qx!L@?OlK5cYck#rfHxI13X=e_P?5#r-Yz2k9_}M9FS4E0)FD}Wc zel>m5%JinAH?F`^$<2Iy+EtKVB~W2Vksg`;3I%kGIJ{VGsO|gxY2@;goF9&>&Az6e z5WiM^m}Liphua&w-DX~LElu}sg^Rs3Mu~)v4g_|Dnb-9;x*-N+2jLHqdJVBGik&^**aVXdw!Sgxn1sEbu!WT>Gx)yyyY zT%HU`Y;n*VYTI`iNu<&Eu)V9O-pGE6-HBYZYFlNPMgC`#)~+bE{Ll0hkD^@Zjfj3Y z_I+tKOZ85~AhpfeUi=4Patv0-=6hMa$GUC2jHr#MSWnmMCZbWgh4pjq!}^o8opr~S z3#k_i_BI>61>-}xV%3m#wj7|yghKEJA!ZB-eqM7bdN(r~ve`$@009t0{Zq+z7VY}&^)ZLFPo%yTUkd^R6hWu3pQ92eQb=$`3l0fmO~W1%KP zroTew1fEw^Dfi@3f2>2 zSM^rW5pBbQpz4I88nStX^PM&fJ8oRB+!bx=6Hijh2~2ld8sl}+Q+SsYv=?m~DbsQD z@!uj#6U{!v@b6C^3Y$_`eGGult@J&~B7t+_5x`pQiOXsB*^(})x^?m_R(+(jG-nT( zE5k*qdv(tQ;6OpTX5FeP%c)CnuHq2yPld9`1B1tjTrg-96tX0`F-;PfHgx@Fg=CH1i`kcEyk+AdoLm>L%O? zChbOCk$uRPcB#{)Q!==FmQu5>F#0ZJIQ06()R_Fns2^rto?50y{75T47br%>JDxu2 zSKECDb)K}rHo^04W5;~Cm!0ILO9dk71tPVKqAa%hx$L<}PWY{BIIu#qz-vU;U_fNE z9NTG}+n=+O%{y1;`8EY!VlpI6_WXkpbA?y#j^6VW!+P^Fizf7dJkm zi}6R#@IIiXWY}tsefK6oY0Tg4Tbh=@k}51! zxSi7X0!JIey?|`>tI-U0NE+GF6qov*?YjrXZ?g9i7Lu-qw%4~at?h1ys&B1k`M$0H z@`YALn9I#m`odsk#*G)6Zso>@8b*URFW$9VCBLX+RqhZJpx%AqLjs~Ismr^wIhzlP zNKSZ3Pr_%lV~;Zqf9Z_t|3x8`-%QYHZxxvk=_qG)N6Z1oF|Kg-$Aw_S54x`+({;Z% zAyQ8+;6Fou;tJE%KdbO!b1ixz8>g|b^VfHwz}`HZ=>rC+9?HthY*I&m+7^_Xa+?`C z1Jzh|DpxsvP6@b3vpJK6AcNwS)+mKCn%O%8*;o=Q>{x$-`COC%q&f(>=)jU5pQA|+ zwQ-sZ|8ylsk$&L(puvM6Lhchk3;9q<>8p26#e@oqUqocS#fEfIdD@HkdVN$TDik4? z#4D1Z0dRBybXU1)`)fOm4%!rzWX3JAQIv(DhC!-0;=(f~Pi`5b&`xD%II@7%W=T-t zN_|P6{!6auA9Y4%$h3&$i0^Kt0=rYXVvRd&JNxpXv&>ZC zF87v1eSdzndZXKHo1(}4g?gn{x@@p9`#$3bRanX6#&Mu-OZRM4dDZc&ZhnI{jDP3J z+Zt6UCtk)zqAO52hHU-}So|7lVI;qwbhuNRU}1Aj+Km+&y7{`qVmwrMjI*k<3m=W_ za<92Ld-8ugZqoR>`sBg5%b32puO-qtA1DCJ{5hFC!TCEpg5kQT=2M9F51SNa=*l*r z{Cy0W*&@Ld`aA>}qpEZRfvGz>6!K;jDJ7TwPX$OaT%MVL`l*2OCQ=F;+ zePw<|F_r^J%iv`wYXD4WXNzTpcu0Ys=X8EbxdlPYLmw z%j0VbLjn&JcA^5l#hwh$O#%frN~^|Oj0dL&rzvD*p8I@sD=}n&#x@pl*5^rpco3L2 z@9w{Yixg;?E?}FEg2FM`!!%S&%S`>a4we`j2j|du7jl47e`rS>ULFM zqF_4*;b#uA(5M3~;HX0xMN^K}JqHI#6^AlCxcz;T-0^18otxC)7moGwWts3nJY9G0a?T;G^@X9W#i^z z0g%IUeoPJ&qFF+P$84y-XWFnU})l zyt$+iqpwv_TVI|zOLTA#sF=*ecuFP1>k9^*eF5619mP=UV6MX|#lby0lP~yJuE~8o zF#0QNY!ZDh2};&BHca6YP;kpai7swP$Az~J5+{x?D&uA0eJEBFSsd5Rzv1eD$s#HSPsXrrJ6qp1l%TA+Z_PI)WbTH_d*HyK z+GwUR9tinYlb!w&PG~4YnYI31i%@M@d}GH6lO06*gU|@ab{|Xapg|Lv76=#d>O@Oh3)|QgjoXJ5MxKR0CsjN!rvw02^nEp zroUg)i4u!@MSTACY4T06?MK^Xp$GN1oBjV^-JB++!03Gb4xoM<{A(u|L#;IZL2LVW z(wAY>7j;Lof(M>;Nw&%)(Qm$Z%`Y0-Slm;$Mqfu0ns93OHVZzV-~^~#)XZtf3bP@7 zzPC80xHE!+6qF|V)L6RqS11vN+H~6VQBC4>FkUSQsY8tg{pJxvLfhYIUoQzu!TsGc zzh76LY)99RChNi*C;5XPRF^k3+o-!pOYdBe)xE$V_^T0O87+a_g=r^Jecn(Op@p%R zenPQy;f#O$lDso$UF`DlS9Br$JD*~t%6Ss$xoKaln7kwWiQ69C(= zaUtzv88o6(%J1Hf|F^kK*L_#>n62(7e@D7=>TbQ2u9PDrYy>qIUW~o`+iSW>y+1Cx zHzA4*aA_u2*Bf{ES?IN)cc>-~W|kvME7vGa zwEyQZ|I~3$uj-%zHa-8)}m^FRchw;S8zn)};IJaupPk8A zOZ|Ixhy1)}q4RGf&iDeN0o8)fEOFc<%a>C?1wK2maMV*(VlUE+cg*w>&Ln%KK2<9H zr64{+HImJzAsNv!`wEp>mV`+R#svRFrA<2!DRo#^?e*q{Iy!4den9=Ck6|;eV{E^}w_Y_v6)A&n6 zw^*tDblQbuSPIUS`9w83^@+w`B(PKT|i0(qihhG<4`Qn z0r`}wM5z;+*^RpOo(~RE`t-@w2B1P4dhs2fvnZ`5^wu;lO}{_L_Z)g)ZUr=7c%b_g zsg!sdEP3t~s$f+==`GNZt*}~tV8=fNIq~D^B#KVhW+8Tel#3_E5(iG8RDZj_8nJBK z1PS?H527Z+h|rW`R~OA&uOC@|l zu{U@mb*1H@2O?XiT7iE<+&)j~yk{i5>cs9K7r#6ce|a6I$ov5HZ|&mRP1!P>SJ`DN z#5a`Z3jJgo*+9U#jGeS3Mg55HWeT>A$1VB#N_1TLIxDf5z0))gz!SbgrmXQyMaB-F z9l0yJUvF(YFJE*5p|)#}ZN;ZQv(7s&ub+1_x&gg$ir%NL11GQh2|rz1?-8rS?DRO% z=H};35H`0TQqk1U9z1`v_Mq`L;FXm8>o!1Uz!bE*j!Q;BxR-4^2& z;y%=6`gi}^OSRKile9Oc*NXr*p$kk(XVlBQ;R@(GB4e|GwS>gLDoa@=7_vq+Fx z_Cf;t(T`_`4+82`w-e_R2`=+xJ3TBwy)Cf*q}b1IB<`|%Q*asP(%Hh))yfmg7oEUnk2V4{0jq!Tz`y`}k~6 zwz}&~_zOI6H6d*R}{WJ(j15CFaeN_yv}T6Gf}3f9pFiWAKlq zoFBkfwf#H<<#wI{x&v4>K`Y1PSRMPgeJug8Lo$fZy`}2c3Rqfa1G)pY0Z$GrWx&KY zK%%c2JeF*Hc^sihWMAle$Za^Q+7U8ar#=A!Y{}qPNg9{H8oxjrZu5u4jJ|FKMBcxn zoyiEkaet1Ak7$;{ar%=u9cZ%nKU7^Y{YM_fk9{fWWa=#?hZsD=Jdl@C=4yp*ZbF?x z%oi>0dB+AUWo?d{?xPs`>FrDH1zRS0MKWrZKaDn)A03%<;`O?4m^4NLsx5y4*VClF zbG0&UW>vdu!=d%atKQ9 zEVeaB^Jek>`!qfFlp5{FK=wCI-nG=uEKdJ!OI+vhoCsyLF}Fu0{d^gwDf^3_lT;q= zZB$nyA>slTXW<@5>Kh)BkCZYHU@TPOzK!K^%J=R8WL(qYEF85+eS;#rkah+FOL?Os z(p0J8rj~_3%Le+?XQ(`mg88ArIq;2Y!`@>&sWi{pbO{O|8kB6kW5iML^?c9?8mHE< zr;eAO<~f?>1O3m0Rs$@Xg9DI%z#wt{h%{BSS0#OaoOtbX1GCr{VJ~F+)0k99?4h%P zZA99tNS(w&AwW$w$1AG%{+Os4(UjIV0;!etsQVD?S6&w|5ZgK;V+qBRrtW4z8dZ|b zy?+YEAboO1EbpQk2KYR5G&Wu@x}E>F3F_saU9BfMKCuA+wP!Zg6FhA?27F7W%y;1* z?F8nOiAzk-!gsyrlo6+RKQj;*WrADd4^|Nu?!J~!%p-~p{^YVBBxLkdXB}^*NnlCk zj)I3FOUN!oHuitT>zg9)&nJZ#E)Y{QfQE4=?^K9(6osmJt*QBx4}m=5bxH2{R{%o@ zJl_JeO3BBEf9vhTpO`Fldw%=^a2q>Z8CxD#jLAU|bYs(@K>6xi|1$qbXsxLV z!8RRgVU#%$5*kw<%Q_WPVHri5>+GUkCx4_=C!cI(o`0#1xbQt$p^bUL6@a0U3KY3A zWKAe(?=WH#3ro=$m(v_l2!qQ#oLeD{IM#&mx&Zo4<9WBBzmvC*BMv=`3=A(%vk36m zo}Il4vYaX;1)6bK{oDyxYI_#!r;^D}5>Qet$bE;VpLKeS|5qrWnB7J2>G_t>W0CvM zj2>aRkI^s4(ojuepR35E)(7!m=g6Ah1B8!B1eX(wyt_ffx^T6hgvajB=5y(6RF*I#abPf9DZvpd$$eN;ly*FjQlISqU8vvU^ zPHm5mmv6bS$NM2E?{B&5*|(1WEo1$(_B!Wi8Z1HFMnwbIVF*~%*Ye2YphqQ@Iu9sMhJ~Rc-t+8*U360UU|q;+$cEm}r4bi4#J!|fO=YCJdh!16 zi{{&WszgF`1U+&x0S<#1OgsbRw1OZ$6J32Q)tr#7q&_V`g)Erpzq z@^CuQFSj#*vP>MRgD23fRMikJrHm<{dT3Z{(#G524ZO_JfCSJ_$O{9IVKrq7^dVQ) z_qhgmqrv~KzUK*qGn%NI;MD(AeSdfV1|Kr2y-^#0G1H!%(@r>w^T#NMMYX$jzgbS& zVjF;@hSMjOh0!ZtM1fW*gg3|^XGPo0+{=}fm6Tfpye-3zl>I!)Y}iF~N;5mksPRSg z&**#cY?_Lv_PqT6*v#{m_v!m}_UZprH$+orKW4y{v9+Ay5xISzGI+ZuMc%?eL2j&ITrg{3a^8>Q zgXmt}j(1!6aA+1(ott|uI&i-f1G_BMDe679;@?c%*&mZaA+y~6AEw?qE~@YOAD3rA7X=pSSn2K*SwKKU7U>csWx-|1g_V$!kPsxKL)cvqL`nsu7Enr%l>FY;`}6zb z_wSj!5GQ!oNAc z#VmMXP@LuAZMl9_t+4XgZ`I$N(nq3P!9zeR;F(&f?9j&Pium1qTcwfP0WCHAA*`g% z)?c%kC^*v|-5JcD5GAv#%hD7t&x=g&y&OCp^X~V#30F_%-ON`15E+u|`D?`S!sceX zbz}#GeWIIA^%6&_U{MTj7Nj~XYM>;xqN~02Nf5wq;F1Xk8WVcSS=TG&&)&-H7 zDLPeqIBC#3t4fTL{^rGf*|?8ZY9&uiH#Im!XlE5|Yn(;ePu&z(E?Pc1Z~GknDL5}x z?@!=9gZ)(gEfvmPp4jI3(SRsNQ7Fr7SlNk>k!>q0sSxid)1^y7O}8IzsLM?4l@`?Y zlwW>^u50{ZTd$TUx9*{t5nTZFATez$7Ua$aZ)`M)*sYqvO_e2czpLVN3Bt9JLOg1< zg_UN!=~c58L9dzdny-g*Zg*NS>`!#ZTs?Xqjn3osLIh*Up!e#kevje~%gk7ekq}y^ zi*?jLD)>-nl9OlWs(67(39U7?kQHA-+vC1^Sx^nHS6XOz?F#q)x~UB{x|Z4Cz1H8S zDKA`Iz>b0t-=#S;)#FMs)QQLotDFa45pN5ZsZ*<{=@a$w=Y&46zpi$6Rn zDekmPD3h5`n{o351A~72Cy=cL6;EKQLaJ&-9;3pj;WNCI8)CbfPp6XQ^@6j(_Y^#iG`3D zZE_()4|+;m%1+u12(Ez?;;yv1VMOcI$Bwl}HDWEk^JwKfj1ca%0JCY1v9+8+vGWg7?{1~2I z($h#CoMtCZp@Zbn;g3d@kivhQ%76WPQ_{-_0)A`<9e12!xc(X@IRMXe>hCLp$X+0V zzOK}XqB$f>y`+5fG&I4g8e{CRA*VFCGUA&~S>T(ZtM~NT_B(pPw5(W=HdV~}7c($n zf?f(676VdEG1n$$K}|*zvWQ5~OV8y9?ew>?`cYMnZ^hmfPbLjHegMfyB*ak=h~2d> zzKh&*2|HPav715vs9Pi7euMEo$H=Yl=7IuNvSrKNKw?=FhGw?~eU#ARfM&R_O6Df3 zUu8Y<;5Uc*>i`eT!9-&*3d-rt`TSSgmM^pUpjGp>L~~$9{l_DN?#a3EG-qc%~*Le5UQ*`X;U9wxr~UXgR_K_{lbC1gA#^@!jU~x=q0n$P(>g zVhR0YVU0vA!dzZp6t2>ne~^qoDB81Wqs7;3tdlv}K;fI|7A<@n5O)=*v@Ewf$cxW$ z-7p*emqNXAH!Nf|=cJ_mZ~G;Ix&@E8eCNEHq#Pr%r>gvt7@J-Y|;lA%Tj8~QrkO1 znuKw>y?>3-c8mVpA&b;@?y=?e+*$LKs=TWwOJS!4J!%)WsksHi9b4Jg8gC8O)o-t> z*EeJ=X)$cQh&0bMib76K@vhpgQgsfQ3uqS@Q29NYrxan~6$O3ct)$W#l6kaU49ykH z%r$72C$o_iV6yK+B-kZpVaxygQl?Dk=)5>z`LsH4?%Z`bJ~r7?e_h;q5b(q#?5Ekm z@%}E3FxIdSwi%HvPj`9yhA;MZj9oGi+zzn9pSarf? z_U~o;0!G-qyo|MS5OO}Ff-X_c8vePC*+^u0>r@Gjq?@6{*!{IL#D;t%hU@!fxx6PV2|ak4icHD@0rENeG;BKDJ?=v5E} zMc$?4Pg%@plpJB&ApR)iA@j=Hd;1g5M00REbO+wDIB3f6G59Yrfs9QHIY(t5M+^J; zbH1*qg0$YhrQ_$u?~l)qjt4$pUe@uSl%5=Y9zS=TOK&}DE%7-WVH7#fG^^u2QAbI+ zsHi;lj}E^W(dIG8w7e3ICKnTM@y3DF;ig~PZu6aZCk#~L=BFRFL1R84O3V|9(%^z( z-d1Dlhu%hGCm9hllr*f!2$%P=PQ^V2Lkyysu~2>T2Rhn=L64Zf=BTEVwQUG`w#mg< z$tKEyMDG|BYYb8DgA6OEu=WeW(LXXejAQ=FCTgQi?@Wxi-5%VKMH}&Y9ia!)X1&BI zvI~0)5lZZ9Miw7wXg~*+_uipWW2lZT1Emg(ZEu?pyjJNT-yw{%TRtu3(mSj=?9 zie|OINg=+fT!cZaGy@7LX4YL%rfJ2(WaBW?2~3JEteZWQUbG2dJ?|B-blDa9UyZaQ zC8*K|JO-mr{a3lvzT$by(|FYSlU=EE-1IcZe(_~+v?p;|C?@5@o_!rM6>$?R7DE^E zdL71K(`K&esJy* zz~xMQvl}Vo6D7EXu`bt=ErZB}mHsK)K82E9;#vX;=W$$t^JAISa`0;-kB_0^FZ3Qh zN%FA&FkVGFtG0ONJ99<(D)N!$x~TI7m`#U&#G#R)<_w}yW%zCT<>=P*fY1Ix@PXU@ zX7E91*KET=kX-7Yn6p0%_dt~BC1{?BC$IAblnqMk>(t0F!jQxR6nL^qsOl1a!(L8^ z)!cte_pd&P>>lndG34`2Ik9^KGR>DGe=yf4E9$$m=Udl5FAm(gx*Qj{?GOD=vr=>` zYeiybJ)xNT&vwt(GTo_;^^NcwdmT?qmn}URogbD^fp?Fn?BYDK1Sk{?jPSqq&izf@ ztSabU=O}R2l;%=5UBeddt9@r3z+DhQKFi994Gj3>RTJDm&d>JA#1N$GFx(+A#8^yD ztbFyI=5G&&iPd=SSK?ZOQC5sO59~Bd8lM{tX%QxRn6A7072mhlavxK$|K_NT0J$A1 z^(+P@bA|FlBkTTL1D7Rno;$hL3LVfA?)VOt)hs-KYBadJ9yws2;4{ zb=v|z_`NEU$BSw#G;%;T{ZLe^tBD$qj5Yq&OzRT97HXA$lOG&uPoLw5wq;^_{3le_ zpt@^3^0V=&Bkus(rTt%GH(4@bPf9OQ0c*d*Q}k*2%B!11X@brX!}iM9s+(tEZtO9sh95$46W1t)^+D-M{SGNRNQe z`{f)6(j4^wKAW9kZP7K5<>v>O>AS8wG1BwVm!B6d2R4s`qb|!gCKsl^auw#`cPXjb zM?UF~+Dm!qVVI)`8Buq?vXTooBaJmLXuh{GjM%C$Tc|y)erN8T+2&h*Po+6~L2RS* zY+>yU*LrP>g5VFga3N6xvXLkl;jqV?29C&2;C%#R@itgTsp`{-*SyjJRm zfUu_wYq_k~hgLpw>PbsB37E8nsN#HY2PJ<-2&3fSUc&rO+ZVaYvL`W@%^zc~ucPLl zL`VPpc6!+JxIVprMlI4a?RfWEPZOW5ASfE#MMG&I%#Mv>vC_y*p6~elXKQEe{Ag#V zn|0oiSbo*Xr?enLQz!PoC-TDs!9AbY1Ut`WK`me9LEVCz+42>3m;RN(d=a$ zii!+wGs!o$@XVy=?pskl;s4^(9%Sk5m@Z%7iW>p1j0BJvp*_?dlT z{kGd+r2wdv*XwR-NdV347c+XmSQ61B{T5^vSV(l$QICykDh4bHd^s>SEPpigo}K}SCTpKdFjU1u3<=}7HX1? zskhyiVnvWb!zBk%rN-Z?$d>;c;8^bTwWJ!DY}TB%&_MZ7sHSj2ElWIwHmSoG(t9%E zkgfWxPdBEz#MDzG>MoXuCFOn~iX7;pzrnWl)i3sMZP3RQtA&$y?V5U$SfAoq$o9_+ z*NL(AbTs2>ly_=NT0bC`j4LRtBR>!cj4gIH-WVy!;WXMI&$t3J&q zgLYn_{sE%x7~qnK4OTq7nZwwLV}4^H?NpM>sO41i4%t#Bv_cWx1}o(V@4{35h549^ z&Gw>Hv?Bka0sse*%E4E+WRP#s@`n~e?Q4R$2R1Mfpf>CyYi5~XUx8$h6-=RupQ6F@r zEHl_AiEXs?pvGWM%`qQmfp`ITmFp5Fbi&lWr6}8ey;>hw@^*?6Df+Pl=#St_havW$ z3qfiqu{a7x4!5acTT51n3MynZRNL7K-9O!nzE+RED!SS^-;wEP-MJ1s zo83JAtu%XnP4*C#=}V|pC~?wS_PaHfZy!|+YI@jx<`kny-*LTo>?Jr5^3SXRlccCr z1?x*jNGL&c?~nO}g+|6M{Kedb`!vE87Qaj#ayYFdCpWx}%$Hd~-2xOfr)oZR*$-`J zKS`Yh($K!;sLOkW=ed=KAVM}da2FyUw5rsWd4IwYip_(eX1VNh0ylo3CWrtvv- zj$3mB>RP@mVCPHBpEU3)ChN=#l28z8k5TlT3|tfX61S3BY$-b5I5B7BcBCvH;R8wq zavo3uiYAHu$6-h)39)I3iH!Vq@!mNqGA8iDY*%RDb;H^3s05* z(N~j0=hFi#Nk?5*{a^4-rJss^+KWE9`;^9*oCC0GT1ZENE_X0I11#ko(A8H{PZQdu zF%+K88WVmKiJ{d8*1xldBu!PK_zs46?~6p~Dm>X{(+&p90t!6wua|Tp5GiSyl@k~H zny}WWOD=Q!{~t1T3Ijk`EmTFtw2yzRub$T4!6~-*bghklL-D`OB0Wq ztG-Hr%`Eoy{F`$Y$C>uwjI;>fUE3p zv&oRmYxp1;41*vAn@A4+EfbQ>7g2jFzvdk`DXomIdxrOBohp2or24!PmK--fX4ypO z$jXR_3har9aFMy%THg&nINwd%ZoPCoY%Oq&cGJIw37)`Nm06l}@ai{e^JrLrFEn=T znT*~bBXSON?~N?}d_3Dz|HNN&id4k)8Tk9Jl?`WpCZ=p7d1M3&nKwB+=JwI5XCTe3 z#ii1XL+pb$sXXB+dU~c{gvPEu{oB4z96V}uPg+uEw~A&%PO{|4coZvjJgJ={ohkVF zgm6wo?HeqC+iUA-{ZWA-mtkZRBXeoTp0a(_=_VDl&KHA*P=5cXxI7}r*5~JKqXm7W zBPz-uwP*Vt+z1^(p-ezi6-id!`;*_Q{r3yD^ySlRq%0F-wh=qB=_hS+Y8S|;;i5FR zQLBECx;QE0Ik)8Cmlv47p3f0mpKtt@%f^zHyb_^A=wu1rA|)UcNeG?(T0C{=(RLPdI($F|7NFWRLuI0XMFaquzC*<~`1jt5GzlG~xY!?Pv|J1u#Jz(l#A1%f!FLKMRrYaZxLJck8aCmYlA`$@$LBp zGl<964Ovj||42;1k6x*!wXY>$wT`bT^DP;QAkrF&!<;?Eva4a5<~%{-jtR}>m_^N& zEP1KO7C3M<#2F2B;210OQA#DMCF^Sz>DsBnGw9&`^Q(WQu`N!C{g|tl{Z1FRb*mbG z)8>3FMwK8n=jT=w^9;@NCS5J^M!L#GKPbHZWZ+Q+_! zZvJ3VfGX#_2BkBOUs4)54#7341JSKn-(O^{>58l+_zSxYipb=?k^N5^1#d)eE4=P? zp{89l=}$I&Ag$##7On^q&@!*~2Kyx-%&3L5i2Rb(-Qn$p*^@&XTNjD>D!j-8L) zirEu;hkxb{>UPP_IK}BW<#;Hd;eat^_P-y~dOvEMvz+Px!s(f;|0h{Xtk7abLuV6% z)Gf479gEvUsGot>Gca0nEVNWh`Vg8>j!AGqA4vviQf+#rTH%rQ_S`^PJAUu}hE@&3g_Wwbq?R~Jw% zwRf}k;&b-2F%)Xz|DBBBRYki4gs?P>yIYtSpUb+Pq0lh@K0r`I`vHWMG?bs4*hXIcHlLr=;gPplh^aJ)5ECKUy(0yLpw?r_5sTsku6*K1r=&Q>!gCE>p%*Cz?RKG5tK{+> zGws(ZGTb~r|H#mF_AAOr_5(Rf$#eDh?;iB7a?f;*(o~<~L=j39k0pDngQb|?DlO{n z@~C%rMSe7b@2@PoMI217?yFxa9FCs9Q?Y$@-ma1pE~;a)C9yV@Nlfko8#Vo_s}Hw$ zg(;73d(O1hkhyF?xafN6zvMQk4s{3R-10lCgYZc&!8%p%Wn*$}@zji)<^5X%y;|_# zbc{!A+w+7#7j_F=O5|-<_Bg$j+q5I^=Y0ahKT8D=wQh7m%TVST<+Y3@F1Iq4dvqRr z&+(NK`r>qp^=Z^t4OAQ?ZKZS)ov@RKRFBE}w06Fb)cMo3zcXx}ZsYI@MazMln^O&5 z8skU^>k7Bq$&4#_^{Vxd1n;v7=h+6w=&Fg;?B$as6~tGxgpBn@Xr+%A$9 zDkl`EuCn{nR;`xRrM%D~&!~zPB91v~vKWUg*53gI@}AUYt$#c1?NEDq63_)z&6drc zaPSoRfXeP|dx^~$51;1;&^8^D->w+})!NZ4LEy(#0p(;h0};OSn<#G@IJD@cQ-kRz zxaWkZKtB5_%SQ~ zMrGt9LXndnt>;|{cYc3&yo=UH-<;07DJGnP%QqU*!P<98228ljG-ddJYrq`UavT=5 zOqn0@X_Jvn%FdDNc9mN=tZ=5dc8PNI1+Bo9DA!1XiqA6rQPW`PT3X0oBPscO_CH+f z)wXrw!M0KVd4x^2l+<9v|4@=qyUo)$dMGhF3P%mMF-%Ard0_o82mBhge`rrEA)84~^oLS&~(h{~5 zZkFJQM_D_bJ7TSAmo+NMzBb70U=xSfhjf3_hq7SBx;Viu zLRG77{RXfb6QUah#Y`$w166_`C0?%}zd_xOmZ?5zH&w9pqpZ6kZz*hDl#T=~NeQ)A zv_*0=Mdc>$RC5`>HC}9#cAtNwfW&4C$k^KUs6~_NdkzW z|BO$AUC09JY5)+NZj+OTc?k^~`#7$)?N&ZwA9btS#8$I2yAXpH@Cwoe*nPA8f`{_a z+F)1O;>(d_%Nr~YC^g1@MIuv!)P8TM)y6=${IeH08{~2rH-_v0V~z2<`SXC$80%cu z+Oy#Fj@AFFy*u1WJo=ZhR7O|yJIsq#{LIbwt34C9w*@zru&UpQ3j z?{oE~Vv<|&cRx(|iiI?vg})={a6)RP_qslI+sGeU{6KO+=>4;|ym0AonwoJFICnZ` z#^>qHU7x$!G8nqB4Ea49NIcOBqmB~?KBJ}V(ZQ2W?x6!yr@i}?h|%(*E*s^X8%=nWeI(nB%O2i^@o>%pS=99mE1QLb+} zOxCABLh(LEey*@DfdEtt`-hcP_B+RcRQ62Q|aQ|G9f$E>3r#M#i{Kbn=WW?q0 z&S%q^#t(h>)!wOrN)PenoMke>_sM=4t_xvRf0G0aMxu`E`yTHf2Or#{e1)wkIGVO{jE zpLJ~7;F6FBX}?35pM@gg^z{6|P|aO?sjf1n5UZV-`OE891xZIo53jGOp~D8YL$cx| zxoX^PvP^mX?tD4sLQlajT@XK)9W>_=d#fnAWa`@^wt zYhmfj>PWRl%diQ<0lc@wa9||aK9^T7nVrHkRzFN?XuvY6{?pZlYWJL#^4zQ4q*jM$ zr>L3Ee_{LKCrl09^gCu!G$8HU_}@~zS&WrtlD!NsG5anE%vP7uUYq>CtUgOdH9Dwf zr&?yoEjT_^4jjw6+DkGHvsyRSJtYN^?Xw$u8Uw-X5H@Y!lk;sF`q_wVwb{)IzJ;qm z2aOPLsMc8MUFeg&nt)<)Pq@^JYAwimqSN_!G|?>1j2g1Kz}CLq5l~F-X(2gKqXm)M zIIRdH+kXukB(r<@?#O7bAA$LkU?1`GfI<8}x>r)X_{R8YyzmQgLM^Lj=h)Cuzsh0T z>&)}4eJf43mn*jz>&Ict37F%4BO^kBeb~~0thnV{{z%&TxX?7=TOzt-v=QEoOq zt18b%^r|U&Zq)L+Ea3F0AzKOPwq=>ojY1nK4~Gx5MR#j?O=j($FSA2d6F}|TG)*=n z0O(B)M9IC%(cyFgKPV`^<3wp7tJ5IJVvW4*O#9nx{TU1W_j>O(9`INGfK?=5_LB3* zMjw$)E-m+e)>m3BwqtXaXDz6D(w&J9Ej0hX#FYTMNWdJSR3Fh4S?F)Pv8r%26uRUu z54Ff}^#)&SjfJ;!zppW^Dh-qqC#frEdYWOb_7&@Q2Nb|p*=0q)_^Wd2D_Tj)18FU; z$)cn?_=h=F7Q^q=X(XUHG;+swxt%h%(WYw9K@ekF8%$$5WDhK30!tU2vVL}tbq@Sn zJi9FQ@v8Yu^c*f8klGp`(-C>wxpuvr65FbHmj*^=#__a!Mvl>$=Oh^iU5bI1m{em> zV79@it^(EmcOzj(EU11I+wOvH4jM#s~Nps_krKg3* z=@WTqq;jSlGkhlXuUH5$O_8 zH@7=Soci*N$olX=R?Ar+vxYlJ5w+S#(6Lo$)-Bs^_*rJh-%M|MINnec9Gm-vZ#>fO z5*$^v*CtdKy%sMVawM|KN7YSPxfxqE&whJ;==}G>T=R1+TZ=Vl6!kN6o7zV*cC~ zzxp=md}(6?9)7#`Mk?4qZ^|1yp)nRN$I+Z1c{ODzo*kf@Fydw>#%ErRTOx++1o_81 z!}d1{Evga1;!X?$7E~z)#sJ!FFOyL@ug6lKC6+eQ@P^veZd`9F6x;y3>aOZ{m-nG* zMsGWEe(P~{;|nv2pGXdWNdsV^RHx$vMHfa(ha5R0uI}Z+j8olTKu)aOo=Xc^^u4p< zwQRk9FX%Kb0t$A?gwVr>YVN@6Y`uZJvIddpvxbWJ%C3|+H9sS{MV>u z12y~ruTo8+!wmbqG=>@hN-+f(i$PjKQ9=;t!L-41-5HYM;DVV(dVGYg_&)>bF9ehVSjo#*4JWiC zN)!`mwB77Nr^FKoTGliVjyD)KmRqX@}T_*h>A0_yrEnst0bDBR~y@^nO*0mex@bq7Nzm^L0jG*FE}h z!oX&3qm{PzON-0+_-b|ZeZUt@^4|)rsMy2;0P4@XJ?+2Y!Rbu^G$50|i`Kiy##5%r;@s?txC1}w|d{Z9eA6-^Qp z_W0{ytCHM`t9+V=ot6@Jdz)y87Bz#`d~2?Zv<&OwJ9W;Uls`KS!>Vup*{rkqMMm5b zxXK>}Bl7R>R;|C9RR%A*N(1c;vmKf%ob@j8&$!rLL&QENdDJvBOF%xuQ3}T_;500yq*?Qj)$I>iMI)sH2+pk0J|la z>DSW@+KSBN&d|uvo|yTX>0Qe_#UBsla>`($&oK+AHdNu^RcFjfIr(%j-k` zMgJK4g@udp$)4cF7uRjB{(r7#ZE0Mcx$-kpw2~s+zj1O;vCHR9UUF7w;r)X79OPMnFw<^U+A&wyiv=HrGSsCy`p3AZ@%yB zs`{iT+ArebG@xmrNV4tU&N};A;la;b6LMka$UijvXvJw*FwiA-d$r_!M%^jqq~jSl z@ORc|!Zs7Cv0&60+4Rv}HN?DQHSp)$S6p6&fexEe^oQU7u(?Q$c>IvkYI zd(ZZrr4Y2Ps|XLr{%mI{AJ#NQe%+710)PJaI`a1ID}O&XSeu{ZTtgaW!b89-Y*e+ueOi)D_-N*L^-$@rw!?)^ zxxBY3xL;vBsPJMRqN#A9RFE2)>D>0W&X0bD9aZNtn!TzVflo_Nd_AjCLtg`(XOG!} z$Rb+43~X`3o=u9dRPnAl-Hh#A>%~8QOW%JlmOskuZwbAGD^w!tp%gXvC*E{j3~L`n z|I-$BqKdn(S_?;q9Oi|HTBkdTW2_5lA;_jP&TgFY%!XjmdBc^5!o;Lt#O$8|e|U0a zHsl$) zYhzJ*&KDQu(%lY%iBxE%!?uOk4`L@Q!ykkM$O(nbv0x)|g;_=Q>wr^|UmHU=y7{wZ zv9>{c;1`$barL&;D=}RwTF*>Je}7JGw>nr^F)6M=e(aw!VHSKNp*Zf9UT|A}-}95l z>)uI=aB7|}cs&*SjrWqyc!IN^bEt-IT~M0Y?WAA>Z;{9`aRJc1c6-%82lxID+$lqM zw758Zs>)c_h*#X@TXNa|=F$-L=|0IH$4p!786`Uz;?%B7k{rU#c5e#PU(G%1(|%Gt zj+qgDs;~RT7{+s9rXfJ~C6eXjSUfqxUnbWLV&-|_ z>KitJXw+MZI9F28Veq+^`qUSFy3;LHa`5OWF=$FX4eUr23Dnm!9FzO#u9>z?da9~!ByO_vLBA#Ebg)I%-Ia%u_Y|ah6!^xC?wYeZHw{wF(?qZ)5vs zb~bgRdwV2@T; z3?9}P%fEk%wdlUYE47TSawE+g18U-9wtyc4#IzAu(7_`@+`*%rzDl@=JhB`Wi@dk$ z6*=b&Cea+ryDw1rx%5LN#vqGUCC6Y%^G%j$uZTD(l-FytG(&!4;zy~8hhYV`q0kYp zqXF|$Q?`*RQht2``yF_pedSjn_gCdi5lCqv>b>6vL)`zHE0p`4>Z(;fY`)QI<>uEi z9U?VjTpMuifIH3T0YKWb8iO4-TD_--R{$h0+%^fsojVQV3y^lLhG2gitx)vf|48mQ z!v9E4j{(w&)h3Mey%j%lmF5b>$g^|4@rwK}ijNXLWW?USXOzF?s~iKSuos6={u>bD zjgG+yl0tl?)8;JV0)PJtL|Ux#mZM%gSJk;VZlE0Ch7UbvhxjRc{;z%nipVn9)~r5l zCTXpP?Zsl`ilAc{)4)rk4Z{kaa#S=@X8vgTBzsgHDepOj{VwlQSNuC3ccaXTn1Lyg zL-V2^#RzbLVTTl227WRUF@W-vGesdq)wuek#6i)#m7~=eRHN1HITcO9nMezLEi8Lc z?C+MGQ7u4@)7bX)X{Y;>kW78ODnUL1?W_E~dxoBTSdhH$n!tU}87KQmTxN-0RXl&g zEGy%YcI1AJkq%N`cp94^GVNqNS@nO!vUG-`k1+1I|CpCnDq4S;Z-Oz>HV~rY3kZFe zZ0H0AS_1M7ZdIC;Zc=0_?SZG{j@%QrAs=Kfh`Bsjw8Xd}W}os&^Yo zDQ%7G1*A{>xo8HX5x8KqVIa(%jS59dAn2XyP;M0Pp?MIb@Lu3+qYb@8&TJ+)Qo!lX zGCXTk5ouZR8B1F6*-3MfD%0(Lc|4aOZAfZcyinjx0st~sanqnw^@p3N#{ZZ?7bz-)48cvrOe#37Pm@ic7AvTd|Krwg7x6_* z3a3{}U4+Hy;Vr<+fZ5!WnC)Z_+~{3vaj&ZOs56&H3WyWe0arK3YTy3f8Y6ZQzr>tz z4@zxJRs?M`21Jc*aTq`{y9mzl*Nl*I0nno<`~rx8{npDA_`l_^k6}sI$Lxm05^&E- zZFax&x(#vXJobYTpwC87h~9(f(5g-J1BU1KCSFsvW3L67tlaJ%%IJ zFcx`6cYTDWdEM|hbhI1p4#1=Z0;3=X{go9AduA>%LH1o!@SzCEp4ZDLF+*NtK(Eju zV^qpVsFhbYS%+EZfSORN-+;2U%Ul8xr$WhDj4zHEpv37738$g zT?}7_M_l*xJ_5G@LLwJnEhKl>KOc^|LSHY0pD(XpMf;n#3JIi;i+p=blM&!2q)h{; znJl~yB%6~77ivl--1o$~wZbaW;a_VoO#oBF~`SosvcjCt#Rsk{g|Pu2e^__y?y#=1hn^>` z)L7wn2L4rcg9-*LXws4JaMDpyxZGf!*6-q&35xN0=}weGD&%g*qSDWMa^}fHba8mv zQ1GksN91W+`&`uerxW$dlQW+a=7Oywsb6`p*^TN^k$@!<$Eqb7f zY~-Xy%HcJk6VYr9LNxCeShMXr7(=WMu!q zX;h}VF7zi`inBZb!22+3t)ZjpGSy8`a#ocoYtL{3V?7pD_yV(E9q+Vltsk)~-yoj( zMmqX8jetuHj+PR#YE9L?RD(KR@+!8jFmS$jYNc}_LiCU^=Nqgp-s#vQrDjKxcEqVF zwW#`~Uhh+|Jpc$g1Lf_HgF!(o4j%8PKD~0*6)e7smIBgeSvq`9TlAP#`Do6^Q}5bj zQY+y}A%NkEfUiPzwM~2CljSD*xmXET^3~(~(OdxT%7@}}+gir7YDaTFp32oFx7~c9 z^#h(yn~OB;k$D}|HidgymCAGUGTHRWe^ZBBvkTd;_$X79b{XZIoi;Wkw;}lb*nou_ z0t?R>v<_rp@u-~|Hbv+TddZ>1fb^S}k2OMbC0rROxm#|oQjGAgSmx7a0m*b4lBSy@ zK=*ZmB}nwhpxBDjk?X|5?dmX0!y9byAMB|meeN@OJDBB(N7j^tIn&3xaiD2Guns_y zf3H^a=X0{}Z^?K(LzS(TAhXXPxcUn$G9GjM@Q$e3NeO8e|Ovz?xdp zm-%-F+U2`O6V6V<+LOy@h28lHwYeqc5BVk6p8eRQVY~uh@~I&`Ee_TSU-xv^u)O`w zzp_yV)(KX()s%BHvZ|ey1~69-2b_L=N=${6x0WBWsF?uctxnaz_*uWx_EEwJq`b}I zB@K^rDeqOOZyST5oph6%^gnPvS>abFq0eF>+bD<*|2jN{Ht@`lGB6{TL3%CgqfeDY zWJ6t?&a<_@EbGm=ulT}fCM&I`^mKun_HPTm5zVat8d;tpP!&%BCq8Z9x*P}$uSn!( z1H+FInb}VvmCQ5xZp-dZm|>%(urGG~n?vm?%?B_U(VWKlZr!UpkW zrtx>ur7)gwQ%Lt)yd|)|Mdmg4f3Mf8qd`Y9YsQTyA8TgSX-Ny0&;k{1F8Ksz4vpT{n8?*RB+jhUbosR)(i9>v_KaLX!-H!uVK870y%B_gBZ)kE4m*G9NEZB;b}{AbP;TQX7(s zU{zaXlk1V^hdvFKz^NcbR9wTq7pQVtgPi^1ct$U?I5NBbtYRImzCDsTfo~VUDcvD{ zLm?JEX9LNl$!uC(WD`_&G(ZI)@nJ0zc@2d~`P>YcmTu*YY9c40vQEd#Tz%`~syW~j zJMjpZUS3ATw|4wv9d1|+Mus6{Hq@})o69oIJTIYF~$O+YlqJ&*5(3E)bGeW zM#)<|a|5pdhjL4hvRcIbC@OOJjA$ayclnpbaLSj}wONq+RRqprTE-qQ(Cd+i0jKW| z2c^3^=}wAe+TX8&ah1`QlJvZX{Q&ka)c*Zo1nhq#@B1LNmUzZldQUyamZ`TdDCD9w z0vX(&Dcgd7iDnnSaAI5u%r=4mM^9x4DyyusW6xTEfKObE;yeGKmjoz)x022|w7M?j zSH3zy)B|fS&i8*5^i!bK$szA)DD>UGTj>_UoaOKP5?t;e;su(`ZqPIls=SlH$;(Nt z6pbK-)-3S6=xVAmgMPaKITzOc1sge6q2}X6UCweN1^nK3ZbaE*A^DqxW=&cF&>vof zft56iA$E^bPI{NmS#(kduPSbo7s!t~& zNxy+xXJ|UpNEX?YSj*>ohrxsjWv`QP>oH3_wk-}NMh5@!=-gvp6DHue@Y5m!9iyr%HJPLw zDbg6H#ENz!O1w+RvPncVWqZ@#%a%dwOfAKB?~Eb{Rkb+S8=DzR z4gS>R7%Ey8x3Eb#m5$^C>XT>pLPQ1SnGy6U(n-mfbuDJig^bT>;bO80_vgXGdGC4x#z z$`ZSD2-2V+sjvnhxl1XbNGPzBgvts?!~5|4eLnBMJIph|%-nm=Irm&PFw%jHSJe&| zKn!~s!La77mGI>R}_ak=`bXZ;wD{UO`Qfr$xqYZ#6 zJ{a@^%z4`Sm<>&qr*Y+e)L)naeMaWl`l=a(H!mS9wv*6}nrt!_eo9nQ#eZ#^#pDCm zZM!M0Yrg2PqhNN0@Kv$e;>*fm3N=q3%75 z<~fMSv0jr-m)`teZba6ne(O3tUe}}Gbjh%Q#l?Gk`@poJ^>8Oeca=32?c61HgZFHXGNrNAhbN(mmX3DM zw@?k|jX;m}X3}Uo8jz3Y$VlKmBNrj1PVPIGA*nRbg0PGjeb0Nycst_P+*(XY196YY zMl(F+pd;S+{Zc?*hky^Qh(zCKqeaMbCkxp)wp1FKf&(34B=Xq21PPEdM?CJiQ?9#H z_&AonJh@@YrT5slgho1J)+UP1>QgfChI{#a%KQBMw$ojI)!&`p-$Ay4L@w~%kJEV< zx3g@HdLxCIgX9vV(kXaq)Rv1+2t{m|s5-95`8!d!-#h)0x?%VJ=wIQ|II&4M)Cc<8 zduc5aiqFoWfdYLqx#A@E{=J>!M~@F9BdBdIlNIkGnh_ggqP3Teo&4Fl(HH9?)iPQh={pX%?q%!@ zaMmMLW)8j!Cml?Pig%A!dT>qZ{S|nPQ4Km{tH_qoe_2EYCl9npoOc1D>(LE?GVD7nDh_K}_jiTpSKVP>`$_iPBQsX>L z_k=K#L1(EF^)zsM0b!npaR7`YOL@hGmTiC@cS7|f-VQ%`hqQu_%v~GFICR5xcpevCVKF+({ZLnxF*A1< zo*{c=u>Ag%pCth94rN%+YEi`Ip^|!$0uv0&b&-twZMLV&G;99%q2%k{RiD%zKp793 zn5dg*YRxFVEz%Wj(i1MBnc$g$`iZVYhD+f*+!Bx^AdZUb#oW-mnX(*Lh1dcetZG{G-`sPnW@7RU% z8~UmN!2+=C8;oneuMarxjNydKQ=B&kvF&Jd{^cO+fg}fqy0pMyF~`UG_Pc}D+3wD- zbJ^X74hL3$Z$@*USR`;SXF1X3BN`G{DvNL@Wj1dbGFpgcZOTT`>*PVYpAw7O)_RD| z%MjLMOOu56zsvw;$roVQLi-s$q&sfEa8fD z1`VnG1j2)zfe8=1+C7CzwYY*L}_-~LYU=iM_fRB~AK z=wO^y`=pcGogoJ%P^%t%5cp(u)wy|WXsgU7=Z^Y=n54}qi3$lHxOdEWK%jx?%n7x^ zBZ${7p2N8 z^4w`%u1^YVpfc@Jb6>Y?rkzX+b0aW5$b3fEU_kfk2 zg!KM@J<10sP3blf%RVM@_vKmRnOT0clyN(`VwPhuUakX$w80IET-J)AIZe}wujE(_ zeZ((xp<$^jyfmxDsn_T2aC4vr z%yG{&Q~GKdy16?U*r71eNp_(t1vqCeB^b)yB>A>wrWb5x=n9|I=+1(5n%GMIbQxvu zO4^}yY0~&N`Vc{) zNDs_HEX91*eQXc-#VC$|3Avd<(SLCkQh z#v2O4G+gi+76MEpUM;4)^isYJT@~(Dtd+)3WDhHWOi%KpwHW1hhAhv3=rO29XEBu2 zBf5a8h&RI$d+X{a1*-hJ%!^O-AO>}$3*F*@)}tC=ZghheO<^Pl+yd)TPSG&y!tWsl z2?9xyYwuxyx_Q-6;B8z63CxeC$3pX_`?p;~g#yhg_V}Q5s%dk< z!$1dII0@`74PU=}!mX%OcuSUDKO?K$XSgsKp&<^hNuz~@Jh>X>J>U|*4PdeZx7wmA zjhqA1r_q&&XpsHs^Q^H~WT;jOLL9`igJt!ZxV}I>XBkOl$dU^!-+aQ1F2WeBS{b8 zre1eWTY!g9!K+xYc6?u-uR!#xX>ihR$vb`uAoEE;%K(=d7kLDXyjw&A8fBZ1{?Rl8 zBtDsx%dLUF*uT_q7D0%aMoSj+jBDrJ#5MmA-O+QeW*)zIFp&7+@F47XHza1TB#Nic zT=&Y*cD)c4-YN$P$#`sDb>HJ4rlEm#{`_Pok~(sFGUYtt-J#F?>)TQ7n0M13^6EJi zX8Y(0XP0cov^N$lMGf-}vIwdCNF^&bq6GMIu@&chO+)y?=4RoiXS>y*?}47*V!tEy zx(domEngL4okh4SfDGFcctW*Yy!X+ME6D%s;hvA~uIK(y=)15FKfZkb{b@&fw-0|} zC=Ji|$XdK%&fJUHW}^y!T!|^>HLf=z=kPeNXC@*NY#0i1VePcI0}puu&d9D; z4x0{cUlm0ju%-goLr;L~qsHf^*h@4sjZt=Tf=D9mlO2C= z5sxbt{fe#Jj2ZbxZW%4)n&E>7>Pk_f7K4^mNPm9~es1afA#N|)_}-Po?nAzOxGvP{ z0Do22@uewBftj}&8G91&+w8MNZ*2sQrV3aT{nbhOWCM)`PDPgvi7wMdJ8s?Q^q{in zQ|#u(@8ls}K<%I!*|q&`Kqldag>ohietrIFkAANm)CJstuNj7Peztg#FF5H+>sL=>;ti0< zx63T&NCCyBZ8FGtSE3Gr<;Pd3Y;E8srI;ot!Ega&F!y1td*AXB`>G~!bros;Gp-27 z5F9hG6>8`3cco^@9v3J_D|f^vq5?w%v@Yza?(N2l+qw-F(CGSl7*N^mNPWJAd%^2nq_4v4 zh=s~|~Nj6SUR&d+5@=|CY%seq!G42;i zZC<(@si4!_Y0i?;xD_bZ-Seyo+OIM<(m7p?GJrF61mvOs%?Xb!l3!RHFIb3HJQpm{ z6%@S{o=L|`^cZIZ?mL!G^5*ggSDhTx)(1ZuK~MS9P*)7prJO+@HT=)KD^X+ca&56~ zcTwI~0?qmk_(?~y3dq{0w*&8hWtgt6XezJ_lhX_z|IaeaG|>+ctM&clAzW-HOQ9qA zGDEIX1#KXxCa(pJnWg>LLTu)5pI3GgHlz?}|L1WuLK{X+H47KuNM=qbe$ zftJ}dSw{q`efbUK&1x%D+$Xyp#!rn(szW$}+x9%Qm5~e}Z_@ecU@ax2cAS7a$bw_; z)U62Feili^1yrQ^<6QaO#Pd<$C34}bhkXn(7On#fS0V>I;JP?p`Ku>=YVN{1#t?i4 z<&{8NW6u>oA-;?&q3Ml6+WmW37a6dw;&N;`#|7ABkuKRWmT&?5@6azJV`woyyAsGM z5xCa!6n_kOSL|@tfP1$rX0V>WB=5<_KJx?+`0GX+JAnJX;*W$ zA?;puJ|4p&i3fi zR42AhCEbQY)<^fDLqD_PIhTjp`={g*E8*`mT>tiD$=EdrmKDb;TUoH zAmla28&)aR$oHow9>h#74dvd{5LMXg>CL>sX17IW3*y;&9!Asbvewh8*{=^O<1 z8vs3%(@-?-UX%1tCEDw`pKtb7ByVy>T(`fH^}z6eEE zB8_quM?jibH10~2qjE*-8|S=JVUyyqb=CtBl5CGKF)F?@%IhqyhfDhLrw|nU^ZZH7 zpgFmyp@3;jE?nDj0#+drQdHHb%y*0OMWLFZ-JrM!MAa<|HH^4I-C`8ou1HSsDHK?Q|5c4Q0~75Jhf2NK;|?HM2{boxvtNzE!}OTBTJtVgE%<>YXzkzRKYng9l{{+TjIg zjmtsy$KCGQjKBQO$oMLaR0a=X8ML7gJ{Hf1lg+gCn8lS=-{3-5AAOOfG;{F%F355h z!xx}q$b;;Idu{|X0ic)O1eErvLzf#6qLFa4m90*X2R}NgnqfzfbY^}tVTB8mJ+|BZ*e~=)$$l@kRV3kcg zncjD7tp~G*rCuCJg3mRj6mY>Z9ZwOs!>P6U>-XNlx@gvv;_Tj+9?u56^VRl)d%>qG z4wsErO%z4*?^(j%Y6zZMgiGfSD`Y%|;v9%j$NyG;6G}{!I~{IIB)og3c3gw_XBO}8 zVn*LEi#UmyYjOCdlQb9geeSk@WGC0hjT18ikOsn&;oSRPz4^z0R<;t5_}Gz~wOco3uyW-s0Db~j@)*_ z(U0kLSPgmacS9b2btaq`E`ZVB&-qO#!v<%Mv&N=-=_O2RuMaz(7& zsZ{YR<)HH$=gK+ut2bXar;%;(;@eVm*dCx{AGs{+ZpL6Zt9L{#%Ixj-h-1WfUvW{P z-eid`(uH(jX{MCUiSz8q^Hb=86R=H$hEaEX~H#6OwNw z7+~#gO9n25V0H%dUn5Z)2MWB}(9Y}bt~svq=EU!MY1))~a?0#ibze7ECdsj5%#7Tj zTAHI9F@X`Eu`1g%9O=FgzApp;rKE~pK|a9aa^|%Y9xXs}HYcGfFP4NbfE}=oj<*&4 zLP{yeDC;;+lk&h9!t{lpa|5ZpEARwRm69wCWbBxfXRi4s5-nxQ9m9#Jq|XTZxS}tw zfzjWTau4xyU2?5k;Y9R&<&v@=)!ebV#_QoIh&Y?!sJOBZVt1mKl|lyk3WLy%D;oR5 zs~FUo5+$@^zN$v+WZomm0GaZD3Tux33_@|#5A}6sGz<3>3wDGhF{}|YiFf_&d1&&5 zt5EQRSzepsEL~^Ao6Yaut>0B6EjJ?1#H&$u#^vIau_cv|z%%hwGTVNoPFMG$`LNWH z&bew-(=DcsH+c-_bau9JE65)92mREM??+dizfEAZt0ITReM3Ts1&*jYTMmnP$X1#aM9D{8$R$KJ0@t`wk zYs8+PFGqMB%LduMs+RwPyE>V_Un*$WJ^rUch&iv=m(nNa*)Z7F39f~d;h4} zh&3riHMQ`2%3P}Vey2sPwv{HT<|{%TwGwVyAj3WgEYU0%&vIy64Bxd0-RDxAP3%i? z{`T$UrJX$_pp`Hi#};Uu3(SMqE?;{@mt5UR`UrdIo@U*D?e5K0m)=bY(9T=Eml3{V zR+m_$w&m^dZLEJ^K?c8VYr{cGIrUUot-gtcN}cbpNn?@-D+35)IB%KZ$f$V2SPmxP{rM!OriM zTUYVaH_uXNifKEdq{nk4ufTRC8TWO`-eM0G8A71k>sisH6+C!!LMsm~tTI$v@Y{_b zfm=eis`ze)C(`q(`ry1tVdd_K(FvKL|1vw?>$eUM2UxYCY8@`FIVxh@F_DZIb+u%V zBI(&b2+8rWaA%a~GOvse4oM2DFInyhcR%IN4u<%6b5DeouAZhc%w(2R>b4$x=eWv~OqB&?oqc~0;v z!)W8Xs!W_7>-_B=eQj&#F#y^xp@KuAW$Si+B8JEM{B=DMlVqd^Ug9WgX3g9DRf@m} zb(jNn19JC1A)XV7+!VsDAK zAnuP1us)E+J90;p*@iS!uo`;vVZ%Xn`pb9UHB_s=$9Mny&F%0V*O2?11chB}HC*~p zzRT`l^Ob`!G{ahY4saT|WgzjHy^5B{Z%69aPmj2Pqb(Rg1j;Wmr5S{mU^WorpbY#K}(Ta@u9WCNmG`RSeG4`DY|c|{^+>&USAJl$dM3eHXRVh@5=c7 z`!4idN9=ZdXo)mqK(--&-h{4%+m@N%zf-~QIzqSO_Y42~T`I4oU*ZJ&D$wsAbNRcU zl`X)!4@p|I5<~+sbZQtNT-0#F2(($8Vu3XN&@9DAi#e$Od3=$wci?NIYJ+}OoiIO2 zKA>gY0`<{*&Hif*?ezhtV2S{mpo6vNDmceBR)UZDN^;m)freJhCrCbEW_*N6T1Vk58`RSAT}$I?2Kh11wlnwxy48=Xj0=Pl9?oM z3u8yeN2Fq#RC*caE(flJohJf*3z`hlaEGxteQgV9hWaR5eBOi}&$6+Iz9;?AHkl9= zboGVNnQTt?GCTG1WFS>-FMRl($Wns9y%ZPOB&45Uz99gD&9He|%xDo=sIx78IDdp2 z`YIpsH@Zk(nbuw_=Kf#?k|jsU$5RXZy)Z->T!|4*o(WqyhrQ{VEW6C=9J)ZxFgv2A z5bCUV!aqU2TxTZq8ctlBbsfSbo_(7g;ngLXTJsFi9$lpHw_-|%JHMGv_DN;XBa-{Q3X%Z73xer_>0oauQYt{b_jMPM4`40$ zz29!T(B!^4%!Oq^6NHzBt^u-dJTczxUu&aAOLZb`&Id@&jVx%UaL*b-RG*t_0DM~Q z@y~s_gQ2$zJZ*oQ4u+Lk;wc}&uF;#2I?WM2+48>j)?})cifhzPgP3JO%Y?HfAP8)y z1<{5o%)tIf(x z^#T%$>|Y$a=!PxN?GMXBeALV04ZW%BA!ibtl}N3@0~R`MVv88Wa7>X$PP@#=Xy^3` zv_E z@0ZCAdQAD+QkyuF4j2a3l0gfM@cmh^(|W<%0>K5M9nd(GS+y_-1mEqSm#+)nGy3lS zimw(CZ6Q*9CqwVNiOEG6GQ-`bIQg6A`likg;knL+w$RPlzRRjYK1a6E{TB!M97rW0ap0_LVi+tJ)$4IG5_LsSpuAW#^2%l2vt&vZSIDH> zwGr+>$djFtQ8S!yjd>aOqk5iRMIwV$b*$arq#ExXo&?SST8f$ zH`NW3mgbllT~|xUVpt<3qHZ+uCJZ%M`TMuh9ZxKsJ|e6>IGwF-7(X-J`sG>e5%JoO zRdJuItM??u#W(-$C33$PpTKBY^rS+SL8NgK6xn2c%NF6uO(ZsV~qlp^&T+_`0G&o*o(!E z;Dl4XRHRkGLEy`zib(;!i}HwRpNH&d6!L&i9(v2Cdw*6`f5FQdJk6DYqTE!O83-X* z4?|rl(wu#T!Wx~RuWb)C0=MT{a!P2L?6v+G>{dlGSO1{CwjERj{LU=1O?m&RY@Lb^ z!gO4C?PV8TFrWpHMCZs#3t9_xfdp>cz2M;;YkLR)R6T@{$PMaqB=E2=AJCSZb9XZk zae&hK1U6930>Z!nw*Yd#7H!GTc5V<66X=QeQi>rPKpne?#Yy02X3oOD;@d-yzcwH9 zN}P4PjiQrRi~2n_I9Hx3B?SJ%Vjx4^-%7EkDgJu2wK-4-p#1>6&B8^;O2YNK;Zaxk zoZNBIBp4xg7eiQ72m${Ocv#P#e(d2qe)s+S%?G=&cDZvmv~?Bd-EbL7zR?v5@XDDQ zC{H>uO63ObqIaaYd^{G$`g7Bz@q5`cH$WC`fDZ@RFtwh2{)5)RZU(5Qqmny^q2P6_ z&xeYj0>8JpMN#YeVoT`?9rsBY&c{i_yPIp`xO~+NimFSBqMG!@WHS^xY)MhkO^6QQ zm1}_~lYdnlbmqbPY*<6tBcI~``QPf@Y%I-BG0fMh7U3O~WQP+e!&Dhbg+vT|t287N z3wvwus%Ra7%cw|cpx5XX63fp3KI<7+%p?6*#q0NR$cmH_^^_zN8z{Gi@#eMcC)(rB zmQGLxLVTH$9jX9==OqCUd~LrF+!>r&Ly@bFzEBG|3@<4vs}5ldo+q0ESn`a`Xd_ES z=9oTfXA&za>lMN%w&<&kX!StV@gU@D{C%j%I(}1=jZz%ir70fhYhQN%X;^StxkZty zfWA<9hGYk0+=Xt54J-#Ka7~(lj5d;2WFG3VszrefRS06R9Hpojbo|)@jaSAllyrS5 zMS~3z@{kC8d?bQ&6_bm~3$+zm>YnEkbh(_*0Lm75A(hmnOD=kusC}VXXOB1;bkgmY z&!SPwuu#@Rkl#9_prZ1 zBlolqNv;i-c<(~Tz@MwL5ef{e*sv=3B!2A_%fBNd_S!Al=+C;QPf}DLLGJ7lbhwa8 zQE1?V<7J;$`dWd;U$g%1*$UT(VWp#kzjPO-e4zEg-mk}z@AJ&6^QG}2+w%01Yq3e^ zUbn!5P!-Q^|G0-=aPr5h^TF6qYk9iVi8}wne|6StrT43fpYf~CCu2j~IXok z;RUUbaJAnkl~+LeYNp=(x5srFpQH-B_rTcR@>HMO9Kmy=d4x9E%GfFGu8Vw5x1f!^rOrSZV&R(jmPV2+eosw8vEJwxHCvDWtI7g zQ00o7n%8l=3-+COiDzS4<1n^E<>ris0a0W67K;vvR}qdDnEP?C`Y~D)y(}m+&3;`t z{7+--0op~f>qUgb$~Wg4>u4gplfP=+y^bP*fOidpY7y1y{ab;0QDX-2@Hq{t)8Hu6 zJn9>HkIgBLk`C_$N9^oyC7yP@`{n7pvT*O;=km^G)R$T+M6%@(R;a?tAf_-_Ai_{0qkNPqr-}8Ul7KfP_1BQ+~ z-~n=m&Zh)Q*(46PAijkyF~cKGLDBf;X3{bb?YYieP()};NR0KX8eS zdV;$Km}353S_KR$;7qA1BhZM!=}C8zpA5-(j+$6XsYXWoGPhFHwU(^FVQ2>%8AGmG z1#J{oWQhx!Oi2Havx~D!_{0VL5GC`wxV>m1umTCHuj)W7I{>h8dK^Q^d&ED$)NSzO za_qHtRP6}y<#`&>oLp*X+fD#k(JR2mwp<6!YM5K;6enF2^$N7&0&+WkmvWM21=RRy?&61UpH9)dZ;+2{}l6P)cAJa^JhyRWl1}WqTZ0 zGLa=y7{AgqsLPEzX?mAb@Hzt{wfavj?!- z$gwM!UhhPY%5b2j>lINw20_mm_Zc(+KIaIfrDn-B7t}(T+ofs_p7_bA>w<>3ds5{V z{et+j{nZEi5)-2fPj7D3jxSv_3N~-Yg&*2DM>in;0YFvC_h#?u@uTC3NAISsuHVjK zefTZ&5RK7;%oBQ&rfi@)py8W!3j>g<)qicb&nw;l?k*<_`bT(a_AzL}fqPyD!dhaR zb}B$KaA+ycMlilD6pFa#yI-<$5fz`J%@epPo6AUZ20$^vnL=j!uXRC-VABOu zU5of_CL*Ta#mZ;w3;=gfr^;!K$`t%hdK+p<_FVU(h=z)reo2gl`$ND9J;eAOaQf&1(Tac3K;zc~2Hp$+~X zLJ>4mlfb1Y|6-&h$r8#?o25+}xvAazI`XQI;j^oWpQFKI>V;}oY7y7WMFJ^sycdBq z9=uB)y$}1F4=2*$Ra{o#YP1&u-=Bc#W9!*Wyx#NeWK2(@JYBitAvr^?cm=H;R)miY zTFZcZ>8l(9C97TXddrKpO98?U!Fp{{a=GPeB<#&Xj%5}@6cuSD%TM*;*3c_}=>MD% zOyi9$HqSA-xpDA=?Lreg4SE8j6N=o`wfMZ^V zq;f|?{6#dbi7Apdr?p***%A@JF_)+LySei7iaI91{Oa5a7cm}nL z=^gINnxis7JcWPx+>-@6XyZ|Vr~D+;%UK%K`IFD%D=Y8d9KkvtUUH9Gm4d`eV~F<= zr&q?~*N5AIp!_TPZ+;1&AR=FOA06xspsH1^EN8(HD4oGBPJuW_;BXkoothb!xc6`K z)A5@J{_b3=H-FT=izQBvfCfX$yt`SqMU#Tp*@0i>1fH@U7g)vU9kkQ%$s2KJEbh-d zAeh<_h?t_U%Su5>3YbG1AVMDU#t)S7;+^fD=-B>l<=67Nf31_0{rkzL9D9C%9AU?l zfwIPM6_CUuX-vu9Ern6jx_sqnf*p5A7^dKtDkSdO$CkcUQg!CPh~=GQgO@5&8|Kw} zJ!pM;Kr!I1B{=u3y`XABFc_uK@qh$14Dh==4>LoxtTzLnIJ_U*VksvUtg8g>hBI8| z74gFv0Z8%}ffwmLTj&bY6LZg0h!m0Hi7=WBD+3hZnwc_GL8YsTt9|e5X|!h!`radvVxo}33qQ9p zHzsir4>&pZ-IK;Exzmx~* z3KK(YD=$`paU#R41eZW#ie;>>o9fi}l}E?-xxcL()vg+~WFmNdTA-3XOSuP7ynLaN zQO4tY6>?>Zy17H0g`z@~@Mh5)`K9*>OCVi4vy3KV6Gh1$IV@j0t^e2P_1t__^!5pY zUiZCdrX5ufJSxTLRp*!DQ<~wyt;&=Vp6;ZnJ5Ya6PWhvPciU!qieupU1NR9eI)DL! z0|p41EvNe{FnMRUJ+sc)U??l_7OR>cNWX^>woi(_t}$kA1q<0Nq92I0Jd=zRrQ{`Q z!_ASyUQYF;Z~Y7rvfD%Fi0qUY+tHI?fIP+-@IN<2o6=?$8Q0bWgzQK%{|Qf&N=61y z@~WoeyeVMy4Slx4Q&Ytu=99RJniQ_U*d!A_s372SJOfM9%L`RD9cwZ%rq#=uI@G+$ zhZAc=sW>AF*vs6$Pa8iyJ}EP8cnD64<_C+@N2LBLCzw;1u;}Ks#KDDOWYJor;ga z3%39UbL{urwoLospU`9VD8FR4UFLFbn+$a0ufmCJj;@$@=^4Y+veJ>Bn{3L=qx_Uz zLZ&4fWXc4p0V);t)C!>)`Lxi+!M|W0=HbAEn%i4Bg!b*h60;DIq8TyKqG>VFJA)=X zr@{v0hXj-D(p3wegzjH{9o1<@i^UGO!l+jboIdgQe#V%zto!XV6 zSXzRyk)vI#lFo;6zoWiB*!`CExx9GTTI8?h_dQ zwf}(cc;?&O<(FVjzIq+04zrBt*Orl`0rp}&>6^YD!CckN#}xIuS8q#|ai_(TQQfT_ zccZS4AuLLDkSpx-h`vkzY~VVU%}s@8%ApcwHuiI9r|SLkW>rBDVqK4WVf((Y`hRx+dLi`SY<8GlCQ6RiFvk> z64go)^G|X}VD)b}Pfi(PFs7*G7Ecu14Ej|#>kAt{6)LF)(F#6^IpjJVU=P$Vl*&;* z+DDSFyb1$ypk!Px3C!P*Pc`!=3-q0E!0DwMAfwU4#gV}3OKIUs8OGBnJDpO*Rm6Z= zVB#Ya!K>I`8y^NpjF^9OZ6?ku&N{P7y=rJXW8{Sq>AwHFhS80m4+Tr% zN?$l0^Gu{@8c1QwqcrI_GXY3#!ugR$=F=7D->QH2e2)k4EB{uHSWi{}*(S6jXo1u; zkl~*8=*{19yAZ--O=r0RwPxl|7Ik@gQZ*?RvE|V9{f9;uU+iD$dEUo`YU{#?aWmmr zdvE-(YmDL^NH~Jw9i?y7@d>S67!%}eCvgwp=uB-*MaNJF*&A|*1OQE%h@qgk z;oQfVLs`D^)lcA`^$g_y7@oVR!D0Rh!~7cYat>!Xgron(=$v{;TGl%k7=T~!gn zU+BI5BFSvYmDGGBsm?-ZF;j)}e&<8WNGLwClsd1ZF@g(769pob z`atuH(sFU{_1uJEfMyn!oCmN`-~5e3;+|I^{nK0lPXcCK?axhO*#rMr)7kt{8DFK- zg+q{8Vvz=nTH^inYf{Erhgz|R3RXVVa#pO8fukxgokbkdrE_VXnE z&|qZU;9hgSZ9aIX0{KIwj$73a=K@a3ADoop=>M|GvfL|TNrtTB36jgmdkirDHmtnd zGnxD(%dz8xtNc5&LM)z?t>X+o1;7QOL1d3Y*CP1Mbw0tYGO}JHZpIdk8}csw7HEpI z*g$LOUv(CU)rZ?anE}T3UssQ;IAtw@-dyJo``3&vx=Gt4k3lM}nj8F*lh-d$88ju> zg}Ph6*BUsc7;lm%6GETJ)*aO#X3Y9*BBU9|vW5X*^;Qi(_kEtmP*pTP(2^j)1roaZ zm(GzZ#D~&__xBq71%gzYL@AK!8A8dbhSecx6M0LLXaT4j+mr(W&$8$5(iRta%9%E&>tUHTrroxUd+jIuGCcQh#%=BC??%Wm%0Kxr8n#EYB@UeR)knY$MdG56!#CQK?0=ii37} z&nZwzyyCs4z;12nN5BmhR{NfpC`LGbY>WEDaEkAKFmIMRd^he*LELLNHLrKiX#L;Bb&W`S3a#1fm zBV%UKb3U(OdQ|WT{gd>f3Es6|sX=2xKHxY4us}WFPr?iQNytl7*7S^jaTL|z2N`vV z#SDQ-aJqb3qJcorqJcn;Too_ukAK!fH4#nF5D)vKH(FqcPrPC*DwMa^7W8#qv?Y?h zS6`i;#f?I9G|!T^`j#jI`$R$!zKvig$(H<0-OXzuAmLkrL=tC5_4<5*ViNgOz;y+NqBe%9>`9}c`82Iz*W=1) zrqDv!0v5!;ctyB4vF4WMbvl)_5@T|b>rQ{WA~Ot*KK`Xq0|p`H%fmjkYdAeL|4!@` zsT528MS~av1Kidnn0wjNA{Dc}n@9RNh`7&-cTrCT+?sRHfy6=mlUHHIZy#|!Qfso(*ne*6{A5R-8Oa_Sn3VR2t#¾nl*^8 z(jOZ%L~FM3o%}BlzoV6Ve)x9IziBI;VI>x5Nu>NCR}*a>9!_NmO;ms88ipC=>Dly2 z(CkHs%V@ld{Chv_CwkB8Y5&3X&^R=Tbc3cao47wh&*YlZqkY}C12KT zL>Rb)oU*jLwbp&zatLo}D@~G$QYCNJRD^!Ca$iE3po`Y)BNkmgrYE&%Hg5JlnRlQ0 znTRJLZ!AtfRQ;NqjQ@xYcX_c)LZQ1e#VL)uc_}1eWLY`kPL=hq?l^?Bv`*#;T2(#< zJ=HSQcjy+%yN7rv^XHV%Lu3i1Q-8LoV8;5OkiZf)ej~uEXlD+%V-Z^*$?{l#oN_H^ z8(lW_Vl$Z}OZ9qxR_~1qcX@hvX@b`v%Ni;OcGWPee)u`e!=V&~>0%Bh(tWZ&OE$*8 zL^KI`z#LL_J$0)6Dpx*}k&KXwY8Wai!vrd+{%pl4yS*!@YEiW9Qfqx5SM-B(deUBS zU6Oj2dzHUeG+(*pTlS*9Ygd2`Ny|oKQ05Y}PPF;0p}GH$4b$E|9UpEH*P^bhZK^Zw zO2-#n%HQ8MkGkJxdVR0YTNvW{stdX89;cy;35yANn_~5XJ+LWxqb=6T!1ia4v#QFj z+pZCcG;;iUqvICXb);Ex!xK|+FYgOFAFWE?(zSOe*y2e1QTh8=v*fBbrs!T$D!+_C z6t`Q9-|j6p3{7mv+m{~C@V<7Fw8c%m<)l~QE_bqJbY)Usx2?Y6@YQZKC;Pi}fxa&M zuR1snB1&D%E;x^O9?#bA+0D>a)W%ix(vebjvSvhQrEuGN!5qg$uIxLNCw3q?kKntP z0!-1-Pdp$2rq%6^lcbK4Ib*aU`8vDV;<5T<9UER~_$otdEd#owza;K3Ry<&r;(Ka5PkJoDprWxl!$3yY+{AZYOL z&ecqax3x(qdx^H7Rmr)AnFT!Z1>Kn^A*$Cys!aA3^w(TG2FK~5a?Ma#WQ8;?re1lE zC#P3`%~uSk>#BiW84h_l#2%?$ zppRU*lkNw;5U6w91pL{7H3O1qHuB zEO%x;(*{zQIOL;ntix8Z%wVt2bAIDE6u$-%r%f56I~lDk;k&Sk@$!VKvI`R!WcUm+ z?4X>Q&lm)rk0Ke{Q-4E>hLgzQy4nl+jHJ24(WYM7WHl}2#P=#53kqpHk6|QcfT2lo z0$QBl1TJkTQ7!aiyxgF35aGou3}7)^=zEQ4ZhK}-jYo6l`$!W(7>NLmC!C)WZzw2V z(^B{T!F=-F6)t^a*(}(IDbD8-C){njk&T3NgXU%0+dQi^@^@ZOp&1bK$bfLo7#hP4 zKeBjdsISH|*Kspeh4q*hYU>{gK7B3xQTPQv^p9{RJ(Z6=KqT2w$Z90#8bFmao-MYS zvF^^sJiVNZy@p6CC1(N~^r1vxg=c2fc5CVqPe!D6Qg{*==1znO3Q4<gSCRM%%T|0%O=S{S?1NtUX8^M8XXbB4z1$%zOntg^M^sF$V+|#zdt50m z>rEW?)1*}Ie(0VanBG_@QM+riM;>p_zE&`|fb)YxO@j_vaEUT5Jmln)5H?fR9{Re+ ztC?e`_D4V2?+QkYJD?8K)<@!P!$8>BmlabCZd z(_6UrlpY)-TW}tvZ2R-VHdV7+-w>EuvqIUlG;qmZ@jq_?0Wyc+^_xf9i z!}XoNzWXnooFb;rqK3Xq38_4*r(yMN9lBGgqB=w`@4R6vjp0Ria-X=xZ>0Fh1=X$g@o zX&eTSE&&;&r2F0f=R9Yf^{#b3%%^Maz4vv;6~8O)&V3OV2-+$M8ZGG@QT6ddY~PCk zP{{?M5}f+xH8#?A?HM&yU&1umx?srOR{HXuFrc4bRw;yBTegMpJURR4EPh`*lI2q? zCe7IIMUw&cq=Ae?eE!WtME{v7%IqqBy!eg%jo1?fDIDQuh|D2PN{HeSg|Aq)avs6L zr&xO5othNdXuIDLVzpO(9J zZVi)6>|cej8)?7(_S_mj(I0o2SN&OYo2PmvoMDR~MH}&jFJCOGI@=>U%`7a2J8!(N zL7}GRqs{kO(>A_e!$K4fc~gwHLG*32_q%(l^#a?M!R;4?HK=6!45SMg3Z%xYI%d{E0X{4vaa=qk^(K-F41w_PkH@$_)McmQc1(S8tGk zl`UOHb0~Zu#w}}9!_e_NVe$Ae+YiB$U#C4U4IEl*M<2KDdVJW~3ml@N_nBD$S)}a- zUH3`_{taFm=PlV1)u>y%eC%`T+hI482;I%2Oc4)UzO0RAYqMzC9g+)9ln8apPbigu2Yd>3?O^d+rX=+?OTg1x;?$#r|{l7l}bZNCRoP23D zw}!!ShW$iOSG(e>BrC_hprwX9(bne?&<(){KKadRZgqpz4Eyn(UjTZhmGSSgSUY3g z>byezAR{m^2S*;$rRLHZpLuBPr%S_L`39B0%8-(|tJW)&=AkzN_z(g3=(%Xgep0PD z+@BFwpB*8OkZ=vM^Gw3`nF->W?LA$-XhA)xHWDFyQifH2yX_KmpJug@4U=>wm1zZvk*JHj2ms{=cUZixK+7gw+R6QOb4ul6MvKJNKew~FVfz2`2T)G^wy`uHhP{}Yks0CR7{3JGAkZXx+T(iui@!JTNp-vK*RS-LjDdNb z4kI3VOMnb*lELm3JpaWV`O@Nu4q`g zhzv}t`|}}R>5$5hpiHfPShP*v?!)0{w`9nozT)72RCTF53EWwI4fggd%01GjD?Q=B z#Bq#I@Jv_J*$i)7t;f*q9q;42YZSJ=&<~qDsfNa13M?O;9*7tb$JCSDfN^ye3+z@o zArh_aja6P_GQZUFR(D4FN(`3sjtcuy2oppO3&*p4;M=)AEotAd!QyWfOkdzr4G@GX z!DdsSw#&+Sj>~I27=jdC+$%fRhjI+;7f0Y*MNCExp=5qeY;Fa!gxG^W8=I3SKN*nz z3QWDu3EFO4Y`b#l6wUh5c6N|SV}%?|JFRuD^ieFh)(`m`e)OrQ=ndQOUDtW>>}3rVyp%jD>veyC&dXhbGNDF|NV^ zajwRXuN#)im_dbK%O{!|z;|=LLL<)izis3&awVa0@zSPRyYfn)F^CqzI_+e&QrrO> zed!QR{mdPe>K0TOe4PI(6|Bm&({AWEN>X_|O2YkU*^cA(6f0{f2OlN|LAWsk{QY$3 zZ&xeJWhu>KOEn7)&`o#(Y5nyrtN*(Hats;!*>$s88sv8mlsw%oOnjzn_}qWLfA6$F zc;As)2rr9OtD}6`@H+%_O3YyWf}dC zQX3^U^BsIX{smHmH37yg2)lg%v0qJpQ?Pp(IQIYktItl!=`D&B{-lW>tojhWbcPcc z!n5>J`0@4k_aU1WfZs`oB8?GiV|*fYgi!cap+#}~xA$Eg8LlWM!&m{GT@&n}2VyW` zq#zePw5sJJeybOwQYpT?4c`te5O=xlVjn>}y^|qP)qr7nin*%f9o5G`w@2QaZWG3s zXqc)dIx>iAuUI*_aAeD=+>3SmP|GtYetu6+Evj}unq1Hqm2M_ zwg7X<{jMh>m&3ZBpNI+m)?pG}u`7&*ZtRixj5iComBbDi6THZze#K#l^1tMnf}j}> zo>h8v7<(|w>vo8ZeL8$Xvv@d0eIMfv=~emgt{!gN`QmG(Q^QaD(WllIJxR$3r4n9o z9<-^u!WZ#!sjqH0sh0*170vq*Sa0nvBB8terS=z7<>O;pS>3u16)pP_O2@oLjA+vX zazUdUDIYhfPF>wk7uW(wy!VQXS%u^8XUqn;T``NV?p|mxN-ldvwEZze{8CS`2Yjar z-S$e+ie+j^HORaV6}(Fn3AJECx??IVr6phrT6*F02=wCE!vW4<9Qm;*tjc)0^w zrecfQ$9+AuqazvArUE0-M6H*MXMZx>{_sf$-5#epe+UizN5aj>0@F-}+F~^Fyf8wB z=R6cU?{_bJDj*)qB=7J|$f%Kwl4sw^hnEiugzjx`1AGI#%7PFvo0+umP_hx z{T6t?oZDz(%-hX24vcqqZ^LfxuIkU7FRjCD59oHb$G%lGWH@|JUP&IN79J_3(ae*) zZT4M%+S9xKNIsOc^LZw>MKvrk1-dI(T-MEd+gtpoBoZ1563_t_x)mE!m6e8U#ohtY zJGW^TFbWvQ#JhRO>#5~=U z6tL^Sz`;Ri-PcwQpE#778|pmG3^EIOnx01ff6=I3m72Q)G-gYHHbnV<(I8HxcCgwo zM((@Zjyj?Q7fwBuq}%+HiBz5>yY~`LP~hS?(CFEe?iLK-Bjd$3444p3f#cFN1n&dW zoBhUu*J6gi*{Md08FJnNQ$T4ih;iZkt<7{S(m6ADcN| z>fFtP)GP}tnAc=PT9~|3mwKRbL@BjWZu2bU->srsx2x1bNBxY)4>G639g+=p7?Gx! zI>0R(8mdn6TsBrCM#)z0LGLRqYL)cFaKLElZcGf1$Q%z(;~!_37#3kbM0J6^Sb&4Z zCg}CSs?5vEj!b;ONP;W|%po$wPT(_RraHpTW3oe=9XD#obHQISdorhpd>lF=$N=fX ziiFyuG?Qd@8tU08a^C8S&|0zZ#jR?^fGWj#LhgPp!$3NGaT*TvH1)?MOc`pEU|Ui& zW4Z$71Mt&{Nc-4}r}%W#3QmokPR0Uv)V-?o(!Z({Cf3-(r>UPLVaQPH0+#@&`u{gV zKP*C4Q{)E#YHXfP_rE^?Mmp{2+^nHX-|!DULe@)W0r9 ziWg`*DkRBzA@Ll5R;CfX;~&lYNj$jzdv@+~ zs*$>jT4hItav8sW#Iv_B;d`W9rf*2RFRLD@Hg!4vNd2oi562g!aj0U?Z$;d!cM|)D zrqurYTF_v0`|hl2prq=Uv+vhXMa$Ft38{u8_3cX5t1TmdkvC@f78r!gg>ENd2*M!~u zS^b+gy}`|$e{TZ6{t8~&1DOeiwl4o|%4*LGn@>ha_bbjV8MH41pRJ#d1%JK%cTjNM zf2Me4YqfOS{7*5*wF$qPJPT;}|Isrl(&A}`i?TVPMIF}X-ZvE8tOSxd6dRpXo0gTm zWGQMI_1Cdh8a;?N8a?VeFJpZceQ5Q*@A8eE)hzj3)$j80!YO2*BPAY@wR2}}*6QyH zRt}xeZCYf7Z7z$YwyVpGqbl|zq!;g6BPQ)Vf70wW3Prxx%`&V`yfoeyQ=PNV;1av- zJxi5bnZ}3e2$9(4&6vW|cOb)h68FP-Wr#d=nK$B(8|RL4isx=G3Qj?kFZr@&>hyP2 zDu=u|Hs^E0Hie#!2+=B_dl6k%MD#X3Ocdn1@6WC3+~`@(q(Iy4ehJ5x+i0V2ii_fM zOfbms8e5_!l@ET*llU>}K}Ujd+QpL>LS3ANQErd0 z_iB^%*b$Aa3eBH+@W`PdId4ugqjnF!NI^VSoO{(7g5i#b%6SQt&4$v!c8TbeK`lOy zeyz%;Nj_0Tyv72ZT}hmsCjR7)(ej$$_-r=TQ9({n{I(55L))!H4An$FmpK3ITbz;u zdk8mfcxyEGcq=|Ba9D?wG1zP~)=MD5#ThflS=lAu71gjSw6UYX)QDP94L8Z;Nhm$J zUco3O+;8C|ma?`^U+Q+<*`-twGQ<2!dHqvU#c3JiL98M}sn+)|1rqC(ZLYVyyt1av z%%7XXs?S%BYtU<~KBp3`67#o*ej&7R%|q!t%s$sVv0FT2D>XB1kDWVYs{>~Dik4U( zo;9|4qe2!#B3)|v(vS|acKIP6_C5jdjDsNj&PPK>@{2$5x40cBtk0WzxRAR= zEQ6+ZouSJR#VUsaMWJy&1CxXPK=JEM&$_#o-lqGlmf#9!dXcj-mxB@)$4RyW3}N2M zUS&f$y<7wBdy5Pye|VKW-{fGfVU8rsvnrh!(CY4uuH)B z3_9XiCHgr~Lz-;p*Lg+0VX-`hRpS(c{Ij((BFX3S$(^4G;RfaOmEv2@Wn#;%ObPz4 zR_)J3yV`k4{N=2k;RK6OE9Z&&31kwFE}0Cg+6t>?VTTTzT2F9jV4n@C5%>(4CqsjT zGFBdP`bV_F5i{$>>W61H(+6^uyhy017A@82IuUsr6=O}kMs3|G0loBhR!jl3YXVk7{f zqBK1BTR)=a%D420#NwG^+$Rme*hE8J#6ANOG0-3;7o#PIkrBwNcZNjG-#zobv~8xx zQDQQN@Fl~C%JlMb$AmYsIR->q<{om#ja8cT@aB8bi z@gQ_H0ne9I-FGPCRX7hVqa#_b@k%WimpjJ}FlTxH4zSAb>N~!Q8$ozqAq?lIs8a#z?{tW}v8MP*cdMXZ9544!FHY{(4iMB_{nBsBB7) zlmwLo30EiXB`Bt9hqrTydkIfLEz^7d;rwwTvw@#UVik{f^u5*bN-?ifcF z#Khf4Mj0#O&vj;R5QW8&+Bn^0Mray*gaeW4E z-a&&xPnxv0?d*RW76m!h^YQCQ<-`=~=RPO>`|wCgXWQT2|A{sDttP7>wJhdczsUtc zRtZj@ZCO{hpHoQo@{#U?Y<9M-xCgphf|U(h6P(x3miB$d;zZ|1i|@LqVAN6BWDdaU zq+BjBEozhnlH+=p0s`dhmvnu}E^=Skf^{1w?P=reI)mtoX@AYvVN{Fj%`DqKfH zs?tl&Gx;0z{deR~pmiY*7c%H4AczK?icn=#Vm=;_6=;24Ok8cwf zCQOC2w$>YvuJp2UHT-W+;*}@6LzQ7R&saz5iA-|!-(iI&4)MT4D`0}Xh!?~86|FzLA4{=Tux+NtNRtQ$&WQ;6yGl=lA zL%V`L9H%t&uT6|LeR6J?wts6lNEufPp2Q51;rcXxp}?laxCuX9>9`nI6y!f~HQLnJ zO|e6Y_CRn~#^4B`rC>c7Nu`kn2l}^05%t(4m`nBDgBU7ZjiY62v7sN>J_D6e(2%E( z3^#f3bI1}!7_CU+WhsobVsI+OHTbKmT{0dSp7N0ItZ5Dlk^7IR!~P1=C)6pulFBD| zG$DiNQkt&De=k?s0OAi4ct>a}0cR??y z6#XPI=z$0UbWF%eH_3LP*0H>b*$`ZdIs)OnQn{dt&Hm@R^zod%yX;AUkTJ-&b?vUm zbcL$8`J>6H(YpauQOeJzb>l`8>Wg?fIvaMCJkh~I;I^T{Z(us7iNTiT36l&niW?I| z2aC@DOC)rVC2}4CFEs;gVB^OWFNUnfA{uu9t-yem0e;9RPQ7b}J&3B|^Ws}L0?Fz# z%o6z?%@SFbsRjIvUoGu+BbxBrWN;y1;+Cku!eoSLt1bm;{#3$Furehwbly918B zg40jK3Oy445OwD#e9ahnWJhpSaN5aa$&GH>_xzVavDTL_|H}ppPTQHjOm*fQU`* z!9ch8P`;`#4eay_y;Qy-xV8pP<ff{~-U<+khsYyZnn0W)~vnjo}_?c?pTeSc8 zuX}r^;GLuIoj{7yd97vGquZOOb2XGf{HD~ubmF2-;IsxcD$14zZ&9}tw-~LK%O%BC zf8Pt3A(-2JdQGv!);2FW$wx}cFWoy>M#l%8^(wPQmL>m_3HAF=Eexc2hzFH_-mJXE zUFyAft?DC@`X@uKD9k^W!(|x|deX^RO?1bs+6`xhX%ateOxok zpo!-R36wYfK4E%FJ`%_`87?>!x%}$u(njX*@HJr^Xx=z)*Zk7`8p_IK9%>}DCKY6J z0IFDJ&e9FtgK_Gez%UBP%H(ot{R;|3^>u~OUVD?*8BbM0QnhBclpp!lSx#paseul# zl)#W9u5K|haHSC&JsJ;`C3Wh?nYyN|7#s=GS#OhRg^)%g*k2hCVqVCxa?h8KI!Cg1pE^dVue6a$xb*p1onH_hDzQ4XN_+v~S5>LiV+{zm zXda3j(vwW{w{KGWQn+$RfY_ms7EOo{>MH;>dS8bu@+qw_*~A4a83;Frjn5-{)lFFt z`5+%xwgg=-x&O)GX-iQP?tlnwgSMcePM6oi0a%^abKl*DIPJo^2r_@+}N z8FLO9S%xcqEu;%kEUR%iVbX^v!UksQ<#M^FyXIu~u$=YVt?cgNQphhmAd_m(5JD^I zpIc6)m7_wIp+ib+_jg92D}#&^eqOBz#cYgQ&&XTe`JP%!wq>t4$OtQrQFK7_Vq8M~ zC~Tx(RnuK__$)0@RJ5n3wACDy&u|flH8QMf%TK9ZvlV5H3c{N!2!9{GkJ#*Azcr?8 zGRbV~=IKpV4tBxSR{4bxCB(RapenH-&gSTiK9+3)fy1&+utA?K>mgEpX*ji~;H*cH$4+JE6m&A9jVW z)7XQD)$u%nhwy-Kt%x@CT!d+f_b0w`P7PVlpe!xSDxH+hCT&Ak9i#xGXHqEHmV*{b zXT*(&+>{ZhQy0cYGn~LH$Z{(^D05AELTu8lM@4S93Dv2)fl_Cum9>aQMg#ku^Xou+#rAXCJV;$6fc{A|;qZREnX^6zD#FK=AUQhER( zrqMb<;?7#&*{nn4NU06ON>4boWh8G2G1^p>a%WN1;M2D;sjQb{I+$5D!(j=AfCjN#N$qdon)DI0R)ZF$ko=76J(*{$hV2^yY409P-kG2E(vzu{Z zB(3_pumPoaP}@?qJipSDCLNA=vB1jppSU_WKXK`7MA!eU{dwhwxjLlZ%LK{G-aqdA zBX1e{Ua&fF{rc=}{P5*vRgQdc?v{Q{&3I>B-ExTlBjoAYfz~4gQI=iA+izwIN~Q3rb-4ctWG{QwGoRjhwkZc2f=#bf+JQTD47_X8L)r08d+uU36v8(e-uz=GMTwyYFpcw?LLnaD%y801m{rAh3+c5VOlJks?wzD zhs@+V1Ufi71avk<@DGhw?5RR`?B3gDE<0r|{W>&^8EQYkdlHz&*eHoFY>0hbUqL-z zR_QrDk83ETySOC#^=T`|%bV7nakp8N+pI@h615_-bV(!cY%;ZcT6HS#sJiT^dSif@ zJBNOy^hhJ`^a6OnMPu_ams7i@$8Hh=j|eh?6%O4DSJulVBp@X}OpOUH4MrYW_2=`y zUm$I^6r2c)J~Lo?gLYjAE0hCbm#uH_FN1G)9WDdH?0@|WCZ=c2e&`zt^m=H&(7JZR zc`c|swnrHtZ5i^yoL}=z9Ukdho9<^=1N2lMu&M%su(g;K;%oc?Ra>4AZ9+sVUd_q= zl1$le7xnU<*O(?p&4v9qT3#wpuPJDIQY zFfrExiJ8hN4bG}he&8oJjm>*y?rekftpExw*{@QiVN7=Xd(!Sy<>%slRX~SHfpF)j zQzRpXH1Q6lkg{=>!~K8`cAfZ5p49%=HtF$Mkf3`lR^mR{i3!smk42>hFbslx)d3 zQ~retbnpp@20on4f3B@Zi8-ircS5#@|X`4s*$rGg)`sJ`IZiy=Hutr z2#2nswz5BQjp+1?BbSVeimlQDjXZ)_+_!Qc_T|ph0{;?QSe+5971|l+Ey)YN1v`B< ztl(HhNS&4;qx4IDpDQqn;u@&uCHl7EBR@mwmKb+GO3X}M zY`JHEH6B4m3L~J=B+fTaYl-f=Br@FsnL6>3xWmJVN$cL{xq62Yxwu!hE}4a$c{IH@ zb70cpKa|r-mw#5R7+FWmyBKtMOVHgAIXMNZea3s4IF; z`OV*0sKMXZbsQ0ZhXHqK)wnRE7Sn6AQwrYm$zv_=W(WC9p&%wjUqB*7mo@{EM=o{z zRL;BEMn01uC?3e4dw&+(xg@K{8zO~i$w866jByAvs~uA-j7!`!B1vxwozw=!*mb z?v6Qp?uPVt#1iVpDa>}nd%MCaj^*u;wObO7M`e-j01L)iuZPgaduY&>*1;Ps;;U0) z>W6wAOCQ4Q7KZ|?XWDm-r?_6ZoE?JbJ0Vidw;OxrM?L1+;jx7XwVv$~({)g^CqWJn zWmpbn>;9QzRGs1+#}zE~o;ydB-!a>?B7ALy6?^K++&e@9fz`v@20S-vn9&Y+?(8&{ zK_=g~DL?nX3FJtxdvTS(A$uZsY^|b0T$uUrrR|I<72Hwj&nVNZCJiyi>m*YIW0L1g zwhtWzn(^@q*^R4Lk8=i_JG>+aL3b`R$2*HqU_6TSs5r$K(HWf#$G<-j{*{cC83bi(+V{Sr0neBC& z3-oqFmV7J&|Aby7n8kxdo?3G}-)IP^7I5~LySf=U4O|ZLkh%Z2$LlUoYbq!lRI|Me zax_jjU6Va;`HnLYE3t6fGUot`(nGy2aho8J4sLL}7O$bFzox`;yWfuO$3Oft?tET0 zy&s!Z@(>oKiE=I3M-HwXMU(d4}MJNF&^lMFQ?>sWL#K-#~x#*e4;Wy1!=BeXH=H8C&gs4Eu_0NlZM_yW2ZfGY;d?!vyb-(-|cKLIx z*%pI*3W_k%B*`|jhV5(1pVyZm2IH%M&Re*=nnaAnJ<0Fas9VK|1EN=a-E^fOQCZ>{T3`O9xhwk zNS5Hc<+kb5CVck@9)C7qb1IeYvJEt+l=R(dCvclcNQ``u16L-v#ki9> z!eUfVQ2^^u|25e|@5Tj+b>&! z;@Vp$oOTCScQF;(ruZ7XJKtiDlC~gmZ(#q)!q(MR&6)O`FSDJ3#`Nt|{hJOQ82PYM zl6T(C!}1x(AO_1#jkvHgeI{2xIubjHrNI0ImQ;5JV%M(wOxI%(K0i@XX!MaLaABTTf*n=^Q(K3@>f2<`(_*)AFDK;EiwtoELeAPi|X^eVj z+(HwyupIm7NcZRBU8>*lbVdKerK^DA3@gbto8D=M!J3z{@0UJ(X`U;as9smd`p-WoIbcLYK<3aQR8HKk5;zf;}0gZnlF4d!CB1VE zc++<9@rk~*0xE2_<zIAEx3`Vjv-E(fXNqFDvw_zN*xz=4ZIL07A`_ zI|RU$A5eZ~Vm_L@%PIr!1tJ?JD(BaeB{suPn1&{; zqKdGe05~!=(iX0gC-#TGQ%2&CwM_JbAvx=)fS#eL$N~-j@>lu7GeC(~*6x`3UDxu_ ze&ucR3PmmABMx9nQ~KnrO-wVz{@ls7yAbIa`%S`gQ|n7-Bo?QXC;G2QNa|nfJO{2; z3RSg1MT^V+$N738^dEHZoZD3 z=dPTAGIGN@%tMz1iO!b=J#^%eUgCryZAw#Z-{cTQJ$xN)`P|{tERepQLT-{M?5xd5 zhWV%8iIvOoxi+z66^L)rYHJFlM<_qfZKot0FNaNZo>^2$H&_bM@1|Un>=QsR{C?gD zMjVU;)Z~(#^>wPEK3Oa1K@N4|A@~|e(T7(V;MLB3L_Tsx?jZ@FL$lj$*KV8LJb?~~ z9BholBao@?fv(iYvP$g2+t;<~;W%CM>`#j{d3q;4!WNmkdD zr&zj~+bwX-1<}yNGyxM$W=<|5`YGP;G5CMcmLY>*5cu{(xSbg_OUd zU~juszovb4PHDV5X5%$BKu_BInCBl6+JBAPK&mmEw>K`%a~OLKf1mJOuTD7~fPeOg zeZ;4m;?QKY)_t>X4pUp?V$3=iD6$KxYqD@oa zIX6Ai6hfS0#o1QNZ&Y|$4LJv!r$+V)g6gj6w}+eXAj2v}uXPwsF0W|NLsD|4p;zC( z&kIK0-;CUkPDr=UjwD=iD><#u=|ROlWLu%Syyg7%Wp}__BP<#*Zp6TD zNN|yO#Xzv3r|82I_@FSVY*6^o;s3(!4m@}3nDt{%kJCMI&d>d!rWVw$>RUEL4HXCumyWD46 zmBC*C6fHc#`)4>Qvp|AM;Jwr0bqRR?wvI0$Zv9qZUHSb2@#^c2tNOW27 zti$J}1GE+tlNLgeYAiaavl4wSYZ-6exay?4KUxg8ONw|aO(yFh3+vS0kSbe96|r?) zf>TPFa2;Rl10vE;+hv)oH^g*w{VQB_Bk8hrROD*FA!`qC-j^u*5Ufy;`5o=qmWd{I`ZPY!hAMLiM_JhMbC z``6Uu+|kC-$!agRg18FVl|e~KB{Ctso!8|#P~g+tMZp|4bIbT^rFrI_0Bsp|w|RSd z6};s*(-HlCR0Cmp@fkn9@4gzS_iW72!m1EJHNLN|ob;^mw;h6A7Gry;z@m(VM6L29 zJ<_WG^r?rHvb4q7RRq6C{Z$0+5z2zpj=%5GGWH~CpiVsdQ%?QzaXcLSz`K<%!e_=# z<6BR<>9&Wu<-o&RfAer^Kl5;IhClF%(bttu;tkeCo9sh}#WjBo*tNh%s=)2`Kzg(! zI`hNKVM+!r?{RXd|2B@!&FX&uexeMy5B|2q4fAHp5V#byJlaLA*ldRt0ku_8eK|)= zey=OzEk?Z~u+2)ux@@&d9tePFdGDjJq{2w3vnOk(5q0jCsH zOI1X}9xh*sU`9$yK+BiFBP)O&^H7&>|1?=IcRn39LDd{Tb{fLE`n0K>AdQ zLeSyx)vsjAw0XP_aC6ki)?s+siwBD)5#9JcBtZ13)kE+uHyVa!cM@$Tl*({JkEensc|kfrgv zs~d|#^7l{e;3Dt{oNNOV>TH8rDqz4vc1npuMz*{PY}_0IvK~i}$$G(4gcBA<;<3L4 z2X4h~FJ(!1B0j;92^RNV4mTrdp?;+5d)g1EnK1S*_w2#UI6Bl*I%2p=OB5u(9nGhX zk6n4^f6+h5s0>JtJ~@v(Tq1^a{-OeR2 zc7$hkU|CC~x`k4$ly)J0*cF@{0lo-@F672QbNiZ-0EMDlN9J=scm&e{a?WMC%{VtE zVB6!Ne0jGb`+p7BLy3E-$>e}|9TWNj!~`j3p?1Q=9sqn5V`k*6}$vfWcM_Yt{K4~Hf>wQryb2&c!$?`Za6Sw;BDC5 zxS%6KyafRr)%gqSn-93!>+XFf8PUOhn`zs z;F86I567dUO~AjtixXQ+P^NW}75*CK2)TjFR4HxH!ER`RP#q=uy*(r69FV*MJqB$Z z#YEw`l0L;eaGo4S0`lD))bk`zCX|o-Mx=u!1<@ygXgsQ1SYtS%AVG)ZqTH7o->M$j zUlg7ERXwREivSZ-!M2mX$rHVOYuM|oaDCQp8?AB;mF9bj$})asmWHFfPFu?ti37yE z2u-%smyS0p=GL`&4GWj`s8PwrYotVg7al@FTF1a=sfmsO-~BvGjheR+_vIG!FMGYj z3+9Vshkbj4=8vSgw;EiHTKAMI<)~Q~*n`9!Y6W_tO?zo~%zK}1f8Nb(+O<#C^H>wib+e~*{_AFLq{ zz#4v%Cn?q0z0CbvgNQ0eUM`Xq~clXtM-e=JXPzQ~5 ze7Ja+Cie1J1?)4GpWiQTkAa-Xo%YtdO;3-z6K~&+d%K^Y+*JxM{z)=D5tRR|$Ho}q z?Ps6|IynAF0~}nd5L@cSWue1mF*q>^c-Q|S?ZLG4$-x&l!N~^O1K*JY-;--HO8VrR zt%&JB{h3@K1>S;tm2l)q-fWfMR_MPZi7&?Fq^8(OH}_E+z1pT#_2+k6Hu$zUYF zl}B7Viv_c&f?1ESWa@i0#L0H$RBGWsN@=5dO__Sl#_k3mOqUr}ll;x^w!2&SVJBQd z+Uu%$r9Jpy;VZoG!F!X^pqdTYMN{e=Wds464--|#OJUs7WAc42rvuF+@_jxJ10ItI zWkMekR&?nfE2qsrS}BV0AS=zdAd7Bl2=w(~PO|l3q_;N676g+9D7Kog;P~!h$fMW0 zpNad@DqG{Y&eKB=E^R{oB<%Z%#DgqBumgp7;ZF@M%d(QXs?xyPSi>k#nm zHD5<9z)2LMaj$Z!FqH?d?0EV#P2yk4g@;eZ#dcb0f@U58e&-Z@_>-&bE3Nr6!<%fV zHuaPys z@n4h-X}&lV&F^zi0K*Ppfgb3+ODtv-kYgnO(p-Ki_=93ddrM2p2i$jO({2%|XF)70 z)8mM)MZirV`sKfyLbQ+dLySY_+ev0T_kc>3fRaw$7gI&fMUU*(M-P z1p&#(_ImnskU*O7Hz*gC^&_P$0W@g5V7Oj^XgmaDGd0S;0D%I=I4ukwmHB3Xm*1t| zvHF-%lyJC@Y5a#@1csU2O#HnuzTxxvxscXV;)KKjuZj?Cesax0f-Fx?) z76;B&9{iz?LpTL*)l7|I&n=O7%VBj?0J55>iR+WBiTkym=U<%nQTl~L08%X#d@GB| zh{cm^jm1k4(A1j0h6UHiX)o4vm_$Tt9-U!mRG||zQ>}3YS~QArVVV@&p=>b16zHA@ zhu%MroyAFm(xQUC&WEwo=dvP5t2INi_N$iE@#B_^JIJCM(|*JFW@nc7sBHxR`OfvAz@sPdoxT%6E!_&VwiV*s6C7c9FjNCj zAFndmOjwXQF5PcX7G5wQ-495W{RD1?*YFBCp-PW`N+B|AsCI)5T*@6MY#eRI|axc{?zG2XMz(80OZ*Go_(jpzwDYf(+fB$>$3tsS^4WQF9F+=&qV-|^WBH68 zOyW<^J)C__d^n;n`CEg*(5;U9Hwn2fy>w-b9aGx;@2)WC1ZZIds4(Aj`+><|Vz+4b zyyQ>Of!A5BxSvrOWjc&@jQuB(3g1|&+N$j~8v^)|y`R|Yd-px2aaIGkDrEijjorLB zW&OoroXy@E_CyTQ>U~Zu`3#QNxt#0#th6cQy*sY?{ES-p;>qpa>43EtB{`-JYEXz{Z$q8YWmfm zUilg<@&%3&h@%_eqY5YHb1|MNC)r4O1wE@pmBbwUc}hw%*gjr#Q1BSgPY>CgT@gH zrcKAyW^rnOS;ss9k`5ro1STAE^D|brrmi*D6=^=VxDHZw|A?42HCM|n?~}T;4B`Du z-!s$i(M`Ue?eyKUJa#k|-WE%h4#7k~9wDb_T&AEB!nTmt#(!9_Y*Me5zwW{j5(=Ky z6M9-0TT)t5TcUfb|A94`u1U}j(3U6LrFa;7W#)lwEwMgx$wm#awFiI3rEhjpnLI?B z3_kI=KAGzKYi9rZ35e@_k4e49;?g~r3GH~{I~MOf+*&4hthOI+AiN>=TM9=8$(Eh( zCzm1M^>H{&wByuH+M2-*NU7uFh!g{zD;@}3`7&(Q6+eGxp^Y;= zC!y%+H9`Fz0uDQPF7qVFDL?

eP?DSYCLr7I4z_2zSo$2*1CDldO!3;~tUj=&}2a zQiqQTu$BZ(U1;Bv89Ps7!>Abv5?-833-}Z&{7=<)XAHGUa{jILKRhzbKo)(w~>W*tSRk<4U`d1oQrOf(N!h zs|WTUSn7{_6RO3~5hQNBg|fe}xe-u+lxLSgNvH`3R=xK1Am~VCEOqNa&f>^HPF)3r zFdr#ZPu=e-D7XhUunYjngu&k{NCW|T=yJ)f?#jZuFfa}w1GmMFsvKMWPhS~&UYMeA zo+qJRiEb@vSgSnjlfCs;Nmt>HzTovv7g4%a$#nh$c%GpUrOS&qz`Ho@(A4`F%$9pu z&Hzpby`{iMUHpEUZm7R!I`<|IYPMcMQu0TjL^R+f>(JKj-@nN-7v+F~R#j4R@h7Lv zgQkpErBTgu{c$P_yG>Krvh5Z*V(pa8rb(kHjww1>n|hX(^#y{*D8!-IJp9VyL6V7y zR7N14fU0uw!K3)|CrfM**TiyeHE>!!pnF=C4Xsbb9;jq{U7ODKu}5jyNN1VT=6eZ>LqriW(5Rav zi>O+W3FkLbJa0r9Av%q^37;#@?PDud{CXXl@#|yHKw*MSIS6O3lx(qu*Hgl~-gtD^ z5fk}6N)@o)px>aJPCkwV(9-Uk8{gKz!nUx}6GiuZyzC`LES?042lllsC;Kl@E5b?81-E$MU$|r2Uo$+4N8OFgk4m#CRT~?JT$7VpV(3Gy!~N)b`AU;?b}tWc z^)vae1ZHOC4l=lI-4?uRe%+$+(%Nm$%P@#~(2A4CB2msUvU*T*r5NbM zzqb0hxs$o9wzrI*2<*o%IthMjw;&{iFGw4-eAVO-*P_&s-%Qx#=uAJdpy&DE^QS7z zifIz{c9!rd2A22h#$d}lKEMs;$74A6RPcqi+_L#9&;b^WC42y*(A^hHE)A=~%kV3G zpM?qeB6lq0ygC-9o01@b_Bf6u;Pb@PMO+kyT>s=TNG=VjgzJ95mh40SB3*vOLq4>Z zG2}+?FTPkS?sG1xf8aEGCMLJ>L|~FKp4^e8UlP_Qbv~#>M$bTF$3kDp+{>9C{vV zMO+cW%?84cs+guemBVhmVb_ zR}j0ROMJkb`sEepVj4a1#Wi$0X4+WXC+(oMVdA--&rP$2nr7{153)f1JM(Ket+WIJ zO=|2GY<$ttvTxdi7i+GrrOvPaTk^Ipdp9o|wi3(xo6^Mq&DL%9j?qVQUN8TuuGl?3 zfdB6*Y7Yf=Xd7UMc7M<7?{D?s8bU(Z?($xGr4q3iXruFk z8={_Ft9T?qCH{xp-#=fLr;8q2MAF9=aMJf4bjl+puvxf-wo7yFV}AIl?owX2s+Mn_ z)kXVUF|ZUYU=Owv9uo)*KZgG&PI!^k#nUa1NKhXu%p0bftN#)Z#{S>Rrjga<&?}E% zdeQz3Zt!+yvYpr^r=3`7D>S+KEFMLNmSEuy;}YAhMkhH(dv@=;mmw-k;Xpi`eq0_A zstJNd83MRwF3iM}Et%6M{}%^pnm%6G-OfF?aTU0#@O$MqHoJQk?yFxq{X7$xlbv4wr{dikdODkRK5$yA zlKJ-TPu<N4n)9r(Yl*Qd2!vRU(lIqw z?tL13s%}kKuiN({?@{rYG$WT*0^a(4R<)~&27H0s2K(*vm8MHthn@4wGT)#0$o79! zSz7b_pC4kv80qW|T9&I@fEHu1;B=_cfoLvaQfK@k<*n*n3f0`?{>h{1bZ2&llJrG&7j2Z|Ls7 zP3>1n)Fv{`>mh!gI*_CKuphBX+kba4R{vRfwNQ~J?1RRt{HMWHb?fMPR6KL+vA8j> zU}F0mzpodrB9r`41qps_;?U?)bW^ER(0QydH-94OEdQ-2NkVW6ES`VD#+=ut+59l} zlJ19gp~*PP`k4lVDUqNF^m;+cnJiry{fX(vzPKM{u6O=Fh-Rr|SH!pbLpFct77>3a zjU@PBptv!32_n_ZnGw(qcrsUI%srVY6pqZ4o9Y_|L`d8IX9cEwCj`mP33{AM0D2t$ z)}tA9CM~fG5BIGk*h1c#L0~th+v{+b%F&9!WO1_Z9C!pH2fVyURKTAOswo?3(N>)9Ahil!RyYIo(0>JizcVf9PVM_)Gm_1lTz=o7KlH!=fU=bj4ti+Nxb;_ z7je0ctRx*ZH5`gO3c_&<{nu56oQs4ralVSf?PPf6E2Rg^E`2AXLYU|TABMWWRw+FOyW9>7BS-wHNpTjiU%4n8+bzpwzy{L-3e&m*A?2&q6`FpgtN>&*O)j)#u6fRS18)_o@D!$9>HrQG{ zOg+KrZ39Rb5Kw+K1A6Bryrf(jP%(r3^=kKNSgpV z7PiskUB!R#quP?>wvc%nMZ!S^St0}E#AM}iJkJzYpgauksF zs%V^7GD3gxVaN4_C!?SxA5eUp9r^Ft>-YD`@wy1|0@aB?W(Ac~3T>N49+P zRuHdNMW|SsI+tKo-bxqpYa%v;N?oH!`4fO+9L;hvR^vbS@%nm(!brXQ>akpUy22Zg zWURMw!*Ts{7F6O^ok-j<3ugejtjHL)hm+mOZOB+&@@cCslW6=Q6ZXyRLj&4vQ0W_} zlscT#|HFz({BscGoRkFK&Xo3xCMfM?)jG(u^(4V#nAg|)9?aLZPvoA3MtC#NvZ2B7)U#~+ z*tb`Y=zhx_N{x!%Z4scZi(S@Swl zpuOBFTK+<5!7`qvh_L;j2aiXy>Z`_asT(x0m!995Ss9Z#&C^U#EaXi@c94A0{e@PH zWGC3R*Jv*dY4jWPdyKd#b}m3}DLzos(S<1J0AwZsS@yFD`%Ufvg)We=Texbn&)_j? ziM`#GPl{3lc1f?Yi59ukM}_E9W3?58>uI%n)FrLXjWY^6I*nARkGsP+-B( zrQ9&zIRXbF*g>thC=D1hK(Ii)<7QBAE*IG#Td+p) zQ6{G=L&g-3qEO~_K-ytsckF#G4r+aE#n+O}3M(6l%5dQ1@*76uxej@anT;q{3N=|LzTlI8Rpz@V zYFs*!tfMpQce6GtAGY3-WtFw=C)!%CJ2brmczd269zN2}r`viEyiUcemf(^^;A16-FW zC4)EvHqC?HVb|Fii^3OS;#|WJKWil%ePA{yF^i=iw=H&7IV;A}SucDILLI0pUA}PX zjMKk!OyQ9eXO)rju8&ihrhZ#b#%9OHt&b2A7{XJTa#g*KcoLb+Bx8M4wru&(zt%X^ zX&Ey|Ho|KA%!3tYhA5I{aCwzPhKY>pxlvz7|v-_sL3Zfr#tV zf~vkXk9;5BOyP$%a~WKzB6-8^NAejP-SpkDKFV9>d;;_~Sq(*Eax`xAN`>pdN$6T* z16;9ZPN~(HqI@l{xFVj-9hxRi^Z9(5PNxzi_4&f36FF3e>0v#vGkI~nm?O@Td=EI4 zV@=2yVo;p?dYl-;o_tTP|1X-W@`Ur)<9J)V;wNzI?Vp<2E0vTSz}68Kl~9AV8&bTL zPsu__r*3@_%Y;v?+iyOi?OABxPQ{K-{OgIvIATP(Of!3!kJIiYyZZGn#zZ1^9d@~X z4s2Hi&@5xT5>0W{CzVJT;e^1JcTO!kk>UJZcg!5Z5T^37-=3Ehkx-n=$e?_ zdMgdYs5u8%CusG?ZQQ!VZJp&Os0;78FpdX-p4BLb?3Ych{I(frNG>q%I=ZGwxJ_^# zBpiDsdGx<0`9jU9B=GM^>_(Kif!Se&Wbyl73=?9m$_3{A*qN2J-!Z3yv)7v%=>>Ou zJ+<6wMx?Tox&LOXI!YKcWn*>((mgL46Z*q6qWfwsXBd&TFKq3UbI&F8LXtL(UK=p% z3t0O@Kr=t3MdSGAPrKI4h_~U3S{9Y}lstAb6b}+2Ma}Ih!#r7S8h0}Ku<0lCl8S}` zi6iKr7mTt02?Wg^=BWN_7MRN1b4i-DsoV_u-7EI_1ktehWQxLvh>&@Ne<*;SCMY5bW>mBb56{=n|9C7BO{^3Paa`zi^QOJ$F?YM zSvtj8a^c~)g1Zahld?x5e$ir?#^fqvsFi0{LW4ga?EI5_dy#IE1Ux>_6QrJfTh zrb`6AgvtcAiDWFT>ef3aQuAE6nMv4cQwK9GcLOhQv&YRQibmt0^GY6TTI=YN(M$Qh z&@GrD@2TTdiSCj_$@cA+e}Tx^vx45f?$B`Xk7&$+P3%ei8V1HT{P|BSbnxS7RkmI` zp_}Hy8BF9?U#&CKay78|3lET1>yk_CnTu;(rW%l^utj1>*GmuzG-dq-21WbAdQKW> zE@`xEHEjOaqGwMF>iT2@!oRWkw?y*?fQ};vX%MhGA~F8gafMDACSTz9)u*MR+x}n2 zVS$dr_S?tK~YK?gbQN$WWErJOV#Fg3h z@A~HKA{rj9G9hqu`24^ex=%8^s6L9Fz7>ZHjtnFgoycboxs|Ltg>P;GT;k5}aTh!^ z^6A5mr(c&v5|kTYbP3YUP&`aPRnVBWYt!|QWtNC5n zll}FJ0jr?tZ|#owG=k3#^p6GIx!FxJ1jdsU?(0uB}W;pGl6~-?PSj5&-A}zWi5@@cyT1Z9IE!S)ZVS z;)*Lnv9i=dz+F{U&hWJ=_fIqx=$Pqwp8$t~2+?df)CRDG2Y&*$(4W}b^H4?==d4dT zQXS^G8Bio0jZ2Srv~aJtVfJqok}=lv(W@3;Pn0lql1Td3jV8Z3fm59WO8PRLCk8~z zQgEyYjZ8ZBRkAIk>(x~rB8;P#xImyylvUaFf!ij zjG6h9r8@Fd1Mz%be)>o8AygOZ#h6;&KE(r3u6!?#KN1g093{2KKAexf;^PpJdLWtT zyiz=y2Xqdjn_V1wA7h+1eVnt(vts;X%yfybC9>nIH;b!!M8+C=L_};R1vqRruQp#& zCz`#xDMrT7xlEGA z#I5eK%s(bkpuezXv2=7O&WNRRw44<_rqf_E?sv!?6IzmKyM`3DU4?Xpb%m`KFpwR1 zW=dl0YK_R=i?_kpE=7-WE<-P!bGnjP#|%O_Jy!z0vQc2MB~;8GO>3GnyOQv{MmLg) zC1p`uA!VVktZCdnNgNGzE*mZMX-S9XXVEVe>?i}K2;?8N#ddc&YoB4X^&kJEjQFt7 zk)?fDP?^c*w?+|AfsN9%`MgMv<{?B$%n19T-eD@4g*~i)RPyHqaaojH{`+XT^9Dm- z;g8(j*>96sWtIuo{Moj;f%}wJbK|}Q2+FR9jrkKN8Xo)O!X#yMV*+qp`cWY?A&SkJ zUyBu*M57L(A%0!fx}8qtEW4#me&4s824@zo2Rs0H@~3tkx4v+bzIsuz1i%IA%M z24i@sE|j8{^6RMQ@jr{8YR4FmtMy7GOq^DcSX{fT2Aen*iFvM#7MmXg=-G{N!vc*3 zC9`kcY}Uj2L&_)i1D>np%*WG#H~p^r>D=i4*7nm`L;dp{r#uciCyug~+%K@jcs zqnz!wGhw<4SIdREo?@6NJ6rfJqFt(VYRbTa@T*GNzax6yY*kPVPhHyMgfd?$V7dA8g3)f#4mRV>%Cgz=j2=2LzY*a-q98dl|uCp};rZN6I@_Rew7E~JD zowy0X?_iy{6Z0#9Pg07nF5cXp&{vh0-P@J_Ly|bi$N>vuFni2O)P)qn+CJ;@r?7F| z;J*ku2gfH03#fFMA|5RRrx}8QvqK6l_v!g&JY^5|a^H?THgOFB-5bks@ptA3|A!Q2 z@1!#xd*lp1_b^4zSVdmQeBHfaH2|)UiY#Q{l+FW!n>_Hm_hx)e#g0wS$+TR5T!q7e z@F&>gDc=nC;U{K1K?cZvos&V^r-bcyJyNPbb5zb5HYmm)F)+}a{%K*M!RZDe;YXr! zV9bE{J5FJAxRFuoJ5hjD6ZP~B>^H+p=uws8I@ocp!^dRTOX(9|Pwa_~> zlF)b%4H+ldnj2S-R0JSY50QWs?%b{7?vnkT#Wt{|e$##sf>W48aca*%)rVzDzSszO zi5T!s2{4^BN<<48R)79yc1y$?aiArE@Xo>jlNBt@}&67%W&`CsXmxlWZktBBhX%v%Rw)+a5-A0);8vWUgRb@gGe7$ewW z4IdNX={8~W1jlBVI?pF09XFqhKBR5C7rFG31Kta~sKqcRx~-$HuD>lhL%*Wft}Vrr zWISMmAj-Uzzjqtx-u=oH8R|`b+eojJn}RF^N;45H6JyEd{jUm$Ua<({7yd}L&-u1s z45AmDlXcn7MnpRw=N+=%=puhTi?G!5Mtb3?Q)XrFpN<7qR^P3nif+}BCZU$pgTS^^ zv-nt5Q&&Q;7$nMyS+wv+5`3|E1K`A5DMORo4nANfSrzPfErpq2@fy~N1-^s_;7hol zIDZ(o)j_2uw3OtLP+vD_jz^KWR)~JvJ<85ue9nTE$`-Y{L7~19_K^Sryt#zz1ku+@ z=H7Zy!=hFxDYLs4&-zG!;SE&NL_^$o$Le^%!sJm~8=y+At62e$9jlNNCZE>KA)I77 zzenQF{Ey^Vn5EitMhIMO>u{1slL1$q_$~ztrf(W*OU4TZshR z0iH7e4{=Vgm#VK?PZstMO(o;_LX1xV3+sj;@*BhJ+YE;6gEMKi)(P>rGeBI4M}xIL zq8j5;pc363c(kebvuB@4m}iq7ZYvd0lo^ z6#KOgHW==T4Jbg;A)8AZdEyy4GQ9|L<@Dy+PoKRz$9w}4q5O9=Z~F81@4j^V zPZZbo+*{wR71kqS+-&IM0@gi1c)WjIbweKECvC#?&%h`m7P zu>F|60)|j~k$lf_gV#ZRrZWl@9vz&;H%^~kho7918H{Y`(b|=Hy;QsOoUrkBKM%-K zYwU?G%u>t~dog?}ts9P1&=~ z@}@p(Dpq(*JaNkJ%cHF@Q$pB&Jw&NO-KH>0{YVT${0qIyH$M(c|Ibd}vO?Q`ZMkMA zI^P!0j?r`oQ@{CVO}ZC(c=31TaA44;{+kTq9#izKwor|lgqi#=bcL}U00RXJs%G1} zEiO&%9ax>=odxKQn% z*DdDE$tbp`Ead)iq7xh~LPuO=jg990kG=^(dP0Z0-|Ax;FW19W-92bF^P3xTtK?Ys z9-=SEuhAv1*ZF-#=D)MaL@b-Rebnx+<`lMN==>tg9m=Gal7rrhhq&*ruz)e0%p>2FXOJ^!znB!uejbW&*b2=`|Xj!}5Cq@4b?_VBSQM zAI%&jBCO{bB$^bUrg{1qy3_&LcW7#4_b&eikDG`wLAw}@(BJi*6rR;6N|T|TZ>oy zZ$w*|K6W*vYqGbSb=4aBecDw)^{<|o6Ky%%RaB#HHW__nS2hxy&j3XbHddcmK>uFE z&z=8cnIDO0W;x=zd=_kYz`l4Km=BCk6oR8pGK(LH-~}A7+GlJnPt`+8ebqziw|4E! z{@5Sl1Q%a-N4dVOKf84xs#kQ;E#+Y;*D$&E_V9Gyo@bnMe*V=oYm4f)OOT}rr~iw1 zB~y6(3qCxFj5GI-J*V#OJ2MYhQy&tn*xs_?m0g$%QB+tsFQMl9J3;!3Ko+uK$&)vJ zvXGD@0#fxNQA;~1Eb>K4-c-P-e~zJ!)HUz<27leBfbLSp8r^k{t;&KQgjxrX=64t- z4&Vm9O7}o(m^X zT=J(E*%N*rfAdjd)O`*Zhd(JH%>DqN z$e$8Ep$X;m3~b3;VkHjZenDMeC82y+lT70@H8G$eG(4Z3?vZh9U6i11Fxl{0<;{fv zp5ID8OE0i+#^ZDJJ$_+kV}|u$Rtok$P;n*^jc1Y#(X0(ja|B^*686PMPMkguBtND{ zk#Ja=cVN}$$Xt=Sfv7vsC2AHQAvt_tk{=V4DZgwAVm}C<#Rs8uE|`vle(}-ReeH9^ z!G(8~59cp);frTiCj;IE@}h}@Bpibzs+lkO7vg%ZVQ&1$QJ_|&0oQ*gBanUlBPCli zhTZ>#ETZd+86yR;>iz9EZV9AGr5fjF8`I@}w_DTQIaD|N1~aU6m7O38UZuZ__tk4w z!|sms6Y+6i`5fQ7;uYYhB1Ik_fVpkYPS@Q2YCNOWYuu~W0Mh+>>YXvUZK~{qB86kI zWF|XO`oXi7lJBNzx+#)mEyAGq7497+AZc;1QqRY>q(p{dhC`Hj~1<^4M16^e^l&G_+msq1aifNP!^* z({_~g30?-*Ah*`$%z467X^v*HUEsNF3Edju_<1ed+~+`JR7Hv}MF)L|o&> zU*K(*7LmC0Xi>F5Ru)M5)eCyA=y}(z!^PKo`QRTOm28eM+RyN2c2c<5J#C6od(%7+ zkZ#y;+djYBca7yTRTU(>I%A_TZB;e!DL=;dUl2>m6F%_f*1{lAxMaF$`+ChjxhH<% ze_mQ?hKAnBxNXh92gOSVA1kgi3HYW4eD;W8b^i=o1rI^2!bjIP*#NDH8IJ+3T^5*cGuXm~User7j71mT~Mwqv-@~o6q?3)C|8*=L>MkoxSqH zS^L?EMm!1OTaCG+DkvJm777^Ipt-7K?@yLYi?`hDsEsU$-fZm><6I@D1Dd<1!$xwI z^nrKLURn-9CKR1{j=xrrtkiKu6}+JDZR_<%J|lwne+St#K1dn*e&F~? zqarpI9P22Letblw&YJa44FXW^9wCzl#ja$*C!?z<>xUYUxs=#Hy5t~vA)$Wpdt&{g zv^t@uLP_>skHjSckZeWyTY%D;7FX8&+O>S~{UfD#v6#iZ4@kE9d_!<189Z`0BYb~; z$<LJ0cV36M&=wE zIoMDQdD7{L3YP{alR%t=dSV!uBOVG!spCjCXN-yB z;%r~%pW6#G>H7g*%hfnuukHAd)2|`OFEBw}&-%G~x9q`Y?>6W3sU8k6 zm_@z9r=ri4dbg^yP7DHGve#p>z6J#RQoSOqe0?cPL>Oz~5J5F~`%*XvL&-$HFOHh1 zwSC98lCo47Kqed-2|3lFA222qi4VAU$Kc~Go8jf&4e>>Lk(#W`%VYW_MW?zTjX)iB zZ!3>``)?jM#RVqsK)q$4Bffc0eID1k#chYU0(F!S+Yw=pyZY*_M?bk$Ap2n7IC>Xv z>0`fs+C~eEAYt3N?r7qDN6J{6IdKWkzmD7&oUugd; zKR+v!=s3jh>%gjn!P)>62p}m&4ynt24yn@Sr(|WD!lMK43TOvs>W}PUDjJPsdYZ}~ z!|44IRy1vBK`>JPzC&!6{+}OcHhzA%97gmhTYfQcLPtDRoU`5mt6hAJM@WyX$i*@p zWuBWMc@PXU-sYMcAGoW)Rsn1q#B{rIolVuUo=YW~nxwost()DY#*>-|ME9f~_z?~= zQAU;;1o2T4g-6VA_|d^MnCa9NvG|1f|0SDn5aXVr_aK40Sy^(#N7`Hu-dDol$|T@c zuXAv;H0jKEnzd0ixshIYKzk>Cw(zwfnp0)`hV#P$>GMYBUG{Z!yfx*)kQl@LxVIsH zwim9xV6rfV8Y8}h7x6u)3rca)>SRYLdgIbSq|8lx4hUop`#&)= z%g8y2NZgjex_9O0Uy|?90S_M{TX%J4C|xCLr>T*K+Sja=%}*j=2=<2xBkUX1$C zzMuUC_e!fSA1>IJwux@DGfg5m@i=yjL#@ZyAiXx^rL`&Sj2LIUV^pHM8fy5TRo9Vf zsA>|~m6iBNJYDNk_SWC(S)LQ`rN6|h^5JJa?0_76GO=%8p->~#H9sja&!o`IfI~6< zRFg=NJQKwvSu?|$(lablh$3k`!b&RW%7q&RNE_&`igty(s;KWG!=9otWUe-V4Q3}3 zBs^gI;m_}j)1V#T@^X<4$?@)qY`r$0Y4N*Ebjz%Wt_&Zihd5Ldd+qQe{6{;P4q|1) zJl1!OtpC6+j4kdHtKgYDz`g+p>l z>_*X*O1mJX;9;qk(0(YfEzgZ#!P`f8L1c;@GpvG^j6ZkVrl=K?Hwjit-U0ug8^sw_ zWWD>R)_A3VwxByS`HpVUN9R5YQo?5(&F0ujffp>b=B7WJo2EoTEjlfG6O9*R9Uy%z ztBI)~{&%Dmor``OV|3G^a)X2H3q-F`$oW?j1XFKUEnGRxZTj-T7Ubql{|(0%MbB%F zW@Bt6zMn{YdKdl0jv(b0AKQLHPEc~o(QJyXG^asOYtlXnZ=1^F&Hr%D_WI4)PH*I$ z@2QPT<89X6iA__hzJqxAoz1VXR>Q1?x6@SzI`q?i9!{>cEzkdK>{EWbDzD2LQJb#v z^L45U^Jr-*8`+te9U9s;q_{-`=NOP!tU$d zn7FCt#sXW+nSy^l`Ra+$S@b z@IETwY!;6I0cNvIZRt?3IR$J5B1kJFb{j*i#3SlcvfGKj7^M#RwVd{_@=H0DXQ|kJ`@`Z}X1m5$HDe2P%PMXU z!u`e#?YnXdP@efAMYPzjMaO!YUU2&OJX~;3hAqrXfb1uUE9;~WjO@@RneCcDz1h0{ z+9rO29@kIU`UtPsMo}(Zq1dzo!Q{o(7Nb3SChID}bS`)*@xnVv&9S?>eu^f3tXwD` z77H`lgiXG}D(qCDY4_zdUBrf5p-1|f{EgQUMvkH8^Yn)WT&5z6Ap`12cKbhBbt^KraREJnkiO~AsW zecPLx-Hjy^z;ARvUJmO$HR)htAI8rY>PX!86|q@T>wB^mZ$yoXVsod+U6c(u!w_S;sXd8fz>wVI@lw~RD5G|w3e z?{-l%uR1xrdY_6nn5c}li?4)nhW)To-KG*Phbj8uq`4)=zoJgSf9={cuE36rr@$p) zos*p&*s6pCG$>=OzdjiKUeV=XQb8D*0Ls|M>JicP%bmZKV#QhU2Z(TBj`xC8^l% zJST3dugbGeialBzjfNKN1nG$v;(QJKejDuhb#!jf$#F`Qn+U^fj+#)x=n27WFhenL zhCGtdo$zUEy|t{mx!S$BbTwQ9i50KcS6R_sSYZSZDTZPgijYenaJBi!CFVuhK3J%q zpIuEmSlwM;HWk%rhd#A+r*8f8h=Ll;`3TJ)7J!EKu(IME+V{Li!+%F&oGdZWGms~@ z87nv85Jjd0+r4Qv9V;pS7}<4< z3@1&ZdX1#r^QX_+Zuic;U!ToSu1k4gz|27!Z)w_njE}V25KENR)B4k{y)Ljs>Rj2; zwHkEKT>ibhernV-kG0Y?uycCllfH;M|MqxaP4$gSi?L%aD`|!@lklGpbY`(g-YW|V z;0uA){TaItonIrox0gpNMsf(5);_xsY1tk3_v8OsG#a$H#d;LA@%xja(I`+_UZB4$6}Cw!f!% z{VV=6$X9pt$zkkCX4R!_C|o)(&(Gf5H2HlcQ0nQ6Ad3FaEE1) zS*QM2?o;iQn zYsHw+__BBU{knG4i$o7#l5c*+006ZorN3^QT5Hu!G$L;Bds079F>eqVES&n&ucU5- zN~b^Reqh=olFIf~llae5e65@uihRG2k{}_aB&kcEBBGp~vcJF9GoOef}f*n7e1{a-ajzQo#cT9OFBQ^B`{3w``MH-2f zYVj7FYc@MGw2;z^D9uM5ah3git={)xc+dJIfDia)DEbFmXUmfjD^lTbRO zW)CSa1%~}ESM}Iua!Te}*_2X+;C;_I;pz~RxWR{@t6tW#D>_xsXaq?=;#1Q_vcG(n z4fSVEg@I2illQ43p&Ii(DjU@jh3)Cor1nmjR!LRuyvQq+80YQxVv%j%FRI%SoUx7c z)AVlTUz&X1ou2Ou70ujSR-0l3%(fak-dcIxUR;~q_}&cdIwb1|*4;I^2~t++q@ULb zo$R}y02aL8)~tUJG(p*BR9=@{5*biuRUt(VGs^8-LvyK<31G3=f4z{w zcCQEr%ihH)f=_F+kDQZSW2GPkU}tWNJYfq0#%zss4tMuYuIru&iKcR%SR}fgn9SfR z64_(^gvDb4V{ncwGii>bts}>NRF2Ndy^hZglV;1xEJVPdTx$%~qXi#YWlj*1Eng!K z{s3 zwo_T;`SO?Gxo=&D>*%zUg@iQ&k%+ezVpVHH9j&BT#%3-8J(b8Za%sV z<@yxUUd?;*VYDA6Ryr;x#k}`ePO5aY5|<0gD1w!YXBtDwoPci+DmmBpULil};%B#Z2|G4d&!ytKG{syzLGCNVUP zzO}sj^rxM`OZ)9VFKzR~mDz&!lCF6=jE|(UAxbX~AEd!#jdPAhK=OuPxwK+)2?FO; z#|uW8ZC>(T7EPR*yLeiC+PRvVcLfP$>=w`%v2_EIf4J^jeOe_+>vjPpu=*GWMEgG#`s*4uC>K92a_xF0Q+i+xp{ zzB|qmvzu;OzCOOpI_bE!xwuqjWn~UhOy%bj!BdMvu`D}cQZT~c{_!-r$F9fwm&uc^ zcl*~{X2-L)ZybncLv?Dus}P55F(3a`T*pb|)3b2TBvukR_SUsK(pPYwA-dX~a zVlDrpuRZ>W^>@-xzPaMg5(o0|<3!Sj70=izyUqIIAlsRSZ|z;%j>pG`hW;$^w1hNxl6Ki5>Ctq<*SCwj@kb^n{pwI_sl*uCLt7PjiNds$uNnU5RE>u ziQ5nNo_SoZ>NMdLm03n;hD|S3bjd%aPRt(Oj;cQnD|zBuv-56SUyh>&@|i%5)EeO& z@vP2*aq`=PujVTn>X|VYliVYpZBy$fmj4LB!^u<%d5Wuq*)x0Bw)2hmzJWXDC}-eW zs>c&qR>($vrRaa%@}TbF(aBV~Yq+Z6Kyl&Aq)i5WgS>dT^e9VpYnNAZzLS%7ZNFWf zyKv>D>xbJjgqkBpsfg~Px?e@QR+mLJ6}UJ4ok&$>ev*NMc|Z6EGMD6Ngo;GN+F5_1 zLHKJO+aI=ms$z}xdWnb#q;5pSkZuCflw@1PFnYiluE4iqvr?t24hc>m@C0`&(2yja z-qKC5@E-4C{gw?SbuxcN@x>w~NLa^@Lp-q{j!`*COD`qF`c8u<(gGSJTrwLKVWBv8 z!AL+|z<)Hu4tHdk_~kDvfl$8`4amXw%`rTjnHlzMo;@)B<$OHTX7tu~p`}$s=*r#K z!`G#yh1Sk@&Vazui$~h!Sx4QmTn}qBB#T7WFA9x3{xjb8K6^*-yVj+us^ccX5uVQ3 zs=Z751qzoh@)?a|KN9jaG$BkIYIyzzd}NaIqCzz2i1U@{apIDJ^PQQ%d z*#9PND2QtR3>T!L7w)xF;e)*5l#Y2h~N;bfBq4v-?IT*?C&0-DQtQ2bKTl&dUZonW^^cckfOMr^en7zUgo1n&I+3q1s zX+U1bg0;KY!HQ?3j=t@>h-YW{?qho)dYHN;4nHyd|6%IAqv7iQxKTZXAP9!&GkS?3 zh~61pB++{py$8{IH>39&5~BBB2GJ8l^fJ1r(ffOz-+S*}cP;*zGkeZCd(Z6iEuZp! z6izVxpO>{crJSK3uOR0gew zx*_5xhNvSy1RgOUy+m=E=~ComXQrz81Ntt(=F`&k7VZ4JGA?su!%kb%xzbj^Q)}V(#_6~J}-%BkWajy8!SNhAO z22tl`m&8T`SSn(b3+bqjwG`jD5?>Oo;S<@7QqXdbtgj=`HA_dIGWvl})|BO?0e^Q- zz~6mgjRZj7WjymZ$#K>|$z-Sm0DOzR{PF8=eb_#JiO|PgRMuKP@(DBpfc$$;NadW0 zMc|)Z(OWK0g(Z|&MG;v*e@W$>!)1hzl*j+H;j6KPS1OkL^@^O7GOD?@P#(a-ei-oL<{xl)Y_>~K*Jf76 zhv-VTHcz=`Izk-*vuJ_WP)F1^F>ynXAQy^bMCYx$CFlVZwP#avzZ{nc}ddMa< zE0}KlP$Hhk%Q<>Q*q#_$zCIcwj9<0mE$4f2k!e6*9=V)^Ayg zz>V{ySv5is62|HDBOZf1^Iu6V6VOfOH#mnTfO=aTq-m=&+Gr4t=0R7y5h3mO1;nEM9_Z{K2T@9AV)e5-vYu*;xE z$%YhyAjkj;77-JIta7?WXvohZip6sMn^iLS!)xGCQ6Y;POmzz>?53fUPUIaVQE#=v z-Ps}~hU?<&Rd|K{(v^>DlfYt}iiYHBj7k1XWeEf`0cgT1EGDKXl1u+cnQ%g7(a=nn z{5G{!MP__JBKwXB5e6IyEJ~Y`qFX7&f#AKIO$`EkE-`66#-I2_`AQ%em;%N9;R4Fp z%H7rIF+o-jYc4^VJj#oC4&2-`rMHaI*Gz7*1OC2yCAUZGEar7ceCFL-peGnkM^kp| za_{2yx$9Zb5G!=ToSzAR${xvap};LXC@u35*E^7mwk zu~_~UhMQ82Wkznizv|z(OaytzhA@+>s_ZzdtEqJ(pv5#g|3-Z+5|ImQ9JKef=a8 zjXV{NI_&7!wHtN*(wtrM2hy2{FbmK!cPQl7@4ZEM|NEiWi5z*@G^m^3hZK|9oDglx zF5(}Xx`?sO7CHQCk|cVQNi6h$2HyyNmJY0!gzw2lVue zYR*^d8z_~Is4j83slI_aeofw`Tiw@1xnIl%zW0Ne+X`pf{b=QhINRs;b>s8?&LbnJ z|A2P*17#38bri8{fSn?AO|Kn)LuxKXVgbRS7sp{B)qh(8-Ygn&Z&OX7V5yvoSMNN> ztLef?ozUi|p=4kCr~}#IwP=W4AU3mR+%=d$MtMEj+hwFrpJdQ;vf=ZBz5{Gkely|? zZ+Felb2_F2J#Dg>FAL`pEfEDl)uUbMlXLXxog@( z32b|*{cFJ?Tp0j2&Bre;;~}Z-q;SUqXEL-2&k}}X2;Bi@RD+tA8tkOYA~jHHBg!4;dU{s);uc7{A`8B2QI)trmPPcL(-VsY8FwI>w~GBtuJR^8D_V` z3vPeYMl94rXKYFN3^fqByTM#~>2H=yM~h*m4?cn)Y%K|KaOypM9~42s8fv_-a)SM2>*?_b`Z@wd`tM4Xf*q zJ~9_2<#5!rmVqAVxPF+7;>soxKC2*OKY%fyONhy&`gC^sRCfzHoDrd3WC~+^0VKM1 zWm;tg%rf6)pA)wHFtDN(PnAy+S`rm7=~+FtTs}j?lqvpu?r8Ina6ZvCIQ08>XY_Zdyqh0~avoFA?Vrxgqs%ZFgJ+ElbtlH*Q zFkjI$T@LYPctS6ClH)W3*_5+YfasZR@34&{8!f2y=+B=n`^JDgG2^342KV#d-DB$G z@3)u@MFmZx(mp~3feleRoj9@;XgwdTRQY!b$+r4_6>4kAf5w7&De*=RRPBBehz+R> z#QsgL4KeveTU9n9X4GPoF!7$5*U&E>U&+q^QGmafY|UXuGVy_XdL1*RMx|86g&`k& zg0A`nu+pZjC>{~j=~~X<$|0~3wzR^R>VKwTpn+&108nD=yKwd2RbK4MEK}KPbN%F7 zMFn6{x@Y>elpMP8H=(a*_~i1cjgRJ}az-OsujZs!qxjUqWr0n&v3N+-p=%j4R2U@c zp>!(GCK47T*$?K%{T=4j)n^JzG4~r}pJTnO5#d8B8>-#V0{s zci?>tQmvgE-8z2WGxca`! z`HeqUjvjy0D`9?*RzVh-tJ%i=nbQ>j)MQlUlk=ZD`Rs{i~05)izUHHWE*GmDT zA7~#7I59%L=CMYp-XpCz?T4QuaeCPd(;IYgQLoD`%6u zxh#?Ou}226a7rHgfz>eK^{9weBxypqC#MyZ4T!;^@~}i*C=HNM$jTTVMh%3CkPCqB zIaBJ&O~V1zGQN!(t{6ktWs*JDga!jPrNi?2Vm|?|+m5J-^=>hTER0;0Ch&Nh zN4c4j378Pe=KK=WOxwu{$_h9Z(<^1f%oX?F7gRE++tYMlsBxu{mTo10Kj#Z@2SeL; zPbxkxEJxhDnNFUJxv=dJ6dFq3a3sQbFz zcLufDUC#n^Fp@G&^~swziYcZoyHi#=O4E2@RTblff^LuV;MFAH>DRRV%k5`at94dF zo z_jx?88G6dN%omc5+Pf&Dvtw`DG&!X$z&YjyCzs&GE;SRmur232>2t>YM}{B45L)tz z8Qto55uA^OG%{>cI+Q7)K~E$RnwGHcGFK*YQZDJ$hl0h@t^k|3#I>OC zk>YUgXxNjAsT-!Odz*l4@9!$UwTb*G4bVOijj}X|M$r7%upE8`zDGxtc6U9CG9E`e zMmR)Dr)4$BL+=m!3sF`snwSqfwro@2@S=CA$f9?SBhslcEIJf>#tCAe!tWOGnqlf< zW-ttfMoW4C@9;PIFX2V20d_Pr`9$G`c#B?AZ0>iYgT4ylD_}>qL_(cG_*F%P-ExV5 zK@NsqJVcM}p(n^iUd+m++W#(`Go|*;@bNYo0D{l%eWtUT99Z(_rtr1G`q12*XTYX} zgLaxWg|S`B?L?keuC<(@8`7Uum|mEE*H730M_F45rbPveLS0ZW&AR-+ zsjhV4wC=J`eLt-ri*PdWlhTW2^E6211V>q;1}ksWyk^BUSw=k6tjLfiPDO#;GRr_( zhJ-HDVkb!Wdzwxiq`kue>EA5;6y)%3*j9n~T>M79lC^oEVqVmp3?& ziUtiT+;-5l*cb@9!E9s@zK4>Nv}(2B8z(*^SZQ)7D@D@GUsASNxB~Z>_d{kd?_Tz*X;Oy1c49yl#qp#^`aZrJ@_}8=&bx|RSDl9;o zQ>ECANM$hd-LD_Gg*_#pt9xM2J4%?13=64y^4X8k(8dqt!HF#aG+H!le$a6EDUzTN zDkK`Eak|AP3A#EZg(eniKatzI`Cu$&5H8Rh9Xx*Z;z&qfs5n|)_)b3KofHwp$|A-+ z-zx#L8dHucB0E1bB@>M-iw|;4_dcX~?|XnB|Nm6<%0LQ5LftCRfWnmVj<|_D6BrtS zfLS0QOIijnPRrgL`EXM2ZY^AG0M5hr-SGhfh1Q?^DK9iAKo{)|Y!{nVDW4>%^SFB8 zwXYC8=zx$O$?HSjN&RG3GE4YR_ET_Vp_^;BPV~?ZfH)W!J-FoaWcn+MYCSa0W*xz- zL6XHEG^UeZp%XlyCY~zr%2Q43V_`~?9QCpZ0@yQ#eqwmc&)U2c_?ypv9uE3Wz^!N5 zM^G4w4>n7N|H9s@s7Y`?tZ~}wc%=ujs2>h}l3p7OM<&0pA1Sol1o5K*Ce~=;H?iR# zwrIXXi-L&1bgp9dTI>f2JLrJp0(AV&TJXP*O3z>UgII^EmE{=$<0)lPd8CMr_>B?B zEhBw2r2}dLeXcy9&fMGh4A9Dw*P51-*Rr<|E{57<3^t9M{I}t_13=iFXsXMdXfBn( zw_BX2SGgcgwr(h>5~x5sXl~Ou)CBE14|iKu?!%t)W$OGZ6}^~?_`P|1exDR9$piY9 ze^|O#ygWtyPlktVsVm@-z}eE#^OB=8N8@2Ul9zYoT_RrO&`;nkq`#R$2yp|(#0IQRF?eACouEpU-U+^p7rM7wWNV( zM;~F_!WjncC-2!=PsGaLnn0J)s@R23d1=qI!xHtAjoR!dCjK@IX*5zzQ~vMe8|O_I z?6{_X%~iG+=PF-t4gCbwldt^G|HHz|FNO%m`nq0v=~(PuiCE5K-%rCx?!U5(0R~mB zi1-oJ=(8hz;R`jF{dYI9F=2Zwh9Us2Ve8fmj zR$v?}Y%#FNFHV+WF;pd!O!naEE_6*N#B{?Jg#oZsfJoLtV+r#ooL4Va1WEpJu4 z(-dGo$;?GQ?52F@JMl_zBYxZEJIV~V`o!QCEhkzk2_u6+OM#Kp#~%zk3f!$~5;OWS z(!52l8^asElwB`u{vIn;&pJ4NNIKi3xVUZcu9l`-sMP_##h>12RS05#2~WE2!=P!A z4(A6!hp;d_KJb82B$Jy@F{zX@Ae<>*u>pX4X=zs0$Vayx1|Wo$TvC7kK8HY??zMW8 zU|Z#hYZqkJd6SOSI^dIzlI?oh@I}%)rT&3irHuN+vNo>G!$Hyddt{^q;ezumXBG)YUCz z5jO>eN{F_17w*M{?6)s(qBHB8%G!9?MaeZUeKr5r##t|<-HV83@7R8Ol3VSK1G!zh z7Z~>Sa^v-F_|&z6Liq^(2q+w+YP5K-eN7S{!XALvg!5ZwQ$w|+#DF~&ZWpb!*Y{d= zUU^!#h(itTl~5VMMeti&_(#dVgUmf;xc6rSEs4j>s}T{RtMECQdkv2gkO3;&t&$st z`mH)IHLbhOb>z20?L>4g^E-vs2_%6}0!iY6)I2Y*-aqgz>&F*}mzWl z;fr^|mE!*L^h&|lsyEy~gOy`%as6)yd3ZEOjyBy&0wJUa#q0nid(TswhA!i(2{C7s zF=qz75@cZ2^{~q@;g7M99Isdp?`d?dL$m-+HM_Y%^p~R@*4k6v{C2fJn)WJsL}cF2+1-&)32fw zkT$E}XiNfsrrL|$?Jw&C{#i9X+wS;4McVfImW^1GL`vJ+XYb!+$xO}^jPFrhML}m? zJExp@3r*5q3>Uay4c1+zld4UE3&;1s#p`Opf5Qh|)AMk7S{|Qxclcmrz!~TEE7$&6 zN%VEkUd1o`M6XsmqN%_?kJoJSS1f>&{q%-nTcW;YNsoKgsvY4}6gj@y<0is48VTkg zwU5|N1%S?)_=}P6T^fsSj%b^-V(t&W`>rgV?C*`V2bH&B`0@Gv+nwsaKWqsZ5hBEU z4Nru+q~cz0B~pdDKBRhl$cuF3vs$qNQGO3C*k_PmM~Ks%ZH{g3rsV+Ob#ccYMpK8E z@}I-pdpgYym_Oi57@#y8pE8Nw>}wL`W*1oH{MIaN3uUupQz}G&f96lJ2&dlpQ`Pfo zA@r*iHw>Cx5jFAf&J!67d>C435)@q&G_Fc--KuMS4rr>;x+FyO8x5O9G>HS!;kWjV zBkaE8<{VAbw`=Bn5l#1Fd5!k>?bLA-4??l4OV|D9^Zo}1kg8+PZO)P^b!sT1C zuNB`ey5J`A3G!WJFSasNcwfmN-#kBQtMhFmO;vaov_{@&o=EVIuK-U3&#o6gEFnR- zoFnDrYH^g;8&+<-Hmn&&;g6PZswC_`t!v1(f7K#6D9IETP@*DD`w(2B=x1Erj2;t# zx?O-&(~rd%U;b`Yj`hE4UmnlhkMU}`rO4~5$XUoHJXHGk*4Ew6(-^j3%vP6yN2t{9 z46mf~XmU>OiF3yctn|OVa_KO}?QDyiI&jLnh{@<&G4Q{wXbfCyx;g2#5Y`Bj_{BlO zQ*9v>*y?N2r=_HGNj$s2Usd$ED^DA$T-LjC^dc%v8>$2#T&vbTu~+#1`0JGR*HUZU9t2Ni z=p}$@lZkbgqca=K;?)?*FZ?ibg&~}b{AH>I@CHB$eA6%dve#BvCDr7~8)}Qwe|#dr zXKAr81G)e`;jOhq0(X4at3w(^1M0^@a-on1Hpba-IaNHqov83kUiErjIiU>(nHZ|B zUOuADzK$#fXayk4xFc;ir0^%b_azj*D;JlC%1HWmzC6YXG6Bjc^4Bu4cYJoThJ??D z2#N-r&SDj>D~{xoV|jrhN9-N%Kv~4E$jO&);XQKSv+Z#ZHGsWXY*?I5`t&gd@pVW{ z_tfAw=_EGR1_Ca-%~yP8nCuaem& zHduLrq~6RfUd<%_r3Ni)WpZi)!USrj~HkpNlvGHMst0i(4!U3@V(Ito1C$Ll@J`sICmX^~}c zSriW`@(X8fR10ev=sXd5Llcs%Vym}FCIVK-#A>lH3i)qT|0r4IF0ak7Z0UOvn&RCk z_iTPd6d`ce8(63Bnu`Ym*<^A*;C&+g!m{bos}e2>6ocVYqk3!KXoI#521MN~JqS5< zEu!3p7zIouWtRw1g@7xV?&aNWQ=g~?uYb~j!4~xN>M1qA-k&wmB7Xu&)qIl}|K_Dr z&8Wc^+v$}VDD}!Z#hjWP4Wgilo*0jwtpAKJjrWIWr#`?DtfK{<>nNp%f)Cm51}Dfn z!j3~|b^2hbYd-S+o>ad&x)Mod_X{>CN3^&u*p@fDJLV~N>woTYpT=Tsy>KscGz{U$A_&mdz&Q)ab0Q-a&>B5kg3q*Y?a>tf>8?Um=!`Ay6dzqXb+G4KQSkN+BX zx*Ljv8yIy$14)Qqy#^VZnnc&ZrI`b&hlBTz|LoKcA`bTF_RjkJIh*h44vi%7OrhbD zIbn(Jv9DfDnZK0I;2mv<4HC{{F+VQ(JPY_44N<=1EH>xN%^Cv{XAq8(?xNYD!b!4f zg;;k3hlAWld)(^Y5Khicq|gWe**Wqf7Q&I%qYZWGH$d{&XvM%FFW}bn)K+5pPME*o zs-%$CNnY4?sI3`d9fiOWFiDhL;)*hTTBd1NWjioqMD>r`@rNdf;KppSoD}bdUVvmy zxkP>|AXPCgB086p;k_j+lmQk41io^msN#YPLCR9X7u=lz*vfa$@fuB2jCuF%(&%%l zl#>_I3lWVSF-|HyaLE${V7xHzWITsOI%4REh*G0EReM8+ImwoaHOXd={MKaF^qWp( z*H7XC7C*96d~}GqRjLMKFxwUaoFgpDIwe`&p~mMqXA?QK4p`4%V3(@hK5|aN=#L*n zaCiM^EZ}4G!n zQ)Q>;@n`q6Wd00erx@F_=4+ZLZqY^)GFlI%Cz5e*_wHzDQ}ui{h@cIzr@~6p@_m{*C3s!uVIUkp5!YU z|HCILm}}0+btawlOpVvV{(;IvZ$eSW_Rse%Rz>TMNIIz=66?meXF4T+3|?pd z4$i#im%Nt0wmV<&`8fI%IWVB$i@*DgVwjhdxVjKbTWzLAPCKSgN;_G6{PO5sRG9lb zeti<E(nu!t7J*4|{c7%RDTfxCvu z!y#(;At1R}F#%>T03UzH}`rOn(Jg0P61f|+5G(|BIK zS9e!DJ!{Kb9)EB+J^i`j^L1z7HrYt{+Q{YK@s1R1Q4CmFy#6UByh$B!{Pw!pV>e_AC)m|((bsnJ_UffqDwYAGfZ1;Ymt7qsM#d!%6|enDyT`{U0@UgI;%^Ylzop`L9@F>koL!F)`s-}9>4=+ z<%AA`_axFmH%!}Jh@6(IUh|6W()VwP*ipm%@{jXRcP&%rkORQMP)LYjDUh!Ka-

AA^b~8_|aWRDJmYl6z-f{ve9>_mUOj9BWUv6^vE!8)TK&!ren^& z%KGuItJ}@xn(>6Ps>qDKJ4?d`vFF@>#mntlU9S;z%6zLfpUcBL_lt|W`v(Z|o0nq_ zUMz9In-)0n+8i8*8G9Y|k3c)wG-B&Em2D!nkfh^3Zh(o@#;D-mdhuW?Yq~e{X{U!4 z+)<%j*&HNZguMcdLyJAd(3*p4UX8G|6~@GtMHb0lmpH{$FF=Xf=L8P?R!jug-i0P2mYux zOUh*^J{qoh87jHxqEua4uw!78fkorL)c<+;>Ui2Vab$OlTMix}4{KTO1@`JIUrjn~ zA6-=MPa0|u!`+TuS)(F$7E`h5ZL0vgwIvq7irq3W#eFuVb|<^c`(SN|O#n<5Sx3(xx|G6)}za6F!=&1}jZQ0wXw>;)MP; zVvOToPIhh`G9%Xu%HE*o(OqJCtj##Wqr^ukrWQ;jno$_^WnPp_< zvQUR4vatGj(S8}EdPlG8=5l2!~9BmX>-o)UP+x zvc05~NEM2s6EKm|6!rd%Nj!Pi{Lt)6HF{WieXzB3&QpFsb^Ou+zqvA%yZwWKkeI#b zpw~4gy?~|ZuR9@A236dVlk87iIiKQ;1AYJTtv70ac}_ zuUX)KPw3;;Pj_E0n?eIDG)>^@sJQxl)jNcc(jv}t{a4-jYUm-ExRjM|HD67(2%a3F zSY7nx?0YbZ-gsfiWD=*pr5mKSouan}3f}h)#T`!d zT#G&8h0Kn0z!xCd>L`lLR=W5L|4khKjjEry*9587rQ|s2Vw)oZ6L?+J)!z zP^p-mN=qTDVDpP}`*T*5SaHGSXg?{%{2V0W>x zet2+^(`Zd3sD&2Af2DdiC8C6C!3V?&O!KM|47~+f0``TMt*_*TALZYC&+hjAP$JR; zzL(gm*CY`1BZ@au5b0?DSaRf)GBpxJpoFrhW(y$zD0u`PH75jFY-kETkK|n{<|acV z0VYunI`3xh%P~QFcbIeO3*umU(!kW0-=zU>6@$vH(+vr22?+=FTy;2sCx`Oh7$V%<}(et|ng_v(Y55xL+K+9Nm}ol2^l z)?)xIQ)@*1DS!fh{ZLFt^_%&+Od@T|pH{ph4sz%;2&7$r?tfXh@MBqO*KXgQ@}+n} zK#M|D*A46laJ5?n?sj!}<=phT#3OHTd$tH^{7~$oki#obz%3xK>2#ME=ze&LRQNQF zlo&SGBF7);nUa)k?Ur<}==-wD6qm_Ud_~`G4{5={%|Qa}_7Z7*UL_rT7oUDa{S9pIb99^ji;+U{1o6d$Bn zeeo(6?^5j*j4nagLA0;vPsn=4_Jx~8@uxhFtbQiY1j{FujN&+8MRHHhZhv}jeU&7P zcRzC5EEgR$F^zJ=!51)j{%h2?iwWx9!&8q>K5)}tMfX8a`*P*G%PWy(mTR@v3$<%7 zk&X@u8T^b=N5d<@(uS}H{~#DUb?n0b%UO)EgrWU-RSI{=Gx9(t)z1_w%z%%i5KKLx zRbL1#oS%n#Lfm28tKUuBq`Ck@vUuzWb=waBZNa<$G`&{zS5*l-B-%aV4QHj%sV4t< ztxe4Ug$Vh{?V`h69MKI;uRnC{it$Yjek^1D6e|L>kQ0#6Y%;dO>CNzI?vcP<`{0+S zXz<)Ft*tpy`h+zP3?)6F)S~X+zOavY^gcZj*?kbPd=NAJH*3uDrTAJQ=Ymi&^H`+& zfxDi)bQ1SxSpq1z|5;L{{Wsv;C{R~nzhl+g?H}-A zZC5kioF^0INC8gvAv83PD2ia$g-x#FHRIK9uHYUL2|W8gdZ3Cil+e152vB)W_(?IL zD^k798WyN9xdo`hA&Z!ABI(@LBM6GW8zWhk>%iUgyZe9%>WJpHe`-R@Um3K?As*Be z;2MaQ$bSmt?ek?ZV)cWIHw@Ue%M>TJmz;Q`F9+l~31AEHtyfy}?T?J7`{a{7z?dUl zl7i&3LjW7STGG*`8wRZ?jx$DXqw2uD?6#|#rD99UAn()hk>eyI|K}2h@qil$i~{fn zACj2w&uTKniRV9yxdORyMs>sVJ^?d=ZCTO&>Btfnrri}e@dNNimKO(}CNLkLX~;4; zb4E&6vS$Ej#f}K#C=2{_a6JafG4^V!p8l_5L0BE@l$k&xQD*TpP_2ooX%;$zAzLn4u3;TR~q{tVrtMi8s=y{0Ji ztqy7fUTWO`V@99O1l4?){$oyEjW55Q1I9&=QwCJPqq@g@ORf0rAnCC~@YGPO{ zR;o}{o^B#?f-&PszMAiN+A!w7rq4P7w%2JwpY#5zlLXu&`~fa@kzf7F#LB7ZNlA%u z;qOfp0%?3#oCmCXJ@@+dsi422q}~NYS7X_d3KC`b1$bo0O|}O%svV`ljCEbQWmw6)MOXuMGYn6B~$Q6(p5ZR9^ib?z^AySDwPmq%!LrF=Vnw3Y2w zSJb)g+(NC@b*!bG#|;SOD0oj{riP~BxM`7t2%+f&w7lsI<}a($!Ba5ku=tbT$6%+K z_Wx8_CaMCm#9BI+b07Wq4Cbtr@X4POvZmuY+NU#^W!I#GYZGOY51#Fr#*Ack86F&N zFVShAzOrMHZqW$#pkfgHN-y(6$b%PV!-lse8=%MeRdF!}((()+FM=o*OPzX@9^`Tw z@zQ5VO7~t;CanRjyGA^Wx<=CZTQ|KT0)w~zUxXZ_FOqHz!I3hu!^Jea9mM;`OI``9BV>S5xoN&}=w%ASpVIWF{Hf-z_n;;+3kOEtCAP zRPR!lEB=S;xlOn0le1uz>!~LHACf*-N*OhhIo*7wJ%W9q3$-@jeNnr&{LI-^)n&ya zRjAV!I;0OmgQ~hn5&^o`Y-Xh6S~~A0@3l|(2z5v&UIT%a4kM1FYV>TV+Y9m(l_%^F zn*2Yn`<`cAg9J=WCu;)>26ymP>kJKzIu<(m7yq>`FaDZe>N{kRNsotPzk}kJ^=8r5 zf^+SG+z`Y?LJut)O6;kPV`Q2NQhIX~2v?nMMyT5NFcw;3%3{3+F%IYwy_7Dn;0{36Y7)(Ra%2Eyp zO?Ci%?>VGAC$S!eB)tX#owtABNsOKqmWTH`X6pY=hEZ&Zg@yYXB&lWpxw_0UP{W)m zaEMuH0FpIZA*VV*5=mtTovsdjF!`SPTq@3!4xyTQ1zcnwM!p;-7TRkN+RT_Qn&O~w zgqMU#l*k;CyyD+S@x0-LOqFZ=gTU&tl8CC5bDU{B(UE7_L(GkqzZ7Rb%~;r|H1C^e zDyJC_rqNV0|8GKSLdUFC!)HVBiO3t=A3glm&_AMvm<24KDjpzRS3WrR z6%ZK_L!N8+;!<5Z6Y-9JRw+z+E?JZvplBmnj*)Ex*G1c_@089|H0F)>SHS?{Yt5~D zt*rzqudM_w9eOg~s*C5Mr}T>o@zC?Gr1&n)FAq#4cl3wyaQ?fpsT&+y#?R}leD~D5 zchr_&BtCzZQoZ?$-)Ix0S%}t9wVHvm*6Eu3^)ZeBClfgxFum~{atdf^e11|T{?jY| zUrJZfLs!(qm37o(8)c(ul7?T`yzX&kUrxzl@}vCx4YOZt0V7_Z;`}E7-W1HA#I3o% z-z&!<=2Jep6=D5G8Dj-#lomad@d;xXyVo)w`Eq`etnOH${Z zky6b^qzfA2#GUh-D{zmV8}z%i`nq^m&G{>hV6VhUPlb{W4#<}@9am36#+GIz;AfU{|4LO6Cl{5B$1Zu zM=PEk2#K1LolQjtpa$xahRrO_Yw@psn{w0Ki2AXkD?@+4<$;^;0&afAxg{Q5>E^tp zQH~DlUs=?|Z7)z7f^EmQdaq=+a6> zd=%Cz8KT!GARizUWVc<{q&U*o;y%t(?vnUJenkqMzzATeEgn(;M3SDS`*Hu_l^o(X zsr36BVG<4*|LO~{kQHJu$lGCT#>WXxRudme>1F`kpVM-~xF-SXJSpUdMtx4@kG5?O z?QPq0yGQlbH}{H??ZP8-9(x=XiofHQ8=t=Au^g^?+dPPjr+dA*a|kGfEzQK8rC`}W z%I6FKx)KYxB@#^$*pfp!1zODeq^#-{t5_*2FEmOCY|C5-ZOeEhWw)NtP}yZyB1sG^ZR&y6G&b+AK)aapaVEIJt1rc37a_9K8EMEw<2df zDp(M7Mpzq=VYoBKdAU=$bVZb;U34%>43qW&Z8FO6IGu(+er*CT*DQQ4oh_C;lkm86 z>i22<=d6TSfmm|h6Hvu?u`5sT{sYbMPk3r4lhe1K(y-7ElQTfdH=wvqGf+Xz9U`Z9 zO(=m_-xo`6wmve&Cnx!hJ#1NII0vNiFQ!N}vpPDa# z^)GmeSB#NO`wCIiFB(nqrE{RwfNW;9OHed4X~sV&uiM4{nbP9vN1(_VwYT%hL?*}A zWaNJVUySkUpgp%Z?5d-O~sZxKN{8vIy;*)qcEyv!j#KV9B`&9+EQ4P{O^Kez�sZd zesYur)}@Zn=J;p)3|vkUk;?++Aoh%B045NhckD+(nAYK16QEx#z0j91`^gGRXbv(3 zc%Yjz09K@H$qN@;mU`9iQt5tXOHL!VvCOpoqg|OZ>@AuzQ0!BdSwsQ{Y3SJ}u+Uk) zS!4qa1Dvvk{+t_6X+v^G=~L&Gu*|k~qgE}_RG2hMW5dc^;=>HSnM=ZdA>Yms5nGYe zBHtj0sjGjm4k0nde@g%VRKwaHj~o|t^JN@j^L*-(KlQ(zdrBNjri4NiRI|lIlW5bw zn3OHkpvEryVPh6WH{){gMER~xqWT$r1PP3uFqR2JNPh9u^xCquI#wNO0$Z(n4b*Op zqh3@$2=&lwJi@HVI4!?azq2CKnCO0Uxm@Kq8{97kBT2+JatIs&YduYcO6m+WQAkGJ zx?wh&xM-STZUiSu1uB14#ZH}k1>fhkZ78YhDZSi!;yltMhGA zbMtLD&I~msn|yV=Z0Bx~f&tUueMKOFQDe&gKIZlOc+u+Y$8>p9;&?nO0p+J=qi z;t>fDQ&003ohE6!s!#KAdt}@%o zLDJ;0Ex-wm_Rtm~+8uDuHH-KE1Wi-yHQsmuLxYX~tW*07DUP~;n;CDWvE;}SKd@IR z-W5C*G~?B{Yn$f+;Mn>qrhn5|@S`}|FN~99oj0?^{?>ELWZI-iLH}+27m9Zjh1?)yV;92V|yRT|I44hUjS`HX$$j(f613K zIAr+@uK#K_e|$%wjQUr?zxP5&0H?>^j)|sxCj|e5wwGKPoN1yx^uJQlZB_F1iXQ%?r!`x>+RG$c7b27i1$3w@OsJjd#HG;keK;~0VOP(6kns>unWJ>m5 zqtR^w0XZuWkXOS`F!u(|>hUh=bv{7D%Id{%adWMSFj(3xC;`NG>5HdK%@%`!5WXmO zKV%@Ii~mR;4yW`>n0qyQ=Ie<|mbvx?NAdB8Z1?--hx(Rz3SaMn@1HKc951rwVvM~w zJslqp4OJe=HHY>K-o{hYGqavRVe&*}ZI;31zjeJ<+z!>2?)kE}1?eQv$&1k5a5lu! z>|NCZnR|^1CJy=Zl6erz^Sx#N$D6VJJmY}Nv(%n00-0(@K|HDOXC7Bz^i*V5J`nU1 zs?j)aNUM5opeExAnd%~i#Yxd2c)~-h7#;(Z;jJ5#1HY-U6}O&w_+elukp#kBFaf0p zf+CDRHdgk5iAV<0Ful2_`N2G%WuMw4?ho#6n&uFH{~laV2=;CIeW^DwU8N6F;GHa1 z;N_fSWrwntxup4rJ@v5^OtFv#Ty4&3-v;mOguSQ6mLI@qaP_7SmZICoK>*vlb)24e zf2HP#5EpNh6xE&Ho7dIhtj}HtwCPRwdtVOz7FDUiQwC~XYSjIT2-^NwEiy!Mab495 z>x5)QL}~Kb&3~23k2g~8??j@Ps!EosUbH3TD|U`+AtB|4?x9P_Q{o zTulOS=(%BNGzA3wp%n$pA{B9L-3<7i5ZmnAH=b=Vyb!_r`fn@R640Dko|hji)pn*+a$4UA%00?#|E18GxJ5tv~ULo6p8<%&gca+z~ z(WvI7zaI5bEK3U}6Ny7LbBP(d0mhOQiGNOmEJX!iBa(WI=NH8Io1OuWN$Z53Y zGvsKjvX;`4#!~yV(!SAkv90;lpX0?!Z3kJ2d4VNU4gC3jN;J5Bm z^>VGSM5e%r`hb2J@iQtZeL;NGr5HF%96-VQ(~FoHLnfYx%Cp{i(l7prgZMv&NyUmg z&~#?JCzT8RaA8n4VOl?U;D3s9Pe0}Ioi zKmrx%B2sVJ{Kts-$58yVvASL=P!5L0P-hhgxKphh?|UmsXftCczTb6svI+RS7@U6D zsq8q|ne@3jE`1N(|NSMNu-*RV?{EI{BZA3GuxED18aC0N(8{r&4BIRM6J388&S_wD zczwNm+3}xdp{$ecFyXs_94w%LMePYOOX7lHiq!5_yBOYu z7kdnU{R-8Au&tYK;&x%|k6IBz6*@W(H`c92S z&=|IyaSgk^1!7CQfrt>ZbNf603lER_%51;(>xOKnx*8q&Tj@(p9uwL((EiUnGI(qL zymKwh_g3GH0&3{z>i(0lxqJOns{N611@N9X@avp%S4~4+Qra2iRYX5LJ@{iCl7rR20lE}JKps}ULxPH~C_A|#Ugew_TvP+co;fiUc$B7L zEWY=rjqfhMVpTk*EVW5wAV@08(h<0=3%Je9*G48f7`z(7*9O9b_$v*JV<2BDon*_2 zP3|k#`};J#dJqzNyH}{4?IvpZVZ4W$0U(4uO``$gaPV{fu46Gv9XzePd$^IcY=39! z(pLu%X&pqT3>+$GSkh?TAIp&;R`8RCaRHG%ld$s3(7c=asm&>B(SWNL-{*BX7@~`+ zHsJ*3k9V57vP(dxh=J7ZlDZ)$+b+Ia{i)rFhKD+~aR=h!a8u_+Nz~k^OV$@G za;vT&O^JdM6VCE%PXIrDYPYT7F=k=AJPvda=FL=_43qPhBfegf4vg!U_x`MRcd}^) z(xwQgq;+rIGs{o=Gsf{6Hf=2VP>R531&Jn{CwLJAaH2;rZ{JC-!+tcZ?Wu(it>VNo ze-al~Hvt5f2GR;xnax;EdYL3v1(DEf?@$jGU|@xyuuM_^A=DYr?a3EbW2FTAB-`86 zgT5HSK`1PN|Fov3hoH{!wynHA>P@5W9 zdpy+b0i0J6fJtBNBzc%jf|vY^td5`w+Wu*}LV@Wxi3Q(YXC0SEi61tX?=H5o6d+C5 zV`=17vE(O;0XNlpg{*Vu-6j*4<3eR1fk0k0?-HgHE52$(g`93K-OX;rD8MzbuQ??Q z?E4^&34ZosC)z`2a_+Fay!o6h-rDCIP+*_Vf5IX6G*a!VpO?IUx8hSuW;MASM`N5k!Z_* z<_L;J!v30lS#C?p{EIxsnZ1IO-F~k!vOR9UZ=idG6XC0D@Ty z4Ni7o;c5)xb2<$R{S&JVsZF@#s%q?y8VDWp=j9BV?B_k)|w(OO{S{=Nv6eekn8FDd?`C{ z{E;|Til+&v0XHfv#qJTQ3X_CTY@26}lpQ4I-TPc6A_;A`pSZgpGO4<1D0ENW>lBwP z@cg+KSRN`_cuQI0CP;am*!U3?_f$90Gj?r-VA}4{ktY`aN4FXvK~0w6H3=`_D^b8* zdAD|F71yUE;1u$3Hy|rZ$bSVOe#;5UM7l*39r;8p^093@?NWMhwq-qH-bfz>=OOd1 zgLX+f*RW^1#)tmWMVmKT*(TX0r9mSao4ltSt!tq3Bi?~`174of3vQU~1y}Q_Wcj%K z@T^Y)-wMJjR+zFOt0r}oP9YRK(QP5(>PySANy}hA-@;4Jm5(T_OjH{{t22>}DdKmf z7!*LYwSB7KF;%@~q|K=QT-iEvLw1P2we|A#!fi!GL2Jc|1F>%6UzE@_fQu2?8TzfG zPbjb9>3|G9Hj6TwHXePIX=TRDOTt5ptu65Dr32umfr_O4djg{Lb%LaVW&jzJdp8nP z6wcr`*4~B+YbQFq>I2o+cT@4w?VX?Tb^6?kHT54a_(K-_pLpB=C?u@OZ_@5AM5z4U z)wjq5R%FtX1sHb5g669mIMv#Bju52Nt&LY#BPpL5W|nm(mUUdi<4`1V1zoQfo{^gd z)qCIHyZN=Fr-gsX+LaLG>C@edJ74NS7nRKC@t~8mMg&NG>J_Y{<)<vA97c(@AR+l#FsBL68|Rrhk7=V zEZXM{G0fc0Ox(}7-o&9IegQDO$frA<8zN`^oUmPT6?aL`5Xhm?z=>0ul*E36~tz?oX*CAhL*N+U-f_^9E(IYyAx(q~|~oTVy<3 zkr*hB_Fyl5%Q~*PKc~WqL?fJo7K2rI9v7!Vh z+cx)A;V=~3Ebndp`n3@C_>tI7HlE+plMux@vV;iFbKFx9td{`Y%z-sjfVco&+SKN+ zlJ>p(!=0U{?>h98m)U*=E6zPlXz)BIICX=C;h~$?u~eeR|88Hc+uvl2{d#9$^=LpP zCsJKi8iuC5=+dFgb-W-NDbgj&i)wrm2jOqDF~bxqz%I(00D}EaCTg@pbFQ{W39mp z6TG-#g5Q_UIJ{he9BH&UqXOU1zf`$Xb4XZe>1&tsNuR(lWd~?5kzsZUS$(x`tb^}R zX0r5>i-?5Bf0Ib45k;SM+u|A`*Z=G7VsiA7mq3Da$}l6s=Cl6f_SY0;L|A+@tvF1$9 zGbX8sAYoUL*`y9UWEe~#tE<56+n{NJUZ+Hr9IHJ@7d3~uL!wn|*klH8L|EnYubF1+ zP5@u|BumXe@ve_~YR_{G^Pr-ZiUR7Tw$iFtuc4IES!UuIMHy=4nzU?Cs?U9KFiX{7 zB`6;7J5*!yd75Df)Xe#XwLS?o(H$|(#A9-jQb4K5NLu(mw&seh|pl`QU@R@-~Y;IbPoYA8S zG~hLpYQv@tb=yi3q=Xj;7G1tt8)&K)nx3xV&jDIiuA>5*l6ALvfkTyp~N>hzZgkJtz!5$L=4Y;$3|C zYE?rUF--JH!@^YXa+w_7=0mLHVPS;LtkvZ9hq;y+iyG9=UfD>Ih~&d0xsbR2X%(2I zYHR{`F*0X-CK08A|B&hS{yHjeZ9Y-$2B1XYCQ7P%t4kAc8NlQhG{Hn0=Po*2qP8W5lmcR-4 z8~4(pYi^%!3kBTv%k*mE(JDjwG2oo8TAfrRaJ1m?^PTtZ!{5^gl1QK_@OYUVr4{^S z6(Ax=)MC;r^ZEb!$B-_!9^NurB(n~*UpmV?N+Yqd$FMZAe?Z0Jn*Z}(tO?HYQPf!r(!9W%oDV?PlD#Xg&CI-nz z_Ya%VO1-26l$e4ouLGMHzj)i?_~+W*f2ptNW_{wL)HQRX$)l5yP?{<#Avl2_wRT9RJVboe%AoHoN<0dsihoAG;~PdnWWd=Ek|G z44|--Pzl&O2MIr90?h(uzV&wvu0Q0bzDT zKVa+tUKx(P#Bph?R=<0;KDBe=O)M`#@9rH5^OI;v@iUmyp@1Ek|h(wnT`|u2A;Du*%z93BE^?^ zaTuzhOtaj|{zMf^k(&weerHvt+34>0Z;Ks&kRm8TjUEA3Ye(0bPGvE+{X-z$--icl zf0J!{cfp|#W8YbO0vwAC4)BQY63U48QFhj&Egr`;u2C2b*W?WPdkO1CVuoPDOCoPDz?}W$7PYEX>*ErOrvt8||*tSo6 zEC{f_^nV1%l92e(B^h6O>F7>2C;!l9Oo^Kh@4j_wDV%uM2oB#|QQOF!Y-V%8qrx{1 zJLdB@2F70K0BX=tXPZ(}j_2M0@`Ln}Y+-n9=MvCdb9VG8zH366*<|?^S$JAdrTj(c z2nYjjop_>jQFydlBSrOd*k7#uzVboj;rN&EWcIVx_VbAvoy*+Yx%!d6!*GR@yN!SI z3*$cb2fk+~u^p*5O?Pq4KHlv{ehisoc|x|VKP4p2@NUzy_edSr@8k<~D#m-c<&_fI zQU6i+#0j@Gvp(*(Fh`#5Ca=td*R=q6kMUvlMA2qOM#(&@eE{>!uGad9$o2>j{zE!p z*&KF*e$5zKyPj-5M2HK^<3v$00CBr4M#bt4V*r~^>8Y^-$2t${sKB@I8NjdZ{^s!a z^@-)oJN0oL*U5>HnNRrm44kmPKk7&rfIwLM9q2-c1NACvmS>soYyA8^)G;AjozwA8 z3Gw&Tli+6J8A#ac>m&WEYBf)UCWiV%ZvNWRDhTIR^Qp#HR{XNY>onC`IkoGzR&?BGm>+nc;@#&EKX02h!hTF`>%!#G8sjd z%|nyVrs`XkwJX~2Na1ITaljwnxg|M2dc{^;*5x_iX4(UVOL1(wc?YMeSI=2uQe`Fz zfjSUCjKryV@nq=E#G8tZ6E1ar0y3*CAU;OnxzQu^4aUKJTkQq%l;pJn2l9I*(+t2AYy<10+g<6p{O0S`lQlY!G9 z9uW#jS_7d$H_XeF7*x>X5AD=-})r?ewQrN-9~Mv0l60EBQt zS#p9F2=1g4zX9r%eEQI{zievqZ+amypwu7XAV6L_2~ZzZf{3NPsI6$vyO~*7y1wyl z{StO|TCZNh^O>b@ox75BwA?E#PYC`=)>dL@tJM}2M6`48lY}Wcckv)&ejrN9$)()c zWB1b6zpm?a=Hx*?>z?t${&+f%99;2P43r~S$!lZB2L_>}o?Jj-!97b}NChnNcU;SE zJ2T`NuVs@YSUlBAVsHBp1X-1GGMlI3ff#DwOH6p-OI#R6GH}zT3Jo$4$%dk^&?v6| z+$rK+q=Ye;+?Tol-6}B{{lWzzF`6UXiGB^BEkyV-2Vo}Ab9KSl*__Oku_wDzivY$U zJ%s)zp7f*`zBHc>tq}CUmXe+!hdqd$))#>4kCNs`NId@-(rQBIY`+uI$`4XHiNYY* zq?2~o42$-bf$n4N{Z$F93MC&OA1#mox;)nZeL4vtlL;~J7Zdgq+#|F%9+g#_V97j% z5$Hn$rL%-LTo+MvCroFS{R>N}K?)^%rP3rYkojj7Zs7PnjD|;EvFr6K2Dgg~E6<Jzbx(3$oqPwf=OB)Xu8-C%3yCLHglmENp#f8<4S~n|C4|AG6m7 zC7#t-5y_VyArxT)hS-3iW+bb;WrOb;7pprhayZ`x#tpjQuygE?4imR1mCtf7UHfmL ziN|zu`S?-NWhBG`SO8)}cHFQbGmdP5P^z>(o1mO-z=1L>M~xPuK}ic~gj2F6UiBLe zye6Q9_u_ZX*5PUa+JD;HF$FifS95dMZs-4pXa?qUu)A%rxu-=9C!cY5<3Mmfg8@&+ z1;HRcH(<*)Ql7mzznd}Dvv+=aJoKw0u`P)mYHNA@e1@t_Ix`~OGc!U}k2C3!{615` z$@@6-@E3c(QQJKdzOn^*FoFMM)M}crvq9U3WIbd~v)>_4BO5`maivgv#s=og0SQ2@ zgM%fjh?3!krGMc|yla<)_oD)~V{Di;DKI{9nDDj_Df%Rd+%7mQKMKT+eKv&!z4nIc zNiW3C<`rVMJz1z>_P-r_A$5QBuUUuRA4e0{BVf-`a=fQV7TEED9OtEjn_hyG7;+AP zB|%O7?$r5d*Isy8SCF|Jtu&NuYsEmLvH&B;5)s&BAdL|&WTG1Z8|LTV`WfP6*`SoV z)N_#oY!LZi4{=R5vDoU&ldaxu^n=EG^;-BWxa2-t1>uMPAw0N&;8zkm2SFqYLjY84 zjl5evH?J?+Rj=2%KXIvfq3(aZyVtY6d9uIZ_F%g7*4L+bj6s^m_TNjpf6Wa80CH;! zON?vsv8}wuLxzmYj^zh0wkIyOM`drJVMLFVtucWuG@gxjj&uC%65qqch;{p-^}`Yt zIv7)i13Q?H;!zGe(<5N0&_GzmjRDBC-LU!Kca$_9c2@N`7KNv_z9eLHZQS5x~Q~VnkBpIQKmGC0&}M})n-E8IGZ>d`{w{lj&de8Z~zfra179)t5w8L ztQvFnO_b)_l^CuA(?u}=rUXFLUZ+7qjAM=3yUO!C z2?rjTCg@@US>+aN0}214n)Ze&N~nwlpd`B8>i+VPH^dkKvs{2zs`cML)%1!M-e)Pd z`~_ns-D5uTkzZZ|`ZuGV4+=)7cc~?BV`EPNn)-GeFtx(OJtn#MyU>I!B<=}=G70y7 z6jGNI5PweC41hC_e6E=F6x`TJ%4aRRWxJ1IhWOLLumNaXIPJZHablblp($(YJ)0yU z2E^YS77iq2rM+KWN{f?vVaob6D73mI@Lg`%hgCQpCZIf@155P}IxnlFk+b7+53#z< zAxZ+*#dg$@7z1Zbzvn!%Pd_%i=z7qqD@5Wuwq62<@#}t2>M#`IPg;8nz2@-UsIUCUvA%~eoVf;Q&<7W?s z_)}U+-efUsp-kKlzCz(OmZpJCcS#-kGNCi~$G>)NF-zu3Ms6-HgMWOFigAFl16vAN zX_&2{GJs9gNdKL=B8kYOf4Ws^Xq1WIG&$IdU?eMJE3ty-%t((P+zAQL; zT6)3HiFH{q0IbUl}n%GgEE}LLi<=#0^CJw;>{@=`u z^z>{{mv80zqw^;8&KoKub>2K+IK36xhG=*gXrS3gh1*NMK980hCx5GT-I>iBtEqZ- zQuTJEfK`6sPJl>Ea%XXG5kqaJ{flU&k6q~9W2RbxH(GW}-V$kX4#fed-|f>+ozTq{ zT%<+ln@XdKHClq+qIi5#(q!%QGD+t;Ky%4y!ZG)ttyTyl=Rn!c#7XTxaiW(mTj*NW zQn3N8^0!TZcVabgo&AIr;NVS*OGbr!xWC;e-*A~+F81Co_Rb`_i*BpWUEAK+_~*DT zdImD6gxibq5aA-I$#9u!h2EHKmw0Ec44*+F+uL9+q2fb2VJjZ9dKsp?qhWih! zy5=dK%EQmLAl6w-WR-kOWD<@J=+5L)fl=uVqE!z?k5KozD5SUak0wv)qsp>eqM7PW z(U8wPDxiQ+_X8kB>4!KE*b~iAZ1Z$C(xk8<8+<$?xY?>(gpXTFjE753Psi=TGZYo& z(%5ntG-|Y%No$eCL{<O(ii&{uaqs@`>28vA7|lp}AP>Wv@6HiS8;f2_U7!{d?fk z%8E`o=fVDdx$S6Zl^Qvz?j|WIQ=Pz@nb1<6a@+N$6|Vh*rj2Nt-P6C)KYM~h!hzQH z;2NSAvEn^WePJ`GTNIA}X_THx!qFUE*~;rU8&lP7GMh;c)PSXOl!8U#F?mug>YzmP zkB+c!6Ssr0i@#+1tooD~J(-2B-6ROn+z;Vq#^w=1N$7sQ4?W zsSz90b9NTtRJc(5xHJc^tKuFE6ApF5xS$O_iE=6Ku7+rHbEF5@YRMJL5 zRG#DG2&4Zi1_=~1^S@&7b4JtfCC156?T0$7-e3r|(QSN|M2 z>SRc1Y0$TEi=$k#&*T_RVJw z!jp%bGGGF7dCPOtpy>r$;dPlX0h$*e*Wh80C&~3BjTUQvuq-r3b?XfmG|OgDVCC@9 zVf{BD)J@n=4Q>>_F+hnrWYij<1%ojr#XqM#tIL|V2oSdC;<*)lMLs-5&y=nhR!Nglbaissi3M42qfoX>;~ul z2nh?b=W)`ZtT*CxofffcM%dtBm%8I)lc&=Z7oQra{&C6e)|)C=0_sMVGfGJ&@rZm% z>$*hoSVzui=Np?>>;H854EFsd&DE-Yd?@YIUn)jdHavQk4wA67Lk~_^3x68P<6bQ) zF-=bNCq^n71~#b}9s%>Rta8^BXIKnB5>yDFU=I4gvXZy5gEstC*D`^ynonukL1nj9gX%IA>G^#Kak1%w49JuPa#0 z?T<&SExi2`VIxn3j#4Bdr=#O^;~_ODp%LK(oJkaVKSZg`HixO0w!-as{0vGi zMT(#KGZF(W@E1|^kp%4;MnZlnhfK~cdn-Xd^~8n-Z#P}Y1uZy%H`(|r4F4I)TOIFu z?PKRRMwym0rOp%GxuX$`y42B(OhQ6$EbX>_H{{B}YWrbw;o?sNOtW4Fc#d}?yb2Q? zR@KNLKmW03G3-RMU?H;C`%Se@ zZ#;J!m1rHs<(RF8!Bi*aODbC6(viHx^2?7gNbh!=iNFPqpkF>i-`;eF?A?VSTr7K2 z)qN9Z_Q1fi*ur!8ekRfMr2o@5H!3q_^xAJM7~4gH_7OHh?1)rbm1uKS&jqC>ht5>O zO7OC9FSJE5>u08P)?6kHS5aoN;|!rwB6{uA+xwU?8$q(qYn^pEqUwG@?S9Ujj< z&41;w=oO=e#k>>Ej=Pho`YFMG&?M4F^)k>u#qw5_jd>?Y5!XI5=D*(!U|un@UTbBW z+Flj)unD=WpMVxqv)=Ph0_&AHt%{hh+-BVwTV|HQdqBN)EBR(CX>ik_`oSiY_)sPc#UxVawoLvA6wi(W$Dea-=oYK3vx;dHpY>#?0*%vc5X9v$I_7`M?^dV82J zi+W(?atk3nru+|c9vOEvePfZU-ys(>CN9C)iH!0y@H~gEzJ;1@cSW8OQWGE^vk6Ts z(Uec4RSr*g=)zyB>E5(QEdllnWoSaFvV0}2Hn^ulGW~B;Miw|$y{hY@A>*$icexOw zwOnMp0nb3$TW3=a_hXjch(?&DT-Ny>)L!w65q`^e(4zkOSD|9UHiMq2p?c8>s|q)* z^y|Hqteqg6nGUD2wK@^snl!e^&lxx(lXhc#A=amJ$Z>rhyRsPO(Fo9mnIlcdKkddj zL%(-0YOi;U@zZc6ht)p8yzWCs&TpQWdJR>CzjPgrg&8#xS%Dj>zTv_g7rHG?8Vx zM@JT-Pdsd_xX8S#JqVWX*4bi*pY;?B1mbEw!4o{&C@ZG2=0R zHnlT#w@II=WRZ$hryQ|M;BM^y;JAbI%~fI_?2kI@QNMWc*AKM?sC%s!Xl1*7{9&Q+ zV7Ait>P&ya=ru`!C!;R>n|GG{E8qo**|Cj@E#_|swWZ?B_RYM_13%X`=k4+ZLP5oM zE@f=OPrqDFA_*h>d`BQ~XgP-+1#<9dT>6ivV;_1nSv0D35TM^*c<1gsFNVC^ujY4r zn;&l11AP4b8d2ZG{Nw#3$Xeo2VB@?|ZwjTN7J|zY3%&Rsb38v_deQ?}dP=gKJGImy zLJ8E^tr3OtAp43(J8Sw&)Snc+ANY57hq@jfR^>DooepB9;+rsO#^E2U|7!U$0y&Xw zX$||p%3Ed2w_5Ry^L%OB?K4v^l$(Z)UaWZiI`KPaezAHT zs-%fwI{SNz<|RYM2a>5%@M7L5lo9Ft>t}x8HptV*D$)+KdnjG%j-upb!T$^yb~3fG zxsRKY0lvx`g=6phu{#pW`Dzw_`I0jVF;ufHl(Vtq@}lI>->~)m%(Qvy<+*c$LYLH)vy`L#_UpGu8+(p_G7wC|lul`WdM zkl$-PjVC3Nj{JBk6Y`!LR^Td>k8toR!w~aUr7M~_fwf3bg8gs9ZK*#AXY)NSLDuW_ zIoI^A*O{yR*q3c8bEFJCPt1dT|00^b-X6TTC1sa+f8*bD5Wsb(bCB}o{;wr$qw7n) z-UiQ`n2lA#nlWEgU)$wS4V<0DSNDDSW$hOswHxX*3%)V??KWti#H(^{ z)ZCYAhWWuT*^bYonRe$^772Qr|4I|)BF4mP*so&7Fv}P?NutGAVg&J{ezELf zWa_QnHEa^3Y!j`1uxVfnMDkaN?B4AFo5cH>spAtfzhhn4(jGf~*Jip^kW6EuSVTpQ zb&M3gScBDq1=-i-6r_pU(R%;n{M4>Rl#YAAz0iBFY2}Mm&mp?@8?hFvg^-)S5*1|a z5+5kZ$nPmY0mdd}u|4h{FOkyYjT>)%T+8S)ZyHX|W)A5Oy$^Mtstzd`611|x{Pzre zMMZZNe1mpvh|}-#o213XM^*)QiQxLCk{H^OsI(>auKJ)nG>VewCUKNWeI5%K1-r-y z6xDhmR_#x6epef@8kNoF@M$^DmIpqde2DYJMgk@-Z`Jeo0F~ho_r@x>5JlX~)M10a z$oNku1;=7vy7edRaKnoVEpYLTh-Ueg>sWNP#Is5VkmAp?lL zS$ZUNs*YA!CV^1Oe?p@Mq+#5&G$TrQJ4xJyx9hpwp{{vp@w0|u7ko9~=k8%ur4s1J zBS<1-nt0D*s5KcJHfeRKPn%--FQMCEl2(BTS;f{<-UDTwYllZ)k$NzNx&>@<&ul`=j2)ikAd# zzdPVF9a51^MGX%f5jiSUOIxGj0bS~x<0n#8!FBy~d(}zt#=SG9HSEoj*x335m0!Po zi{Ab<*#WKVcLNf;jk#ZxnQKe*GY!H~zcp;0@MryA=pk;6T9;e#{`RN$)78a<2J!ga6}5wLfU!%3Hou3C&Y)`a zCyjeWbI5UvruFv$FY@e{S?UvFJ4~5+rLOG4 zj1|`?m{(xk2nMRC<#N%T2&cP1Nk*Hdjr|yz0tRUx_2>O^uz}8R#}{I;;O!3*k>lu^ zV##f`w*f(R`|wWpWZjM!y7n`eqGHzDeHeA|IkAd`4l2H+d(dg}vQ?e!`A#XfOQ!pV zP(aYPU3l=j!e@WN>L~0Pb~!a1=0=By&a#BmDyVh88NvF?Ks?_yR*%I8YS1;@FSpr} z{ep0RfB!fqUL{R0O!iB|;d88b{?~jy&0li`fx95f-R^&mlb(j^c|1GO_Re=@YV*{A zGy0tlWzWXLo|u&mlo51!YIDE&7%CLsyZwOmS6}&E*>~LEYwhHJZtppcpCA>dUK{1? zynHoI$-4Y~`foC5c~vZc4aFHH?f_;nvIXm6*gFt@N17A9a6qLgu>nKxXVCkqpJtf- zWstRLqP0%1Z>0m-se=?{mgsTfNMLHhCeCqwrctkrpca%)_r*hP0a<-yF|z!qi{a}) z*!CT(?K9EDnpQ%$8DJ2Pvn^}Ujb&=6EKvSLpw}>-{Yw;>58&xTNNPRUEig@;!2&Oq zl?!!Ix&)C`(YyfA&xBa5$<87gX?+38%(%pIO0xW;?k2Poor{SK$_;uJRVWkup3)>W z2BkuWB8d^V(3Li_)HNM5_X1Q6yLGI95fctp&L5=#A*ksM}3{|ek|fDsP^@n}qt43lr zR%e7Zm5}*Y-oO0kHfBLr+uFfyQPJV_E(nx38b4o;aD4nTC{Szg9tRQem-bcJ#}(}$ zb9iugWY#N}Xsbf$E;BghC@^bQl7Q+#kp{St+fn$ClN$w^`N0Uhz9foFwR0OwTD}7? zwFe=eqH0RFKu!YwB$t8v9xpj6qWMU5jF<4w>97p%t}p@nuIt;nrRzka6T=Uv z_~s*FzzZW_L=eAfBGJ@x5@*7_`epWzTHbr=w$(I<;DP5xj&>6$A|_qBN$o?2`y32( z2zr^Lv3l^r42MTdWmOfoC_ZOn>e{*W+O_?q#2cOFo1wnA*(ndH+Zk4^_^-GPEs2JU zc7|k2W@y*<*$4-*F_O{IME3PtETKgh-C^zi_?vG^t2;8ezyDv?P)& zLe$QzRmhzHS(fjE05}wuqNobt#eD-9{-5LJRoRPb) zvSVTvo+S-$JDVYRTnVFJt8%;A{{0u3Si8hQCM6fsJQhk(D#X>j#973AQqj`bD9+UA zQ+vph;yZg+8)OX*Kc-aW_iCT<{L(fb{bWJE2={x+A<=wE+v;J|RU5|K1!~V{e@$?! zrjmWero&U4?{T?~dr&|CFEug3kN;bnx+BJG)uy3fiZVw|+X`#!03&FY;85VOtN%y#2f`nHG0@YWS~;FR$Pb#vMzLzY@kP z`)cVp%rak2>52{PqD6}IYt*%`C=xW6v zCP#(h$AspFf25mf!hU0r;viJ|YO%mwVv+dK5euQ`IKk&X>@j2e;KMvMpC7JNl1G93 z7)>EK3oW`b7Gw@?5;o$P$@qIJZy7?}OG9g=mp$g31;Th@YyzxPr*3xsZ7+MxpNo+A+tE_Xj zzb4F{6dNvO<)hqbcsL0C;cnEhIeVxFw)GgYUiY^UzT}W_H)^ufd>xDZn558EZRn{s*cWu0Sr!@J1Cp;zL#&^l>&mF@_ zwVDt1hG2!c4liz&ip-@iQ~}yNGFDZVwD$QkGM3srL2jV9#@JeJEqqvx3hpvg^spIJmdNJ0Q!E9Kq&t!U^9(j{=!R{N z#gCmqrTnpbQ?}W_!FwfCcrlVX)>N!w*)6;;o~!-e!bM3cK>f*>x@g|t?`R+3k8*z& z%sfK`8&SBueLj5&ux_C{OwstiU?(5^?i_vY_6~k+%+2qwLl`2_qK_*LL2eXMzR|+x zBqR>cYJ^#)v)yj}4vKv5Tb$o2vGdh>8C7QrF%2aWM2qiVvBz9oWlLokJOTL;JBfIB z6NL$9bJ1uUd~m2Od9{2=yr6!0YqwAw-)+$C@uH^J#v9}Y=wYoE980dAa3D)$C!8pj z#!GG8-1%t6;DKSazqR55+Hbynk(vjxbcnk2woyn_kwaN&6t&_P9Jk@0Z2FhT$~sb* ztPQ8177#1eYUXH^p0oe0_|Q&Btb&z_vQ)MLeFg=kzh@K3O8^L=hgkNRhgdIxHJRls z)Hjw!8LOFJEW*kgWe(_mUC(_hd=dJ#@Z*A}7(5y(k3xi@8luGazkiNw-uwBlG2x9N zw@+#=c?akrMVHKcogLPPK52i&F<)z#49Xii`f8;B8bE-)0=0W3X!iTIgLp#`>Os3$ zG>oFXNfJXRmw+SlM;}D897EjR!cF-JVad_BU(t88%I1JdUcCc*Z;j2+CVax5R#G+- z@(m(PGXmEHooQ?al%!c&G zg|J4R1CLJ|^~cTVEoh!+J;gyK)JDdW^9d{r5O|Xuw)7O?O~D!1OcvoF8=;(RNS!mq z8A8VN`WP?twg0=T@u+AwX`L@~IlNppF;#0pMHuyrVOYd0oq`eh2R~1VR5%veozA5k z&zshXhof{*Njy%*nY^!?J{V+oTTH&vR|{o&SlOQ%%edR=I$tRoISumsB!@W!d93rB zK~yi6Wxq}W)`|A1WZ3I%KXTH}lrQ&Mh>Wn6)svn+R)u@#Y zD8`H(fPL~ti`SHfV&QEVUehRv-EMow$;&-8O^%&f{n+Tt;&oyH+h?@3YNaFAs?Hh$ zy)_eN6kKmTZf}gH{4m+eAc@nF$hlJ3R~8r=U9&a zeN$qAqZ_D65BsLNg5aB80|g#O;{Xd>N<<$WHPviq zV4(O+VBpT*-wBE;L`(rY|F4`uV0PPO^#aK&gI#Wtz5JMVCz`4}O-uNF< zvrHfa{YYTNmBq&WW)?`v{%vH`dqH)=1M8`l^7CP_=aX^P|+=z3fZP% zmX_E=2OCtqE#OPC1jTn-1EMCK(F6K*+}7=u>xyE9QF|Aqj_1F>{I|_r?TC&vnC{(6 z&HTgJ=az7njXPp|lNb>#?j)f59+aBjgJMl<)R-3O+9Oup;Aicg)pkSuYC)gGkPel) zJ458^2gPla2$VNCa4hHv0hJf+oYCjnmE=|LmBO4?ceC}XrNvS5z*>Iq?~-{OV`)sG z+{$};ljC6&?nJ^zhe<9A!iU&l-Oiup0|^BS?9)>D?9E$L*!o;BwdeVx!oihRRYFRC zoGBf?0P0tAphiHegkF$6d#+L!1h%LrvakS2#52NWQMEtC?f>iCE4;uSwX3E-m%HW%YDdl7DOFc9hVIJ=EKDKmtqmd-ElA8; zbpRg!@EhcyYucCo2kT|D4McufuT-MonB6qUYC5ZXhOcTkU3dToY(|CDekOYxJC%pq zP?u;p51BToVNZ(!uLA>14Xym92p3VGh@OXx_9&`ei&{t97RoD_DB;_+aOq+oeIlFu zR^%Ng3$y|$Vjky=q7mq*x11vU@uUNtek=Z#lWR2zV9QBb;ZMk8x*jq-O}6KaaTR@v zF#BiR03?&^CTJNfWPCxbAGe^aeXzP)rGXlf24!j3yydvTMvC1FiRzWL2{%WP|bb+e7xwIMt_LTp~EDW|aI_Nd! z=v>58^y(Lsr-3@v{jW!l17$leyF^ZvSy8KtsgyW2^X#`({&h zy}^m(gTc=Flws+6=>ov#KtaJxiNLM}rfW@m!NTQ>NO1-FFAWpWf4enoCVB6F=BD?U znP0`LNP@MU^VzfFz^VD8#czOiFSeR?B}a|mukUaT62jQ1>jB7@oEs%arnGu?_g+Vx z6gBa`G*XysBWy)%r!+k@g0V!esM*CnUPy}bLRBMO2?W;yt!mgLLnk5dx$T1tI`APm zPMPm7CS|M_`#^p=k>8im#~Z!Z|9zA@AEa?g*6<(+f52SKNbN=gYl_CJd1{qJM3X{=T6ob(i=kuiaXpLvFsiBezVGhfgpz*A$@xRQf#>k3@X#LztDPGC z4QT^wb+I3~xCabtzsUi6n4o`k@dxuG3;fM@>L%2IlCa*Ao3R)1VOI_ZyETemS^Z5m+S~8+uTEe1 zxJD=H%X`8WWA6EH?&mJZ7QNP+EtdS4LcncTrdWbC;wWbFQw1L}Fdylu2K@Lls)h>D zb(nyR*>8;z+_g}<^H}uG=fbnQKXTDv(0>c=&OrsN4iAqJ6hc89V#7l3jF~Nw{FFjO zAH{*cIdG;?ZWfY2f$e+W)t7#6?6)VX5IABcqTkIp)!|7pg0d-yv!4hSVv8Zjao`lC zukiMsC?#HMOx(BNtyvo{)iME@Ai5L;W(}iA1}DT0GRP4asiUUEzm~k7>u3Q~1S*B- zEzYzk=H1K~qRID2?~~t`p)92~9T1k0N*rPZG>fn zah}6Yh;$rMWV8FcQ)IVzgwok&czILSE`GEtW3wl?@8bqie+h(Wd>K4_TC@+}I^WX! zb{}T{Tn-{swY8Aj0#C+A7&(G1zlnZy$q%+1@KXLF@UQra_}k9qQJRZd-pHerhJyve zN7~%TBTNg*N%Oda)D=n^>*!@-|b^*W}jxe$E*3=pj-PuR0G%(*_w z#VT*)Ye3MaI}jSxZnI2OHSCxKDl1>kYiL*Ykmy`RA2RZOm zlT1y*$MF@Bi_PeLUr_n>eKN)6iNOF#(7=nAPuemP;KcytU5=t9Myooo8r`p|Smg4j z7)`|RD~k_$a!<#Bj_;=NBj@)`69TwHp5Dn`x6|{~Az9A|J99FqKmp*LzY@fxv{%60 z^7Ja;1y_0S&?~SxQAv%{beH<}OqNMBoHS2wWWIndA0A2vVFB_Hoqm}XMyYCnff9u};=o7M zH0A#81vKp5lhhP?RqyBgg)t7_sdh%n)ch*z;_!rh!^Klwt~r2vfiNEU7)^-^`pQ@+WET1%qST0N>Vg)GPTsT1kDTj>!0?qDd#^+9{;59?J1zpDUM=*0-ZU}8I3Y=KzX^K zy)WkNRR7LDiKp?YYrNiY^*-9)Xm9puVp}>D9Xj989)Eby);oNhO@fLTO9cDjo`1I4 z^uMk9;(AP$-g*v zKiR}|Ke=Rd5)?;`XPpViz(k~=ih$f1J`*AzKSMJHqR8oAF!W8I^I7DY|GgxzH;ze3 zUB`>Kg(gF67wju!dMbIydAtQwM- z==-o{|GAq5+N*iS>z}H85plm~Kmir2oAw}DyS~3Q2~b=AGo#-H9H=IsY{2jwj|q9& zTo;fEHkLSOz2GIY=fh3_j6w&(#x+j|9h7ao?=2=KpmbDG({TWvPGct_Q{$s*23>m- zF!&tC$<+B!RaM7<^0tJ6`gVKj&=>V%p;uzD1}v=bUZLz6#E}g#qfIpap7%0fG{zDGml!1b||;;r7FB2&+ye8AJ-&Z4L=u_8h^7)JL0`G(RzZlur?;X zSYrcsD4o^>XAI>nFOrwvS-v;&qBkoll_&cr&`!f6JYx?qGLu!SrG?I$%Q|BQe>}1z z8OU^a6C~-3tpK=iw4>inh31&aDq*&OTciVt4#k0zO4!GMQm1z8TgI>)vu8><+lucF zD2{YQc$Dtr`tNSWYE$Eg<)o(D*N(WGL2R93l^gOvtu84^^k33OkVbV#y;1SmBioqY)$4ZQQB2{2{o%=no zq%r#rI@8E&8U1%n-;{V}sV%P}jzhFkJo$jzzy)e9)EG4u*ZnjdR8IcE_X-Z*PdyISl6wDIt7`W_m^)7|u)VuMLS z_5!6Xx$@HDLS)-+LLf;NkWPTpQS%*)q){C1~@U3hR2_9@+)LFPBrACs=|G-wf~H)lxbg5q@uMFR;i?--Pz!`_~7Iz^(HWa_@zp)I3Rn-ES
rGG%}6wo zXY=Ud!UJ(tdCGXXGyHQhl1uhf;&OPoU8#cMnP6TT)qB|>Gd!3gR?X|4&S_$7H^ox~ z!IrbiY2{Y#lr`u;`}SfjSdoO`*|WT~HxaTyKEQ98)J|x0PSf!pnHF9KoesVNW^tW7 zb!F(HPCJ_&Uhpz1mm>rfb#%Yy?E^%@NcRBMO+kJAX=La%p3`iM3IF5E;_#&d$L2kf+3` zfylE^0$%951K?aCq3U%^eCabn1=>|2&h|~}dCnWTqi;pf^JX1F_6yi($j2H<$xnY? zjKI~<572ymFx8iF?HRFPT_E%&pyoi$KrxD?0p*k0YkfrBHNm)Xb3n&{W|TxW{v9Sh z(m{!=&wI29f$waSJly1_l$C1XDEeYf%^gF3F`V&mZ&i-S^E*nuLNe+j|Kvsi=~i|@ zq%H1{>=8Vy%kxBl48q&DUN-)MZjy;B+V;mGlF#0@>)t=$IydQG;5yS}MnSCY&%-ZY z;7(mfhtWN9Q-ca+xRQQq$7MOmr+70Y0_mk@>yMrZRjP3|4*Yz+RfZq+ZWsSAJo#|g zlc7AP=mg08S<5}t;f=+v@>3p{qYIjI}Gx8 zy)5|)+1{B0Hun2nRvgSQ;FIO~FcyCUetDBsW3~RcWiJ;}JXHUL=5y^+73@C=XprA{a`W7 zi!FK|A5VZxpnvJ1krTS28*h*1ws&}V;$$VpmtA(p`;=YoIqUTP(M4qGaQDif7~HwB z1}{_bggJWO4==Unm4Z}!3T@GR2-EUY(i$dHFL!zUesLw*HvJID!3IgZy}jy&_{&#n z$)iJA>3p}Pnt4a z@EPu5PWgBp8~KbEZx_Y2smK=p;~7AkF7^2{Vvd~FaRfK{Oa^b4`i&{*qDtM1Q^$K~ z@?R?RB&!VV=~QEYVEuMGAG|sLPA*pm>Tj_n2H+YO|%HQS8@ntUu|_5nW$V4S($_j}aHH_?UrZbLjO$i{zp`U9?tOl`mA zlZa&Zf#{P^d6xY7*a;*22+>qTRpcUp9vCAz>rujHYd-@{9__8?IyXM$in77Q=C?Wn zy~@bicy?c2WWaC0TeUWO@u{yM+Vu41y1ne<;$omQrSPqTXX8cvu$%tv`ca15r6W0< z^b_Tt`Ag`24fU#t>5t62W(@nqO*K{9C+|O_=iiI81cpM8G*UqNl9IE?>zR(+t&v_# z7DJ|<7tO$aN|XRuU=ySns7@IR$)cKbl(dY@L$ihHnKsL_J5L(4ZrKUWaLDJRaLgf> zMt*D<@uD&II=#lcdGN_UrkLOmX@0wbVWN@P99N_wUly7D85}<~Lbe}eNrVgJjmE4( z$V&V#Z@yojY=SVDxoQGU$R&~CnF)TXvP<8?4?6(#6!^<)&>Fw_Fb5U+z zl!iEPl~i_ZeB(AiEtj4>B0xuAP((gB$2~HqSM5B-=9)Uth02vuG851eBVeY+DOd-m zsTH@Y7n_UeKzA!wvgl1fSQzROK;hL(GOi!zR50pbt>oz!`$AAsg-C^R0S`C%;QIX& zqT_jKOSwGMb;zRy8hLD)0OS(CWPCvkHxx9bHN{l|PsrmW54u6UqBQYvuWoF$Y?b9c z3foQd|3XwH^7$X>*NrU;)1!;2=HVN^z+)f2g{fI&-urNyHm#Vl$0u2X-82gi2rAfJ zbo6xwgA~~I81ukmLLCoPnRSW_@x`h|hc4!|Js)NfB3h(EP(%f`0{rwaPdxojWBLfa zYK`K&)SNKspay&x=ihJzfy)#I{9mIIG!ff!^Wb1Xe-gx1B4H{~TM2N)auzv+@U0Az zD)LEN66U8;MMwvnKU7~2NC)Dn_An)U{oYfW2tBW+T?N5rQpDMz0KK6tuMcMXqJKf96=Hr{)8xmCQTzR;rU^6k|Y!di6CUKh~ZsXHrv;MR$aInKExjLM5SNS7kTGfknJ7;!3(r8xQgm z4sLvam^4>t`e9zZzaCGwSKu4g^g#m!f z2gQbB<=}>7ds6mdj}%~4i~v>zN_3=H0x7yIvGJ~OQEkj^rT9Juj4A}r6pZ*Kt1EVaM0!ip{F7M6x?ry8 zjMVFuVoG3U+dF|rG`!Jaa7cVO)^c;a?o{7;>36W2&=&NkEcaHF9^>{SVo&)c^g}GF z6(FN#;?R7|wM!EAk#a`jb(aKJ75HCgj?4W#twDm(BL~derW$hd8J*WDTqH~3@sLm& zX-Zo-IRf@sCwTyUe#AJ0-WIKe730g^)e-qah#zj2u{uKN5N}Kk7x8X7QR1JadDC(Y z7&>A-4~;%ITHk;daM05M4`FarQ^0CA`k=1WrhRNI+&XyIJ!$?L7`|Xpp>WO)OP0r$$;}WtCav8t@?b z7LZHo68|B3*42b2@2rG+IqSKb@#WwOH#wzVh8+p82zM4xbL<-`qKeY#MQPr_J%>|b z-m6o8W3QA*D`lMBI=+!u?D9U@QpP5~i7}cPm&bBJd3~`##G7qxuEeY|@0;4)P8f~r z&8MBZPO^E8F{M8rSyI{BQ*2q5Wp6v>jacU4m+aCC?}o-NqPs7VJdmrwyIkk(3d6muTl%`0)GeN3J2LAwDRj> zRRQtgJs;f0;=#Jxb*U%BpUE;niddbq5q1Ko#RT*fj2yAK-K?}r+hKBkexEX`0;8(o zGK7c$?`KXRpi#nYX)=#FtL2p_Nvbj`&BZ-$BoK;))0gzOJeW2+VHzpbWWWDS0ZplERK;KPZ#ZO@*5m=>K9yLr`Zm=xs-!uVH`m z!DT{c!EYH0k}YGkHf(h&)K*3fG4BBt<0H2E4Bp(m+oc;7o=e7@vGzQHq@LU&_z}P& zS}(J^`lEgRw(~m1>O{z|C>S59h?LR2->F8o8B61h^Oc>O$-h^m{=a()8=OcvOYA!F zCc4rK2X6Z{Q+Cf@OI*~iC|@Ci3n}M`bp^&q+Y7gmyZyg4)6CR5HXQO@n>VB8j4a%& zv8IV-pT6?S^(xu{SW-M$%z;<0?*QMO1qKV~Ms-`A)AmL_m+|`a5Bp7(eGwLhGTl)B zCIt-cR)N;}qysP`k~6D+S7)Js_3w`TM!Fe08Vo$_)@2Im!6U;ScqIx$4-Hsin8KuE z?!1+Vi@bBwd7Wr=qI7WvP2tT*>4e7+A(+8SvM3_(RroA-t4r2D*lYxfNs_2LcL>fy zj9`#hLeNV~T!qWM&99wa~31;ZfH+?sm6EO=hr#T3Jpo6M@j>MJJ$cmi1)ys;cNln`%3OwtfiBN|2 zUV#Y;MlObW{2!!@YMh=YWbW)_bW8(=`x^)7oL79&?1=QWQZiyQ^7D$`(7B>Cd)wzw z2-6==wL$4?{bWSEw&wTJ^xL9;aseq^>LNFP8d4Eg)nBe~`+c85{Hf8f&tZ~UP?eX| z3mPi%UZ%ytt{AQBIRlGmDQopV-Fbtk4n|qhY5`;U`fOQJt)I^x;GGU12QP2T|9Kh= zj0wwztm4BQK-qN~`J1&57Sh#}j)(IB=<16`OkGFKGKfA&7M&5T*9@;D+gVOJBIV;G zX#X0D(B^0;pVi{05{Z|2-sLAG-?b&tSsm`cx~jR1`em@%FZlW~qBsxs6jvS^dC>9p z{?6;o%1*WnnEps5BDL%bPaR5s0VIcE=%RYz`Mp_X$vH983_!NRe$Nwi&Rh$?Hl^N_ zrPG{$(B@G*t6t`R?dwgI+fWnqSAQJh!nlmIO9d8;p7>^4W)R8i&?dkk9bUiix;}bE zGbtqDKF5Hnp?F`j%*6=lOt6TxYaER&mpk-f|8&^j?EC8!YN%HAn68R@4+=V#B?I7~ zj{#R-)|2^YI!%>mA4fYTn^=`hUWgs z0pZ7*1%j)_b@M7=J4RG>%>K_{0c0Kt&pk<_yDiTqqNrR|1Z~Nm;m?u)t&Vv-P85qS+~XO@p>WI zXO}0}>`=4vN+ILD#Ws`HS&Q=GN1ctY=2!Si;f(ouO?MJS(8_ur6k^f&yBzl88;Zl7 zRSvUT4&J%qqYJJ=K-T|wqfJ8UXx#P#gJu0IdgziqLAXhyZWFOtr&3PyQihy=CndH* zfnK%^5C9NCZ!_nO@cNVtGCmuRB-ZCPr!+jH3swO^O)>2u(&bC;+C9em4A1wpfIpNp zST5Kx5&2WY3T)_lW;9Ot;GA~6$9_FIAD_&iO1g??s^LbxC_x~eK%DgMDf!9)k5H6n(8)Mm z|6^qpm-0e9x6PQshcoZxa}1aF#X|$$XRUURXZN=$sqB~iCQ7i4`3;`&mIqSG->$aQ zz=zK}wTCM0N%Q0P3SU5NGw;|jNy+CNSmiywwWdyiX2Tu4zvV@?fB=^_a#H5L zPoeyL>0-rHZarhE@mBNk=5Zxs?&K8v@cEnK7aKbdbppUMuf)fPUIH!Fd8q1;2)jf28%q!QvjbudrBiyTS-TvvK#cjroy4bIBm4F(b%2)lLG zg@=ytKr4IT94jf<%@_kMwdy7FQWLHEyg^l9;e#-RG6BcLidJZ0ObfKwoa%>KsvCL& zFOe&i$Rk1_mNj3?H(BRiQ1Vc2+sjn&ti*vOF>l6rbzh#*B&sZ-sUz$Af?)2`8S>ZY z6asWj#~1&bY=}7_;9=E%HzV9$I5bVp3Fi)=ey+|*#R@obP)C;9l*3ocdjZGSo7UfM z>)Ou99L!!_FBPv38Y$e9E1-dJ93=+=pF%oK@6qS*(dOo1o9VgRmR8A|(b?HmC6_hZ z&U=^4GrX_6UX0g((J}ByJVb&J!Mju4|J?QTbs=xoz}fx^`FnfhdElS)z%EFQt_U%U zed`cfaKF(Xzv&u7{3AlU$N}1W1Lwg*m`SZ%#%?r<(hx@t0aRKK zmq!tFg(~r-ZYbkvjI))2()PSUr^PJdEi|;?PEP!SIdtz$fFN+I5dhm=b&3sm zalaqYnSTrT3ht^W@6!JYVEKli86ZF?gp(Rz^sfzY1%ItSP`MT$6YT_m3KrtwI#8ta z3*^(_{jkO)`GsENy&5no3#e4k;&%@ak^kD0>#z2?$~?HyCQ6V9X9}ThT+{_=*GJ{01ilwu~>iEd4glG2Lm;6E&naySNf5oW;nKIWb~n4k`e1VaEf)o#2|cunRNjb> zzm7xu^YuMTVKK}qK%!2X2Ose!AgR+ULOiUkCzH8*Q@`;pE=o(BQ@V&&fsevs{*SgP z<_Tcm?sUxrUG4yA@~7musK-I^95B#RRUmmOaWdhD)gueNrQk1f{?z{j`cst{7o9>- z8Vsl$5}fHC*<+Hb#e1jJg!6$j%73Fma@z~vNC-6gn0!0FNRNm?dLMWXCQ}gt$jZnF z-KO$<*6HXXkUTdZ@Ui04pXh&EA3sG}W&=oaHC^TZAc5Pt2UZ2g;q-pYaHYKNz@2Oo zw9j~AL@@4oA- z8e#p>tPm-bQ7x+HGJe_+8udq9&Os5C2%sxs9Gbty^6wwjjHzSxR%b7DQTOYC1ZD;t z(;nI8_Gv^8dE9Jk#L0s{qchhXdcot@;ATK}l~3oM58rf!2{}0XlssE$iWZVo!9`Nt z;&6W|H{jXoXwael-5b{yU-_e zV+Sqtfp7rKZ%yy+7>^T==@+So`BjEUzpFM`*|xR8<2M{&y%OeClHF*VpS#A)-q!jB z`8LYktg)YLZOxVnY0oYP%Ypa30*R%rwh{vq`(^J&c?6lP4AGDXABHzYUTORx5ld+F zt!{2_vta+Y0mKv5UR*JBNK*V(QoIWJGizr@0XgVp_<#{97;1NRquzYgB6Z(0R0BH6 zeg~eS;mf^}lK}$(deq*4aE^D>ia;V0@)Sp;h8W_B?$E5iU4Ctp81S_Z$*nND|J)iN{g7uao-9|-3 zrkmA#RCwzw$6j+gXHBwr@HNNNum5B}`|C#cOvS9=8U1Ql{rQo;p%je((upmC=PHFH z5Xu!U2m32Ze#$6g}doCZB_ePzss#&4W7$?Y<%hX?3DaHLzD< zRTfwxSW8BK-BXj(GbbH!wbSd1-IZh>ru#30M4U1xTf!2gg9XUEZzR!x=H1J`^fB-9 zqg50b)HJ#DmF`y*_SSfIWMo=!g(J*%IOE#AbR&p8#s;!^FUfd$KCV%XWdCMnEUWo? z-<4+HsJh)HSiyS|TN^R;ybAmybnT&$VuNM=lu%3gL%nuA9x5L*=)9>=GDy}m1d?C) zTbjCT{1Kz$RSG|%Bt(cMd`R`|E&$_VlC}U!m#?M`(;enDdN0TtKzeHHLR~LNc|pOa zS>gAATu9v-9mX%F>q5CnbjTf*vnoJq1_}es>lWh#a1G9>=gAImB@usG*(9ALWlYj< zFCa0F02A=0>`pgofBF}*7cX)CGm?B?*hA`vYrtN!&-$vjjm14nPPY0aN=^#Y zS1D>2e=)xHE^g4 zV!cuVphr7e*IA#s?B<#Cz8oB0kc_l=vdu2~xt~Ps%l2lT3kr-LhW{Z%(9A?=pw`t_ z{vU9^ZF`M}`a3(|(F7h4S7TZ@$yeiK_reANyobi1OSYfJW2al%X__=nm?ae1w!dC)Z;7I$oaAMQ;uc^$U=L6 zMu+n~&I~m#L0~u0Dnzzuc?SJUCNjY6=5!(svmGDT+Lrid zUX-8<9`bQCbaA97!ujzL1L~of9qOG%kfVqG((1PB+dUdnG^O804_qroe#C=1=<6yiDf z%e42!V|;RuV55ODsq>9274a*LL!QktjC_-esSmST*IzS_S8? z9PYmP!d`EE^COa&XLN5*mhCp-tiIh~g?XW1q=fEjoG`_f4nFV}nS*>_OR$P zY)XlKG^x|}$`h29sQ_)Y>VjQNQv55k>>d>y(=ibO>n9Q|vDOOiG~-Y(Y3)Uwmre

xUqm~+*opPr;(8Y%2|_XBLgJuOeOcu98STZG zHDz@pS(CB~AMy$my-xu;<5fhxM%|xtx=ZggvI*k(ZT7PW&87D{+h2XoVS7KV=sa7V z*i<9#ZL|Dl3Jut5@x?y7ofn*ig$7Gqe2G_sFY{yFxB-Qx>B|z2eRi{Puv)wdNtREI z6}1gFzj=PMlExco$;AP?&lQ|ifwT2*lEB7?pyjjyJ`=;$p-suHupqQT%?=A({5q#Vf=>fz&x#JbB{A)U zFQ*$D2Qm3TyFkW}Sxe}carnD0RsnRJJ#9sBsD++`XpKzHsXG+0EwU0Q`%r(g37~^l z(}wG=4K#co7#gz}zgb3tH)!~PdwLyXt%K)7%;YA#xSRPk`J)Qq>O+ar^4rbjNHpnT zEu9x-mM=>GI@x1`!bmo>1xaJNVpFK?wnMDeVQkGH7xzyk zgi;P?noDfA=Tqwn7aN#irkqr zF1`;;HUz;}SAT!R}hyAAyNN9^KCfC(*q@*az)l)oqT!>b~c1+cNO!Z$O7O`f2SgP_=VW|cc zsBDsrEvJ~I%#f$gR*Q`&NIdj|-b!tjr>7F2!>k}?Rl-$n&C?g9#s-((V^s%0%&veP zY1O0SNxXPFRr?Xu9Sv-y3OypFiaNs2U8Id)p6XM_uZJWDNXb928+(H!nPgJrx|!Aa z51K-XsKsO0Duj_szLW*kq%qN(smR252hp~exd5=6G;EKOep$ZsO^Q?d8$2(14(2m$ zWna4)_EHo9$|!aXJ3G$(3eJbDIFOjiGDr-lX;S)aKXa>~c=r)s%p_+I>-|C7mh$Gw zO_?81xBPNn4gnfqA-u?S)aUYI>&p^JFC>I%)Y6j;Y zMNFg1^g=pl1r%TV?r;PyqQ2kE78JDBQu4I{E)lucKGA|D+l~Dib38buX9KeQa|1p_}+*H zHZ#B9)IiH^IJKiKI8A1W*t6R0%-HQ@=^7!61Z!Z2;p(X^Op>2lPXBe6Keu?M;;~6` z{z`Z4+_1;rZ_4%|{?q}Y9`MD826G$@?7A1KuCKE&%||*VhsZk`|M4}0r3-JZrAP@m z61;z|Rk=a0jyhyV&fe7Abnf}UB%;bF3AW$Xs=So4XMB_zRyq3C z!75!|s|RCyPa%xTnw{%j(imf^EZ3kK*0t8v+H#l0xF}1Vna`^Zt@dl8SjC*ML1zqU zCIa)t3iwkJ3*Bsem{xpCsV@{Y2nAd#qt*3`7Fzh&rsSm6KNguXaRrp>`<})lVt_)* z5#)i4g4Zc5$POdg_muX>ROMMT%S@_y$AnaMf9gtkd`o0=Sfx7s#O|*zd4`_8kjFZ; z3fY(WIg?y#j3(@%G*9qaXp>d$VO%5FK6ebU0NYG2rz`C@t zQhfSLy5P6jaSxQrsGQd6z6ywNELc%k&&R1ddn&R8_~hVXcmtx2|A}xFg>MFyg89lX zoq$g|*Vg(Uy-g2~g<$#cN3V}_rynyAe&1IeZJ!Sv0-g@fx(dj1yy^<=${U@w#&f_X zc*?d3?S^>WF9dQ2?yo&4uX6YXslZk=EW# zqY#}>+Mm)?lW%eJ&5g{VVEZ3hl{lDlH<97D-CJfUiQnQf8%q20@hq^(h_5#8U_E@Z z)Uwv_gG&v{Gd!LmTNdUsKIPxeGxl4+9lD0n@N*FFcZoe@#0_()EDv*iHRDyLbeZ`$ zsQkY=&fkCWKF_o*oh{XMETslgdH#k`{AoGY^jr8lW$ZmN=XUA_IYZk+v;an_N^9@d zP}2luZ}d@g|C5-ttVoK>+Iw_nxGtsV@4{zk&c8u(B$)dZVt=OuqldJJlZNWq<5Z^J zmX7mD!iDNZs+3Asz%?ea>Y*xAE`U+zM8OsEo~6*)oeG;6Hg!`OC$d#Z#HC<^wa99X zJ>Tmic~=!5pN#&z1=>(=3Ztdr;y>?BIZq6$x>3i$eW>Hq^_%L$cqOQXX63I*;ug?y6nm0MX%Pi@coSM{pjf}eK{o~RulU9lz@2a{ zZvIV+xW(r`0q^Sn6FmBJbKMw;EF_H4s(iEI+3(P5iJC$onEIw4`1{L?#@epizju#U zEdw?{&l~S}L!Nx^T485BGZ;}zz(QIGnkN?7j9i@=6O&nr)3+g>4!alnn?k`0kpr@g z8~tJY474b;cXiL@NGItN%Vuam|CrE)Xf$c}b<|*fh8L;+$H(RBCtHObTAP9qKs~0y z`5)9seuh`6t(PY4my%CEsQ|kc&826?-=bj#H01aB0%nS_T;G>bK8K)+{bvBr&wxVVWEuh2bHK8d z@w;o5DG@UYl>a;dK3h>=8~g2<>XESV{qEZf&lNpqBn&@XIc-($T(w;8&VOGr2%8vU zQE-7w&0f2{n;_yzEc*=5aPg!=qMCxNPaQutpR`=w-{($-3=PKzc(cSm0;!LWY(#YU zPSSfl?e`n5;&&DRVfTKtLkO|BrP(3$`}%jA*z(v*C9D|chnRfuMs)-bkJYuz?{d$z z?QuIhQFSX~wKA;8Xo@-N4~PEXtK{ltQkeo8rcgl;=F~{QUzTx2e+_HSdeBRH++=8E7O%q}jbM6`a4=Gi@t;MyW zVJGeE+v_qJo9R;RcQ)4~AAf%t^u;!&>pFFn#`AZ7L`yXqYfXyef_FsIv3zSr0r=@y zlhS)e-<>$vTm>~Rr0>-LO{#%7G7v*mw`8GiZ`^3(xa zfvHVRmulpeDiPJOOOrcfsXyR|LD^Z#Dw|s46 zF>3Es*LQ&kX`X}jk);igi%r<6Vp$>D(ag= zEAhhZd@Hyht>>VBWcz~u?m-AOHK4WgSzM>Cu3x_=6jx7<|9tf%n)<$HqL~g7e|f$p z#qCsc(q%Yp6{(Kv;_{=q3=K53K8MSRLym6Onv=Jm2wc zo{b#ammJQVn#tU-TqBJk*8oO%OokWC@bmn0+{EE*&G|R%vElKc6BYaO(bLelIG$2nm*d8)VrZS5O*SHc$>6W8{c?TNbawe}JaQhB&Hh%)_RGUf(_;Fw)#bG@ z`$|yN%o;IE(xaz^N>0#>{mF|m%r2C?8j>#fQy11ry{$4euAp@hP%9u9EPB24;_EA9 z^8KgJJ`$2DL`Lvkpa$Fz>A>OyZDH)COWA#Gui`p8QIIkCtGSjk`U^x{7Xi-42U()2 z(|4_@dCF|L6D!Q{0zhdbsr_g~stiCXl#)ybMvwK0)>E2p5!x9(Gjf?X4ETXRq<`OW znD_u)io$>{MfuGc_+D4C1$P9&9{=8cJ1PJpy-?-@TJucO4vpb|ypYA3`u6Uu!7l@q zBdVSdTXyPeDR;e!=9@rMWeni-C;CLiX&1+cM%~l;?;VTSTXk^3&e-|QM&@1)`*p3# zFUOW3pYvhG4Q*8((v`6Kc3i7PsN7*1l{9Y|L#H)$R66eSR@(UL zZHV6o9T?E}wJ&O`u^*o!8@Wj1qo%a_g+z#-gN`ti9x-_hrH0>ZFmEBv=<{HPZ6O_3 zXbu0^E>hqbvr^h*O&!Ap%0?LCQ>k43dqown1jwGZIw{gxuLl5Ju)wMyxV@iB=57O@ z{l|}@L7AWmX(FIF-XvJ`5NvkzjeZR+3Sz|!vow}!q>m|-2R81`|2m$Oj3FV3D}C0oh3p{Qd3J7X|0~Ger)p|nzGXi14xE}O9oPGE%OLyN^Qi|P zQ)zTH8Eqi79O$EFWj|;5Sjc~bhy#36MY=#*r+KBd)paM|-Ebn-N}yM4e!W>KcZb=% zm>G`2)Hk8l`vUv_*va-QT9uG}L=5--Qxt7jvd5|Vja-2ICUe@w3BZGU?0H&w?zdb| z5$wcVi?3A5^MSL_dd|J?5oTF^Ua))xH|bP%+*VZg?+_NWK2vG;odKILv54z-y)Qd= zCNg}`N;S(EdjU+_oA`Vrm*@P@yfIA556@C5=Z;7&a8(v`#Iy;|pbAdwgogCz^eUOp zG*~a1V8oRX>Yyf|O30yT{P9x{jTe>oyua zsw`w*;CjER@DMSD2f^z4-{AXb2b;At%kGtCEYop7Vk$X%uPlhQ(Fz_Sy48&0xj2t^ z+@+nIs;uyt8KjiRkLfn71MsKcV>pxmTDFx%VC@85Wr1Wed!i;dCIC^*C-z`scrUQS zhQmu|$61+m3W)FW5ODkdiCm}foOVgRS^b{mUX^Vy()?tX*ki1pb(=wDyrU1Hy?lg9V0$`kqz z*6_(ed~RuFe?J~U>y!=pu;F!q5D;__9HR_{R@tRDVqvk(DEwRk8co__gYLJs?1P-;ja3S#j%<(cjbGF_?CNG6bopG7Gt6G`c{Q79^7%a|I1 zXZ&R8Yiu(-zg7pNkGX2Rl6p^u7b4MuiILEyb4XqsZb-Z+TRZvHW>LkYvRt0H5IXyK z^snvy3_Vosx{~fOIppFr|4qGgSodQU?Mr4Z@dJKjO9P+hu%zTBkEuoP7)rF6eyJbk z+GO?N&5G)=3u(=m`5q6(n@-3x{f%mXx0O+Mk5DGeZICqQ)(&oiBX@IBs^;0V2%4G6 ztk6!^m!G#)EJA8()=pN9oIZY-H?{v;VBS*qg5_}7{V9n1@mV}jk3nSVHSd+)q#$*R2SzfeKG?H-HD{PymSlLXjy~+OM=@T$U&uK`@@vNW!{T*W zHsF)WxIdyI3xEhxsr6oEwgGBpNGi*KniJBkOR43KMw=yi(M_vm+)S$h9kYt$QBYq9fL_e?`MppYl1eHx2qyB* ziQxipqg(%jz!|Idpz2g?-~A0g>m(!`WPn$%HbaF9t0XW}4-J0qQB*SU-9NhTzXB!~ zINyJhdsRJ5kn0xqnujK+aKS7%$0r8>#`=l83I#wG+D<%wtg(I#@o-ti@cryZhp5Fq zJC8gEdU+l39JQ5nFr9DBUV6DU`?dHtFLQHW{i5x9A{5SNe(}fp1)#-Y6+^Bx^$0Ba zFT3e~uGQ3B6R!QUxVl){VH{yGF z*|Sh@((s{C<&j6f{TsjXWxBIo6k`h=@&yeoz8#lUbp|)+JDP`1swYtEAes z*#2iOI92_f)ZTPD9S!YEZJpzZ2?tE&HjiL>{mPRL`kilLhfS}c%NLse{5nvvOK3k`4S4>8ORH>QzGi0~0qnbB#q3Hs*QHWl z*eCx74r!T(aT9AZRAbW3n^5L8ZkENqTxofuu68C>ccQN{JwzHY+>;s>jndEchOB~G&2sw>L&CV zKF8I1!LaHc?e1kcggyd`XeuGg>1mFj$jAgXsoS3ie`W{nhPDr{d_B4jHj9F^xKrMA zcRQ_KKkxoLA3KKI?XG^9eA6OPIKyItq#bdy$xgtGq5t9-EV^Nqc>o~J^?(AbuKCB!dX|u-judv2n(&ItzWTGR;#$dpCn%WOR z4kBZx{GT?4x+l3~sNz?&2yoPtTZK$S7V5fX1Q;uzQKy2XhI5`gAN-##rejdFWJYv8 zgEWKvjZW!L&Em5OO#li4l*j_OM-tr-N!5^ESpq_2H<`}AztVFgcxfrkTPNxc>#B~K zZ;&`dg#PDLIs!D@cTlJAZ*8vnSQ^>v_t?+Bs>d=S8ZSi2V0n!4N09CE+e)4a8v+TS zr|!b~djTkIxXUX@MX34!~%OJ&VH7N}@(by`FkpDcJQgK$=(Q>o^|i6;d;B3$SCV&E zdr=Zwb80Qzu%Ra(vQq{}iTz4Y%x7fV zGS;3cgPCK4(enHLv4DK>Q&rIbfY(ZD-|4;(7P&k5Y47mU_L{^uYB`P0K8hB6jiJ%PD4a63Yk?oI#)Gs+@ zFdfAG%C@A>$U8q+y+Ctdi?Sv&)c%QvvF{^XaDG646H8??2di|+KznSVK!4&gluag0 zxB{gPF*Xh+`g!Q2+v?}oa!-Si>BLIa?~a$%-$m9TubX%~E5D{0$yZVAqU`{xfU?X0 zBwpB0pd8MR&o(!R{uY9wv#I1>d1x8kQ;)n@>%zi|vhf|AF4+1zAGK$XI?=v2BBB~n zUNJyYcu6%xe4vg+Lwb@@X_BVr3s)?E6ATR@xFHd6=w16F8jkg1EJbo$tkX7(P!LUx zA53slisI0_QP__<{E9vlA-(Q3>WAVNXQCHeHDNXXJLdhW1Oss?PjP)D6wyG{)m7!y z)eqg&KR|Q+eINj%F1Zav2~WjB)YfZ%R&0M}TEEvJ^h#Jrd8O+5gpNrWgfN%#rU&|_ zN9Xkc+RZRQsUNUyipJEO(1^7Q$UgV6$y^itTqy-SoivyBg(a$iYvp#leqtY{k2h7Od!d&D6~p%!oJ(fY&)S zaL;}JnO3nN*fK&q|3$pjj=g%mkf+!nP;DRwRbkQZePRgEiCE8cW`m zdT$7RjuH|$W_4jj@3y%s7u!4c-E6TEln#7H<#-*VcjEVa7~7tgwzxWn|xyW$C&M>biBsU7Ls;yf3^s$jo5meg+z|+ zUGKEaz*^QHE({60zAU6DDDv*^57RCuLES|sS5zlg1|`H)35sF40Qf>mr|}s(XQI7j zroF}WV1l5>V@QyLA;!Z14R1 zFfZ)SF$a9|EQoY)JMAXRGFGH8gkoyI>$0dnksgi)q@%FWZzJB7N*)I8J&Tp>P>D0D z`Clmk2(=UdS_nZn)Qy5xNAU9XCa#z*j~k8<4QK9v4UCgsB7k%D+TL zT209ynda_PWnAd6eoX6RX+it8L_t_y@s!1-!Zwo@*t|a zxV;5!Sht7*3!DNV)Bmcxq!F!nkNf%y!zQ4638Ime4a)wKqK*xywK&`!nDJ$~5?Z}h z;g$M);}KZ&<+Ped}|)dsM;Y3<~k>DEP5C^VtRfIbUViN&?=Q19T z--G%0_C86YQPd|@_b?xPtCdy>R+u?1n#ioJ{PN{rm_R=6Yggs0)gkUDYZU~gnN`42 zSWEO>Kq201-GZCbKk@hcdtPQWq=D@Jv_-%9MCLMU_*&KbTBdw#H1~a=8e4@Y>++uL zrhL8xWOg_!)M-TRjdFNiv)P|N+=37}qVrXa{Qw;|GE~B93`dw8lCS;Y!!0c$i>tvR zFh7WYjUnUD6f?K8dXik){n$Twk;5ZU>r85WMM-dQX_Vm6W~8~-s3SrQ)AP=r=P0Ob2;B9-82 z?HMKKL_gw6`Tv%)P@Xjlo7^#A(9~7&iWjx6mNj#$K9_nStt}?xPHDKuNPFn?4Nh%b z0&;#DXl-snN-2@!KW~J4ioTq=5zmJSy>ruh^VM5K^3zPiYM9d1O?cx`xF~-q}Cr``aOK}7X zV7UB`p%2{e61X3N9;^yevWzW}jd+n|bh0eC2=K$hmk~q+n*p6egV>|Hp+95Wk;^?D2S2tCO9x7~ z9RQ_1(@mvr66o&aIK=AUdH}_J)C!?mM=Z+7 zH{!v{o21es4nNeCzv7p`6am5LIB6F6TR=<1w0P`wHN}b^#Ud^x z7S90MsE?TbP?KlEx1o!c*7%|fjs}tdyp_`_#YY%^#H!ljmee1uWej*1D(7-k-?WTS zWMEmQU{eD5kz_N%it)~|15({PLu06FaNd;BW27H4FuVjvD=><~NnBzOe-jQ=S6I1h zxdUhZ?^m$aSf{#ISOj($;DLJf!W^RZ8uEdPT}sengY0*~hD_9Ksw{svLk z9`GW}@5jL~;h`yTLMz`B@t0ffK1g$(6snjU8tpRwu*^sG8cy=|OaqzaY*QJ49skQo zY~6a9E$sp=z65#6Uk|+ai8bGK8ab__I#qQ|BaHOtV_GPGCy>gAa0RzNoVgv6NEv*7 z>AtOR4ZTPYGKh@#Anye{MOE!}Menb&1X8JxH^J?GY_*p~$5+&giH*4~lW|J2na`Lv z-}x|Lw<-)(lKaOh6tN$G7usW16`0rc)Y>T?s9HNCwmF>?(ep#&Og)q#kW3{j5s2PS zF(cZ0YO0;zq&MWO8s{M6Zchc*c`F-OuvX`KC-qO#0~*L)lbZ`WdAl*kQu+oY2dmem z152D&f2BpbdTNS$YEsCMkV0YWynM}$w0aIb_g~_eAK=`>xw4pc2>L3_7OYo@@+d&Y zr;4vXaP%2SG72M9=QInb@_$6* z;Q+lxT@?JDe@r$0C`>v>`DU^6@l2T1fd*Oe{=v8$jfMxPhN2Gm2otqDWwRXEF<_qJ z^qNhJ7b7rIT=AGv&bpPhT^lKpZ7^_>G$eK1070Qq2~8C31BBrP!7M*%pn=``k{g5s zfKCO&-ldM6H)!rvCw4RRJ^gY(&MhG7db{iIFlzPw&Yy?1j87xxpr8w-IIo6K3`IMc zCh7BanVvevN7&c?UpVGWGo!!HJ|Pu$fLCzM|puDl&9JS*y#|L{N#17wwY={t13{=`~%FVuwzgAl+$(I`fy} zI>ns#WZEP=IMqWp^+{A6(atA!(auVk`&G{d{+Evnc|YAX8Vt=Gy(GHbb4XfNBNM34 zF6qu&%fYLPe-D_PYK*{3=GKdESO?7MS?6w5a+*E6p|%|=8IE%dJGI4s6mt|&1p>jP zoT<(Lae1TUoF#hB)|&ne!9V~#!Q3r0`#IT{KES&uWqfu{k-)188DK8xED3>S;`2uK z#x}|AN5}_Yvl}NXA70DD1Sx>^sxXWrOdu<3Ik9WO3Qhz?quwOoNMg*M%GC(*|RG;=$+jN`U#54LxLy{%|}#Zb*FwWB!`l1XTmgUfir_w z4x5Zzx zqE&x1D&LRYQyx*rwCPcfA`K#cxUH`I&;Eq#!* z5K$b|HyYlS*^&bvY+|Mdh3<;_U#ybGd9_QYzc=>EZC)-unt%)%&sx7Q(sQtnv?6(k zX;Qu=%ikHPuBi5^aeO$at*Q3v$ux{N^q3k!FI1BU62xlg7g7)rJup$`ylGo=7qMgp zG0nvFrBxv7-xVuY46I%q20ZqztVlhfK5L?)nE4}1sV>E$HCy8A%pfwzk_ka)omWnZ zCr>trF*wfdok{Pg3|EhU@b&5)9M+JFgN@zFm+Uq7iul1-RSq?2dv05MD9jvn)g* zzVaAFmx;Fvb3uzolP7!dc}$T^X_Wvd%F~txHLvmKd?L_qro82gEAocSBvc>efx@l; zwDG~gG(^X>#t7$uNO=$ZrML|W&F1-Cl<^r%m|FUd0f=E)yN;zkKb+V)}{;U5I7ElDC(Kl9YGq!JhXQ^F{0W_AEhK0CmO7S!kP3)lOzL*eFPfO~hhgCyUYh%OOcq^*oO3JsO-4LFd{RyGP$@X}iU_l8m7#`bRg ze(dhb!t=%5^$EkUm0ED9Foh$f0WCWGA<)kf3ciXtPJ89TqyCiq>zCC<}5=O7EG3GNyL66y661*DFhPb##&kNHfX`zAg6MY>|R z2Y*1!YmL0?$IUf+hTIQz!Au}Tt@)uedWLSU`Esm1 zARi~CUgw%`L?7S&W}shFu|bHL0OuF;VgIwY4wfB6P`G@S(g0`UH9O+T=DgR`+2t)= z!ryd($;jY$z1B{S`_2lY%h%+sexz{S9CeHjRo}r-xSWyJ03+2y=7UB1<_a~1nwDMx zXY|vu1@c%!2e`x~M z`o}e{3&X($=oTOIKM**;LXh^clVe09Rko|i&|=34Voq6uW0*o1;gmpwl2I)obylxA zVQq+;c32CDB@-nDq6>5(tWcA;U`b(fEeRxpzhVR2Nf-u4*vFoY7G3`A#vLywKZvAo zn<=A^OaqHU)V71G&$OxU*!KnNMj+bUa!4x>0!&sAz(37U4V-H&-)bI|VQ>!y`zsX` zs?ez32hM?*2t3-Ox6H{RqZ;o@>S@>hb(1S>ta=skTNUs;inl3ki%d(@+s6FeTJGUq z4lE~n0n#PHq!}G0_pvQTCigB=Rgq`4lMAHF0SDqE1BQ;;SHv4%|{!s6@>ILl<}G4~`V=!zt4A>RXZ^tb-vc5=-n! zC%4{Avd0@%RyyKZrl;=8cQ{D?E0-BDEsCM~oUcNc4{Jl+$L^?n{E%lRn0G%n2N~93 zrA53(ZW&PAxnjQ!eap%Ni(|tU!!*5QCD-7|5tyw?tGcy zL#?VJc^Tg!cwgM}kN<`qVKSmp2?~Y$xYuI73EoCaq15bQa z0Ts0qG9My3#+5u#JBCZ)I0yb)mihrXW>{xK98=A{7a?4d=iS;*j zPH!0cuM)t)pQkhz1kb;Y^zq{?nYSPU4p8?r<)WZrf#&=0Omz0+I9J1w;zE@}Y8egx z7XZwyn+9W9^`U8@E@XQ$tI*R&Gj%7UFhaph4*g#WO9)WH`Ds~7yGz_|w1zJWqDygE zTzfzOlZKcxfQGFYL+9)l6uXelJ%Y*CxrFJg3pIbms<0S)yUysQt?({rwVQ}U{;-$g zrHh+xGApYKl0Vg-m=762cSam3Lj-ivX5_VVuIHi@6)`n7=FsOD%#mR0Nc;T!#nJg9 zM}P3+<8U)?xo}g$RuEwrz;&kLXda)nt$gT+3}H=#rOH~UsGyaM-Vfw3#Z2@@G);Um zI32$#F-nyI!&%Q9qdUr+eZMjx?e+I2ysB}~U+;=Wz!GJ|0TtJq2+G`Gfrc5vGkq#RX;51Z<+ex0ECtAVf{D1F)G=-17HN zx^)`?q7Nh%Y2-8;B4M*?^0t_c8*?gi{qbx79>0byW3jG6V!SRfc@j>m7b*xP%V$EQ zhm!$mZPO~dhSL&SM+!8vA%d>;3?G34jkLgV4RQA81mdNOIdhbmgO=!72AyQ-q{c^p z0p?KY5>>g7yLri0+Ma+&-hEwCWK#^#1dj z108_(=?=g*b06$gm~nhaR+EDXq~QP2zU!2WCd`Z5f(AEfm%T|=U4ZL}|JALlvjVQy z{qK5}H_1yGfQly;uLIZpFSuWGtS;$oLZOnKvCcF=!kGGuBfzH`)3K}GUXs{cPh#qf z4O##^T|<<`W@-Dcoq7>?d(Xe!+?zVHyNoTCOu1^DsWmLbBUz=BA`NxF=I0r zc0v@GE=wW~!w2^M%fH!O&Pxds-=I~sNy#DS zbuH?5+86PedGiK|l2zRLCkC+=p4i8^2iHN%60?y%HwfP@zYhftar$OI&}ew_*QVYO zLd^pb1odfUGx?!_0x;n5E2on&IP5+t7Xx*q0-qKT#kGh=Dwf#-x{X&&S2cAWb{DuN z?|!~ntdst*k{y8>$f5Nb#|yDLLH6%?o7EV`s}(&wd1&JrAgqD1r)&Mg%(bQ=NzuQW z)HSngsf7qBwD=Cl7oa#b@o^Jo$a}&Ixm@Q<2kVR%1jA5j;}}{HY6hBDSXC^sPy0 zqDK~AnHZtj8wUCu#!D&UWr+QSe>>n&Up__t`U+4wiwdJx((vRFKjroBYCI2k%#}|G zLtqLJ->-!7e@)!g%!!`Y8x~#yUEkswIEc zI!E%>FrCz2HBlq1Ch0Z>2XUy!q+#nI>-2f+gz3pb9d9{@|8GEo9?i8~7lcN1y_AdgZTLu}0jeaPWvY}Vv<}I<~o)w`o2|Gb31i_yH%^1R3hSQ^1^16JMkWj&ff(elZS1FBTULvqH zOUeZfI+=>>6intnU8%%|l)3DiS_9TM;n+-=+YBgH$}qe>h$tXKBiPSE3nrI5{1u}> ziySLkekJ^zqYJ(5(Q~7JBOuVE{Z(zor*tf`>VyRo{*g#E08OUh8@cHe?CjNk?Pda<>3V@O9dvZ4lOLHX(#}i%RC95q88o~YnweDwAt!8_)oQ1JNm%m8HXb_ohE999&*KcfK91qEdl&G(u1r`q@O?MQYo+Ol{a-boXD;)5Mp1uQncIv>fkqC$4r5Sc?EQGn>Na1s{}#bAdrU}Ml>gQEO= z%W%ehJ0cF~_t4Pf*x}tGWyp-R#gVHrI?>QDoFS{&;sDinQTCANf27x8Z_v?)fz5e) zVfbm6kow?u$~q^d!+*I80MxrT>HK_gm6d1lczb?FP9v~lAFsfA5dt>H1b&^wkc>PR zpddSfxS!kQFXGo>>M$WS5x62u!6KM~$gl~-F2!MVAVh623vj$Z6D*f0_NGw!Zh(0lgY^amq7fG^z>j(5af6JePd(S=-<&m?dy*(6^%^A{L^IQ8;EFp5!w+VV z5Z^xzq3}xsdUa*>aCSZ9G?AX?9CXJG#P3ppH^2W}RB%`Pyx+fm4DaC{#E$Yhvam=)FByBIP!`mE|N-@<# zXM>jq+pbl$hL@mM+VrR>so3b>BJ! zIpWX(2C;e(*FE@XADJ8PKZ6NiK!5>;(oXRrrqlDs7s4B-pRT4xX*(7e2fXAJf@+#S z`cCu&aXSn2-WB#Uy)zQja-^k^SHzIFL<;75I$%a(DC4}nyXF+9w*V{H1V*lZYNNhs zn*8apXHE^F%}>Z%{I32Z5^}0Eac{^p@o1RKd;J@H{rgOgEJKAfDei9AhI!I z!kdqgH#r>Thk{^Id&om46>xs8keSyRH=%#$44H8LvC9YExS@ydK>50Zps|53^~M)% z^n3w?l2uUr9*s;NblwWSJaX`; z&>3%_{G$^Cvbfuz9oWs?pQ+)?1yJiCkT4G=IBK;H@iTOpR;Y6vt$QEC0{3v zB*~1lV%d`s3laD;Q~f1U`2p-432rL$IGLxkgqRzPT&O-{^wq@KS9apl7;WhW4@0}P z1;0!CNC#F0TWaCIeV#M(RJkh<>~X`nz?{?$Kqpsn{g0JUcqSNHh}^5 z#NV_V&TXvDr>FakP03g)%`?A_Me|DT6R!vJ_Z}Xv-bgswpZzXxu1B5Pz{jqvGDog$ z)Yu8yqG}39Vsfhq>@g4cYYJ!#J>-$BIt4COUEjP2{eB5AP01!9V;^Bh_EU@2gBsu- zrge_gCM=Qou)|2Sf^LtTTJGz=SeCOF0{{#F+kJl}6Uv?X*O-}1!JNFf59*mLGX3Ehu zD`;NV0>RlHuHHH<#M=AObr!tUZS^<>K9$jO*}FymB7v*-R%$;XH1fxF+A0Chf@)oE*zJ|NE%#QO zETY@AY;SP^tP>n{)jFKEJ%A|M(mBEtk*&iaJz>O=amx74hUmbRmZKu3BckJ-#vt!j z$`?fN#FySMZdNuz!^BuqBb}wb#i|eBaG-ZMN$w;#Oq?m7Q)w%QQY$LibIXqB1wj2t ze3)qCudvX7F+CsEo*$9}(FOV>7hsDNd4JFD@aC~EWT;fP4iJy0-5?Q!4+1|&ANIjS zCv0UXSGVYbb+ZW*6T^iTsf7$8%SF?*<78%LX2^ciak{Q?8H;2zz9rC)s5ZwiW8vU! zt{rI%&(;A;bLoLI`1PkelUzS(Z@jUOjVtGbMKlkCnvk{#n!c!*FxuOklcj8h&k$Iv zWyP5egA@RR!v7ie$x`P2UxUdo=ojMF`2P1W4h+`N`Fs>kA{eR3Fyx2q1Pc}o2`831 z8QUJ)=6rrX=UghO$#2Mn>_izF&2A-{`YkLQY=fgZDk~CQx2-%T0 zO86_Efh`5N(ldA!F`xVykDdlpCwO>+^}lFa6fmIgo8mVL72gk@163B3)OD(ISfzbszC7eb~B%0otF?)bIK5&2vtec`Ox^|4Q&*GFklp~6sf<~6jB%sXFjgboru1)Y({XPH-q+@TYl|DqHrKV}GStlwd`sYy zM8_TyFF(jzmp|OL1z1chCk#w7&KVt*%Bx_D$|e+)SRb>nT*h6YAs`Fr`%#k5RS?^X zlyTH{I)XXkMc&T}nl*wvyH$efCM@Ob4JIWJAzcz?5b7_D2;r^E`p_Q(qpxQpRO!Z~ z4F-@Y>2#n#PK`*>GcakN|C_Wm>Td7EM`#IBh2UGj>%a#lEj}=5E7hG+VN0VXt!z=B zuncxMW!x7jz$9GK>c(v4>=(u*TLQWy_@(V5*}yvE4a`(;V5SlnqBf~wd}QFE(+o*Q z#1Sc43pOoWcSb*3jU+^CI8ZF@S-%e=}FgNCe;4{GE zv4`QWA~1|}^>!LmN9>B3=rjeA+kiEuHrTYWmdCz~=2$nPv4mho+EmehgU&fBHd{v< zSmm^VRZhc(-y}k4$^ftQ>xgnhwyv`Dppi0gUBU*_gpD=sQog_34jcfiaCpE9hX<^1 zZ&TMlm4|Wb5(A&l$P}>R2m|j#ID`K!fdOi*jd(Ec29XfxJJ2cA@ir{fWG2=6(XFO9 zW^TpodZuI&;7=fkXcbr@rK6;(d@6Tf)%xN)Aug3o(B>U*OF|NU0qXvkg>5$cq}_Bh zT!7HVUG91I(WB+>4JHY-!Ef(L(I4}=5mhDiHR39VBEObcUBO0LQ(HjE=$((U>inAv92sz(uz_N&xPx8^+~L*0cBD>cTW~Gegr4elC+so!Yk9@l?f-yy>XoO;85Dq z<yy7T*w?m}_N zm)dys_Zt3zbacIclok>Sc-#i#V@=lva~gGK3{dNsB<1j-W!)nj5!r5N^n~4^%$&ep zY*ZPI8^^oB9!c-anicncSmD@I3HuWS`_qP;b)2w=1{2R#qnKwiiXgDpSE^gayU`fF z!XSa)9K=2>?;PI@tWWL9*|>U~J#5@9FFRdq1{l?*tA0wG8s+(8^wT9?`Z^DN8}1^XHQbiXkJ69e~K=tjT)OW>JXOSh@Tsw3c}7~JGJ zxzNNDV;R!Onac6*ZZF!E3|)qQ@!!)mujC5s?m_HIW_>Mkz{RZDHpY8P>3d0yMRN1j z0{)L|R3fH(Fh%j*Dx??~_q^!nrAco|xPb%wGV}IPQ8D{u2r?%((OwX(=k#xjQSzN} zL=ThX4HUn0X5=z5+w&74VOvx3?+5v7eZ@Zg=m_lz2;^aQxu#*i3{V7l4c5j;3K}R2>ZubxqCws~sd>>gR`&^nK^jh!AhRZS4 zG-ls@L9HTh{M)cSE)p*kjTZhh&zLsUAq%~JxR{Q(*|seo<^4SMf5buJz zpiD6veRh9*UV@Cyhg_%&qwZ_M$*@kG zkfh*8k*{G6zj(Kn5_GUuUoK}GxHXAMiY1!lB96HvNynpVP+~hvItgmuZA0DJrL_8w zA^pcG0x5XMq$1sqk&Y%`87>6fo%CSrs(G1o^j@Wv--`)|z;^^hg7$Ez`o?(MPvvU4 zfR7Q_n>lX=_mZ)cQu!2E9Dbh5VC-tJs&?sToXmUmIC)8NuUI%=n`;v%4V*K>G{2r} zs%_87;BS^m(tfh9VsM$uBrToilRwc^Jkg9^dFv@V_|8-IudYe-Qkmdu!H2nA+D~5K zPhO+#THl0tlPiSY`=vdr9xFaYyY8QKe17+0&a`JPl1(Wof-k~^Xjv42Hq1&zvw4AV zwpJR%ec?vEIvk0=S}Jv(wxz1BI1=ruDmi)U#@*mt6UW`ho(kRUxvO&=!(l`!A{QP! zbhpku+c8&MmE>KCQ-8Lm&T2H(-r#AMj++hladY8zcgZ9DsK|7cnpkCo$}-&|wW;zl z+|_AZ;~DEL^!uiV^YtozMeLB!pO!@{pIg&p?o-b+{8p{;uZm2&O5i8Dn}2A<7F&`J zXFd%xivtI8h=%S~5xxJ+cUC2#LC_Hq=y=btgfJr4>7ZJA%rJg@^a^ty<6EA_o^DN_Zv9=zTdozS^aSBioY?n| z!t#{l3)?b}*fPf&DHh|UT22lj6{)INf7e!5Z5sg*ABKpptzVj=0fUYv`!|VFq^LoL zYxYmADdLk29Tm%k{XOC4tQ05;%GXZ5WwnfhMXYVkw26po`Zk4mu+$&?NLTtD zLZ6kUBknu$E7207QT1w~m?I-amOF!^FD`23>Lgo)a$fR->oT!@TT$G|_mnEAR$G;t zD!Bc}n)VSa;=?TBA9ON0PfMhGNJe<#vgb9*^Fml7^N z*RJMmnY%iQ2fTp< z*z}UPNkZb%6aSKvVy{&Gj0Jw{#-6wKFN5Qk-j6`yvu7S?2oD45e?PwUg;x&UX7JGu zC5l)trg45e+)2P_Qy=R8(f%kiw0bL~R_iFK z&Hrsg{T}^7@>qZp<9od{tn5K{(QPa^ARG*oaUVPSmFgKrhqYZpod6C_9JLf=owV+M zznyGE(T29|BSyU?SrOE|eAFYwg*zs;x@^(=wZ1ZA@yosX)=3}rmp42F&B0kSoR-Ja zU(VG++9rok+o_Nh>VwfzFQq{%Ot`{-A|!@ix$RI%umth&-q;An%!X|$wI4K;@XL_z zaZT=9Gx1d@Ec6!{%`IU7je<}V@qRVf)9DdoX z12Zl`UTduu$UH1Z58Q(s<@zz;G3@xhGTnHH`7__*sZvtVI$jiBuXa?YWroc(R$QYV=tu?&1D-ccnFGwiRbi-6magGAAu08?mg4 z)d30PzPO85{?8(W=mr%E(L-6r0Qpzksym0Ph(hDKhe6J0Te8k*rI_u+;75Jc+wgdO zc(g;~Xq6#qSpi8u^I-WswoVI7r$x7r>zk&!`W2*KVZxUXkHm*?9M6RvbDdK61WW zaZXfi%0hWv|4RRkopxYPHtFM)UXN79W={{$lk9Ia7(Bi82YLUmh1+Gej?*HTiFYnG zZZ_U%NB_4P$Txkx?H49ElzikdHv7y|n(NflQo^cv7@-qet5QD+5uSVe?}DCBxM zl*dUx(Dc#qkLRzTAb*t|+pWr$Q4YDjO674qxK(vf&9Guf` zK8oHIr&VgZgH8hTArm>^1oyds)kqrTQ1?p+%BEjW`tRpcjwHorUtMQd=fj&~?`Su# zb)y&mMcSo#OeI24lqP&Xje}8sZiHi(+o0Dp>3qmo3RnN=M$&BS9kSFLJ7f9l)6vJ1 zlja98`vCjQ?;5wC0-NGCngn0tSiBt;{%S$UR&{w zC|*a_>Q@fB6g3kyx7dB7P3j9CR)%o+QZ2aI&L@B1<2gc5$7(2OF!>Xx^q}7x3@#|3 zbQsVzSDPpnH!rcc0}ZBp0%d#}_ifEbh0=TeU039!ZY)-pTpO-kMf*tCJfdkf7H7&1 zf_ExM^w-ogU+}nP9tzVOrU&Gzn~tfQvcoeZUGPM@Az_Xt2_ODsQ1s$k_0V7RZx|15 zh~mdWM}~MDX53_B2ewc&v#!N>wP>nsXsY|{MEMAWXW`^^#lH!7R1)<{pJwt7rFYw* zXRR32|0-#ok#pMc`>3{v{F2TVt<5juu7?ko!nE9N8N4(3gdj#K!_&hk9HM`8COqgj zJ(CSb534d#bbWL>IG?8*?=)VndLwnz{6K#A(J$!kcCY>RdFbVD2Wr|+ynb>} zKRIVqUpgr`L6@*T?VO_B$j3@|bP}(J9MnVZ$jNv0w!bw-Q`zLN`=RYow2Hly9D*|h z!FfaMGrM~AW7v_Algq8GP?Sm=Zy&{pqT(qN?+`g$n-Dm(09aa92zE@@8UY0P@PVl z!LNIp=+Movw+qeNILx1~BQjEiF0l1lz>zJZrmk#;w8`9t?~@~#hgoxJlF!1fVtwfP zyeh(+>%)?i_b|!p)YsO2GT|kI*FWQTrs8)F997jt4JhYFg~uBzGJX*PvldlWd@yh?!O>R(UUUq)Q4CCV4v3CIPvR%}9Ror=1Gc|}v zKVyVgzgA)li*c^PeC;IBhgYuH*{0Z;P^|@uk@~Kdcnp!TzvA^;>L5kN`y)^GO+WI) zlepUrvGcS`Reyt$A>PZ3%ZsoZ{fHYusuhrkWGAqD@~L_oBXYgIf-)Jh{aN#dQ zN0huAW?WE2`tY}`5^8;Ul^`xBjiBAr?HKj_F=CU3acw&Pj-@O_tbruI+un!Ct{{sS zb4hnO{IQqZe-N@00_2V1tvRh7w=JqUwC(7-#Dm2?XQ^@1g_oiA5i>LBE55i;FR-0g zw5tn*A_UP$&4tmVqD9O#VKE>AdZIbFr5QU?EWk@um0Un7am*zkUsV=sGgJe^T0EC zZYriSx7?>hM50{|TDS3RM!;8&Z5h7JhMshsd-_cS+cFKuFe)P5Wjs zDia9EY7Wg5Z5eL%@4xwh$LQ>qU+y@vy5>q_#)KEy7h%wi5wq5Awp{hbVSBH8>}Wy1 zE-jn%g66~%(ZS)f?Er_xdIq>R)Lk6q!a-nuY-*8xtZW1ah#~3WQP5ecBoG1be<5VV zhGg9dDfmw3jl)bm9Xu9jKzdPGacskXOn3m40{#&W5mnUmqp?*U;xHM<1SR<$y=5o0 zm0=PX|59bd^+Bd>S7Y!tX0^+#)6~r0lpD~@Y4PKXwIJIy#(JI-9PSin@FbCAvO#LL z%?Mr!#jrt6`XkjfDfoNxSh6~=>yN4V3~E%RzH}fQ9@#%{H7q=6p48MoUti}obaCZ# z;_XCB(-t=rD%h?DBiw|FgF>OR$Ie!rH#gXut)X!}p@Iomq1?l*s1`}hTk|tDo{^ix z?I))o)X!+};K+VmTZn%lGcu3cUkS~)8>+nb!d^)uUdol`woF2QzZ@B%{y!{zby!s2 z_q9k#C?zq{3?U7JAVVWa3m-(lL7D-iWdP}rjvhUE7`9^h_+S?^daeIg${&*-MPobGs zzrB+Pyft**sPR5J3N3$G<%BkBzQAeCdf!m0w1o}ShCx>1mTbf*WAcGO*Wpx7e9k{8 zQh83}9N@@bUL0mdP52&Kt(_K5~EnArD5 z5`glz-&XI%|D{)?H|ISQZ_@(2@qO%_#GJR)?4ZT!iSri-^inT=1g@5l zFC6Cb>MeJtJmPxYGTjh6h`zHMrAYKlKdJE9Vx5;k=CXY_XkOyO26c5|^4o{&`kh@M zyAeA32F?CRQ&0P$3+IPFx(8lrNu(Zr{zW;=vR43VOdZNO(P7CLp~qTF{T?B4@oY9_ zv*MNTjeJ$j@)Lm%sXj{;47&L{yImjWJw3L=sz~0O==s<_{t-u8C!++E5J8jOs7~l8 z7Sa%Gu@_{z=XsXMe!rv}+@a({5P8XZ6JvboWr&mFEd7NEpG2Yxwl^vHqvFfsa zzxMWl_wyi^uI!cGfZSxojAXQb68pzqi=cXQGvT`CPEZf~y~7xGw(x0D^HjbXfj`6p z8%3Z$S@!4VJUw|vJ!L$t4C%Fb>=nafhwO@TvpIL4ySl_kV4oq?cTH98hPKvY4v!9d z6A_Q?3-7|mmVzzMC6(0Y=$gAdW~=?d1xG29GR_Uk$Ssug{MOsSd_;R5Em-BqIFC0a?W-E2)@yW2osA0sLWW#aMCkD z^s`cYnRA5ZGt#vaA=xrdtybCVAmcp+6@_xRLiv(J6+N$mGUPp%{qbp+@A(A?;=m)} zKtCU)ZIw*I?IC~|XTB8$XLSn!J$K|WaHOA){$E3iAmWcK0ja&gUN{Kh%;Vu40Zru1 z5JPmW(7OJv>guaMGXIX;@)MH*M+Prc!w9udx=nXu^wqfOAc($;&*mXWSNFI{y-*&lY*oe=FFesX8H@5Q_q+K0ATnV4);kGIm_hSx1FWsNxxj@tY6Tl# z+NPC8V7o{ZBs;&AujIk;1K$!25@AX~Ee^u{p(wWca0ryB0 z1F$Zvqg`IDaYuQg4v#OY2LfHwA)=ybjl=LeToO#l$RP}DFC0t~2#d;O1sXaJKhVQT zWRojF(Ct9?u5V)1oU)E+^fn&(S}mcTa9ZlGlCE#Yz88FsXU1fJ1zot^b@>{8V1TI9 z>`z?@fgrwm--%<8c(S%3BmVdS8jRHFdA)-4CPgH8lWH?mE3d7YUtalq8Q$Q_3Z2m!9SX-rUw0rlrQ>c{@-~iil9yuuu>A6UIblTkDFPDwCE0qDVg=( zGIt{Uy+X7$luCykh@UB>I|@>At#4|Zy(#i0khNp_`qlRGD_zPLl)H}n({Wl0?8GDm z%`&||fYz8qZp(;&egI0G#2z7Y#?~!wCmcg11}a?Pv97d-r6~7}gtGUt2sNrs)0QZ! z^4m-OsWaSmFTu-Mv@tb2?X=OK6P0@ePbm*enb8s1U6+nT}Qv?bQIKK?O6&pV?(gQm4g+_c89?bTy?uMD#?i%ja&U)wvfK z?3$7pG^jHY0>?ZZ+KLnV(0l#?bl?g;1dc}m$K&8j!13H9?IT@@t~s@yIpEtOQWB`a ztVa5N63N|A;w~TCe9k#3$ea{Tz6u?K&7*9>z~pI$JMSHQzGvII~#+=+fVaLcGd|PqB)*o7qCY-7<(%r=a+>z<6gzfADP0CaPPiG zgB5blcLvi9H2tKKo?)b2K3PrjsRm&jb%qNPKq-m@L=)gj>r z*1pBM`m&o@m1~Z>S^;6?{dkzg{qT={jb=KD40&zrvuIUkt?^q))lJPHzNGBi0~={V z44$cPa5}1Lq4rz|m2`_3=sL#dN;!A!RNaU|X7z>BL9a%CP;fHO?UgcDw>*a}p{c({ z$5kJG3iiGVGmKU({}D-9nk3Pru(o8zzAe>mQ8o9|iEd$09*B&)=>Ukorzr9ss{vov zP0e(WAJ=B{@!-i@!upv;-uz$z9Z`zAtx_s^m)}9R`4y9SNLSb{|I6cAYI`+*)iir` zY0I`wXJbAa+(e*lmnk#ffBqz2+K>XB!-Lf#L?otvmyHg-@^+gOxn3Q7EXsCtvuF98 zGG*N#2HmK|9*Sj#A#Eb=SEbLGiZ8Hf=042dMA>CR=le~RDh6}-j$?42^2-P~?2i?@ zY%lUb#r>y{{nJ05zK{^6L;`F6N{A=u;gq*Qu>Wm$CyG(}p{+3xM?GEg1>i`CB11W@2 zei;As*!qANK~U0X-=E_lov{z?5P~1R$#>pfNj1NNb{1W^4Je)to?;&1fY zK9WRX8(TA{IyaA0c-i2*Y^gd(1!}rOPILk=&v=%qT1O}ee3J-#|GNz_QPvrVg}(q6 zLEIa)=2FotP9`b{6IGvv^uR-9Zb%^!b0yrE5TfyQ$Zz;awS<|99bU$kihBczOG<)a z-^AyPnbBnIeARu-tAJrrcxbbpd(L`~Qsok#D z{zlW!Dp?XHu@!!%GvVDNj?*u`&Woc5l97@lSYgK*GQ@>KB0nJ@SV zjjjs#ochqld6I`$;2O{HMuO07WZ#Q`PtUk$bFD(}!tQ-uWS`M5S>|g}WN;1YgkvpV ztgWY5_55*fx59oPKo~J(Tq1Q#38fy27+W9v^yIeWMU@P@XCqv^d$tf|&7G~XrbAB6{RG6cg&Yx6$uCP=U z$X?4Rsh-ZMX6iJwMvX{?VylP{Mto5dJ6kK!2_~F^l!aBQ`DGd+Pj9~XRW*d`3H}$!+he!_=A5yznc^2-b6Bs$?D_V4cM@IM+Ywm$^LAd2t7zQT!?35Mj=oaIw_g z3rU^d-Ut~1e1;>f*snshqI#tUNrm-y7VCsnmJS!tnkUa<#l(ZtN7z>v9vzUPK$lqC z;I*TmxJJ|VqStiQpVArlUoD`XMh{r(i|k0)A3O98q!@2xa>hU64r+NIvALrHc*N0o zN$UdfM^C3@r~+|a#|5H|--dF=q6TH_%~9fZ&-lvq>wc>^$@$8^ekM{5 z+{~oGty~rD$kjht~pqiSmBT z^$w;r6TM0hoZmNKsjT`xp4zS-d(O0rm*B+?2YPS8(2u)EuY%9 zt20;sL+V>~jCv(k!Cu`Z;luRkb3s#%;jh#Pq#*Wp;!L4n5%s>w;#~U;v-Co>hb08sQ-1}4*wgI0 z)(HAm^JDZv1Nnt`$YeP4I-rTa3V5|o5_IfmGxd}=#Lpq;X>fB*Ur zsj3w*8NI3u0f93DYpdQ=8%w1_q(#%7ZD7ToJc;Bn1D2IB&U4<7YF0H zs+ee?S_V9|qH}wbo_pyzWElLfAu9jQn(fd=^uVQ8fLI->H*EJnkG+ z0k?f$95P@aObxaELR{xCReb-!gQ@`&@0*}j|Cg6Vmn$CilwV;C@nx)!w03UABBE7e z5tGr21c+EtOqZPHXS-m>2QcZ^OA&->x8L7kt`vGsPWl>EyV*ASVbqZJ0ZjAtk7k@W zZ6KMIO8PS`NdlKDqh(na88hGasMUzbB}jWPHFW7J%*7;ue=L$=oDD3I`{(9ld9OY@ zZftC6@EqZBLsoVO=-JX>lb_J#cK{Q9j=PisBk$9xOy8(@RxOV|WZ$z0;git);|A|8 z&>!FKj5Ssb6*RA8?I$g=3>m&7K4st4sxV(aQiZC0rw03^mq$%|%nf^>G~_209Vf@U z%X6+P3V&MA;gjew#e^HQRhc_b;wM`0ShPsl^B0+!*gbkOPLQ>);77i6#09!RRp*gT zd!I zZ97gbSLCK1a#N3!yaIsXN0Ujb23$wrl)z%$$AblFlJBGx25+IhSzw>sLX3Mzs&IxJ zXU+4$_+Br^UC=;3yamQK-9a*JW|iDgNMTgH;o7yf9g%-Hz<5bq4*;`znyXD_7Q=;9wg9YPATmrfk zxq6wBg}6CRU*9=)>uR07ZklVoX=n@8lpcyZ1#t=j=Pdp^2UW%eoI|9uv*0v2Gq<5uhr zELt@p-B-#OZ@cd@hF*l`l3*HU`8yBbN{D`Z1qpYdBw{=+MEdZl*x{rlZFhGI`9VrbE8=rsK;!QtooxHFYpC&Tr@V{ zXgZlzkoA;^lUI>ES@RFjKQ8bu<-qT7X3kwzYViw}6gLaMDKPgf)hghYd&@RBq-u*+ zvDXTcks2|_nB+Sq@ql|dfZbw!Sfi@|UaUUkL%?a@8ZuCt`-=&^<8RxQi>xHcHS6If zR6vYV+$kBD7A+XPTXhOKKEGbFLtRU4Nygb?zz_1kly(1U*s2y6B@Uu7L1WYT%2h#@DALpw2 zDy;Zy2W1$p(3ZuH005nNza#1!=uz8VrQ4K!P_1$kDXh& zu96RAyIb9GXp^Y~;Mq_M1w3^&(xEv^cOVYxFB?oj{z-=6oNf7v;5Hhf72(IJw{JHo z>&(TYNl!>&d`zh_1gX>1F{#sl>q=Xs8IZ_R z2-*7|XJyQItdi2gITgIwQ5(I?QgCST3%Z};GxZ!hlbhs}VM1b*IM`)03r;@D#bk}Y zHj;*+kHh1WBv>vhXr?i9I4QOjQSUeo%vzRy&%SCi z+)En09I?B$zml2dj?gz^P_s?G9Wcd7dsWpLNjaQkAh*0d;9pz=ZMLu46|)xWb(2+1 zz}Iz3318HhbbZgJ0H0o8%`*(|?J4XA<8RC@M6Lq?*=#oj@6v_yEN0ssE2OA^5;tBl zYUicM>s8W0;+7Zn6cQD}OtxlL$O>W0uG6c?memlW=RaA#&u_oAT%#v0ETc!_RLE#z z0xGS*>328t61OG zccy&T5Dk2(5R6S}2%!m;_`W%^xyFpFG7{@yya6KyykAxYh0IVH*8cU~B0#v!wKvS0 znuTgge7$71jj%*kT&k}yF(wleuCSTjB2Ai_ooCbi=39Gh8(7;4br$vTZb%d9I3onrud z?lz*%m>k%)mguc-|H0yWQDW%hsKzt+-}r;n_9zfp0F?(g9n3OZJDm^RIWhi?zL=fO z6)qB7oVtw+H^p{)t<|g(p$qd6~y;!`LdTQ~O5SOlj>kLDMp4Bp!q zda$YGllv}I)fCGUv{qwJ23%8=Vo1YS%%+DxSXCB?-Z12rSZ$9mJV#JM*o&mF!a zbYgD2&hRhn%x~V-&zV(xWuq#;KzRPwXxTX!0Q&pV^zV4a1;yN7W>a}g!7DKhiXW@D z)DBi}xsD>9@{<+_2Ba!s($1=ay`{9Ye@s~@=eR%0xI&Mvtg8?`IT$v$^9iWNB6m~% zuED)(368wP@E?HbQu2$kuF~|e2TJsFu}aFf*@q{iZBftJl;ZF&Lz14Bl+wSbGWsuq ziU`hqE+2UpCdGezyCz1D@XnNH(~=TT9HAjzNl7ii=MeC^ZM4b@B1K=r+io^XI7<2->`N@}_ z=ykV@-ZX2G;05HaER+NEiGBNtgxg2yly&einchRe#@IU+5qdWU)FouthJ>7BZfZt9 z+BNy>icFKxI@qB|mm3TZ3Z(EFpFO&|ho^m)eO)oms+=CpssZhF62^z(_c=O4nzUPjiF zS*}DMP}Vv4_87ji^&$zPIXth=F5Ow%?Vmy_p2g7Z)f^XX7+p9jmj^|V0kha;fRoqv% zdibwf&_RB-Bs#$`jA|U~xv=6rf8JRkluJ=OWR>1ZsoJX7FzU?^{VPeF%<>N(w z(x8ftXVT^LezW!M_T3)&wC#YK&gm+?0l3^*f4;)z=}iT|=hb?wWyG|FrzKQ|ZA`;uy2H$9BEvKfWE`R$ap$sFs)Ma~$3wLuUa0PgmVb`!3YPPfw3`m$u## zYOBA@qx0nv1l2yrh6D^~aIgat!q|jI1)l@|1$Sd@59kVH(CJFupGTV|{`u0wL2lpo9P?j|>%HR+ zFSesL7fU-iB$?96+<*sk2{Oj8;|6jtJh1WCsZ}J6s?qaB@Mnb3WePUvAw}LQ6lGi$ z`|F`0naq<)#di0$_H>27ZaFud=zGGu*Y#~7l z2<5^w;&>ze*C8I!4Y{2RlqJQwQ)T%$yd9;}@pm`jIe;!vh z95ax794FN#K!o}R!$SUbOAc|qE~o9u)eh$=jNhY<(U`1&D+41@$_5=amZ$LInt(q8 z8rXn_TDSutbago|*zA>=kh=o=u{54Bp^q&VtV~unT+QmAr}bR69y*$(rVev(5vie-%SN( zxcvLVk7bie7;!0Xz!L=Jj|5C5=sA?!QjmZb6~yh`i@}K7amSHh_$@FP?zW`de~`q} zcOq@d++4l*)Z1-a?co)A9L>+7&7_@{&_O06={JW(3 z4dZ+hz`6g8or%jiPK$ZmK9v*O>Y=ozXa|wd_Rtv>nEDF$?1&$K||(xKVj!3$-~d| zca?gaLd3tb&oVS-xYza)IP3-^#ht5fG}R1N9^p{9*uA!wC3wik6C5icb&QZqubL2P z>c`l79Lrt{o+S(?knxkg28l9mYwmB!Kzu%+UnQIshMdS5W!0JNzcbU@n@SUtz;C0H zuB^qN7M6s2;MpWk=?}`ez;i&jdIKDIIv*hvU$~6!w0ph(FMMWOZ`$enXRbRn@N1e9 zskp!hBq=sJeuj~1=%JgXR@-Fx#6&%i{g!=W-J`ss9Qjw7Y-;~=oW{NZQfW2t4$ea99_d9ou9P*i23Ppj59fR$MSqII_XI|(K4F!z#tv7S zw6DgDx}J@)Qix#+YJ~ntC+Y)~^N~sUf->{dq-PWVX zqbiUSE}@tRqnuC)2$oml%Hs|LBEHd3dV)g-fIi6v|H76^y!qdW61U08_ede{Wc>%w zofzmW^j4V8AC*g%TdF_WxR-%T3{ny%%0~X~A|Zi^IR2Sv7JbqVsk?A5nh!g=f5J2_(u_kS4Df^3D@mn&INmO{O6ftu)-UqKzOmWh#>(D#Xu_ldah zp=eQIE;n=mkLMs!UN@_l)fz^j52MiIy{^tp`y7a7$b{>ibQcDWqv=Xy$=;-H2E7=O z4`7y{#Y+J_OsVm#KzB_akm|^o&9K|furE`z(!>NM0DG6d$;t$BDPoSGP&eaR9ev%4 z|9TM}-qZp=S9f)LK7IID0x|smxjHk!HO`OgU*Ub^CQ`HJIbjq`%OxaSw1|f=3Z>m& zoJ_CPccxrOiyJ&bzQXJ}aGv9UB) zFt7`Sn^LdFWSyyUD75?#+%tWaTXyePe(ebRz}lnz?;1f1@1|?Yo@>#*rWZFa4Vc&i zxor%~Y(Di#YYJ`9ni+W2^vaNAYwC^QO~9~J|H1KfS%&U^B1U=SGe$enC0xc zp8{B^Pq$9D$4Umfm&UeSYkjV!yL-ouN&RF3WbkRT@5ivlPYUPW{oByh&q}d!IpF=2XU-Z$v zGhK+;x2PT^1nrdWe!rm0%@IGIQNN;r2O&V-_ZqTaFEVj*hPQT%}y7;3% z2!O!r2ZPH+f_f?+tsggkfoT78gEQ#F5aEoI#f!uUD)ZF91#R$L!?U8_psJfhg&s*aRgA746%A}^^OUHJ#i5kOD1d~s zKBVbS_o5JyI-_?Jye$wu|gWZ zCfH`ri@?Y}Ez_OTkWHrvkpbyCZ+s`~?Cho;(eEnV|9b6-IB3uQ0Na&YjkR+1Y4Oo@ zK>3@!-3rFw`MR0`Dm7n4E#DxEvgWy9#-EnGh*h63@NAP~0{wC3R{U9_-PK9K7dk%e*3Tx9I9*l@{_IA`+Ix*7>&tdxH|!KoBv0p z-vz&nnfQBDcQ|i=YhEZ`%`fS(sq&DIPtu{H+?00Emlh%VN4Ultq;#5|(VZlTJkpiF z>zw|d_2@Ge+dCq5L>+c0z>HKL<>nSQHM3^-^BOCX`BW5vSFXLiR;=po^y%-x5tn^U`+jWV{6KV6dEx4r-NWiljsA`+gdzS}|a zEhKYqUex@WbGp=j=cGi+ZvP1hKJxkI9K}|+PvqrXxL&@+({hUc8|k@HW>085J3ZVZ zSGvs%YRTST+$UdpA%|{6jk*R|b3MKhBJDnnryP6cGYY&%$DROFH;=G3s2(7`P8%qn z&z^U#o$NYf>y;;UH0p;+z?3yGvGCUbX_OM+&60dx`Fl{9rr8)z)ht2#kk}d=$qvND zB#4tjEAu@XBh1E3k9VI9xAjwqBDh5E0fva}?%{{TeHD^zDFyXBn)&_*zWwA*^HJ#ENF3w&5*reqW1GSD z&9M2Fe3}^~yk6^06gfS3h@4)^5>|xFNGv?a;@fRLo~@Xk9gbVi$Y|~qy|DtwO0DMs z^*cAdZVNkG)^})2}3AcI8k76PF)JnuLmUB0gFX~TD2S0l66?sLhLCcoh-xrWoaEZK1 zmufzzqdkc|e8z3rogMX)(G0Q+&@tt^SPzdbm$h!?3K4i}k=>Ge!o5TzW$hE5b1=g} z7vTD`bXgu%8zN#(VadJk5Fh_C@1f1+ACIsZn&EiR8Bl+y zS&z)z@JPvW+&fe?qHe--0eMA9<`rSt)TMXl7;5hUu!>7x#rqhxn7^aY>lP#(rv> zTV7i6^VXk9mwK05ud9xL)oXf9s6{oow#kxCAFGQNQ@RI+gmq$CGUNLiZ7Kxtq9XyOs6)61k8WM%#`j_Ot8N#?LRJDm=7@dB@!};!M$rtDMIS< z+a_^F``p!J5KHnGBO3T#O;DeaogZ{6jY||X^Q`jxwaD)a1VrY1$+i?LZ0vUtVGZ@A z&2for65rkx4sO`Se<+z5q*qW~qE~S4`$h~c?0q6KVq*oCcnQ{~m+yAze(;2LoST9H z!ym{9*=?hEmDxcD%i2hjBv>Ka`^0|24J!bu*t(MrPpoIY9OR9AkNJwm-5h54F5SMrE)wxVL7?KxEsEUj@S%XWeUog;<*!B^^ zVlkBIyiRv94)Oxx*KEi63OK8z+Gu4oUdfyb5|)9bB}N#z#ZA-r_)iC)BcqiWBqDvp z2~is2gv^xz2E_`mDd0)fjF@k#-^hNC?!2E19wZ}9Eb(`A$uqw&xPkB3L{BI%krBx{ zcOB@VCkxI?_L2+E*PG`?&-nVe3F&X)yZBWTq}|DH`FTZlR);0}PFUSoES_n5CkRCdSe=Xd?j$6RmdPp@_nt<`ncb{*Hy ziZuOkc{N*il15Dp%pe>`*hu=gL(^J;xgKyN&zG*Zb8dP<|Rrgf`pTtlozE==8W#20-vqAbaaWaRIGO}3dRF%EUIr&CI=Q|nj z0Dqa}6{8P}BCsMyS!VutD@2t#5`O+>p$56pxi~lU>nsr9julo_fI*?7%%PFoaTGvB z1F<+N>PKsP;V3E0mMKkuP!-UepkegY4lZgcP@wLLV2?&S-7PGWMB+>c!MfmoXk88I zyG%@&m|KUHG#zmiP~1q9hEh^pRr93Fym&8DDjV=1b2>O=_u^OoaNx$pVAS^5?3DpQ zyR^6q9MFVnN_+9x^p+*}N7t{nzR!d;6$pvEeK~s_e0oulp}hqweyurN^xFWt^pTH~ zQ{DrX)7aZwd!&B}a5ChOZb8l0-){U*QI4&6*JFp)$z29O zr8rPr6>fA-;J;>Kws9&?3O#22&(j)Sofn(}8mhCVmbSXv3~zYe%?iss)%L4OrK5ismQLsEJ_&rCW{kNdQZyH-AgX`?)NxS*; z^MP`g+Lt?`X>Wyh(g<(=&I_GbCiROgiBBckD_UsK;-4ue3zbOqQ z*DIwu;s?4AZH~nl^H;Acd#WWc0&>Kv>bjf8NtG9AWG2ZlyLK(~kuC(-j0dn9(K)~B zIWqpf;@wF*%79hI+CNq0g3zle!))Cgg#Fi^}BuD(U|w0=2`%B{bhg2g*YZUN5>D~)DpO&?T(2O%8apP#@*Fy zTQ6a7FCanYS&<(&5SYCXv0Qh4nPq%8iR70?In;gx{yVEb#(k(6g9uA%0=P8AuBe zOxf-~8T59NK@%-J*$n%!HTeXxDctE40g$|RQV6J_rLrA|z2&=IsFQTaj zm%QEXDb?a$Tn4*wwv&?rQ@yo=_1b0xRoT5eu# zpG$1>hnrzHMxgq!`FM3vs^O)@++J+(sqg#vV#i zb4CC6n@r5TB^j>y=W1<5v}YQoPo6CCg4q#?-XdNk7}k@P_Nm=nhGE5TWeGF&sf})+ zIUjB1+nT^*;f8AgUs!KPjwwYgMEh%lPSg8-nQ?#hvQE>Uf!C?%Zd2C;JlLdWL4Qq0 zf4#@vT+Tt@UP+^3x`Mp-4yqR=_FlWH@4oS}t2R>_4HP0^)0{riXZ@@^abbJ^lqN+= z%dcO^c-cs!?6F-V_*i#MdL`9Wr8QEiUfiMNWBq`eQc6dVfYu1n(`hJE2Pu zGwv5Nw)v^Q@|2g`4Kl=O??r)WY$8@qDz!~2O^XQnPswHlfBQk5%V(EW*)73+liPt2 z;MFn6>R8_gg%K7M2mrJcS8DF5G8Z8|ITH4b`}d7|?cYEkVQW~O=$x@qj`b}=7Kd*r zhi@^7`<#dsd)7Lqhw(G!n>;hK0aN*|UyUZbqsS*_uZybNfB6pgItcRA+G;p2sRSZf zg57`$y(O*xRJ+C5qwafmb*c4q@haHUp)}6ufRax`h!vqn63X}LjpI+i1&gBE?!3Tl z|FNW=K#?({$+Gc(pQ!@oB;-I)E$v>wX)_z#EUqiu+JmpRf?Lmn+ppHT7gNXLKYRs~ zNK=#Y41$g_ZRUhq5Ghf>!3 zr7j8Dr$XYtbUSEnF@tVp<5hLlxR!WG-+GZ2}8$1XzF_X&=?)$srwVwj;Wl z9_Zsg_#<64yPt9(0)X>Qzrxkp_Ysx60U@lz`Q{=AIQ$?FfWj4_lNQ}Vd-tv%Mm;~I z#N{wL@DSoxl{J!~oO3_BB3xgqOFP?2JBx412OIslxQYmEF|(-HYYVWr`PSB2$hy)% ztZl*rs#|4UNu`(xYMOFUba9=C%P`JXvAC+m+*o_G`uR~V8Aq^^Ri=?u#t)yWazCF0 zzSx6G3y@pH1SsFjvp-(R5^sQ3Uw-a;U6af`~T zT=`r;9UEfzNPq2iNuq$YgZ*oE1{?XdfqOPB%{wV+u6kFf&8oOWF)rEzJ`fnST&Rl1 zvGIKQ^r%!E67d$-p{e?$hg;$y;=Hk706I);7@jr8jJ9mX?*o%ZFBtI2B2~)fKGQI6 z{Vo&C?`1~^H{)s_bZUq{~ z4t>CdZ%c$4K32fx?s~K~wZ6)kw@@T%9itDX;8T%A7$rvXIjj0Ta?0J5Tf@lB@l!}) zSy%|YvQv;t7>8Mq`1S69Nr6n9U@LO3wQ7XURJm)1yw0*AH0M_a=lV|n%OY4jDyF>` zKeQ@n$F(Zx+>MCpZ2j||lX3HBLi16H8U{bVykB8W1mOfH6W>}%9ijkvuY1i%DtalA zT(b3s(vv2UL6eYp42+dN;l97@mqL+?&t#B+Q)xLJbvyp(ZH&;G@Nqed9xF|rCulSJ z6Y9sikHL5LE8@Uks`Ok^pzXbqdCtsSy3@%t?9lS*AJv*OvkbLwWZL1odui1YSkcp8 zs0Cxl0pP16x*BDn3inrEq+?^1*eyK!F*q9upa!GF@L_>@O2dB@F?>Tg1J7X^8_Q09 zK()mPJca;TuHHQgn~@jL^^rzrRPFxkogkO^=XS>etZ6sxoaXw~WoupdItK*ZtDJ+DNw%c*Sn~SNLeFSnF|wApzI_2uu51+ zzoPea_o|}h`kP3GO52xQAfamic_-6~T7O!+!!n6JQWcYMqgBdwRON`D(Uh zT28fPy8GJq;)Co)ZkYs!{bu=JiJV{4;;ey5$KlFAglKkWZEKiyo}DhEtx=)Oa+1M5 zzvab)s+zUf(6632zxox__uahU$uy~p0uSA463y@TD?W*)x5wQmRg zyBLIjH6|6r4K1JX|6&~-B?X<6x?Fsb_>YyeZ=$`dqVDnbY<`Kk&|KNq(|OALzG)=z zkQ&u>NQg+2O`o5tXD{+tnfFwA`uCS3_md}9*VI@2-q_BP(QQCF=JXFx(tiNRB+2rA zQ|I;`uwaKDu!*Vd@kBY2K}1jI-(Q%oh&k5!1hqDuU%e$%!A*wqNbotE+4bH(i5^G* z{SDLUBvhNu7<5pWnR~c)>?2kA8=$Rt0XK7`>a> zrhu80d00u`BS#HwH@RxM;l8YCn|a-;4ncF-^Z(6kV$+`#_XteYL?H7u`Y^Z%0_W)@ zcBo3w3gSR7OAsq6u@?QAB212Jmm^X5C6`Byv)be!IlA{1{6@KUdUk%lsY{arP>V}u zN#iDK%tgI%?JX8^hpJaKbm6QoJVswTXr+@;3LSXl|xwi*g56B7@LVAXd^)pzUq z)En~v6#SuwSI7`LQ~9L}Z|DVY)VFIC&s(L&*+RR7m7)EW1$cwm&_BOi_=I8 z0_6Qd=KAu|L6*`%r16de1y8Nu=eN?I#h0Er0;+7E>zK!Am&H6p>!zFYAFsC7l)TXF zFZxZp%;2OMZP9NkX0xlT{gWnm$Mx#(#c5nvPC*eXrl;D(G3Fhzwu`LJRoH_c+1Ptg z)pD8J=sn-=dwAs?VE^aLNzUnGR%ZLlXQucqBMHWqO#c_va?Fv9qA|EiI^t(L3zB)Y z&qwza^pSYUL1N)GHp!yLw1{=Zma#lsLa`88^qx}U+S9Q{e1M7d{% zv;sM&(2jE3MW6cojA+N|^Tv1_MRdhWTG4NwmY&&F+5GmA($G(f_{9BXZ$&TTQ{$uV zoa0!oA-|_nP)9lDqOv~P=gDKD$>sdqcH;9>G-v$GjwuaUu{3meGmvi0E z_t^#@)B4)5@2wiQC?~&f3Yr4CeVjI6O81q!Y``=vxsjuTis*gH~-fC}-QI^?hroEKW1#0)&xPJHF)Gz%OjY|HS8wFkjvi-%GsYkpW4K)TOtMdC9czq(Te&A~ zb`p=IEp6#?Y16->1Lgor_Y3?a>kS}tdGe+9?^C~}*I5?B|C82#1%jBX>DS$W?jM$;)<2L{yK0;(U=)T@(f{Aj=Kx0MU5-0x z!SZ@)+Muf+48UT0x;{$k@(Qn%oti)#fKE3-93=Z_$X3UWkPSwo60VwPN*HESR9qe7 z2*)_4hEZr}%q0KdgF`GhOIj;O&K#elhXX%XKY@aS)18q#KMDIfBInpoORW@Gwa?W` zd0Pxgz`Fb?pUI)yW}Yv;0P|h>75a;bZ7C)7eVY7&Xy#BZ`xc+fQ42X>u@zCi5GE0r z@d`&Rd$V@b3FoH#A_uJg=)IOe|LZa98tXI~wDKw(1Be{h0yeJ#Y;FsxGNFW(LAWG7 zRV& zXk1|bYxr| z{;8iTSRz4t1U91#T3LMo<4Z3YoV21XM&YU|x{4dxXWeaKZN+y};c2k)c(>jT4WHgS z&V3^jG8*wsggJ7c&3i1k@)TTo++JUY#!DOLK4AJ6St#|)iUMNAF@l6$szHrU92z_fPoI@1*g64IVwERgl}DW{2gxa{nwv|G?bADbkagtWkh9NF zw9lya!t~924Kl!u!PVI>j!0rLKvOP=b|s8$ogHkQ?e#c&2QGEus()SJhL5~y!ITA} zRt*m}TfAsM2tKkU0G`0WNnI`PieDB=Sr!t3l4~Jo;f6Y&*>t(|?JdYkmn7+19PlY>&FeR*ev|t?4Fafg@-}2=-u6Xg^7b6O&lNI8yat%sFu0BZ zl7ze&*{Qev1evuRhtPAIbVaWLoi>c)>60T~O7V(h@rw7QZzbs)gs{_Ur0T0*U6S2g z(D{Yaom_IAT*53q4uHdy`^2_uUxknceAyWAX&dqJ`^#!$3CCtI160m{pslFYhwk{l z-YI|oAjx^n{~l;mVnMZ8eydUkEoDgkc_w>$U~zgt1f7k;0vw)-V9yl7-tRGh5v{%Cwb+^omCC7g90yY5h1PlePVPk&Agf}J* ze6;ON3z2%Mx=gXn&!V&A*}LPnF;ccMEG8kpJ{NG^xhi4sZ`VEqk_H5<%h`n}+J$gc zz|nf?zWN2zqmsMK_I&9t_oDWfm7y?~p-8l_Q+aN=ebZDtUk~wgafi5MXLiLeV5BTy zSPW9YVh3 z9BC!IN?8(%lW_^D-afP>&7urtKl| zxV0kg*7SOhEP%#@EBdw7N@|~@+iGeo58n_E-=>|Mw5F*@HGK`K%WQ@`cKAt$Zlz`ysa35&F2APk`w9Z-%s`qE_c3^ zL}iH&s~@WgTqZe%<%({~>Q5P2^*<_)w+Ta`+>|wy*mBu^`^Y z3~5@&`HM2!owu%*dBJ4MlbIj zzgM~#K7qR6sg3k2MZpfCKKgWj=1D7bkPYfrvUYbA0C_zm2nv0|}?XoPu% zpwn-Y1|@I;`PQl5#oh&B0WXGS@#mayTDJTIy1ajnIB>fK>#V-20P@XHaiV<0DQ<7% z2?e$nR34&Q)b<2#Tc<6MPD+DIN@GY-5;Qdrns~uY_BF01(^CwWBFj_OwAkFVcoPOA zEQlUNhNfS-5*55%i49dB3{_Y4{btQfzL}bz!(%L8B$bEB6!ihKj=D9V_3^*p&N=~* zv*A0a_fV<2Nwl#j;n{vlw8DVsK2|(Y(=`e8T!cM3JIUKp2dLY?1&TfZhkySJ56xku zHIz=U#%jWp7FSB|x?$jb{NuPpEv_o-P;Bl{oTw9^5+Z}-yq3*o6D%8%!WS|8cHb!+ zJf((F@SSTMA1Q@|&`*Yc9Uyxz?2=jFhmyRV$Z1WMaZ*4dCYTWPOmIh4w(qX+Jvrkb zQ|<)FLmdgiqCEy-)f>y(puhH9j<2D<#?l3;=VwD4G6#Y;$6h#yCwM&rJoWnj?s{!g zrF>-Ko&ceuLO=W9HA9s0X}4?pUlFBWS9xsbejkyAT0}_QSW0a7?z{Wlcm%9IqN^)~ zgSSf=vIP1QPUIAzDT#=o%*Z^Z%wggQo)kn}%`1P(Cl?}rV_Rzzy{wDuBIJreAT{2U zl(?zP03$=S%m7(S-Jy|Mc>driuv>r+E_LSK8ex_VS(c4Ohqp>nd|>f>WHz(Q(8ZVN>)R|I z6*Z0gLfwVJ_Qqfdaj}9zzz;fVoZG{sDQ_|uQp8(}hX2;(s^_gZGi%pI2Xq{2vpFR7$n4F3ziUdQXl_9qs%TwWCQIyK)Xdk z7q(y-$7vYzci`L=e6ctpmRsP2R-ubgA=I3&Ai1j{ zN;V3F&l9dyzWjOo%&HE@s;;{AvuguFYc$V?tNnGsC0F~;{NG%$H?spbvq%y{&P^lF zFniJ*S}WJr0}BQNXl(M#HF~+FowV|VSaPX~jzB&RRF}*L6O?4Bq}wu8gh6~^B$|{G zJ%HXvP?MeXyaf>3Vnrt<-+N+O*^w3`A6tCc1m`|Z?Lx4O)w-N(jH0WO?*uVzzg+si z2Pz}P5s4$^j%<zf z#3aBBkj>!xg>%#A%WKD9L)LhX>gK-u`)ELUj2^uR)c33mw90}B6S#s0d=Pe*G$C3& z20A?wBb)HZmcVc}?I9P6;qCCYy9mp)S%KSP0%Tgvf`AA9Wb5Ghj3YOz9iEc_L6oFtxyiHz)N@$ zfVY0meZBXN%l~zO{O68YmLfVwH!erFAyVC6(x(#Q0E);*l6G`|)Gpkpztm0N^U@`? zve9sirIgOWjmyF9tcph_-3aZU&PdP5=^#$EQJk<*9F;ls{q>lrO660i>X_!R!b0ft zrk=aYeSbecaca$2^O<4u8QCwplLQ5+^MTp)F8DTxB&pqhPN+B54fnqbKAf(WIo3De z<7=JC0%ed`nOKQ5D-JisvFSE71jwr5d|Hi6>M>nT-j=)j$n*D7djrp~%~0Ts?D)PK z!CWSzoSvFXs~WZ6cByOt3L-BtrC2NWke2CE+6s|4C<3sq<*kjug}v4I3h$H(@139Q zKy{R?|Ei;0{@6lF9b|ii78`~ai+P782RBZ=tv4PVBvc4E^^zO*Jf%7-0y4yY$z1$S z<1d(Sh9!8k(SH$NgWo}?e95JJd1k*!cm_?!Q3K%fCzdiLs7|4UhT(-`?Gc!CK``0* z$nT5{Ol|l-{A(961=Q3zKB!Z#b%n%7=KN!+Kq;z(V+_h)HgUgfB2RvH$-T3%L#hDD zkQe|zWGs4PpmIG>$VRJvljn$Z&GcZ0K#s|u7ywC`tRVcxTvF<<3q2jNivo3^ zVm9&NaGU+L@i225IiSc2+v!4lNY+jvdP^+=77Xbsfwc!nz@1EnQtXBAaE4d*16 zAd!6Q>ApxqIB$ zC%X4Bbc48DgSbPhuiyChL)0Y?f0!o% zMl+^J`Rf<4p8Nxz{8C@EXX63~23-N88Sc6iw1mP5+@wn1#OY5@3UJzkPCncqAfq@s zklMrq1%Za>a){2t3LoG^VaR>uqQD=dSf2(=6lBoX!RfC{O4}cqi4!_Nwu0fJ*}(Y} ziZXo4--nN5hUC9P^@1w0{81(8DjA7p?DA>#Ph z@#JL%UjxaK(QNN!GKz{uclyJvgLO{1Wq zcIz7PjCT>w$D)yqXbpP$ylT3<7_PjSMB_w!ARy-Uja)e2HcvKZt#qh6TAeCJ9U&3U zH7GLCVQ+4Z`s%UaGGzTOz{9Vqsj2%;h-@uxYP+wiDRS98x@1f$TKMnN9rpHQBgT=Q z_kZ1505|tXYKP%et}@%=zh#9?+)tGN4-KBOynKOM#|mq&(2x|Z1EX23rL;>26ZbLv z$DWeQqg_caQ^7|F;&=Lvws-5d$lvb%C1VIRZwo&2CYn;3_NMR4f!~=U>MR*K*35SQ z$7``+sbsWwBgy5qE)KVQv8ha`QPDrM$W)i@H+ z%5YPgaY{EsQtSanOdYnd_-dq7QXP?j+bqzG?PBLUz11Hd<*KA4M}@c_W3I&r z5515>Sn;8%iGlIp*~cWDj~bqW6mu z7oWnWqopL!fT)!rETt1{r%khOEKcBB1^Qa%%pU|;ur$Sw1J-R%@j-pwsIn3z<`N}| zp)#AB`4oiC34=I-C6e#PW?l<$=|H%3h{w&N(YVO|eJVxqgusdC%@2UGpk`TZ;c1W- zjE3x$0RZ<8LTKi}RNZ+QfIA0*t*7OXMNVqj91nmQ2)#lSncKC|^K?Q?@(3Zx7GI1k3(iLThL_yGi0JX?>f?!R`R zJWY)d=C(fI4g+Vi0P8Uq==R8?k4PyquLJHBW%@D(sLFvjuDG$T^@+diit@Mc17F&O9%~5pJ4+WAYM`~*fG^CaEai;BMD3^$Vq|WV0~VQ;Sor1yr=Mgj-y}vYz#n^eVib_%)l9wf$2YKAG4bhiA~ZlWAroFww7D06NLmJ3QqeUvofMMLqm$Ij#Tn=lV4w?fR<=XJH3zL3**H0^shG;* znaZ$E1P3F1#(3(De--C(O(%W*S{`dYJ77MmqPWpaMk_l#TB!uJhGb+1b;5UXHsQ{?qa=ySB+KGOr2%&Leq;Ol*GR%0$|h zy_rPRD&R<3b8=bcxq+)S>8trN2MC-Qxa_*(NCc$~&AHB%$$_eoAvzTJmXT7yz`bND zMdwx{?Vser7CzTuxzM2)w~9tP|BtZqk1zocOm$hzbfcKUuP!v>1g|f4JNnMw4ZCbV z#bdG*agu7*lxfx!eE+0jvR@$*A2Ek zi$&`{O(k58Ki5q;Uqm`la5Zi4*^Pnppgv$eLkAf<*`Kx+KW#a?j(YQ#C>mVv;d z!@JJFz}8ri`9YES-U}MKAQ7NODK?820df78sOOA_10fkBAqKwlc!bxLfSiIK~9(-PfQ%%vhfJL7sUg*}<-43c82J7+_IZ ze&M6nkHelnJCqB^Pz=a$k)gbt3>9h09iKZGrq&{P8-g4hiAblf^6T^fG?U!}^W6i+ zJ11#WfGv>&!hIv?TE!{4l&p)&xgx>2BC20h#@89&3#tz}&ThPNc7E#oKZG8G_ctXe z1dm#uxK3U-Bsb_h7+G0WzNK>zBPJa4vzdk=oE+7t$-D z8z29TXowVgr#GCzA zq8HgNy(1CadT>K)HUtWNMARFqeUseoy?Ri=d{{}h31ic?VGdGm(}UF}_ER zv4%x{7&c!9;7N{n?qjHI^S(v%ev)Fin&+XrnYA`{vy{TOeKAS@uk$p)f}sD`g#=8IpT6T;+`2i5;_Bg(a@nE*qq}tJ%fstX5zarQo6!# zp4vy=Tq@-Qwkscmz?$g6fN98xsif}~kW?y)wUQ93$>tiL=NVJ9G)vfnLDmy~bM+V* z3Rd0)41L1M0&5uuat0xa29mya0Wv5FNkE5Lsq;~H|?Dx_QKX>c@>Jrxm+>vzh{WP%C4DX z1J%o{z9^Ugk7$viiJ9+f3c8xH(w>e!kXZa&+~CT5Y%AYTD_>s$KNnX8)}VPry4y8% z(m&IjXUbvUO}dQC-%sRKxX>A?dP#Z@TjA;z#+sEvMH_G!Ar@o$KYix<=+S7UiMPR- z-uh1k&6N#(cd8}v7-0)hHmYD5sZVL#;qiP4)-%@BkCIPFo>Fcg_bOJRa|~5RvIZ_X)oVQMEnui`?pa|2rIInVjmvmtjNfHgXZsbtxCb$8*kJbH zxLP^DP-oA}uw@^fo8-#VnuG;KVWYt_T__e``{-y3d*C2mx#oDhyQ9wP_;Ui3(!QJH z@E)(IAn}xN<(C^=(QT&K6-9V@eWBBywP`KTiPEC1n(b@igwEQ@Qznnr*&nj~F~$v1mG_*?R#MN86VV6iTK8p;-b_0| zK4rDym0&sX%ho@~l`wPjVG0(hhkB%Q_(p9)ex;e}W#%fQNfoeMUG2~tkyQ;^^SCw_;~)> zokkA=XbH-{=o6fibdlTO#_Tcg*t49T@v4wjW_iaXu63E0dZ-RoWWTlp`V@jOJbvdT z(BI_=lUBf^wU}~U5;1Jmj}@)ua%lET*HC_KcA#V8Yr-*0PHA32&m|Qor(8sWA`1t_ zZt$c^!L*tiCL)ORO)ogPs+H)DRc@bh9()TMHtnD#bo+sbqKZX;1{=aYE{sNERHEz*(n{lQtF3jcNKFsrs_Vym|B1F_?tNn zCxYRRVT2POC(})9Lx^k#VQ%R}Ixd>ZNMM=5x?x|jC)45Bm~6A~m$o9v82U+O(6y9q ztjTTZkJo<`Q$P5+6PU7LRmBp~Dk#%PMO)vN6VU!q2HHKGOxXmhWPbM4yw^?;x(n^m z$z)lM%uLvQF-~pi@MrjxV#;tQ4eLbCaS)&Qv8NP83Mfn%If+GWu~rCIdMkhwWIZTB=Yi>;w;u4HxQ zRpc=DV9RR-ApiOyi%&yb1>@PDRHXd0=pSqYhG}^tl9JV>-Q-?(t@J~0jYzd>O$l?O zg_f{VY1rH%_+8HNgzndXh~~%n(vuT!$JycD)|IuICTqS?o7gX9AryCTiaUYhzSSJ$ zfjyi|_4=p17m37dooH44=7ZG*?62#(iP5GB^%rX6x2l_$+*tmF!Z%okv^Qn-qksL4 zFuij~1B>u}96)~@Y)SAR&SWE3N_w6lO2~JuIoK?Cv#!7I(6qFJTf~m%y8GZrM?3hI zid9?PDZQj48)n-jr0udtmar0eVh^7K+Uw;=eC-9_*wb*@6Nse*LL5GE2Ai<&M_<1* zs=8g>mxG2Y{3b{4h2$U|KZ4p-0FNpaB2Q;G(?tEGN?sa*4NFew*dl9RKwq^O%)IcT zV@2q-!Z8#~5z6nP3f^;ji{((rZ5UMeybVQIRRJq*o$s0BW{%ugS|E5e8_1uZ!+w={ z7|LYvZgYi3tSJ$)H~J2QqH5KqctJ29kI+vh5QzLjSiRj^&Y()@wn%Y}Q#cP(tv1Zr zd`CtUdL^n5I&SNuP0*t~OYcSK7Q|m1LV^h=!3-0Mo0*R z2QRYVMTm2=#mG8XFlWr0E;E8s*aRC7A0mi{RXlH!h@|X$6W&wEz3N$5v*t-^2C-^5-sJCm0+Fij1+=+IB$gsN z1&}o_=565VrfzUNRjbwm6%y|`x17XfgsT8@i+J81p1$c0LI)@}DkMHYzFmuKH!;m;uz@Qx z+~T{<+MbI1ox}Q2=?%Vh%u_l=D^X3TA@3p6%pLPY&l&Sach7_PK%T`qiRGJeSi`UA zVFYeN2l%`}b4Cm@gJ$xfbP{wHv0OIF>ABI)Y&8kmkwT9?l|(t)4ajanhl`>cfKl8l zSHIqmCZXMz;6N%T!gt`fvW*&rrh?YWbs|`iz%oY{MzxU%n0XTbC2Ijqx z3HEF(^jW9>?zlNqC<{TMoGKQ z)q8kGKj2ARk58Q||@>1)*EeXlwGdvjzs0;v6;PU0 zkO`|9FYQ!x@31@BL11-NXtlHNPdo?%&WefRutiKiPqOn-_OJzJObjF@h6vT8aL_G+ zGkvF0#wxW(pk;ce5_O~xG}5>Dl}dD=@2f$5Q=l_j39so?XoMl7Wb^5~1=e=wt>NA^6$K8ggFGsWP!xr3Y zM+=)XcKj?$i&$#a8o`U;_IiAXzg|LNcymbEGP>kSZXGpA&FXjyI^`!1jYySqjqXLT z7&j4w!I#@uao9R+?ewXPdz45gUTB(JXc}_QB4_(WZh}gL&_TRR;itEgc$H~#m1*mZ zOHd&r5QJm)`Y58C;etRg+W5Bk4TV_efNebHe2_g6%$|r+*Gx}-vw>IMuCV5n7MSmP zYyVq4EUzBs@`gIyHxj-+7(v?aqV<~B_hbAdEq)p5EInwJe&`2T3KU)lgh2wb!B5(} zCTauBLM3pa(k9(U*0TxJeKsxPS3R;Xby&{_gyQUIt<*r2jHw5X$_G^TbE1Y2=i6U2WkujJ>%S_Z ziBeYw{WOU0O zE*S`UDBIu+-zf~&-)1zd7*@r!QG(bgZK0Yo3T9)5aI!`49@0iQzkiwBgSVQhu$tOe zz+8>IKKtxFtQ1o-ptPLQyOSSMkq@uPKT8(1*Z5}-Hc_k9n%4-o!!oZ7PREuFg;mYTrPGh3(AI%YLe>yoG`bL=@4RL8 zgESj1o}+h>+}Lf`@MClmI_@&#a{+;`!@)`}_fhR5!PU1Gx3&`TjU9o4;TBaGF6Nwg z&v#kt2g?IE<6g3uYx$#BZ~rW6w@E#?zKcRn__W?9G-|&59b#4e?*rL9g01#g(DUUk zPPSp*YP#Vw#3#g3;amr){BV*gFEbURbI`K`HXq(nI-hv+PgjfS014{TQ$SXUe0&P0 z6P-Q6eTDDzHQ249{n7vA(2l#~=)SROwL_KF$Nu!dNHMQ%gBw?Svw>gMztpF;0cWaI zc)q34A=9rT)1an^@92^ve{%ZN1cUV~EtO7eRy0-D+fkpnd3Y`D_TJ&jf8n=bMSaVH zOH+Wu(oSL<|LAVdrV4$1TL*uQk(LFrnHh~k+fW{(v^(Lo&SpI&9VsIB*w|~qVcNI+ zS=)Fyb$dACU~Q<}{ol*|TdVgMa9_0&en&L-V>V4=H%^y(*0-#@?QXH;c09(LyMOp_ zGJ28qu-KySr*Ah~(xZOTG0GQpWr8_OC890=sdON?lQK;0EtNyz2odN)c>*d&)e$*_j38Wtl&|+KPBLM4bNJ^B|tnM zl|PqU2^rP!BF8^?B?fPpm@{TD9<&?`NOGwZbWKnJk;d=RAf~WSt*J)}qx|1^pd?Wu z8np=VneY<8+fMLX6)Ruv+_CG?<@jXZq;##9mUjv6)bHRUARe%`G7Jo zELRZl^7~2y1mgb)Tqb2B2cg-_2)U5!x4i~YEN`lwglH@4X+JZX0462<-=qYz>F}z1 z7-0hGV2NomfNhtH>ttUy6(_zAqCoUh7{m^ z*5a{2F`5A0C^N{5S?m|^Dn=M-TIm0L>;HDa3adj2`=2h^1a7lhJb31re~FJedv!NW z%hqXiV&RcH^7_C^5L0zak89PU65fFb@33iur&zHBV#IL@{=a#_O{lFjH}%1Z>2FA| z%yj$ozCEL!0VbplOb91Aa324pvK#&Z=lwbDezc?A^lf{U@Hu=Gj(4|luc7Voc~o9o zD&uT0rumbvi$`!WoaSjYwHV$PNCEiuU_#-C_D)rz8 zG``Dp##TrxQEMXFVDkMb;C7r24+T5qjNORIt_-g2Wej}Bks~-F`o=^?Gsr|H=fbof zJ?=Jb@pex5DYOsz@@T7DlrIxpK$<1>VOq!Nq|r<1>R?4Y&rd$@{&e@vXC!|a)g@x^ zW%OjSP$m}Xy_(0npYJ4o()iW~)1IY7dH3i8+pq)dPZF>{P>4NV_Z|x)sNlPNH836Y zSYSFqz;tkuYXv(^g!m{S$~_6@Frgh=3f`cKBjsp#0f-IL)BTmtXHY?bd^FI<;@=YJ z{MUz6u#+s!PCy|&oFSgjtxt<*U-{wlu@rj~n~6&xg-`VoqjPfxnk+DYk-}krP7f4> zBBD|tvO?AzHnj~V1=c`l_dv;?>OX>rKquQ9>y8)Fn@b#FsM_qdr~Inz>xl{Hi#=6_ z>~q(1S#Je2KQRyBty0LX0z!L^D%j90!6~9y)+|U^<=XhLW#-Vqr-j|%NJHG9S{=Up zZowy<70`1g!9&@{6KdMuqnouxtIxzr@IF&0e5MHZ_@fS1HscI5Vco~;Lnuj);vXFJ zjuv2kFe-n$ymF#@-ncMQ-!gjd>(TKvN|+G(5?Ty&dIXgIHL#}MgN9b-%0-Wb@^g>MNHtpU>)6e^sA^A zMYeIqCm&T?7Eal)zoPtF-h^jLDQ`--L5SVB@kT*{0?+Kl@ZR=2s(o6GIq?`e`53xj=3WEJ z!sktCU|C>!uJb0E0r0E@+#4_Pd7CA6Hq2Kk7{Ee?e8OM1C`Sjkm|+E*p`&#fB!({c zGKRMlez4)NnXGFds@ksEZg=)Qq6PrB`WQ~OxrAJ=!sqInz(tt@o%fwt1TYHr9)KsZ z#|noFKh5j_|D+n+=D=GjNlXa;6q2X1!ubq3ncgycPeiCiu8qXMU_ z9J)!-Z)H`D^^tfP9{{wNDb($pyj zmRSD6o{qF$jyZ}GXsePiTRg&I+$dEm?dayx-i$y<6l7m%lOiw&T+If-s7kl2pUUWa z+FCk=_aja2M;aqV;ABrUymMBX6zP&WsO&+`?>Z=S6xap}ZNp+O_PH%}o#5b+=k8dm zJ#=>KNTpu(Z!_Si!xV-AYVM&7a(MA*y$!Yv{B4oXEzX#u^kCHG{l0hoZ7s+2fdRLc zo$@5rK5LpY%a77gyv{Va&NP~`HebyyMULsemHunxRo+b``; zz@&O$)#!}GR%Sg(Z~X%+w5YEit=ewUEE&28+)@{O9gJ7)FiDglB+AbG#QM$s@Lh+i zQ>wQ1U!vM;?#WBHjz;Z&EbSkg4#i~nmSrg1&>EaI#|rZ|Gy@OY zhfz$}uU0`$>QN~QKokXy2iX1wxyXCB7(&)$VoRxH`A?sR@yyc|%+r|%!V@7}qo-o5$4#QB6@ z^hcwdQ%xrSQrYc3RE>6@Cjl7EAf8;hf?PT?YS`}-S$N6LVZ-W@D3KutPgH_&q|oRl z!;>BWFzW^36byZR?Kiw3pkMkc$eFc*C^9njL#z9LAAx1Y6n5P{UCVXmqwejifzK)##S3WU4K@Ju6jTHJgd2`syNgc0W$X8M$<5?Y3e$VSsqPqIn zep*>KWo*-EEMLAifi>Lq5VF2c*`5DDdHu=9re_zq&(n2{U2mmjz48Y5f=^MAi)Fq*u<`M8{iBjKc<&T<*y{ z{vP%y6#9zaTOvQq*O|mr*!Fl2tI52ne_>_U%;xq)3ldbKHYO36{8qsf7cJIIAWEoL zXSy-tNQzOA#kvHW8um?2{|IGPFP7f(Ij_GgRjYw5}D;Z&YcyHn?YEkq*)^gUqNcWD_OyO*b9C5hnHC#+hHr}Br}$E5{mVYPLshRT*_!W z!HPGOLXOd`VHq9-1`t@eT4ZedPZf~;o-ugX8vW#lwb>K)!&=lUW-Om16rUf<;;@#c z5JJ`nVx(k5j7dXf58iqS_*4V?RJ8pfMT|Vcq=HIa8_HaogoT)X zArVu<6zV;^j`lo<-nKFX-F7gz&V}`ruL_V@m$q8~F^8|k+sJ1(tMa++_jg<-+Pga_4X`zZJu48cS}f4BZyFIGtrEN$ zM9YZhVYv_d`;-CZ)(rg2hBCcJlS(0{ObExEY_zanro~EID8~JpA)9K2rV2i}469(B zNoYLVUJBZR*L5qj-~tbH2n8LofS;{-u)_GF-@rF`_FojJCb%{eRRCyTcYAQyk2eyq z7L!n5y~!{ZOs+o*7xdtf9zsbES>DLu(oKKGrBm0P<-(}0JGO9FwxuGSPbQt8%Qr^> z%n=iBB+4w49)j==DPg-2L1j1?FE+2CN3S0h1V$MfMLtrl3<&=ld+MDv5}sw zEI!w(wmn{YI>8((nUIVwMq9|m@`hj#dTGQ32fQOJ3R=cqG?2JE%$2KM$(J_p}gg7R9Pz7mYU#YvQ+ASE5B zBy;;bS}4D;4AZRE$ys?PF8tA`a(ns;U8dewD-Pe!<8{`O2j(d*_!PHx;_WFFWMUUx zrrKBY2H(&9ENjUM^Bxy`kNe_J$Sk_Ta@lhLiz=a^`EwxguAu|(38mZIw=WI3!hm04U>~V2q437mqua3A5>HCn8szQO&vtpC4tk;56A^#Z z{YJl93*7f9?1Stn_SsLuM>K6g;I<&Xf`nJ5A^|IN)$iIYDuTT~Ry@C4z7l%pNF(m} z?J!4z+7aw*uioP_yo|P-O>b3>dW-=&#u%z+`W+VjLBMQ0fy1&I*i=wFj&j_YG0aUn?Dvp}aq^lb3r z^X_+uaq{8#@#77VtZ}@r6bfG{Y?ds7$6IrUV52nAc4QS*ugFebEnSeE1h!>|wq^6x zV)msS+_wUwHYY2KrzSgkwRJ&u^sXaYsv|qt{|6p$n5lrn9KyR!7qSxKBNjr1uCXUiNd=sZsVK3y$+1q zvVjc#_2SQ6Lsf`Qp8dPDG1mh&*R@JnGkEJ1^6M1VHGCVKGBGufQ12e2X{Lu9`aMSm z{Xrv`FP+8R%bRdXSOr6<%kT=?ZZ`d|a?}eM(1nZuMugJqM6@&s(*A0}r@n>qi-%9z z^acXNf#JTMj8rjjb^rURqAJ=Zz$ z05kajGy6&UT9^uvBN4FNb}>%|?H;Q|3l{J&D4`gXwgp8~xr*dgxz7OcoE#0_^HArb z96?1YfFKpnBRW2xOTN|rq%7GKnxSPNGa6x9U2 z#iv1LSV3kM8?SzIYj4_;0IWy=;4JbKhsGUM<{i#A^R5Uaz=wv;Q%xKN(jS(3(QEfq zNCZ;bDe|_fLR$f);*|pE6$2B#+m}~U+%W}je04{~Sa;jBYF0`;ZtwoO*E72}1H!1n zOK2kn%faPijL)SuSEK~7@yRoR z?GsV8zxgbbEAow9?Uj(YLcKzD8WO)t5;i^yUIf&eXMoxh3aC9L@SpU6{|Mt*Q>wYZ zG?Vlb-VNFxFm(V%Uy@3x!ul8lC#kWYdRTdo(Bh9WI_AeVHYON0#1LqEx$Y-p6NI`< z4_c-l62#eNmzOxEKf`s?l)&c%c{MOTETY4m44#nO zbkf0d?J(}|BBzHF@4TEU7u2g4c-k%Kp*b(jz&)nZWV|SDLF5xKRTpj3MRj5ErN$7}z+e@!-zhb!xY8zxAb#*^gl`x}zk(cddPf_3l>}3eJe!urmST__)E%^+x^ZV> zJkv`H<(t+CdpgdH{{jQEMhQ}*lvL-o&B~Rwv;eNmR%Ur7BFUpmKsmsdG{C2U7@vp+ zO@HN9P_a%a4o+3WB9Nm?>g=-qFlar6wB9MK5>=W6(0@=M0|HYa5OpjcG?ovmb1tl6 z`)3uXT@%B_5+hdJ~-qMFh0zabLUEQz9C~o!(&ZTU`^}078jSF zUI!;;j}>Ek#(I5Yo>$~+B~YAwc>R+DYWm5+I*)!b zZL(kunU^;BqtL3(^R~UCY3(@1uG~lKPOG=RVf8n%koT)?&-`f)Vwag^b3h+1FghAf zdVsfUs-bf1& zW75LnoUSSQP7}jmOqJ}Q6qD3(=K9H!0ADMqf^Cx5mmO=q&q!XXFPDh#Bj$hC;q=$* zi^c#^-lHdhiWoMvLYYxD=52iD?T25AYuOW3RjV!-_iZ^%6^x&Jv+_VT?|bw2v2N<_ z(f4$-{MJG;idmrEfOTT_pqB>(|BG&~ET}K`2S~;qHeR*3n~Yn&V54BjbY&o%v<^MQLT@3e+8Dm`hTy zi!q0S?^VunC5aoRPZfGsGylO_>S)W7rH+HJYZ!zBQmf(oQ4%&a46X%mt>MY#K&bTf z?$j}Y*-lpd9I&_&?{Oyz_$i)~?Z5J)4E~aLw`A(`R`1Giq&`Zp@t1LpLbVRD6?Y<9 z(bFyMdS*MBq!+w{3X3qUbDc>Y;sWkODL>_ZhX<}8RFfyvSPIwI44ccX0^8WY$5pIm zG)1nJOUm$Glz=~LY@lvwgLruWb9&8Z)?bv;vq5G_$SP)Ev2@xqLiT+&VdCxX&0)_InP`WSH+ zU~44!7)0Wu@l2&!Jx85NmMQT@1$zgPH55zzlfkCdU&y!^@kXQH1RK&d&Jb-zR$})% zs4u6_wlpNuM*e-B#CvrG)lJs#@-`9~mW(#7;X(sNh;4P2ZK>WDkb;IH&U%ab>K4q@ z81jk*yy9Yr#tgOw@%VyQ_Q!|A{gwOj>juB?jk7im@KTk6lqm9wCcOG$h~5mg-h^;8 zc+5i^RHkzMftND+)|S}qaluY=v^s;rV=dOIuA^yq&11B9MZ2L@Re@h~&=98S=E+A3 z&8esbn`V!lr?`@3QB7+=_lvitdqH~??D7Txh5<3?Gs29%ghXEwlZKGIf+`1WnAr9B zOp~qVvTyh?Xb$?wJNQ{_N38}F!a5#-r@O8?Qt>j?m8^nFZZ27F?h752f^UUnqTUtr z!GMf8oAv54dwqjI**7|tCPwk{ia^RHIZ#2Ayuaj1m-I2iIn^p}&FD%|x0-HGW*;5mH9i2+bSjeHznPp$bro&`O^d)z+k?>#(oQmmZqa`hW@y}$WLst^nq zYWvT%b;QGYpU8IqCSU(n-=0_R@5_nUIQ~pv60rq??RLrbPNY>?+Zy%^2MqUiS zM$u2b%``fLEKy;WAvXeKP~X{{)ykJ{eHB?1{8tAjNG30q3EOw9=jVbZ9MIX46;ro0 zgf?(8U9yi0_D$7wReXy+3Z-EMEDTn9G-ZrCt;Ls2i3li1dNu|sp~7i+G>`DaSBCBfT9Ij61>ITr9hBi#VIaD zin~)Nu0dMdrAR5EXmNtO7cUek?!m*K_rCxA@BQBA`;(k=o+rCA=j@)D+1Z)d+1%ni z&%&N(ZT4zSn--TKC8G7mD|+jdTHr9b>@6|7yHRGR%by4n?ZP5>W&>9(Pzu*}xCZ~d}nKq>0U#1RP`bPaAJ%^pb z^Dt2f0TbvR1LP}*%hP;dQvrmRj+nriCbwnLVhXfPL^fK?Ob4MBL3^ z+84a%>^q7%D~mTPYh>Nm6Ro>-9it7%)40^q)?z2-U#_i4i}A#*{mbRp3JoVcd=MfB zJdQ+ZBR*G|MKMt4NDc0r(ZD53UcI|rokzEC9=7@e?=Im2->!#Yi)FO?0&p5A~Z zwqE=uP{g2T#Ug6QPRlYbqlzd9ZEfbpyDn{ou})i z{k2R!t|wp|+HD!=l_J%8i9srD?>#gE_^}W&)SW(-p|*PGLInJfK!#Pi8d_Jo!#cwj zwOuxK>b6z8OKxF)o#Zdk<;K!zd@@0f^iADxp04xxe7A@luwHQZ{%i>GyTn9kZN|32 zcfT2as6qQfAK)w=wOr=sp1m?x!KsnHY_rRm_%bgz1v;*EJ zL*-3}t$LMo^>z3rE(TspGyX)jU#WRA7eMg6+TDJsers4Eq={| z5E}i-A$(s!ZehqeMQO-tQZ_Y2Vd$Jg03N05!|l{}4JQCy(|E|+%4Qoc{QPicsW^El zB+;1#vgucc4r`RAink=l&AZ9^ys`q!_Tg7fF=3ZQIcWyxSCZK}e@zvhq_P@~TWg9{ z6r*SF-u_H73FLvo-KX`f2)W;K+8-vJ7|8>h6G&}+ zjXM{AQI3==gsxOmD!EmunL%q<2B{7w$mu}{4|>{%zo`XKTvw3+oN6?vby52M@b^lv zX=y=u2(G4IksRKCH|ESQ&TQGV_zn7*@Vl=w4{qxZ-TR9*F4o>LPTzUE)qWOq9ke-G zcC4RYUJW^G@{@24d|?&{kYvRHNo;F43MDj$p0$M2cu1}srR`l*w^jtKg)4~rRP==_ ztK`BHlBJ`jj)75yhZDz|wcDB#;?&5wiwJ}mt5BnW-;cf$<DyN@KoAIAg*gQK>_)SNY8d7{>=H?9@m;% z;7uSgv*m~mJ8g6CXL%jU)8obUaA*@39aK4fE5|hl(6mw^`N37SGO)j- z83#KaK7R!$TJX83MU+UWbRRf5MZCxC4agRiZ{a0)v8=Y7V(bv2UCpcKl0`T0ON&-U zdr~$-#TUvEFH-ewtu-8fk?IhM8fAt{v2q4&xWSNX4#=d)Zl!r?mWN-P`8Mz1Wh=)- zV6YPu2fWk0Wtjx8h@=9yLEyPT6O;CT~~R-X+|%ycZbzJHlkX z4ceyS#eXjXF#?fBEDc97MoGFfZK3U*Hzhot+&3L0b5c6`zr{|S|WZ7u3XjJTi6D9cjST~w{9=7W=~#8RDuuIlUvU$9+)Q| zj+Z>rgzm>YF!lOwq2HLAIKhaO1YWLGsz(V|C=nP!dt7^1Y8QNj)iND16L)*rY3&vi zQ8+N4DGqCaem41NQ(X(U5gsHQ(wL)DA|MvGTXD#+k!;&*)vF$|v9okK{b`4{rS09H z1A?nYv5_Q|fXe{<&hhSqwg@xbZoBi$d}>E@XifPKlwt2+O;wrvoq zc0)sucm7YcX2GiKAB!cIbMuI&1d@-(bpY=wgvJZtw%&ku8gtYufzD}T9oEZ14zrhD zt%7?2HK>&>?;JB!YrCu=r(Y9VKd~70Xgmc$j*?konnN#tiP{Dlzefc(t--rE-(vCH zb8s0df3Et?6$8lKVG&eOSYA0l31%nQMdWg~dd2K*&0p@#^S8Z8_VU|rDq0YM)Umku z<`fxBKNG`k2cOOLNTMdT4?iD@yy}b|a7uDN+S?D*@oTOQ*%XuKaPkf0_s#uq@G)QM z*gKHbI?R_X0snM_#QTgTG`3ym+|FeMKC~ z=9O?;?mxE}=xDR#l(}NpYPdx9DVTO!&DAw7?+PFgY#D{siFodA$rII6HpLS~9mF(I zS)BqNnBYI%L_I)48b$QR*{|hK_kIjM;9!*MCpLYR9D(#N-T*(TCebpHU_avXDzy6@SkRj*cfP|8($EZ0Eh@jm0I%O-Gv(8H$n$=58edlFe4?;3 z{`M0WYW{ajKki{=b0WF$uGMSAv7tTb)D?@!JiVIXKCfk)+CHbg?nUBTkEVZ2^(}zw*GZr2@0<}0<(q1kT|o$sT$CU5x%{`uLOwJu@uGo}i0#2# zR&kiLIw_LPDhAjFOWh~V8~yXT;MGzL-{GQe>kUj}oS7)_J}WO36d};}+i#Cc;Os8Y zYZ1BGZE`>4dp3k@x^1r=OBh%iZFn#k1t59l)6{J&@jTWzUK3>O;4D)Rh(JpBrO#7Y zkB$w^!N07+q$@31vmaHp$BHNf&HHpOt`pK{a{7@36jPvc#6X3H%vsp62fao4L)A&& z;WRnkU)AcXg*$MZ|Bk~>0YZ};IPwl_Xz+Q<)h~rfYcGdNE`^jmr+zH71AUz`Mk0FZ zvvnH}?pxFEo4c;xQ{LVGK0Y!+y1E}v@Uqb0-(PizDZRivql6D;^Keyf#gBnSWe-`d zuHBe#@d8l!*V-k<>JLUuOkiJvn`Vl7_y_1M61Z5zmIE+%q||`af#| zi<{%b*@CMSx%(XFBq^(=7-aR14;R)m@l%{OmI1J;V385uCCV|IR<@w_2S`i%?N=|< zZW0q759W(}XBU0eXFJM_=brWRXOnAkVHYE+PCtI~6SFbO!kWhW+&Wg(k8nX_pKkYz z4#XW3{NF9M9@L&W2I(i3TV|qr7?dmiR!LL* zDaEam_f;=N#ksbf|2bt=NpN^c@Fa6}ypyxir+;iQf?fQ(%!1^;q#K2(i2P0v5{kh`#NsBE%#t zq^9b-vqi|147H5`hD}S;Hqg+Vk~37cTPQGz_dQfsNnTL#DxOVqe1P7NS`LR3XrVdOcsiKkkqU9oy*j#G=I82LK6kB#FDq&Hy zY@ptYD=$^O%0>!L+YcustlS0JgqIo+kw58$HYfxBb`k1Q$!B+ut5moU^r+}$I4&~Z zL5?6*9_u_Hmn5C4CLigEX z0ldWO$*;8t-fcp5_)QNLNr#qoGlIFG?>}nzV_+zKAd7aXjAb3c8m8p5jkk)XrlG?#E#qmCo2V&YBV#Hcfn3CnjcR;7`$Se%!HAJvJKbwTZ+_sP% ziU?f!6MZ}mms4h(Z<=|0=v>$>Z7-l7N;9&!psm3g{;n8GM(0s>>?BHzXr$5^dM|Ry z2~m%MDv8HXdf`UK6`4w0OcQ*~pvpnNos-W66%S5=eMG-!@Q=B=@MuMeAK3!Z;0!&w z%0;4W=@-aHB)LJvjW?2~eu}5!y9;6+uh`3cW|oGJ-+LCPCw~v*&=07j?Z!oUb2U1c0j zmrtUlxDL)fE3v;(Yw62aS9VNl_2gTja>sO}d-sX2BhWtKL{E5>FjsDSP!&+8VWZ8u z;@ok&r;dA=%cTJr=xgjlV~!@yb_212m&Xtq-?S)373ZL+7`SF%OXuP{(2Ou4K>4a#qX)G=T`USIt&{?!Rf;EP=)X&v?Hp zAvHWVYEhkqB(zarPb_sCa^vOb$irMB%dUk{iEM3>@OPP zRsk>~%Ld}FETq`I?7GoU!!0g!n%gEB9^~p@Fh$j2mVryz=d-1`{KrI zNKRU;9n!=rKk&Or*^^V?7eL zcCbwjCs)$5s3=%Y@GvuY`p!}T!$ao_V|M#=w$EmVT>UeqLEG>YJg6LRl7nd8D4UU( zS4SouAA369JmfPAE=?CLZ`#$?XB6KCFUX@^)}WiFAGU!@cVLWM8bpG?skr!HTVEJ^ zut)`3(x^%BlGpxlu-rqGEBv`thg1+RCio6DpYZmcY!}2l6h&B>veg8ZXL&seP)W;@ zr~_Eg%u8o$rl?zh!Uz?a_xAb;K?F`Y(~*_J ze9A28x{^=z0fVyf75ZNNm>Xyj&5N`wqq#oR$g6_1(TLJDcEA{cd75DkJMKLzd89`h ze$k&?_cC|?iBGopWBt0oHoncs3=f?snR3rhW!1bT;%$`uavyCr*a0R5uKOb*RpD#u z^%~u6qqKJ?J?bS)Vz{}Wnt?9bzQH8df?R_$XOY(0t$^&EtKTt6!@Axg63PYFgZZL+ zmFp2#hpz%nY($V(<{Z3FbK=LK?|NN3#zd;{*M*uju-iwmP#ER5Sj5nCK?nl#Spy$4 zaeKWMo&=hv z)|biFTvNArBQz`SVr=?D@3uFn?74Qtttto;(uCCP9+RzcUQF zB}D~vKHpuMNn{jrIkb!@h*pE!sET+Elwj|Er~V?qk>U_gEbtn%NT%%#4SsP#sN#mk zE^JpQ!y08*+ob`>eHY!)2z?vHCiYq?$s5Hq3Mi&=u@mjmUeEbg(X$9ta7O!!ldTu? zc2e0ouxWwNbtI`OfKnIcr~Z){?;D&KwN`V;x6USy3|Qy%i$zh5@3pDX0FE?y&WjEJ z%KrHh14W98?@1cVCrDLEP;igc*S2o59zm}FN&A?25cb!0#8NeMs=^aD1_c3C!+jAH z=t}0wFroM)tZAy(cpjq#aGl~3K!SbLX&nz??x_^?9o=6tuaGT&^lj?TN=qhS#@t%m zu|8l#4$!YrngW`pw2C?a`*Kb+6FCJ`D;n+9>N)v1#vzlB*i=Nz$9)9b=;r`wd&ehU z(eRxhXevrB)2F7so!M@Qndz$w+c40tgitwi&W95Ksi-^*W;Cw#PVQQUCQ)T;2Ks44 zp-mjZK1t+#^`~Zp16q(bI-YNe&R)GiAx*Wn$`{$hL0R!s0YxaZ?BqpnXLeiI7y9ae ze+={|Ab<1xhW)f{s*068h<^L+s>D~2;vBx>)Hs$MqW$jr-g*jowOUuJi9j~=nARG9 zxCNKVFRN+KaEibF6us4#nc35_Bi{aFF~~=fHtSpFd(WPlEq2iOUBZu5iKY9yv*n<< zMLv22{b}nwI(%mT9Atlq$FR8HF^0|WBx%xp*2OQzgjFXmqh1Qc;-3gJ&Eo~h$#_Xh zP|<^u2CgXKN(7{W%;9`%aP_>)1TTqgQOVH{SceiMAg>4Y^<8BC0xXx?&q=Z!u5p?8 zAvfc_&&Q|ipMnlA1Lmesk@O?hK{f}%O|`OTW{bD)Yks_4J@Sp&Yc+K_`}}ZGBKTu< zxjyLf+DWFJ1Mf7z%1W#?Qk^t_#EgNxJ@(u;5NxykDP`3>(5f)6I<{Q5<4c*(+2&2I zq|w7F{nrPN?VH?(otx(m18Eq$m3PUbqmr!cJ$FL_uT7|i`qZcDSFD>L|$;_&Tu)vGa_7% zH?1O`5fhkM$?tfdD<@1B7hL;zw7>uQaC&Cv7v$Bj@?Cpx(=}ifVtH50Pp0{LjV@-5 z;0P&10>hrvt*2qg_@=WWN@Tjhpu?2HihV!1aijeD%yDiw4Yge9s3+p|W)Ay%0oQPD zAY)tcEav=cci19iC8p=l(<-*h(7Wa zwOwp6&Ad7aXJ3^h+|tk7ukzA-_{AvW?|C72dTuL_F@X_mE1$>=YAOe^u!&uMNiz!MR5 zv;Rt4p06V_?+8Key#kTa8B4#Yb6?WxNbqdS zr2Y0(l?ItKi0nsGBiNv4g~SM*C}cRK=8gISuD-#?lTGJO2qp1gguLSmTyJn13Edj= zAE1Kghy)s6-L`zMT&G8L36||R9<#qYGv&hRi0l7k28mg^y?f$BR0ABR?PAbbNZlHL zk|A3ry#M%S-z*{hzT&n!;+A|4#(r5PiHK<13!qzXY%+Ov>UzaD%IwG@sw7)nh(!s?t= zfaNn=q%b%oyXd*&;FlJHnovL>6;q}{SuHH;aRA1=yIS$}wxt##GyJDWXA*x(mIy37 zq-x3Tarkb4qw-NCDg?pTV>xiKQm~a`=;ChfG`hBe*?C<^3nt75AK)FU@h;f-rgjqW zBX7bb4pm?w0=*V*UqE6&s~B+n&rUh zgp@d`KiV5BcNm%}mR=}Tkyx;ifLtv4lusBcB&jKYl~3E$&=E`v(xCG&$nXBmpZziZ zTrHVu;EK_T_sL+aA1^__3iL?BhFqv^r6VEYgP3ZxC8udv;vLi%oyDi7&E)NvK<<8n zI*b&he#6(8Sn>fBji{^;ob6$YxDR7nTGjK1)<>UW4&LAH1iX72__@luUCd$bx^w`( zm$_1(P2={*2KNsWk#K(->_^+4CpZ1nl^+dIt1RkdS zkedr@+=}&|ugYU}(H+G|eaY2RoUViup*@nnV3ed+2&xv-%0q%FT)Yv6snKXl4w3yc^S^ zGpWNDm(g#VWCQxJ#c+{goWfrH&`?4DUX=mJyqx}}TzVH$9jG-BPPtpDIcS599cWY| zDrqrj8Dw9;;et_Q1~&adjZ>p(T~|}au--e6{~Jjl$O0(8iq zOW8T7>pB70HJ^DxBdnIqH6Ne;>*g8cb700dX0ring5B?$-s>35(~>?JmW);f4(PJB zlVj9~BG!3%>1=J>u^LMJP%)3T5*Ry=b{a%lD-1N6yvrS&^lG{;rg#y%?pv+Eu7p!z zz|RU>ekYVY`NzD+567G9%(=}hj~5rn$vRzu7bSx{EHDa?v0t+4qv>b+*!JMFv)%Do z+n8BoP=K)&!7U|fJ+ew__6J*kFsahIat2q5Rdsz#G~(Rc1bBB&r@%(_QaY%dmRC+b z8EEDXxYQ^W?<+9oILMXB1+Lhj+3Fa~Je~X;ph^bRm{BA?#hrecXEu=Z%0G`r1 zP<+Od>7_UFIeWuy+IEcB_QlwlODt-&OK551)km)gxskEOl4rDycL8$_2zq|vsndZ4 z;G;rR+MlGA?y(b>BIp3XsI=cbdY~vOJ*!9;g@e=B<=3@%yar6?#TH*%436@hp|B~z zknZ~_&4aZbdm_n}z9c0gWs$62!68#{#~P5n0OIEgCiQVmuy7B^HhL6o|M0{?iVYBi z2@U5;~1Tw-MgB%ihGzp=w+cYRJKTUS#?!4 zjcTxflW^#|JtL@)Qz$nmqlM3s`HyE zY%KqxP?1i|QD7EEfy&gAfhj!OLvKy9!9-!P^Ubv!M>rN5+$|h!k&W2Mfw(MFf=rkv zb*)weT8}VlKXuN~cB3Np9LIW`QOyb}om@R;!bL3z&tw#uwN*RV!J3QHaIS-5>9YQI z-W2wTwv<@CZRS-*$Kg_Wz5H9&kWRoV`(EL+g?O+K)6&wapESO=-lcSX_ec z&9R2`tn2YTA6t(E1xT!62VFf|qt`)N`7QGO@O-=z^pNXytMDgc9+jcTZqZOc(66Vb zy>9PTAjZV8{m!hR?bhVMg8t~(91 zvQFhqEJhVDKe4N)LaJ=whsLUd@u2K_g0K9 z|3SB;ak?Gv_K7xSS~k^l^nxDd@YBPnW-WWC38#o(hZ|S<$5{A^>nwqyCXbPq~Vfr3+1J4*zR|e2imybYH1DYzvd!5m4flx8M;DqFIvR{Q_QQ$ ziDw>a)~!b%Ek(RKEgz^yw~1(JdoMp4GJF0B!F)_8^1ViR8|T{d?FDjQ_1IN=N3iAl zX~DQJ*(BaG-RyVNUsvhS;a-*Dl8<#UzE!Nfq$$1)#HnzHwV%qzmWv(vb{WIpCf{TC zxoW5g(!j$UuR;VD8^7N!Wa3dW&`6q5S~^%Kf`i{^OG2vkQjA0)^Mk9Op?zDlwiZ)eo=Jj%NwKsQivj2;H;}Rzz-CP8( zgNg@n#~nX_RrZWO2ZJ9yk@Xuh@TyCLr~Y>QR?Q4%RayVY+&4En&}y6&Ni13*i!h5j zb9<%DJ~?u>r2A6upt=l`!kVyV24JwVJH(DmxapVkWJjk2Mq`sL>Wc|0*hFLUx= zY3K8-PVOX8qP8*4RPC`;`NGs~`j|uSK1pz5>&MDkOCPoug9Xh}m zwwb^8@o?hNvC?BPu8U{Q0bOB~*RSK#$Su%SWq4}Bjw|> zsHxr6C25>kI*pAv@A_k8EjIJL#!l z{qZUqFNq$WFO=-?OH>6W2%Qjf`B&1H$y&0qZ5nPEbvYmeIt`#KiN!2?MmI1>QScCe zgcHX$p>`)Z$hTNB;_cFbZWI5QLSxnQU*~)4|7c`pxJ(!gs)2KuXlSIUMjFaGIl5ap zx|_W5akg@M`xg~eC6E0@MZG4)yB>DDLe5fquVUHvJ06F@-xhA=nmf5WB`m^}@@fcE zl?!_jmu`2UiUtd;VG$c~9UoaT`j1jG!O42zk8&726d{0zlI%#$I#=BFz$X7EY~C1Z z*ca5-zI7o6hcB(ho;elbwGEQ$4cC@(*Vt$`#ZFLzqJFRcx*%3MdCk(~+TYnLXXGrC z6IC1e{G5I5&6RI(N^H0TJ87$8pKU=c#?CwRp&@FUW&)4*WPkDy@ybfEctyQ9!C5aA zCVI&EP7=-TRz@666Ppw_rr+a}%-3NBZD%{|RK)blB=#E#Z-iMM%rl3rxDejx2&r8$ z7I_|H^?VzqKl93EzBi=yAK@Ye(U zQ*QqUG`Zke*yo0xc;Ab{>e)J!P5lC b_}>^yT^Sqoy3o+@P+tj@1jp`0ozVUdiOm!g diff --git a/frameworks/nist800-53-r5/stix/nist800-53-r5-controls.json b/frameworks/nist800-53-r5/stix/nist800-53-r5-controls.json index 33205e92..7d032c45 100644 --- a/frameworks/nist800-53-r5/stix/nist800-53-r5-controls.json +++ b/frameworks/nist800-53-r5/stix/nist800-53-r5-controls.json @@ -1,8 +1,8 @@ { - "id": "bundle--a18ebd36-3b8b-4a59-b2ff-34dc9ca53b72", + "id": "bundle--7c99a784-f805-445e-ae59-2dc26c61c2b7", "objects": [ { - "created": "2021-01-06T18:30:53.714Z", + "created": "2021-01-13T01:52:41.506Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] access control policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the access control policy and the associated access controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the access control policy and procedures; and\nc. Review and update the current access control:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nAccess control policy and procedures address the controls in the AC family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of access control policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to access control policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -11,12 +11,12 @@ } ], "id": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "modified": "2021-01-06T18:30:53.714Z", + "modified": "2021-01-13T01:52:41.506Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.714Z", + "created": "2021-01-13T01:52:41.507Z", "description": "a. Define and document the types of accounts allowed and specifically prohibited for use within the system;\nb. Assign account managers;\nc. Require [Assignment: organization-defined prerequisites and criteria] for group and role membership;\nd. Specify:\n1. Authorized users of the system;\n2. Group and role membership; and\n3. Access authorizations (i.e., privileges) and [Assignment: organization-defined attributes (as required)] for each account;\ne. Require approvals by [Assignment: organization-defined personnel or roles] for requests to create accounts;\nf. Create, enable, modify, disable, and remove accounts in accordance with [Assignment: organization-defined policy, procedures, prerequisites, and criteria];\ng. Monitor the use of accounts;\nh. Notify account managers and [Assignment: organization-defined personnel or roles] within:\n1. [Assignment: organization-defined time period] when accounts are no longer required;\n2. [Assignment: organization-defined time period] when users are terminated or transferred; and\n3. [Assignment: organization-defined time period] when system usage or need-to-know changes for an individual;\ni. Authorize access to the system based on:\n1. A valid access authorization;\n2. Intended system usage; and\n3. [Assignment: organization-defined attributes (as required)];\nj. Review accounts for compliance with account management requirements [Assignment: organization-defined frequency];\nk. Establish and implement a process for changing shared or group account authenticators (if deployed) when individuals are removed from the group; and\nl. Align account management processes with personnel termination and transfer processes.\n\nExamples of system account types include individual, shared, group, system, guest, anonymous, emergency, developer, temporary, and service. Identification of authorized system users and the specification of access privileges reflect the requirements in other controls in the security plan. Users requiring administrative privileges on system accounts receive additional scrutiny by organizational personnel responsible for approving such accounts and privileged access, including system owner, mission or business owner, senior agency information security officer, or senior agency official for privacy. Types of accounts that organizations may wish to prohibit due to increased risk include shared, group, emergency, anonymous, temporary, and guest accounts.\nWhere access involves personally identifiable information, security programs collaborate with the senior agency official for privacy to establish the specific conditions for group and role membership; specify authorized users, group and role membership, and access authorizations for each account; and create, adjust, or remove system accounts in accordance with organizational policies. Policies can include such information as account expiration dates or other factors that trigger the disabling of accounts. Organizations may choose to define access privileges or other attributes by account, type of account, or a combination of the two. Examples of other attributes required for authorizing access include restrictions on time of day, day of week, and point of origin. In defining other system account attributes, organizations consider system-related requirements and mission/business requirements. Failure to consider these factors could affect system availability.\nTemporary and emergency accounts are intended for short-term use. Organizations establish temporary accounts as part of normal account activation procedures when there is a need for short-term accounts without the demand for immediacy in account activation. Organizations establish emergency accounts in response to crisis situations and with the need for rapid account activation. Therefore, emergency account activation may bypass normal account authorization processes. Emergency and temporary accounts are not to be confused with infrequently used accounts, including local logon accounts used for special tasks or when network resources are unavailable (may also be known as accounts of last resort). Such accounts remain available and are not subject to automatic disabling or removal dates. Conditions for disabling or deactivating accounts include when shared/group, emergency, or temporary accounts are no longer required and when individuals are transferred or terminated. Changing shared/group authenticators when members leave the group is intended to ensure that former group members do not retain access to the shared or group account. Some types of system accounts may require specialized training.", "external_references": [ { @@ -25,12 +25,12 @@ } ], "id": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "modified": "2021-01-06T18:30:53.714Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.715Z", + "created": "2021-01-13T01:52:41.507Z", "description": "Support the management of system accounts using [Assignment: organization-defined automated mechanisms].\n\nAutomated system account management includes using automated mechanisms to create, enable, modify, disable, and remove accounts; notify account managers when an account is created, enabled, modified, disabled, or removed, or when users are terminated or transferred; monitor system account usage; and report atypical system account usage. Automated mechanisms can include internal system functions and email, telephonic, and text messaging notifications.", "external_references": [ { @@ -39,12 +39,12 @@ } ], "id": "course-of-action--bc3b8675-2941-48b1-918f-d3729053ce12", - "modified": "2021-01-06T18:30:53.715Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management | Automated System Account Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.715Z", + "created": "2021-01-13T01:52:41.507Z", "description": "Automatically [Selection: remove; disable] temporary and emergency accounts after [Assignment: organization-defined time period for each type of account].\n\nManagement of temporary and emergency accounts includes the removal or disabling of such accounts automatically after a predefined time period rather than at the convenience of the system administrator. Automatic removal or disabling of accounts provides a more consistent implementation.", "external_references": [ { @@ -53,12 +53,12 @@ } ], "id": "course-of-action--ed7e6b49-f3d6-4fdc-9080-a8a75d5e764d", - "modified": "2021-01-06T18:30:53.715Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management | Automated Temporary and Emergency Account Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.715Z", + "created": "2021-01-13T01:52:41.507Z", "description": "Disable accounts within [Assignment: organization-defined time period] when the accounts:\n(a) Have expired;\n(b) Are no longer associated with a user or individual;\n(c) Are in violation of organizational policy; or\n(d) Have been inactive for [Assignment: organization-defined time period].\n\nDisabling expired, inactive, or otherwise anomalous accounts supports the concepts of least privilege and least functionality which reduce the attack surface of the system.", "external_references": [ { @@ -67,12 +67,12 @@ } ], "id": "course-of-action--f341d78b-a67a-49b4-9eab-44f325dcc3d2", - "modified": "2021-01-06T18:30:53.715Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management | Disable Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.715Z", + "created": "2021-01-13T01:52:41.507Z", "description": "Automatically audit account creation, modification, enabling, disabling, and removal actions.\n\nAccount management audit records are defined in accordance with AU-2 and reviewed, analyzed, and reported in accordance with AU-6.", "external_references": [ { @@ -81,12 +81,12 @@ } ], "id": "course-of-action--b6a81b40-30ce-4bdc-a148-2e05220ccdb9", - "modified": "2021-01-06T18:30:53.715Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management | Automated Audit Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.716Z", + "created": "2021-01-13T01:52:41.508Z", "description": "Require that users log out when [Assignment: organization-defined time period of expected inactivity or description of when to log out].\n\nInactivity logout is behavior- or policy-based and requires users to take physical action to log out when they are expecting inactivity longer than the defined period. Automatic enforcement of inactivity logout is addressed by AC-11.", "external_references": [ { @@ -95,12 +95,12 @@ } ], "id": "course-of-action--ec7b4166-23a7-44bb-85fa-3f036cfde0ef", - "modified": "2021-01-06T18:30:53.716Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Inactivity Logout", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.716Z", + "created": "2021-01-13T01:52:41.508Z", "description": "Implement [Assignment: organization-defined dynamic privilege management capabilities].\n\nIn contrast to access control approaches that employ static accounts and predefined user privileges, dynamic access control approaches rely on runtime access control decisions facilitated by dynamic privilege management, such as attribute-based access control. While user identities remain relatively constant over time, user privileges typically change more frequently based on ongoing mission or business requirements and the operational needs of organizations. An example of dynamic privilege management is the immediate revocation of privileges from users as opposed to requiring that users terminate and restart their sessions to reflect changes in privileges. Dynamic privilege management can also include mechanisms that change user privileges based on dynamic rules as opposed to editing specific user profiles. Examples include automatic adjustments of user privileges if they are operating out of their normal work times, if their job function or assignment changes, or if systems are under duress or in emergency situations. Dynamic privilege management includes the effects of privilege changes, for example, when there are changes to encryption keys used for communications.", "external_references": [ { @@ -109,12 +109,12 @@ } ], "id": "course-of-action--73a03b39-c11c-456d-bccd-2ed3486a61e8", - "modified": "2021-01-06T18:30:53.716Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Dynamic Privilege Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.716Z", + "created": "2021-01-13T01:52:41.508Z", "description": "(a) Establish and administer privileged user accounts in accordance with [Selection: a role-based access scheme; an attribute-based access scheme];\n(b) Monitor privileged role or attribute assignments;\n(c) Monitor changes to roles or attributes; and\n(d) Revoke access when privileged role or attribute assignments are no longer appropriate.\n\nPrivileged roles are organization-defined roles assigned to individuals that allow those individuals to perform certain security-relevant functions that ordinary users are not authorized to perform. Privileged roles include key management, account management, database administration, system and network administration, and web administration. A role-based access scheme organizes permitted system access and privileges into roles. In contrast, an attribute-based access scheme specifies allowed system access and privileges based on attributes.", "external_references": [ { @@ -123,12 +123,12 @@ } ], "id": "course-of-action--c8e778be-c4bb-4e21-b6b7-69839943d87b", - "modified": "2021-01-06T18:30:53.716Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Privileged User Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.716Z", + "created": "2021-01-13T01:52:41.508Z", "description": "Create, activate, manage, and deactivate [Assignment: organization-defined system accounts] dynamically.\n\nApproaches for dynamically creating, activating, managing, and deactivating system accounts rely on automatically provisioning the accounts at runtime for entities that were previously unknown. Organizations plan for the dynamic management, creation, activation, and deactivation of system accounts by establishing trust relationships, business rules, and mechanisms with appropriate authorities to validate related authorizations and privileges.", "external_references": [ { @@ -137,12 +137,12 @@ } ], "id": "course-of-action--5d130a41-3a0f-459a-8fc4-f9567adffd17", - "modified": "2021-01-06T18:30:53.716Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Dynamic Account Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.717Z", + "created": "2021-01-13T01:52:41.508Z", "description": "Only permit the use of shared and group accounts that meet [Assignment: organization-defined conditions for establishing shared and group accounts].\n\nBefore permitting the use of shared or group accounts, organizations consider the increased risk due to the lack of accountability with such accounts.", "external_references": [ { @@ -151,12 +151,12 @@ } ], "id": "course-of-action--c61b8440-41ad-40dd-be17-4791a6359578", - "modified": "2021-01-06T18:30:53.717Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Restrictions on Use of Shared and Group Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.717Z", + "created": "2021-01-13T01:52:41.508Z", "description": "", "external_references": [ { @@ -165,12 +165,12 @@ } ], "id": "course-of-action--c6ed9de2-f94e-4380-9339-4fe326b09325", - "modified": "2021-01-06T18:30:53.717Z", + "modified": "2021-01-13T01:52:41.508Z", "name": "Account Management | Shared and Group Account Credential Change", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.717Z", + "created": "2021-01-13T01:52:41.509Z", "description": "Enforce [Assignment: organization-defined circumstances and/or usage conditions] for [Assignment: organization-defined system accounts].\n\nSpecifying and enforcing usage conditions helps to enforce the principle of least privilege, increase user accountability, and enable effective account monitoring. Account monitoring includes alerts generated if the account is used in violation of organizational parameters. Organizations can describe specific conditions or circumstances under which system accounts can be used, such as by restricting usage to certain days of the week, time of day, or specific durations of time.", "external_references": [ { @@ -179,12 +179,12 @@ } ], "id": "course-of-action--b1f56feb-0b53-427c-a204-d49a65cb08d5", - "modified": "2021-01-06T18:30:53.717Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Account Management | Usage Conditions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.718Z", + "created": "2021-01-13T01:52:41.509Z", "description": "(a) Monitor system accounts for [Assignment: organization-defined atypical usage]; and\n(b) Report atypical usage of system accounts to [Assignment: organization-defined personnel or roles].\n\nAtypical usage includes accessing systems at certain times of the day or from locations that are not consistent with the normal usage patterns of individuals. Monitoring for atypical usage may reveal rogue behavior by individuals or an attack in progress. Account monitoring may inadvertently create privacy risks since data collected to identify atypical usage may reveal previously unknown information about the behavior of individuals. Organizations assess and document privacy risks from monitoring accounts for atypical usage in their privacy impact assessment and make determinations that are in alignment with their privacy program plan.", "external_references": [ { @@ -193,12 +193,12 @@ } ], "id": "course-of-action--5b3ca7a3-7128-48a5-95fa-64fd138f993f", - "modified": "2021-01-06T18:30:53.718Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Account Management | Account Monitoring for Atypical Usage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.718Z", + "created": "2021-01-13T01:52:41.509Z", "description": "Disable accounts of individuals within [Assignment: organization-defined time period] of discovery of [Assignment: organization-defined significant risks].\n\nUsers who pose a significant security and/or privacy risk include individuals for whom reliable evidence indicates either the intention to use authorized access to systems to cause harm or through whom adversaries will cause harm. Such harm includes adverse impacts to organizational operations, organizational assets, individuals, other organizations, or the Nation. Close coordination among system administrators, legal staff, human resource managers, and authorizing officials is essential when disabling system accounts for high-risk individuals.", "external_references": [ { @@ -207,12 +207,12 @@ } ], "id": "course-of-action--3f5f377c-003c-4365-852d-e82192dc251b", - "modified": "2021-01-06T18:30:53.718Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Account Management | Disable Accounts for High-risk Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.718Z", + "created": "2021-01-13T01:52:41.509Z", "description": "Enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.\n\nAccess control policies control access between active entities or subjects (i.e., users or processes acting on behalf of users) and passive entities or objects (i.e., devices, files, records, domains) in organizational systems. In addition to enforcing authorized access at the system level and recognizing that systems can host many applications and services in support of mission and business functions, access enforcement mechanisms can also be employed at the application and service level to provide increased information security and privacy. In contrast to logical access controls that are implemented within the system, physical access controls are addressed by the controls in the Physical and Environmental Protection (PE) family.", "external_references": [ { @@ -221,12 +221,12 @@ } ], "id": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "modified": "2021-01-06T18:30:53.718Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Access Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.718Z", + "created": "2021-01-13T01:52:41.509Z", "description": "", "external_references": [ { @@ -235,12 +235,12 @@ } ], "id": "course-of-action--a9293476-9ef1-4f6f-a3dc-f65d3f2aeda4", - "modified": "2021-01-06T18:30:53.718Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Access Enforcement | Restricted Access to Privileged Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.719Z", + "created": "2021-01-13T01:52:41.509Z", "description": "Enforce dual authorization for [Assignment: organization-defined privileged commands and/or other organization-defined actions].\n\nDual authorization, also known as two-person control, reduces risk related to insider threats. Dual authorization mechanisms require the approval of two authorized individuals to execute. To reduce the risk of collusion, organizations consider rotating dual authorization duties to other individuals. Organizations consider the risk associated with implementing dual authorization mechanisms when immediate responses are necessary to ensure public and environmental safety.", "external_references": [ { @@ -249,12 +249,12 @@ } ], "id": "course-of-action--7f108973-e360-4389-8596-d69003817472", - "modified": "2021-01-06T18:30:53.719Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Access Enforcement | Dual Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.719Z", + "created": "2021-01-13T01:52:41.510Z", "description": "Enforce [Assignment: organization-defined mandatory access control policy] over the set of covered subjects and objects specified in the policy, and where the policy:\n(a) Is uniformly enforced across the covered subjects and objects within the system;\n(b) Specifies that a subject that has been granted access to information is constrained from doing any of the following;\n(1) Passing the information to unauthorized subjects or objects;\n(2) Granting its privileges to other subjects;\n(3) Changing one or more security attributes (specified by the policy) on subjects, objects, the system, or system components;\n(4) Choosing the security attributes and attribute values (specified by the policy) to be associated with newly created or modified objects; and\n(5) Changing the rules governing access control; and\n(c) Specifies that [Assignment: organization-defined subjects] may explicitly be granted [Assignment: organization-defined privileges] such that they are not limited by any defined subset (or all) of the above constraints.\n\nMandatory access control is a type of nondiscretionary access control. Mandatory access control policies constrain what actions subjects can take with information obtained from objects for which they have already been granted access. This prevents the subjects from passing the information to unauthorized subjects and objects. Mandatory access control policies constrain actions that subjects can take with respect to the propagation of access control privileges; that is, a subject with a privilege cannot pass that privilege to other subjects. The policy is uniformly enforced over all subjects and objects to which the system has control. Otherwise, the access control policy can be circumvented. This enforcement is provided by an implementation that meets the reference monitor concept as described in AC-25. The policy is bounded by the system (i.e., once the information is passed outside of the control of the system, additional means may be required to ensure that the constraints on the information remain in effect).\nThe trusted subjects described above are granted privileges consistent with the concept of least privilege (see AC-6). Trusted subjects are only given the minimum privileges necessary for satisfying organizational mission/business needs relative to the above policy. The control is most applicable when there is a mandate that establishes a policy regarding access to controlled unclassified information or classified information and some users of the system are not authorized access to all such information resident in the system. Mandatory access control can operate in conjunction with discretionary access control as described in AC-3(4). A subject constrained in its operation by mandatory access control policies can still operate under the less rigorous constraints of AC-3(4), but mandatory access control policies take precedence over the less rigorous constraints of AC-3(4). For example, while a mandatory access control policy imposes a constraint that prevents a subject from passing information to another subject operating at a different impact or classification level, AC-3(4) permits the subject to pass the information to any other subject with the same impact or classification level as the subject. Examples of mandatory access control policies include the Bell-LaPadula policy to protect confidentiality of information and the Biba policy to protect the integrity of information.", "external_references": [ { @@ -263,12 +263,12 @@ } ], "id": "course-of-action--1f22e98a-3f3c-4315-8d73-d95c6bcc17eb", - "modified": "2021-01-06T18:30:53.719Z", + "modified": "2021-01-13T01:52:41.510Z", "name": "Access Enforcement | Mandatory Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.719Z", + "created": "2021-01-13T01:52:41.510Z", "description": "Enforce [Assignment: organization-defined discretionary access control policy] over the set of covered subjects and objects specified in the policy, and where the policy specifies that a subject that has been granted access to information can do one or more of the following:\n(a) Pass the information to any other subjects or objects;\n(b) Grant its privileges to other subjects;\n(c) Change security attributes on subjects, objects, the system, or the system's components;\n(d) Choose the security attributes to be associated with newly created or revised objects; or\n(e) Change the rules governing access control.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing the information to other subjects or objects (i.e., subjects have the discretion to pass). Discretionary access control can operate in conjunction with mandatory access control as described in AC-3(3) and AC-3(15). A subject that is constrained in its operation by mandatory access control policies can still operate under the less rigorous constraints of discretionary access control. Therefore, while AC-3(3) imposes constraints that prevent a subject from passing information to another subject operating at a different impact or classification level, AC-3(4) permits the subject to pass the information to any subject at the same impact or classification level. The policy is bounded by the system. Once the information is passed outside of system control, additional means may be required to ensure that the constraints remain in effect. While traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this particular use of discretionary access control.", "external_references": [ { @@ -277,12 +277,12 @@ } ], "id": "course-of-action--04e314a3-7022-47c1-b709-62d6365cdd35", - "modified": "2021-01-06T18:30:53.719Z", + "modified": "2021-01-13T01:52:41.510Z", "name": "Access Enforcement | Discretionary Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.719Z", + "created": "2021-01-13T01:52:41.510Z", "description": "Prevent access to [Assignment: organization-defined security-relevant information] except during secure, non-operable system states.\n\nSecurity-relevant information is information within systems that can potentially impact the operation of security functions or the provision of security services in a manner that could result in failure to enforce system security and privacy policies or maintain the separation of code and data. Security-relevant information includes access control lists, filtering rules for routers or firewalls, configuration parameters for security services, and cryptographic key management information. Secure, non-operable system states include the times in which systems are not performing mission or business-related processing, such as when the system is offline for maintenance, boot-up, troubleshooting, or shut down.", "external_references": [ { @@ -291,12 +291,12 @@ } ], "id": "course-of-action--530d8cc8-184c-4fe7-a1a7-33c36fc6e814", - "modified": "2021-01-06T18:30:53.719Z", + "modified": "2021-01-13T01:52:41.510Z", "name": "Access Enforcement | Security-relevant Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.720Z", + "created": "2021-01-13T01:52:41.510Z", "description": "", "external_references": [ { @@ -305,12 +305,12 @@ } ], "id": "course-of-action--0d9d4c44-8c2b-4f48-836a-0dcef31c6b53", - "modified": "2021-01-06T18:30:53.720Z", + "modified": "2021-01-13T01:52:41.510Z", "name": "Access Enforcement | Protection of User and System Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.720Z", + "created": "2021-01-13T01:52:41.510Z", "description": "Enforce a role-based access control policy over defined subjects and objects and control access based upon [Assignment: organization-defined roles and users authorized to assume such roles].\n\nRole-based access control (RBAC) is an access control policy that enforces access to objects and system functions based on the defined role (i.e., job function) of the subject. Organizations can create specific roles based on job functions and the authorizations (i.e., privileges) to perform needed operations on the systems associated with the organization-defined roles. When users are assigned to specific roles, they inherit the authorizations or privileges defined for those roles. RBAC simplifies privilege administration for organizations because privileges are not assigned directly to every user (which can be a large number of individuals) but are instead acquired through role assignments. RBAC can also increase privacy and security risk if individuals assigned to a role are given access to information beyond what they need to support organizational missions or business functions. RBAC can be implemented as a mandatory or discretionary form of access control. For organizations implementing RBAC with mandatory access controls, the requirements in AC-3(3) define the scope of the subjects and objects covered by the policy.", "external_references": [ { @@ -319,12 +319,12 @@ } ], "id": "course-of-action--3b36d793-e334-4f55-8a08-d59334b6a155", - "modified": "2021-01-06T18:30:53.720Z", + "modified": "2021-01-13T01:52:41.510Z", "name": "Access Enforcement | Role-based Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.720Z", + "created": "2021-01-13T01:52:41.511Z", "description": "Enforce the revocation of access authorizations resulting from changes to the security attributes of subjects and objects based on [Assignment: organization-defined rules governing the timing of revocations of access authorizations].\n\nRevocation of access rules may differ based on the types of access revoked. For example, if a subject (i.e., user or process acting on behalf of a user) is removed from a group, access may not be revoked until the next time the object is opened or the next time the subject attempts to access the object. Revocation based on changes to security labels may take effect immediately. Organizations provide alternative approaches on how to make revocations immediate if systems cannot provide such capability and immediate revocation is necessary.", "external_references": [ { @@ -333,12 +333,12 @@ } ], "id": "course-of-action--84977e3a-1c5e-427c-a236-11d5b4e8751a", - "modified": "2021-01-06T18:30:53.720Z", + "modified": "2021-01-13T01:52:41.511Z", "name": "Access Enforcement | Revocation of Access Authorizations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.720Z", + "created": "2021-01-13T01:52:41.512Z", "description": "Release information outside of the system only if:\n(a) The receiving [Assignment: organization-defined system or system component] provides [Assignment: organization-defined controls]; and\n(b) [Assignment: organization-defined controls] are used to validate the appropriateness of the information designated for release.\n\nOrganizations can only directly protect information when it resides within the system. Additional controls may be needed to ensure that organizational information is adequately protected once it is transmitted outside of the system. In situations where the system is unable to determine the adequacy of the protections provided by external entities, as a mitigating control, organizations procedurally determine whether the external systems are providing adequate controls. The means used to determine the adequacy of controls provided by external systems include conducting periodic assessments (inspections/tests), establishing agreements between the organization and its counterpart organizations, or some other process. The means used by external entities to protect the information received need not be the same as those used by the organization, but the means employed are sufficient to provide consistent adjudication of the security and privacy policy to protect the information and individuals' privacy.\nControlled release of information requires systems to implement technical or procedural means to validate the information prior to releasing it to external systems. For example, if the system passes information to a system controlled by another organization, technical means are employed to validate that the security and privacy attributes associated with the exported information are appropriate for the receiving system. Alternatively, if the system passes information to a printer in organization-controlled space, procedural means can be employed to ensure that only authorized individuals gain access to the printer.", "external_references": [ { @@ -347,12 +347,12 @@ } ], "id": "course-of-action--b2a21934-7ebc-4629-9457-3133c0ff09b6", - "modified": "2021-01-06T18:30:53.720Z", + "modified": "2021-01-13T01:52:41.512Z", "name": "Access Enforcement | Controlled Release", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.512Z", "description": "Employ an audited override of automated access control mechanisms under [Assignment: organization-defined conditions] by [Assignment: organization-defined roles].\n\nIn certain situations, such as when there is a threat to human life or an event that threatens the organization's ability to carry out critical missions or business functions, an override capability for access control mechanisms may be needed. Override conditions are defined by organizations and used only in those limited circumstances. Audit events are defined in AU-2. Audit records are generated in AU-12.", "external_references": [ { @@ -361,12 +361,12 @@ } ], "id": "course-of-action--e5927d3d-04bf-469b-9bbe-af1fc72677e5", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.512Z", "name": "Access Enforcement | Audited Override of Access Control Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.512Z", "description": "Restrict access to data repositories containing [Assignment: organization-defined information types].\n\nRestricting access to specific information is intended to provide flexibility regarding access control of specific information types within a system. For example, role-based access could be employed to allow access to only a specific type of personally identifiable information within a database rather than allowing access to the database in its entirety. Other examples include restricting access to cryptographic keys, authentication information, and selected system information.", "external_references": [ { @@ -375,12 +375,12 @@ } ], "id": "course-of-action--851b7590-6482-4c24-a14f-5f3d3c3984fa", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.512Z", "name": "Access Enforcement | Restrict Access to Specific Information Types", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.512Z", "description": "(a) Require applications to assert, as part of the installation process, the access needed to the following system applications and functions: [Assignment: organization-defined system applications and functions];\n(b) Provide an enforcement mechanism to prevent unauthorized access; and\n(c) Approve access changes after initial installation of the application.\n\nAsserting and enforcing application access is intended to address applications that need to access existing system applications and functions, including user contacts, global positioning systems, cameras, keyboards, microphones, networks, phones, or other files.", "external_references": [ { @@ -389,12 +389,12 @@ } ], "id": "course-of-action--7ed3f9e3-642c-4de0-8501-7f25d4082a86", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.512Z", "name": "Access Enforcement | Assert and Enforce Application Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.512Z", "description": "Enforce attribute-based access control policy over defined subjects and objects and control access based upon [Assignment: organization-defined attributes to assume access permissions].\n\nAttribute-based access control is an access control policy that restricts system access to authorized users based on specified organizational attributes (e.g., job function, identity), action attributes (e.g., read, write, delete), environmental attributes (e.g., time of day, location), and resource attributes (e.g., classification of a document). Organizations can create rules based on attributes and the authorizations (i.e., privileges) to perform needed operations on the systems associated with organization-defined attributes and rules. When users are assigned to attributes defined in attribute-based access control policies or rules, they can be provisioned to a system with the appropriate privileges or dynamically granted access to a protected resource. Attribute-based access control can be implemented as either a mandatory or discretionary form of access control. When implemented with mandatory access controls, the requirements in AC-3(3) define the scope of the subjects and objects covered by the policy.", "external_references": [ { @@ -403,12 +403,12 @@ } ], "id": "course-of-action--61071fc3-28e4-4355-aa7c-28199b3d24b2", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.512Z", "name": "Access Enforcement | Attribute-based Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Provide [Assignment: organization-defined mechanisms] to enable individuals to have access to the following elements of their personally identifiable information: [Assignment: organization-defined elements].\n\nIndividual access affords individuals the ability to review personally identifiable information about them held within organizational records, regardless of format. Access helps individuals to develop an understanding about how their personally identifiable information is being processed. It can also help individuals ensure that their data is accurate. Access mechanisms can include request forms and application interfaces. For federal agencies, [PRIVACT] processes can be located in systems of record notices and on agency websites. Access to certain types of records may not be appropriate (e.g., for federal agencies, law enforcement records within a system of records may be exempt from disclosure under the [PRIVACT]) or may require certain levels of authentication assurance. Organizational personnel consult with the senior agency official for privacy and legal counsel to determine appropriate mechanisms and access rights or limitations.", "external_references": [ { @@ -417,12 +417,12 @@ } ], "id": "course-of-action--204f3c4f-f437-48aa-b372-22e3a445b9b4", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Access Enforcement | Individual Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.721Z", + "created": "2021-01-13T01:52:41.513Z", "description": "(a) Enforce [Assignment: organization-defined mandatory access control policy] over the set of covered subjects and objects specified in the policy; and\n(b) Enforce [Assignment: organization-defined discretionary access control policy] over the set of covered subjects and objects specified in the policy.\n\nSimultaneously implementing a mandatory access control policy and a discretionary access control policy can provide additional protection against the unauthorized execution of code by users or processes acting on behalf of users. This helps prevent a single compromised user or process from compromising the entire system.", "external_references": [ { @@ -431,12 +431,12 @@ } ], "id": "course-of-action--ec3d3117-7355-4208-a02d-bfb6f0231854", - "modified": "2021-01-06T18:30:53.721Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Access Enforcement | Discretionary and Mandatory Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.722Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Enforce approved authorizations for controlling the flow of information within the system and between connected systems based on [Assignment: organization-defined information flow control policies].\n\nInformation flow control regulates where information can travel within a system and between systems (in contrast to who is allowed to access the information) and without regard to subsequent accesses to that information. Flow control restrictions include blocking external traffic that claims to be from within the organization, keeping export-controlled information from being transmitted in the clear to the Internet, restricting web requests that are not from the internal web proxy server, and limiting information transfers between organizations based on data structures and content. Transferring information between organizations may require an agreement specifying how the information flow is enforced (see CA-3). Transferring information between systems in different security or privacy domains with different security or privacy policies introduces the risk that such transfers violate one or more domain security or privacy policies. In such situations, information owners/stewards provide guidance at designated policy enforcement points between connected systems. Organizations consider mandating specific architectural solutions to enforce specific security and privacy policies. Enforcement includes prohibiting information transfers between connected systems (i.e., allowing access only), verifying write permissions before accepting information from another security or privacy domain or connected system, employing hardware mechanisms to enforce one-way information flows, and implementing trustworthy regrading mechanisms to reassign security or privacy attributes and labels.\nOrganizations commonly employ information flow control policies and enforcement mechanisms to control the flow of information between designated sources and destinations within systems and between connected systems. Flow control is based on the characteristics of the information and/or the information path. Enforcement occurs, for example, in boundary protection devices that employ rule sets or establish configuration settings that restrict system services, provide a packet-filtering capability based on header information, or provide a message-filtering capability based on message content. Organizations also consider the trustworthiness of filtering and/or inspection mechanisms (i.e., hardware, firmware, and software components) that are critical to information flow enforcement. Control enhancements 3 through 32 primarily address cross-domain solution needs that focus on more advanced filtering techniques, in-depth analysis, and stronger flow enforcement mechanisms implemented in cross-domain products, such as high-assurance guards. Such capabilities are generally not available in commercial off-the-shelf products. Information flow enforcement also applies to control plane traffic (e.g., routing and DNS).", "external_references": [ { @@ -445,12 +445,12 @@ } ], "id": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "modified": "2021-01-06T18:30:53.722Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Information Flow Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.722Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Use [Assignment: organization-defined security and privacy attributes] associated with [Assignment: organization-defined information, source, and destination objects] to enforce [Assignment: organization-defined information flow control policies] as a basis for flow control decisions.\n\nInformation flow enforcement mechanisms compare security and privacy attributes associated with information (i.e., data content and structure) and source and destination objects and respond appropriately when the enforcement mechanisms encounter information flows not explicitly allowed by information flow policies. For example, an information object labeled Secret would be allowed to flow to a destination object labeled Secret, but an information object labeled Top Secret would not be allowed to flow to a destination object labeled Secret. A dataset of personally identifiable information may be tagged with restrictions against combining with other types of datasets and, thus, would not be allowed to flow to the restricted dataset. Security and privacy attributes can also include source and destination addresses employed in traffic filter firewalls. Flow enforcement using explicit security or privacy attributes can be used, for example, to control the release of certain types of information.", "external_references": [ { @@ -459,12 +459,12 @@ } ], "id": "course-of-action--c114b7f9-b4e6-415c-b313-512fe96b6e1c", - "modified": "2021-01-06T18:30:53.722Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Information Flow Enforcement | Object Security and Privacy Attributes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.722Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Use protected processing domains to enforce [Assignment: organization-defined information flow control policies] as a basis for flow control decisions.\n\nProtected processing domains within systems are processing spaces that have controlled interactions with other processing spaces, enabling control of information flows between these spaces and to/from information objects. A protected processing domain can be provided, for example, by implementing domain and type enforcement. In domain and type enforcement, system processes are assigned to domains, information is identified by types, and information flows are controlled based on allowed information accesses (i.e., determined by domain and type), allowed signaling among domains, and allowed process transitions to other domains.", "external_references": [ { @@ -473,12 +473,12 @@ } ], "id": "course-of-action--f6d6346b-33be-45c6-b347-4470da3624d5", - "modified": "2021-01-06T18:30:53.722Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Information Flow Enforcement | Processing Domains", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.722Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Enforce [Assignment: organization-defined information flow control policies].\n\nOrganizational policies regarding dynamic information flow control include allowing or disallowing information flows based on changing conditions or mission or operational considerations. Changing conditions include changes in risk tolerance due to changes in the immediacy of mission or business needs, changes in the threat environment, and detection of potentially harmful or adverse events.", "external_references": [ { @@ -487,12 +487,12 @@ } ], "id": "course-of-action--85760f89-09a0-49b2-81ea-e6d197b9e7e6", - "modified": "2021-01-06T18:30:53.722Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Information Flow Enforcement | Dynamic Information Flow Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.723Z", + "created": "2021-01-13T01:52:41.514Z", "description": "Prevent encrypted information from bypassing [Assignment: organization-defined information flow control mechanisms] by [Selection (one or more): decrypting the information; blocking the flow of the encrypted information; terminating communications sessions attempting to pass encrypted information; \n [Assignment: organization-defined procedure or method]\n ].\n\nFlow control mechanisms include content checking, security policy filters, and data type identifiers. The term encryption is extended to cover encoded data not recognized by filtering mechanisms.", "external_references": [ { @@ -501,12 +501,12 @@ } ], "id": "course-of-action--eaf603a4-dc78-4b76-abac-4dc3baee791b", - "modified": "2021-01-06T18:30:53.723Z", + "modified": "2021-01-13T01:52:41.514Z", "name": "Information Flow Enforcement | Flow Control of Encrypted Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.723Z", + "created": "2021-01-13T01:52:41.514Z", "description": "Enforce [Assignment: organization-defined limitations] on embedding data types within other data types.\n\nEmbedding data types within other data types may result in reduced flow control effectiveness. Data type embedding includes inserting files as objects within other files and using compressed or archived data types that may include multiple embedded data types. Limitations on data type embedding consider the levels of embedding and prohibit levels of data type embedding that are beyond the capability of the inspection tools.", "external_references": [ { @@ -515,12 +515,12 @@ } ], "id": "course-of-action--ec343cdc-4f46-408d-88d8-261b6c8897b7", - "modified": "2021-01-06T18:30:53.723Z", + "modified": "2021-01-13T01:52:41.514Z", "name": "Information Flow Enforcement | Embedded Data Types", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.723Z", + "created": "2021-01-13T01:52:41.514Z", "description": "Enforce information flow control based on [Assignment: organization-defined metadata].\n\nMetadata is information that describes the characteristics of data. Metadata can include structural metadata describing data structures or descriptive metadata describing data content. Enforcement of allowed information flows based on metadata enables simpler and more effective flow control. Organizations consider the trustworthiness of metadata regarding data accuracy (i.e., knowledge that the metadata values are correct with respect to the data), data integrity (i.e., protecting against unauthorized changes to metadata tags), and the binding of metadata to the data payload (i.e., employing sufficiently strong binding techniques with appropriate assurance).", "external_references": [ { @@ -529,12 +529,12 @@ } ], "id": "course-of-action--a0036d7c-282d-4c09-b63d-8ad46441839e", - "modified": "2021-01-06T18:30:53.723Z", + "modified": "2021-01-13T01:52:41.514Z", "name": "Information Flow Enforcement | Metadata", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.724Z", + "created": "2021-01-13T01:52:41.514Z", "description": "Enforce one-way information flows through hardware-based flow control mechanisms.\n\nOne-way flow mechanisms may also be referred to as a unidirectional network, unidirectional security gateway, or data diode. One-way flow mechanisms can be used to prevent data from being exported from a higher impact or classified domain or system while permitting data from a lower impact or unclassified domain or system to be imported.", "external_references": [ { @@ -543,12 +543,12 @@ } ], "id": "course-of-action--80ead851-fbdd-4b95-90b1-db8eb31dae5f", - "modified": "2021-01-06T18:30:53.724Z", + "modified": "2021-01-13T01:52:41.514Z", "name": "Information Flow Enforcement | One-way Flow Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.724Z", + "created": "2021-01-13T01:52:41.514Z", "description": "(a) Enforce information flow control using [Assignment: organization-defined security or privacy policy filters] as a basis for flow control decisions for [Assignment: organization-defined information flows]; and\n(b) [Selection (one or more): Block; Strip; Modify; Quarantine] data after a filter processing failure in accordance with [Assignment: organization-defined security or privacy policy].\n\nOrganization-defined security or privacy policy filters can address data structures and content. For example, security or privacy policy filters for data structures can check for maximum file lengths, maximum field sizes, and data/file types (for structured and unstructured data). Security or privacy policy filters for data content can check for specific words, enumerated values or data value ranges, and hidden content. Structured data permits the interpretation of data content by applications. Unstructured data refers to digital information without a data structure or with a data structure that does not facilitate the development of rule sets to address the impact or classification level of the information conveyed by the data or the flow enforcement decisions. Unstructured data consists of bitmap objects that are inherently non-language-based (i.e., image, video, or audio files) and textual objects that are based on written or printed languages. Organizations can implement more than one security or privacy policy filter to meet information flow control objectives.", "external_references": [ { @@ -557,12 +557,12 @@ } ], "id": "course-of-action--9c207371-0cd4-4b36-acb2-4c281ba29b02", - "modified": "2021-01-06T18:30:53.724Z", + "modified": "2021-01-13T01:52:41.514Z", "name": "Information Flow Enforcement | Security and Privacy Policy Filters", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.724Z", + "created": "2021-01-13T01:52:41.515Z", "description": "Enforce the use of human reviews for [Assignment: organization-defined information flows] under the following conditions: [Assignment: organization-defined conditions].\n\nOrganizations define security or privacy policy filters for all situations where automated flow control decisions are possible. When a fully automated flow control decision is not possible, then a human review may be employed in lieu of or as a complement to automated security or privacy policy filtering. Human reviews may also be employed as deemed necessary by organizations.", "external_references": [ { @@ -571,12 +571,12 @@ } ], "id": "course-of-action--578fe9b6-2301-4538-af92-c5d693ddd9b7", - "modified": "2021-01-06T18:30:53.724Z", + "modified": "2021-01-13T01:52:41.515Z", "name": "Information Flow Enforcement | Human Reviews", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.515Z", "description": "Provide the capability for privileged administrators to enable and disable [Assignment: organization-defined security or privacy policy filters] under the following conditions: [Assignment: organization-defined conditions].\n\nFor example, as allowed by the system authorization, administrators can enable security or privacy policy filters to accommodate approved data types. Administrators also have the capability to select the filters that are executed on a specific data flow based on the type of data that is being transferred, the source and destination security domains, and other security or privacy relevant features, as needed.", "external_references": [ { @@ -585,12 +585,12 @@ } ], "id": "course-of-action--c18cbc51-00b7-4da3-8606-dd9364b2c478", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.515Z", "name": "Information Flow Enforcement | Enable and Disable Security or Privacy Policy Filters", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.515Z", "description": "Provide the capability for privileged administrators to configure [Assignment: organization-defined security or privacy policy filters] to support different security or privacy policies.\n\nDocumentation contains detailed information for configuring security or privacy policy filters. For example, administrators can configure security or privacy policy filters to include the list of inappropriate words that security or privacy policy mechanisms check in accordance with the definitions provided by organizations.", "external_references": [ { @@ -599,12 +599,12 @@ } ], "id": "course-of-action--013a1d43-acda-49d9-93bb-9e262b790fdb", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.515Z", "name": "Information Flow Enforcement | Configuration of Security or Privacy Policy Filters", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.515Z", "description": "When transferring information between different security domains, use [Assignment: organization-defined data type identifiers] to validate data essential for information flow decisions.\n\nData type identifiers include filenames, file types, file signatures or tokens, and multiple internal file signatures or tokens. Systems only allow transfer of data that is compliant with data type format specifications. Identification and validation of data types is based on defined specifications associated with each allowed data format. The filename and number alone are not used for data type identification. Content is validated syntactically and semantically against its specification to ensure that it is the proper data type.", "external_references": [ { @@ -613,12 +613,12 @@ } ], "id": "course-of-action--699f64a7-509c-4f18-be55-3a8b12e6dc38", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.515Z", "name": "Information Flow Enforcement | Data Type Identifiers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.515Z", "description": "When transferring information between different security domains, decompose information into [Assignment: organization-defined policy-relevant subcomponents] for submission to policy enforcement mechanisms.\n\nDecomposing information into policy-relevant subcomponents prior to information transfer facilitates policy decisions on source, destination, certificates, classification, attachments, and other security- or privacy-related component differentiators. Policy enforcement mechanisms apply filtering, inspection, and/or sanitization rules to the policy-relevant subcomponents of information to facilitate flow enforcement prior to transferring such information to different security domains.", "external_references": [ { @@ -627,12 +627,12 @@ } ], "id": "course-of-action--725ec163-7132-407f-99c5-86213292ffa4", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.515Z", "name": "Information Flow Enforcement | Decomposition into Policy-relevant Subcomponents", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.516Z", "description": "When transferring information between different security domains, implement [Assignment: organization-defined security or privacy policy filters] requiring fully enumerated formats that restrict data structure and content.\n\nData structure and content restrictions reduce the range of potential malicious or unsanctioned content in cross-domain transactions. Security or privacy policy filters that restrict data structures include restricting file sizes and field lengths. Data content policy filters include encoding formats for character sets, restricting character data fields to only contain alpha-numeric characters, prohibiting special characters, and validating schema structures.", "external_references": [ { @@ -641,12 +641,12 @@ } ], "id": "course-of-action--75123615-a01c-4e0c-a59e-61e5b7ccf446", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.516Z", "name": "Information Flow Enforcement | Security or Privacy Policy Filter Constraints", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.725Z", + "created": "2021-01-13T01:52:41.516Z", "description": "When transferring information between different security domains, examine the information for the presence of [Assignment: organization-defined unsanctioned information] and prohibit the transfer of such information in accordance with the [Assignment: organization-defined security or privacy policy].\n\nUnsanctioned information includes malicious code, information that is inappropriate for release from the source network, or executable code that could disrupt or harm the services or systems on the destination network.", "external_references": [ { @@ -655,12 +655,12 @@ } ], "id": "course-of-action--db986552-94c2-4035-b048-5247f42fb1c1", - "modified": "2021-01-06T18:30:53.725Z", + "modified": "2021-01-13T01:52:41.516Z", "name": "Information Flow Enforcement | Detection of Unsanctioned Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.726Z", + "created": "2021-01-13T01:52:41.516Z", "description": "", "external_references": [ { @@ -669,12 +669,12 @@ } ], "id": "course-of-action--7978ee6b-a397-41e0-9b8e-ad3348389800", - "modified": "2021-01-06T18:30:53.726Z", + "modified": "2021-01-13T01:52:41.516Z", "name": "Information Flow Enforcement | Information Transfers on Interconnected Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.726Z", + "created": "2021-01-13T01:52:41.516Z", "description": "Uniquely identify and authenticate source and destination points by [Selection (one or more): organization; system; application; service; individual] for information transfer.\n\nAttribution is a critical component of a security and privacy concept of operations. The ability to identify source and destination points for information flowing within systems allows the forensic reconstruction of events and encourages policy compliance by attributing policy violations to specific organizations or individuals. Successful domain authentication requires that system labels distinguish among systems, organizations, and individuals involved in preparing, sending, receiving, or disseminating information. Attribution also allows organizations to better maintain the lineage of personally identifiable information processing as it flows through systems and can facilitate consent tracking, as well as correction, deletion, or access requests from individuals.", "external_references": [ { @@ -683,12 +683,12 @@ } ], "id": "course-of-action--d550242a-4f0c-4524-8bb0-bf4f4a9904dc", - "modified": "2021-01-06T18:30:53.726Z", + "modified": "2021-01-13T01:52:41.516Z", "name": "Information Flow Enforcement | Domain Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.726Z", + "created": "2021-01-13T01:52:41.516Z", "description": "", "external_references": [ { @@ -697,12 +697,12 @@ } ], "id": "course-of-action--76fbf7a7-8469-4ec9-8b4c-188e9dbc3992", - "modified": "2021-01-06T18:30:53.726Z", + "modified": "2021-01-13T01:52:41.516Z", "name": "Information Flow Enforcement | Security Attribute Binding", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.726Z", + "created": "2021-01-13T01:52:41.517Z", "description": "When transferring information between different security domains, implement [Assignment: organization-defined security or privacy policy filters] on metadata.\n\nAll information (including metadata and the data to which the metadata applies) is subject to filtering and inspection. Some organizations distinguish between metadata and data payloads (i.e., only the data to which the metadata is bound). Other organizations do not make such distinctions and consider metadata and the data to which the metadata applies to be part of the payload.", "external_references": [ { @@ -711,12 +711,12 @@ } ], "id": "course-of-action--cc0ce488-bdf6-4757-9bf5-9ce386b0b906", - "modified": "2021-01-06T18:30:53.726Z", + "modified": "2021-01-13T01:52:41.517Z", "name": "Information Flow Enforcement | Validation of Metadata", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.727Z", + "created": "2021-01-13T01:52:41.517Z", "description": "Employ [Assignment: organization-defined solutions in approved configurations] to control the flow of [Assignment: organization-defined information] across security domains.\n\nOrganizations define approved solutions and configurations in cross-domain policies and guidance in accordance with the types of information flows across classification boundaries. The National Security Agency (NSA) National Cross Domain Strategy and Management Office provides a listing of approved cross-domain solutions. Contact ncdsmo@nsa.gov for more information.", "external_references": [ { @@ -725,12 +725,12 @@ } ], "id": "course-of-action--5822fa48-cbeb-44ac-b5e2-fc70247b891e", - "modified": "2021-01-06T18:30:53.727Z", + "modified": "2021-01-13T01:52:41.517Z", "name": "Information Flow Enforcement | Approved Solutions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.727Z", + "created": "2021-01-13T01:52:41.517Z", "description": "Separate information flows logically or physically using [Assignment: organization-defined mechanisms and/or techniques] to accomplish [Assignment: organization-defined required separations by types of information].\n\nEnforcing the separation of information flows associated with defined types of data can enhance protection by ensuring that information is not commingled while in transit and by enabling flow control by transmission paths that are not otherwise achievable. Types of separable information include inbound and outbound communications traffic, service requests and responses, and information of differing security impact or classification levels.", "external_references": [ { @@ -739,12 +739,12 @@ } ], "id": "course-of-action--e3972e46-ccc4-4bb6-a27a-6dc0a50386ff", - "modified": "2021-01-06T18:30:53.727Z", + "modified": "2021-01-13T01:52:41.517Z", "name": "Information Flow Enforcement | Physical or Logical Separation of Information Flows", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.727Z", + "created": "2021-01-13T01:52:41.517Z", "description": "Provide access from a single device to computing platforms, applications, or data residing in multiple different security domains, while preventing information flow between the different security domains.\n\nThe system provides a capability for users to access each connected security domain without providing any mechanisms to allow users to transfer data or information between the different security domains. An example of an access-only solution is a terminal that provides a user access to information with different security classifications while assuredly keeping the information separate.", "external_references": [ { @@ -753,12 +753,12 @@ } ], "id": "course-of-action--64183c23-7c93-4570-8270-3f9776d70fe9", - "modified": "2021-01-06T18:30:53.727Z", + "modified": "2021-01-13T01:52:41.517Z", "name": "Information Flow Enforcement | Access Only", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.727Z", + "created": "2021-01-13T01:52:41.517Z", "description": "When transferring information between different security domains, modify non-releasable information by implementing [Assignment: organization-defined modification action].\n\nModifying non-releasable information can help prevent a data spill or attack when information is transferred across security domains. Modification actions include masking, permutation, alteration, removal, or redaction.", "external_references": [ { @@ -767,12 +767,12 @@ } ], "id": "course-of-action--f214195b-ff98-4304-afc2-589734684c27", - "modified": "2021-01-06T18:30:53.727Z", + "modified": "2021-01-13T01:52:41.517Z", "name": "Information Flow Enforcement | Modify Non-releasable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.728Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, parse incoming data into an internal normalized format and regenerate the data to be consistent with its intended specification.\n\nConverting data into normalized forms is one of most of effective mechanisms to stop malicious attacks and large classes of data exfiltration.", "external_references": [ { @@ -781,12 +781,12 @@ } ], "id": "course-of-action--c5786500-e7e2-4aa9-9090-f00cf16ff161", - "modified": "2021-01-06T18:30:53.728Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Internal Normalized Format", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.728Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, sanitize data to minimize [Selection (one or more): delivery of malicious content, command and control of malicious code, malicious code augmentation, and steganography encoded data; spillage of sensitive information] in accordance with [Assignment: organization-defined policy]].\n\nData sanitization is the process of irreversibly removing or destroying data stored on a memory device (e.g., hard drives, flash memory/solid state drives, mobile devices, CDs, and DVDs) or in hard copy form.", "external_references": [ { @@ -795,12 +795,12 @@ } ], "id": "course-of-action--f1f21812-a9dd-41dd-8841-682835a8c7dc", - "modified": "2021-01-06T18:30:53.728Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Data Sanitization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.728Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, record and audit content filtering actions and results for the information being filtered.\n\nContent filtering is the process of inspecting information as it traverses a cross-domain solution and determines if the information meets a predefined policy. Content filtering actions and the results of filtering actions are recorded for individual messages to ensure that the correct filter actions were applied. Content filter reports are used to assist in troubleshooting actions by, for example, determining why message content was modified and/or why it failed the filtering process. Audit events are defined in AU-2. Audit records are generated in AU-12.", "external_references": [ { @@ -809,12 +809,12 @@ } ], "id": "course-of-action--82d66a61-0fa6-4a2e-9cb1-643925e8f28d", - "modified": "2021-01-06T18:30:53.728Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Audit Filtering Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.728Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, implement content filtering solutions that provide redundant and independent filtering mechanisms for each data type.\n\nContent filtering is the process of inspecting information as it traverses a cross-domain solution and determines if the information meets a predefined policy. Redundant and independent content filtering eliminates a single point of failure filtering system. Independence is defined as the implementation of a content filter that uses a different code base and supporting libraries (e.g., two JPEG filters using different vendors' JPEG libraries) and multiple, independent system processes.", "external_references": [ { @@ -823,12 +823,12 @@ } ], "id": "course-of-action--91e754ad-9976-4802-b5cc-b6ac7d9a0e68", - "modified": "2021-01-06T18:30:53.728Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Redundant/independent Filtering Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.728Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, implement a linear content filter pipeline that is enforced with discretionary and mandatory access controls.\n\nContent filtering is the process of inspecting information as it traverses a cross-domain solution and determines if the information meets a predefined policy. The use of linear content filter pipelines ensures that filter processes are non-bypassable and always invoked. In general, the use of parallel filtering architectures for content filtering of a single data type introduces bypass and non-invocation issues.", "external_references": [ { @@ -837,12 +837,12 @@ } ], "id": "course-of-action--148d48bd-9ed4-4884-a441-9b4681a62d1a", - "modified": "2021-01-06T18:30:53.728Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Linear Filter Pipelines", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.518Z", "description": "When transferring information between different security domains, employ content filter orchestration engines to ensure that:\n(a) Content filtering mechanisms successfully complete execution without errors; and\n(b) Content filtering actions occur in the correct order and comply with [Assignment: organization-defined policy].\n\nContent filtering is the process of inspecting information as it traverses a cross-domain solution and determines if the information meets a predefined security policy. An orchestration engine coordinates the sequencing of activities (manual and automated) in a content filtering process. Errors are defined as either anomalous actions or unexpected termination of the content filter process. This is not the same as a filter failing content due to non-compliance with policy. Content filter reports are a commonly used mechanism to ensure that expected filtering actions are completed successfully.", "external_references": [ { @@ -851,12 +851,12 @@ } ], "id": "course-of-action--376be229-caf4-463e-a322-82a8cc81aab2", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.518Z", "name": "Information Flow Enforcement | Filter Orchestration Engines", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "When transferring information between different security domains, implement content filtering mechanisms using multiple processes.\n\nThe use of multiple processes to implement content filtering mechanisms reduces the likelihood of a single point of failure.", "external_references": [ { @@ -865,12 +865,12 @@ } ], "id": "course-of-action--2b572aa2-ca7b-4f53-8be9-449f175c2b0a", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Information Flow Enforcement | Filter Mechanisms Using Multiple Processes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "When transferring information between different security domains, prevent the transfer of failed content to the receiving domain.\n\nContent that failed filtering checks can corrupt the system if transferred to the receiving domain.", "external_references": [ { @@ -879,12 +879,12 @@ } ], "id": "course-of-action--8cc0fef2-5c45-4516-846d-ffb1d62e776c", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Information Flow Enforcement | Failed Content Transfer Prevention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "When transferring information between different security domains, the process that transfers information between filter pipelines:\n(a) Does not filter message content;\n(b) Validates filtering metadata;\n(c) Ensures the content associated with the filtering metadata has successfully completed filtering; and\n(d) Transfers the content to the destination filter pipeline.\n\nThe processes transferring information between filter pipelines have minimum complexity and functionality to provide assurance that the processes operate correctly.", "external_references": [ { @@ -893,12 +893,12 @@ } ], "id": "course-of-action--b16d4ced-b470-420f-96a4-53fc825b3f00", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Information Flow Enforcement | Process Requirements for Information Transfer", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "a. Identify and document [Assignment: organization-defined duties of individuals requiring separation]; and\nb. Define system access authorizations to support separation of duties.\n\nSeparation of duties addresses the potential for abuse of authorized privileges and helps to reduce the risk of malevolent activity without collusion. Separation of duties includes dividing mission or business functions and support functions among different individuals or roles, conducting system support functions with different individuals, and ensuring that security personnel who administer access control functions do not also administer audit functions. Because separation of duty violations can span systems and application domains, organizations consider the entirety of systems and system components when developing policy on separation of duties. Separation of duties is enforced through the account management activities in AC-2, access control mechanisms in AC-3, and identity management activities in IA-2, IA-4, and IA-12.", "external_references": [ { @@ -907,12 +907,12 @@ } ], "id": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Separation of Duties", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "Employ the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) that are necessary to accomplish assigned organizational tasks.\n\nOrganizations employ least privilege for specific duties and systems. The principle of least privilege is also applied to system processes, ensuring that the processes have access to systems and operate at privilege levels no higher than necessary to accomplish organizational missions or business functions. Organizations consider the creation of additional processes, roles, and accounts as necessary to achieve least privilege. Organizations apply least privilege to the development, implementation, and operation of organizational systems.", "external_references": [ { @@ -921,12 +921,12 @@ } ], "id": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Least Privilege", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.730Z", + "created": "2021-01-13T01:52:41.520Z", "description": "Authorize access for [Assignment: organization-defined individuals or roles] to:\n(a) [Assignment: organization-defined security functions (deployed in hardware, software, and firmware)]; and\n(b) [Assignment: organization-defined security-relevant information].\n\nSecurity functions include establishing system accounts, configuring access authorizations (i.e., permissions, privileges), configuring settings for events to be audited, and establishing intrusion detection parameters. Security-relevant information includes filtering rules for routers or firewalls, configuration parameters for security services, cryptographic key management information, and access control lists. Authorized personnel include security administrators, system administrators, system security officers, system programmers, and other privileged users.", "external_references": [ { @@ -935,12 +935,12 @@ } ], "id": "course-of-action--acd3f979-1965-4c95-a3a8-e9ac9d968e66", - "modified": "2021-01-06T18:30:53.730Z", + "modified": "2021-01-13T01:52:41.520Z", "name": "Least Privilege | Authorize Access to Security Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.730Z", + "created": "2021-01-13T01:52:41.520Z", "description": "Require that users of system accounts (or roles) with access to [Assignment: organization-defined security functions or security-relevant information] use non-privileged accounts or roles, when accessing nonsecurity functions.\n\nRequiring the use of non-privileged accounts when accessing nonsecurity functions limits exposure when operating from within privileged accounts or roles. The inclusion of roles addresses situations where organizations implement access control policies, such as role-based access control, and where a change of role provides the same degree of assurance in the change of access authorizations for the user and the processes acting on behalf of the user as would be provided by a change between a privileged and non-privileged account.", "external_references": [ { @@ -949,12 +949,12 @@ } ], "id": "course-of-action--075b4550-cf74-428d-9812-3fd8f310cb16", - "modified": "2021-01-06T18:30:53.730Z", + "modified": "2021-01-13T01:52:41.520Z", "name": "Least Privilege | Non-privileged Access for Nonsecurity Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.730Z", + "created": "2021-01-13T01:52:41.520Z", "description": "Authorize network access to [Assignment: organization-defined privileged commands] only for [Assignment: organization-defined compelling operational needs] and document the rationale for such access in the security plan for the system.\n\nNetwork access is any access across a network connection in lieu of local access (i.e., user being physically present at the device).", "external_references": [ { @@ -963,12 +963,12 @@ } ], "id": "course-of-action--f9acedf3-1e8f-4da9-9073-f08873cf21c8", - "modified": "2021-01-06T18:30:53.730Z", + "modified": "2021-01-13T01:52:41.520Z", "name": "Least Privilege | Network Access to Privileged Commands", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.730Z", + "created": "2021-01-13T01:52:41.520Z", "description": "Provide separate processing domains to enable finer-grained allocation of user privileges.\n\nProviding separate processing domains for finer-grained allocation of user privileges includes using virtualization techniques to permit additional user privileges within a virtual machine while restricting privileges to other virtual machines or to the underlying physical machine, implementing separate physical domains, and employing hardware or software domain separation mechanisms.", "external_references": [ { @@ -977,12 +977,12 @@ } ], "id": "course-of-action--075f8850-738a-4e17-a183-e4e5bfc6d26b", - "modified": "2021-01-06T18:30:53.730Z", + "modified": "2021-01-13T01:52:41.520Z", "name": "Least Privilege | Separate Processing Domains", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.730Z", + "created": "2021-01-13T01:52:41.520Z", "description": "Restrict privileged accounts on the system to [Assignment: organization-defined personnel or roles].\n\nPrivileged accounts, including super user accounts, are typically described as system administrator for various types of commercial off-the-shelf operating systems. Restricting privileged accounts to specific personnel or roles prevents day-to-day users from accessing privileged information or privileged functions. Organizations may differentiate in the application of restricting privileged accounts between allowed privileges for local accounts and for domain accounts provided that they retain the ability to control system configurations for key parameters and as otherwise necessary to sufficiently mitigate risk.", "external_references": [ { @@ -991,12 +991,12 @@ } ], "id": "course-of-action--8c84fdcd-d28d-4eb3-8667-9bd9f22f39af", - "modified": "2021-01-06T18:30:53.730Z", + "modified": "2021-01-13T01:52:41.520Z", "name": "Least Privilege | Privileged Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.731Z", + "created": "2021-01-13T01:52:41.521Z", "description": "Prohibit privileged access to the system by non-organizational users.\n\nAn organizational user is an employee or an individual considered by the organization to have the equivalent status of an employee. Organizational users include contractors, guest researchers, or individuals detailed from other organizations. A non-organizational user is a user who is not an organizational user. Policies and procedures for granting equivalent status of employees to individuals include a need-to-know, citizenship, and the relationship to the organization.", "external_references": [ { @@ -1005,12 +1005,12 @@ } ], "id": "course-of-action--501163a7-b7ed-4054-a024-64e0b6a99a3e", - "modified": "2021-01-06T18:30:53.731Z", + "modified": "2021-01-13T01:52:41.521Z", "name": "Least Privilege | Privileged Access by Non-organizational Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.731Z", + "created": "2021-01-13T01:52:41.521Z", "description": "(a) Review [Assignment: organization-defined frequency] the privileges assigned to [Assignment: organization-defined roles or classes of users] to validate the need for such privileges; and\n(b) Reassign or remove privileges, if necessary, to correctly reflect organizational mission and business needs.\n\nThe need for certain assigned user privileges may change over time to reflect changes in organizational mission and business functions, environments of operation, technologies, or threats. A periodic review of assigned user privileges is necessary to determine if the rationale for assigning such privileges remains valid. If the need cannot be revalidated, organizations take appropriate corrective actions.", "external_references": [ { @@ -1019,12 +1019,12 @@ } ], "id": "course-of-action--2733ba86-a3c0-4879-91f6-2d6f4ed2a917", - "modified": "2021-01-06T18:30:53.731Z", + "modified": "2021-01-13T01:52:41.521Z", "name": "Least Privilege | Review of User Privileges", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.731Z", + "created": "2021-01-13T01:52:41.521Z", "description": "Prevent the following software from executing at higher privilege levels than users executing the software: [Assignment: organization-defined software].\n\nIn certain situations, software applications or programs need to execute with elevated privileges to perform required functions. However, depending on the software functionality and configuration, if the privileges required for execution are at a higher level than the privileges assigned to organizational users invoking such applications or programs, those users may indirectly be provided with greater privileges than assigned.", "external_references": [ { @@ -1033,12 +1033,12 @@ } ], "id": "course-of-action--b6ef43b4-997a-4c9f-a3c1-e30cd9f78da6", - "modified": "2021-01-06T18:30:53.731Z", + "modified": "2021-01-13T01:52:41.521Z", "name": "Least Privilege | Privilege Levels for Code Execution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.731Z", + "created": "2021-01-13T01:52:41.521Z", "description": "Log the execution of privileged functions.\n\nThe misuse of privileged functions, either intentionally or unintentionally by authorized users or by unauthorized external entities that have compromised system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Logging and analyzing the use of privileged functions is one way to detect such misuse and, in doing so, help mitigate the risk from insider threats and the advanced persistent threat.", "external_references": [ { @@ -1047,12 +1047,12 @@ } ], "id": "course-of-action--53279d7c-5693-43c5-ad0b-1edb76ef903f", - "modified": "2021-01-06T18:30:53.731Z", + "modified": "2021-01-13T01:52:41.521Z", "name": "Least Privilege | Log Use of Privileged Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.521Z", "description": "Prevent non-privileged users from executing privileged functions.\n\nPrivileged functions include disabling, circumventing, or altering implemented security or privacy controls, establishing system accounts, performing system integrity checks, and administering cryptographic key management activities. Non-privileged users are individuals who do not possess appropriate authorizations. Privileged functions that require protection from non-privileged users include circumventing intrusion detection and prevention mechanisms or malicious code protection mechanisms. Preventing non-privileged users from executing privileged functions is enforced by AC-3.", "external_references": [ { @@ -1061,12 +1061,12 @@ } ], "id": "course-of-action--8ab76791-5920-42f2-bad1-1f74300f9099", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.521Z", "name": "Least Privilege | Prohibit Non-privileged Users from Executing Privileged Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.522Z", "description": "a. Enforce a limit of [Assignment: organization-defined number] consecutive invalid logon attempts by a user during a [Assignment: organization-defined time period]; and\nb. Automatically [Selection (one or more): lock the account or node for an [Assignment: organization-defined time period]\n ; lock the account or node until released by an administrator; delay next logon prompt per [Assignment: organization-defined delay algorithm]\n ; notify system administrator; take other [Assignment: organization-defined action]\n ] when the maximum number of unsuccessful attempts is exceeded.\n\nThe need to limit unsuccessful logon attempts and take subsequent action when the maximum number of attempts is exceeded applies regardless of whether the logon occurs via a local or network connection. Due to the potential for denial of service, automatic lockouts initiated by systems are usually temporary and automatically release after a predetermined, organization-defined time period. If a delay algorithm is selected, organizations may employ different algorithms for different components of the system based on the capabilities of those components. Responses to unsuccessful logon attempts may be implemented at the operating system and the application levels. Organization-defined actions that may be taken when the number of allowed consecutive invalid logon attempts is exceeded include prompting the user to answer a secret question in addition to the username and password, invoking a lockdown mode with limited user capabilities (instead of full lockout), allowing users to only logon from specified Internet Protocol (IP) addresses, requiring a CAPTCHA to prevent automated attacks, or applying user profiles such as location, time of day, IP address, device, or Media Access Control (MAC) address. If automatic system lockout or execution of a delay algorithm is not implemented in support of the availability objective, organizations consider a combination of other actions to help prevent brute force attacks. In addition to the above, organizations can prompt users to respond to a secret question before the number of allowed unsuccessful logon attempts is exceeded. Automatically unlocking an account after a specified period of time is generally not permitted. However, exceptions may be required based on operational mission or need.", "external_references": [ { @@ -1075,12 +1075,12 @@ } ], "id": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.522Z", "description": "", "external_references": [ { @@ -1089,12 +1089,12 @@ } ], "id": "course-of-action--8c24d902-cf5f-4625-bde7-ab6217f61d73", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts | Automatic Account Lock", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.522Z", "description": "Purge or wipe information from [Assignment: organization-defined mobile devices] based on [Assignment: organization-defined purging or wiping requirements and techniques] after [Assignment: organization-defined number] consecutive, unsuccessful device logon attempts.\n\nA mobile device is a computing device that has a small form factor such that it can be carried by a single individual; is designed to operate without a physical connection; possesses local, non-removable or removable data storage; and includes a self-contained power source. Purging or wiping the device applies only to mobile devices for which the organization-defined number of unsuccessful logons occurs. The logon is to the mobile device, not to any one account on the device. Successful logons to accounts on mobile devices reset the unsuccessful logon count to zero. Purging or wiping may be unnecessary if the information on the device is protected with sufficiently strong encryption mechanisms.", "external_references": [ { @@ -1103,12 +1103,12 @@ } ], "id": "course-of-action--0f5e5e8f-63fc-433e-9a97-3d232a104ed6", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts | Purge or Wipe Mobile Device", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.522Z", "description": "Limit the number of unsuccessful biometric logon attempts to [Assignment: organization-defined number].\n\nBiometrics are probabilistic in nature. The ability to successfully authenticate can be impacted by many factors, including matching performance and presentation attack detection mechanisms. Organizations select the appropriate number of attempts for users based on organizationally-defined factors.", "external_references": [ { @@ -1117,12 +1117,12 @@ } ], "id": "course-of-action--bdf0fafb-6036-4a3e-a66d-45702bee0f39", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts | Biometric Attempt Limiting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.733Z", + "created": "2021-01-13T01:52:41.522Z", "description": "(a) Allow the use of [Assignment: organization-defined authentication factors] that are different from the primary authentication factors after the number of organization-defined consecutive invalid logon attempts have been exceeded; and\n(b) Enforce a limit of [Assignment: organization-defined number] consecutive invalid logon attempts through use of the alternative factors by a user during a [Assignment: organization-defined time period].\n\nThe use of alternate authentication factors supports the objective of availability and allows a user who has inadvertently been locked out to use additional authentication factors to bypass the lockout.", "external_references": [ { @@ -1131,12 +1131,12 @@ } ], "id": "course-of-action--5af3ffc0-8c6e-45b7-b6b3-7719b67672df", - "modified": "2021-01-06T18:30:53.733Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts | Use of Alternate Authentication Factor", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.733Z", + "created": "2021-01-13T01:52:41.523Z", "description": "a. Display [Assignment: organization-defined system use notification message or banner] to users before granting access to the system that provides privacy and security notices consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and state that:\n1. Users are accessing a U.S. Government system;\n2. System usage may be monitored, recorded, and subject to audit;\n3. Unauthorized use of the system is prohibited and subject to criminal and civil penalties; and\n4. Use of the system indicates consent to monitoring and recording;\nb. Retain the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to log on to or further access the system; and\nc. For publicly accessible systems:\n1. Display system use information [Assignment: organization-defined conditions], before granting further access to the publicly accessible system;\n2. Display references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that generally prohibit those activities; and\n3. Include a description of the authorized uses of the system.\n\nSystem use notifications can be implemented using messages or warning banners displayed before individuals log in to systems. System use notifications are used only for access via logon interfaces with human users. Notifications are not required when human interfaces do not exist. Based on an assessment of risk, organizations consider whether or not a secondary system use notification is needed to access applications or other system resources after the initial network logon. Organizations consider system use notification messages or banners displayed in multiple languages based on organizational needs and the demographics of system users. Organizations consult with the privacy office for input regarding privacy messaging and the Office of the General Counsel or organizational equivalent for legal review and approval of warning banner content.", "external_references": [ { @@ -1145,12 +1145,12 @@ } ], "id": "course-of-action--cbce7f45-69d6-4543-b33e-be0d0a7a43d6", - "modified": "2021-01-06T18:30:53.733Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "System Use Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.733Z", + "created": "2021-01-13T01:52:41.523Z", "description": "Notify the user, upon successful logon to the system, of the date and time of the last logon.\n\nPrevious logon notification is applicable to system access via human user interfaces and access to systems that occurs in other types of architectures. Information about the last successful logon allows the user to recognize if the date and time provided is not consistent with the user's last access.", "external_references": [ { @@ -1159,12 +1159,12 @@ } ], "id": "course-of-action--4b8a7777-79eb-4e69-9cf4-7c13908c273b", - "modified": "2021-01-06T18:30:53.733Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "Previous Logon Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.734Z", + "created": "2021-01-13T01:52:41.523Z", "description": "Notify the user, upon successful logon, of the number of unsuccessful logon attempts since the last successful logon.\n\nInformation about the number of unsuccessful logon attempts since the last successful logon allows the user to recognize if the number of unsuccessful logon attempts is consistent with the user's actual logon attempts.", "external_references": [ { @@ -1173,12 +1173,12 @@ } ], "id": "course-of-action--1fd8d47c-3eee-4a20-be6a-52e65d3f4f63", - "modified": "2021-01-06T18:30:53.734Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "Previous Logon Notification | Unsuccessful Logons", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.734Z", + "created": "2021-01-13T01:52:41.523Z", "description": "Notify the user, upon successful logon, of the number of [Selection: successful logons; unsuccessful logon attempts; both] during [Assignment: organization-defined time period].\n\nInformation about the number of successful and unsuccessful logon attempts within a specified time period allows the user to recognize if the number and type of logon attempts are consistent with the user's actual logon attempts.", "external_references": [ { @@ -1187,12 +1187,12 @@ } ], "id": "course-of-action--2bd0dbb6-e0af-463c-9894-da65c220b58c", - "modified": "2021-01-06T18:30:53.734Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "Previous Logon Notification | Successful and Unsuccessful Logons", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.734Z", + "created": "2021-01-13T01:52:41.523Z", "description": "Notify the user, upon successful logon, of changes to [Assignment: organization-defined security-related characteristics or parameters of the user's account] during [Assignment: organization-defined time period].\n\nInformation about changes to security-related account characteristics within a specified time period allows users to recognize if changes were made without their knowledge.", "external_references": [ { @@ -1201,12 +1201,12 @@ } ], "id": "course-of-action--7d480d83-0bea-4159-80fc-33e02e619792", - "modified": "2021-01-06T18:30:53.734Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "Previous Logon Notification | Notification of Account Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.735Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Notify the user, upon successful logon, of the following additional information: [Assignment: organization-defined additional information].\n\nOrganizations can specify additional information to be provided to users upon logon, including the location of the last logon. User location is defined as information that can be determined by systems, such as Internet Protocol (IP) addresses from which network logons occurred, notifications of local logons, or device identifiers.", "external_references": [ { @@ -1215,12 +1215,12 @@ } ], "id": "course-of-action--8cce9d08-7f47-4807-93a0-d6221640a10d", - "modified": "2021-01-06T18:30:53.735Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Previous Logon Notification | Additional Logon Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.735Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Limit the number of concurrent sessions for each [Assignment: organization-defined account and/or account type] to [Assignment: organization-defined number].\n\nOrganizations may define the maximum number of concurrent sessions for system accounts globally, by account type, by account, or any combination thereof. For example, organizations may limit the number of concurrent sessions for system administrators or other individuals working in particularly sensitive domains or mission-critical applications. Concurrent session control addresses concurrent sessions for system accounts. It does not, however, address concurrent sessions by single users via multiple system accounts.", "external_references": [ { @@ -1229,12 +1229,12 @@ } ], "id": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", - "modified": "2021-01-06T18:30:53.735Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Concurrent Session Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.735Z", + "created": "2021-01-13T01:52:41.524Z", "description": "a. Prevent further access to the system by [Selection (one or more): initiating a device lock after [Assignment: organization-defined time period] of inactivity; requiring the user to initiate a device lock before leaving the system unattended]; and\nb. Retain the device lock until the user reestablishes access using established identification and authentication procedures.\n\nDevice locks are temporary actions taken to prevent logical access to organizational systems when users stop work and move away from the immediate vicinity of those systems but do not want to log out because of the temporary nature of their absences. Device locks can be implemented at the operating system level or at the application level. A proximity lock may be used to initiate the device lock (e.g., via a Bluetooth-enabled device or dongle). User-initiated device locking is behavior or policy-based and, as such, requires users to take physical action to initiate the device lock. Device locks are not an acceptable substitute for logging out of systems, such as when organizations require users to log out at the end of workdays.", "external_references": [ { @@ -1243,12 +1243,12 @@ } ], "id": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", - "modified": "2021-01-06T18:30:53.735Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Device Lock", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.737Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Conceal, via the device lock, information previously visible on the display with a publicly viewable image.\n\nThe pattern-hiding display can include static or dynamic images, such as patterns used with screen savers, photographic images, solid colors, clock, battery life indicator, or a blank screen with the caveat that controlled unclassified information is not displayed.", "external_references": [ { @@ -1257,12 +1257,12 @@ } ], "id": "course-of-action--34147035-0df8-4fca-a237-adc93a4ef739", - "modified": "2021-01-06T18:30:53.737Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Device Lock | Pattern-hiding Displays", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.737Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Automatically terminate a user session after [Assignment: organization-defined conditions, or trigger events requiring session disconnect].\n\nSession termination addresses the termination of user-initiated logical sessions (in contrast to SC-10, which addresses the termination of network connections associated with communications sessions (i.e., network disconnect)). A logical session (for local, network, and remote access) is initiated whenever a user (or process acting on behalf of a user) accesses an organizational system. Such user sessions can be terminated without terminating network sessions. Session termination ends all processes associated with a user's logical session except for those processes that are specifically created by the user (i.e., session owner) to continue after the session is terminated. Conditions or trigger events that require automatic termination of the session include organization-defined periods of user inactivity, targeted responses to certain types of incidents, or time-of-day restrictions on system use.", "external_references": [ { @@ -1271,12 +1271,12 @@ } ], "id": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", - "modified": "2021-01-06T18:30:53.737Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Session Termination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "Provide a logout capability for user-initiated communications sessions whenever authentication is used to gain access to [Assignment: organization-defined information resources].\n\nInformation resources to which users gain access via authentication include local workstations, databases, and password-protected websites or web-based services.", "external_references": [ { @@ -1285,12 +1285,12 @@ } ], "id": "course-of-action--e4124056-eefb-463d-91bd-9a156f845fa7", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Session Termination | User-initiated Logouts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "Display an explicit logout message to users indicating the termination of authenticated communications sessions.\n\nLogout messages for web access can be displayed after authenticated sessions have been terminated. However, for certain types of sessions, including file transfer protocol (FTP) sessions, systems typically send logout messages as final messages prior to terminating sessions.", "external_references": [ { @@ -1299,12 +1299,12 @@ } ], "id": "course-of-action--3f39c194-e5f8-4e19-848e-43d9a9968f1f", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Session Termination | Termination Message", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "Display an explicit message to users indicating that the session will end in [Assignment: organization-defined time until end of session].\n\nTo increase usability, notify users of pending session termination and prompt users to continue the session. The pending session termination time period is based on the parameters defined in the AC-12 base control.", "external_references": [ { @@ -1313,12 +1313,12 @@ } ], "id": "course-of-action--9b8a927c-1263-4561-a72c-baa2a74d3433", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Session Termination | Timeout Warning Message", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "", "external_references": [ { @@ -1327,12 +1327,12 @@ } ], "id": "course-of-action--95890e0b-7674-4c95-94ea-f0f272946306", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Supervision and Review ' Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "a. Identify [Assignment: organization-defined user actions] that can be performed on the system without identification or authentication consistent with organizational mission and business functions; and\nb. Document and provide supporting rationale in the security plan for the system, user actions not requiring identification or authentication.\n\nSpecific user actions may be permitted without identification or authentication if organizations determine that identification and authentication are not required for the specified user actions. Organizations may allow a limited number of user actions without identification or authentication, including when individuals access public websites or other publicly accessible federal systems, when individuals use mobile phones to receive calls, or when facsimiles are received. Organizations identify actions that normally require identification or authentication but may, under certain circumstances, allow identification or authentication mechanisms to be bypassed. Such bypasses may occur, for example, via a software-readable physical switch that commands bypass of the logon functionality and is protected from accidental or unmonitored use. Permitting actions without identification or authentication does not apply to situations where identification and authentication have already occurred and are not repeated but rather to situations where identification and authentication have not yet occurred. Organizations may decide that there are no user actions that can be performed on organizational systems without identification and authentication, and therefore, the value for the assignment can be 'none.'", "external_references": [ { @@ -1341,12 +1341,12 @@ } ], "id": "course-of-action--211c4deb-da02-46df-a20c-48599e4bd050", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Permitted Actions Without Identification or Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.739Z", + "created": "2021-01-13T01:52:41.525Z", "description": "", "external_references": [ { @@ -1355,12 +1355,12 @@ } ], "id": "course-of-action--8db27a99-60d7-4953-beff-426040c9732c", - "modified": "2021-01-06T18:30:53.739Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Permitted Actions Without Identification or Authentication | Necessary Uses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.739Z", + "created": "2021-01-13T01:52:41.526Z", "description": "", "external_references": [ { @@ -1369,12 +1369,12 @@ } ], "id": "course-of-action--520a0d23-9cbd-41da-a3dc-468975622fe2", - "modified": "2021-01-06T18:30:53.739Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Automated Marking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.739Z", + "created": "2021-01-13T01:52:41.526Z", "description": "a. Provide the means to associate [Assignment: organization-defined types of security and privacy attributes] with [Assignment: organization-defined security and privacy attribute values] for information in storage, in process, and/or in transmission;\nb. Ensure that the attribute associations are made and retained with the information;\nc. Establish the following permitted security and privacy attributes from the attributes defined in AC-16a for [Assignment: organization-defined systems]: [Assignment: organization-defined security and privacy attributes];\nd. Determine the following permitted attribute values or ranges for each of the established attributes: [Assignment: organization-defined attribute values or ranges for established attributes];\ne. Audit changes to attributes; and\nf. Review [Assignment: organization-defined security and privacy attributes] for applicability [Assignment: organization-defined frequency].\n\nInformation is represented internally within systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are typically associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are typically associated with data structures, such as records, buffers, tables, files, inter-process pipes, and communications ports. Security attributes, a form of metadata, are abstractions that represent the basic properties or characteristics of active and passive entities with respect to safeguarding information. Privacy attributes, which may be used independently or in conjunction with security attributes, represent the basic properties or characteristics of active or passive entities with respect to the management of personally identifiable information. Attributes can be either explicitly or implicitly associated with the information contained in organizational systems or system components.\nAttributes may be associated with active entities (i.e., subjects) that have the potential to send or receive information, cause information to flow among objects, or change the system state. These attributes may also be associated with passive entities (i.e., objects) that contain or receive information. The association of attributes to subjects and objects by a system is referred to as binding and is inclusive of setting the attribute value and the attribute type. Attributes, when bound to data or information, permit the enforcement of security and privacy policies for access control and information flow control, including data retention limits, permitted uses of personally identifiable information, and identification of personal information within data objects. Such enforcement occurs through organizational processes or system functions or mechanisms. The binding techniques implemented by systems affect the strength of attribute binding to information. Binding strength and the assurance associated with binding techniques play important parts in the trust that organizations have in the information flow enforcement process. The binding techniques affect the number and degree of additional reviews required by organizations. The content or assigned values of attributes can directly affect the ability of individuals to access organizational information.\nOrganizations can define the types of attributes needed for systems to support missions or business functions. There are many values that can be assigned to a security attribute. By specifying the permitted attribute ranges and values, organizations ensure that attribute values are meaningful and relevant. Labeling refers to the association of attributes with the subjects and objects represented by the internal data structures within systems. This facilitates system-based enforcement of information security and privacy policies. Labels include classification of information in accordance with legal and compliance requirements (e.g., top secret, secret, confidential, controlled unclassified), information impact level; high value asset information, access authorizations, nationality; data life cycle protection (i.e., encryption and data expiration), personally identifiable information processing permissions, including individual consent to personally identifiable information processing, and contractor affiliation. A related term to labeling is marking. Marking refers to the association of attributes with objects in a human-readable form and displayed on system media. Marking enables manual, procedural, or process-based enforcement of information security and privacy policies. Security and privacy labels may have the same value as media markings (e.g., top secret, secret, confidential). See MP-3 (Media Marking).", "external_references": [ { @@ -1383,12 +1383,12 @@ } ], "id": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "modified": "2021-01-06T18:30:53.739Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.739Z", + "created": "2021-01-13T01:52:41.526Z", "description": "Dynamically associate security and privacy attributes with [Assignment: organization-defined subjects and objects] in accordance with the following security and privacy policies as information is created and combined: [Assignment: organization-defined security and privacy policies].\n\nDynamic association of attributes is appropriate whenever the security or privacy characteristics of information change over time. Attributes may change due to information aggregation issues (i.e., characteristics of individual data elements are different from the combined elements), changes in individual access authorizations (i.e., privileges), changes in the security category of information, or changes in security or privacy policies. Attributes may also change situationally.", "external_references": [ { @@ -1397,12 +1397,12 @@ } ], "id": "course-of-action--cc384645-e3f1-489e-b49e-29785468c4d1", - "modified": "2021-01-06T18:30:53.739Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes | Dynamic Attribute Association", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.740Z", + "created": "2021-01-13T01:52:41.526Z", "description": "Provide authorized individuals (or processes acting on behalf of individuals) the capability to define or change the value of associated security and privacy attributes.\n\nThe content or assigned values of attributes can directly affect the ability of individuals to access organizational information. Therefore, it is important for systems to be able to limit the ability to create or modify attributes to authorized individuals.", "external_references": [ { @@ -1411,12 +1411,12 @@ } ], "id": "course-of-action--73452e03-95ae-46e3-a61f-20304c3ecd0d", - "modified": "2021-01-06T18:30:53.740Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes | Attribute Value Changes by Authorized Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.740Z", + "created": "2021-01-13T01:52:41.526Z", "description": "Maintain the association and integrity of [Assignment: organization-defined security and privacy attributes] to [Assignment: organization-defined subjects and objects].\n\nMaintaining the association and integrity of security and privacy attributes to subjects and objects with sufficient assurance helps to ensure that the attribute associations can be used as the basis of automated policy actions. The integrity of specific items, such as security configuration files, may be maintained through the use of an integrity monitoring mechanism that detects anomalies and changes that deviate from 'known good' baselines. Automated policy actions include retention date expirations, access control decisions, information flow control decisions, and information disclosure decisions.", "external_references": [ { @@ -1425,12 +1425,12 @@ } ], "id": "course-of-action--fab43639-9cfd-47e7-a513-3a39b33290fb", - "modified": "2021-01-06T18:30:53.740Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes | Maintenance of Attribute Associations by System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.740Z", + "created": "2021-01-13T01:52:41.526Z", "description": "Provide the capability to associate [Assignment: organization-defined security and privacy attributes] with [Assignment: organization-defined subjects and objects] by authorized individuals (or processes acting on behalf of individuals).\n\nSystems, in general, provide the capability for privileged users to assign security and privacy attributes to system-defined subjects (e.g., users) and objects (e.g., directories, files, and ports). Some systems provide additional capability for general users to assign security and privacy attributes to additional objects (e.g., files, emails). The association of attributes by authorized individuals is described in the design documentation. The support provided by systems can include prompting users to select security and privacy attributes to be associated with information objects, employing automated mechanisms to categorize information with attributes based on defined policies, or ensuring that the combination of the security or privacy attributes selected is valid. Organizations consider the creation, deletion, or modification of attributes when defining auditable events.", "external_references": [ { @@ -1439,12 +1439,12 @@ } ], "id": "course-of-action--a959888c-283e-48bc-b2f2-a79dea3d982d", - "modified": "2021-01-06T18:30:53.740Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes | Association of Attributes by Authorized Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.740Z", + "created": "2021-01-13T01:52:41.526Z", "description": "Display security and privacy attributes in human-readable form on each object that the system transmits to output devices to identify [Assignment: organization-defined special dissemination, handling, or distribution instructions] using [Assignment: organization-defined human-readable, standard naming conventions].\n\nSystem outputs include printed pages, screens, or equivalent items. System output devices include printers, notebook computers, video displays, smart phones, and tablets. To mitigate the risk of unauthorized exposure of information (e.g., shoulder surfing), the outputs display full attribute values when unmasked by the subscriber.", "external_references": [ { @@ -1453,12 +1453,12 @@ } ], "id": "course-of-action--4be99d1c-0c3b-405f-9e8f-d8e480b60e68", - "modified": "2021-01-06T18:30:53.740Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes | Attribute Displays on Objects to Be Output", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.740Z", + "created": "2021-01-13T01:52:41.527Z", "description": "Require personnel to associate and maintain the association of [Assignment: organization-defined security and privacy attributes] with [Assignment: organization-defined subjects and objects] in accordance with [Assignment: organization-defined security and privacy policies].\n\nMaintaining attribute association requires individual users (as opposed to the system) to maintain associations of defined security and privacy attributes with subjects and objects.", "external_references": [ { @@ -1467,12 +1467,12 @@ } ], "id": "course-of-action--0a1e6392-54bb-413b-a96b-bf7b59a9b1f5", - "modified": "2021-01-06T18:30:53.740Z", + "modified": "2021-01-13T01:52:41.527Z", "name": "Security and Privacy Attributes | Maintenance of Attribute Association", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.527Z", "description": "Provide a consistent interpretation of security and privacy attributes transmitted between distributed system components.\n\nTo enforce security and privacy policies across multiple system components in distributed systems, organizations provide a consistent interpretation of security and privacy attributes employed in access enforcement and flow enforcement decisions. Organizations can establish agreements and processes to help ensure that distributed system components implement attributes with consistent interpretations in automated access enforcement and flow enforcement actions.", "external_references": [ { @@ -1481,12 +1481,12 @@ } ], "id": "course-of-action--f7335365-30c1-4cc8-a4dc-38dd30c93c8a", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.527Z", "name": "Security and Privacy Attributes | Consistent Attribute Interpretation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.527Z", "description": "Implement [Assignment: organization-defined techniques and technologies] in associating security and privacy attributes to information.\n\nThe association of security and privacy attributes to information within systems is important for conducting automated access enforcement and flow enforcement actions. The association of such attributes to information (i.e., binding) can be accomplished with technologies and techniques that provide different levels of assurance. For example, systems can cryptographically bind attributes to information using digital signatures that support cryptographic keys protected by hardware devices (sometimes known as hardware roots of trust).", "external_references": [ { @@ -1495,12 +1495,12 @@ } ], "id": "course-of-action--a6e027e5-1f47-4bc5-a76d-4a80a01af673", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.527Z", "name": "Security and Privacy Attributes | Association Techniques and Technologies", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.527Z", "description": "Change security and privacy attributes associated with information only via regrading mechanisms validated using [Assignment: organization-defined techniques or procedures].\n\nA regrading mechanism is a trusted process authorized to re-classify and re-label data in accordance with a defined policy exception. Validated regrading mechanisms are used by organizations to provide the requisite levels of assurance for attribute reassignment activities. The validation is facilitated by ensuring that regrading mechanisms are single purpose and of limited function. Since security and privacy attribute changes can directly affect policy enforcement actions, implementing trustworthy regrading mechanisms is necessary to help ensure that such mechanisms perform in a consistent and correct mode of operation.", "external_references": [ { @@ -1509,12 +1509,12 @@ } ], "id": "course-of-action--bec879d4-7bf9-4db9-b535-c6f516ec71fa", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.527Z", "name": "Security and Privacy Attributes | Attribute Reassignment ' Regrading Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.527Z", "description": "Provide authorized individuals the capability to define or change the type and value of security and privacy attributes available for association with subjects and objects.\n\nThe content or assigned values of security and privacy attributes can directly affect the ability of individuals to access organizational information. Thus, it is important for systems to be able to limit the ability to create or modify the type and value of attributes available for association with subjects and objects to authorized individuals only.", "external_references": [ { @@ -1523,12 +1523,12 @@ } ], "id": "course-of-action--54ba13f8-c4a0-437a-a91e-61e023f95c11", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.527Z", "name": "Security and Privacy Attributes | Attribute Configuration by Authorized Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.528Z", "description": "a. Establish and document usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and\nb. Authorize each type of remote access to the system prior to allowing such connections.\n\nRemote access is access to organizational systems (or processes acting on behalf of users) that communicate through external networks such as the Internet. Types of remote access include dial-up, broadband, and wireless. Organizations use encrypted virtual private networks (VPNs) to enhance confidentiality and integrity for remote connections. The use of encrypted VPNs provides sufficient assurance to the organization that it can effectively treat such connections as internal networks if the cryptographic mechanisms used are implemented in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Still, VPN connections traverse external networks, and the encrypted VPN does not enhance the availability of remote connections. VPNs with encrypted tunnels can also affect the ability to adequately monitor network communications traffic for malicious code. Remote access controls apply to systems other than public web servers or systems designed for public access. Authorization of each remote access type addresses authorization prior to allowing remote access without specifying the specific formats for such authorization. While organizations may use information exchange and system connection security agreements to manage remote access connections to other systems, such agreements are addressed as part of CA-3. Enforcing access restrictions for remote access is addressed via AC-3.", "external_references": [ { @@ -1537,12 +1537,12 @@ } ], "id": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.528Z", "description": "Employ automated mechanisms to monitor and control remote access methods.\n\nMonitoring and control of remote access methods allows organizations to detect attacks and help ensure compliance with remote access policies by auditing the connection activities of remote users on a variety of system components, including servers, notebook computers, workstations, smart phones, and tablets. Audit logging for remote access is enforced by AU-2. Audit events are defined in AU-2a.", "external_references": [ { @@ -1551,12 +1551,12 @@ } ], "id": "course-of-action--bcae0394-6cc1-4331-908c-c9d860cf5c93", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access | Monitoring and Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.742Z", + "created": "2021-01-13T01:52:41.528Z", "description": "Implement cryptographic mechanisms to protect the confidentiality and integrity of remote access sessions.\n\nVirtual private networks can be used to protect the confidentiality and integrity of remote access sessions. Transport Layer Security (TLS) is an example of a cryptographic protocol that provides end-to-end communications security over networks and is used for Internet communications and online transactions.", "external_references": [ { @@ -1565,12 +1565,12 @@ } ], "id": "course-of-action--f906cf6d-26ad-408b-aa9e-e0d69f3cbbcf", - "modified": "2021-01-06T18:30:53.742Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access | Protection of Confidentiality and Integrity Using Encryption", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.742Z", + "created": "2021-01-13T01:52:41.528Z", "description": "Route remote accesses through authorized and managed network access control points.\n\nOrganizations consider the Trusted Internet Connections (TIC) initiative [DHS TIC] requirements for external network connections since limiting the number of access control points for remote access reduces attack surfaces.", "external_references": [ { @@ -1579,12 +1579,12 @@ } ], "id": "course-of-action--b3861148-7ee7-401d-95f8-810820045e51", - "modified": "2021-01-06T18:30:53.742Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access | Managed Access Control Points", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.742Z", + "created": "2021-01-13T01:52:41.528Z", "description": "(a) Authorize the execution of privileged commands and access to security-relevant information via remote access only in a format that provides assessable evidence and for the following needs: [Assignment: organization-defined needs]; and\n(b) Document the rationale for remote access in the security plan for the system.\n\nRemote access to systems represents a significant potential vulnerability that can be exploited by adversaries. As such, restricting the execution of privileged commands and access to security-relevant information via remote access reduces the exposure of the organization and the susceptibility to threats by adversaries to the remote access capability.", "external_references": [ { @@ -1593,12 +1593,12 @@ } ], "id": "course-of-action--475fc1b8-583d-4ad0-b66d-f976eb0d07c0", - "modified": "2021-01-06T18:30:53.742Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access | Privileged Commands and Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.742Z", + "created": "2021-01-13T01:52:41.529Z", "description": "", "external_references": [ { @@ -1607,12 +1607,12 @@ } ], "id": "course-of-action--deb9d9e7-0bfb-4015-9f8c-04e9f3ae19dc", - "modified": "2021-01-06T18:30:53.742Z", + "modified": "2021-01-13T01:52:41.529Z", "name": "Remote Access | Monitoring for Unauthorized Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.743Z", + "created": "2021-01-13T01:52:41.529Z", "description": "Protect information about remote access mechanisms from unauthorized use and disclosure.\n\nRemote access to organizational information by non-organizational entities can increase the risk of unauthorized use and disclosure about remote access mechanisms. The organization considers including remote access requirements in the information exchange agreements with other organizations, as applicable. Remote access requirements can also be included in rules of behavior (see PL-4) and access agreements (see PS-6).", "external_references": [ { @@ -1621,12 +1621,12 @@ } ], "id": "course-of-action--c91fb2fe-7810-4fa6-826e-0f6c8f2b9802", - "modified": "2021-01-06T18:30:53.743Z", + "modified": "2021-01-13T01:52:41.529Z", "name": "Remote Access | Protection of Mechanism Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.743Z", + "created": "2021-01-13T01:52:41.529Z", "description": "", "external_references": [ { @@ -1635,12 +1635,12 @@ } ], "id": "course-of-action--4084868b-3055-431c-a9af-7ae02f7c622e", - "modified": "2021-01-06T18:30:53.743Z", + "modified": "2021-01-13T01:52:41.529Z", "name": "Remote Access | Additional Protection for Security Function Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.743Z", + "created": "2021-01-13T01:52:41.529Z", "description": "", "external_references": [ { @@ -1649,12 +1649,12 @@ } ], "id": "course-of-action--fa5e394f-a3e9-4ee4-984c-6fcdeac65511", - "modified": "2021-01-06T18:30:53.743Z", + "modified": "2021-01-13T01:52:41.529Z", "name": "Remote Access | Disable Nonsecure Network Protocols", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.743Z", + "created": "2021-01-13T01:52:41.529Z", "description": "Provide the capability to disconnect or disable remote access to the system within [Assignment: organization-defined time period].\n\nThe speed of system disconnect or disablement varies based on the criticality of missions or business functions and the need to eliminate immediate or future remote access to systems.", "external_references": [ { @@ -1663,12 +1663,12 @@ } ], "id": "course-of-action--7efd492b-c8e7-41ae-a99f-d0600334faf8", - "modified": "2021-01-06T18:30:53.743Z", + "modified": "2021-01-13T01:52:41.529Z", "name": "Remote Access | Disconnect or Disable Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.744Z", + "created": "2021-01-13T01:52:41.530Z", "description": "Implement [Assignment: organization-defined mechanisms] to authenticate [Assignment: organization-defined remote commands].\n\nAuthenticating remote commands protects against unauthorized commands and the replay of authorized commands. The ability to authenticate remote commands is important for remote systems for which loss, malfunction, misdirection, or exploitation would have immediate or serious consequences, such as injury, death, property damage, loss of high value assets, failure of mission or business functions, or compromise of classified or controlled unclassified information. Authentication mechanisms for remote commands ensure that systems accept and execute commands in the order intended, execute only authorized commands, and reject unauthorized commands. Cryptographic mechanisms can be used, for example, to authenticate remote commands.", "external_references": [ { @@ -1677,12 +1677,12 @@ } ], "id": "course-of-action--0826f0aa-7ee0-44ff-940f-711940a31012", - "modified": "2021-01-06T18:30:53.744Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Remote Access | Authenticate Remote Commands", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.744Z", + "created": "2021-01-13T01:52:41.530Z", "description": "a. Establish configuration requirements, connection requirements, and implementation guidance for each type of wireless access; and\nb. Authorize each type of wireless access to the system prior to allowing such connections.\n\nWireless technologies include microwave, packet radio (ultra-high frequency or very high frequency), 802.11x, and Bluetooth. Wireless networks use authentication protocols that provide authenticator protection and mutual authentication.", "external_references": [ { @@ -1691,12 +1691,12 @@ } ], "id": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "modified": "2021-01-06T18:30:53.744Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Wireless Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.744Z", + "created": "2021-01-13T01:52:41.530Z", "description": "Protect wireless access to the system using authentication of [Selection (one or more): users; devices] and encryption.\n\nWireless networking capabilities represent a significant potential vulnerability that can be exploited by adversaries. To protect systems with wireless access points, strong authentication of users and devices along with strong encryption can reduce susceptibility to threats by adversaries involving wireless technologies.", "external_references": [ { @@ -1705,12 +1705,12 @@ } ], "id": "course-of-action--30ad15bc-8941-45f4-a11f-afe26973a866", - "modified": "2021-01-06T18:30:53.744Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Wireless Access | Authentication and Encryption", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.744Z", + "created": "2021-01-13T01:52:41.530Z", "description": "", "external_references": [ { @@ -1719,12 +1719,12 @@ } ], "id": "course-of-action--44364e7e-511f-439c-a72e-0942bd3b08f9", - "modified": "2021-01-06T18:30:53.744Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Wireless Access | Monitoring Unauthorized Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.745Z", + "created": "2021-01-13T01:52:41.530Z", "description": "Disable, when not intended for use, wireless networking capabilities embedded within system components prior to issuance and deployment.\n\nWireless networking capabilities that are embedded within system components represent a significant potential vulnerability that can be exploited by adversaries. Disabling wireless capabilities when not needed for essential organizational missions or functions can reduce susceptibility to threats by adversaries involving wireless technologies.", "external_references": [ { @@ -1733,12 +1733,12 @@ } ], "id": "course-of-action--4f6e3ead-02c8-4b90-8b12-20a6d95b72cd", - "modified": "2021-01-06T18:30:53.745Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Wireless Access | Disable Wireless Networking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.745Z", + "created": "2021-01-13T01:52:41.531Z", "description": "Identify and explicitly authorize users allowed to independently configure wireless networking capabilities.\n\nOrganizational authorizations to allow selected users to configure wireless networking capabilities are enforced, in part, by the access enforcement mechanisms employed within organizational systems.", "external_references": [ { @@ -1747,12 +1747,12 @@ } ], "id": "course-of-action--0a2d54de-aa01-4a01-bbf0-f5d3efa17490", - "modified": "2021-01-06T18:30:53.745Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Wireless Access | Restrict Configurations by Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.745Z", + "created": "2021-01-13T01:52:41.531Z", "description": "Select radio antennas and calibrate transmission power levels to reduce the probability that signals from wireless access points can be received outside of organization-controlled boundaries.\n\nActions that may be taken to limit unauthorized use of wireless communications outside of organization-controlled boundaries include reducing the power of wireless transmissions so that the transmissions are less likely to emit a signal that can be captured outside of the physical perimeters of the organization, employing measures such as emissions security to control wireless emanations, and using directional or beamforming antennas that reduce the likelihood that unintended receivers will be able to intercept signals. Prior to taking such mitigating actions, organizations can conduct periodic wireless surveys to understand the radio frequency profile of organizational systems as well as other systems that may be operating in the area.", "external_references": [ { @@ -1761,12 +1761,12 @@ } ], "id": "course-of-action--36c1c6b6-2da0-4c2b-8cb5-f3a992fbf483", - "modified": "2021-01-06T18:30:53.745Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Wireless Access | Antennas and Transmission Power Levels", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.745Z", + "created": "2021-01-13T01:52:41.531Z", "description": "a. Establish configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices, to include when such devices are outside of controlled areas; and\nb. Authorize the connection of mobile devices to organizational systems.\n\nA mobile device is a computing device that has a small form factor such that it can easily be carried by a single individual; is designed to operate without a physical connection; possesses local, non-removable or removable data storage; and includes a self-contained power source. Mobile device functionality may also include voice communication capabilities, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations. Examples include smart phones and tablets. Mobile devices are typically associated with a single individual. The processing, storage, and transmission capability of the mobile device may be comparable to or merely a subset of notebook/desktop systems, depending on the nature and intended purpose of the device. Protection and control of mobile devices is behavior or policy-based and requires users to take physical action to protect and control such devices when outside of controlled areas. Controlled areas are spaces for which organizations provide physical or procedural controls to meet the requirements established for protecting information and systems.\nDue to the large variety of mobile devices with different characteristics and capabilities, organizational restrictions may vary for the different classes or types of such devices. Usage restrictions and specific implementation guidance for mobile devices include configuration management, device identification and authentication, implementation of mandatory protective software, scanning devices for malicious code, updating virus protection software, scanning for critical software updates and patches, conducting primary operating system (and possibly other resident software) integrity checks, and disabling unnecessary hardware.\nUsage restrictions and authorization to connect may vary among organizational systems. For example, the organization may authorize the connection of mobile devices to the organizational network and impose a set of usage restrictions, while a system owner may withhold authorization for mobile device connection to specific applications or impose additional usage restrictions before allowing mobile device connections to a system. Adequate security for mobile devices goes beyond the requirements specified in AC-19. Many controls for mobile devices are reflected in other controls allocated to the initial control baselines as starting points for the development of security plans and overlays using the tailoring process. There may also be some overlap by the security controls within the different families of controls. AC-20 addresses mobile devices that are not organization-controlled.", "external_references": [ { @@ -1775,12 +1775,12 @@ } ], "id": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "modified": "2021-01-06T18:30:53.745Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Access Control for Mobile Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.746Z", + "created": "2021-01-13T01:52:41.531Z", "description": "", "external_references": [ { @@ -1789,12 +1789,12 @@ } ], "id": "course-of-action--7962b1d4-ba9e-4d63-9609-ecdee35f988f", - "modified": "2021-01-06T18:30:53.746Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Access Control for Mobile Devices | Use of Writable and Portable Storage Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.746Z", + "created": "2021-01-13T01:52:41.531Z", "description": "", "external_references": [ { @@ -1803,12 +1803,12 @@ } ], "id": "course-of-action--2eaf72c7-523b-455f-9d22-9d77b35a60ac", - "modified": "2021-01-06T18:30:53.746Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Access Control for Mobile Devices | Use of Personally Owned Portable Storage Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.746Z", + "created": "2021-01-13T01:52:41.532Z", "description": "", "external_references": [ { @@ -1817,12 +1817,12 @@ } ], "id": "course-of-action--50900ebb-5e77-4f86-831d-f165aafd5a25", - "modified": "2021-01-06T18:30:53.746Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Access Control for Mobile Devices | Use of Portable Storage Devices with No Identifiable Owner", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.747Z", + "created": "2021-01-13T01:52:41.532Z", "description": "(a) Prohibit the use of unclassified mobile devices in facilities containing systems processing, storing, or transmitting classified information unless specifically permitted by the authorizing official; and\n(b) Enforce the following restrictions on individuals permitted by the authorizing official to use unclassified mobile devices in facilities containing systems processing, storing, or transmitting classified information:\n(1) Connection of unclassified mobile devices to classified systems is prohibited;\n(2) Connection of unclassified mobile devices to unclassified systems requires approval from the authorizing official;\n(3) Use of internal or external modems or wireless interfaces within the unclassified mobile devices is prohibited; and\n(4) Unclassified mobile devices and the information stored on those devices are subject to random reviews and inspections by [Assignment: organization-defined security officials], and if classified information is found, the incident handling policy is followed.\n(c) Restrict the connection of classified mobile devices to classified systems in accordance with [Assignment: organization-defined security policies].\n\nNone.", "external_references": [ { @@ -1831,12 +1831,12 @@ } ], "id": "course-of-action--cbde04c8-57bb-410c-addc-f0454ab40029", - "modified": "2021-01-06T18:30:53.747Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Access Control for Mobile Devices | Restrictions for Classified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.747Z", + "created": "2021-01-13T01:52:41.532Z", "description": "Employ [Selection: full-device encryption; container-based encryption] to protect the confidentiality and integrity of information on [Assignment: organization-defined mobile devices].\n\nContainer-based encryption provides a more fine-grained approach to data and information encryption on mobile devices, including encrypting selected data structures such as files, records, or fields.", "external_references": [ { @@ -1845,12 +1845,12 @@ } ], "id": "course-of-action--13c0a5e6-20d0-474d-82b0-8e27c67ceaaa", - "modified": "2021-01-06T18:30:53.747Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Access Control for Mobile Devices | Full Device or Container-based Encryption", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.747Z", + "created": "2021-01-13T01:52:41.532Z", "description": "a. [Selection (one or more): Establish [Assignment: organization-defined terms and conditions]\n ; Identify [Assignment: organization-defined controls asserted to be implemented on external systems]\n ], consistent with the trust relationships established with other organizations owning, operating, and/or maintaining external systems, allowing authorized individuals to:\n1. Access the system from external systems; and\n2. Process, store, or transmit organization-controlled information using external systems; or\nb. Prohibit the use of [Assignment: organizationally-defined types of external systems].\n\nExternal systems are systems that are used by but not part of organizational systems and for which the organization has no direct control over the implementation of required controls or the assessment of control effectiveness. External systems include personally owned systems, components, or devices; privately owned computing and communications devices in commercial or public facilities; systems owned or controlled by nonfederal organizations; systems managed by contractors; and federal information systems that are not owned by, operated by, or under the direct supervision or authority of the organization. External systems also include systems owned or operated by other components within the same organization and systems within the organization with different authorization boundaries. Organizations have the option to prohibit the use of any type of external system or prohibit the use of specified types of external systems, (e.g., prohibit the use of any external system that is not organizationally owned or prohibit the use of personally-owned systems).\nFor some external systems (i.e., systems operated by other organizations), the trust relationships that have been established between those organizations and the originating organization may be such that no explicit terms and conditions are required. Systems within these organizations may not be considered external. These situations occur when, for example, there are pre-existing information exchange agreements (either implicit or explicit) established between organizations or components or when such agreements are specified by applicable laws, executive orders, directives, regulations, policies, or standards. Authorized individuals include organizational personnel, contractors, or other individuals with authorized access to organizational systems and over which organizations have the authority to impose specific rules of behavior regarding system access. Restrictions that organizations impose on authorized individuals need not be uniform, as the restrictions may vary depending on trust relationships between organizations. Therefore, organizations may choose to impose different security restrictions on contractors than on state, local, or tribal governments.\nExternal systems used to access public interfaces to organizational systems are outside the scope of AC-20. Organizations establish specific terms and conditions for the use of external systems in accordance with organizational security policies and procedures. At a minimum, terms and conditions address the specific types of applications that can be accessed on organizational systems from external systems and the highest security category of information that can be processed, stored, or transmitted on external systems. If the terms and conditions with the owners of the external systems cannot be established, organizations may impose restrictions on organizational personnel using those external systems.", "external_references": [ { @@ -1859,12 +1859,12 @@ } ], "id": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "modified": "2021-01-06T18:30:53.747Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Use of External Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.747Z", + "created": "2021-01-13T01:52:41.532Z", "description": "Permit authorized individuals to use an external system to access the system or to process, store, or transmit organization-controlled information only after:\n(a) Verification of the implementation of controls on the external system as specified in the organization's security and privacy policies and security and privacy plans; or\n(b) Retention of approved system connection or processing agreements with the organizational entity hosting the external system.\n\nLimiting authorized use recognizes circumstances where individuals using external systems may need to access organizational systems. Organizations need assurance that the external systems contain the necessary controls so as not to compromise, damage, or otherwise harm organizational systems. Verification that the required controls have been implemented can be achieved by external, independent assessments, attestations, or other means, depending on the confidence level required by organizations.", "external_references": [ { @@ -1873,12 +1873,12 @@ } ], "id": "course-of-action--df3d1391-a6d7-4e14-91d7-f880b7e23f54", - "modified": "2021-01-06T18:30:53.747Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Use of External Systems | Limits on Authorized Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "Restrict the use of organization-controlled portable storage devices by authorized individuals on external systems using [Assignment: organization-defined restrictions].\n\nLimits on the use of organization-controlled portable storage devices in external systems include restrictions on how the devices may be used and under what conditions the devices may be used.", "external_references": [ { @@ -1887,12 +1887,12 @@ } ], "id": "course-of-action--8cba8fea-b739-4fc3-b3cb-c852342fb394", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Use of External Systems | Portable Storage Devices ' Restricted Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "Restrict the use of non-organizationally owned systems or system components to process, store, or transmit organizational information using [Assignment: organization-defined restrictions].\n\nNon-organizationally owned systems or system components include systems or system components owned by other organizations as well as personally owned devices. There are potential risks to using non-organizationally owned systems or components. In some cases, the risk is sufficiently high as to prohibit such use (see AC-20(6)). In other cases, the use of such systems or system components may be allowed but restricted in some way. Restrictions include requiring the implementation of approved controls prior to authorizing the connection of non-organizationally owned systems and components; limiting access to types of information, services, or applications; using virtualization techniques to limit processing and storage activities to servers or system components provisioned by the organization; and agreeing to the terms and conditions for usage. Organizations consult with the Office of the General Counsel regarding legal issues associated with using personally owned devices, including requirements for conducting forensic analyses during investigations after an incident.", "external_references": [ { @@ -1901,12 +1901,12 @@ } ], "id": "course-of-action--1dba618b-438a-4758-9b4f-ccffa4927065", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Use of External Systems | Non-organizationally Owned Systems ' Restricted Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "Prohibit the use of [Assignment: organization-defined network accessible storage devices] in external systems.\n\nNetwork-accessible storage devices in external systems include online storage devices in public, hybrid, or community cloud-based systems.", "external_references": [ { @@ -1915,12 +1915,12 @@ } ], "id": "course-of-action--8ec6c88a-b9d8-4727-a17c-28a739d071c1", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Use of External Systems | Network Accessible Storage Devices ' Prohibited Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "Prohibit the use of organization-controlled portable storage devices by authorized individuals on external systems.\n\nLimits on the use of organization-controlled portable storage devices in external systems include a complete prohibition of the use of such devices. Prohibiting such use is enforced using technical methods and/or nontechnical (i.e., process-based) methods.", "external_references": [ { @@ -1929,12 +1929,12 @@ } ], "id": "course-of-action--3464867a-8637-42cc-98de-11d843a2eb4b", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Use of External Systems | Portable Storage Devices ' Prohibited Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "a. Enable authorized users to determine whether access authorizations assigned to a sharing partner match the information's access and use restrictions for [Assignment: organization-defined information sharing circumstances where user discretion is required]; and\nb. Employ [Assignment: organization-defined automated mechanisms or manual processes] to assist users in making information sharing and collaboration decisions.\n\nInformation sharing applies to information that may be restricted in some manner based on some formal or administrative determination. Examples of such information include, contract-sensitive information, classified information related to special access programs or compartments, privileged information, proprietary information, and personally identifiable information. Security and privacy risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to these determinations. Depending on the circumstances, sharing partners may be defined at the individual, group, or organizational level. Information may be defined by content, type, security category, or special access program or compartment. Access restrictions may include non-disclosure agreements (NDA). Information flow techniques and security attributes may be used to provide automated assistance to users making sharing and collaboration decisions.", "external_references": [ { @@ -1943,12 +1943,12 @@ } ], "id": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Information Sharing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.533Z", "description": "Employ [Assignment: organization-defined automated mechanisms] to enforce information-sharing decisions by authorized users based on access authorizations of sharing partners and access restrictions on information to be shared.\n\nAutomated mechanisms are used to enforce information sharing decisions.", "external_references": [ { @@ -1957,12 +1957,12 @@ } ], "id": "course-of-action--7de41ee0-8699-4e93-8da6-899713e105b2", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Information Sharing | Automated Decision Support", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.534Z", "description": "Implement information search and retrieval services that enforce [Assignment: organization-defined information sharing restrictions].\n\nInformation search and retrieval services identify information system resources relevant to an information need.", "external_references": [ { @@ -1971,12 +1971,12 @@ } ], "id": "course-of-action--e763972b-b01a-4af6-bf74-e263a1cd18c1", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Information Sharing | Information Search and Retrieval", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.534Z", "description": "a. Designate individuals authorized to make information publicly accessible;\nb. Train authorized individuals to ensure that publicly accessible information does not contain nonpublic information;\nc. Review the proposed content of information prior to posting onto the publicly accessible system to ensure that nonpublic information is not included; and\nd. Review the content on the publicly accessible system for nonpublic information [Assignment: organization-defined frequency] and remove such information, if discovered.\n\nIn accordance with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines, the public is not authorized to have access to nonpublic information, including information protected under the [PRIVACT] and proprietary information. Publicly accessible content addresses systems that are controlled by the organization and accessible to the public, typically without identification or authentication. Posting information on non-organizational systems (e.g., non-organizational public websites, forums, and social media) is covered by organizational policy. While organizations may have individuals who are responsible for developing and implementing policies about the information that can be made publicly accessible, publicly accessible content addresses the management of the individuals who make such information publicly accessible.", "external_references": [ { @@ -1985,12 +1985,12 @@ } ], "id": "course-of-action--e7423643-3808-44db-a3a2-67a328bfdf45", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Publicly Accessible Content", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.534Z", "description": "Employ [Assignment: organization-defined data mining prevention and detection techniques] for [Assignment: organization-defined data storage objects] to detect and protect against unauthorized data mining.\n\nData mining is an analytical process that attempts to find correlations or patterns in large data sets for the purpose of data or knowledge discovery. Data storage objects include database records and database fields. Sensitive information can be extracted from data mining operations. When information is personally identifiable information, it may lead to unanticipated revelations about individuals and give rise to privacy risks. Prior to performing data mining activities, organizations determine whether such activities are authorized. Organizations may be subject to applicable laws, executive orders, directives, regulations, or policies that address data mining requirements. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.\nData mining prevention and detection techniques include limiting the number and frequency of database queries to increase the work factor needed to determine the contents of databases, limiting types of responses provided to database queries, applying differential privacy techniques or homomorphic encryption, and notifying personnel when atypical database queries or accesses occur. Data mining protection focuses on protecting information from data mining while such information resides in organizational data stores. In contrast, AU-13 focuses on monitoring for organizational information that may have been mined or otherwise obtained from data stores and is available as open-source information residing on external sites, such as social networking or social media websites.\n[EO 13587] requires the establishment of an insider threat program for deterring, detecting, and mitigating insider threats, including the safeguarding of sensitive information from exploitation, compromise, or other unauthorized disclosure. Data mining protection requires organizations to identify appropriate techniques to prevent and detect unnecessary or unauthorized data mining. Data mining can be used by an insider to collect organizational information for the purpose of exfiltration.", "external_references": [ { @@ -1999,12 +1999,12 @@ } ], "id": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Data Mining Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.534Z", "description": "[Selection: Establish procedures; Implement mechanisms] to ensure [Assignment: organization-defined access control decisions] are applied to each access request prior to access enforcement.\n\nAccess control decisions (also known as authorization decisions) occur when authorization information is applied to specific accesses. In contrast, access enforcement occurs when systems enforce access control decisions. While it is common to have access control decisions and access enforcement implemented by the same entity, it is not required, and it is not always an optimal implementation choice. For some architectures and distributed systems, different entities may make access control decisions and enforce access.", "external_references": [ { @@ -2013,12 +2013,12 @@ } ], "id": "course-of-action--bd0ce1ab-4bad-4f2e-ac74-dd9a31a37236", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Access Control Decisions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.750Z", + "created": "2021-01-13T01:52:41.534Z", "description": "Transmit [Assignment: organization-defined access authorization information] using [Assignment: organization-defined controls] to [Assignment: organization-defined systems] that enforce access control decisions.\n\nAuthorization processes and access control decisions may occur in separate parts of systems or in separate systems. In such instances, authorization information is transmitted securely (e.g., using cryptographic mechanisms) so that timely access control decisions can be enforced at the appropriate locations. To support the access control decisions, it may be necessary to transmit as part of the access authorization information supporting security and privacy attributes. This is because in distributed systems, there are various access control decisions that need to be made, and different entities make these decisions in a serial fashion, each requiring those attributes to make the decisions. Protecting access authorization information ensures that such information cannot be altered, spoofed, or compromised during transmission.", "external_references": [ { @@ -2027,12 +2027,12 @@ } ], "id": "course-of-action--0be904ea-e07c-4692-8252-f1d2ee9f3bd8", - "modified": "2021-01-06T18:30:53.750Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Access Control Decisions | Transmit Access Authorization Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.750Z", + "created": "2021-01-13T01:52:41.535Z", "description": "Enforce access control decisions based on [Assignment: organization-defined security or privacy attributes] that do not include the identity of the user or process acting on behalf of the user.\n\nIn certain situations, it is important that access control decisions can be made without information regarding the identity of the users issuing the requests. These are generally instances where preserving individual privacy is of paramount importance. In other situations, user identification information is simply not needed for access control decisions, and especially in the case of distributed systems, transmitting such information with the needed degree of assurance may be very expensive or difficult to accomplish. MAC, RBAC, ABAC, and label-based control policies, for example, might not include user identity as an attribute.", "external_references": [ { @@ -2041,12 +2041,12 @@ } ], "id": "course-of-action--1b60c19e-0662-451c-a0ef-d89053c2c306", - "modified": "2021-01-06T18:30:53.750Z", + "modified": "2021-01-13T01:52:41.535Z", "name": "Access Control Decisions | No User or Process Identity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.751Z", + "created": "2021-01-13T01:52:41.535Z", "description": "Implement a reference monitor for [Assignment: organization-defined access control policies] that is tamperproof, always invoked, and small enough to be subject to analysis and testing, the completeness of which can be assured.\n\nA reference monitor is a set of design requirements on a reference validation mechanism that, as a key component of an operating system, enforces an access control policy over all subjects and objects. A reference validation mechanism is always invoked, tamper-proof, and small enough to be subject to analysis and tests, the completeness of which can be assured (i.e., verifiable). Information is represented internally within systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are associated with data structures, such as records, buffers, communications ports, tables, files, and inter-process pipes. Reference monitors enforce access control policies that restrict access to objects based on the identity of subjects or groups to which the subjects belong. The system enforces the access control policy based on the rule set established by the policy. The tamper-proof property of the reference monitor prevents determined adversaries from compromising the functioning of the reference validation mechanism. The always invoked property prevents adversaries from bypassing the mechanism and violating the security policy. The smallness property helps to ensure completeness in the analysis and testing of the mechanism to detect any weaknesses or deficiencies (i.e., latent flaws) that would prevent the enforcement of the security policy.", "external_references": [ { @@ -2055,12 +2055,12 @@ } ], "id": "course-of-action--b0a72123-36c6-4a80-b5a9-a48fd87f9eb1", - "modified": "2021-01-06T18:30:53.751Z", + "modified": "2021-01-13T01:52:41.535Z", "name": "Reference Monitor", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.751Z", + "created": "2021-01-13T01:52:41.535Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] awareness and training policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the awareness and training policy and the associated awareness and training controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the awareness and training policy and procedures; and\nc. Review and update the current awareness and training:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nAwareness and training policy and procedures address the controls in the AT family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of awareness and training policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to awareness and training policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -2069,12 +2069,12 @@ } ], "id": "course-of-action--1a9a5077-652e-4c32-a05d-45a792f8c2b4", - "modified": "2021-01-06T18:30:53.751Z", + "modified": "2021-01-13T01:52:41.535Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.751Z", + "created": "2021-01-13T01:52:41.535Z", "description": "a. Provide security and privacy literacy training to system users (including managers, senior executives, and contractors):\n1. As part of initial training for new users and [Assignment: organization-defined frequency] thereafter; and\n2. When required by system changes or following [Assignment: organization-defined events];\nb. Employ the following techniques to increase the security and privacy awareness of system users [Assignment: organization-defined awareness techniques];\nc. Update literacy training and awareness content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\nd. Incorporate lessons learned from internal or external security or privacy incidents into literacy training and awareness techniques.\n\nOrganizations provide basic and advanced levels of literacy training to system users, including measures to test the knowledge level of users. Organizations determine the content of literacy training and awareness based on specific organizational requirements, the systems to which personnel have authorized access, and work environments (e.g., telework). The content includes an understanding of the need for security and privacy as well as actions by users to maintain security and personal privacy and to respond to suspected incidents. The content addresses the need for operations security and the handling of personally identifiable information.\nAwareness techniques include displaying posters, offering supplies inscribed with security and privacy reminders, displaying logon screen messages, generating email advisories or notices from organizational officials, and conducting awareness events. Literacy training after the initial training described in AT-2a.1 is conducted at a minimum frequency consistent with applicable laws, directives, regulations, and policies. Subsequent literacy training may be satisfied by one or more short ad hoc sessions and include topical information on recent attack schemes, changes to organizational security and privacy policies, revised security and privacy expectations, or a subset of topics from the initial training. Updating literacy training and awareness content on a regular basis helps to ensure that the content remains relevant. Events that may precipitate an update to literacy training and awareness content include, but are not limited to, assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -2083,12 +2083,12 @@ } ], "id": "course-of-action--70588829-95ce-4033-8972-b1361575bd25", - "modified": "2021-01-06T18:30:53.751Z", + "modified": "2021-01-13T01:52:41.535Z", "name": "Literacy Training and Awareness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.751Z", + "created": "2021-01-13T01:52:41.535Z", "description": "Provide practical exercises in literacy training that simulate events and incidents.\n\nPractical exercises include no-notice social engineering attempts to collect information, gain unauthorized access, or simulate the adverse impact of opening malicious email attachments or invoking, via spear phishing attacks, malicious web links.", "external_references": [ { @@ -2097,12 +2097,12 @@ } ], "id": "course-of-action--c291f592-0f0d-4213-9fee-a425e0f4d207", - "modified": "2021-01-06T18:30:53.751Z", + "modified": "2021-01-13T01:52:41.535Z", "name": "Literacy Training and Awareness | Practical Exercises", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.752Z", + "created": "2021-01-13T01:52:41.536Z", "description": "Provide literacy training on recognizing and reporting potential indicators of insider threat.\n\nPotential indicators and possible precursors of insider threat can include behaviors such as inordinate, long-term job dissatisfaction; attempts to gain access to information not required for job performance; unexplained access to financial resources; bullying or harassment of fellow employees; workplace violence; and other serious violations of policies, procedures, directives, regulations, rules, or practices. Literacy training includes how to communicate the concerns of employees and management regarding potential indicators of insider threat through channels established by the organization and in accordance with established policies and procedures. Organizations may consider tailoring insider threat awareness topics to the role. For example, training for managers may be focused on changes in the behavior of team members, while training for employees may be focused on more general observations.", "external_references": [ { @@ -2111,12 +2111,12 @@ } ], "id": "course-of-action--3a88a5ef-93eb-4e43-bb72-32e103c6cfaf", - "modified": "2021-01-06T18:30:53.752Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Literacy Training and Awareness | Insider Threat", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.752Z", + "created": "2021-01-13T01:52:41.536Z", "description": "Provide literacy training on recognizing and reporting potential and actual instances of social engineering and social mining.\n\nSocial engineering is an attempt to trick an individual into revealing information or taking an action that can be used to breach, compromise, or otherwise adversely impact a system. Social engineering includes phishing, pretexting, impersonation, baiting, quid pro quo, thread-jacking, social media exploitation, and tailgating. Social mining is an attempt to gather information about the organization that may be used to support future attacks. Literacy training includes information on how to communicate the concerns of employees and management regarding potential and actual instances of social engineering and data mining through organizational channels based on established policies and procedures.", "external_references": [ { @@ -2125,12 +2125,12 @@ } ], "id": "course-of-action--f259fd44-6f6b-4721-9406-ad6cac64770f", - "modified": "2021-01-06T18:30:53.752Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Literacy Training and Awareness | Social Engineering and Mining", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.752Z", + "created": "2021-01-13T01:52:41.536Z", "description": "Provide literacy training on recognizing suspicious communications and anomalous behavior in organizational systems using [Assignment: organization-defined indicators of malicious code].\n\nA well-trained workforce provides another organizational control that can be employed as part of a defense-in-depth strategy to protect against malicious code coming into organizations via email or the web applications. Personnel are trained to look for indications of potentially suspicious email (e.g., receiving an unexpected email, receiving an email containing strange or poor grammar, or receiving an email from an unfamiliar sender that appears to be from a known sponsor or contractor). Personnel are also trained on how to respond to suspicious email or web communications. For this process to work effectively, personnel are trained and made aware of what constitutes suspicious communications. Training personnel on how to recognize anomalous behaviors in systems can provide organizations with early warning for the presence of malicious code. Recognition of anomalous behavior by organizational personnel can supplement malicious code detection and protection tools and systems employed by organizations.", "external_references": [ { @@ -2139,12 +2139,12 @@ } ], "id": "course-of-action--9465d3fd-d365-4966-9ad0-42d6b30ed44d", - "modified": "2021-01-06T18:30:53.752Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Literacy Training and Awareness | Suspicious Communications and Anomalous System Behavior", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.752Z", + "created": "2021-01-13T01:52:41.536Z", "description": "Provide literacy training on the advanced persistent threat.\n\nAn effective way to detect advanced persistent threats (APT) and to preclude successful attacks is to provide specific literacy training for individuals. Threat literacy training includes educating individuals on the various ways that APTs can infiltrate the organization (e.g., through websites, emails, advertisement pop-ups, articles, and social engineering). Effective training includes techniques for recognizing suspicious emails, use of removable systems in non-secure settings, and the potential targeting of individuals at home.", "external_references": [ { @@ -2153,12 +2153,12 @@ } ], "id": "course-of-action--e88932bc-b19c-4287-b5fd-ff7ac4896596", - "modified": "2021-01-06T18:30:53.752Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Literacy Training and Awareness | Advanced Persistent Threat", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.752Z", + "created": "2021-01-13T01:52:41.536Z", "description": "(a) Provide literacy training on the cyber threat environment; and\n(b) Reflect current cyber threat information in system operations.\n\nSince threats continue to change over time, threat literacy training by the organization is dynamic. Moreover, threat literacy training is not performed in isolation from the system operations that support organizational mission and business functions.", "external_references": [ { @@ -2167,12 +2167,12 @@ } ], "id": "course-of-action--eeab0fb7-c96d-4067-b3aa-223f11a67e85", - "modified": "2021-01-06T18:30:53.752Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Literacy Training and Awareness | Cyber Threat Environment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.753Z", + "created": "2021-01-13T01:52:41.536Z", "description": "a. Provide role-based security and privacy training to personnel with the following roles and responsibilities: [Assignment: organization-defined roles and responsibilities]:\n1. Before authorizing access to the system, information, or performing assigned duties, and [Assignment: organization-defined frequency] thereafter; and\n2. When required by system changes;\nb. Update role-based training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\nc. Incorporate lessons learned from internal or external security or privacy incidents into role-based training.\n\nOrganizations determine the content of training based on the assigned roles and responsibilities of individuals as well as the security and privacy requirements of organizations and the systems to which personnel have authorized access, including technical training specifically tailored for assigned duties. Roles that may require role-based training include senior leaders or management officials (e.g., head of agency/chief executive officer, chief information officer, senior accountable official for risk management, senior agency information security officer, senior agency official for privacy), system owners; authorizing officials; system security officers; privacy officers; acquisition and procurement officials; enterprise architects; systems engineers; software developers; systems security engineers; privacy engineers; system, network, and database administrators; auditors; personnel conducting configuration management activities; personnel performing verification and validation activities; personnel with access to system-level software; control assessors; personnel with contingency planning and incident response duties; personnel with privacy management responsibilities; and personnel with access to personally identifiable information.\nComprehensive role-based training addresses management, operational, and technical roles and responsibilities covering physical, personnel, and technical controls. Role-based training also includes policies, procedures, tools, methods, and artifacts for the security and privacy roles defined. Organizations provide the training necessary for individuals to fulfill their responsibilities related to operations and supply chain risk management within the context of organizational security and privacy programs. Role-based training also applies to contractors who provide services to federal agencies. Types of training include web-based and computer-based training, classroom-style training, and hands-on training (including micro-training). Updating role-based training on a regular basis helps to ensure that the content remains relevant and effective. Events that may precipitate an update to role-based training content include, but are not limited to, assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -2181,12 +2181,12 @@ } ], "id": "course-of-action--b8b45282-fc10-40fc-8ef6-749c9cad94c4", - "modified": "2021-01-06T18:30:53.753Z", + "modified": "2021-01-13T01:52:41.536Z", "name": "Role-based Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.753Z", + "created": "2021-01-13T01:52:41.537Z", "description": "Provide [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of environmental controls.\n\nEnvironmental controls include fire suppression and detection devices or systems, sprinkler systems, handheld fire extinguishers, fixed fire hoses, smoke detectors, temperature or humidity, heating, ventilation, air conditioning, and power within the facility.", "external_references": [ { @@ -2195,12 +2195,12 @@ } ], "id": "course-of-action--aa9dbe9f-cf02-42db-9ec4-226acd024768", - "modified": "2021-01-06T18:30:53.753Z", + "modified": "2021-01-13T01:52:41.537Z", "name": "Role-based Training | Environmental Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.753Z", + "created": "2021-01-13T01:52:41.537Z", "description": "Provide [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of physical security controls.\n\nPhysical security controls include physical access control devices, physical intrusion and detection alarms, operating procedures for facility security guards, and monitoring or surveillance equipment.", "external_references": [ { @@ -2209,12 +2209,12 @@ } ], "id": "course-of-action--03250bfe-54cf-496b-9b0f-8bf379067151", - "modified": "2021-01-06T18:30:53.753Z", + "modified": "2021-01-13T01:52:41.537Z", "name": "Role-based Training | Physical Security Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.753Z", + "created": "2021-01-13T01:52:41.537Z", "description": "Provide practical exercises in security and privacy training that reinforce training objectives.\n\nPractical exercises for security include training for software developers that addresses simulated attacks that exploit common software vulnerabilities or spear or whale phishing attacks targeted at senior leaders or executives. Practical exercises for privacy include modules with quizzes on identifying and processing personally identifiable information in various scenarios or scenarios on conducting privacy impact assessments.", "external_references": [ { @@ -2223,12 +2223,12 @@ } ], "id": "course-of-action--ce989fde-b7e8-4676-a800-a6d460f89f07", - "modified": "2021-01-06T18:30:53.753Z", + "modified": "2021-01-13T01:52:41.537Z", "name": "Role-based Training | Practical Exercises", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.754Z", + "created": "2021-01-13T01:52:41.537Z", "description": "", "external_references": [ { @@ -2237,12 +2237,12 @@ } ], "id": "course-of-action--ed1adb5f-823b-45dc-85e3-67165a660014", - "modified": "2021-01-06T18:30:53.754Z", + "modified": "2021-01-13T01:52:41.537Z", "name": "Role-based Training | Suspicious Communications and Anomalous System Behavior", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.754Z", + "created": "2021-01-13T01:52:41.537Z", "description": "Provide [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of personally identifiable information processing and transparency controls.\n\nPersonally identifiable information processing and transparency controls include the organization's authority to process personally identifiable information and personally identifiable information processing purposes. Role-based training for federal agencies addresses the types of information that may constitute personally identifiable information and the risks, considerations, and obligations associated with its processing. Such training also considers the authority to process personally identifiable information documented in privacy policies and notices, system of records notices, computer matching agreements and notices, privacy impact assessments, [PRIVACT] statements, contracts, information sharing agreements, memoranda of understanding, and/or other documentation.", "external_references": [ { @@ -2251,12 +2251,12 @@ } ], "id": "course-of-action--f1808a48-3d5f-4b7c-9619-a09049119c2e", - "modified": "2021-01-06T18:30:53.754Z", + "modified": "2021-01-13T01:52:41.537Z", "name": "Role-based Training | Processing Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.754Z", + "created": "2021-01-13T01:52:41.538Z", "description": "a. Document and monitor information security and privacy training activities, including security and privacy awareness training and specific role-based security and privacy training; and\nb. Retain individual training records for [Assignment: organization-defined time period].\n\nDocumentation for specialized training may be maintained by individual supervisors at the discretion of the organization. The National Archives and Records Administration provides guidance on records retention for federal agencies.", "external_references": [ { @@ -2265,12 +2265,12 @@ } ], "id": "course-of-action--536f43b3-d8a9-4266-8959-75386947684f", - "modified": "2021-01-06T18:30:53.754Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Training Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.754Z", + "created": "2021-01-13T01:52:41.538Z", "description": "", "external_references": [ { @@ -2279,12 +2279,12 @@ } ], "id": "course-of-action--99a24f74-1c22-4f99-ba0c-8edd1827f688", - "modified": "2021-01-06T18:30:53.754Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Contacts with Security Groups and Associations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.754Z", + "created": "2021-01-13T01:52:41.538Z", "description": "Provide feedback on organizational training results to the following personnel [Assignment: organization-defined frequency]: [Assignment: organization-defined personnel].\n\nTraining feedback includes awareness training results and role-based training results. Training results, especially failures of personnel in critical roles, can be indicative of a potentially serious problem. Therefore, it is important that senior managers are made aware of such situations so that they can take appropriate response actions. Training feedback supports the assessment and update of organization training described in AT-2b and AT-3b.", "external_references": [ { @@ -2293,12 +2293,12 @@ } ], "id": "course-of-action--8a9442c2-bfc5-4ea3-9c42-27869993e67a", - "modified": "2021-01-06T18:30:53.754Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Training Feedback", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.755Z", + "created": "2021-01-13T01:52:41.538Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] audit and accountability policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the audit and accountability policy and the associated audit and accountability controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the audit and accountability policy and procedures; and\nc. Review and update the current audit and accountability:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nAudit and accountability policy and procedures address the controls in the AU family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of audit and accountability policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to audit and accountability policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -2307,12 +2307,12 @@ } ], "id": "course-of-action--cf6e609d-2529-4f3d-8b40-36debaf1cfb7", - "modified": "2021-01-06T18:30:53.755Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.755Z", + "created": "2021-01-13T01:52:41.538Z", "description": "a. Identify the types of events that the system is capable of logging in support of the audit function: [Assignment: organization-defined event types that the system is capable of logging];\nb. Coordinate the event logging function with other organizational entities requiring audit-related information to guide and inform the selection criteria for events to be logged;\nc. Specify the following event types for logging within the system: [Assignment: organization-defined event types (subset of the event types defined in AU-2a.) along with the frequency of (or situation requiring) logging for each identified event type];\nd. Provide a rationale for why the event types selected for logging are deemed to be adequate to support after-the-fact investigations of incidents; and\ne. Review and update the event types selected for logging [Assignment: organization-defined frequency].\n\nAn event is an observable occurrence in a system. The types of events that require logging are those events that are significant and relevant to the security of systems and the privacy of individuals. Event logging also supports specific monitoring and auditing needs. Event types include password changes, failed logons or failed accesses related to systems, security or privacy attribute changes, administrative privilege usage, PIV credential usage, data action changes, query parameters, or external credential usage. In determining the set of event types that require logging, organizations consider the monitoring and auditing appropriate for each of the controls to be implemented. For completeness, event logging includes all protocols that are operational and supported by the system.\nTo balance monitoring and auditing requirements with other system needs, event logging requires identifying the subset of event types that are logged at a given point in time. For example, organizations may determine that systems need the capability to log every file access successful and unsuccessful, but not activate that capability except for specific circumstances due to the potential burden on system performance. The types of events that organizations desire to be logged may change. Reviewing and updating the set of logged events is necessary to help ensure that the events remain relevant and continue to support the needs of the organization. Organizations consider how the types of logging events can reveal information about individuals that may give rise to privacy risk and how best to mitigate such risks. For example, there is the potential to reveal personally identifiable information in the audit trail, especially if the logging event is based on patterns or time of usage.\nEvent logging requirements, including the need to log specific event types, may be referenced in other controls and control enhancements. These include AC-2(4), AC-3(10), AC-6(9), AC-17(1), CM-3f, CM-5(1), IA-3(3.b), MA-4(1), MP-4(2), PE-3, PM-21, PT-7, RA-8, SC-7(9), SC-7(15), SI-3(8), SI-4(22), SI-7(8), and SI-10(1). Organizations include event types that are required by applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. Audit records can be generated at various levels, including at the packet level as information traverses the network. Selecting the appropriate level of event logging is an important part of a monitoring and auditing capability and can identify the root causes of problems. When defining event types, organizations consider the logging necessary to cover related event types, such as the steps in distributed, transaction-based processes and the actions that occur in service-oriented architectures.", "external_references": [ { @@ -2321,12 +2321,12 @@ } ], "id": "course-of-action--cb24d604-19de-407a-a77b-a80670c9d46f", - "modified": "2021-01-06T18:30:53.755Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Event Logging", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.755Z", + "created": "2021-01-13T01:52:41.538Z", "description": "", "external_references": [ { @@ -2335,12 +2335,12 @@ } ], "id": "course-of-action--3c42860b-9dd1-4f1f-8325-9a48df456aad", - "modified": "2021-01-06T18:30:53.755Z", + "modified": "2021-01-13T01:52:41.538Z", "name": "Event Logging | Compilation of Audit Records from Multiple Sources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.755Z", + "created": "2021-01-13T01:52:41.539Z", "description": "", "external_references": [ { @@ -2349,12 +2349,12 @@ } ], "id": "course-of-action--b6490921-eb38-4165-a506-b0d43f419c6e", - "modified": "2021-01-06T18:30:53.755Z", + "modified": "2021-01-13T01:52:41.539Z", "name": "Event Logging | Selection of Audit Events by Component", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.756Z", + "created": "2021-01-13T01:52:41.539Z", "description": "", "external_references": [ { @@ -2363,12 +2363,12 @@ } ], "id": "course-of-action--e5d54cc5-f0c7-4dd0-91bf-73efa929f471", - "modified": "2021-01-06T18:30:53.756Z", + "modified": "2021-01-13T01:52:41.539Z", "name": "Event Logging | Reviews and Updates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.756Z", + "created": "2021-01-13T01:52:41.539Z", "description": "", "external_references": [ { @@ -2377,12 +2377,12 @@ } ], "id": "course-of-action--9470400a-a156-419e-a20a-55c8d9001857", - "modified": "2021-01-06T18:30:53.756Z", + "modified": "2021-01-13T01:52:41.539Z", "name": "Event Logging | Privileged Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.757Z", + "created": "2021-01-13T01:52:41.539Z", "description": "Ensure that audit records contain information that establishes the following:\na. What type of event occurred;\nb. When the event occurred;\nc. Where the event occurred;\nd. Source of the event;\ne. Outcome of the event; and\nf. Identity of any individuals, subjects, or objects/entities associated with the event.\n\nAudit record content that may be necessary to support the auditing function includes event descriptions (item a), time stamps (item b), source and destination addresses (item c), user or process identifiers (items d and f), success or fail indications (item e), and filenames involved (items a, c, e, and f) . Event outcomes include indicators of event success or failure and event-specific results, such as the system security and privacy posture after the event occurred. Organizations consider how audit records can reveal information about individuals that may give rise to privacy risks and how best to mitigate such risks. For example, there is the potential to reveal personally identifiable information in the audit trail, especially if the trail records inputs or is based on patterns or time of usage.", "external_references": [ { @@ -2391,12 +2391,12 @@ } ], "id": "course-of-action--67d8658a-169f-4731-985d-49e432a7b1ec", - "modified": "2021-01-06T18:30:53.757Z", + "modified": "2021-01-13T01:52:41.539Z", "name": "Content of Audit Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.757Z", + "created": "2021-01-13T01:52:41.539Z", "description": "Generate audit records containing the following additional information: [Assignment: organization-defined additional information].\n\nThe ability to add information generated in audit records is dependent on system functionality to configure the audit record content. Organizations may consider additional information in audit records including, but not limited to, access control or flow control rules invoked and individual identities of group account users. Organizations may also consider limiting additional audit record information to only information that is explicitly needed for audit requirements. This facilitates the use of audit trails and audit logs by not including information in audit records that could potentially be misleading, make it more difficult to locate information of interest, or increase the risk to individuals' privacy.", "external_references": [ { @@ -2405,12 +2405,12 @@ } ], "id": "course-of-action--b4551d49-8f81-4a30-9358-d59ddac584c8", - "modified": "2021-01-06T18:30:53.757Z", + "modified": "2021-01-13T01:52:41.539Z", "name": "Content of Audit Records | Additional Audit Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.757Z", + "created": "2021-01-13T01:52:41.540Z", "description": "", "external_references": [ { @@ -2419,12 +2419,12 @@ } ], "id": "course-of-action--a108f720-38de-44c6-859c-77b1a1b7c205", - "modified": "2021-01-06T18:30:53.757Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Content of Audit Records | Centralized Management of Planned Audit Record Content", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.757Z", + "created": "2021-01-13T01:52:41.540Z", "description": "Limit personally identifiable information contained in audit records to the following elements identified in the privacy risk assessment: [Assignment: organization-defined elements].\n\nLimiting personally identifiable information in audit records when such information is not needed for operational purposes helps reduce the level of privacy risk created by a system.", "external_references": [ { @@ -2433,12 +2433,12 @@ } ], "id": "course-of-action--b752ac61-3593-43a0-b67c-2f8455168e93", - "modified": "2021-01-06T18:30:53.757Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Content of Audit Records | Limit Personally Identifiable Information Elements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.757Z", + "created": "2021-01-13T01:52:41.540Z", "description": "Allocate audit log storage capacity to accommodate [Assignment: organization-defined audit log retention requirements].\n\nOrganizations consider the types of audit logging to be performed and the audit log processing requirements when allocating audit log storage capacity. Allocating sufficient audit log storage capacity reduces the likelihood of such capacity being exceeded and resulting in the potential loss or reduction of audit logging capability.", "external_references": [ { @@ -2447,12 +2447,12 @@ } ], "id": "course-of-action--b6d70844-9f56-40d5-805c-6ed04854c487", - "modified": "2021-01-06T18:30:53.757Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Audit Log Storage Capacity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.540Z", "description": "Transfer audit logs [Assignment: organization-defined frequency] to a different system, system component, or media other than the system or system component conducting the logging.\n\nAudit log transfer, also known as off-loading, is a common process in systems with limited audit log storage capacity and thus supports availability of the audit logs. The initial audit log storage is only used in a transitory fashion until the system can communicate with the secondary or alternate system allocated to audit log storage, at which point the audit logs are transferred. Transferring audit logs to alternate storage is similar to AU-9(2) in that audit logs are transferred to a different entity. However, the purpose of selecting AU-9(2) is to protect the confidentiality and integrity of audit records. Organizations can select either control enhancement to obtain the benefit of increased audit log storage capacity and preserving the confidentiality, integrity, and availability of audit records and logs.", "external_references": [ { @@ -2461,12 +2461,12 @@ } ], "id": "course-of-action--7298b0e8-c451-4a13-a427-d9b0a286faed", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Audit Log Storage Capacity | Transfer to Alternate Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.540Z", "description": "a. Alert [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period] in the event of an audit logging process failure; and\nb. Take the following additional actions: [Assignment: organization-defined additional actions].\n\nAudit logging process failures include software and hardware errors, failures in audit log capturing mechanisms, and reaching or exceeding audit log storage capacity. Organization-defined actions include overwriting oldest audit records, shutting down the system, and stopping the generation of audit records. Organizations may choose to define additional actions for audit logging process failures based on the type of failure, the location of the failure, the severity of the failure, or a combination of such factors. When the audit logging process failure is related to storage, the response is carried out for the audit log storage repository (i.e., the distinct system component where the audit logs are stored), the system on which the audit logs reside, the total audit log storage capacity of the organization (i.e., all audit log storage repositories combined), or all three. Organizations may decide to take no additional actions after alerting designated roles or personnel.", "external_references": [ { @@ -2475,12 +2475,12 @@ } ], "id": "course-of-action--cbd54c41-9831-4484-8c0e-3365ecf47070", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Response to Audit Logging Process Failures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.540Z", "description": "Provide a warning to [Assignment: organization-defined personnel, roles, and/or locations] within [Assignment: organization-defined time period] when allocated audit log storage volume reaches [Assignment: organization-defined percentage] of repository maximum audit log storage capacity.\n\nOrganizations may have multiple audit log storage repositories distributed across multiple system components with each repository having different storage volume capacities.", "external_references": [ { @@ -2489,12 +2489,12 @@ } ], "id": "course-of-action--36c4a995-394f-46ed-9241-d1d10b7ad179", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.540Z", "name": "Response to Audit Logging Process Failures | Storage Capacity Warning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.541Z", "description": "Provide an alert within [Assignment: organization-defined real-time period] to [Assignment: organization-defined personnel, roles, and/or locations] when the following audit failure events occur: [Assignment: organization-defined audit logging failure events requiring real-time alerts].\n\nAlerts provide organizations with urgent messages. Real-time alerts provide these messages at information technology speed (i.e., the time from event detection to alert occurs in seconds or less).", "external_references": [ { @@ -2503,12 +2503,12 @@ } ], "id": "course-of-action--9021192c-b0a5-4450-9cf1-f6f2711b41a5", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.541Z", "name": "Response to Audit Logging Process Failures | Real-time Alerts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.541Z", "description": "Enforce configurable network communications traffic volume thresholds reflecting limits on audit log storage capacity and [Selection: reject; delay] network traffic above those thresholds.\n\nOrganizations have the capability to reject or delay the processing of network communications traffic if audit logging information about such traffic is determined to exceed the storage capacity of the system audit logging function. The rejection or delay response is triggered by the established organizational traffic volume thresholds that can be adjusted based on changes to audit log storage capacity.", "external_references": [ { @@ -2517,12 +2517,12 @@ } ], "id": "course-of-action--8e1a5f8f-c605-41b3-9cd6-1fd91bd2a35b", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.541Z", "name": "Response to Audit Logging Process Failures | Configurable Traffic Volume Thresholds", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.758Z", + "created": "2021-01-13T01:52:41.541Z", "description": "Invoke a [Selection: full system shutdown; partial system shutdown; degraded operational mode with limited mission or business functionality available] in the event of [Assignment: organization-defined audit logging failures], unless an alternate audit logging capability exists.\n\nOrganizations determine the types of audit logging failures that can trigger automatic system shutdowns or degraded operations. Because of the importance of ensuring mission and business continuity, organizations may determine that the nature of the audit logging failure is not so severe that it warrants a complete shutdown of the system supporting the core organizational mission and business functions. In those instances, partial system shutdowns or operating in a degraded mode with reduced capability may be viable alternatives.", "external_references": [ { @@ -2531,12 +2531,12 @@ } ], "id": "course-of-action--7f1bd398-f364-4f0b-a61c-78b18593c7be", - "modified": "2021-01-06T18:30:53.758Z", + "modified": "2021-01-13T01:52:41.541Z", "name": "Response to Audit Logging Process Failures | Shutdown on Failure", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.541Z", "description": "Provide an alternate audit logging capability in the event of a failure in primary audit logging capability that implements [Assignment: organization-defined alternate audit logging functionality].\n\nSince an alternate audit logging capability may be a short-term protection solution employed until the failure in the primary audit logging capability is corrected, organizations may determine that the alternate audit logging capability need only provide a subset of the primary audit logging functionality that is impacted by the failure.", "external_references": [ { @@ -2545,12 +2545,12 @@ } ], "id": "course-of-action--4b4a82cd-8587-46ee-b831-83e849832077", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.541Z", "name": "Response to Audit Logging Process Failures | Alternate Audit Logging Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.541Z", "description": "a. Review and analyze system audit records [Assignment: organization-defined frequency] for indications of [Assignment: organization-defined inappropriate or unusual activity] and the potential impact of the inappropriate or unusual activity;\nb. Report findings to [Assignment: organization-defined personnel or roles]; and\nc. Adjust the level of audit record review, analysis, and reporting within the system when there is a change in risk based on law enforcement information, intelligence information, or other credible sources of information.\n\nAudit record review, analysis, and reporting covers information security- and privacy-related logging performed by organizations, including logging that results from the monitoring of account usage, remote access, wireless connectivity, mobile device connection, configuration settings, system component inventory, use of maintenance tools and non-local maintenance, physical access, temperature and humidity, equipment delivery and removal, communications at system interfaces, and use of mobile code or Voice over Internet Protocol (VoIP). Findings can be reported to organizational entities that include the incident response team, help desk, and security or privacy offices. If organizations are prohibited from reviewing and analyzing audit records or unable to conduct such activities, the review or analysis may be carried out by other organizations granted such authority. The frequency, scope, and/or depth of the audit record review, analysis, and reporting may be adjusted to meet organizational needs based on new information received.", "external_references": [ { @@ -2559,12 +2559,12 @@ } ], "id": "course-of-action--80c72c2b-d193-47ca-bcf4-243f1c8cc86d", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.541Z", "name": "Audit Record Review, Analysis, and Reporting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.542Z", "description": "Integrate audit record review, analysis, and reporting processes using [Assignment: organization-defined automated mechanisms].\n\nOrganizational processes that benefit from integrated audit record review, analysis, and reporting include incident response, continuous monitoring, contingency planning, investigation and response to suspicious activities, and Inspector General audits.", "external_references": [ { @@ -2573,12 +2573,12 @@ } ], "id": "course-of-action--eac8b0f0-bfe6-4c14-8fa6-b180b4c33b3f", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.542Z", "name": "Audit Record Review, Analysis, and Reporting | Automated Process Integration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.542Z", "description": "", "external_references": [ { @@ -2587,12 +2587,12 @@ } ], "id": "course-of-action--ffe1ca2d-70cc-4eb6-9eca-a573688e8efb", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.542Z", "name": "Audit Record Review, Analysis, and Reporting | Automated Security Alerts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.542Z", "description": "Analyze and correlate audit records across different repositories to gain organization-wide situational awareness.\n\nOrganization-wide situational awareness includes awareness across all three levels of risk management (i.e., organizational level, mission/business process level, and information system level) and supports cross-organization awareness.", "external_references": [ { @@ -2601,12 +2601,12 @@ } ], "id": "course-of-action--16166bdb-cb22-4600-9297-fe13678631fa", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.542Z", "name": "Audit Record Review, Analysis, and Reporting | Correlate Audit Record Repositories", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.759Z", + "created": "2021-01-13T01:52:41.542Z", "description": "Provide and implement the capability to centrally review and analyze audit records from multiple components within the system.\n\nAutomated mechanisms for centralized reviews and analyses include Security Information and Event Management products.", "external_references": [ { @@ -2615,12 +2615,12 @@ } ], "id": "course-of-action--38ee1a73-6324-4afd-b8a8-55f23f490c83", - "modified": "2021-01-06T18:30:53.759Z", + "modified": "2021-01-13T01:52:41.542Z", "name": "Audit Record Review, Analysis, and Reporting | Central Review and Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.542Z", "description": "Integrate analysis of audit records with analysis of [Selection (one or more): vulnerability scanning information; performance data; system monitoring information; \n [Assignment: organization-defined data/information collected from other sources]\n ] to further enhance the ability to identify inappropriate or unusual activity.\n\nIntegrated analysis of audit records does not require vulnerability scanning, the generation of performance data, or system monitoring. Rather, integrated analysis requires that the analysis of information generated by scanning, monitoring, or other data collection activities is integrated with the analysis of audit record information. Security Information and Event Management tools can facilitate audit record aggregation or consolidation from multiple system components as well as audit record correlation and analysis. The use of standardized audit record analysis scripts developed by organizations (with localized script adjustments, as necessary) provides more cost-effective approaches for analyzing audit record information collected. The correlation of audit record information with vulnerability scanning information is important in determining the veracity of vulnerability scans of the system and in correlating attack detection events with scanning results. Correlation with performance data can uncover denial-of-service attacks or other types of attacks that result in the unauthorized use of resources. Correlation with system monitoring information can assist in uncovering attacks and in better relating audit information to operational situations.", "external_references": [ { @@ -2629,12 +2629,12 @@ } ], "id": "course-of-action--af9371a2-361a-4e4d-846d-ca0081bb9e9e", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.542Z", "name": "Audit Record Review, Analysis, and Reporting | Integrated Analysis of Audit Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.543Z", "description": "Correlate information from audit records with information obtained from monitoring physical access to further enhance the ability to identify suspicious, inappropriate, unusual, or malevolent activity.\n\nThe correlation of physical audit record information and the audit records from systems may assist organizations in identifying suspicious behavior or supporting evidence of such behavior. For example, the correlation of an individual's identity for logical access to certain systems with the additional physical security information that the individual was present at the facility when the logical access occurred may be useful in investigations.", "external_references": [ { @@ -2643,12 +2643,12 @@ } ], "id": "course-of-action--2ccfffb9-a303-4e62-96cb-cbf20bd04372", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.543Z", "name": "Audit Record Review, Analysis, and Reporting | Correlation with Physical Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.543Z", "description": "Specify the permitted actions for each [Selection (one or more): system process; role; user] associated with the review, analysis, and reporting of audit record information.\n\nOrganizations specify permitted actions for system processes, roles, and users associated with the review, analysis, and reporting of audit records through system account management activities. Specifying permitted actions on audit record information is a way to enforce the principle of least privilege. Permitted actions are enforced by the system and include read, write, execute, append, and delete.", "external_references": [ { @@ -2657,12 +2657,12 @@ } ], "id": "course-of-action--c58e29f9-4438-4a45-bc1d-5217d46938da", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.543Z", "name": "Audit Record Review, Analysis, and Reporting | Permitted Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.543Z", "description": "Perform a full text analysis of logged privileged commands in a physically distinct component or subsystem of the system, or other system that is dedicated to that analysis.\n\nFull text analysis of privileged commands requires a distinct environment for the analysis of audit record information related to privileged users without compromising such information on the system where the users have elevated privileges, including the capability to execute privileged commands. Full text analysis refers to analysis that considers the full text of privileged commands (i.e., commands and parameters) as opposed to analysis that considers only the name of the command. Full text analysis includes the use of pattern matching and heuristics.", "external_references": [ { @@ -2671,12 +2671,12 @@ } ], "id": "course-of-action--38bf82fa-9590-4424-8626-90b1a8b89051", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.543Z", "name": "Audit Record Review, Analysis, and Reporting | Full Text Analysis of Privileged Commands", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.543Z", "description": "Correlate information from nontechnical sources with audit record information to enhance organization-wide situational awareness.\n\nNontechnical sources include records that document organizational policy violations related to harassment incidents and the improper use of information assets. Such information can lead to a directed analytical effort to detect potential malicious insider activity. Organizations limit access to information that is available from nontechnical sources due to its sensitive nature. Limited access minimizes the potential for inadvertent release of privacy-related information to individuals who do not have a need to know. The correlation of information from nontechnical sources with audit record information generally occurs only when individuals are suspected of being involved in an incident. Organizations obtain legal advice prior to initiating such actions.", "external_references": [ { @@ -2685,12 +2685,12 @@ } ], "id": "course-of-action--60031d03-7c0e-4026-b746-bb7987d68b29", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.543Z", "name": "Audit Record Review, Analysis, and Reporting | Correlation with Information from Nontechnical Sources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.543Z", "description": "", "external_references": [ { @@ -2699,12 +2699,12 @@ } ], "id": "course-of-action--abb0b23c-aa09-46c2-ad4f-1c1523dbcc0f", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.543Z", "name": "Audit Record Review, Analysis, and Reporting | Audit Level Adjustment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.760Z", + "created": "2021-01-13T01:52:41.544Z", "description": "Provide and implement an audit record reduction and report generation capability that:\na. Supports on-demand audit record review, analysis, and reporting requirements and after-the-fact investigations of incidents; and\nb. Does not alter the original content or time ordering of audit records.\n\nAudit record reduction is a process that manipulates collected audit log information and organizes it into a summary format that is more meaningful to analysts. Audit record reduction and report generation capabilities do not always emanate from the same system or from the same organizational entities that conduct audit logging activities. The audit record reduction capability includes modern data mining techniques with advanced data filters to identify anomalous behavior in audit records. The report generation capability provided by the system can generate customizable reports. Time ordering of audit records can be an issue if the granularity of the timestamp in the record is insufficient.", "external_references": [ { @@ -2713,12 +2713,12 @@ } ], "id": "course-of-action--ec8c77ce-537e-45a1-a9c1-ec7fc265407d", - "modified": "2021-01-06T18:30:53.760Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Audit Record Reduction and Report Generation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.544Z", "description": "Provide and implement the capability to process, sort, and search audit records for events of interest based on the following content: [Assignment: organization-defined fields within audit records].\n\nEvents of interest can be identified by the content of audit records, including system resources involved, information objects accessed, identities of individuals, event types, event locations, event dates and times, Internet Protocol addresses involved, or event success or failure. Organizations may define event criteria to any degree of granularity required, such as locations selectable by a general networking location or by specific system component.", "external_references": [ { @@ -2727,12 +2727,12 @@ } ], "id": "course-of-action--8d2ec2bc-18af-47fe-90c6-24de0fe203da", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Audit Record Reduction and Report Generation | Automatic Processing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.544Z", "description": "", "external_references": [ { @@ -2741,12 +2741,12 @@ } ], "id": "course-of-action--09e9b646-8f1f-4cda-9bbb-2ebb43f32d9a", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Audit Record Reduction and Report Generation | Automatic Sort and Search", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.544Z", "description": "a. Use internal system clocks to generate time stamps for audit records; and\nb. Record time stamps for audit records that meet [Assignment: organization-defined granularity of time measurement] and that use Coordinated Universal Time, have a fixed local time offset from Coordinated Universal Time, or that include the local time offset as part of the time stamp.\n\nTime stamps generated by the system include date and time. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC. Granularity of time measurements refers to the degree of synchronization between system clocks and reference clocks (e.g., clocks synchronizing within hundreds of milliseconds or tens of milliseconds). Organizations may define different time granularities for different system components. Time service can be critical to other security capabilities such as access control and identification and authentication, depending on the nature of the mechanisms used to support those capabilities.", "external_references": [ { @@ -2755,12 +2755,12 @@ } ], "id": "course-of-action--ebf5f176-d5da-4b07-952a-faf136f77430", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Time Stamps", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.544Z", "description": "", "external_references": [ { @@ -2769,12 +2769,12 @@ } ], "id": "course-of-action--bc4cb947-c750-4f9a-8094-3ef559f90667", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Time Stamps | Synchronization with Authoritative Time Source", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.544Z", "description": "", "external_references": [ { @@ -2783,12 +2783,12 @@ } ], "id": "course-of-action--7589a4d7-dd27-4412-9095-0b0866484df4", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.544Z", "name": "Time Stamps | Secondary Authoritative Time Source", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.761Z", + "created": "2021-01-13T01:52:41.545Z", "description": "a. Protect audit information and audit logging tools from unauthorized access, modification, and deletion; and\nb. Alert [Assignment: organization-defined personnel or roles] upon detection of unauthorized access, modification, or deletion of audit information.\n\nAudit information includes all information needed to successfully audit system activity, such as audit records, audit log settings, audit reports, and personally identifiable information. Audit logging tools are those programs and devices used to conduct system audit and logging activities. Protection of audit information focuses on technical protection and limits the ability to access and execute audit logging tools to authorized individuals. Physical protection of audit information is addressed by both media protection controls and physical and environmental protection controls.", "external_references": [ { @@ -2797,12 +2797,12 @@ } ], "id": "course-of-action--844e785e-ff54-4bb2-87de-fb6e25ce40ff", - "modified": "2021-01-06T18:30:53.761Z", + "modified": "2021-01-13T01:52:41.545Z", "name": "Protection of Audit Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.545Z", "description": "Write audit trails to hardware-enforced, write-once media.\n\nWriting audit trails to hardware-enforced, write-once media applies to the initial generation of audit trails (i.e., the collection of audit records that represents the information to be used for detection, analysis, and reporting purposes) and to the backup of those audit trails. Writing audit trails to hardware-enforced, write-once media does not apply to the initial generation of audit records prior to being written to an audit trail. Write-once, read-many (WORM) media includes Compact Disc-Recordable (CD-R), Blu-Ray Disc Recordable (BD-R), and Digital Versatile Disc-Recordable (DVD-R). In contrast, the use of switchable write-protection media, such as tape cartridges, Universal Serial Bus (USB) drives, Compact Disc Re-Writeable (CD-RW), and Digital Versatile Disc-Read Write (DVD-RW) results in write-protected but not write-once media.", "external_references": [ { @@ -2811,12 +2811,12 @@ } ], "id": "course-of-action--b23594f3-7ec6-46bd-8028-a44a16e71faa", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.545Z", "name": "Protection of Audit Information | Hardware Write-once Media", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.545Z", "description": "Store audit records [Assignment: organization-defined frequency] in a repository that is part of a physically different system or system component than the system or component being audited.\n\nStoring audit records in a repository separate from the audited system or system component helps to ensure that a compromise of the system being audited does not also result in a compromise of the audit records. Storing audit records on separate physical systems or components also preserves the confidentiality and integrity of audit records and facilitates the management of audit records as an organization-wide activity. Storing audit records on separate systems or components applies to initial generation as well as backup or long-term storage of audit records.", "external_references": [ { @@ -2825,12 +2825,12 @@ } ], "id": "course-of-action--e84f182c-f893-41e2-b744-76b46a884561", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.545Z", "name": "Protection of Audit Information | Store on Separate Physical Systems or Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.545Z", "description": "Implement cryptographic mechanisms to protect the integrity of audit information and audit tools.\n\nCryptographic mechanisms used for protecting the integrity of audit information include signed hash functions using asymmetric cryptography. This enables the distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.", "external_references": [ { @@ -2839,12 +2839,12 @@ } ], "id": "course-of-action--ecbcdfe4-071d-4a16-a797-d984fbe579b9", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.545Z", "name": "Protection of Audit Information | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.545Z", "description": "Authorize access to management of audit logging functionality to only [Assignment: organization-defined subset of privileged users or roles].\n\nIndividuals or roles with privileged access to a system and who are also the subject of an audit by that system may affect the reliability of the audit information by inhibiting audit activities or modifying audit records. Requiring privileged access to be further defined between audit-related privileges and other privileges limits the number of users or roles with audit-related privileges.", "external_references": [ { @@ -2853,12 +2853,12 @@ } ], "id": "course-of-action--188fee9d-6f95-42c4-a0fd-6e0f01e30869", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.545Z", "name": "Protection of Audit Information | Access by Subset of Privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.546Z", "description": "Enforce dual authorization for [Selection (one or more): movement; deletion] of [Assignment: organization-defined audit information].\n\nOrganizations may choose different selection options for different types of audit information. Dual authorization mechanisms (also known as two-person control) require the approval of two authorized individuals to execute audit functions. To reduce the risk of collusion, organizations consider rotating dual authorization duties to other individuals. Organizations do not require dual authorization mechanisms when immediate responses are necessary to ensure public and environmental safety.", "external_references": [ { @@ -2867,12 +2867,12 @@ } ], "id": "course-of-action--a8a9c9c9-e266-4a8c-acb3-bc76d104db63", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Protection of Audit Information | Dual Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.762Z", + "created": "2021-01-13T01:52:41.546Z", "description": "Authorize read-only access to audit information to [Assignment: organization-defined subset of privileged users or roles].\n\nRestricting privileged user or role authorizations to read-only helps to limit the potential damage to organizations that could be initiated by such users or roles, such as deleting audit records to cover up malicious activity.", "external_references": [ { @@ -2881,12 +2881,12 @@ } ], "id": "course-of-action--7a4085dc-b877-41fa-8066-5005e8937fca", - "modified": "2021-01-06T18:30:53.762Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Protection of Audit Information | Read-only Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.546Z", "description": "Store audit information on a component running a different operating system than the system or component being audited.\n\nStoring auditing information on a system component running a different operating system reduces the risk of a vulnerability specific to the system, resulting in a compromise of the audit records.", "external_references": [ { @@ -2895,12 +2895,12 @@ } ], "id": "course-of-action--71acfe70-3f9c-488b-9382-9dcb0032ef8c", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Protection of Audit Information | Store on Component with Different Operating System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.546Z", "description": "Provide irrefutable evidence that an individual (or process acting on behalf of an individual) has performed [Assignment: organization-defined actions to be covered by non-repudiation].\n\nTypes of individual actions covered by non-repudiation include creating information, sending and receiving messages, and approving information. Non-repudiation protects against claims by authors of not having authored certain documents, senders of not having transmitted messages, receivers of not having received messages, and signatories of not having signed documents. Non-repudiation services can be used to determine if information originated from an individual or if an individual took specific actions (e.g., sending an email, signing a contract, approving a procurement request, or receiving specific information). Organizations obtain non-repudiation services by employing various techniques or mechanisms, including digital signatures and digital message receipts.", "external_references": [ { @@ -2909,12 +2909,12 @@ } ], "id": "course-of-action--04826fa6-b800-4070-80a1-0ce752804c1c", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Non-repudiation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.546Z", "description": "(a) Bind the identity of the information producer with the information to [Assignment: organization-defined strength of binding]; and\n(b) Provide the means for authorized individuals to determine the identity of the producer of the information.\n\nBinding identities to the information supports audit requirements that provide organizational personnel with the means to identify who produced specific information in the event of an information transfer. Organizations determine and approve the strength of attribute binding between the information producer and the information based on the security category of the information and other relevant risk factors.", "external_references": [ { @@ -2923,12 +2923,12 @@ } ], "id": "course-of-action--07ca9a26-4d77-4a80-afc1-3f35ba187793", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Non-repudiation | Association of Identities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.546Z", "description": "(a) Validate the binding of the information producer identity to the information at [Assignment: organization-defined frequency]; and\n(b) Perform [Assignment: organization-defined actions] in the event of a validation error.\n\nValidating the binding of the information producer identity to the information prevents the modification of information between production and review. The validation of bindings can be achieved by, for example, using cryptographic checksums. Organizations determine if validations are in response to user requests or generated automatically.", "external_references": [ { @@ -2937,12 +2937,12 @@ } ], "id": "course-of-action--f567fbf6-2c45-4490-971c-c7b0aad50718", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.546Z", "name": "Non-repudiation | Validate Binding of Information Producer Identity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.547Z", "description": "Maintain reviewer or releaser credentials within the established chain of custody for information reviewed or released.\n\nChain of custody is a process that tracks the movement of evidence through its collection, safeguarding, and analysis life cycle by documenting each individual who handled the evidence, the date and time the evidence was collected or transferred, and the purpose for the transfer. If the reviewer is a human or if the review function is automated but separate from the release or transfer function, the system associates the identity of the reviewer of the information to be released with the information and the information label. In the case of human reviews, maintaining the credentials of reviewers or releasers provides the organization with the means to identify who reviewed and released the information. In the case of automated reviews, it ensures that only approved review functions are used.", "external_references": [ { @@ -2951,12 +2951,12 @@ } ], "id": "course-of-action--f5a2b715-1439-47b6-9f20-221d507fdba3", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Non-repudiation | Chain of Custody", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.763Z", + "created": "2021-01-13T01:52:41.547Z", "description": "(a) Validate the binding of the information reviewer identity to the information at the transfer or release points prior to release or transfer between [Assignment: organization-defined security domains]; and\n(b) Perform [Assignment: organization-defined actions] in the event of a validation error.\n\nValidating the binding of the information reviewer identity to the information at transfer or release points prevents the unauthorized modification of information between review and the transfer or release. The validation of bindings can be achieved by using cryptographic checksums. Organizations determine if validations are in response to user requests or generated automatically.", "external_references": [ { @@ -2965,12 +2965,12 @@ } ], "id": "course-of-action--5803a8a8-6071-4fc9-827a-715dec1df49b", - "modified": "2021-01-06T18:30:53.763Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Non-repudiation | Validate Binding of Information Reviewer Identity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.547Z", "description": "", "external_references": [ { @@ -2979,12 +2979,12 @@ } ], "id": "course-of-action--5d0b9ba0-6e3a-442e-ae83-c8b1f13187b2", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Non-repudiation | Digital Signatures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.547Z", "description": "Retain audit records for [Assignment: organization-defined time period consistent with records retention policy] to provide support for after-the-fact investigations of incidents and to meet regulatory and organizational information retention requirements.\n\nOrganizations retain audit records until it is determined that the records are no longer needed for administrative, legal, audit, or other operational purposes. This includes the retention and availability of audit records relative to Freedom of Information Act (FOIA) requests, subpoenas, and law enforcement actions. Organizations develop standard categories of audit records relative to such types of actions and standard response processes for each type of action. The National Archives and Records Administration (NARA) General Records Schedules provide federal policy on records retention.", "external_references": [ { @@ -2993,12 +2993,12 @@ } ], "id": "course-of-action--f7788c9a-7173-4495-a201-86d3edf78906", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Audit Record Retention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.547Z", "description": "Employ [Assignment: organization-defined measures] to ensure that long-term audit records generated by the system can be retrieved.\n\nOrganizations need to access and read audit records requiring long-term storage (on the order of years). Measures employed to help facilitate the retrieval of audit records include converting records to newer formats, retaining equipment capable of reading the records, and retaining the necessary documentation to help personnel understand how to interpret the records.", "external_references": [ { @@ -3007,12 +3007,12 @@ } ], "id": "course-of-action--0d6922ef-a822-45c1-b3ab-fcb9cb6a8653", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Audit Record Retention | Long-term Retrieval Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.547Z", "description": "a. Provide audit record generation capability for the event types the system is capable of auditing as defined in AU-2a on [Assignment: organization-defined system components];\nb. Allow [Assignment: organization-defined personnel or roles] to select the event types that are to be logged by specific components of the system; and\nc. Generate audit records for the event types defined in AU-2c that include the audit record content defined in AU-3.\n\nAudit records can be generated from many different system components. The event types specified in AU-2d are the event types for which audit logs are to be generated and are a subset of all event types for which the system can generate audit records.", "external_references": [ { @@ -3021,12 +3021,12 @@ } ], "id": "course-of-action--213ffd3d-0151-4bf5-8549-3fb1e805222c", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.547Z", "name": "Audit Record Generation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.548Z", "description": "Compile audit records from [Assignment: organization-defined system components] into a system-wide (logical or physical) audit trail that is time-correlated to within [Assignment: organization-defined level of tolerance for the relationship between time stamps of individual records in the audit trail].\n\nAudit trails are time-correlated if the time stamps in the individual audit records can be reliably related to the time stamps in other audit records to achieve a time ordering of the records within organizational tolerances.", "external_references": [ { @@ -3035,12 +3035,12 @@ } ], "id": "course-of-action--1caf986e-1265-435d-9270-c77d4d393bff", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.548Z", "name": "Audit Record Generation | System-wide and Time-correlated Audit Trail", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.764Z", + "created": "2021-01-13T01:52:41.548Z", "description": "Produce a system-wide (logical or physical) audit trail composed of audit records in a standardized format.\n\nAudit records that follow common standards promote interoperability and information exchange between devices and systems. Promoting interoperability and information exchange facilitates the production of event information that can be readily analyzed and correlated. If logging mechanisms do not conform to standardized formats, systems may convert individual audit records into standardized formats when compiling system-wide audit trails.", "external_references": [ { @@ -3049,12 +3049,12 @@ } ], "id": "course-of-action--105dc37b-7f8e-4619-8945-3d539a7180bf", - "modified": "2021-01-06T18:30:53.764Z", + "modified": "2021-01-13T01:52:41.548Z", "name": "Audit Record Generation | Standardized Formats", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.548Z", "description": "Provide and implement the capability for [Assignment: organization-defined individuals or roles] to change the logging to be performed on [Assignment: organization-defined system components] based on [Assignment: organization-defined selectable event criteria] within [Assignment: organization-defined time thresholds].\n\nPermitting authorized individuals to make changes to system logging enables organizations to extend or limit logging as necessary to meet organizational requirements. Logging that is limited to conserve system resources may be extended (either temporarily or permanently) to address certain threat situations. In addition, logging may be limited to a specific set of event types to facilitate audit reduction, analysis, and reporting. Organizations can establish time thresholds in which logging actions are changed (e.g., near real-time, within minutes, or within hours).", "external_references": [ { @@ -3063,12 +3063,12 @@ } ], "id": "course-of-action--e459f589-c223-462e-b334-e9d8709ff4b5", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.548Z", "name": "Audit Record Generation | Changes by Authorized Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.548Z", "description": "Provide and implement the capability for auditing the parameters of user query events for data sets containing personally identifiable information.\n\nQuery parameters are explicit criteria that an individual or automated system submits to a system to retrieve data. Auditing of query parameters for datasets that contain personally identifiable information augments the capability of an organization to track and understand the access, usage, or sharing of personally identifiable information by authorized personnel.", "external_references": [ { @@ -3077,12 +3077,12 @@ } ], "id": "course-of-action--d8616ff6-773a-435c-87f8-1c1e2914efc3", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.548Z", "name": "Audit Record Generation | Query Parameter Audits of Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.548Z", "description": "a. Monitor [Assignment: organization-defined open-source information and/or information sites]\n [Assignment: organization-defined frequency] for evidence of unauthorized disclosure of organizational information; and\nb. If an information disclosure is discovered:\n1. Notify [Assignment: organization-defined personnel or roles]; and\n2. Take the following additional actions: [Assignment: organization-defined additional actions].\n\nUnauthorized disclosure of information is a form of data leakage. Open-source information includes social networking sites and code-sharing platforms and repositories. Examples of organizational information include personally identifiable information retained by the organization or proprietary information generated by the organization.", "external_references": [ { @@ -3091,12 +3091,12 @@ } ], "id": "course-of-action--698528c2-c4e8-415f-82a4-dfa916998134", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.548Z", "name": "Monitoring for Information Disclosure", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.549Z", "description": "Monitor open-source information and information sites using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms include commercial services that provide notifications and alerts to organizations and automated scripts to monitor new posts on websites.", "external_references": [ { @@ -3105,12 +3105,12 @@ } ], "id": "course-of-action--0fe18799-0f46-4028-8108-be4a3f7f0725", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.549Z", "name": "Monitoring for Information Disclosure | Use of Automated Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.549Z", "description": "Review the list of open-source information sites being monitored [Assignment: organization-defined frequency].\n\nReviewing the current list of open-source information sites being monitored on a regular basis helps to ensure that the selected sites remain relevant. The review also provides the opportunity to add new open-source information sites with the potential to provide evidence of unauthorized disclosure of organizational information. The list of sites monitored can be guided and informed by threat intelligence of other credible sources of information.", "external_references": [ { @@ -3119,12 +3119,12 @@ } ], "id": "course-of-action--92b384b9-b896-449c-96e9-fd48e01c8944", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.549Z", "name": "Monitoring for Information Disclosure | Review of Monitored Sites", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.765Z", + "created": "2021-01-13T01:52:41.549Z", "description": "Employ discovery techniques, processes, and tools to determine if external entities are replicating organizational information in an unauthorized manner.\n\nThe unauthorized use or replication of organizational information by external entities can cause adverse impacts on organizational operations and assets, including damage to reputation. Such activity can include the replication of an organizational website by an adversary or hostile threat actor who attempts to impersonate the web-hosting organization. Discovery tools, techniques, and processes used to determine if external entities are replicating organizational information in an unauthorized manner include scanning external websites, monitoring social media, and training staff to recognize the unauthorized use of organizational information.", "external_references": [ { @@ -3133,12 +3133,12 @@ } ], "id": "course-of-action--c3776beb-3c7d-467f-9f6e-3c7961fb5bc7", - "modified": "2021-01-06T18:30:53.765Z", + "modified": "2021-01-13T01:52:41.549Z", "name": "Monitoring for Information Disclosure | Unauthorized Replication of Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.766Z", + "created": "2021-01-13T01:52:41.549Z", "description": "a. Provide and implement the capability for [Assignment: organization-defined users or roles] to [Selection (one or more): record; view; hear; log] the content of a user session under [Assignment: organization-defined circumstances]; and\nb. Develop, integrate, and use session auditing activities in consultation with legal counsel and in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.\n\nSession audits can include monitoring keystrokes, tracking websites visited, and recording information and/or file transfers. Session audit capability is implemented in addition to event logging and may involve implementation of specialized session capture technology. Organizations consider how session auditing can reveal information about individuals that may give rise to privacy risk as well as how to mitigate those risks. Because session auditing can impact system and network performance, organizations activate the capability under well-defined situations (e.g., the organization is suspicious of a specific individual). Organizations consult with legal counsel, civil liberties officials, and privacy officials to ensure that any legal, privacy, civil rights, or civil liberties issues, including the use of personally identifiable information, are appropriately addressed.", "external_references": [ { @@ -3147,12 +3147,12 @@ } ], "id": "course-of-action--10f4bf18-3e85-42a7-bd71-a58f7966d6f3", - "modified": "2021-01-06T18:30:53.766Z", + "modified": "2021-01-13T01:52:41.549Z", "name": "Session Audit", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.766Z", + "created": "2021-01-13T01:52:41.549Z", "description": "Initiate session audits automatically at system start-up.\n\nThe automatic initiation of session audits at startup helps to ensure that the information being captured on selected individuals is complete and not subject to compromise through tampering by malicious threat actors.", "external_references": [ { @@ -3161,12 +3161,12 @@ } ], "id": "course-of-action--b17831f1-c140-439b-a434-2dcbb6add715", - "modified": "2021-01-06T18:30:53.766Z", + "modified": "2021-01-13T01:52:41.549Z", "name": "Session Audit | System Start-up", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.766Z", + "created": "2021-01-13T01:52:41.550Z", "description": "", "external_references": [ { @@ -3175,12 +3175,12 @@ } ], "id": "course-of-action--32f29d82-b75b-475c-9d9c-b3bcf8b9b29a", - "modified": "2021-01-06T18:30:53.766Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Session Audit | Capture and Record Content", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.767Z", + "created": "2021-01-13T01:52:41.550Z", "description": "Provide and implement the capability for authorized users to remotely view and hear content related to an established user session in real time.\n\nNone.", "external_references": [ { @@ -3189,12 +3189,12 @@ } ], "id": "course-of-action--6ba13bb3-67c4-4864-9c49-c65d6dc2b841", - "modified": "2021-01-06T18:30:53.767Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Session Audit | Remote Viewing and Listening", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.767Z", + "created": "2021-01-13T01:52:41.550Z", "description": "", "external_references": [ { @@ -3203,12 +3203,12 @@ } ], "id": "course-of-action--30976018-f6a9-42f5-a8a1-9bf19a94d00c", - "modified": "2021-01-06T18:30:53.767Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Alternate Audit Logging Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.767Z", + "created": "2021-01-13T01:52:41.550Z", "description": "Employ [Assignment: organization-defined methods] for coordinating [Assignment: organization-defined audit information] among external organizations when audit information is transmitted across organizational boundaries.\n\nWhen organizations use systems or services of external organizations, the audit logging capability necessitates a coordinated, cross-organization approach. For example, maintaining the identity of individuals who request specific services across organizational boundaries may often be difficult, and doing so may prove to have significant performance and privacy ramifications. Therefore, it is often the case that cross-organizational audit logging simply captures the identity of individuals who issue requests at the initial system, and subsequent systems record that the requests originated from authorized individuals. Organizations consider including processes for coordinating audit information requirements and protection of audit information in information exchange agreements.", "external_references": [ { @@ -3217,12 +3217,12 @@ } ], "id": "course-of-action--7a1f1b8a-63c9-4fa8-b57a-5d8dcdc00731", - "modified": "2021-01-06T18:30:53.767Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Cross-organizational Audit Logging", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.767Z", + "created": "2021-01-13T01:52:41.550Z", "description": "Preserve the identity of individuals in cross-organizational audit trails.\n\nIdentity preservation is applied when there is a need to be able to trace actions that are performed across organizational boundaries to a specific individual.", "external_references": [ { @@ -3231,12 +3231,12 @@ } ], "id": "course-of-action--d4b47c97-eac1-4fe2-a410-b8b4cb3985a9", - "modified": "2021-01-06T18:30:53.767Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Cross-organizational Audit Logging | Identity Preservation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.550Z", "description": "Provide cross-organizational audit information to [Assignment: organization-defined organizations] based on [Assignment: organization-defined cross-organizational sharing agreements].\n\nDue to the distributed nature of the audit information, cross-organization sharing of audit information may be essential for effective analysis of the auditing being performed. For example, the audit records of one organization may not provide sufficient information to determine the appropriate or inappropriate use of organizational information resources by individuals in other organizations. In some instances, only individuals' home organizations have the appropriate knowledge to make such determinations, thus requiring the sharing of audit information among organizations.", "external_references": [ { @@ -3245,12 +3245,12 @@ } ], "id": "course-of-action--0cd0714a-9d16-45ed-acf9-0f96e33001f2", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.550Z", "name": "Cross-organizational Audit Logging | Sharing of Audit Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.551Z", "description": "Implement [Assignment: organization-defined measures] to disassociate individuals from audit information transmitted across organizational boundaries.\n\nPreserving identities in audit trails could have privacy ramifications, such as enabling the tracking and profiling of individuals, but may not be operationally necessary. These risks could be further amplified when transmitting information across organizational boundaries. Implementing privacy-enhancing cryptographic techniques can disassociate individuals from audit information and reduce privacy risk while maintaining accountability.", "external_references": [ { @@ -3259,12 +3259,12 @@ } ], "id": "course-of-action--991385ec-5d45-41e8-acfb-6f8a0f44e3a8", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Cross-organizational Audit Logging | Disassociability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.551Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] assessment, authorization, and monitoring policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the assessment, authorization, and monitoring policy and the associated assessment, authorization, and monitoring controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the assessment, authorization, and monitoring policy and procedures; and\nc. Review and update the current assessment, authorization, and monitoring:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nAssessment, authorization, and monitoring policy and procedures address the controls in the CA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of assessment, authorization, and monitoring policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to assessment, authorization, and monitoring policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -3273,12 +3273,12 @@ } ], "id": "course-of-action--f878f39a-5483-4b78-bfdb-4486c9eae495", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.551Z", "description": "a. Select the appropriate assessor or assessment team for the type of assessment to be conducted;\nb. Develop a control assessment plan that describes the scope of the assessment including:\n1. Controls and control enhancements under assessment;\n2. Assessment procedures to be used to determine control effectiveness; and\n3. Assessment environment, assessment team, and assessment roles and responsibilities;\nc. Ensure the control assessment plan is reviewed and approved by the authorizing official or designated representative prior to conducting the assessment;\nd. Assess the controls in the system and its environment of operation [Assignment: organization-defined frequency] to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security and privacy requirements;\ne. Produce a control assessment report that document the results of the assessment; and\nf. Provide the results of the control assessment to [Assignment: organization-defined individuals or roles].\n\nOrganizations ensure that control assessors possess the required skills and technical expertise to develop effective assessment plans and to conduct assessments of system-specific, hybrid, common, and program management controls, as appropriate. The required skills include general knowledge of risk management concepts and approaches as well as comprehensive knowledge of and experience with the hardware, software, and firmware system components implemented.\nOrganizations assess controls in systems and the environments in which those systems operate as part of initial and ongoing authorizations, continuous monitoring, FISMA annual assessments, system design and development, systems security engineering, privacy engineering, and the system development life cycle. Assessments help to ensure that organizations meet information security and privacy requirements, identify weaknesses and deficiencies in the system design and development process, provide essential information needed to make risk-based decisions as part of authorization processes, and comply with vulnerability mitigation procedures. Organizations conduct assessments on the implemented controls as documented in security and privacy plans. Assessments can also be conducted throughout the system development life cycle as part of systems engineering and systems security engineering processes. The design for controls can be assessed as RFPs are developed, responses assessed, and design reviews conducted. If a design to implement controls and subsequent implementation in accordance with the design are assessed during development, the final control testing can be a simple confirmation utilizing previously completed control assessment and aggregating the outcomes.\nOrganizations may develop a single, consolidated security and privacy assessment plan for the system or maintain separate plans. A consolidated assessment plan clearly delineates the roles and responsibilities for control assessment. If multiple organizations participate in assessing a system, a coordinated approach can reduce redundancies and associated costs.\nOrganizations can use other types of assessment activities, such as vulnerability scanning and system monitoring, to maintain the security and privacy posture of systems during the system life cycle. Assessment reports document assessment results in sufficient detail, as deemed necessary by organizations, to determine the accuracy and completeness of the reports and whether the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting requirements. Assessment results are provided to the individuals or roles appropriate for the types of assessments being conducted. For example, assessments conducted in support of authorization decisions are provided to authorizing officials, senior agency officials for privacy, senior agency information security officers, and authorizing official designated representatives.\nTo satisfy annual assessment requirements, organizations can use assessment results from the following sources: initial or ongoing system authorizations, continuous monitoring, systems engineering processes, or system development life cycle activities. Organizations ensure that assessment results are current, relevant to the determination of control effectiveness, and obtained with the appropriate level of assessor independence. Existing control assessment results can be reused to the extent that the results are still valid and can also be supplemented with additional assessments as needed. After the initial authorizations, organizations assess controls during continuous monitoring. Organizations also establish the frequency for ongoing assessments in accordance with organizational continuous monitoring strategies. External audits, including audits by external entities such as regulatory agencies, are outside of the scope of CA-2.", "external_references": [ { @@ -3287,12 +3287,12 @@ } ], "id": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Control Assessments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.551Z", "description": "Employ independent assessors or assessment teams to conduct control assessments.\n\nIndependent assessors or assessment teams are individuals or groups who conduct impartial assessments of systems. Impartiality means that assessors are free from any perceived or actual conflicts of interest regarding the development, operation, sustainment, or management of the systems under assessment or the determination of control effectiveness. To achieve impartiality, assessors do not create a mutual or conflicting interest with the organizations where the assessments are being conducted, assess their own work, act as management or employees of the organizations they are serving, or place themselves in positions of advocacy for the organizations acquiring their services.\nIndependent assessments can be obtained from elements within organizations or be contracted to public or private sector entities outside of organizations. Authorizing officials determine the required level of independence based on the security categories of systems and/or the risk to organizational operations, organizational assets, or individuals. Authorizing officials also determine if the level of assessor independence provides sufficient assurance that the results are sound and can be used to make credible, risk-based decisions. Assessor independence determination includes whether contracted assessment services have sufficient independence, such as when system owners are not directly involved in contracting processes or cannot influence the impartiality of the assessors conducting the assessments. During the system design and development phase, having independent assessors is analogous to having independent SMEs involved in design reviews.\nWhen organizations that own the systems are small or the structures of the organizations require that assessments be conducted by individuals that are in the developmental, operational, or management chain of the system owners, independence in assessment processes can be achieved by ensuring that assessment results are carefully reviewed and analyzed by independent teams of experts to validate the completeness, accuracy, integrity, and reliability of the results. Assessments performed for purposes other than to support authorization decisions are more likely to be useable for such decisions when performed by assessors with sufficient independence, thereby reducing the need to repeat assessments.", "external_references": [ { @@ -3301,12 +3301,12 @@ } ], "id": "course-of-action--d4600347-95d8-48bb-b80b-03a251907e51", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Control Assessments | Independent Assessors", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.551Z", "description": "Include as part of control assessments, [Assignment: organization-defined frequency], [Selection: announced; unannounced], [Selection (one or more): in-depth monitoring; security instrumentation; automated security test cases; vulnerability scanning; malicious user testing; insider threat assessment; performance and load testing; data leakage or data loss assessment [Assignment: organization-defined other forms of assessment]\n ].\n\nOrganizations can conduct specialized assessments, including verification and validation, system monitoring, insider threat assessments, malicious user testing, and other forms of testing. These assessments can improve readiness by exercising organizational capabilities and indicating current levels of performance as a means of focusing actions to improve security and privacy. Organizations conduct specialized assessments in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Authorizing officials approve the assessment methods in coordination with the organizational risk executive function. Organizations can include vulnerabilities uncovered during assessments into vulnerability remediation processes. Specialized assessments can also be conducted early in the system development life cycle (e.g., during initial design, development, and unit testing).", "external_references": [ { @@ -3315,12 +3315,12 @@ } ], "id": "course-of-action--48cfd2c2-7b44-4ad8-944d-62449d22b478", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Control Assessments | Specialized Assessments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.552Z", "description": "Leverage the results of control assessments performed by [Assignment: organization-defined external organization] on [Assignment: organization-defined system] when the assessment meets [Assignment: organization-defined requirements].\n\nOrganizations may rely on control assessments of organizational systems by other (external) organizations. Using such assessments and reusing existing assessment evidence can decrease the time and resources required for assessments by limiting the independent assessment activities that organizations need to perform. The factors that organizations consider in determining whether to accept assessment results from external organizations can vary. Such factors include the organization's past experience with the organization that conducted the assessment, the reputation of the assessment organization, the level of detail of supporting assessment evidence provided, and mandates imposed by applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Accredited testing laboratories that support the Common Criteria Program [ISO 15408-1], the NIST Cryptographic Module Validation Program (CMVP), or the NIST Cryptographic Algorithm Validation Program (CAVP) can provide independent assessment results that organizations can leverage.", "external_references": [ { @@ -3329,12 +3329,12 @@ } ], "id": "course-of-action--71da68d2-8dd4-4508-91f3-daffb576b40b", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.552Z", "name": "Control Assessments | Leveraging Results from External Organizations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.552Z", "description": "a. Approve and manage the exchange of information between the system and other systems using [Selection (one or more): interconnection security agreements; information exchange security agreements; memoranda of understanding or agreement; service level agreements; user agreements; nondisclosure agreements; \n [Assignment: organization-defined type of agreement]\n ];\nb. Document, as part of each exchange agreement, the interface characteristics, security and privacy requirements, controls, and responsibilities for each system, and the impact level of the information communicated; and\nc. Review and update the agreements [Assignment: organization-defined frequency].\n\nSystem information exchange requirements apply to information exchanges between two or more systems. System information exchanges include connections via leased lines or virtual private networks, connections to internet service providers, database sharing or exchanges of database transaction information, connections and exchanges with cloud services, exchanges via web-based services, or exchanges of files via file transfer protocols, network protocols (e.g., IPv4, IPv6), email, or other organization-to-organization communications. Organizations consider the risk related to new or increased threats that may be introduced when systems exchange information with other systems that may have different security and privacy requirements and controls. This includes systems within the same organization and systems that are external to the organization. A joint authorization of the systems exchanging information, as described in CA-6(1) or CA-6(2), may help to communicate and reduce risk.\nAuthorizing officials determine the risk associated with system information exchange and the controls needed for appropriate risk mitigation. The types of agreements selected are based on factors such as the impact level of the information being exchanged, the relationship between the organizations exchanging information (e.g., government to government, government to business, business to business, government or business to service provider, government or business to individual), or the level of access to the organizational system by users of the other system. If systems that exchange information have the same authorizing official, organizations need not develop agreements. Instead, the interface characteristics between the systems (e.g., how the information is being exchanged. how the information is protected) are described in the respective security and privacy plans. If the systems that exchange information have different authorizing officials within the same organization, the organizations can develop agreements or provide the same information that would be provided in the appropriate agreement type from CA-3a in the respective security and privacy plans for the systems. Organizations may incorporate agreement information into formal contracts, especially for information exchanges established between federal agencies and nonfederal organizations (including service providers, contractors, system developers, and system integrators). Risk considerations include systems that share the same networks.", "external_references": [ { @@ -3343,12 +3343,12 @@ } ], "id": "course-of-action--cc22437b-d492-4041-9fea-4eb9c6cc21c1", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.552Z", "name": "Information Exchange", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.552Z", "description": "", "external_references": [ { @@ -3357,12 +3357,12 @@ } ], "id": "course-of-action--7bdae9e7-23fa-4996-ab17-4216dd194a01", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.552Z", "name": "Information Exchange | Unclassified National Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.552Z", "description": "", "external_references": [ { @@ -3371,12 +3371,12 @@ } ], "id": "course-of-action--18b2f8fe-d843-4191-965a-3641b7a2130f", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.552Z", "name": "Information Exchange | Classified National Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.553Z", "description": "", "external_references": [ { @@ -3385,12 +3385,12 @@ } ], "id": "course-of-action--b7d5cb7f-6b20-4553-801e-c25c0e5ab7e8", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Information Exchange | Unclassified Non-national Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.769Z", + "created": "2021-01-13T01:52:41.553Z", "description": "", "external_references": [ { @@ -3399,12 +3399,12 @@ } ], "id": "course-of-action--9d1850a0-b81b-4731-befa-927fb2dd0161", - "modified": "2021-01-06T18:30:53.769Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Information Exchange | Connections to Public Networks", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.553Z", "description": "", "external_references": [ { @@ -3413,12 +3413,12 @@ } ], "id": "course-of-action--be3d08b1-2390-4021-8481-408c578bbf95", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Information Exchange | Restrictions on External System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.553Z", "description": "Verify that individuals or systems transferring data between interconnecting systems have the requisite authorizations (i.e., write permissions or privileges) prior to accepting such data.\n\nTo prevent unauthorized individuals and systems from making information transfers to protected systems, the protected system verifies'via independent means' whether the individual or system attempting to transfer information is authorized to do so. Verification of the authorization to transfer information also applies to control plane traffic (e.g., routing and DNS) and services (e.g., authenticated SMTP relays).", "external_references": [ { @@ -3427,12 +3427,12 @@ } ], "id": "course-of-action--74ef0839-9484-4c22-80bf-ec1a80a29472", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Information Exchange | Transfer Authorizations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.553Z", "description": "(a) Identify transitive (downstream) information exchanges with other systems through the systems identified in CA-3a; and\n(b) Take measures to ensure that transitive (downstream) information exchanges cease when the controls on identified transitive (downstream) systems cannot be verified or validated.\n\nTransitive or 'downstream' information exchanges are information exchanges between the system or systems with which the organizational system exchanges information and other systems. For mission-essential systems, services, and applications, including high value assets, it is necessary to identify such information exchanges. The transparency of the controls or protection measures in place in such downstream systems connected directly or indirectly to organizational systems is essential to understanding the security and privacy risks resulting from those information exchanges. Organizational systems can inherit risk from downstream systems through transitive connections and information exchanges, which can make the organizational systems more susceptible to threats, hazards, and adverse impacts.", "external_references": [ { @@ -3441,12 +3441,12 @@ } ], "id": "course-of-action--f0d49457-5ebe-46b0-9cd6-4a4754db7d29", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Information Exchange | Transitive Information Exchanges", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.553Z", "description": "", "external_references": [ { @@ -3455,12 +3455,12 @@ } ], "id": "course-of-action--564fdaab-8fca-416c-9aa6-c561621ea6d4", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Security Certification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.553Z", "description": "a. Develop a plan of action and milestones for the system to document the planned remediation actions of the organization to correct weaknesses or deficiencies noted during the assessment of the controls and to reduce or eliminate known vulnerabilities in the system; and\nb. Update existing plan of action and milestones [Assignment: organization-defined frequency] based on the findings from control assessments, independent audits or reviews, and continuous monitoring activities.\n\nPlans of action and milestones are useful for any type of organization to track planned remedial actions. Plans of action and milestones are required in authorization packages and subject to federal reporting requirements established by OMB.", "external_references": [ { @@ -3469,12 +3469,12 @@ } ], "id": "course-of-action--6f3dd5d6-9584-45cb-b875-5d41e8172b9b", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.553Z", "name": "Plan of Action and Milestones", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.770Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Ensure the accuracy, currency, and availability of the plan of action and milestones for the system using [Assignment: organization-defined automated mechanisms].\n\nUsing automated tools helps maintain the accuracy, currency, and availability of the plan of action and milestones and facilitates the coordination and sharing of security and privacy information throughout the organization. Such coordination and information sharing help to identify systemic weaknesses or deficiencies in organizational systems and ensure that appropriate resources are directed at the most critical system vulnerabilities in a timely manner.", "external_references": [ { @@ -3483,12 +3483,12 @@ } ], "id": "course-of-action--e749c88a-b01d-4b1e-a097-b9f5f0c912b8", - "modified": "2021-01-06T18:30:53.770Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Plan of Action and Milestones | Automation Support for Accuracy and Currency", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "a. Assign a senior official as the authorizing official for the system;\nb. Assign a senior official as the authorizing official for common controls available for inheritance by organizational systems;\nc. Ensure that the authorizing official for the system, before commencing operations:\n1. Accepts the use of common controls inherited by the system; and\n2. Authorizes the system to operate;\nd. Ensure that the authorizing official for common controls authorizes the use of those controls for inheritance by organizational systems;\ne. Update the authorizations [Assignment: organization-defined frequency].\n\nAuthorizations are official management decisions by senior officials to authorize operation of systems, authorize the use of common controls for inheritance by organizational systems, and explicitly accept the risk to organizational operations and assets, individuals, other organizations, and the Nation based on the implementation of agreed-upon controls. Authorizing officials provide budgetary oversight for organizational systems and common controls or assume responsibility for the mission and business functions supported by those systems or common controls. The authorization process is a federal responsibility, and therefore, authorizing officials must be federal employees. Authorizing officials are both responsible and accountable for security and privacy risks associated with the operation and use of organizational systems. Nonfederal organizations may have similar processes to authorize systems and senior officials that assume the authorization role and associated responsibilities.\nAuthorizing officials issue ongoing authorizations of systems based on evidence produced from implemented continuous monitoring programs. Robust continuous monitoring programs reduce the need for separate reauthorization processes. Through the employment of comprehensive continuous monitoring processes, the information contained in authorization packages (i.e., security and privacy plans, assessment reports, and plans of action and milestones) is updated on an ongoing basis. This provides authorizing officials, common control providers, and system owners with an up-to-date status of the security and privacy posture of their systems, controls, and operating environments. To reduce the cost of reauthorization, authorizing officials can leverage the results of continuous monitoring processes to the maximum extent possible as the basis for rendering reauthorization decisions.", "external_references": [ { @@ -3497,12 +3497,12 @@ } ], "id": "course-of-action--0ee572c8-83fa-4626-b4f8-f3662d2a7f1a", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Employ a joint authorization process for the system that includes multiple authorizing officials from the same organization conducting the authorization.\n\nAssigning multiple authorizing officials from the same organization to serve as co-authorizing officials for the system increases the level of independence in the risk-based decision-making process. It also implements the concepts of separation of duties and dual authorization as applied to the system authorization process. The intra-organization joint authorization process is most relevant for connected systems, shared systems, and systems with multiple information owners.", "external_references": [ { @@ -3511,12 +3511,12 @@ } ], "id": "course-of-action--7de1be68-1c2e-4b17-a78a-8b89242cfa63", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Authorization | Joint Authorization ' Intra-organization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Employ a joint authorization process for the system that includes multiple authorizing officials with at least one authorizing official from an organization external to the organization conducting the authorization.\n\nAssigning multiple authorizing officials, at least one of whom comes from an external organization, to serve as co-authorizing officials for the system increases the level of independence in the risk-based decision-making process. It implements the concepts of separation of duties and dual authorization as applied to the system authorization process. Employing authorizing officials from external organizations to supplement the authorizing official from the organization that owns or hosts the system may be necessary when the external organizations have a vested interest or equities in the outcome of the authorization decision. The inter-organization joint authorization process is relevant and appropriate for connected systems, shared systems or services, and systems with multiple information owners. The authorizing officials from the external organizations are key stakeholders of the system undergoing authorization.", "external_references": [ { @@ -3525,12 +3525,12 @@ } ], "id": "course-of-action--c32828af-b71b-4ebd-8ac7-4204cb1492f1", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Authorization | Joint Authorization ' Inter-organization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Develop a system-level continuous monitoring strategy and implement continuous monitoring in accordance with the organization-level continuous monitoring strategy that includes:\na. Establishing the following system-level metrics to be monitored: [Assignment: organization-defined system-level metrics];\nb. Establishing [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessment of control effectiveness;\nc. Ongoing control assessments in accordance with the continuous monitoring strategy;\nd. Ongoing monitoring of system and organization-defined metrics in accordance with the continuous monitoring strategy;\ne. Correlation and analysis of information generated by control assessments and monitoring;\nf. Response actions to address results of the analysis of control assessment and monitoring information; and\ng. Reporting the security and privacy status of the system to [Assignment: organization-defined personnel or roles]\n [Assignment: organization-defined frequency].\n\nContinuous monitoring at the system level facilitates ongoing awareness of the system security and privacy posture to support organizational risk management decisions. The terms 'continuous' and 'ongoing' imply that organizations assess and monitor their controls and risks at a frequency sufficient to support risk-based decisions. Different types of controls may require different monitoring frequencies. The results of continuous monitoring generate risk response actions by organizations. When monitoring the effectiveness of multiple controls that have been grouped into capabilities, a root-cause analysis may be needed to determine the specific control that has failed. Continuous monitoring programs allow organizations to maintain the authorizations of systems and common controls in highly dynamic environments of operation with changing mission and business needs, threats, vulnerabilities, and technologies. Having access to security and privacy information on a continuing basis through reports and dashboards gives organizational officials the ability to make effective and timely risk management decisions, including ongoing authorization decisions.\nAutomation supports more frequent updates to hardware, software, and firmware inventories, authorization packages, and other system information. Effectiveness is further enhanced when continuous monitoring outputs are formatted to provide information that is specific, measurable, actionable, relevant, and timely. Continuous monitoring activities are scaled in accordance with the security categories of systems. Monitoring requirements, including the need for specific monitoring, may be referenced in other controls and control enhancements, such as AC-2g, AC-2(7), AC-2(12)(a), AC-2(7)(b), AC-2(7)(c), AC-17(1), AT-4a, AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, CM-11c, IR-5, MA-2b, MA-3a, MA-4a, PE-3d, PE-6, PE-14b, PE-16, PE-20, PM-6, PM-23, PM-31, PS-7e, SA-9c, SR-4, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18c, SC-43b, and SI-4.", "external_references": [ { @@ -3539,12 +3539,12 @@ } ], "id": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Continuous Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Employ independent assessors or assessment teams to monitor the controls in the system on an ongoing basis.\n\nOrganizations maximize the value of control assessments by requiring that assessments be conducted by assessors with appropriate levels of independence. The level of required independence is based on organizational continuous monitoring strategies. Assessor independence provides a degree of impartiality to the monitoring process. To achieve such impartiality, assessors do not create a mutual or conflicting interest with the organizations where the assessments are being conducted, assess their own work, act as management or employees of the organizations they are serving, or place themselves in advocacy positions for the organizations acquiring their services.", "external_references": [ { @@ -3553,12 +3553,12 @@ } ], "id": "course-of-action--8f292da3-0fe6-4257-9b30-5798c2dbb2d6", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Continuous Monitoring | Independent Assessment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.555Z", "description": "", "external_references": [ { @@ -3567,12 +3567,12 @@ } ], "id": "course-of-action--cbae92cd-2fb4-4a3f-936c-3455a2a97724", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.555Z", "name": "Continuous Monitoring | Types of Assessments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.555Z", "description": "Employ trend analyses to determine if control implementations, the frequency of continuous monitoring activities, and the types of activities used in the continuous monitoring process need to be modified based on empirical data.\n\nTrend analyses include examining recent threat information that addresses the types of threat events that have occurred in the organization or the Federal Government, success rates of certain types of attacks, emerging vulnerabilities in technologies, evolving social engineering techniques, the effectiveness of configuration settings, results from multiple control assessments, and findings from Inspectors General or auditors.", "external_references": [ { @@ -3581,12 +3581,12 @@ } ], "id": "course-of-action--584e27a1-e95f-4025-b477-4c131133f101", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.555Z", "name": "Continuous Monitoring | Trend Analyses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.555Z", "description": "Ensure risk monitoring is an integral part of the continuous monitoring strategy that includes the following:\n(a) Effectiveness monitoring;\n(b) Compliance monitoring; and\n(c) Change monitoring.\n\nRisk monitoring is informed by the established organizational risk tolerance. Effectiveness monitoring determines the ongoing effectiveness of the implemented risk response measures. Compliance monitoring verifies that required risk response measures are implemented. It also verifies that security and privacy requirements are satisfied. Change monitoring identifies changes to organizational systems and environments of operation that may affect security and privacy risk.", "external_references": [ { @@ -3595,12 +3595,12 @@ } ], "id": "course-of-action--96dd9c08-91f3-4cf2-b28c-39433d101665", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.555Z", "name": "Continuous Monitoring | Risk Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.555Z", "description": "Employ the following actions to validate that policies are established and implemented controls are operating in a consistent manner: [Assignment: organization-defined actions].\n\nSecurity and privacy controls are often added incrementally to a system. As a result, policies for selecting and implementing controls may be inconsistent, and the controls could fail to work together in a consistent or coordinated manner. At a minimum, the lack of consistency and coordination could mean that there are unacceptable security and privacy gaps in the system. At worst, it could mean that some of the controls implemented in one location or by one component are actually impeding the functionality of other controls (e.g., encrypting internal network traffic can impede monitoring). In other situations, failing to consistently monitor all implemented network protocols (e.g., a dual stack of IPv4 and IPv6) may create unintended vulnerabilities in the system that could be exploited by adversaries. It is important to validate'through testing, monitoring, and analysis'that the implemented controls are operating in a consistent, coordinated, non-interfering manner.", "external_references": [ { @@ -3609,12 +3609,12 @@ } ], "id": "course-of-action--48524db8-0fba-4b7e-8c47-c8b164d0d970", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.555Z", "name": "Continuous Monitoring | Consistency Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.555Z", "description": "Ensure the accuracy, currency, and availability of monitoring results for the system using [Assignment: organization-defined automated mechanisms].\n\nUsing automated tools for monitoring helps to maintain the accuracy, currency, and availability of monitoring information which in turns helps to increase the level of ongoing awareness of the system security and privacy posture in support of organizational risk management decisions.", "external_references": [ { @@ -3623,12 +3623,12 @@ } ], "id": "course-of-action--ed22ad0d-53a5-444f-bb6b-c769f315fa42", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.555Z", "name": "Continuous Monitoring | Automation Support for Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Conduct penetration testing [Assignment: organization-defined frequency] on [Assignment: organization-defined systems or system components].\n\nPenetration testing is a specialized type of assessment conducted on systems or individual system components to identify vulnerabilities that could be exploited by adversaries. Penetration testing goes beyond automated vulnerability scanning and is conducted by agents and teams with demonstrable skills and experience that include technical expertise in network, operating system, and/or application level security. Penetration testing can be used to validate vulnerabilities or determine the degree of penetration resistance of systems to adversaries within specified constraints. Such constraints include time, resources, and skills. Penetration testing attempts to duplicate the actions of adversaries and provides a more in-depth analysis of security- and privacy-related weaknesses or deficiencies. Penetration testing is especially important when organizations are transitioning from older technologies to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols).\nOrganizations can use the results of vulnerability analyses to support penetration testing activities. Penetration testing can be conducted internally or externally on the hardware, software, or firmware components of a system and can exercise both physical and technical controls. A standard method for penetration testing includes a pretest analysis based on full knowledge of the system, pretest identification of potential vulnerabilities based on the pretest analysis, and testing designed to determine the exploitability of vulnerabilities. All parties agree to the rules of engagement before commencing penetration testing scenarios. Organizations correlate the rules of engagement for the penetration tests with the tools, techniques, and procedures that are anticipated to be employed by adversaries. Penetration testing may result in the exposure of information that is protected by laws or regulations, to individuals conducting the testing. Rules of engagement, contracts, or other appropriate mechanisms can be used to communicate expectations for how to protect this information. Risk assessments guide the decisions on the level of independence required for the personnel conducting penetration testing.", "external_references": [ { @@ -3637,12 +3637,12 @@ } ], "id": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Penetration Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Employ an independent penetration testing agent or team to perform penetration testing on the system or system components.\n\nIndependent penetration testing agents or teams are individuals or groups who conduct impartial penetration testing of organizational systems. Impartiality implies that penetration testing agents or teams are free from perceived or actual conflicts of interest with respect to the development, operation, or management of the systems that are the targets of the penetration testing. CA-2(1) provides additional information on independent assessments that can be applied to penetration testing.", "external_references": [ { @@ -3651,12 +3651,12 @@ } ], "id": "course-of-action--9bc47b92-5e92-4d3c-aedd-19b4c8d7eadf", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Penetration Testing | Independent Penetration Testing Agent or Team", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Employ the following red-team exercises to simulate attempts by adversaries to compromise organizational systems in accordance with applicable rules of engagement: [Assignment: organization-defined red team exercises].\n\nRed team exercises extend the objectives of penetration testing by examining the security and privacy posture of organizations and the capability to implement effective cyber defenses. Red team exercises simulate attempts by adversaries to compromise mission and business functions and provide a comprehensive assessment of the security and privacy posture of systems and organizations. Such attempts may include technology-based attacks and social engineering-based attacks. Technology-based attacks include interactions with hardware, software, or firmware components and/or mission and business processes. Social engineering-based attacks include interactions via email, telephone, shoulder surfing, or personal conversations. Red team exercises are most effective when conducted by penetration testing agents and teams with knowledge of and experience with current adversarial tactics, techniques, procedures, and tools. While penetration testing may be primarily laboratory-based testing, organizations can use red team exercises to provide more comprehensive assessments that reflect real-world conditions. The results from red team exercises can be used by organizations to improve security and privacy awareness and training and to assess control effectiveness.", "external_references": [ { @@ -3665,12 +3665,12 @@ } ], "id": "course-of-action--76f53f9d-a43d-4fa2-8799-b7ba579fc5c3", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Penetration Testing | Red Team Exercises", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Employ a penetration testing process that includes [Assignment: organization-defined frequency]\n [Selection: announced; unannounced] attempts to bypass or circumvent controls associated with physical access points to the facility.\n\nPenetration testing of physical access points can provide information on critical vulnerabilities in the operating environments of organizational systems. Such information can be used to correct weaknesses or deficiencies in physical controls that are necessary to protect organizational systems.", "external_references": [ { @@ -3679,12 +3679,12 @@ } ], "id": "course-of-action--750832d2-2966-4e03-a140-59ea9f72d7c4", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Penetration Testing | Facility Penetration Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.556Z", "description": "a. Authorize internal connections of [Assignment: organization-defined system components or classes of components] to the system;\nb. Document, for each internal connection, the interface characteristics, security and privacy requirements, and the nature of the information communicated;\nc. Terminate internal system connections after [Assignment: organization-defined conditions]; and\nd. Review [Assignment: organization-defined frequency] the continued need for each internal connection.\n\nInternal system connections are connections between organizational systems and separate constituent system components (i.e., connections between components that are part of the same system) including components used for system development. Intra-system connections include connections with mobile devices, notebook and desktop computers, tablets, printers, copiers, facsimile machines, scanners, sensors, and servers. Instead of authorizing each internal system connection individually, organizations can authorize internal connections for a class of system components with common characteristics and/or configurations, including printers, scanners, and copiers with a specified processing, transmission, and storage capability or smart phones and tablets with a specific baseline configuration. The continued need for an internal system connection is reviewed from the perspective of whether it provides support for organizational missions or business functions.", "external_references": [ { @@ -3693,12 +3693,12 @@ } ], "id": "course-of-action--1b0c34ad-16b5-4d9b-9d27-6dc147cb52b4", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Internal System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Perform security and privacy compliance checks on constituent system components prior to the establishment of the internal connection.\n\nCompliance checks include verification of the relevant baseline configuration.", "external_references": [ { @@ -3707,12 +3707,12 @@ } ], "id": "course-of-action--8d67e524-6d5a-426e-ae15-5e38ced8355d", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Internal System Connections | Compliance Checks", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.557Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] configuration management policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the configuration management policy and the associated configuration management controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the configuration management policy and procedures; and\nc. Review and update the current configuration management:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nConfiguration management policy and procedures address the controls in the CM family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of configuration management policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to configuration management policy and procedures include, but are not limited to, assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -3721,12 +3721,12 @@ } ], "id": "course-of-action--c008b8da-9192-43dc-b1b5-c5dc0a12e1f7", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.557Z", "description": "a. Develop, document, and maintain under configuration control, a current baseline configuration of the system; and\nb. Review and update the baseline configuration of the system:\n1. [Assignment: organization-defined frequency];\n2. When required due to [Assignment: Assignment organization-defined circumstances]; and\n3. When system components are installed or upgraded.\n\nBaseline configurations for systems and system components include connectivity, operational, and communications aspects of systems. Baseline configurations are documented, formally reviewed, and agreed-upon specifications for systems or configuration items within those systems. Baseline configurations serve as a basis for future builds, releases, or changes to systems and include security and privacy control implementations, operational procedures, information about system components, network topology, and logical placement of components in the system architecture. Maintaining baseline configurations requires creating new baselines as organizational systems change over time. Baseline configurations of systems reflect the current enterprise architecture.", "external_references": [ { @@ -3735,12 +3735,12 @@ } ], "id": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.557Z", "description": "", "external_references": [ { @@ -3749,12 +3749,12 @@ } ], "id": "course-of-action--2e123efb-1add-45d3-82d0-16b892e820fd", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration | Reviews and Updates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.557Z", "description": "Maintain the currency, completeness, accuracy, and availability of the baseline configuration of the system using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms that help organizations maintain consistent baseline configurations for systems include configuration management tools, hardware, software, firmware inventory tools, and network management tools. Automated tools can be used at the organization level, mission and business process level, or system level on workstations, servers, notebook computers, network components, or mobile devices. Tools can be used to track version numbers on operating systems, applications, types of software installed, and current patch levels. Automation support for accuracy and currency can be satisfied by the implementation of CM-8(2) for organizations that combine system component inventory and baseline configuration activities.", "external_references": [ { @@ -3763,12 +3763,12 @@ } ], "id": "course-of-action--f6ffe90a-eb27-427a-a6a2-5ba79900de40", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration | Automation Support for Accuracy and Currency", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.557Z", "description": "Retain [Assignment: organization-defined number] of previous versions of baseline configurations of the system to support rollback.\n\nRetaining previous versions of baseline configurations to support rollback include hardware, software, firmware, configuration files, configuration records, and associated documentation.", "external_references": [ { @@ -3777,12 +3777,12 @@ } ], "id": "course-of-action--d8e5e8e7-d7e2-47f0-aa1b-0bd5c29f3338", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration | Retention of Previous Configurations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.557Z", "description": "", "external_references": [ { @@ -3791,12 +3791,12 @@ } ], "id": "course-of-action--4dac5d6a-e562-44bf-827f-085143321698", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration | Unauthorized Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.558Z", "description": "", "external_references": [ { @@ -3805,12 +3805,12 @@ } ], "id": "course-of-action--32964d26-2993-427f-b52d-f34b309418c9", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.558Z", "name": "Baseline Configuration | Authorized Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.774Z", + "created": "2021-01-13T01:52:41.558Z", "description": "Maintain a baseline configuration for system development and test environments that is managed separately from the operational baseline configuration.\n\nEstablishing separate baseline configurations for development, testing, and operational environments protects systems from unplanned or unexpected events related to development and testing activities. Separate baseline configurations allow organizations to apply the configuration management that is most appropriate for each type of configuration. For example, the management of operational configurations typically emphasizes the need for stability, while the management of development or test configurations requires greater flexibility. Configurations in the test environment mirror configurations in the operational environment to the extent practicable so that the results of the testing are representative of the proposed changes to the operational systems. Separate baseline configurations do not necessarily require separate physical environments.", "external_references": [ { @@ -3819,12 +3819,12 @@ } ], "id": "course-of-action--a8839733-755c-4505-8e46-be2c62e7b4a8", - "modified": "2021-01-06T18:30:53.774Z", + "modified": "2021-01-13T01:52:41.558Z", "name": "Baseline Configuration | Development and Test Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.558Z", "description": "(a) Issue [Assignment: organization-defined systems or system components] with [Assignment: organization-defined configurations] to individuals traveling to locations that the organization deems to be of significant risk; and\n(b) Apply the following controls to the systems or components when the individuals return from travel: [Assignment: organization-defined controls].\n\nWhen it is known that systems or system components will be in high-risk areas external to the organization, additional controls may be implemented to counter the increased threat in such areas. For example, organizations can take actions for notebook computers used by individuals departing on and returning from travel. Actions include determining the locations that are of concern, defining the required configurations for the components, ensuring that components are configured as intended before travel is initiated, and applying controls to the components after travel is completed. Specially configured notebook computers include computers with sanitized hard drives, limited applications, and more stringent configuration settings. Controls applied to mobile devices upon return from travel include examining the mobile device for signs of physical tampering and purging and reimaging disk drives. Protecting information that resides on mobile devices is addressed in the MP (Media Protection) family.", "external_references": [ { @@ -3833,12 +3833,12 @@ } ], "id": "course-of-action--0cdc4a9b-7689-4a9e-b7e5-061c93c1d972", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.558Z", "name": "Baseline Configuration | Configure Systems and Components for High-risk Areas", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.559Z", "description": "a. Determine and document the types of changes to the system that are configuration-controlled;\nb. Review proposed configuration-controlled changes to the system and approve or disapprove such changes with explicit consideration for security and privacy impact analyses;\nc. Document configuration change decisions associated with the system;\nd. Implement approved configuration-controlled changes to the system;\ne. Retain records of configuration-controlled changes to the system for [Assignment: organization-defined time period];\nf. Monitor and review activities associated with configuration-controlled changes to the system; and\ng. Coordinate and provide oversight for configuration change control activities through [Assignment: organization-defined configuration change control element] that convenes [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; when [Assignment: organization-defined configuration change conditions]\n ].\n\nConfiguration change control for organizational systems involves the systematic proposal, justification, implementation, testing, review, and disposition of system changes, including system upgrades and modifications. Configuration change control includes changes to baseline configurations, configuration items of systems, operational procedures, configuration settings for system components, remediate vulnerabilities, and unscheduled or unauthorized changes. Processes for managing configuration changes to systems include Configuration Control Boards or Change Advisory Boards that review and approve proposed changes. For changes that impact privacy risk, the senior agency official for privacy updates privacy impact assessments and system of records notices. For new systems or major upgrades, organizations consider including representatives from the development organizations on the Configuration Control Boards or Change Advisory Boards. Auditing of changes includes activities before and after changes are made to systems and the auditing activities required to implement such changes. See also SA-10.", "external_references": [ { @@ -3847,12 +3847,12 @@ } ], "id": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.559Z", "name": "Configuration Change Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.559Z", "description": "Use [Assignment: organization-defined automated mechanisms] to:\n(a) Document proposed changes to the system;\n(b) Notify [Assignment: organization-defined approval authorities] of proposed changes to the system and request change approval;\n(c) Highlight proposed changes to the system that have not been approved or disapproved within [Assignment: organization-defined time period];\n(d) Prohibit changes to the system until designated approvals are received;\n(e) Document all changes to the system; and\n(f) Notify [Assignment: organization-defined personnel] when approved changes to the system are completed.\n\nNone.", "external_references": [ { @@ -3861,12 +3861,12 @@ } ], "id": "course-of-action--3d0ba056-5b41-4ae6-ba62-4cb0a99a8b0a", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.559Z", "name": "Configuration Change Control | Automated Documentation, Notification, and Prohibition of Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.559Z", "description": "Test, validate, and document changes to the system before finalizing the implementation of the changes.\n\nChanges to systems include modifications to hardware, software, or firmware components and configuration settings defined in CM-6. Organizations ensure that testing does not interfere with system operations that support organizational mission and business functions. Individuals or groups conducting tests understand security and privacy policies and procedures, system security and privacy policies and procedures, and the health, safety, and environmental risks associated with specific facilities or processes. Operational systems may need to be taken offline, or replicated to the extent feasible, before testing can be conducted. If systems must be taken offline for testing, the tests are scheduled to occur during planned system outages whenever possible. If the testing cannot be conducted on operational systems, organizations employ compensating controls.", "external_references": [ { @@ -3875,12 +3875,12 @@ } ], "id": "course-of-action--18b2edaa-726c-414f-a783-d6e8059db062", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.559Z", "name": "Configuration Change Control | Testing, Validation, and Documentation of Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.560Z", "description": "Implement changes to the current system baseline and deploy the updated baseline across the installed base using [Assignment: organization-defined automated mechanisms].\n\nAutomated tools can improve the accuracy, consistency, and availability of configuration baseline information. Automation can also provide data aggregation and data correlation capabilities, alerting mechanisms, and dashboards to support risk-based decision-making within the organization.", "external_references": [ { @@ -3889,12 +3889,12 @@ } ], "id": "course-of-action--0d0b026f-b022-4710-a860-dff2eda1f352", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.560Z", "name": "Configuration Change Control | Automated Change Implementation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.560Z", "description": "Require [Assignment: organization-defined security and privacy representatives] to be members of the [Assignment: organization-defined configuration change control element].\n\nInformation security and privacy representatives include system security officers, senior agency information security officers, senior agency officials for privacy, or system privacy officers. Representation by personnel with information security and privacy expertise is important because changes to system configurations can have unintended side effects, some of which may be security- or privacy-relevant. Detecting such changes early in the process can help avoid unintended, negative consequences that could ultimately affect the security and privacy posture of systems. The configuration change control element referred to in the second organization-defined parameter reflects the change control elements defined by organizations in CM-3g.", "external_references": [ { @@ -3903,12 +3903,12 @@ } ], "id": "course-of-action--2ba5970e-1683-4ed5-9494-1f9cd2b0404b", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.560Z", "name": "Configuration Change Control | Security and Privacy Representatives", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.560Z", "description": "Implement the following security responses automatically if baseline configurations are changed in an unauthorized manner: [Assignment: organization-defined security responses].\n\nAutomated security responses include halting selected system functions, halting system processing, and issuing alerts or notifications to organizational personnel when there is an unauthorized modification of a configuration item.", "external_references": [ { @@ -3917,12 +3917,12 @@ } ], "id": "course-of-action--6a685aa6-e317-41db-a4bd-b7689d00057f", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.560Z", "name": "Configuration Change Control | Automated Security Response", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.561Z", "description": "Ensure that cryptographic mechanisms used to provide the following controls are under configuration management: [Assignment: organization-defined controls].\n\nThe controls referenced in the control enhancement refer to security and privacy controls from the control catalog. Regardless of the cryptographic mechanisms employed, processes and procedures are in place to manage those mechanisms. For example, if system components use certificates for identification and authentication, a process is implemented to address the expiration of those certificates.", "external_references": [ { @@ -3931,12 +3931,12 @@ } ], "id": "course-of-action--7fd685c8-95b7-4a30-8d86-5c2f01c05b70", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.561Z", "name": "Configuration Change Control | Cryptography Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.561Z", "description": "Review changes to the system [Assignment: organization-defined frequency] or when [Assignment: organization-defined circumstances] to determine whether unauthorized changes have occurred.\n\nIndications that warrant a review of changes to the system and the specific circumstances justifying such reviews may be obtained from activities carried out by organizations during the configuration change process or continuous monitoring process.", "external_references": [ { @@ -3945,12 +3945,12 @@ } ], "id": "course-of-action--515d9af8-4160-466f-a4c5-4466e96df7eb", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.561Z", "name": "Configuration Change Control | Review System Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.561Z", "description": "Prevent or restrict changes to the configuration of the system under the following circumstances: [Assignment: organization-defined circumstances].\n\nSystem configuration changes can adversely affect critical system security and privacy functionality. Change restrictions can be enforced through automated mechanisms.", "external_references": [ { @@ -3959,12 +3959,12 @@ } ], "id": "course-of-action--07ceb723-55d9-4282-9c1e-3eb5835d362f", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.561Z", "name": "Configuration Change Control | Prevent or Restrict Configuration Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.561Z", "description": "Analyze changes to the system to determine potential security and privacy impacts prior to change implementation.\n\nOrganizational personnel with security or privacy responsibilities conduct impact analyses. Individuals conducting impact analyses possess the necessary skills and technical expertise to analyze the changes to systems as well as the security or privacy ramifications. Impact analyses include reviewing security and privacy plans, policies, and procedures to understand control requirements; reviewing system design documentation and operational procedures to understand control implementation and how specific system changes might affect the controls; reviewing the impact of changes on organizational supply chain partners with stakeholders; and determining how potential changes to a system create new risks to the privacy of individuals and the ability of implemented controls to mitigate those risks. Impact analyses also include risk assessments to understand the impact of the changes and determine if additional controls are required.", "external_references": [ { @@ -3973,12 +3973,12 @@ } ], "id": "course-of-action--0cc37454-0c2b-462f-b3ab-ea377cfe5f96", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.561Z", "name": "Impact Analyses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.562Z", "description": "Analyze changes to the system in a separate test environment before implementation in an operational environment, looking for security and privacy impacts due to flaws, weaknesses, incompatibility, or intentional malice.\n\nA separate test environment requires an environment that is physically or logically separate and distinct from the operational environment. The separation is sufficient to ensure that activities in the test environment do not impact activities in the operational environment and that information in the operational environment is not inadvertently transmitted to the test environment. Separate environments can be achieved by physical or logical means. If physically separate test environments are not implemented, organizations determine the strength of mechanism required when implementing logical separation.", "external_references": [ { @@ -3987,12 +3987,12 @@ } ], "id": "course-of-action--37bb8367-3122-409c-a397-7d17c57ddfa9", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.562Z", "name": "Impact Analyses | Separate Test Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.776Z", + "created": "2021-01-13T01:52:41.562Z", "description": "After system changes, verify that the impacted controls are implemented correctly, operating as intended, and producing the desired outcome with regard to meeting the security and privacy requirements for the system.\n\nImplementation in this context refers to installing changed code in the operational system that may have an impact on security or privacy controls.", "external_references": [ { @@ -4001,12 +4001,12 @@ } ], "id": "course-of-action--b6d7a755-112f-48a2-873e-daab1abe7578", - "modified": "2021-01-06T18:30:53.776Z", + "modified": "2021-01-13T01:52:41.562Z", "name": "Impact Analyses | Verification of Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.562Z", "description": "Define, document, approve, and enforce physical and logical access restrictions associated with changes to the system.\n\nChanges to the hardware, software, or firmware components of systems or the operational procedures related to the system can potentially have significant effects on the security of the systems or individuals' privacy. Therefore, organizations permit only qualified and authorized individuals to access systems for purposes of initiating changes. Access restrictions include physical and logical access controls (see AC-3 and PE-3), software libraries, workflow automation, media libraries, abstract layers (i.e., changes implemented into external interfaces rather than directly into systems), and change windows (i.e., changes occur only during specified times).", "external_references": [ { @@ -4015,12 +4015,12 @@ } ], "id": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.562Z", "name": "Access Restrictions for Change", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.563Z", "description": "(a) Enforce access restrictions using [Assignment: organization-defined automated mechanisms]; and\n(b) Automatically generate audit records of the enforcement actions.\n\nOrganizations log system accesses associated with applying configuration changes to ensure that configuration change control is implemented and to support after-the-fact actions should organizations discover any unauthorized changes.", "external_references": [ { @@ -4029,12 +4029,12 @@ } ], "id": "course-of-action--1dacb75b-9431-4abe-b9d4-db5c6a827a34", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.563Z", "name": "Access Restrictions for Change | Automated Access Enforcement and Audit Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.563Z", "description": "", "external_references": [ { @@ -4043,12 +4043,12 @@ } ], "id": "course-of-action--7374dca1-c880-4288-bc5d-13b060022df9", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.563Z", "name": "Access Restrictions for Change | Review System Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.563Z", "description": "", "external_references": [ { @@ -4057,12 +4057,12 @@ } ], "id": "course-of-action--d6c83754-8914-4351-9ac7-c025008ddb23", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.563Z", "name": "Access Restrictions for Change | Signed Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.564Z", "description": "Enforce dual authorization for implementing changes to [Assignment: organization-defined system components and system-level information].\n\nOrganizations employ dual authorization to help ensure that any changes to selected system components and information cannot occur unless two qualified individuals approve and implement such changes. The two individuals possess the skills and expertise to determine if the proposed changes are correct implementations of approved changes. The individuals are also accountable for the changes. Dual authorization may also be known as two-person control. To reduce the risk of collusion, organizations consider rotating dual authorization duties to other individuals. System-level information includes operational procedures.", "external_references": [ { @@ -4071,12 +4071,12 @@ } ], "id": "course-of-action--e70ebd5d-4c0b-4924-ba28-9b386c055f72", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.564Z", "name": "Access Restrictions for Change | Dual Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.564Z", "description": "(a) Limit privileges to change system components and system-related information within a production or operational environment; and\n(b) Review and reevaluate privileges [Assignment: organization-defined frequency].\n\nIn many organizations, systems support multiple mission and business functions. Limiting privileges to change system components with respect to operational systems is necessary because changes to a system component may have far-reaching effects on mission and business processes supported by the system. The relationships between systems and mission/business processes are, in some cases, unknown to developers. System-related information includes operational procedures.", "external_references": [ { @@ -4085,12 +4085,12 @@ } ], "id": "course-of-action--99a5de3e-8890-427a-8951-e84b82df482b", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.564Z", "name": "Access Restrictions for Change | Privilege Limitation for Production and Operation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.564Z", "description": "Limit privileges to change software resident within software libraries.\n\nSoftware libraries include privileged programs.", "external_references": [ { @@ -4099,12 +4099,12 @@ } ], "id": "course-of-action--2787e3c8-f464-491a-9673-79588f516e0f", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.564Z", "name": "Access Restrictions for Change | Limit Library Privileges", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.565Z", "description": "", "external_references": [ { @@ -4113,12 +4113,12 @@ } ], "id": "course-of-action--6ef43616-4de3-44da-861b-8bd7660a81e8", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.565Z", "name": "Access Restrictions for Change | Automatic Implementation of Security Safeguards", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.565Z", "description": "a. Establish and document configuration settings for components employed within the system that reflect the most restrictive mode consistent with operational requirements using [Assignment: organization-defined common secure configurations];\nb. Implement the configuration settings;\nc. Identify, document, and approve any deviations from established configuration settings for [Assignment: organization-defined system components] based on [Assignment: organization-defined operational requirements]; and\nd. Monitor and control changes to the configuration settings in accordance with organizational policies and procedures.\n\nConfiguration settings are the parameters that can be changed in the hardware, software, or firmware components of the system that affect the security and privacy posture or functionality of the system. Information technology products for which configuration settings can be defined include mainframe computers, servers, workstations, operating systems, mobile devices, input/output devices, protocols, and applications. Parameters that impact the security posture of systems include registry settings; account, file, or directory permission settings; and settings for functions, protocols, ports, services, and remote connections. Privacy parameters are parameters impacting the privacy posture of systems, including the parameters required to satisfy other privacy controls. Privacy parameters include settings for access controls, data processing preferences, and processing and retention permissions. Organizations establish organization-wide configuration settings and subsequently derive specific configuration settings for systems. The established settings become part of the configuration baseline for the system.\nCommon secure configurations (also known as security configuration checklists, lockdown and hardening guides, and security reference guides) provide recognized, standardized, and established benchmarks that stipulate secure configuration settings for information technology products and platforms as well as instructions for configuring those products or platforms to meet operational requirements. Common secure configurations can be developed by a variety of organizations, including information technology product developers, manufacturers, vendors, federal agencies, consortia, academia, industry, and other organizations in the public and private sectors.\nImplementation of a common secure configuration may be mandated at the organization level, mission and business process level, system level, or at a higher level, including by a regulatory agency. Common secure configurations include the United States Government Configuration Baseline [USGCB] and security technical implementation guides (STIGs), which affect the implementation of CM-6 and other controls such as AC-19 and CM-7. The Security Content Automation Protocol (SCAP) and the defined standards within the protocol provide an effective method to uniquely identify, track, and control configuration settings.", "external_references": [ { @@ -4127,12 +4127,12 @@ } ], "id": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.565Z", "name": "Configuration Settings", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.565Z", "description": "Manage, apply, and verify configuration settings for [Assignment: organization-defined system components] using [Assignment: organization-defined automated mechanisms].\n\nAutomated tools (e.g., hardening tools, baseline configuration tools) can improve the accuracy, consistency, and availability of configuration settings information. Automation can also provide data aggregation and data correlation capabilities, alerting mechanisms, and dashboards to support risk-based decision-making within the organization.", "external_references": [ { @@ -4141,12 +4141,12 @@ } ], "id": "course-of-action--4545384c-3a0b-4ebd-a184-fc62d2c36bdd", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.565Z", "name": "Configuration Settings | Automated Management, Application, and Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.566Z", "description": "Take the following actions in response to unauthorized changes to [Assignment: organization-defined configuration settings]: [Assignment: organization-defined actions].\n\nResponses to unauthorized changes to configuration settings include alerting designated organizational personnel, restoring established configuration settings, or'in extreme cases'halting affected system processing.", "external_references": [ { @@ -4155,12 +4155,12 @@ } ], "id": "course-of-action--561d05de-1aa2-4a70-99bf-faf5f6110b33", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.566Z", "name": "Configuration Settings | Respond to Unauthorized Changes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.566Z", "description": "", "external_references": [ { @@ -4169,12 +4169,12 @@ } ], "id": "course-of-action--a147c98c-0ce9-47de-be03-f72c76802a30", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.566Z", "name": "Configuration Settings | Unauthorized Change Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.566Z", "description": "", "external_references": [ { @@ -4183,12 +4183,12 @@ } ], "id": "course-of-action--009291f1-1d1b-4f95-900f-c8c7ee1342b4", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.566Z", "name": "Configuration Settings | Conformance Demonstration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.566Z", "description": "a. Configure the system to provide only [Assignment: organization-defined mission essential capabilities]; and\nb. Prohibit or restrict the use of the following functions, ports, protocols, software, and/or services: [Assignment: organization-defined prohibited or restricted functions, system ports, protocols, software, and/or services].\n\nSystems provide a wide variety of functions and services. Some of the functions and services routinely provided by default may not be necessary to support essential organizational missions, functions, or operations. Additionally, it is sometimes convenient to provide multiple services from a single system component, but doing so increases risk over limiting the services provided by that single component. Where feasible, organizations limit component functionality to a single function per component. Organizations consider removing unused or unnecessary software and disabling unused or unnecessary physical and logical ports and protocols to prevent unauthorized connection of components, transfer of information, and tunneling. Organizations employ network scanning tools, intrusion detection and prevention systems, and end-point protection technologies, such as firewalls and host-based intrusion detection systems, to identify and prevent the use of prohibited functions, protocols, ports, and services. Least functionality can also be achieved as part of the fundamental design and development of the system (see SA-8, SC-2, and SC-3).", "external_references": [ { @@ -4197,12 +4197,12 @@ } ], "id": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.566Z", "name": "Least Functionality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.567Z", "description": "(a) Review the system [Assignment: organization-defined frequency] to identify unnecessary and/or nonsecure functions, ports, protocols, software, and services; and\n(b) Disable or remove [Assignment: organization-defined functions, ports, protocols, software, and services within the system deemed to be unnecessary and/or nonsecure].\n\nOrganizations review functions, ports, protocols, and services provided by systems or system components to determine the functions and services that are candidates for elimination. Such reviews are especially important during transition periods from older technologies to newer technologies (e.g., transition from IPv4 to IPv6). These technology transitions may require implementing the older and newer technologies simultaneously during the transition period and returning to minimum essential functions, ports, protocols, and services at the earliest opportunity. Organizations can either decide the relative security of the function, port, protocol, and/or service or base the security decision on the assessment of other entities. Unsecure protocols include Bluetooth, FTP, and peer-to-peer networking.", "external_references": [ { @@ -4211,12 +4211,12 @@ } ], "id": "course-of-action--d03e2fa5-47f4-4529-8fbf-9511ef9a3aaa", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.567Z", "name": "Least Functionality | Periodic Review", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.567Z", "description": "Prevent program execution in accordance with [Selection (one or more): \n [Assignment: organization-defined policies, rules of behavior, and/or access agreements regarding software program usage and restrictions]\n ; rules authorizing the terms and conditions of software program usage].\n\nPrevention of program execution addresses organizational policies, rules of behavior, and/or access agreements that restrict software usage and the terms and conditions imposed by the developer or manufacturer, including software licensing and copyrights. Restrictions include prohibiting auto-execute features, restricting roles allowed to approve program execution, permitting or prohibiting specific software programs, or restricting the number of program instances executed at the same time.", "external_references": [ { @@ -4225,12 +4225,12 @@ } ], "id": "course-of-action--92a8062a-d2ee-4463-93ad-35e176b5f74b", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.567Z", "name": "Least Functionality | Prevent Program Execution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.567Z", "description": "Ensure compliance with [Assignment: organization-defined registration requirements for functions, ports, protocols, and services].\n\nOrganizations use the registration process to manage, track, and provide oversight for systems and implemented functions, ports, protocols, and services.", "external_references": [ { @@ -4239,12 +4239,12 @@ } ], "id": "course-of-action--29df7405-eba5-4b5b-8202-63ad1e5e36ef", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.567Z", "name": "Least Functionality | Registration Compliance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.568Z", "description": "(a) Identify [Assignment: organization-defined software programs not authorized to execute on the system];\n(b) Employ an allow-all, deny-by-exception policy to prohibit the execution of unauthorized software programs on the system; and\n(c) Review and update the list of unauthorized software programs [Assignment: organization-defined frequency].\n\nUnauthorized software programs can be limited to specific versions or from a specific source. The concept of prohibiting the execution of unauthorized software may also be applied to user actions, system ports and protocols, IP addresses/ranges, websites, and MAC addresses.", "external_references": [ { @@ -4253,12 +4253,12 @@ } ], "id": "course-of-action--af05934b-fcc9-45c8-8985-f17205663ace", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.568Z", "name": "Least Functionality | Unauthorized Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.568Z", "description": "(a) Identify [Assignment: organization-defined software programs authorized to execute on the system];\n(b) Employ a deny-all, permit-by-exception policy to allow the execution of authorized software programs on the system; and\n(c) Review and update the list of authorized software programs [Assignment: organization-defined frequency].\n\nAuthorized software programs can be limited to specific versions or from a specific source. To facilitate a comprehensive authorized software process and increase the strength of protection for attacks that bypass application level authorized software, software programs may be decomposed into and monitored at different levels of detail. These levels include applications, application programming interfaces, application modules, scripts, system processes, system services, kernel functions, registries, drivers, and dynamic link libraries. The concept of permitting the execution of authorized software may also be applied to user actions, system ports and protocols, IP addresses/ranges, websites, and MAC addresses. Organizations consider verifying the integrity of authorized software programs using digital signatures, cryptographic checksums, or hash functions. Verification of authorized software can occur either prior to execution or at system startup. The identification of authorized URLs for websites is addressed in CA-3(5) and SC-7.", "external_references": [ { @@ -4267,12 +4267,12 @@ } ], "id": "course-of-action--5adeb72a-1d21-4aff-b346-0872ca35239e", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.568Z", "name": "Least Functionality | Authorized Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.568Z", "description": "Require that the following user-installed software execute in a confined physical or virtual machine environment with limited privileges: [Assignment: organization-defined user-installed software].\n\nOrganizations identify software that may be of concern regarding its origin or potential for containing malicious code. For this type of software, user installations occur in confined environments of operation to limit or contain damage from malicious code that may be executed.", "external_references": [ { @@ -4281,12 +4281,12 @@ } ], "id": "course-of-action--c429a549-9083-43a4-8bbd-81059e0ca461", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.568Z", "name": "Least Functionality | Confined Environments with Limited Privileges", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.569Z", "description": "Allow execution of binary or machine-executable code only in confined physical or virtual machine environments and with the explicit approval of [Assignment: organization-defined personnel or roles] when such code is:\n(a) Obtained from sources with limited or no warranty; and/or\n(b) Without the provision of source code.\n\nCode execution in protected environments applies to all sources of binary or machine-executable code, including commercial software and firmware and open-source software.", "external_references": [ { @@ -4295,12 +4295,12 @@ } ], "id": "course-of-action--68009de2-831e-4b05-bf0e-719e92fe6e95", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.569Z", "name": "Least Functionality | Code Execution in Protected Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.569Z", "description": "(a) Prohibit the use of binary or machine-executable code from sources with limited or no warranty or without the provision of source code; and\n(b) Allow exceptions only for compelling mission or operational requirements and with the approval of the authorizing official.\n\nBinary or machine executable code applies to all sources of binary or machine-executable code, including commercial software and firmware and open-source software. Organizations assess software products without accompanying source code or from sources with limited or no warranty for potential security impacts. The assessments address the fact that software products without the provision of source code may be difficult to review, repair, or extend. In addition, there may be no owners to make such repairs on behalf of organizations. If open-source software is used, the assessments address the fact that there is no warranty, the open-source software could contain back doors or malware, and there may be no support available.", "external_references": [ { @@ -4309,12 +4309,12 @@ } ], "id": "course-of-action--fb05b99a-be3f-4081-b40e-f0e6222d94e9", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.569Z", "name": "Least Functionality | Binary or Machine Executable Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.569Z", "description": "(a) Identify [Assignment: organization-defined hardware components authorized for system use];\n(b) Prohibit the use or connection of unauthorized hardware components;\n(c) Review and update the list of authorized hardware components [Assignment: organization-defined frequency].\n\nHardware components provide the foundation for organizational systems and the platform for the execution of authorized software programs. Managing the inventory of hardware components and controlling which hardware components are permitted to be installed or connected to organizational systems is essential in order to provide adequate security.", "external_references": [ { @@ -4323,12 +4323,12 @@ } ], "id": "course-of-action--e0521826-8c63-43e3-8c1f-caf139dfd143", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.569Z", "name": "Least Functionality | Prohibiting The Use of Unauthorized Hardware", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.570Z", "description": "a. Develop and document an inventory of system components that:\n1. Accurately reflects the system;\n2. Includes all components within the system;\n3. Does not include duplicate accounting of components or components assigned to any other system;\n4. Is at the level of granularity deemed necessary for tracking and reporting; and\n5. Includes the following information to achieve system component accountability: [Assignment: organization-defined information deemed necessary to achieve effective system component accountability]; and\nb. Review and update the system component inventory [Assignment: organization-defined frequency].\n\nSystem components are discrete, identifiable information technology assets that include hardware, software, and firmware. Organizations may choose to implement centralized system component inventories that include components from all organizational systems. In such situations, organizations ensure that the inventories include system-specific information required for component accountability. The information necessary for effective accountability of system components includes the system name, software owners, software version numbers, hardware inventory specifications, software license information, and for networked components, the machine names and network addresses across all implemented protocols (e.g., IPv4, IPv6). Inventory specifications include date of receipt, cost, model, serial number, manufacturer, supplier information, component type, and physical location.\nPreventing duplicate accounting of system components addresses the lack of accountability that occurs when component ownership and system association is not known, especially in large or complex connected systems. Effective prevention of duplicate accounting of system components necessitates use of a unique identifier for each component. For software inventory, centrally managed software that is accessed via other systems is addressed as a component of the system on which it is installed and managed. Software installed on multiple organizational systems and managed at the system level is addressed for each individual system and may appear more than once in a centralized component inventory, necessitating a system association for each software instance in the centralized inventory to avoid duplicate accounting of components. Scanning systems implementing multiple network protocols (e.g., IPv4 and IPv6) can result in duplicate components being identified in different address spaces. The implementation of CM-8(7) can help to eliminate duplicate accounting of components.", "external_references": [ { @@ -4337,12 +4337,12 @@ } ], "id": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.570Z", "name": "System Component Inventory", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.570Z", "description": "Update the inventory of system components as part of component installations, removals, and system updates.\n\nOrganizations can improve the accuracy, completeness, and consistency of system component inventories if the inventories are updated as part of component installations or removals or during general system updates. If inventories are not updated at these key times, there is a greater likelihood that the information will not be appropriately captured and documented. System updates include hardware, software, and firmware components.", "external_references": [ { @@ -4351,12 +4351,12 @@ } ], "id": "course-of-action--ab585429-3fc7-4eca-bb31-36e2f39298a0", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.570Z", "name": "System Component Inventory | Updates During Installation and Removal", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.781Z", + "created": "2021-01-13T01:52:41.570Z", "description": "Maintain the currency, completeness, accuracy, and availability of the inventory of system components using [Assignment: organization-defined automated mechanisms].\n\nOrganizations maintain system inventories to the extent feasible. For example, virtual machines can be difficult to monitor because such machines are not visible to the network when not in use. In such cases, organizations maintain as up-to-date, complete, and accurate an inventory as is deemed reasonable. Automated maintenance can be achieved by the implementation of CM-2(2) for organizations that combine system component inventory and baseline configuration activities.", "external_references": [ { @@ -4365,12 +4365,12 @@ } ], "id": "course-of-action--52b6efad-cd1d-4959-985f-cf4eb7fa3852", - "modified": "2021-01-06T18:30:53.781Z", + "modified": "2021-01-13T01:52:41.570Z", "name": "System Component Inventory | Automated Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.781Z", + "created": "2021-01-13T01:52:41.570Z", "description": "(a) Detect the presence of unauthorized hardware, software, and firmware components within the system using [Assignment: organization-defined automated mechanisms]\n [Assignment: organization-defined frequency]; and\n(b) Take the following actions when unauthorized components are detected: [Selection (one or more): disable network access by such components; isolate the components; notify [Assignment: organization-defined personnel or roles]\n ].\n\nAutomated unauthorized component detection is applied in addition to the monitoring for unauthorized remote connections and mobile devices. Monitoring for unauthorized system components may be accomplished on an ongoing basis or by the periodic scanning of systems for that purpose. Automated mechanisms may also be used to prevent the connection of unauthorized components (see CM-7(9)). Automated mechanisms can be implemented in systems or in separate system components. When acquiring and implementing automated mechanisms, organizations consider whether such mechanisms depend on the ability of the system component to support an agent or supplicant in order to be detected since some types of components do not have or cannot support agents (e.g., IoT devices, sensors). Isolation can be achieved , for example, by placing unauthorized system components in separate domains or subnets or quarantining such components. This type of component isolation is commonly referred to as 'sandboxing.'", "external_references": [ { @@ -4379,12 +4379,12 @@ } ], "id": "course-of-action--9443d3ee-5fd7-4d64-8c2e-f8599ba3f4e3", - "modified": "2021-01-06T18:30:53.781Z", + "modified": "2021-01-13T01:52:41.570Z", "name": "System Component Inventory | Automated Unauthorized Component Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.781Z", + "created": "2021-01-13T01:52:41.571Z", "description": "Include in the system component inventory information, a means for identifying by [Selection (one or more): name; position; role], individuals responsible and accountable for administering those components.\n\nIdentifying individuals who are responsible and accountable for administering system components ensures that the assigned components are properly administered and that organizations can contact those individuals if some action is required (e.g., when the component is determined to be the source of a breach, needs to be recalled or replaced, or needs to be relocated).", "external_references": [ { @@ -4393,12 +4393,12 @@ } ], "id": "course-of-action--9de2c416-2328-47bf-b49b-e102a76d68fc", - "modified": "2021-01-06T18:30:53.781Z", + "modified": "2021-01-13T01:52:41.571Z", "name": "System Component Inventory | Accountability Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.781Z", + "created": "2021-01-13T01:52:41.571Z", "description": "", "external_references": [ { @@ -4407,12 +4407,12 @@ } ], "id": "course-of-action--86c7d55d-0a4d-4831-b3a5-e58564039857", - "modified": "2021-01-06T18:30:53.781Z", + "modified": "2021-01-13T01:52:41.571Z", "name": "System Component Inventory | No Duplicate Accounting of Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.781Z", + "created": "2021-01-13T01:52:41.571Z", "description": "Include assessed component configurations and any approved deviations to current deployed configurations in the system component inventory.\n\nAssessed configurations and approved deviations focus on configuration settings established by organizations for system components, the specific components that have been assessed to determine compliance with the required configuration settings, and any approved deviations from established configuration settings.", "external_references": [ { @@ -4421,12 +4421,12 @@ } ], "id": "course-of-action--830036f6-243e-4088-8efa-7ce1ab1ea28a", - "modified": "2021-01-06T18:30:53.781Z", + "modified": "2021-01-13T01:52:41.571Z", "name": "System Component Inventory | Assessed Configurations and Approved Deviations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.782Z", + "created": "2021-01-13T01:52:41.572Z", "description": "Provide a centralized repository for the inventory of system components.\n\nOrganizations may implement centralized system component inventories that include components from all organizational systems. Centralized repositories of component inventories provide opportunities for efficiencies in accounting for organizational hardware, software, and firmware assets. Such repositories may also help organizations rapidly identify the location and responsible individuals of components that have been compromised, breached, or are otherwise in need of mitigation actions. Organizations ensure that the resulting centralized inventories include system-specific information required for proper component accountability.", "external_references": [ { @@ -4435,12 +4435,12 @@ } ], "id": "course-of-action--a074d694-0a45-46c4-a29d-005f83b4ca14", - "modified": "2021-01-06T18:30:53.782Z", + "modified": "2021-01-13T01:52:41.572Z", "name": "System Component Inventory | Centralized Repository", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.782Z", + "created": "2021-01-13T01:52:41.572Z", "description": "Support the tracking of system components by geographic location using [Assignment: organization-defined automated mechanisms].\n\nThe use of automated mechanisms to track the location of system components can increase the accuracy of component inventories. Such capability may help organizations rapidly identify the location and responsible individuals of system components that have been compromised, breached, or are otherwise in need of mitigation actions. The use of tracking mechanisms can be coordinated with senior agency officials for privacy if there are implications that affect individual privacy.", "external_references": [ { @@ -4449,12 +4449,12 @@ } ], "id": "course-of-action--cf93321e-c43a-432e-b2be-eef1a579b630", - "modified": "2021-01-06T18:30:53.782Z", + "modified": "2021-01-13T01:52:41.572Z", "name": "System Component Inventory | Automated Location Tracking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.782Z", + "created": "2021-01-13T01:52:41.572Z", "description": "(a) Assign system components to a system; and\n(b) Receive an acknowledgement from [Assignment: organization-defined personnel or roles] of this assignment.\n\nSystem components that are not assigned to a system may be unmanaged, lack the required protection, and become an organizational vulnerability.", "external_references": [ { @@ -4463,12 +4463,12 @@ } ], "id": "course-of-action--855b2687-03dc-4995-bdc0-0d89ac21a30b", - "modified": "2021-01-06T18:30:53.782Z", + "modified": "2021-01-13T01:52:41.572Z", "name": "System Component Inventory | Assignment of Components to Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.782Z", + "created": "2021-01-13T01:52:41.573Z", "description": "Develop, document, and implement a configuration management plan for the system that:\na. Addresses roles, responsibilities, and configuration management processes and procedures;\nb. Establishes a process for identifying configuration items throughout the system development life cycle and for managing the configuration of the configuration items;\nc. Defines the configuration items for the system and places the configuration items under configuration management;\nd. Is reviewed and approved by [Assignment: organization-defined personnel or roles]; and\ne. Protects the configuration management plan from unauthorized disclosure and modification.\n\nConfiguration management activities occur throughout the system development life cycle. As such, there are developmental configuration management activities (e.g., the control of code and software libraries) and operational configuration management activities (e.g., control of installed components and how the components are configured). Configuration management plans satisfy the requirements in configuration management policies while being tailored to individual systems. Configuration management plans define processes and procedures for how configuration management is used to support system development life cycle activities.\nConfiguration management plans are generated during the development and acquisition stage of the system development life cycle. The plans describe how to advance changes through change management processes; update configuration settings and baselines; maintain component inventories; control development, test, and operational environments; and develop, release, and update key documents.\nOrganizations can employ templates to help ensure the consistent and timely development and implementation of configuration management plans. Templates can represent a configuration management plan for the organization with subsets of the plan implemented on a system by system basis. Configuration management approval processes include the designation of key stakeholders responsible for reviewing and approving proposed changes to systems, and personnel who conduct security and privacy impact analyses prior to the implementation of changes to the systems. Configuration items are the system components, such as the hardware, software, firmware, and documentation to be configuration-managed. As systems continue through the system development life cycle, new configuration items may be identified, and some existing configuration items may no longer need to be under configuration control.", "external_references": [ { @@ -4477,12 +4477,12 @@ } ], "id": "course-of-action--4eb7fdea-e58c-4b83-bbe0-eec2c816c81e", - "modified": "2021-01-06T18:30:53.782Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "Configuration Management Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "Assign responsibility for developing the configuration management process to organizational personnel that are not directly involved in system development.\n\nIn the absence of dedicated configuration management teams assigned within organizations, system developers may be tasked with developing configuration management processes using personnel who are not directly involved in system development or system integration. This separation of duties ensures that organizations establish and maintain a sufficient degree of independence between the system development and integration processes and configuration management processes to facilitate quality control and more effective oversight.", "external_references": [ { @@ -4491,12 +4491,12 @@ } ], "id": "course-of-action--20accef9-e6be-49f9-8266-ebabb24f2490", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "Configuration Management Plan | Assignment of Responsibility", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "a. Use software and associated documentation in accordance with contract agreements and copyright laws;\nb. Track the use of software and associated documentation protected by quantity licenses to control copying and distribution; and\nc. Control and document the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.\n\nSoftware license tracking can be accomplished by manual or automated methods, depending on organizational needs. Examples of contract agreements include software license agreements and non-disclosure agreements.", "external_references": [ { @@ -4505,12 +4505,12 @@ } ], "id": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "Software Usage Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "Establish the following restrictions on the use of open-source software: [Assignment: organization-defined restrictions].\n\nOpen-source software refers to software that is available in source code form. Certain software rights normally reserved for copyright holders are routinely provided under software license agreements that permit individuals to study, change, and improve the software. From a security perspective, the major advantage of open-source software is that it provides organizations with the ability to examine the source code. In some cases, there is an online community associated with the software that inspects, tests, updates, and reports on issues found in software on an ongoing basis. However, remediating vulnerabilities in open-source software may be problematic. There may also be licensing issues associated with open-source software, including the constraints on derivative use of such software. Open-source software that is available only in binary form may increase the level of risk in using such software.", "external_references": [ { @@ -4519,12 +4519,12 @@ } ], "id": "course-of-action--6ebaa3ed-7571-4826-abb1-693b0c036368", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "Software Usage Restrictions | Open-source Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "a. Establish [Assignment: organization-defined policies] governing the installation of software by users;\nb. Enforce software installation policies through the following methods: [Assignment: organization-defined methods]; and\nc. Monitor policy compliance [Assignment: organization-defined frequency].\n\nIf provided the necessary privileges, users can install software in organizational systems. To maintain control over the software installed, organizations identify permitted and prohibited actions regarding software installation. Permitted software installations include updates and security patches to existing software and downloading new applications from organization-approved 'app stores.' Prohibited software installations include software with unknown or suspect pedigrees or software that organizations consider potentially malicious. Policies selected for governing user-installed software are organization-developed or provided by some external entity. Policy enforcement methods can include procedural methods and automated methods.", "external_references": [ { @@ -4533,12 +4533,12 @@ } ], "id": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "User-installed Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.574Z", "description": "", "external_references": [ { @@ -4547,12 +4547,12 @@ } ], "id": "course-of-action--8c12c245-d678-4702-b06d-7a645a037281", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.574Z", "name": "User-installed Software | Alerts for Unauthorized Installations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.784Z", + "created": "2021-01-13T01:52:41.574Z", "description": "Allow user installation of software only with explicit privileged status.\n\nPrivileged status can be obtained, for example, by serving in the role of system administrator.", "external_references": [ { @@ -4561,12 +4561,12 @@ } ], "id": "course-of-action--4acb374b-d2a1-4df7-bf84-1391699d2f1a", - "modified": "2021-01-06T18:30:53.784Z", + "modified": "2021-01-13T01:52:41.574Z", "name": "User-installed Software | Software Installation with Privileged Status", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.784Z", + "created": "2021-01-13T01:52:41.574Z", "description": "Enforce and monitor compliance with software installation policies using [Assignment: organization-defined automated mechanisms].\n\nOrganizations enforce and monitor compliance with software installation policies using automated mechanisms to more quickly detect and respond to unauthorized software installation which can be an indicator of an internal or external hostile attack.", "external_references": [ { @@ -4575,12 +4575,12 @@ } ], "id": "course-of-action--b975df5a-ad00-433c-83b4-11b067b84c54", - "modified": "2021-01-06T18:30:53.784Z", + "modified": "2021-01-13T01:52:41.574Z", "name": "User-installed Software | Automated Enforcement and Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.784Z", + "created": "2021-01-13T01:52:41.574Z", "description": "a. Identify and document the location of [Assignment: organization-defined information] and the specific system components on which the information is processed and stored;\nb. Identify and document the users who have access to the system and system components where the information is processed and stored; and\nc. Document changes to the location (i.e., system or system components) where the information is processed and stored.\n\nInformation location addresses the need to understand where information is being processed and stored. Information location includes identifying where specific information types and information reside in system components and how information is being processed so that information flow can be understood and adequate protection and policy management provided for such information and system components. The security category of the information is also a factor in determining the controls necessary to protect the information and the system component where the information resides (see FIPS 199). The location of the information and system components is also a factor in the architecture and design of the system (see SA-4, SA-8, SA-17).", "external_references": [ { @@ -4589,12 +4589,12 @@ } ], "id": "course-of-action--069f8099-e1d4-4323-a29d-b76d67f40e00", - "modified": "2021-01-06T18:30:53.784Z", + "modified": "2021-01-13T01:52:41.574Z", "name": "Information Location", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.784Z", + "created": "2021-01-13T01:52:41.574Z", "description": "Use automated tools to identify [Assignment: organization-defined information by information type] on [Assignment: organization-defined system components] to ensure controls are in place to protect organizational information and individual privacy.\n\nThe use of automated tools helps to increase the effectiveness and efficiency of the information location capability implemented within the system. Automation also helps organizations manage the data produced during information location activities and share such information across the organization. The output of automated information location tools can be used to guide and inform system architecture and design decisions.", "external_references": [ { @@ -4603,12 +4603,12 @@ } ], "id": "course-of-action--aa04d897-76b0-489e-8e04-526ff0cd26a5", - "modified": "2021-01-06T18:30:53.784Z", + "modified": "2021-01-13T01:52:41.574Z", "name": "Information Location | Automated Tools to Support Information Location", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "Develop and document a map of system data actions.\n\nData actions are system operations that process personally identifiable information. The processing of such information encompasses the full information life cycle, which includes collection, generation, transformation, use, disclosure, retention, and disposal. A map of system data actions includes discrete data actions, elements of personally identifiable information being processed in the data actions, system components involved in the data actions, and the owners or operators of the system components. Understanding what personally identifiable information is being processed (e.g., the sensitivity of the personally identifiable information), how personally identifiable information is being processed (e.g., if the data action is visible to the individual or is processed in another part of the system), and by whom (e.g., individuals may have different privacy perceptions based on the entity that is processing the personally identifiable information) provides a number of contextual factors that are important to assessing the degree of privacy risk created by the system. Data maps can be illustrated in different ways, and the level of detail may vary based on the mission and business needs of the organization. The data map may be an overlay of any system design artifact that the organization is using. The development of this map may necessitate coordination between the privacy and security programs regarding the covered data actions and the components that are identified as part of the system.", "external_references": [ { @@ -4617,12 +4617,12 @@ } ], "id": "course-of-action--50a155da-1ebe-487d-87e8-3b3f810e6975", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Data Action Mapping", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "Prevent the installation of [Assignment: organization-defined software and firmware components] without verification that the component has been digitally signed using a certificate that is recognized and approved by the organization.\n\nSoftware and firmware components prevented from installation unless signed with recognized and approved certificates include software and firmware version updates, patches, service packs, device drivers, and basic input/output system updates. Organizations can identify applicable software and firmware components by type, by specific items, or a combination of both. Digital signatures and organizational verification of such signatures is a method of code authentication.", "external_references": [ { @@ -4631,12 +4631,12 @@ } ], "id": "course-of-action--5200be51-f1ce-45b8-8b66-043ab4287d9d", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Signed Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] contingency planning policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the contingency planning policy and the associated contingency planning controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the contingency planning policy and procedures; and\nc. Review and update the current contingency planning:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nContingency planning policy and procedures address the controls in the CP family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of contingency planning policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to contingency planning policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -4645,12 +4645,12 @@ } ], "id": "course-of-action--9e0cd9b1-a585-4aee-9e44-7ad3f5af1bf3", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "a. Develop a contingency plan for the system that:\n1. Identifies essential mission and business functions and associated contingency requirements;\n2. Provides recovery objectives, restoration priorities, and metrics;\n3. Addresses contingency roles, responsibilities, assigned individuals with contact information;\n4. Addresses maintaining essential mission and business functions despite a system disruption, compromise, or failure;\n5. Addresses eventual, full system restoration without deterioration of the controls originally planned and implemented;\n6. Addresses the sharing of contingency information; and\n7. Is reviewed and approved by [Assignment: organization-defined personnel or roles];\nb. Distribute copies of the contingency plan to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\nc. Coordinate contingency planning activities with incident handling activities;\nd. Review the contingency plan for the system [Assignment: organization-defined frequency];\ne. Update the contingency plan to address changes to the organization, system, or environment of operation and problems encountered during contingency plan implementation, execution, or testing;\nf. Communicate contingency plan changes to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\ng. Incorporate lessons learned from contingency plan testing, training, or actual contingency activities into contingency testing and training; and\nh. Protect the contingency plan from unauthorized disclosure and modification.\n\nContingency planning for systems is part of an overall program for achieving continuity of operations for organizational mission and business functions. Contingency planning addresses system restoration and implementation of alternative mission or business processes when systems are compromised or breached. Contingency planning is considered throughout the system development life cycle and is a fundamental part of the system design. Systems can be designed for redundancy, to provide backup capabilities, and for resilience. Contingency plans reflect the degree of restoration required for organizational systems since not all systems need to fully recover to achieve the level of continuity of operations desired. System recovery objectives reflect applicable laws, executive orders, directives, regulations, policies, standards, guidelines, organizational risk tolerance, and system impact level.\nActions addressed in contingency plans include orderly system degradation, system shutdown, fallback to a manual mode, alternate information flows, and operating in modes reserved for when systems are under attack. By coordinating contingency planning with incident handling activities, organizations ensure that the necessary planning activities are in place and activated in the event of an incident. Organizations consider whether continuity of operations during an incident conflicts with the capability to automatically disable the system, as specified in IR-4(5). Incident response planning is part of contingency planning for organizations and is addressed in the IR (Incident Response) family.", "external_references": [ { @@ -4659,12 +4659,12 @@ } ], "id": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Contingency Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "Coordinate contingency plan development with organizational elements responsible for related plans.\n\nPlans that are related to contingency plans include Business Continuity Plans, Disaster Recovery Plans, Critical Infrastructure Plans, Continuity of Operations Plans, Crisis Communications Plans, Insider Threat Implementation Plans, Data Breach Response Plans, Cyber Incident Response Plans, Breach Response Plans, and Occupant Emergency Plans.", "external_references": [ { @@ -4673,12 +4673,12 @@ } ], "id": "course-of-action--5ff51d5d-c03b-49fc-98fb-2f7cd991bc40", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Contingency Plan | Coordinate with Related Plans", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "Conduct capacity planning so that necessary capacity for information processing, telecommunications, and environmental support exists during contingency operations.\n\nCapacity planning is needed because different threats can result in a reduction of the available processing, telecommunications, and support services intended to support essential mission and business functions. Organizations anticipate degraded operations during contingency operations and factor the degradation into capacity planning. For capacity planning, environmental support refers to any environmental factor for which the organization determines that it needs to provide support in a contingency situation, even if in a degraded state. Such determinations are based on an organizational assessment of risk, system categorization (impact level), and organizational risk tolerance.", "external_references": [ { @@ -4687,12 +4687,12 @@ } ], "id": "course-of-action--7411ab00-8b95-4baf-8659-38d87d3469fa", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Contingency Plan | Capacity Planning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "Plan for the resumption of [Selection: all; essential] mission and business functions within [Assignment: organization-defined time period] of contingency plan activation.\n\nOrganizations may choose to conduct contingency planning activities to resume mission and business functions as part of business continuity planning or as part of business impact analyses. Organizations prioritize the resumption of mission and business functions. The time period for resuming mission and business functions may be dependent on the severity and extent of the disruptions to the system and its supporting infrastructure.", "external_references": [ { @@ -4701,12 +4701,12 @@ } ], "id": "course-of-action--267a2034-24d0-40f3-b8dc-c53db3d2885e", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Resume Mission and Business Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "", "external_references": [ { @@ -4715,12 +4715,12 @@ } ], "id": "course-of-action--196579e1-2e1f-4414-ad54-594bd3c68a8c", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Resume All Mission and Business Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "Plan for the continuance of [Selection: all; essential] mission and business functions with minimal or no loss of operational continuity and sustains that continuity until full system restoration at primary processing and/or storage sites.\n\nOrganizations may choose to conduct the contingency planning activities to continue mission and business functions as part of business continuity planning or business impact analyses. Primary processing and/or storage sites defined by organizations as part of contingency planning may change depending on the circumstances associated with the contingency.", "external_references": [ { @@ -4729,12 +4729,12 @@ } ], "id": "course-of-action--02c3bfff-d71e-41ae-b8f6-ddb1a71fc900", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Continue Mission and Business Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "Plan for the transfer of [Selection: all; essential] mission and business functions to alternate processing and/or storage sites with minimal or no loss of operational continuity and sustain that continuity through system restoration to primary processing and/or storage sites.\n\nOrganizations may choose to conduct contingency planning activities for alternate processing and storage sites as part of business continuity planning or business impact analyses. Primary processing and/or storage sites defined by organizations as part of contingency planning may change depending on the circumstances associated with the contingency.", "external_references": [ { @@ -4743,12 +4743,12 @@ } ], "id": "course-of-action--bb65853c-2082-44cb-aa71-6f4831300378", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Alternate Processing and Storage Sites", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "Coordinate the contingency plan with the contingency plans of external service providers to ensure that contingency requirements can be satisfied.\n\nWhen the capability of an organization to carry out its mission and business functions is dependent on external service providers, developing a comprehensive and timely contingency plan may become more challenging. When mission and business functions are dependent on external service providers, organizations coordinate contingency planning activities with the external entities to ensure that the individual plans reflect the overall contingency needs of the organization.", "external_references": [ { @@ -4757,12 +4757,12 @@ } ], "id": "course-of-action--8e5c292b-c67a-4849-97dc-3693e3ef7cf1", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Coordinate with External Service Providers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.786Z", + "created": "2021-01-13T01:52:41.576Z", "description": "Identify critical system assets supporting [Selection: all; essential] mission and business functions.\n\nOrganizations may choose to identify critical assets as part of criticality analysis, business continuity planning, or business impact analyses. Organizations identify critical system assets so that additional controls can be employed (beyond the controls routinely implemented) to help ensure that organizational mission and business functions can continue to be conducted during contingency operations. The identification of critical information assets also facilitates the prioritization of organizational resources. Critical system assets include technical and operational aspects. Technical aspects include system components, information technology services, information technology products, and mechanisms. Operational aspects include procedures (i.e., manually executed operations) and personnel (i.e., individuals operating technical controls and/or executing manual procedures). Organizational program protection plans can assist in identifying critical assets. If critical assets are resident within or supported by external service providers, organizations consider implementing CP-2(7) as a control enhancement.", "external_references": [ { @@ -4771,12 +4771,12 @@ } ], "id": "course-of-action--e5eae2d2-7ecd-4f4c-9dd3-5d0732dfd22e", - "modified": "2021-01-06T18:30:53.786Z", + "modified": "2021-01-13T01:52:41.576Z", "name": "Contingency Plan | Identify Critical Assets", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "a. Provide contingency training to system users consistent with assigned roles and responsibilities:\n1. Within [Assignment: organization-defined time period] of assuming a contingency role or responsibility;\n2. When required by system changes; and\n3. [Assignment: organization-defined frequency] thereafter; and\nb. Review and update contingency training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nContingency training provided by organizations is linked to the assigned roles and responsibilities of organizational personnel to ensure that the appropriate content and level of detail is included in such training. For example, some individuals may only need to know when and where to report for duty during contingency operations and if normal duties are affected; system administrators may require additional training on how to establish systems at alternate processing and storage sites; and organizational officials may receive more specific training on how to conduct mission-essential functions in designated off-site locations and how to establish communications with other governmental entities for purposes of coordination on contingency-related activities. Training for contingency roles or responsibilities reflects the specific continuity requirements in the contingency plan. Events that may precipitate an update to contingency training content include, but are not limited to, contingency plan testing or an actual contingency (lessons learned), assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. At the discretion of the organization, participation in a contingency plan test or exercise, including lessons learned sessions subsequent to the test or exercise, may satisfy contingency plan training requirements.", "external_references": [ { @@ -4785,12 +4785,12 @@ } ], "id": "course-of-action--2f86657a-cb03-4c13-a44e-8b6ae8fdf1d6", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "Incorporate simulated events into contingency training to facilitate effective response by personnel in crisis situations.\n\nThe use of simulated events creates an environment for personnel to experience actual threat events, including cyber-attacks that disable websites, ransomware attacks that encrypt organizational data on servers, hurricanes that damage or destroy organizational facilities, or hardware or software failures.", "external_references": [ { @@ -4799,12 +4799,12 @@ } ], "id": "course-of-action--b027df7d-ece3-4832-9eb7-be29758af5bf", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Training | Simulated Events", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "Employ mechanisms used in operations to provide a more thorough and realistic contingency training environment.\n\nOperational mechanisms refer to processes that have been established to accomplish an organizational goal or a system that supports a particular organizational mission or business objective. Actual mission and business processes, systems, and/or facilities may be used to generate simulated events and enhance the realism of simulated events during contingency training.", "external_references": [ { @@ -4813,12 +4813,12 @@ } ], "id": "course-of-action--6a685ebe-2a98-43db-aa1c-c4abb7ddd24e", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Training | Mechanisms Used in Training Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "a. Test the contingency plan for the system [Assignment: organization-defined frequency] using the following tests to determine the effectiveness of the plan and the readiness to execute the plan: [Assignment: organization-defined tests].\nb. Review the contingency plan test results; and\nc. Initiate corrective actions, if needed.\n\nMethods for testing contingency plans to determine the effectiveness of the plans and identify potential weaknesses include checklists, walk-through and tabletop exercises, simulations (parallel or full interrupt), and comprehensive exercises. Organizations conduct testing based on the requirements in contingency plans and include a determination of the effects on organizational operations, assets, and individuals due to contingency operations. Organizations have flexibility and discretion in the breadth, depth, and timelines of corrective actions.", "external_references": [ { @@ -4827,12 +4827,12 @@ } ], "id": "course-of-action--c474e6b3-12fa-464c-9729-ec1b2e56585f", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Plan Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "Coordinate contingency plan testing with organizational elements responsible for related plans.\n\nPlans related to contingency planning for organizational systems include Business Continuity Plans, Disaster Recovery Plans, Continuity of Operations Plans, Crisis Communications Plans, Critical Infrastructure Plans, Cyber Incident Response Plans, and Occupant Emergency Plans. Coordination of contingency plan testing does not require organizations to create organizational elements to handle related plans or to align such elements with specific plans. However, it does require that if such organizational elements are responsible for related plans, organizations coordinate with those elements.", "external_references": [ { @@ -4841,12 +4841,12 @@ } ], "id": "course-of-action--b31fc99c-d7b2-45e2-8cea-3143c2cc0e8b", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Plan Testing | Coordinate with Related Plans", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.577Z", "description": "Test the contingency plan at the alternate processing site:\n(a) To familiarize contingency personnel with the facility and available resources; and\n(b) To evaluate the capabilities of the alternate processing site to support contingency operations.\n\nConditions at the alternate processing site may be significantly different than the conditions at the primary site. Having the opportunity to visit the alternate site and experience the actual capabilities available at the site can provide valuable information on potential vulnerabilities that could affect essential organizational mission and business functions. The on-site visit can also provide an opportunity to refine the contingency plan to address the vulnerabilities discovered during testing.", "external_references": [ { @@ -4855,12 +4855,12 @@ } ], "id": "course-of-action--c8afbfa0-3dde-47b7-a823-e914ba1fd66d", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.577Z", "name": "Contingency Plan Testing | Alternate Processing Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.787Z", + "created": "2021-01-13T01:52:41.578Z", "description": "Test the contingency plan using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms facilitate thorough and effective testing of contingency plans by providing more complete coverage of contingency issues, selecting more realistic test scenarios and environments, and effectively stressing the system and supported mission and business functions.", "external_references": [ { @@ -4869,12 +4869,12 @@ } ], "id": "course-of-action--77ad6a7d-38a0-451a-866f-462ecba1009c", - "modified": "2021-01-06T18:30:53.787Z", + "modified": "2021-01-13T01:52:41.578Z", "name": "Contingency Plan Testing | Automated Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.578Z", "description": "Include a full recovery and reconstitution of the system to a known state as part of contingency plan testing.\n\nRecovery is executing contingency plan activities to restore organizational mission and business functions. Reconstitution takes place following recovery and includes activities for returning systems to fully operational states. Organizations establish a known state for systems that includes system state information for hardware, software programs, and data. Preserving system state information facilitates system restart and return to the operational mode of organizations with less disruption of mission and business processes.", "external_references": [ { @@ -4883,12 +4883,12 @@ } ], "id": "course-of-action--529dc016-fc00-4909-961f-e3585c3276d9", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.578Z", "name": "Contingency Plan Testing | Full Recovery and Reconstitution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.578Z", "description": "Employ [Assignment: organization-defined mechanisms] to [Assignment: organization-defined system or system component] to disrupt and adversely affect the system or system component.\n\nOften, the best method of assessing system resilience is to disrupt the system in some manner. The mechanisms used by the organization could disrupt system functions or system services in many ways, including terminating or disabling critical system components, changing the configuration of system components, degrading critical functionality (e.g., restricting network bandwidth), or altering privileges. Automated, on-going, and simulated cyber-attacks and service disruptions can reveal unexpected functional dependencies and help the organization determine its ability to ensure resilience in the face of an actual cyber-attack.", "external_references": [ { @@ -4897,12 +4897,12 @@ } ], "id": "course-of-action--7216bbd3-936a-413a-b8b5-e675513ab6f3", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.578Z", "name": "Contingency Plan Testing | Self-challenge", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.578Z", "description": "", "external_references": [ { @@ -4911,12 +4911,12 @@ } ], "id": "course-of-action--8d8bb685-a36b-4d65-9dfe-b418bb956084", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.578Z", "name": "Contingency Plan Update", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.579Z", "description": "a. Establish an alternate storage site, including necessary agreements to permit the storage and retrieval of system backup information; and\nb. Ensure that the alternate storage site provides controls equivalent to that of the primary site.\n\nAlternate storage sites are geographically distinct from primary storage sites and maintain duplicate copies of information and data if the primary storage site is not available. Similarly, alternate processing sites provide processing capability if the primary processing site is not available. Geographically distributed architectures that support contingency requirements may be considered alternate storage sites. Items covered by alternate storage site agreements include environmental conditions at the alternate sites, access rules for systems and facilities, physical and environmental protection requirements, and coordination of delivery and retrieval of backup media. Alternate storage sites reflect the requirements in contingency plans so that organizations can maintain essential mission and business functions despite compromise, failure, or disruption in organizational systems.", "external_references": [ { @@ -4925,12 +4925,12 @@ } ], "id": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Storage Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.579Z", "description": "Identify an alternate storage site that is sufficiently separated from the primary storage site to reduce susceptibility to the same threats.\n\nThreats that affect alternate storage sites are defined in organizational risk assessments and include natural disasters, structural failures, hostile attacks, and errors of omission or commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate storage sites based on the types of threats that are of concern. For threats such as hostile attacks, the degree of separation between sites is less relevant.", "external_references": [ { @@ -4939,12 +4939,12 @@ } ], "id": "course-of-action--376b8067-8814-46dd-a1ad-8bc33b9d7e3c", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Storage Site | Separation from Primary Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.579Z", "description": "Configure the alternate storage site to facilitate recovery operations in accordance with recovery time and recovery point objectives.\n\nOrganizations establish recovery time and recovery point objectives as part of contingency planning. Configuration of the alternate storage site includes physical facilities and the systems supporting recovery operations that ensure accessibility and correct execution.", "external_references": [ { @@ -4953,12 +4953,12 @@ } ], "id": "course-of-action--0eb42431-efeb-49dd-b33d-7f52948c1fe2", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Storage Site | Recovery Time and Recovery Point Objectives", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.579Z", "description": "Identify potential accessibility problems to the alternate storage site in the event of an area-wide disruption or disaster and outline explicit mitigation actions.\n\nArea-wide disruptions refer to those types of disruptions that are broad in geographic scope with such determinations made by organizations based on organizational assessments of risk. Explicit mitigation actions include duplicating backup information at other alternate storage sites if access problems occur at originally designated alternate sites or planning for physical access to retrieve backup information if electronic accessibility to the alternate site is disrupted.", "external_references": [ { @@ -4967,12 +4967,12 @@ } ], "id": "course-of-action--a842881d-4668-4a15-a259-4cb9f4e819fe", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Storage Site | Accessibility", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.579Z", "description": "a. Establish an alternate processing site, including necessary agreements to permit the transfer and resumption of [Assignment: organization-defined system operations] for essential mission and business functions within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] when the primary processing capabilities are unavailable;\nb. Make available at the alternate processing site, the equipment and supplies required to transfer and resume operations or put contracts in place to support delivery to the site within the organization-defined time period for transfer and resumption; and\nc. Provide controls at the alternate processing site that are equivalent to those at the primary site.\n\nAlternate processing sites are geographically distinct from primary processing sites and provide processing capability if the primary processing site is not available. The alternate processing capability may be addressed using a physical processing site or other alternatives, such as failover to a cloud-based service provider or other internally or externally provided processing service. Geographically distributed architectures that support contingency requirements may also be considered alternate processing sites. Controls that are covered by alternate processing site agreements include the environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and the coordination for the transfer and assignment of personnel. Requirements are allocated to alternate processing sites that reflect the requirements in contingency plans to maintain essential mission and business functions despite disruption, compromise, or failure in organizational systems.", "external_references": [ { @@ -4981,12 +4981,12 @@ } ], "id": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Processing Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.579Z", "description": "Identify an alternate processing site that is sufficiently separated from the primary processing site to reduce susceptibility to the same threats.\n\nThreats that affect alternate processing sites are defined in organizational assessments of risk and include natural disasters, structural failures, hostile attacks, and errors of omission or commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate processing sites based on the types of threats that are of concern. For threats such as hostile attacks, the degree of separation between sites is less relevant.", "external_references": [ { @@ -4995,12 +4995,12 @@ } ], "id": "course-of-action--82ff9e07-f2d7-49b6-b313-450768a15d04", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Processing Site | Separation from Primary Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.579Z", "description": "Identify potential accessibility problems to alternate processing sites in the event of an area-wide disruption or disaster and outlines explicit mitigation actions.\n\nArea-wide disruptions refer to those types of disruptions that are broad in geographic scope with such determinations made by organizations based on organizational assessments of risk.", "external_references": [ { @@ -5009,12 +5009,12 @@ } ], "id": "course-of-action--e99e31ba-ab93-4e5b-a31c-bf798c65c417", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Processing Site | Accessibility", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.580Z", "description": "Develop alternate processing site agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives).\n\nPriority of service agreements refer to negotiated agreements with service providers that ensure that organizations receive priority treatment consistent with their availability requirements and the availability of information resources for logical alternate processing and/or at the physical alternate processing site. Organizations establish recovery time objectives as part of contingency planning.", "external_references": [ { @@ -5023,12 +5023,12 @@ } ], "id": "course-of-action--3a8a8370-044a-4ae7-92db-4894e3dfcbc6", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Alternate Processing Site | Priority of Service", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.580Z", "description": "Prepare the alternate processing site so that the site can serve as the operational site supporting essential mission and business functions.\n\nSite preparation includes establishing configuration settings for systems at the alternate processing site consistent with the requirements for such settings at the primary site and ensuring that essential supplies and logistical considerations are in place.", "external_references": [ { @@ -5037,12 +5037,12 @@ } ], "id": "course-of-action--b7da1d5e-c76b-437d-8a0c-2255baf6a844", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Alternate Processing Site | Preparation for Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.580Z", "description": "", "external_references": [ { @@ -5051,12 +5051,12 @@ } ], "id": "course-of-action--42c529a5-80f3-4d69-845d-e5cf02df080a", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Alternate Processing Site | Equivalent Information Security Safeguards", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.580Z", "description": "Plan and prepare for circumstances that preclude returning to the primary processing site.\n\nThere may be situations that preclude an organization from returning to the primary processing site such as if a natural disaster (e.g., flood or a hurricane) damaged or destroyed a facility and it was determined that rebuilding in the same location was not prudent.", "external_references": [ { @@ -5065,12 +5065,12 @@ } ], "id": "course-of-action--d681b765-2cd4-4334-a9a7-a8ae67436641", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Alternate Processing Site | Inability to Return to Primary Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.580Z", "description": "Establish alternate telecommunications services, including necessary agreements to permit the resumption of [Assignment: organization-defined system operations] for essential mission and business functions within [Assignment: organization-defined time period] when the primary telecommunications capabilities are unavailable at either the primary or alternate processing or storage sites.\n\nTelecommunications services (for data and voice) for primary and alternate processing and storage sites are in scope for CP-8. Alternate telecommunications services reflect the continuity requirements in contingency plans to maintain essential mission and business functions despite the loss of primary telecommunications services. Organizations may specify different time periods for primary or alternate sites. Alternate telecommunications services include additional organizational or commercial ground-based circuits or lines, network-based approaches to telecommunications, or the use of satellites. Organizations consider factors such as availability, quality of service, and access when entering into alternate telecommunications agreements.", "external_references": [ { @@ -5079,12 +5079,12 @@ } ], "id": "course-of-action--4d2d1c92-f62a-417c-8743-f77aa327b233", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Telecommunications Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.580Z", "description": "(a) Develop primary and alternate telecommunications service agreements that contain priority-of-service provisions in accordance with availability requirements (including recovery time objectives); and\n(b) Request Telecommunications Service Priority for all telecommunications services used for national security emergency preparedness if the primary and/or alternate telecommunications services are provided by a common carrier.\n\nOrganizations consider the potential mission or business impact in situations where telecommunications service providers are servicing other organizations with similar priority of service provisions. Telecommunications Service Priority (TSP) is a Federal Communications Commission (FCC) program that directs telecommunications service providers (e.g., wireline and wireless phone companies) to give preferential treatment to users enrolled in the program when they need to add new lines or have their lines restored following a disruption of service, regardless of the cause. The FCC sets the rules and policies for the TSP program, and the Department of Homeland Security manages the TSP program. The TSP program is always in effect and not contingent on a major disaster or attack taking place. Federal sponsorship is required to enroll in the TSP program.", "external_references": [ { @@ -5093,12 +5093,12 @@ } ], "id": "course-of-action--2fe74810-8467-4c84-b29e-0216a99afe3a", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Telecommunications Services | Priority of Service Provisions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.580Z", "description": "Obtain alternate telecommunications services to reduce the likelihood of sharing a single point of failure with primary telecommunications services.\n\nIn certain circumstances, telecommunications service providers or services may share the same physical lines, which increases the vulnerability of a single failure point. It is important to have provider transparency for the actual physical transmission capability for telecommunication services.", "external_references": [ { @@ -5107,12 +5107,12 @@ } ], "id": "course-of-action--dcf47b5a-34ef-4be5-8319-21f63a6bd2fd", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.580Z", "name": "Telecommunications Services | Single Points of Failure", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.790Z", + "created": "2021-01-13T01:52:41.581Z", "description": "Obtain alternate telecommunications services from providers that are separated from primary service providers to reduce susceptibility to the same threats.\n\nThreats that affect telecommunications services are defined in organizational assessments of risk and include natural disasters, structural failures, cyber or physical attacks, and errors of omission or commission. Organizations can reduce common susceptibilities by minimizing shared infrastructure among telecommunications service providers and achieving sufficient geographic separation between services. Organizations may consider using a single service provider in situations where the service provider can provide alternate telecommunications services that meet the separation needs addressed in the risk assessment.", "external_references": [ { @@ -5121,12 +5121,12 @@ } ], "id": "course-of-action--718ececd-8c7e-4f79-88c8-5d5a5086ea9f", - "modified": "2021-01-06T18:30:53.790Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "Telecommunications Services | Separation of Primary and Alternate Providers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "(a) Require primary and alternate telecommunications service providers to have contingency plans;\n(b) Review provider contingency plans to ensure that the plans meet organizational contingency requirements; and\n(c) Obtain evidence of contingency testing and training by providers [Assignment: organization-defined frequency].\n\nReviews of provider contingency plans consider the proprietary nature of such plans. In some situations, a summary of provider contingency plans may be sufficient evidence for organizations to satisfy the review requirement. Telecommunications service providers may also participate in ongoing disaster recovery exercises in coordination with the Department of Homeland Security and state and local governments. Organizations may use these types of activities to satisfy evidentiary requirements related to service provider contingency plan reviews, testing, and training.", "external_references": [ { @@ -5135,12 +5135,12 @@ } ], "id": "course-of-action--5170110a-33ab-4974-8c3f-e484bde123f5", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "Telecommunications Services | Provider Contingency Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "Test alternate telecommunication services [Assignment: organization-defined frequency].\n\nAlternate telecommunications services testing is arranged through contractual agreements with service providers. The testing may occur in parallel with normal operations to ensure that there is no degradation in organizational missions or functions.", "external_references": [ { @@ -5149,12 +5149,12 @@ } ], "id": "course-of-action--56f68715-9da9-4d0f-8ced-0c9b2cc6a744", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "Telecommunications Services | Alternate Telecommunication Service Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "a. Conduct backups of user-level information contained in [Assignment: organization-defined system components]\n [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\nb. Conduct backups of system-level information contained in the system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\nc. Conduct backups of system documentation, including security- and privacy-related documentation [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]; and\nd. Protect the confidentiality, integrity, and availability of backup information.\n\nSystem-level information includes system state information, operating system software, middleware, application software, and licenses. User-level information includes information other than system-level information. Mechanisms employed to protect the integrity of system backups include digital signatures and cryptographic hashes. Protection of system backup information while in transit is addressed by MP-5 and SC-8. System backups reflect the requirements in contingency plans as well as other organizational requirements for backing up information. Organizations may be subject to laws, executive orders, directives, regulations, or policies with requirements regarding specific categories of information (e.g., personal health information). Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.", "external_references": [ { @@ -5163,12 +5163,12 @@ } ], "id": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "System Backup", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "Test backup information [Assignment: organization-defined frequency] to verify media reliability and information integrity.\n\nOrganizations need assurance that backup information can be reliably retrieved. Reliability pertains to the systems and system components where the backup information is stored, the operations used to retrieve the information, and the integrity of the information being retrieved. Independent and specialized tests can be used for each of the aspects of reliability. For example, decrypting and transporting (or transmitting) a random sample of backup files from the alternate storage or backup site and comparing the information to the same information at the primary processing site can provide such assurance.", "external_references": [ { @@ -5177,12 +5177,12 @@ } ], "id": "course-of-action--8050f10c-7e6c-4290-8b05-d02b4aeefd6b", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "System Backup | Testing for Reliability and Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "Use a sample of backup information in the restoration of selected system functions as part of contingency plan testing.\n\nOrganizations need assurance that system functions can be restored correctly and can support established organizational missions. To ensure that the selected system functions are thoroughly exercised during contingency plan testing, a sample of backup information is retrieved to determine whether the functions are operating as intended. Organizations can determine the sample size for the functions and backup information based on the level of assurance needed.", "external_references": [ { @@ -5191,12 +5191,12 @@ } ], "id": "course-of-action--b7cf4a6e-a5d0-4649-9811-f37ca1318314", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "System Backup | Test Restoration Using Sampling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Store backup copies of [Assignment: organization-defined critical system software and other security-related information] in a separate facility or in a fire rated container that is not collocated with the operational system.\n\nSeparate storage for critical information applies to all critical information regardless of the type of backup storage media. Critical system software includes operating systems, middleware, cryptographic key management systems, and intrusion detection systems. Security-related information includes inventories of system hardware, software, and firmware components. Alternate storage sites, including geographically distributed architectures, serve as separate storage facilities for organizations. Organizations may provide separate storage by implementing automated backup processes at alternative storage sites (e.g., data centers). The General Services Administration (GSA) establishes standards and specifications for security and fire rated containers.", "external_references": [ { @@ -5205,12 +5205,12 @@ } ], "id": "course-of-action--a44a85cd-a34a-4b3c-a29e-f4675e49469e", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Separate Storage for Critical Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.582Z", "description": "", "external_references": [ { @@ -5219,12 +5219,12 @@ } ], "id": "course-of-action--8d6083ec-0246-4440-a18f-cc9083390988", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Protection from Unauthorized Modification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Transfer system backup information to the alternate storage site [Assignment: organization-defined time period and transfer rate consistent with the recovery time and recovery point objectives].\n\nSystem backup information can be transferred to alternate storage sites either electronically or by the physical shipment of storage media.", "external_references": [ { @@ -5233,12 +5233,12 @@ } ], "id": "course-of-action--946f5958-08f8-478b-a70b-9ee86d6a5d56", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Transfer to Alternate Storage Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Conduct system backup by maintaining a redundant secondary system that is not collocated with the primary system and that can be activated without loss of information or disruption to operations.\n\nThe effect of system backup can be achieved by maintaining a redundant secondary system that mirrors the primary system, including the replication of information. If this type of redundancy is in place and there is sufficient geographic separation between the two systems, the secondary system can also serve as the alternate processing site.", "external_references": [ { @@ -5247,12 +5247,12 @@ } ], "id": "course-of-action--6305b166-117c-4761-b659-38272a0d14de", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Redundant Secondary System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Enforce dual authorization for the deletion or destruction of [Assignment: organization-defined backup information].\n\nDual authorization ensures that deletion or destruction of backup information cannot occur unless two qualified individuals carry out the task. Individuals deleting or destroying backup information possess the skills or expertise to determine if the proposed deletion or destruction of information reflects organizational policies and procedures. Dual authorization may also be known as two-person control. To reduce the risk of collusion, organizations consider rotating dual authorization duties to other individuals.", "external_references": [ { @@ -5261,12 +5261,12 @@ } ], "id": "course-of-action--2a4d6fcd-7c5d-49b1-8ccd-90877a508f32", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Dual Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of [Assignment: organization-defined backup information].\n\nThe selection of cryptographic mechanisms is based on the need to protect the confidentiality and integrity of backup information. The strength of mechanisms selected is commensurate with the security category or classification of the information. Cryptographic protection applies to system backup information in storage at both primary and alternate locations. Organizations that implement cryptographic mechanisms to protect information at rest also consider cryptographic key management solutions.", "external_references": [ { @@ -5275,12 +5275,12 @@ } ], "id": "course-of-action--ab393cfd-c5c3-4351-9ae7-514017b35cff", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Backup | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Provide for the recovery and reconstitution of the system to a known state within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] after a disruption, compromise, or failure.\n\nRecovery is executing contingency plan activities to restore organizational mission and business functions. Reconstitution takes place following recovery and includes activities for returning systems to fully operational states. Recovery and reconstitution operations reflect mission and business priorities; recovery point, recovery time, and reconstitution objectives; and organizational metrics consistent with contingency plan requirements. Reconstitution includes the deactivation of interim system capabilities that may have been needed during recovery operations. Reconstitution also includes assessments of fully restored system capabilities, reestablishment of continuous monitoring activities, system reauthorization (if required), and activities to prepare the system and organization for future disruptions, breaches, compromises, or failures. Recovery and reconstitution capabilities can include automated mechanisms and manual procedures. Organizations establish recovery time and recovery point objectives as part of contingency planning.", "external_references": [ { @@ -5289,12 +5289,12 @@ } ], "id": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Recovery and Reconstitution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.583Z", "description": "", "external_references": [ { @@ -5303,12 +5303,12 @@ } ], "id": "course-of-action--9f2919f8-82eb-469f-9193-838eb969197e", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Contingency Plan Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "Implement transaction recovery for systems that are transaction-based.\n\nTransaction-based systems include database management systems and transaction processing systems. Mechanisms supporting transaction recovery include transaction rollback and transaction journaling.", "external_references": [ { @@ -5317,12 +5317,12 @@ } ], "id": "course-of-action--eb160959-60b7-49e0-bcb3-ebbfe327912b", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Transaction Recovery", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "Addressed through tailoring procedures.", "external_references": [ { @@ -5331,12 +5331,12 @@ } ], "id": "course-of-action--bd3a1ec9-7bd9-445d-a4f2-c822b6b34acf", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Compensating Security Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "Provide the capability to restore system components within [Assignment: organization-defined restoration time periods] from configuration-controlled and integrity-protected information representing a known, operational state for the components.\n\nRestoration of system components includes reimaging, which restores the components to known, operational states.", "external_references": [ { @@ -5345,12 +5345,12 @@ } ], "id": "course-of-action--da064fd5-d166-4ad6-8a27-9e3ebc70bc23", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Restore Within Time Period", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "", "external_references": [ { @@ -5359,12 +5359,12 @@ } ], "id": "course-of-action--b1446138-5f17-4939-acba-d1fb7f4d27ef", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Failover Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "Protect system components used for recovery and reconstitution.\n\nProtection of system recovery and reconstitution components (i.e., hardware, firmware, and software) includes physical and technical controls. Backup and restoration components used for recovery and reconstitution include router tables, compilers, and other system software.", "external_references": [ { @@ -5373,12 +5373,12 @@ } ], "id": "course-of-action--7e6a291b-ec7e-40c6-8699-e39ab17d6b68", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "System Recovery and Reconstitution | Component Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.793Z", + "created": "2021-01-13T01:52:41.583Z", "description": "Provide the capability to employ [Assignment: organization-defined alternative communications protocols] in support of maintaining continuity of operations.\n\nContingency plans and the contingency training or testing associated with those plans incorporate an alternate communications protocol capability as part of establishing resilience in organizational systems. Switching communications protocols may affect software applications and operational aspects of systems. Organizations assess the potential side effects of introducing alternate communications protocols prior to implementation.", "external_references": [ { @@ -5387,12 +5387,12 @@ } ], "id": "course-of-action--118d6e7d-84da-431a-8b17-1e25b87e53e6", - "modified": "2021-01-06T18:30:53.793Z", + "modified": "2021-01-13T01:52:41.583Z", "name": "Alternate Communications Protocols", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "When [Assignment: organization-defined conditions] are detected, enter a safe mode of operation with [Assignment: organization-defined restrictions of safe mode of operation].\n\nFor systems that support critical mission and business functions'including military operations, civilian space operations, nuclear power plant operations, and air traffic control operations (especially real-time operational environments)'organizations can identify certain conditions under which those systems revert to a predefined safe mode of operation. The safe mode of operation, which can be activated either automatically or manually, restricts the operations that systems can execute when those conditions are encountered. Restriction includes allowing only selected functions to execute that can be carried out under limited power or with reduced communications bandwidth.", "external_references": [ { @@ -5401,12 +5401,12 @@ } ], "id": "course-of-action--c314c915-fcda-4f7a-a57f-a151b34a471a", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Safe Mode", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "Employ [Assignment: organization-defined alternative or supplemental security mechanisms] for satisfying [Assignment: organization-defined security functions] when the primary means of implementing the security function is unavailable or compromised.\n\nUse of alternative security mechanisms supports system resiliency, contingency planning, and continuity of operations. To ensure mission and business continuity, organizations can implement alternative or supplemental security mechanisms. The mechanisms may be less effective than the primary mechanisms. However, having the capability to readily employ alternative or supplemental mechanisms enhances mission and business continuity that might otherwise be adversely impacted if operations had to be curtailed until the primary means of implementing the functions was restored. Given the cost and level of effort required to provide such alternative capabilities, the alternative or supplemental mechanisms are only applied to critical security capabilities provided by systems, system components, or system services. For example, an organization may issue one-time pads to senior executives, officials, and system administrators if multi-factor tokens'the standard means for achieving secure authentication' are compromised.", "external_references": [ { @@ -5415,12 +5415,12 @@ } ], "id": "course-of-action--24dc407a-ab1a-4794-9d05-d4a57d5e5153", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Alternative Security Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] identification and authentication policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the identification and authentication policy and the associated identification and authentication controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the identification and authentication policy and procedures; and\nc. Review and update the current identification and authentication:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nIdentification and authentication policy and procedures address the controls in the IA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of identification and authentication policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to identification and authentication policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -5429,12 +5429,12 @@ } ], "id": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "Uniquely identify and authenticate organizational users and associate that unique identification with processes acting on behalf of those users.\n\nOrganizations can satisfy the identification and authentication requirements by complying with the requirements in [HSPD 12]. Organizational users include employees or individuals who organizations consider to have an equivalent status to employees (e.g., contractors and guest researchers). Unique identification and authentication of users applies to all accesses other than those that are explicitly identified in AC-14 and that occur through the authorized use of group authenticators without individual authentication. Since processes execute on behalf of groups and roles, organizations may require unique identification of individuals in group accounts or for detailed accountability of individual activity.\nOrganizations employ passwords, physical authenticators, or biometrics to authenticate user identities or, in the case of multi-factor authentication, some combination thereof. Access to organizational systems is defined as either local access or network access. Local access is any access to organizational systems by users or processes acting on behalf of users, where access is obtained through direct connections without the use of networks. Network access is access to organizational systems by users (or processes acting on behalf of users) where access is obtained through network connections (i.e., nonlocal accesses). Remote access is a type of network access that involves communication through external networks. Internal networks include local area networks and wide area networks.\nThe use of encrypted virtual private networks for network connections between organization-controlled endpoints and non-organization-controlled endpoints may be treated as internal networks with respect to protecting the confidentiality and integrity of information traversing the network. Identification and authentication requirements for non-organizational users are described in IA-8.", "external_references": [ { @@ -5443,12 +5443,12 @@ } ], "id": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Identification and Authentication (organizational Users)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "Implement multi-factor authentication for access to privileged accounts.\n\nMulti-factor authentication requires the use of two or more different factors to achieve authentication. The authentication factors are defined as follows: something you know (e.g., a personal identification number [PIN]), something you have (e.g., a physical authenticator such as a cryptographic private key), or something you are (e.g., a biometric). Multi-factor authentication solutions that feature physical authenticators include hardware authenticators that provide time-based or challenge-response outputs and smart cards such as the U.S. Government Personal Identity Verification (PIV) card or the Department of Defense (DoD) Common Access Card. In addition to authenticating users at the system level (i.e., at logon), organizations may employ authentication mechanisms at the application level, at their discretion, to provide increased security. Regardless of the type of access (i.e., local, network, remote), privileged accounts are authenticated using multi-factor options appropriate for the level of risk. Organizations can add additional security measures, such as additional or more rigorous authentication mechanisms, for specific types of access.", "external_references": [ { @@ -5457,12 +5457,12 @@ } ], "id": "course-of-action--ed26a4ca-c528-4ac7-b5f3-7bc4d4386220", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Identification and Authentication (organizational Users) | Multi-factor Authentication to Privileged Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "Implement multi-factor authentication for access to non-privileged accounts.\n\nMulti-factor authentication requires the use of two or more different factors to achieve authentication. The authentication factors are defined as follows: something you know (e.g., a personal identification number [PIN]), something you have (e.g., a physical authenticator such as a cryptographic private key), or something you are (e.g., a biometric). Multi-factor authentication solutions that feature physical authenticators include hardware authenticators that provide time-based or challenge-response outputs and smart cards such as the U.S. Government Personal Identity Verification card or the DoD Common Access Card. In addition to authenticating users at the system level, organizations may also employ authentication mechanisms at the application level, at their discretion, to provide increased information security. Regardless of the type of access (i.e., local, network, remote), non-privileged accounts are authenticated using multi-factor options appropriate for the level of risk. Organizations can provide additional security measures, such as additional or more rigorous authentication mechanisms, for specific types of access.", "external_references": [ { @@ -5471,12 +5471,12 @@ } ], "id": "course-of-action--cf089466-98a2-41db-9a9b-e2bfb621d928", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Identification and Authentication (organizational Users) | Multi-factor Authentication to Non-privileged Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "", "external_references": [ { @@ -5485,12 +5485,12 @@ } ], "id": "course-of-action--00d205c7-c10d-47c8-82c8-7270cef801da", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Local Access to Privileged Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "", "external_references": [ { @@ -5499,12 +5499,12 @@ } ], "id": "course-of-action--4f1155f9-6abb-4e2d-81a9-863be1c22101", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Local Access to Non-privileged Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "When shared accounts or authenticators are employed, require users to be individually authenticated before granting access to the shared accounts or resources.\n\nIndividual authentication prior to shared group authentication mitigates the risk of using group accounts or authenticators.", "external_references": [ { @@ -5513,12 +5513,12 @@ } ], "id": "course-of-action--5a8d2e26-158a-4ff0-8593-3a668a589e3d", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Individual Authentication with Group Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "Implement multi-factor authentication for [Selection (one or more): local; network; remote] access to [Selection (one or more): privileged accounts; non-privileged accounts] such that:\n(a) One of the factors is provided by a device separate from the system gaining access; and\n(b) The device meets [Assignment: organization-defined strength of mechanism requirements].\n\nThe purpose of requiring a device that is separate from the system to which the user is attempting to gain access for one of the factors during multi-factor authentication is to reduce the likelihood of compromising authenticators or credentials stored on the system. Adversaries may be able to compromise such authenticators or credentials and subsequently impersonate authorized users. Implementing one of the factors on a separate device (e.g., a hardware token), provides a greater strength of mechanism and an increased level of assurance in the authentication process.", "external_references": [ { @@ -5527,12 +5527,12 @@ } ], "id": "course-of-action--4532fd3f-0a39-4b71-90ff-32647e08024d", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Access to Accounts ' Separate Device", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "", "external_references": [ { @@ -5541,12 +5541,12 @@ } ], "id": "course-of-action--e20e52ac-3406-492a-a6de-da0629779f73", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Access to Non-privileged Accounts ' Separate Device", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.585Z", "description": "Implement replay-resistant authentication mechanisms for access to [Selection (one or more): privileged accounts; non-privileged accounts].\n\nAuthentication processes resist replay attacks if it is impractical to achieve successful authentications by replaying previous authentication messages. Replay-resistant techniques include protocols that use nonces or challenges such as time synchronous or cryptographic authenticators.", "external_references": [ { @@ -5555,12 +5555,12 @@ } ], "id": "course-of-action--fc740500-be8f-4579-832b-9b0cf30ea56d", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.585Z", "name": "Identification and Authentication (organizational Users) | Access to Accounts ' Replay Resistant", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.795Z", + "created": "2021-01-13T01:52:41.586Z", "description": "", "external_references": [ { @@ -5569,12 +5569,12 @@ } ], "id": "course-of-action--1537b4b5-ca04-4f3a-8af3-e1457d539da0", - "modified": "2021-01-06T18:30:53.795Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Identification and Authentication (organizational Users) | Network Access to Non-privileged Accounts ' Replay Resistant", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Provide a single sign-on capability for [Assignment: organization-defined system accounts and services].\n\nSingle sign-on enables users to log in once and gain access to multiple system resources. Organizations consider the operational efficiencies provided by single sign-on capabilities with the risk introduced by allowing access to multiple systems via a single authentication event. Single sign-on can present opportunities to improve system security, for example by providing the ability to add multi-factor authentication for applications and systems (existing and new) that may not be able to natively support multi-factor authentication.", "external_references": [ { @@ -5583,12 +5583,12 @@ } ], "id": "course-of-action--bf0e5b9f-8b8c-4669-bf3d-5a752d913d13", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Identification and Authentication (organizational Users) | Single Sign-on", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "", "external_references": [ { @@ -5597,12 +5597,12 @@ } ], "id": "course-of-action--211e2640-8db8-4fad-8fab-80a37e7594c6", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Identification and Authentication (organizational Users) | Remote Access ' Separate Device", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Accept and electronically verify Personal Identity Verification-compliant credentials.\n\nAcceptance of Personal Identity Verification (PIV)-compliant credentials applies to organizations implementing logical access control and physical access control systems. PIV-compliant credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidance documents. The adequacy and reliability of PIV card issuers are authorized using [SP 800-79-2]. Acceptance of PIV-compliant credentials includes derived PIV credentials, the use of which is addressed in [SP 800-166]. The DOD Common Access Card (CAC) is an example of a PIV credential.", "external_references": [ { @@ -5611,12 +5611,12 @@ } ], "id": "course-of-action--bfb72f81-0f55-4f81-af90-32245d0ec7a2", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Identification and Authentication (organizational Users) | Acceptance of PIV Credentials", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Implement the following out-of-band authentication mechanisms under [Assignment: organization-defined conditions]: [Assignment: organization-defined out-of-band authentication].\n\nOut-of-band authentication refers to the use of two separate communication paths to identify and authenticate users or devices to an information system. The first path (i.e., the in-band path) is used to identify and authenticate users or devices and is generally the path through which information flows. The second path (i.e., the out-of-band path) is used to independently verify the authentication and/or requested action. For example, a user authenticates via a notebook computer to a remote server to which the user desires access and requests some action of the server via that communication path. Subsequently, the server contacts the user via the user's cell phone to verify that the requested action originated from the user. The user may confirm the intended action to an individual on the telephone or provide an authentication code via the telephone. Out-of-band authentication can be used to mitigate actual or suspected 'man-in the-middle' attacks. The conditions or criteria for activation include suspicious activities, new threat indicators, elevated threat levels, or the impact or classification level of information in requested transactions.", "external_references": [ { @@ -5625,12 +5625,12 @@ } ], "id": "course-of-action--efd8e4a7-b224-41ed-afc7-d821eb5ad553", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Identification and Authentication (organizational Users) | Out-of-band Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Uniquely identify and authenticate [Assignment: organization-defined devices and/or types of devices] before establishing a [Selection (one or more): local; remote; network] connection.\n\nDevices that require unique device-to-device identification and authentication are defined by type, device, or a combination of type and device. Organization-defined device types include devices that are not owned by the organization. Systems use shared known information (e.g., Media Access Control [MAC], Transmission Control Protocol/Internet Protocol [TCP/IP] addresses) for device identification or organizational authentication solutions (e.g., Institute of Electrical and Electronics Engineers (IEEE) 802.1x and Extensible Authentication Protocol [EAP], RADIUS server with EAP-Transport Layer Security [TLS] authentication, Kerberos) to identify and authenticate devices on local and wide area networks. Organizations determine the required strength of authentication mechanisms based on the security categories of systems and mission or business requirements. Because of the challenges of implementing device authentication on a large scale, organizations can restrict the application of the control to a limited number/type of devices based on mission or business needs.", "external_references": [ { @@ -5639,12 +5639,12 @@ } ], "id": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Device Identification and Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Authenticate [Assignment: organization-defined devices and/or types of devices] before establishing [Selection (one or more): local; remote; network] connection using bidirectional authentication that is cryptographically based.\n\nA local connection is a connection with a device that communicates without the use of a network. A network connection is a connection with a device that communicates through a network. A remote connection is a connection with a device that communicates through an external network. Bidirectional authentication provides stronger protection to validate the identity of other devices for connections that are of greater risk.", "external_references": [ { @@ -5653,12 +5653,12 @@ } ], "id": "course-of-action--441aaf30-36c4-4313-8db0-6055a4d92061", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Device Identification and Authentication | Cryptographic Bidirectional Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "", "external_references": [ { @@ -5667,12 +5667,12 @@ } ], "id": "course-of-action--03bf72a8-44a7-461f-b473-9c4b37cd7560", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Device Identification and Authentication | Cryptographic Bidirectional Network Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "(a) Where addresses are allocated dynamically, standardize dynamic address allocation lease information and the lease duration assigned to devices in accordance with [Assignment: organization-defined lease information and lease duration]; and\n(b) Audit lease information when assigned to a device.\n\nThe Dynamic Host Configuration Protocol (DHCP) is an example of a means by which clients can dynamically receive network address assignments.", "external_references": [ { @@ -5681,12 +5681,12 @@ } ], "id": "course-of-action--fbd39649-8f4a-4de9-b0e2-7b3630a404c6", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Device Identification and Authentication | Dynamic Address Allocation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "Handle device identification and authentication based on attestation by [Assignment: organization-defined configuration management process].\n\nDevice attestation refers to the identification and authentication of a device based on its configuration and known operating state. Device attestation can be determined via a cryptographic hash of the device. If device attestation is the means of identification and authentication, then it is important that patches and updates to the device are handled via a configuration management process such that the patches and updates are done securely and do not disrupt identification and authentication to other devices.", "external_references": [ { @@ -5695,12 +5695,12 @@ } ], "id": "course-of-action--2708ef14-5464-4b7d-abd2-8f06b5bda28f", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Device Identification and Authentication | Device Attestation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "Manage system identifiers by:\na. Receiving authorization from [Assignment: organization-defined personnel or roles] to assign an individual, group, role, service, or device identifier;\nb. Selecting an identifier that identifies an individual, group, role, service, or device;\nc. Assigning the identifier to the intended individual, group, role, service, or device; and\nd. Preventing reuse of identifiers for [Assignment: organization-defined time period].\n\nCommon device identifiers include Media Access Control (MAC) addresses, Internet Protocol (IP) addresses, or device-unique token identifiers. The management of individual identifiers is not applicable to shared system accounts. Typically, individual identifiers are the usernames of the system accounts assigned to those individuals. In such instances, the account management activities of AC-2 use account names provided by IA-4. Identifier management also addresses individual identifiers not necessarily associated with system accounts. Preventing the reuse of identifiers implies preventing the assignment of previously used individual, group, role, service, or device identifiers to different individuals, groups, roles, services, or devices.", "external_references": [ { @@ -5709,12 +5709,12 @@ } ], "id": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Identifier Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "Prohibit the use of system account identifiers that are the same as public identifiers for individual accounts.\n\nProhibiting account identifiers as public identifiers applies to any publicly disclosed account identifier used for communication such as, electronic mail and instant messaging. Prohibiting the use of systems account identifiers that are the same as some public identifier, such as the individual identifier section of an electronic mail address, makes it more difficult for adversaries to guess user identifiers. Prohibiting account identifiers as public identifiers without the implementation of other supporting controls only complicates guessing of identifiers. Additional protections are required for authenticators and credentials to protect the account.", "external_references": [ { @@ -5723,12 +5723,12 @@ } ], "id": "course-of-action--136032b8-c8f1-4f19-9a92-255b1d1c3acb", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Identifier Management | Prohibit Account Identifiers as Public Identifiers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.587Z", "description": "", "external_references": [ { @@ -5737,12 +5737,12 @@ } ], "id": "course-of-action--02ea114f-a757-4de0-88ff-116a47d4952e", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Identifier Management | Supervisor Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.588Z", "description": "", "external_references": [ { @@ -5751,12 +5751,12 @@ } ], "id": "course-of-action--0e0c35a4-fa14-47a4-ab01-9da9014a9095", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Multiple Forms of Certification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.588Z", "description": "Manage individual identifiers by uniquely identifying each individual as [Assignment: organization-defined characteristic identifying individual status].\n\nCharacteristics that identify the status of individuals include contractors, foreign nationals, and non-organizational users. Identifying the status of individuals by these characteristics provides additional information about the people with whom organizational personnel are communicating. For example, it might be useful for a government employee to know that one of the individuals on an email message is a contractor.", "external_references": [ { @@ -5765,12 +5765,12 @@ } ], "id": "course-of-action--d42053b5-dd35-431a-93bc-f4d3db21d216", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Identify User Status", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.588Z", "description": "Manage individual identifiers dynamically in accordance with [Assignment: organization-defined dynamic identifier policy].\n\nIn contrast to conventional approaches to identification that presume static accounts for preregistered users, many distributed systems establish identifiers at runtime for entities that were previously unknown. When identifiers are established at runtime for previously unknown entities, organizations can anticipate and provision for the dynamic establishment of identifiers. Pre-established trust relationships and mechanisms with appropriate authorities to validate credentials and related identifiers are essential.", "external_references": [ { @@ -5779,12 +5779,12 @@ } ], "id": "course-of-action--16004085-a70f-4478-870c-5a6e288f994d", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Dynamic Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.588Z", "description": "Coordinate with the following external organizations for cross-organization management of identifiers: [Assignment: organization-defined external organizations].\n\nCross-organization identifier management provides the capability to identify individuals, groups, roles, or devices when conducting cross-organization activities involving the processing, storage, or transmission of information.", "external_references": [ { @@ -5793,12 +5793,12 @@ } ], "id": "course-of-action--14dcec11-7207-4e1c-a356-58c4cdc966ea", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Cross-organization Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.798Z", + "created": "2021-01-13T01:52:41.588Z", "description": "", "external_references": [ { @@ -5807,12 +5807,12 @@ } ], "id": "course-of-action--ccc50a5e-fd79-41f4-88b1-24235490f467", - "modified": "2021-01-06T18:30:53.798Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | In-person Registration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.588Z", "description": "Generate pairwise pseudonymous identifiers.\n\nA pairwise pseudonymous identifier is an opaque unguessable subscriber identifier generated by an identity provider for use at a specific individual relying party. Generating distinct pairwise pseudonymous identifiers with no identifying information about a subscriber discourages subscriber activity tracking and profiling beyond the operational requirements established by an organization. The pairwise pseudonymous identifiers are unique to each relying party except in situations where relying parties can show a demonstrable relationship justifying an operational need for correlation, or all parties consent to being correlated in such a manner.", "external_references": [ { @@ -5821,12 +5821,12 @@ } ], "id": "course-of-action--29bc4a05-0cdd-456b-95b2-7f596c9eac9e", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Pairwise Pseudonymous Identifiers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.588Z", "description": "Maintain the attributes for each uniquely identified individual, device, or service in [Assignment: organization-defined protected central storage].\n\nFor each of the entities covered in IA-2, IA-3, IA-8, and IA-9, it is important to maintain the attributes for each authenticated entity on an ongoing basis in a central (protected) store.", "external_references": [ { @@ -5835,12 +5835,12 @@ } ], "id": "course-of-action--4a458015-de8e-4b57-9e7e-6eb596ca53f1", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.588Z", "name": "Identifier Management | Attribute Maintenance and Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.589Z", "description": "Manage system authenticators by:\na. Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, service, or device receiving the authenticator;\nb. Establishing initial authenticator content for any authenticators issued by the organization;\nc. Ensuring that authenticators have sufficient strength of mechanism for their intended use;\nd. Establishing and implementing administrative procedures for initial authenticator distribution, for lost or compromised or damaged authenticators, and for revoking authenticators;\ne. Changing default authenticators prior to first use;\nf. Changing or refreshing authenticators [Assignment: organization-defined time period by authenticator type] or when [Assignment: organization-defined events] occur;\ng. Protecting authenticator content from unauthorized disclosure and modification;\nh. Requiring individuals to take, and having devices implement, specific controls to protect authenticators; and\ni. Changing authenticators for group or role accounts when membership to those accounts changes.\n\nAuthenticators include passwords, cryptographic devices, biometrics, certificates, one-time password devices, and ID badges. Device authenticators include certificates and passwords. Initial authenticator content is the actual content of the authenticator (e.g., the initial password). In contrast, the requirements for authenticator content contain specific criteria or characteristics (e.g., minimum password length). Developers may deliver system components with factory default authentication credentials (i.e., passwords) to allow for initial installation and configuration. Default authentication credentials are often well known, easily discoverable, and present a significant risk. The requirement to protect individual authenticators may be implemented via control PL-4 or PS-6 for authenticators in the possession of individuals and by controls AC-3, AC-6, and SC-28 for authenticators stored in organizational systems, including passwords stored in hashed or encrypted formats or files containing encrypted or hashed passwords accessible with administrator privileges.\nSystems support authenticator management by organization-defined settings and restrictions for various authenticator characteristics (e.g., minimum password length, validation time window for time synchronous one-time tokens, and number of allowed rejections during the verification stage of biometric authentication). Actions can be taken to safeguard individual authenticators, including maintaining possession of authenticators, not sharing authenticators with others, and immediately reporting lost, stolen, or compromised authenticators. Authenticator management includes issuing and revoking authenticators for temporary access when no longer needed.", "external_references": [ { @@ -5849,12 +5849,12 @@ } ], "id": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.589Z", "description": "For password-based authentication:\n(a) Maintain a list of commonly-used, expected, or compromised passwords and update the list [Assignment: organization-defined frequency] and when organizational passwords are suspected to have been compromised directly or indirectly;\n(b) Verify, when users create or update passwords, that the passwords are not found on the list of commonly-used, expected, or compromised passwords in IA-5(1)(a);\n(c) Transmit passwords only over cryptographically-protected channels;\n(d) Store passwords using an approved salted key derivation function, preferably using a keyed hash;\n(e) Require immediate selection of a new password upon account recovery;\n(f) Allow user selection of long passwords and passphrases, including spaces and all printable characters;\n(g) Employ automated tools to assist the user in selecting strong password authenticators; and\n(h) Enforce the following composition and complexity rules: [Assignment: organization-defined composition and complexity rules].\n\nPassword-based authentication applies to passwords regardless of whether they are used in single-factor or multi-factor authentication. Long passwords or passphrases are preferable over shorter passwords. Enforced composition rules provide marginal security benefits while decreasing usability. However, organizations may choose to establish certain rules for password generation (e.g., minimum character length for long passwords) under certain circumstances and can enforce this requirement in IA-5(1)(h). Account recovery can occur, for example, in situations when a password is forgotten. Cryptographically protected passwords include salted one-way cryptographic hashes of passwords. The list of commonly used, compromised, or expected passwords includes passwords obtained from previous breach corpuses, dictionary words, and repetitive or sequential characters. The list includes context-specific words, such as the name of the service, username, and derivatives thereof.", "external_references": [ { @@ -5863,12 +5863,12 @@ } ], "id": "course-of-action--5a73f67b-f306-46f7-96b3-7a6f10624381", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management | Password-based Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.589Z", "description": "(a) For public key-based authentication:\n(1) Enforce authorized access to the corresponding private key; and\n(2) Map the authenticated identity to the account of the individual or group; and\n(b) When public key infrastructure (PKI) is used:\n(1) Validate certificates by constructing and verifying a certification path to an accepted trust anchor, including checking certificate status information; and\n(2) Implement a local cache of revocation data to support path discovery and validation.\n\nPublic key cryptography is a valid authentication mechanism for individuals, machines, and devices. For PKI solutions, status information for certification paths includes certificate revocation lists or certificate status protocol responses. For PIV cards, certificate validation involves the construction and verification of a certification path to the Common Policy Root trust anchor, which includes certificate policy processing. Implementing a local cache of revocation data to support path discovery and validation also supports system availability in situations where organizations are unable to access revocation information via the network.", "external_references": [ { @@ -5877,12 +5877,12 @@ } ], "id": "course-of-action--a4dbdc5e-f95f-4d14-83a8-74b260202aa6", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management | Public Key-based Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.589Z", "description": "", "external_references": [ { @@ -5891,12 +5891,12 @@ } ], "id": "course-of-action--2893e908-d0e2-442f-bba9-04d9b348e5ad", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management | In-person or Trusted External Party Registration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.800Z", + "created": "2021-01-13T01:52:41.589Z", "description": "", "external_references": [ { @@ -5905,12 +5905,12 @@ } ], "id": "course-of-action--85863775-96d1-4d39-beb3-c45ae073fd60", - "modified": "2021-01-06T18:30:53.800Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management | Automated Support for Password Strength Determination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.800Z", + "created": "2021-01-13T01:52:41.589Z", "description": "Require developers and installers of system components to provide unique authenticators or change default authenticators prior to delivery and installation.\n\nChanging authenticators prior to the delivery and installation of system components extends the requirement for organizations to change default authenticators upon system installation by requiring developers and/or installers to provide unique authenticators or change default authenticators for system components prior to delivery and/or installation. However, it typically does not apply to developers of commercial off-the-shelf information technology products. Requirements for unique authenticators can be included in acquisition documents prepared by organizations when procuring systems or system components.", "external_references": [ { @@ -5919,12 +5919,12 @@ } ], "id": "course-of-action--547694e9-eb74-4973-8ca9-5f1224670802", - "modified": "2021-01-06T18:30:53.800Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management | Change Authenticators Prior to Delivery", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.800Z", + "created": "2021-01-13T01:52:41.590Z", "description": "Protect authenticators commensurate with the security category of the information to which use of the authenticator permits access.\n\nFor systems that contain multiple security categories of information without reliable physical or logical separation between categories, authenticators used to grant access to the systems are protected commensurate with the highest security category of information on the systems. Security categories of information are determined as part of the security categorization process.", "external_references": [ { @@ -5933,12 +5933,12 @@ } ], "id": "course-of-action--d0a30b6f-0555-49ce-aa8f-4c7b762beff8", - "modified": "2021-01-06T18:30:53.800Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | Protection of Authenticators", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.800Z", + "created": "2021-01-13T01:52:41.590Z", "description": "Ensure that unencrypted static authenticators are not embedded in applications or other forms of static storage.\n\nIn addition to applications, other forms of static storage include access scripts and function keys. Organizations exercise caution when determining whether embedded or stored authenticators are in encrypted or unencrypted form. If authenticators are used in the manner stored, then those representations are considered unencrypted authenticators.", "external_references": [ { @@ -5947,12 +5947,12 @@ } ], "id": "course-of-action--a515a365-2bbe-41c5-898a-c103fd6fe03d", - "modified": "2021-01-06T18:30:53.800Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | No Embedded Unencrypted Static Authenticators", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.590Z", "description": "Implement [Assignment: organization-defined security controls] to manage the risk of compromise due to individuals having accounts on multiple systems.\n\nWhen individuals have accounts on multiple systems and use the same authenticators such as passwords, there is the risk that a compromise of one account may lead to the compromise of other accounts. Alternative approaches include having different authenticators (passwords) on all systems, employing a single sign-on or federation mechanism, or using some form of one-time passwords on all systems. Organizations can also use rules of behavior (see PL-4) and access agreements (see PS-6) to mitigate the risk of multiple system accounts.", "external_references": [ { @@ -5961,12 +5961,12 @@ } ], "id": "course-of-action--d1f5f763-38c1-4831-a62b-7370354940b4", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | Multiple System Accounts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.590Z", "description": "Use the following external organizations to federate credentials: [Assignment: organization-defined external organizations].\n\nFederation provides organizations with the capability to authenticate individuals and devices when conducting cross-organization activities involving the processing, storage, or transmission of information. Using a specific list of approved external organizations for authentication helps to ensure that those organizations are vetted and trusted.", "external_references": [ { @@ -5975,12 +5975,12 @@ } ], "id": "course-of-action--86e9e056-8a62-4531-b5ab-145599684bc1", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | Federated Credential Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.590Z", "description": "Bind identities and authenticators dynamically using the following rules: [Assignment: organization-defined binding rules].\n\nAuthentication requires some form of binding between an identity and the authenticator that is used to confirm the identity. In conventional approaches, binding is established by pre-provisioning both the identity and the authenticator to the system. For example, the binding between a username (i.e., identity) and a password (i.e., authenticator) is accomplished by provisioning the identity and authenticator as a pair in the system. New authentication techniques allow the binding between the identity and the authenticator to be implemented external to a system. For example, with smartcard credentials, the identity and authenticator are bound together on the smartcard. Using these credentials, systems can authenticate identities that have not been pre-provisioned, dynamically provisioning the identity after authentication. In these situations, organizations can anticipate the dynamic provisioning of identities. Pre-established trust relationships and mechanisms with appropriate authorities to validate identities and related credentials are essential.", "external_references": [ { @@ -5989,12 +5989,12 @@ } ], "id": "course-of-action--66adcb72-be23-4a06-8b75-b7beecc6aae2", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | Dynamic Credential Binding", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.590Z", "description": "", "external_references": [ { @@ -6003,12 +6003,12 @@ } ], "id": "course-of-action--e41a1f96-cb8a-43a5-ab56-e5bb807f48cc", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.590Z", "name": "Authenticator Management | Hardware Token-based Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.591Z", "description": "For biometric-based authentication, employ mechanisms that satisfy the following biometric quality requirements [Assignment: organization-defined biometric quality requirements].\n\nUnlike password-based authentication, which provides exact matches of user-input passwords to stored passwords, biometric authentication does not provide exact matches. Depending on the type of biometric and the type of collection mechanism, there is likely to be some divergence from the presented biometric and the stored biometric that serves as the basis for comparison. Matching performance is the rate at which a biometric algorithm correctly results in a match for a genuine user and rejects other users. Biometric performance requirements include the match rate, which reflects the accuracy of the biometric matching algorithm used by a system.", "external_references": [ { @@ -6017,12 +6017,12 @@ } ], "id": "course-of-action--d0cb8233-4d20-4017-b1dc-50b6504dab79", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Biometric Authentication Performance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.801Z", + "created": "2021-01-13T01:52:41.591Z", "description": "Prohibit the use of cached authenticators after [Assignment: organization-defined time period].\n\nCached authenticators are used to authenticate to the local machine when the network is not available. If cached authentication information is out of date, the validity of the authentication information may be questionable.", "external_references": [ { @@ -6031,12 +6031,12 @@ } ], "id": "course-of-action--e9f79b7f-cbd4-47bf-b323-44a628f47462", - "modified": "2021-01-06T18:30:53.801Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Expiration of Cached Authenticators", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.591Z", "description": "For PKI-based authentication, employ an organization-wide methodology for managing the content of PKI trust stores installed across all platforms, including networks, operating systems, browsers, and applications.\n\nAn organization-wide methodology for managing the content of PKI trust stores helps improve the accuracy and currency of PKI-based authentication credentials across the organization.", "external_references": [ { @@ -6045,12 +6045,12 @@ } ], "id": "course-of-action--14c9630b-4344-41c3-b23a-62b0ce882c24", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Managing Content of PKI Trust Stores", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.591Z", "description": "Use only General Services Administration-approved products and services for identity, credential, and access management.\n\nGeneral Services Administration (GSA)-approved products and services are products and services that have been approved through the GSA conformance program, where applicable, and posted to the GSA Approved Products List. GSA provides guidance for teams to design and build functional and secure systems that comply with Federal Identity, Credential, and Access Management (FICAM) policies, technologies, and implementation patterns.", "external_references": [ { @@ -6059,12 +6059,12 @@ } ], "id": "course-of-action--dad160a7-959b-48f1-a09a-7d3253b755dd", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Gsa-approved Products and Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.591Z", "description": "Require that the issuance of [Assignment: organization-defined types of and/or specific authenticators] be conducted [Selection: in person; by a trusted external party] before [Assignment: organization-defined registration authority] with authorization by [Assignment: organization-defined personnel or roles].\n\nIssuing authenticators in person or by a trusted external party enhances and reinforces the trustworthiness of the identity proofing process.", "external_references": [ { @@ -6073,12 +6073,12 @@ } ], "id": "course-of-action--e04fb440-2c3a-4b5f-88c4-86c95c38028a", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | In-person or Trusted External Party Authenticator Issuance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.591Z", "description": "Employ presentation attack detection mechanisms for biometric-based authentication.\n\nBiometric characteristics do not constitute secrets. Such characteristics can be obtained by online web accesses, taking a picture of someone with a camera phone to obtain facial images with or without their knowledge, lifting from objects that someone has touched (e.g., a latent fingerprint), or capturing a high-resolution image (e.g., an iris pattern). Presentation attack detection technologies including liveness detection, can mitigate the risk of these types of attacks by making it difficult to produce artifacts intended to defeat the biometric sensor.", "external_references": [ { @@ -6087,12 +6087,12 @@ } ], "id": "course-of-action--33f7c3c7-5e41-4d2a-b7c3-588e4fdec8b8", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Presentation Attack Detection for Biometric Authenticators", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.591Z", "description": "(a) Employ [Assignment: organization-defined password managers] to generate and manage passwords; and\n(b) Protect the passwords using [Assignment: organization-defined controls].\n\nFor systems where static passwords are employed, it is often a challenge to ensure that the passwords are suitably complex and that the same passwords are not employed on multiple systems. A password manager is a solution to this problem as it automatically generates and stores strong and different passwords for various accounts. A potential risk of using password managers is that adversaries can target the collection of passwords generated by the password manager. Therefore, the collection of passwords requires protection including encrypting the passwords (see IA-5(1)(d)) and storing the collection offline in a token.", "external_references": [ { @@ -6101,12 +6101,12 @@ } ], "id": "course-of-action--c27c7612-874b-43c5-a772-f82f26da4f43", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.591Z", "name": "Authenticator Management | Password Managers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Obscure feedback of authentication information during the authentication process to protect the information from possible exploitation and use by unauthorized individuals.\n\nAuthentication feedback from systems does not provide information that would allow unauthorized individuals to compromise authentication mechanisms. For some types of systems, such as desktops or notebooks with relatively large monitors, the threat (referred to as shoulder surfing) may be significant. For other types of systems, such as mobile devices with small displays, the threat may be less significant and is balanced against the increased likelihood of typographic input errors due to small keyboards. Thus, the means for obscuring authentication feedback is selected accordingly. Obscuring authentication feedback includes displaying asterisks when users type passwords into input devices or displaying feedback for a very limited time before obscuring it.", "external_references": [ { @@ -6115,12 +6115,12 @@ } ], "id": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Authentication Feedback", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Implement mechanisms for authentication to a cryptographic module that meet the requirements of applicable laws, executive orders, directives, policies, regulations, standards, and guidelines for such authentication.\n\nAuthentication mechanisms may be required within a cryptographic module to authenticate an operator accessing the module and to verify that the operator is authorized to assume the requested role and perform services within that role.", "external_references": [ { @@ -6129,12 +6129,12 @@ } ], "id": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Cryptographic Module Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Uniquely identify and authenticate non-organizational users or processes acting on behalf of non-organizational users.\n\nNon-organizational users include system users other than organizational users explicitly covered by IA-2. Non-organizational users are uniquely identified and authenticated for accesses other than those explicitly identified and documented in AC-14. Identification and authentication of non-organizational users accessing federal systems may be required to protect federal, proprietary, or privacy-related information (with exceptions noted for national security systems). Organizations consider many factors'including security, privacy, scalability, and practicality'when balancing the need to ensure ease of use for access to federal information and systems with the need to protect and adequately mitigate risk.", "external_references": [ { @@ -6143,12 +6143,12 @@ } ], "id": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Accept and electronically verify Personal Identity Verification-compliant credentials from other federal agencies.\n\nAcceptance of Personal Identity Verification (PIV) credentials from other federal agencies applies to both logical and physical access control systems. PIV credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidelines. The adequacy and reliability of PIV card issuers are addressed and authorized using [SP 800-79-2].", "external_references": [ { @@ -6157,12 +6157,12 @@ } ], "id": "course-of-action--27515896-fa67-45d4-b744-249b856a62c0", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users) | Acceptance of PIV Credentials from Other Agencies", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "(a) Accept only external authenticators that are NIST-compliant; and\n(b) Document and maintain a list of accepted external authenticators.\n\nAcceptance of only NIST-compliant external authenticators applies to organizational systems that are accessible to the public (e.g., public-facing websites). External authenticators are issued by nonfederal government entities and are compliant with [SP 800-63B]. Approved external authenticators meet or exceed the minimum Federal Government-wide technical, security, privacy, and organizational maturity requirements. Meeting or exceeding Federal requirements allows Federal Government relying parties to trust external authenticators in connection with an authentication transaction at a specified authenticator assurance level.", "external_references": [ { @@ -6171,12 +6171,12 @@ } ], "id": "course-of-action--55be8ecf-53b4-463f-8f81-f5a5a18d1b18", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users) | Acceptance of External Authenticators", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "", "external_references": [ { @@ -6185,12 +6185,12 @@ } ], "id": "course-of-action--71c2c5eb-6388-4e23-a448-76bce19dbf6a", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users) | Use of Ficam-approved Products", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Conform to the following profiles for identity management [Assignment: organization-defined identity management profiles].\n\nOrganizations define profiles for identity management based on open identity management standards. To ensure that open identity management standards are viable, robust, reliable, sustainable, and interoperable as documented, the Federal Government assesses and scopes the standards and technology implementations against applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.", "external_references": [ { @@ -6199,12 +6199,12 @@ } ], "id": "course-of-action--6dbd10b4-1d7a-4c8f-a6a2-e87a46deb9ba", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users) | Use of Defined Profiles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "Accept and verify federated or PKI credentials that meet [Assignment: organization-defined policy].\n\nAcceptance of PIV-I credentials can be implemented by PIV, PIV-I, and other commercial or external identity providers. The acceptance and verification of Personal Identity Verification (PIV)-I-compliant credentials apply to both logical and physical access control systems. The acceptance and verification of PIV-I credentials address nonfederal issuers of identity cards that desire to interoperate with United States Government PIV systems and that can be trusted by Federal Government-relying parties. The X.509 certificate policy for the Federal Bridge Certification Authority (FBCA) addresses PIV-I requirements. The PIV-I card is commensurate with the PIV credentials as defined in cited references. PIV-I credentials are the credentials issued by a PIV-I provider whose PIV-I certificate policy maps to the Federal Bridge PIV-I Certificate Policy. A PIV-I provider is cross-certified with the FBCA (directly or through another PKI bridge) with policies that have been mapped and approved as meeting the requirements of the PIV-I policies defined in the FBCA certificate policy.", "external_references": [ { @@ -6213,12 +6213,12 @@ } ], "id": "course-of-action--28508d2f-a0df-40e1-9021-eff52c6e83f1", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Identification and Authentication (non-organizational Users) | Acceptance of PIV-I Credentials", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "Implement the following measures to disassociate user attributes or identifier assertion relationships among individuals, credential service providers, and relying parties: [Assignment: organization-defined measures].\n\nFederated identity solutions can create increased privacy risks due to the tracking and profiling of individuals. Using identifier mapping tables or cryptographic techniques to blind credential service providers and relying parties from each other or to make identity attributes less visible to transmitting parties can reduce these privacy risks.", "external_references": [ { @@ -6227,12 +6227,12 @@ } ], "id": "course-of-action--acc87145-ec2a-4f40-91af-f02fbc9403d9", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Identification and Authentication (non-organizational Users) | Disassociability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "Uniquely identify and authenticate [Assignment: organization-defined system services and applications] before establishing communications with devices, users, or other services or applications.\n\nServices that may require identification and authentication include web applications using digital certificates or services or applications that query a database. Identification and authentication methods for system services and applications include information or code signing, provenance graphs, and electronic signatures that indicate the sources of services. Decisions regarding the validity of identification and authentication claims can be made by services separate from the services acting on those decisions. This can occur in distributed system architectures. In such situations, the identification and authentication decisions (instead of actual identifiers and authentication data) are provided to the services that need to act on those decisions.", "external_references": [ { @@ -6241,12 +6241,12 @@ } ], "id": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Service Identification and Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "", "external_references": [ { @@ -6255,12 +6255,12 @@ } ], "id": "course-of-action--e77160db-800e-44b4-a976-21efc1f10676", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Service Identification and Authentication | Information Exchange", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "", "external_references": [ { @@ -6269,12 +6269,12 @@ } ], "id": "course-of-action--b61e5815-d44b-44cc-a24e-a0729381c7a7", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Service Identification and Authentication | Transmission of Decisions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "Require individuals accessing the system to employ [Assignment: organization-defined supplemental authentication techniques or mechanisms] under specific [Assignment: organization-defined circumstances or situations].\n\nAdversaries may compromise individual authentication mechanisms employed by organizations and subsequently attempt to impersonate legitimate users. To address this threat, organizations may employ specific techniques or mechanisms and establish protocols to assess suspicious behavior. Suspicious behavior may include accessing information that individuals do not typically access as part of their duties, roles, or responsibilities; accessing greater quantities of information than individuals would routinely access; or attempting to access information from suspicious network addresses. When pre-established conditions or triggers occur, organizations can require individuals to provide additional authentication information. Another potential use for adaptive authentication is to increase the strength of mechanism based on the number or types of records being accessed. Adaptive authentication does not replace and is not used to avoid the use of multi-factor authentication mechanisms but can augment implementations of multi-factor authentication.", "external_references": [ { @@ -6283,12 +6283,12 @@ } ], "id": "course-of-action--a7c58ca8-5a2d-48df-9133-b5dca9dba8c0", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Adaptive Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require users to re-authenticate when [Assignment: organization-defined circumstances or situations requiring re-authentication].\n\nIn addition to the re-authentication requirements associated with device locks, organizations may require re-authentication of individuals in certain situations, including when roles, authenticators or credentials change, when security categories of systems change, when the execution of privileged functions occurs, after a fixed time period, or periodically.", "external_references": [ { @@ -6297,12 +6297,12 @@ } ], "id": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Re-authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "a. Identity proof users that require accounts for logical access to systems based on appropriate identity assurance level requirements as specified in applicable standards and guidelines;\nb. Resolve user identities to a unique individual; and\nc. Collect, validate, and verify identity evidence.\n\nIdentity proofing is the process of collecting, validating, and verifying a user's identity information for the purposes of establishing credentials for accessing a system. Identity proofing is intended to mitigate threats to the registration of users and the establishment of their accounts. Standards and guidelines specifying identity assurance levels for identity proofing include [SP 800-63-3] and [SP 800-63A]. Organizations may be subject to laws, executive orders, directives, regulations, or policies that address the collection of identity evidence. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.", "external_references": [ { @@ -6311,12 +6311,12 @@ } ], "id": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require that the registration process to receive an account for logical access includes supervisor or sponsor authorization.\n\nIncluding supervisor or sponsor authorization as part of the registration process provides an additional level of scrutiny to ensure that the user's management chain is aware of the account, the account is essential to carry out organizational missions and functions, and the user's privileges are appropriate for the anticipated responsibilities and authorities within the organization.", "external_references": [ { @@ -6325,12 +6325,12 @@ } ], "id": "course-of-action--c4c64d6f-76c7-40d2-bcb1-8debf8fb96f4", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing | Supervisor Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require evidence of individual identification be presented to the registration authority.\n\nIdentity evidence, such as documentary evidence or a combination of documents and biometrics, reduces the likelihood of individuals using fraudulent identification to establish an identity or at least increases the work factor of potential adversaries. The forms of acceptable evidence are consistent with the risks to the systems, roles, and privileges associated with the user's account.", "external_references": [ { @@ -6339,12 +6339,12 @@ } ], "id": "course-of-action--95c945f1-3a5d-4d31-b662-d0bd39d4ecfd", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing | Identity Evidence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require that the presented identity evidence be validated and verified through [Assignment: organizational defined methods of validation and verification].\n\nValidation and verification of identity evidence increases the assurance that accounts and identifiers are being established for the correct user and authenticators are being bound to that user. Validation refers to the process of confirming that the evidence is genuine and authentic, and the data contained in the evidence is correct, current, and related to an individual. Verification confirms and establishes a linkage between the claimed identity and the actual existence of the user presenting the evidence. Acceptable methods for validating and verifying identity evidence are consistent with the risks to the systems, roles, and privileges associated with the users account.", "external_references": [ { @@ -6353,12 +6353,12 @@ } ], "id": "course-of-action--21692e93-ae88-492e-ae69-3d94d01be7ef", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing | Identity Evidence Validation and Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require that the validation and verification of identity evidence be conducted in person before a designated registration authority.\n\nIn-person proofing reduces the likelihood of fraudulent credentials being issued because it requires the physical presence of individuals, the presentation of physical identity documents, and actual face-to-face interactions with designated registration authorities.", "external_references": [ { @@ -6367,12 +6367,12 @@ } ], "id": "course-of-action--d2d4178d-c665-4b27-a7e0-7eef018a8362", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing | In-person Validation and Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.595Z", "description": "Require that a [Selection: registration code; notice of proofing] be delivered through an out-of-band channel to verify the users address (physical or digital) of record.\n\nTo make it more difficult for adversaries to pose as legitimate users during the identity proofing process, organizations can use out-of-band methods to ensure that the individual associated with an address of record is the same individual that participated in the registration. Confirmation can take the form of a temporary enrollment code or a notice of proofing. The delivery address for these artifacts is obtained from records and not self-asserted by the user. The address can include a physical or digital address. A home address is an example of a physical address. Email addresses and telephone numbers are examples of digital addresses.", "external_references": [ { @@ -6381,12 +6381,12 @@ } ], "id": "course-of-action--51ce12b8-dd41-48f4-931e-3a5e4a8b2bc0", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Identity Proofing | Address Confirmation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "Accept externally-proofed identities at [Assignment: organization-defined identity assurance level].\n\nTo limit unnecessary re-proofing of identities, particularly of non-PIV users, organizations accept proofing conducted at a commensurate level of assurance by other agencies or organizations. Proofing is consistent with organizational security policy and the identity assurance level appropriate for the system, application, or information accessed. Accepting externally-proofed identities is a fundamental component of managing federated identities across agencies and organizations.", "external_references": [ { @@ -6395,12 +6395,12 @@ } ], "id": "course-of-action--cb630a5a-7525-45a9-9e26-e0189f82aa3a", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Identity Proofing | Accept Externally-proofed Identities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] incident response policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the incident response policy and the associated incident response controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the incident response policy and procedures; and\nc. Review and update the current incident response:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nIncident response policy and procedures address the controls in the IR family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of incident response policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to incident response policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -6409,12 +6409,12 @@ } ], "id": "course-of-action--3d612641-f7c2-4218-ac77-81f07354b310", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "a. Provide incident response training to system users consistent with assigned roles and responsibilities:\n1. Within [Assignment: organization-defined time period] of assuming an incident response role or responsibility or acquiring system access;\n2. When required by system changes; and\n3. [Assignment: organization-defined frequency] thereafter; and\nb. Review and update incident response training content [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nIncident response training is associated with the assigned roles and responsibilities of organizational personnel to ensure that the appropriate content and level of detail are included in such training. For example, users may only need to know who to call or how to recognize an incident; system administrators may require additional training on how to handle incidents; and incident responders may receive more specific training on forensics, data collection techniques, reporting, system recovery, and system restoration. Incident response training includes user training in identifying and reporting suspicious activities from external and internal sources. Incident response training for users may be provided as part of AT-2 or AT-3. Events that may precipitate an update to incident response training content include, but are not limited to, incident response plan testing or response to an actual incident (lessons learned), assessment or audit findings, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -6423,12 +6423,12 @@ } ], "id": "course-of-action--883c4831-2245-4c49-9bff-61b1f076cff7", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Incident Response Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "Incorporate simulated events into incident response training to facilitate the required response by personnel in crisis situations.\n\nOrganizations establish requirements for responding to incidents in incident response plans. Incorporating simulated events into incident response training helps to ensure that personnel understand their individual responsibilities and what specific actions to take in crisis situations. Incident response training includes tabletop exercises that simulate a breach. See IR-2(3).", "external_references": [ { @@ -6437,12 +6437,12 @@ } ], "id": "course-of-action--94aa5b40-61d0-4adc-8b59-4c26e405882d", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Incident Response Training | Simulated Events", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "Provide an incident response training environment using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms can provide a more thorough and realistic incident response training environment. This can be accomplished, for example, by providing more complete coverage of incident response issues, selecting more realistic training scenarios and environments, and stressing the response capability.", "external_references": [ { @@ -6451,12 +6451,12 @@ } ], "id": "course-of-action--27b484a4-1442-40df-b1d5-81532f7176dc", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Incident Response Training | Automated Training Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.806Z", + "created": "2021-01-13T01:52:41.595Z", "description": "Provide incident response training on how to identify and respond to a breach, including the organization's process for reporting a breach.\n\nFor federal agencies, an incident that involves personally identifiable information is considered a breach. A breach results in the loss of control, compromise, unauthorized disclosure, unauthorized acquisition, or a similar occurrence where a person other than an authorized user accesses or potentially accesses personally identifiable information or an authorized user accesses or potentially accesses such information for other than authorized purposes. The incident response training emphasizes the obligation of individuals to report both confirmed and suspected breaches involving information in any medium or form, including paper, oral, and electronic. Incident response training includes tabletop exercises that simulate a breach. See IR-2(1).", "external_references": [ { @@ -6465,12 +6465,12 @@ } ], "id": "course-of-action--531aea17-1c50-42a7-82ca-706c91b9acd4", - "modified": "2021-01-06T18:30:53.806Z", + "modified": "2021-01-13T01:52:41.595Z", "name": "Incident Response Training | Breach", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "Test the effectiveness of the incident response capability for the system [Assignment: organization-defined frequency] using the following tests: [Assignment: organization-defined tests].\n\nOrganizations test incident response capabilities to determine their effectiveness and identify potential weaknesses or deficiencies. Incident response testing includes the use of checklists, walk-through or tabletop exercises, and simulations (parallel or full interrupt). Incident response testing can include a determination of the effects on organizational operations and assets and individuals due to incident response. The use of qualitative and quantitative data aids in determining the effectiveness of incident response processes.", "external_references": [ { @@ -6479,12 +6479,12 @@ } ], "id": "course-of-action--97cb4e96-aa56-4abf-a0af-d8ef7e810eeb", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Response Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "Test the incident response capability using [Assignment: organization-defined automated mechanisms].\n\nOrganizations use automated mechanisms to more thoroughly and effectively test incident response capabilities. This can be accomplished by providing more complete coverage of incident response issues, selecting realistic test scenarios and environments, and stressing the response capability.", "external_references": [ { @@ -6493,12 +6493,12 @@ } ], "id": "course-of-action--4d68772b-1db7-4080-8fd8-e39df4c63cb6", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Response Testing | Automated Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "Coordinate incident response testing with organizational elements responsible for related plans.\n\nOrganizational plans related to incident response testing include business continuity plans, disaster recovery plans, continuity of operations plans, contingency plans, crisis communications plans, critical infrastructure plans, and occupant emergency plans.", "external_references": [ { @@ -6507,12 +6507,12 @@ } ], "id": "course-of-action--16d0f986-5e7d-494b-abee-615e7b03e398", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Response Testing | Coordination with Related Plans", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "Use qualitative and quantitative data from testing to:\n(a) Determine the effectiveness of incident response processes;\n(b) Continuously improve incident response processes; and\n(c) Provide incident response measures and metrics that are accurate, consistent, and in a reproducible format.\n\nTo help incident response activities function as intended, organizations may use metrics and evaluation criteria to assess incident response programs as part of an effort to continually improve response performance. These efforts facilitate improvement in incident response efficacy and lessen the impact of incidents.", "external_references": [ { @@ -6521,12 +6521,12 @@ } ], "id": "course-of-action--c819fbe0-22b7-4dd5-bcbd-1eeb04dfaecb", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Response Testing | Continuous Improvement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "a. Implement an incident handling capability for incidents that is consistent with the incident response plan and includes preparation, detection and analysis, containment, eradication, and recovery;\nb. Coordinate incident handling activities with contingency planning activities;\nc. Incorporate lessons learned from ongoing incident handling activities into incident response procedures, training, and testing, and implement the resulting changes accordingly; and\nd. Ensure the rigor, intensity, scope, and results of incident handling activities are comparable and predictable across the organization.\n\nOrganizations recognize that incident response capabilities are dependent on the capabilities of organizational systems and the mission and business processes being supported by those systems. Organizations consider incident response as part of the definition, design, and development of mission and business processes and systems. Incident-related information can be obtained from a variety of sources, including audit monitoring, physical access monitoring, and network monitoring; user or administrator reports; and reported supply chain events. An effective incident handling capability includes coordination among many organizational entities (e.g., mission or business owners, system owners, authorizing officials, human resources offices, physical security offices, personnel security offices, legal departments, risk executive [function], operations personnel, procurement offices). Suspected security incidents include the receipt of suspicious email communications that can contain malicious code. Suspected supply chain incidents include the insertion of counterfeit hardware or malicious code into organizational systems or system components. For federal agencies, an incident that involves personally identifiable information is considered a breach. A breach results in unauthorized disclosure, the loss of control, unauthorized acquisition, compromise, or a similar occurrence where a person other than an authorized user accesses or potentially accesses personally identifiable information or an authorized user accesses or potentially accesses such information for other than authorized purposes.", "external_references": [ { @@ -6535,12 +6535,12 @@ } ], "id": "course-of-action--4141503c-f748-4032-86fd-1b2905e74ee9", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Handling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.596Z", "description": "Support the incident handling process using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms that support incident handling processes include online incident management systems and tools that support the collection of live response data, full network packet capture, and forensic analysis.", "external_references": [ { @@ -6549,12 +6549,12 @@ } ], "id": "course-of-action--bedab6f3-4db5-4821-bd09-792dcde9dfb0", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.596Z", "name": "Incident Handling | Automated Incident Handling Processes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.807Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Include the following types of dynamic reconfiguration for [Assignment: organization-defined system components] as part of the incident response capability: [Assignment: organization-defined types of dynamic reconfiguration].\n\nDynamic reconfiguration includes changes to router rules, access control lists, intrusion detection or prevention system parameters, and filter rules for guards or firewalls. Organizations may perform dynamic reconfiguration of systems to stop attacks, misdirect attackers, and isolate components of systems, thus limiting the extent of the damage from breaches or compromises. Organizations include specific time frames for achieving the reconfiguration of systems in the definition of the reconfiguration capability, considering the potential need for rapid response to effectively address cyber threats.", "external_references": [ { @@ -6563,12 +6563,12 @@ } ], "id": "course-of-action--c51cf91e-de38-4b33-aa55-3abfd8963f3a", - "modified": "2021-01-06T18:30:53.807Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Dynamic Reconfiguration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Identify [Assignment: organization-defined classes of incidents] and take the following actions in response to those incidents to ensure continuation of organizational mission and business functions: [Assignment: organization-defined actions to take in response to classes of incidents].\n\nClasses of incidents include malfunctions due to design or implementation errors and omissions, targeted malicious attacks, and untargeted malicious attacks. Incident response actions include orderly system degradation, system shutdown, fall back to manual mode or activation of alternative technology whereby the system operates differently, employing deceptive measures, alternate information flows, or operating in a mode that is reserved for when systems are under attack. Organizations consider whether continuity of operations requirements during an incident conflict with the capability to automatically disable the system as specified as part of IR-4(5).", "external_references": [ { @@ -6577,12 +6577,12 @@ } ], "id": "course-of-action--a98b6ce8-8c35-40ca-a523-29c62488f5d2", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Continuity of Operations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Correlate incident information and individual incident responses to achieve an organization-wide perspective on incident awareness and response.\n\nSometimes, a threat event, such as a hostile cyber-attack, can only be observed by bringing together information from different sources, including various reports and reporting procedures established by organizations.", "external_references": [ { @@ -6591,12 +6591,12 @@ } ], "id": "course-of-action--89fe4a38-7c81-457f-b7d6-d4c5fbba9ef5", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Information Correlation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Implement a configurable capability to automatically disable the system if [Assignment: organization-defined security violations] are detected.\n\nOrganizations consider whether the capability to automatically disable the system conflicts with continuity of operations requirements specified as part of CP-2 or IR-4(3). Security violations include cyber-attacks that have compromised the integrity of the system or exfiltrated organizational information and serious errors in software programs that could adversely impact organizational missions or functions or jeopardize the safety of individuals.", "external_references": [ { @@ -6605,12 +6605,12 @@ } ], "id": "course-of-action--cdaf9224-06d1-48a7-9c50-5a6a6c33c347", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Automatic Disabling of System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Implement an incident handling capability for incidents involving insider threats.\n\nExplicit focus on handling incidents involving insider threats provides additional emphasis on this type of threat and the need for specific incident handling capabilities to provide appropriate and timely responses.", "external_references": [ { @@ -6619,12 +6619,12 @@ } ], "id": "course-of-action--ae8dc4ac-8bd7-4680-8e77-c2da3be9fddc", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Insider Threats", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.597Z", "description": "Coordinate an incident handling capability for insider threats that includes the following organizational entities [Assignment: organization-defined entities].\n\nIncident handling for insider threat incidents (e.g., preparation, detection and analysis, containment, eradication, and recovery) requires coordination among many organizational entities, including mission or business owners, system owners, human resources offices, procurement offices, personnel offices, physical security offices, senior agency information security officer, operations personnel, risk executive (function), senior agency official for privacy, and legal counsel. In addition, organizations may require external support from federal, state, and local law enforcement agencies.", "external_references": [ { @@ -6633,12 +6633,12 @@ } ], "id": "course-of-action--98ea3b80-bdfb-4907-afb6-99cddd569525", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.597Z", "name": "Incident Handling | Insider Threats ' Intra-organization Coordination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.808Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Coordinate with [Assignment: organization-defined external organizations] to correlate and share [Assignment: organization-defined incident information] to achieve a cross-organization perspective on incident awareness and more effective incident responses.\n\nThe coordination of incident information with external organizations'including mission or business partners, military or coalition partners, customers, and developers'can provide significant benefits. Cross-organizational coordination can serve as an important risk management capability. This capability allows organizations to leverage information from a variety of sources to effectively respond to incidents and breaches that could potentially affect the organization's operations, assets, and individuals.", "external_references": [ { @@ -6647,12 +6647,12 @@ } ], "id": "course-of-action--79abe51b-ee8b-496f-9449-c5bf69a38713", - "modified": "2021-01-06T18:30:53.808Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Correlation with External Organizations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Employ [Assignment: organization-defined dynamic response capabilities] to respond to incidents.\n\nThe dynamic response capability addresses the timely deployment of new or replacement organizational capabilities in response to incidents. This includes capabilities implemented at the mission and business process level and at the system level.", "external_references": [ { @@ -6661,12 +6661,12 @@ } ], "id": "course-of-action--ac1f0ea9-267d-4e0a-8f7e-bfcf0a99ce88", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Dynamic Response Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Coordinate incident handling activities involving supply chain events with other organizations involved in the supply chain.\n\nOrganizations involved in supply chain activities include product developers, system integrators, manufacturers, packagers, assemblers, distributors, vendors, and resellers. Supply chain incidents can occur anywhere through or to the supply chain and include compromises or breaches that involve primary or sub-tier providers, information technology products, system components, development processes or personnel, and distribution processes or warehousing facilities. Organizations consider including processes for protecting and sharing incident information in information exchange agreements and their obligations for reporting incidents to government oversight bodies (e.g., Federal Acquisition Security Council).", "external_references": [ { @@ -6675,12 +6675,12 @@ } ], "id": "course-of-action--1b21e78e-aad5-4a11-abcf-052a0391e420", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Supply Chain Coordination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Establish and maintain an integrated incident response team that can be deployed to any location identified by the organization in [Assignment: organization-defined time period].\n\nAn integrated incident response team is a team of experts that assesses, documents, and responds to incidents so that organizational systems and networks can recover quickly and implement the necessary controls to avoid future incidents. Incident response team personnel include forensic and malicious code analysts, tool developers, systems security and privacy engineers, and real-time operations personnel. The incident handling capability includes performing rapid forensic preservation of evidence and analysis of and response to intrusions. For some organizations, the incident response team can be a cross-organizational entity.\nAn integrated incident response team facilitates information sharing and allows organizational personnel (e.g., developers, implementers, and operators) to leverage team knowledge of the threat and implement defensive measures that enable organizations to deter intrusions more effectively. Moreover, integrated teams promote the rapid detection of intrusions, the development of appropriate mitigations, and the deployment of effective defensive measures. For example, when an intrusion is detected, the integrated team can rapidly develop an appropriate response for operators to implement, correlate the new incident with information on past intrusions, and augment ongoing cyber intelligence development. Integrated incident response teams are better able to identify adversary tactics, techniques, and procedures that are linked to the operations tempo or specific mission and business functions and to define responsive actions in a way that does not disrupt those mission and business functions. Incident response teams can be distributed within organizations to make the capability resilient.", "external_references": [ { @@ -6689,12 +6689,12 @@ } ], "id": "course-of-action--0cefee83-08ba-4872-a5f3-338398d442d2", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Integrated Incident Response Team", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Analyze malicious code and/or other residual artifacts remaining in the system after the incident.\n\nWhen conducted carefully in an isolated environment, analysis of malicious code and other residual artifacts of a security incident or breach can give the organization insight into adversary tactics, techniques, and procedures. It can also indicate the identity or some defining characteristics of the adversary. In addition, malicious code analysis can help the organization develop responses to future incidents.", "external_references": [ { @@ -6703,12 +6703,12 @@ } ], "id": "course-of-action--5594aaa0-d908-4e4e-bdde-cb829dc6b5f8", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Malicious Code and Forensic Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Analyze anomalous or suspected adversarial behavior in or related to [Assignment: organization-defined environments or resources].\n\nIf the organization maintains a deception environment, an analysis of behaviors in that environment, including resources targeted by the adversary and timing of the incident or event, can provide insight into adversarial tactics, techniques, and procedures. External to a deception environment, the analysis of anomalous adversarial behavior (e.g., changes in system performance or usage patterns) or suspected behavior (e.g., changes in searches for the location of specific resources) can give the organization such insight.", "external_references": [ { @@ -6717,12 +6717,12 @@ } ], "id": "course-of-action--c57ac3f7-8e2f-435b-901c-786db7532531", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Behavior Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.809Z", + "created": "2021-01-13T01:52:41.598Z", "description": "Establish and maintain a security operations center.\n\nA security operations center (SOC) is the focal point for security operations and computer network defense for an organization. The purpose of the SOC is to defend and monitor an organization's systems and networks (i.e., cyber infrastructure) on an ongoing basis. The SOC is also responsible for detecting, analyzing, and responding to cybersecurity incidents in a timely manner. The organization staffs the SOC with skilled technical and operational personnel (e.g., security analysts, incident response personnel, systems security engineers) and implements a combination of technical, management, and operational controls (including monitoring, scanning, and forensics tools) to monitor, fuse, correlate, analyze, and respond to threat and security-relevant event data from multiple sources. These sources include perimeter defenses, network devices (e.g., routers, switches), and endpoint agent data feeds. The SOC provides a holistic situational awareness capability to help organizations determine the security posture of the system and organization. A SOC capability can be obtained in a variety of ways. Larger organizations may implement a dedicated SOC while smaller organizations may employ third-party organizations to provide such a capability.", "external_references": [ { @@ -6731,12 +6731,12 @@ } ], "id": "course-of-action--1cf33384-4ef3-4d25-b679-c03c25572a58", - "modified": "2021-01-06T18:30:53.809Z", + "modified": "2021-01-13T01:52:41.598Z", "name": "Incident Handling | Security Operations Center", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "(a) Manage public relations associated with an incident; and\n(b) Employ measures to repair the reputation of the organization.\n\nIt is important for an organization to have a strategy in place for addressing incidents that have been brought to the attention of the general public, have cast the organization in a negative light, or have affected the organization's constituents (e.g., partners, customers). Such publicity can be extremely harmful to the organization and affect its ability to carry out its mission and business functions. Taking proactive steps to repair the organization's reputation is an essential aspect of reestablishing the trust and confidence of its constituents.", "external_references": [ { @@ -6745,12 +6745,12 @@ } ], "id": "course-of-action--9749f89a-ce54-4bd2-8b2e-e3ed50918971", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Handling | Public Relations and Reputation Repair", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "Track and document incidents.\n\nDocumenting incidents includes maintaining records about each incident, the status of the incident, and other pertinent information necessary for forensics as well as evaluating incident details, trends, and handling. Incident information can be obtained from a variety of sources, including network monitoring, incident reports, incident response teams, user complaints, supply chain partners, audit monitoring, physical access monitoring, and user and administrator reports. IR-4 provides information on the types of incidents that are appropriate for monitoring.", "external_references": [ { @@ -6759,12 +6759,12 @@ } ], "id": "course-of-action--57ea374c-d028-4a3e-a754-c9117321932d", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "Track incidents and collect and analyze incident information using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms for tracking incidents and collecting and analyzing incident information include Computer Incident Response Centers or other electronic databases of incidents and network monitoring devices.", "external_references": [ { @@ -6773,12 +6773,12 @@ } ], "id": "course-of-action--db8203f9-8d3c-4e7d-bc47-ac05835499be", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Monitoring | Automated Tracking, Data Collection, and Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "a. Require personnel to report suspected incidents to the organizational incident response capability within [Assignment: organization-defined time period]; and\nb. Report incident information to [Assignment: organization-defined authorities].\n\nThe types of incidents reported, the content and timeliness of the reports, and the designated reporting authorities reflect applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Incident information can inform risk assessments, control effectiveness assessments, security requirements for acquisitions, and selection criteria for technology products.", "external_references": [ { @@ -6787,12 +6787,12 @@ } ], "id": "course-of-action--8882af25-fd22-4b0a-a63e-fb2d73b1f574", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Reporting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "Report incidents using [Assignment: organization-defined automated mechanisms].\n\nThe recipients of incident reports are specified in IR-6b. Automated reporting mechanisms include email, posting on websites (with automatic updates), and automated incident response tools and programs.", "external_references": [ { @@ -6801,12 +6801,12 @@ } ], "id": "course-of-action--32e9a262-6b25-480d-b9f0-79fabf606337", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Reporting | Automated Reporting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "Report system vulnerabilities associated with reported incidents to [Assignment: organization-defined personnel or roles].\n\nReported incidents that uncover system vulnerabilities are analyzed by organizational personnel including system owners, mission and business owners, senior agency information security officers, senior agency officials for privacy, authorizing officials, and the risk executive (function). The analysis can serve to prioritize and initiate mitigation actions to address the discovered system vulnerability.", "external_references": [ { @@ -6815,12 +6815,12 @@ } ], "id": "course-of-action--42c5d57a-8cd7-4b9b-b2cb-0d23ed5339d0", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Reporting | Vulnerabilities Related to Incidents", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.810Z", + "created": "2021-01-13T01:52:41.599Z", "description": "Provide incident information to the provider of the product or service and other organizations involved in the supply chain or supply chain governance for systems or system components related to the incident.\n\nOrganizations involved in supply chain activities include product developers, system integrators, manufacturers, packagers, assemblers, distributors, vendors, and resellers. Entities that provide supply chain governance include the Federal Acquisition Security Council (FASC). Supply chain incidents include compromises or breaches that involve information technology products, system components, development processes or personnel, distribution processes, or warehousing facilities. Organizations determine the appropriate information to share and consider the value gained from informing external organizations about supply chain incidents, including the ability to improve processes or to identify the root cause of an incident.", "external_references": [ { @@ -6829,12 +6829,12 @@ } ], "id": "course-of-action--c804f0fa-8089-4d47-807f-7b2d29550664", - "modified": "2021-01-06T18:30:53.810Z", + "modified": "2021-01-13T01:52:41.599Z", "name": "Incident Reporting | Supply Chain Coordination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "Provide an incident response support resource, integral to the organizational incident response capability, that offers advice and assistance to users of the system for the handling and reporting of incidents.\n\nIncident response support resources provided by organizations include help desks, assistance groups, automated ticketing systems to open and track incident response tickets, and access to forensics services or consumer redress services, when required.", "external_references": [ { @@ -6843,12 +6843,12 @@ } ], "id": "course-of-action--9dab226e-d411-489a-865e-7bed269bc38e", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Incident Response Assistance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "Increase the availability of incident response information and support using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms can provide a push or pull capability for users to obtain incident response assistance. For example, individuals may have access to a website to query the assistance capability, or the assistance capability can proactively send incident response information to users (general distribution or targeted) as part of increasing understanding of current response capabilities and support.", "external_references": [ { @@ -6857,12 +6857,12 @@ } ], "id": "course-of-action--7e944cec-8ca4-4bd4-8788-cf25c0e151aa", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Incident Response Assistance | Automation Support for Availability of Information and Support", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "(a) Establish a direct, cooperative relationship between its incident response capability and external providers of system protection capability; and\n(b) Identify organizational incident response team members to the external providers.\n\nExternal providers of a system protection capability include the Computer Network Defense program within the U.S. Department of Defense. External providers help to protect, monitor, analyze, detect, and respond to unauthorized activity within organizational information systems and networks. It may be beneficial to have agreements in place with external providers to clarify the roles and responsibilities of each party before an incident occurs.", "external_references": [ { @@ -6871,12 +6871,12 @@ } ], "id": "course-of-action--7a5a9b0e-d480-48b6-9b1c-07aa0f8389e6", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Incident Response Assistance | Coordination with External Providers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "a. Develop an incident response plan that:\n1. Provides the organization with a roadmap for implementing its incident response capability;\n2. Describes the structure and organization of the incident response capability;\n3. Provides a high-level approach for how the incident response capability fits into the overall organization;\n4. Meets the unique requirements of the organization, which relate to mission, size, structure, and functions;\n5. Defines reportable incidents;\n6. Provides metrics for measuring the incident response capability within the organization;\n7. Defines the resources and management support needed to effectively maintain and mature an incident response capability;\n8. Addresses the sharing of incident information;\n9. Is reviewed and approved by [Assignment: organization-defined personnel or roles]\n [Assignment: organization-defined frequency]; and\n10. Explicitly designates responsibility for incident response to [Assignment: organization-defined entities, personnel, or roles].\nb. Distribute copies of the incident response plan to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements];\nc. Update the incident response plan to address system and organizational changes or problems encountered during plan implementation, execution, or testing;\nd. Communicate incident response plan changes to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements]; and\ne. Protect the incident response plan from unauthorized disclosure and modification.\n\nIt is important that organizations develop and implement a coordinated approach to incident response. Organizational mission and business functions determine the structure of incident response capabilities. As part of the incident response capabilities, organizations consider the coordination and sharing of information with external organizations, including external service providers and other organizations involved in the supply chain. For incidents involving personally identifiable information (i.e., breaches), include a process to determine whether notice to oversight organizations or affected individuals is appropriate and provide that notice accordingly.", "external_references": [ { @@ -6885,12 +6885,12 @@ } ], "id": "course-of-action--34c98bb1-1b5d-4563-ab86-3e3436329cef", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Incident Response Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "Include the following in the Incident Response Plan for breaches involving personally identifiable information:\n(a) A process to determine if notice to individuals or other organizations, including oversight organizations, is needed;\n(b) An assessment process to determine the extent of the harm, embarrassment, inconvenience, or unfairness to affected individuals and any mechanisms to mitigate such harms; and\n(c) Identification of applicable privacy requirements.\n\nOrganizations may be required by law, regulation, or policy to follow specific procedures relating to breaches, including notice to individuals, affected organizations, and oversight bodies; standards of harm; and mitigation or other specific requirements.", "external_references": [ { @@ -6899,12 +6899,12 @@ } ], "id": "course-of-action--14c43000-f701-42d4-998a-96a05e5370ef", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Incident Response Plan | Breaches", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.811Z", + "created": "2021-01-13T01:52:41.600Z", "description": "Respond to information spills by:\na. Assigning [Assignment: organization-defined personnel or roles] with responsibility for responding to information spills;\nb. Identifying the specific information involved in the system contamination;\nc. Alerting [Assignment: organization-defined personnel or roles] of the information spill using a method of communication not associated with the spill;\nd. Isolating the contaminated system or system component;\ne. Eradicating the information from the contaminated system or component;\nf. Identifying other systems or system components that may have been subsequently contaminated; and\ng. Performing the following additional actions: [Assignment: organization-defined actions].\n\nInformation spillage refers to instances where information is placed on systems that are not authorized to process such information. Information spills occur when information that is thought to be a certain classification or impact level is transmitted to a system and subsequently is determined to be of a higher classification or impact level. At that point, corrective action is required. The nature of the response is based on the classification or impact level of the spilled information, the security capabilities of the system, the specific nature of the contaminated storage media, and the access authorizations of individuals with authorized access to the contaminated system. The methods used to communicate information about the spill after the fact do not involve methods directly associated with the actual spill to minimize the risk of further spreading the contamination before such contamination is isolated and eradicated.", "external_references": [ { @@ -6913,12 +6913,12 @@ } ], "id": "course-of-action--84789b6a-4410-4672-b230-ce331c72ae9a", - "modified": "2021-01-06T18:30:53.811Z", + "modified": "2021-01-13T01:52:41.600Z", "name": "Information Spillage Response", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "", "external_references": [ { @@ -6927,12 +6927,12 @@ } ], "id": "course-of-action--b0683b82-4282-48b3-9ce7-6bfce17f91ff", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Information Spillage Response | Responsible Personnel", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "Provide information spillage response training [Assignment: organization-defined frequency].\n\nOrganizations establish requirements for responding to information spillage incidents in incident response plans. Incident response training on a regular basis helps to ensure that organizational personnel understand their individual responsibilities and what specific actions to take when spillage incidents occur.", "external_references": [ { @@ -6941,12 +6941,12 @@ } ], "id": "course-of-action--130f139e-064f-43f4-8f74-1fb820a97bb6", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Information Spillage Response | Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "Implement the following procedures to ensure that organizational personnel impacted by information spills can continue to carry out assigned tasks while contaminated systems are undergoing corrective actions: [Assignment: organization-defined procedures].\n\nCorrective actions for systems contaminated due to information spillages may be time-consuming. Personnel may not have access to the contaminated systems while corrective actions are being taken, which may potentially affect their ability to conduct organizational business.", "external_references": [ { @@ -6955,12 +6955,12 @@ } ], "id": "course-of-action--396f55f4-b7f9-4088-8ecb-1f156088f898", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Information Spillage Response | Post-spill Operations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "Employ the following controls for personnel exposed to information not within assigned access authorizations: [Assignment: organization-defined controls].\n\nControls include ensuring that personnel who are exposed to spilled information are made aware of the laws, executive orders, directives, regulations, policies, standards, and guidelines regarding the information and the restrictions imposed based on exposure to such information.", "external_references": [ { @@ -6969,12 +6969,12 @@ } ], "id": "course-of-action--a88da69c-c6d9-4f74-b978-93ce01cfe24e", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Information Spillage Response | Exposure to Unauthorized Personnel", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "", "external_references": [ { @@ -6983,12 +6983,12 @@ } ], "id": "course-of-action--9ab45a38-56c8-4d1a-92ee-6b9e7c7e955a", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Incident Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.812Z", + "created": "2021-01-13T01:52:41.601Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] maintenance policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the maintenance policy and the associated maintenance controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the maintenance policy and procedures; and\nc. Review and update the current maintenance:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nMaintenance policy and procedures address the controls in the MA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of maintenance policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to maintenance policy and procedures assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -6997,12 +6997,12 @@ } ], "id": "course-of-action--e4f16e7f-d432-4627-9a00-886e168141e0", - "modified": "2021-01-06T18:30:53.812Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.601Z", "description": "a. Schedule, document, and review records of maintenance, repair, and replacement on system components in accordance with manufacturer or vendor specifications and/or organizational requirements;\nb. Approve and monitor all maintenance activities, whether performed on site or remotely and whether the system or system components are serviced on site or removed to another location;\nc. Require that [Assignment: organization-defined personnel or roles] explicitly approve the removal of the system or system components from organizational facilities for off-site maintenance, repair, or replacement;\nd. Sanitize equipment to remove the following information from associated media prior to removal from organizational facilities for off-site maintenance, repair, or replacement: [Assignment: organization-defined information];\ne. Check all potentially impacted controls to verify that the controls are still functioning properly following maintenance, repair, or replacement actions; and\nf. Include the following information in organizational maintenance records: [Assignment: organization-defined information].\n\nControlling system maintenance addresses the information security aspects of the system maintenance program and applies to all types of maintenance to system components conducted by local or nonlocal entities. Maintenance includes peripherals such as scanners, copiers, and printers. Information necessary for creating effective maintenance records includes the date and time of maintenance, a description of the maintenance performed, names of the individuals or group performing the maintenance, name of the escort, and system components or equipment that are removed or replaced. Organizations consider supply chain-related risks associated with replacement components for systems.", "external_references": [ { @@ -7011,12 +7011,12 @@ } ], "id": "course-of-action--1387f560-ef7d-4b8a-b58f-901b82877610", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.601Z", "name": "Controlled Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.602Z", "description": "", "external_references": [ { @@ -7025,12 +7025,12 @@ } ], "id": "course-of-action--7c428e61-2763-4014-b2ff-a6be9c307bce", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Controlled Maintenance | Record Content", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.602Z", "description": "(a) Schedule, conduct, and document maintenance, repair, and replacement actions for the system using [Assignment: organization-defined automated mechanisms]; and\n(b) Produce up-to date, accurate, and complete records of all maintenance, repair, and replacement actions requested, scheduled, in process, and completed.\n\nThe use of automated mechanisms to manage and control system maintenance programs and activities helps to ensure the generation of timely, accurate, complete, and consistent maintenance records.", "external_references": [ { @@ -7039,12 +7039,12 @@ } ], "id": "course-of-action--d4f244bd-bb3d-441d-a9a5-50fedcafe2a4", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Controlled Maintenance | Automated Maintenance Activities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.602Z", "description": "a. Approve, control, and monitor the use of system maintenance tools; and\nb. Review previously approved system maintenance tools [Assignment: organization-defined frequency].\n\nApproving, controlling, monitoring, and reviewing maintenance tools address security-related issues associated with maintenance tools that are not within system authorization boundaries and are used specifically for diagnostic and repair actions on organizational systems. Organizations have flexibility in determining roles for the approval of maintenance tools and how that approval is documented. A periodic review of maintenance tools facilitates the withdrawal of approval for outdated, unsupported, irrelevant, or no-longer-used tools. Maintenance tools can include hardware, software, and firmware items and may be pre-installed, brought in with maintenance personnel on media, cloud-based, or downloaded from a website. Such tools can be vehicles for transporting malicious code, either intentionally or unintentionally, into a facility and subsequently into systems. Maintenance tools can include hardware and software diagnostic test equipment and packet sniffers. The hardware and software components that support maintenance and are a part of the system (including the software implementing utilities such as 'ping,' 'ls,' 'ipconfig,' or the hardware and software implementing the monitoring port of an Ethernet switch) are not addressed by maintenance tools.", "external_references": [ { @@ -7053,12 +7053,12 @@ } ], "id": "course-of-action--fc6398a4-2282-4879-9d48-a00edc8c10ad", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Maintenance Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.602Z", "description": "Inspect the maintenance tools used by maintenance personnel for improper or unauthorized modifications.\n\nMaintenance tools can be directly brought into a facility by maintenance personnel or downloaded from a vendor's website. If, upon inspection of the maintenance tools, organizations determine that the tools have been modified in an improper manner or the tools contain malicious code, the incident is handled consistent with organizational policies and procedures for incident handling.", "external_references": [ { @@ -7067,12 +7067,12 @@ } ], "id": "course-of-action--18dc5ea4-7d57-47db-828d-0c5c32f1140d", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Maintenance Tools | Inspect Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.813Z", + "created": "2021-01-13T01:52:41.602Z", "description": "Check media containing diagnostic and test programs for malicious code before the media are used in the system.\n\nIf, upon inspection of media containing maintenance, diagnostic, and test programs, organizations determine that the media contains malicious code, the incident is handled consistent with organizational incident handling policies and procedures.", "external_references": [ { @@ -7081,12 +7081,12 @@ } ], "id": "course-of-action--3f3f2c54-1305-4a0c-ab89-5ef2388bc0f7", - "modified": "2021-01-06T18:30:53.813Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Maintenance Tools | Inspect Media", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.814Z", + "created": "2021-01-13T01:52:41.602Z", "description": "Prevent the removal of maintenance equipment containing organizational information by:\n(a) Verifying that there is no organizational information contained on the equipment;\n(b) Sanitizing or destroying the equipment;\n(c) Retaining the equipment within the facility; or\n(d) Obtaining an exemption from [Assignment: organization-defined personnel or roles] explicitly authorizing removal of the equipment from the facility.\n\nOrganizational information includes all information owned by organizations and any information provided to organizations for which the organizations serve as information stewards.", "external_references": [ { @@ -7095,12 +7095,12 @@ } ], "id": "course-of-action--5dfbe6c9-d95d-4599-9288-7120c26335f3", - "modified": "2021-01-06T18:30:53.814Z", + "modified": "2021-01-13T01:52:41.602Z", "name": "Maintenance Tools | Prevent Unauthorized Removal", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.814Z", + "created": "2021-01-13T01:52:41.603Z", "description": "Restrict the use of maintenance tools to authorized personnel only.\n\nRestricting the use of maintenance tools to only authorized personnel applies to systems that are used to carry out maintenance functions.", "external_references": [ { @@ -7109,12 +7109,12 @@ } ], "id": "course-of-action--fea70354-fabe-4912-8207-473582b84ef5", - "modified": "2021-01-06T18:30:53.814Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Maintenance Tools | Restricted Tool Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.814Z", + "created": "2021-01-13T01:52:41.603Z", "description": "Monitor the use of maintenance tools that execute with increased privilege.\n\nMaintenance tools that execute with increased system privilege can result in unauthorized access to organizational information and assets that would otherwise be inaccessible.", "external_references": [ { @@ -7123,12 +7123,12 @@ } ], "id": "course-of-action--96005dfa-6a12-41c0-8f95-651faee66faf", - "modified": "2021-01-06T18:30:53.814Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Maintenance Tools | Execution with Privilege", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.814Z", + "created": "2021-01-13T01:52:41.603Z", "description": "Inspect maintenance tools to ensure the latest software updates and patches are installed.\n\nMaintenance tools using outdated and/or unpatched software can provide a threat vector for adversaries and result in a significant vulnerability for organizations.", "external_references": [ { @@ -7137,12 +7137,12 @@ } ], "id": "course-of-action--5fb9289d-71bf-41a2-a976-bc2791983adb", - "modified": "2021-01-06T18:30:53.814Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Maintenance Tools | Software Updates and Patches", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.603Z", "description": "a. Approve and monitor nonlocal maintenance and diagnostic activities;\nb. Allow the use of nonlocal maintenance and diagnostic tools only as consistent with organizational policy and documented in the security plan for the system;\nc. Employ strong authentication in the establishment of nonlocal maintenance and diagnostic sessions;\nd. Maintain records for nonlocal maintenance and diagnostic activities; and\ne. Terminate session and network connections when nonlocal maintenance is completed.\n\nNonlocal maintenance and diagnostic activities are conducted by individuals who communicate through either an external or internal network. Local maintenance and diagnostic activities are carried out by individuals who are physically present at the system location and not communicating across a network connection. Authentication techniques used to establish nonlocal maintenance and diagnostic sessions reflect the network access requirements in IA-2. Strong authentication requires authenticators that are resistant to replay attacks and employ multi-factor authentication. Strong authenticators include PKI where certificates are stored on a token protected by a password, passphrase, or biometric. Enforcing requirements in MA-4 is accomplished, in part, by other controls. [SP 800-63B] provides additional guidance on strong authentication and authenticators.", "external_references": [ { @@ -7151,12 +7151,12 @@ } ], "id": "course-of-action--95f3d100-c1b1-4307-a5be-5521d72fcb55", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Nonlocal Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.603Z", "description": "(a) Log [Assignment: organization-defined audit events] for nonlocal maintenance and diagnostic sessions; and\n(b) Review the audit records of the maintenance and diagnostic sessions to detect anomalous behavior.\n\nAudit logging for nonlocal maintenance is enforced by AU-2. Audit events are defined in AU-2a.", "external_references": [ { @@ -7165,12 +7165,12 @@ } ], "id": "course-of-action--b4d5b4fb-f954-4ea6-9a4c-fd820d07d801", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Nonlocal Maintenance | Logging and Review", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.603Z", "description": "Discussion: Communications paths can be logically separated using encryption.", "external_references": [ { @@ -7179,12 +7179,12 @@ } ], "id": "course-of-action--96363c96-4504-4bde-8be1-c2c6d448fc07", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.603Z", "name": "Nonlocal Maintenance | Logically separated communications paths.", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.604Z", "description": "(a) Require that nonlocal maintenance and diagnostic services be performed from a system that implements a security capability comparable to the capability implemented on the system being serviced; or\n(b) Remove the component to be serviced from the system prior to nonlocal maintenance or diagnostic services; sanitize the component (for organizational information); and after the service is performed, inspect and sanitize the component (for potentially malicious software) before reconnecting the component to the system.\n\nComparable security capability on systems, diagnostic tools, and equipment providing maintenance services implies that the implemented controls on those systems, tools, and equipment are at least as comprehensive as the controls on the system being serviced.", "external_references": [ { @@ -7193,12 +7193,12 @@ } ], "id": "course-of-action--198e3801-469d-4d52-af36-bc6709ec402b", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Nonlocal Maintenance | Comparable Security and Sanitization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.604Z", "description": "Protect nonlocal maintenance sessions by:\n(a) Employing [Assignment: organization-defined authenticators that are replay resistant]; and\n(b) Separating the maintenance sessions from other network sessions with the system by either:\n(1) Physically separated communications paths; or\n(2) Logically separated communications paths.\n\nCommunications paths can be logically separated using encryption.", "external_references": [ { @@ -7207,12 +7207,12 @@ } ], "id": "course-of-action--9e713248-86e5-4c9d-bad8-2f7459d1d1c7", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Nonlocal Maintenance | Authentication and Separation of Maintenance Sessions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.815Z", + "created": "2021-01-13T01:52:41.604Z", "description": "(a) Require the approval of each nonlocal maintenance session by [Assignment: organization-defined personnel or roles]; and\n(b) Notify the following personnel or roles of the date and time of planned nonlocal maintenance: [Assignment: organization-defined personnel or roles].\n\nNotification may be performed by maintenance personnel. Approval of nonlocal maintenance is accomplished by personnel with sufficient information security and system knowledge to determine the appropriateness of the proposed maintenance.", "external_references": [ { @@ -7221,12 +7221,12 @@ } ], "id": "course-of-action--39932aba-701d-4fab-b61c-860423fddea3", - "modified": "2021-01-06T18:30:53.815Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Nonlocal Maintenance | Approvals and Notifications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.816Z", + "created": "2021-01-13T01:52:41.604Z", "description": "Implement the following cryptographic mechanisms to protect the integrity and confidentiality of nonlocal maintenance and diagnostic communications: [Assignment: organization-defined cryptographic mechanisms].\n\nFailure to protect nonlocal maintenance and diagnostic communications can result in unauthorized individuals gaining access to organizational information. Unauthorized access during remote maintenance sessions can result in a variety of hostile actions, including malicious code insertion, unauthorized changes to system parameters, and exfiltration of organizational information. Such actions can result in the loss or degradation of mission or business capabilities.", "external_references": [ { @@ -7235,12 +7235,12 @@ } ], "id": "course-of-action--c1385140-6d00-4590-86f2-3719bc8792c3", - "modified": "2021-01-06T18:30:53.816Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Nonlocal Maintenance | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.816Z", + "created": "2021-01-13T01:52:41.604Z", "description": "Verify session and network connection termination after the completion of nonlocal maintenance and diagnostic sessions.\n\nVerifying the termination of a connection once maintenance is completed ensures that connections established during nonlocal maintenance and diagnostic sessions have been terminated and are no longer available for use.", "external_references": [ { @@ -7249,12 +7249,12 @@ } ], "id": "course-of-action--b3e614f8-3007-42df-91d5-a4d323885b9d", - "modified": "2021-01-06T18:30:53.816Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Nonlocal Maintenance | Disconnect Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.816Z", + "created": "2021-01-13T01:52:41.604Z", "description": "a. Establish a process for maintenance personnel authorization and maintain a list of authorized maintenance organizations or personnel;\nb. Verify that non-escorted personnel performing maintenance on the system possess the required access authorizations; and\nc. Designate organizational personnel with required access authorizations and technical competence to supervise the maintenance activities of personnel who do not possess the required access authorizations.\n\nMaintenance personnel refers to individuals who perform hardware or software maintenance on organizational systems, while PE-2 addresses physical access for individuals whose maintenance duties place them within the physical protection perimeter of the systems. Technical competence of supervising individuals relates to the maintenance performed on the systems, while having required access authorizations refers to maintenance on and near the systems. Individuals not previously identified as authorized maintenance personnel'such as information technology manufacturers, vendors, systems integrators, and consultants'may require privileged access to organizational systems, such as when they are required to conduct maintenance activities with little or no notice. Based on organizational assessments of risk, organizations may issue temporary credentials to these individuals. Temporary credentials may be for one-time use or for very limited time periods.", "external_references": [ { @@ -7263,12 +7263,12 @@ } ], "id": "course-of-action--88dc637c-19a5-4a5b-863a-4c3bdb9986dc", - "modified": "2021-01-06T18:30:53.816Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Maintenance Personnel", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.816Z", + "created": "2021-01-13T01:52:41.604Z", "description": "(a) Implement procedures for the use of maintenance personnel that lack appropriate security clearances or are not U.S. citizens, that include the following requirements:\n(1) Maintenance personnel who do not have needed access authorizations, clearances, or formal access approvals are escorted and supervised during the performance of maintenance and diagnostic activities on the system by approved organizational personnel who are fully cleared, have appropriate access authorizations, and are technically qualified; and\n(2) Prior to initiating maintenance or diagnostic activities by personnel who do not have needed access authorizations, clearances or formal access approvals, all volatile information storage components within the system are sanitized and all nonvolatile storage media are removed or physically disconnected from the system and secured; and\n(b) Develop and implement [Assignment: organization-defined alternate controls] in the event a system component cannot be sanitized, removed, or disconnected from the system.\n\nProcedures for individuals who lack appropriate security clearances or who are not U.S. citizens are intended to deny visual and electronic access to classified or controlled unclassified information contained on organizational systems. Procedures for the use of maintenance personnel can be documented in security plans for the systems.", "external_references": [ { @@ -7277,12 +7277,12 @@ } ], "id": "course-of-action--876123e5-40a7-4373-831c-7d9f5b22cd68", - "modified": "2021-01-06T18:30:53.816Z", + "modified": "2021-01-13T01:52:41.604Z", "name": "Maintenance Personnel | Individuals Without Appropriate Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.817Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Verify that personnel performing maintenance and diagnostic activities on a system processing, storing, or transmitting classified information possess security clearances and formal access approvals for at least the highest classification level and for compartments of information on the system.\n\nPersonnel who conduct maintenance on organizational systems may be exposed to classified information during the course of their maintenance activities. To mitigate the inherent risk of such exposure, organizations use maintenance personnel that are cleared (i.e., possess security clearances) to the classification level of the information stored on the system.", "external_references": [ { @@ -7291,12 +7291,12 @@ } ], "id": "course-of-action--271a4655-0bfa-4f4b-a4a4-2b75ea3c7276", - "modified": "2021-01-06T18:30:53.817Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Maintenance Personnel | Security Clearances for Classified Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.817Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Verify that personnel performing maintenance and diagnostic activities on a system processing, storing, or transmitting classified information are U.S. citizens.\n\nPersonnel who conduct maintenance on organizational systems may be exposed to classified information during the course of their maintenance activities. If access to classified information on organizational systems is restricted to U.S. citizens, the same restriction is applied to personnel performing maintenance on those systems.", "external_references": [ { @@ -7305,12 +7305,12 @@ } ], "id": "course-of-action--9f739727-52f8-44d5-9ee2-505222aac26c", - "modified": "2021-01-06T18:30:53.817Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Maintenance Personnel | Citizenship Requirements for Classified Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.817Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Ensure that:\n(a) Foreign nationals with appropriate security clearances are used to conduct maintenance and diagnostic activities on classified systems only when the systems are jointly owned and operated by the United States and foreign allied governments, or owned and operated solely by foreign allied governments; and\n(b) Approvals, consents, and detailed operational conditions regarding the use of foreign nationals to conduct maintenance and diagnostic activities on classified systems are fully documented within Memoranda of Agreements.\n\nPersonnel who conduct maintenance and diagnostic activities on organizational systems may be exposed to classified information. If non-U.S. citizens are permitted to perform maintenance and diagnostics activities on classified systems, then additional vetting is required to ensure agreements and restrictions are not being violated.", "external_references": [ { @@ -7319,12 +7319,12 @@ } ], "id": "course-of-action--cc0e67c4-f5ac-4dc2-8a01-d52268e35bfd", - "modified": "2021-01-06T18:30:53.817Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Maintenance Personnel | Foreign Nationals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.817Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Ensure that non-escorted personnel performing maintenance activities not directly associated with the system but in the physical proximity of the system, have required access authorizations.\n\nPersonnel who perform maintenance activities in other capacities not directly related to the system include physical plant personnel and custodial personnel.", "external_references": [ { @@ -7333,12 +7333,12 @@ } ], "id": "course-of-action--642af829-03f6-43e4-b58c-3a04b77084ba", - "modified": "2021-01-06T18:30:53.817Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Maintenance Personnel | Non-system Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.817Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Obtain maintenance support and/or spare parts for [Assignment: organization-defined system components] within [Assignment: organization-defined time period] of failure.\n\nOrganizations specify the system components that result in increased risk to organizational operations and assets, individuals, other organizations, or the Nation when the functionality provided by those components is not operational. Organizational actions to obtain maintenance support include having appropriate contracts in place.", "external_references": [ { @@ -7347,12 +7347,12 @@ } ], "id": "course-of-action--13cc77c3-6d69-44e9-8c00-b79a5c30ccba", - "modified": "2021-01-06T18:30:53.817Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Timely Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.605Z", "description": "Perform preventive maintenance on [Assignment: organization-defined system components] at [Assignment: organization-defined time intervals].\n\nPreventive maintenance includes proactive care and the servicing of system components to maintain organizational equipment and facilities in satisfactory operating condition. Such maintenance provides for the systematic inspection, tests, measurements, adjustments, parts replacement, detection, and correction of incipient failures either before they occur or before they develop into major defects. The primary goal of preventive maintenance is to avoid or mitigate the consequences of equipment failures. Preventive maintenance is designed to preserve and restore equipment reliability by replacing worn components before they fail. Methods of determining what preventive (or other) failure management policies to apply include original equipment manufacturer recommendations; statistical failure records; expert opinion; maintenance that has already been conducted on similar equipment; requirements of codes, laws, or regulations within a jurisdiction; or measured values and performance indications.", "external_references": [ { @@ -7361,12 +7361,12 @@ } ], "id": "course-of-action--857c63ff-e19e-41af-84c8-7e075f82ea49", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.605Z", "name": "Timely Maintenance | Preventive Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.606Z", "description": "Perform predictive maintenance on [Assignment: organization-defined system components] at [Assignment: organization-defined time intervals].\n\nPredictive maintenance evaluates the condition of equipment by performing periodic or continuous (online) equipment condition monitoring. The goal of predictive maintenance is to perform maintenance at a scheduled time when the maintenance activity is most cost-effective and before the equipment loses performance within a threshold. The predictive component of predictive maintenance stems from the objective of predicting the future trend of the equipment's condition. The predictive maintenance approach employs principles of statistical process control to determine at what point in the future maintenance activities will be appropriate. Most predictive maintenance inspections are performed while equipment is in service, thus minimizing disruption of normal system operations. Predictive maintenance can result in substantial cost savings and higher system reliability.", "external_references": [ { @@ -7375,12 +7375,12 @@ } ], "id": "course-of-action--2c25aae0-9bf6-475a-8cce-a646854b9650", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.606Z", "name": "Timely Maintenance | Predictive Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.606Z", "description": "Transfer predictive maintenance data to a maintenance management system using [Assignment: organization-defined automated mechanisms].\n\nA computerized maintenance management system maintains a database of information about the maintenance operations of organizations and automates the processing of equipment condition data to trigger maintenance planning, execution, and reporting.", "external_references": [ { @@ -7389,12 +7389,12 @@ } ], "id": "course-of-action--f223be74-8fd6-4df3-bc84-e6207cc2caad", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.606Z", "name": "Timely Maintenance | Automated Support for Predictive Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.606Z", "description": "Restrict or prohibit field maintenance on [Assignment: organization-defined systems or system components] to [Assignment: organization-defined trusted maintenance facilities].\n\nField maintenance is the type of maintenance conducted on a system or system component after the system or component has been deployed to a specific site (i.e., operational environment). In certain instances, field maintenance (i.e., local maintenance at the site) may not be executed with the same degree of rigor or with the same quality control checks as depot maintenance. For critical systems designated as such by the organization, it may be necessary to restrict or prohibit field maintenance at the local site and require that such maintenance be conducted in trusted facilities with additional controls.", "external_references": [ { @@ -7403,12 +7403,12 @@ } ], "id": "course-of-action--b1f2c9ae-8c9e-4dbb-afa6-4b762a68ce0c", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.606Z", "name": "Field Maintenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.606Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] media protection policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the media protection policy and the associated media protection controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the media protection policy and procedures; and\nc. Review and update the current media protection:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nMedia protection policy and procedures address the controls in the MP family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of media protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to media protection policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -7417,12 +7417,12 @@ } ], "id": "course-of-action--38308b16-55b6-459b-b830-ab465da0bc71", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.606Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.818Z", + "created": "2021-01-13T01:52:41.606Z", "description": "Restrict access to [Assignment: organization-defined types of digital and/or non-digital media] to [Assignment: organization-defined personnel or roles].\n\nSystem media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Denying access to patient medical records in a community hospital unless the individuals seeking access to such records are authorized healthcare providers is an example of restricting access to non-digital media. Limiting access to the design specifications stored on compact discs in the media library to individuals on the system development team is an example of restricting access to digital media.", "external_references": [ { @@ -7431,12 +7431,12 @@ } ], "id": "course-of-action--813f571b-e85a-44c1-a515-dc787318c9c1", - "modified": "2021-01-06T18:30:53.818Z", + "modified": "2021-01-13T01:52:41.606Z", "name": "Media Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "", "external_references": [ { @@ -7445,12 +7445,12 @@ } ], "id": "course-of-action--725e16b1-b57c-4c9e-ad52-3bc8517b0595", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Access | Automated Restricted Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "", "external_references": [ { @@ -7459,12 +7459,12 @@ } ], "id": "course-of-action--692f32b0-ea47-464f-956a-ec772321b389", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Access | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "a. Mark system media indicating the distribution limitations, handling caveats, and applicable security markings (if any) of the information; and\nb. Exempt [Assignment: organization-defined types of system media] from marking if the media remain within [Assignment: organization-defined controlled areas].\n\nSecurity marking refers to the application or use of human-readable security attributes. Digital media includes diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), flash drives, compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Controlled unclassified information is defined by the National Archives and Records Administration along with the appropriate safeguarding and dissemination requirements for such information and is codified in [32 CFR 2002]. Security markings are generally not required for media that contains information determined by organizations to be in the public domain or to be publicly releasable. Some organizations may require markings for public information indicating that the information is publicly releasable. System media marking reflects applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.", "external_references": [ { @@ -7473,12 +7473,12 @@ } ], "id": "course-of-action--826cc852-f0e1-4148-9b45-fd25a9863b08", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Marking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "a. Physically control and securely store [Assignment: organization-defined types of digital and/or non-digital media] within [Assignment: organization-defined controlled areas]; and\nb. Protect system media types defined in MP-4a until the media are destroyed or sanitized using approved equipment, techniques, and procedures.\n\nSystem media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state, magnetic), compact discs, and digital versatile discs. Non-digital media includes paper and microfilm. Physically controlling stored media includes conducting inventories, ensuring procedures are in place to allow individuals to check out and return media to the library, and maintaining accountability for stored media. Secure storage includes a locked drawer, desk, or cabinet or a controlled media library. The type of media storage is commensurate with the security category or classification of the information on the media. Controlled areas are spaces that provide physical and procedural controls to meet the requirements established for protecting information and systems. Fewer controls may be needed for media that contains information determined to be in the public domain, publicly releasable, or have limited adverse impacts on organizations, operations, or individuals if accessed by other than authorized personnel. In these situations, physical access controls provide adequate protection.", "external_references": [ { @@ -7487,12 +7487,12 @@ } ], "id": "course-of-action--e5c5352e-c350-490b-8162-0dd367ffde89", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "", "external_references": [ { @@ -7501,12 +7501,12 @@ } ], "id": "course-of-action--021596c1-add3-4903-b9c1-ae5407b0a362", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Storage | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.819Z", + "created": "2021-01-13T01:52:41.607Z", "description": "Restrict access to media storage areas and log access attempts and access granted using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms include keypads, biometric readers, or card readers on the external entries to media storage areas.", "external_references": [ { @@ -7515,12 +7515,12 @@ } ], "id": "course-of-action--27e022e7-1adc-4793-8861-60090ea6285a", - "modified": "2021-01-06T18:30:53.819Z", + "modified": "2021-01-13T01:52:41.607Z", "name": "Media Storage | Automated Restricted Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "a. Protect and control [Assignment: organization-defined types of system media] during transport outside of controlled areas using [Assignment: organization-defined controls];\nb. Maintain accountability for system media during transport outside of controlled areas;\nc. Document activities associated with the transport of system media; and\nd. Restrict the activities associated with the transport of system media to authorized personnel.\n\nSystem media includes digital and non-digital media. Digital media includes flash drives, diskettes, magnetic tapes, external or removable hard disk drives (e.g., solid state and magnetic), compact discs, and digital versatile discs. Non-digital media includes microfilm and paper. Controlled areas are spaces for which organizations provide physical or procedural controls to meet requirements established for protecting information and systems. Controls to protect media during transport include cryptography and locked containers. Cryptographic mechanisms can provide confidentiality and integrity protections depending on the mechanisms implemented. Activities associated with media transport include releasing media for transport, ensuring that media enters the appropriate transport processes, and the actual transport. Authorized transport and courier personnel may include individuals external to the organization. Maintaining accountability of media during transport includes restricting transport activities to authorized personnel and tracking and/or obtaining records of transport activities as the media moves through the transportation system to prevent and detect loss, destruction, or tampering. Organizations establish documentation requirements for activities associated with the transport of system media in accordance with organizational assessments of risk. Organizations maintain the flexibility to define record-keeping methods for the different types of media transport as part of a system of transport-related records.", "external_references": [ { @@ -7529,12 +7529,12 @@ } ], "id": "course-of-action--456a2709-3d49-407d-a5ba-1dfe80010226", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Transport", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "", "external_references": [ { @@ -7543,12 +7543,12 @@ } ], "id": "course-of-action--d4431985-ecdf-409f-8491-f9330202e350", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Transport | Protection Outside of Controlled Areas", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "", "external_references": [ { @@ -7557,12 +7557,12 @@ } ], "id": "course-of-action--a1c3c81b-cd67-4108-bc10-c5a289c63dd6", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Transport | Documentation of Activities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "Employ an identified custodian during transport of system media outside of controlled areas.\n\nIdentified custodians provide organizations with specific points of contact during the media transport process and facilitate individual accountability. Custodial responsibilities can be transferred from one individual to another if an unambiguous custodian is identified.", "external_references": [ { @@ -7571,12 +7571,12 @@ } ], "id": "course-of-action--6bd1ef98-d3e1-4cdf-9a06-358f5d856cf8", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Transport | Custodians", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "", "external_references": [ { @@ -7585,12 +7585,12 @@ } ], "id": "course-of-action--65d0db45-fceb-4444-b35a-2d9a799593ff", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Transport | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "a. Sanitize [Assignment: organization-defined system media] prior to disposal, release out of organizational control, or release for reuse using [Assignment: organization-defined sanitization techniques and procedures]; and\nb. Employ sanitization mechanisms with the strength and integrity commensurate with the security category or classification of the information.\n\nMedia sanitization applies to all digital and non-digital system media subject to disposal or reuse, whether or not the media is considered removable. Examples include digital media in scanners, copiers, printers, notebook computers, workstations, network components, mobile devices, and non-digital media (e.g., paper and microfilm). The sanitization process removes information from system media such that the information cannot be retrieved or reconstructed. Sanitization techniques'including clearing, purging, cryptographic erase, de-identification of personally identifiable information, and destruction'prevent the disclosure of information to unauthorized individuals when such media is reused or released for disposal. Organizations determine the appropriate sanitization methods, recognizing that destruction is sometimes necessary when other methods cannot be applied to media requiring sanitization. Organizations use discretion on the employment of approved sanitization techniques and procedures for media that contains information deemed to be in the public domain or publicly releasable or information deemed to have no adverse impact on organizations or individuals if released for reuse or disposal. Sanitization of non-digital media includes destruction, removing a classified appendix from an otherwise unclassified document, or redacting selected sections or words from a document by obscuring the redacted sections or words in a manner equivalent in effectiveness to removing them from the document. NSA standards and policies control the sanitization process for media that contains classified information. NARA policies control the sanitization process for controlled unclassified information.", "external_references": [ { @@ -7599,12 +7599,12 @@ } ], "id": "course-of-action--8e85746b-0dc2-4966-beb4-a86f3d1faadc", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Sanitization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.820Z", + "created": "2021-01-13T01:52:41.608Z", "description": "Review, approve, track, document, and verify media sanitization and disposal actions.\n\nOrganizations review and approve media to be sanitized to ensure compliance with records retention policies. Tracking and documenting actions include listing personnel who reviewed and approved sanitization and disposal actions, types of media sanitized, files stored on the media, sanitization methods used, date and time of the sanitization actions, personnel who performed the sanitization, verification actions taken and personnel who performed the verification, and the disposal actions taken. Organizations verify that the sanitization of the media was effective prior to disposal.", "external_references": [ { @@ -7613,12 +7613,12 @@ } ], "id": "course-of-action--f7340334-a255-4fd8-b403-79de5737eb8a", - "modified": "2021-01-06T18:30:53.820Z", + "modified": "2021-01-13T01:52:41.608Z", "name": "Media Sanitization | Review, Approve, Track, Document, and Verify", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "Test sanitization equipment and procedures [Assignment: organization-defined frequency] to ensure that the intended sanitization is being achieved.\n\nTesting of sanitization equipment and procedures may be conducted by qualified and authorized external entities, including federal agencies or external service providers.", "external_references": [ { @@ -7627,12 +7627,12 @@ } ], "id": "course-of-action--2e30dc9d-0ae3-4024-8696-c334ced56e56", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Equipment Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "Apply nondestructive sanitization techniques to portable storage devices prior to connecting such devices to the system under the following circumstances: [Assignment: organization-defined circumstances requiring sanitization of portable storage devices].\n\nPortable storage devices include external or removable hard disk drives (e.g., solid state, magnetic), optical discs, magnetic or optical tapes, flash memory devices, flash memory cards, and other external or removable disks. Portable storage devices can be obtained from untrustworthy sources and contain malicious code that can be inserted into or transferred to organizational systems through USB ports or other entry portals. While scanning storage devices is recommended, sanitization provides additional assurance that such devices are free of malicious code. Organizations consider nondestructive sanitization of portable storage devices when the devices are purchased from manufacturers or vendors prior to initial use or when organizations cannot maintain a positive chain of custody for the devices.", "external_references": [ { @@ -7641,12 +7641,12 @@ } ], "id": "course-of-action--3b7424d1-005c-4023-97a3-6d292db85cdf", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Nondestructive Techniques", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "", "external_references": [ { @@ -7655,12 +7655,12 @@ } ], "id": "course-of-action--7041e0d9-74d3-4756-b6d3-da5b3e28cc85", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Controlled Unclassified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "", "external_references": [ { @@ -7669,12 +7669,12 @@ } ], "id": "course-of-action--6c71451a-0987-4fbb-a5cf-321d5f90c700", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Classified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "", "external_references": [ { @@ -7683,12 +7683,12 @@ } ], "id": "course-of-action--f554c620-bc1a-4621-8533-ddac41fe4993", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Media Destruction", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.821Z", + "created": "2021-01-13T01:52:41.609Z", "description": "Enforce dual authorization for the sanitization of [Assignment: organization-defined system media].\n\nOrganizations employ dual authorization to help ensure that system media sanitization cannot occur unless two technically qualified individuals conduct the designated task. Individuals who sanitize system media possess sufficient skills and expertise to determine if the proposed sanitization reflects applicable federal and organizational standards, policies, and procedures. Dual authorization also helps to ensure that sanitization occurs as intended, protecting against errors and false claims of having performed the sanitization actions. Dual authorization may also be known as two-person control. To reduce the risk of collusion, organizations consider rotating dual authorization duties to other individuals.", "external_references": [ { @@ -7697,12 +7697,12 @@ } ], "id": "course-of-action--d67f94f0-f4f9-4a56-9b32-5022519d0d9b", - "modified": "2021-01-06T18:30:53.821Z", + "modified": "2021-01-13T01:52:41.609Z", "name": "Media Sanitization | Dual Authorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "Provide the capability to purge or wipe information from [Assignment: organization-defined systems or system components]\n [Selection: remotely; under the following conditions: [Assignment: organization-defined conditions]\n ].\n\nRemote purging or wiping of information protects information on organizational systems and system components if systems or components are obtained by unauthorized individuals. Remote purge or wipe commands require strong authentication to help mitigate the risk of unauthorized individuals purging or wiping the system, component, or device. The purge or wipe function can be implemented in a variety of ways, including by overwriting data or information multiple times or by destroying the key necessary to decrypt encrypted data.", "external_references": [ { @@ -7711,12 +7711,12 @@ } ], "id": "course-of-action--f2542370-e9d0-4c34-9466-0c5914241945", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Sanitization | Remote Purging or Wiping of Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "a. [Selection: Restrict; Prohibit] the use of [Assignment: organization-defined types of system media] on [Assignment: organization-defined systems or system components] using [Assignment: organization-defined controls]; and\nb. Prohibit the use of portable storage devices in organizational systems when such devices have no identifiable owner.\n\nSystem media includes both digital and non-digital media. Digital media includes diskettes, magnetic tapes, flash drives, compact discs, digital versatile discs, and removable hard disk drives. Non-digital media includes paper and microfilm. Media use protections also apply to mobile devices with information storage capabilities. In contrast to MP-2, which restricts user access to media, MP-7 restricts the use of certain types of media on systems, for example, restricting or prohibiting the use of flash drives or external hard disk drives. Organizations use technical and nontechnical controls to restrict the use of system media. Organizations may restrict the use of portable storage devices, for example, by using physical cages on workstations to prohibit access to certain external ports or disabling or removing the ability to insert, read, or write to such devices. Organizations may also limit the use of portable storage devices to only approved devices, including devices provided by the organization, devices provided by other approved organizations, and devices that are not personally owned. Finally, organizations may restrict the use of portable storage devices based on the type of device, such as by prohibiting the use of writeable, portable storage devices and implementing this restriction by disabling or removing the capability to write to such devices. Requiring identifiable owners for storage devices reduces the risk of using such devices by allowing organizations to assign responsibility for addressing known vulnerabilities in the devices.", "external_references": [ { @@ -7725,12 +7725,12 @@ } ], "id": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "", "external_references": [ { @@ -7739,12 +7739,12 @@ } ], "id": "course-of-action--b4ec93c7-205a-42a6-aa45-6eb223f37472", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Use | Prohibit Use Without Owner", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "Prohibit the use of sanitization-resistant media in organizational systems.\n\nSanitization resistance refers to how resistant media are to non-destructive sanitization techniques with respect to the capability to purge information from media. Certain types of media do not support sanitization commands, or if supported, the interfaces are not supported in a standardized way across these devices. Sanitization-resistant media includes compact flash, embedded flash on boards and devices, solid state drives, and USB removable media.", "external_references": [ { @@ -7753,12 +7753,12 @@ } ], "id": "course-of-action--59cfd289-4a9e-40e9-a3f6-e77aa0bb737b", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Use | Prohibit Use of Sanitization-resistant Media", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "a. Establish [Assignment: organization-defined system media downgrading process] that includes employing downgrading mechanisms with strength and integrity commensurate with the security category or classification of the information;\nb. Verify that the system media downgrading process is commensurate with the security category and/or classification level of the information to be removed and the access authorizations of the potential recipients of the downgraded information;\nc. Identify [Assignment: organization-defined system media requiring downgrading]; and\nd. Downgrade the identified system media using the established process.\n\nMedia downgrading applies to digital and non-digital media subject to release outside of the organization, whether the media is considered removable or not. When applied to system media, the downgrading process removes information from the media, typically by security category or classification level, such that the information cannot be retrieved or reconstructed. Downgrading of media includes redacting information to enable wider release and distribution. Downgrading ensures that empty space on the media is devoid of information.", "external_references": [ { @@ -7767,12 +7767,12 @@ } ], "id": "course-of-action--a81ef5b4-7c17-4948-8bb1-11add474769b", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Downgrading", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.823Z", + "created": "2021-01-13T01:52:41.610Z", "description": "Document system media downgrading actions.\n\nOrganizations can document the media downgrading process by providing information, such as the downgrading technique employed, the identification number of the downgraded media, and the identity of the individual that authorized and/or performed the downgrading action.", "external_references": [ { @@ -7781,12 +7781,12 @@ } ], "id": "course-of-action--5be2af0e-d290-4501-b0d3-a6ac4353b3e0", - "modified": "2021-01-06T18:30:53.823Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Downgrading | Documentation of Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.823Z", + "created": "2021-01-13T01:52:41.610Z", "description": "Test downgrading equipment and procedures [Assignment: organization-defined frequency] to ensure that downgrading actions are being achieved.\n\nNone.", "external_references": [ { @@ -7795,12 +7795,12 @@ } ], "id": "course-of-action--7a0fde3f-f2c4-49d8-8bc2-dd8690aa5db9", - "modified": "2021-01-06T18:30:53.823Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Downgrading | Equipment Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.823Z", + "created": "2021-01-13T01:52:41.611Z", "description": "Downgrade system media containing controlled unclassified information prior to public release.\n\nThe downgrading of controlled unclassified information uses approved sanitization tools, techniques, and procedures.", "external_references": [ { @@ -7809,12 +7809,12 @@ } ], "id": "course-of-action--eccb5145-7041-4d6f-a4ab-0c7d8998ef8f", - "modified": "2021-01-06T18:30:53.823Z", + "modified": "2021-01-13T01:52:41.611Z", "name": "Media Downgrading | Controlled Unclassified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.823Z", + "created": "2021-01-13T01:52:41.611Z", "description": "Downgrade system media containing classified information prior to release to individuals without required access authorizations.\n\nDowngrading of classified information uses approved sanitization tools, techniques, and procedures to transfer information confirmed to be unclassified from classified systems to unclassified media.", "external_references": [ { @@ -7823,12 +7823,12 @@ } ], "id": "course-of-action--b218527b-8758-4144-81b5-545abbfe8a30", - "modified": "2021-01-06T18:30:53.823Z", + "modified": "2021-01-13T01:52:41.611Z", "name": "Media Downgrading | Classified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.823Z", + "created": "2021-01-13T01:52:41.611Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] physical and environmental protection policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the physical and environmental protection policy and the associated physical and environmental protection controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the physical and environmental protection policy and procedures; and\nc. Review and update the current physical and environmental protection:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nPhysical and environmental protection policy and procedures address the controls in the PE family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of physical and environmental protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to physical and environmental protection policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -7837,12 +7837,12 @@ } ], "id": "course-of-action--75d902c8-abdf-460c-af3b-4e2251c36e03", - "modified": "2021-01-06T18:30:53.823Z", + "modified": "2021-01-13T01:52:41.611Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.611Z", "description": "a. Develop, approve, and maintain a list of individuals with authorized access to the facility where the system resides;\nb. Issue authorization credentials for facility access;\nc. Review the access list detailing authorized facility access by individuals [Assignment: organization-defined frequency]; and\nd. Remove individuals from the facility access list when access is no longer required.\n\nPhysical access authorizations apply to employees and visitors. Individuals with permanent physical access authorization credentials are not considered visitors. Authorization credentials include ID badges, identification cards, and smart cards. Organizations determine the strength of authorization credentials needed consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Physical access authorizations may not be necessary to access certain areas within facilities that are designated as publicly accessible.", "external_references": [ { @@ -7851,12 +7851,12 @@ } ], "id": "course-of-action--7691b4c3-f456-4b62-95a3-1b340a84f32f", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.611Z", "name": "Physical Access Authorizations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.611Z", "description": "Authorize physical access to the facility where the system resides based on position or role.\n\nRole-based facility access includes access by authorized permanent and regular/routine maintenance personnel, duty officers, and emergency medical staff.", "external_references": [ { @@ -7865,12 +7865,12 @@ } ], "id": "course-of-action--9518de9a-fa90-4de7-b975-010ac5dd2623", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.611Z", "name": "Physical Access Authorizations | Access by Position or Role", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.612Z", "description": "Require two forms of identification from the following forms of identification for visitor access to the facility where the system resides: [Assignment: organization-defined list of acceptable forms of identification].\n\nAcceptable forms of identification include passports, REAL ID-compliant drivers' licenses, and Personal Identity Verification (PIV) cards. For gaining access to facilities using automated mechanisms, organizations may use PIV cards, key cards, PINs, and biometrics.", "external_references": [ { @@ -7879,12 +7879,12 @@ } ], "id": "course-of-action--687bbf35-7cf1-455c-baa0-367bffc7c3de", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Authorizations | Two Forms of Identification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.612Z", "description": "Restrict unescorted access to the facility where the system resides to personnel with [Selection (one or more): security clearances for all information contained within the system; formal access authorizations for all information contained within the system; need for access to all information contained within the system; \n [Assignment: organization-defined physical access authorizations]\n ].\n\nIndividuals without required security clearances, access approvals, or need to know are escorted by individuals with appropriate physical access authorizations to ensure that information is not exposed or otherwise compromised.", "external_references": [ { @@ -7893,12 +7893,12 @@ } ], "id": "course-of-action--faa1f15c-5971-43f8-8376-be1b693d1925", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Authorizations | Restrict Unescorted Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.612Z", "description": "a. Enforce physical access authorizations at [Assignment: organization-defined entry and exit points to the facility where the system resides] by:\n1. Verifying individual access authorizations before granting access to the facility; and\n2. Controlling ingress and egress to the facility using [Selection (one or more): \n [Assignment: organization-defined physical access control systems or devices]\n ; guards];\nb. Maintain physical access audit logs for [Assignment: organization-defined entry or exit points];\nc. Control access to areas within the facility designated as publicly accessible by implementing the following controls: [Assignment: organization-defined physical access controls];\nd. Escort visitors and control visitor activity [Assignment: organization-defined circumstances requiring visitor escorts and control of visitor activity];\ne. Secure keys, combinations, and other physical access devices;\nf. Inventory [Assignment: organization-defined physical access devices] every [Assignment: organization-defined frequency]; and\ng. Change combinations and keys [Assignment: organization-defined frequency] and/or when keys are lost, combinations are compromised, or when individuals possessing the keys or combinations are transferred or terminated.\n\nPhysical access control applies to employees and visitors. Individuals with permanent physical access authorizations are not considered visitors. Physical access controls for publicly accessible areas may include physical access control logs/records, guards, or physical access devices and barriers to prevent movement from publicly accessible areas to non-public areas. Organizations determine the types of guards needed, including professional security staff, system users, or administrative staff. Physical access devices include keys, locks, combinations, biometric readers, and card readers. Physical access control systems comply with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. Organizations have flexibility in the types of audit logs employed. Audit logs can be procedural, automated, or some combination thereof. Physical access points can include facility access points, interior access points to systems that require supplemental access controls, or both. Components of systems may be in areas designated as publicly accessible with organizations controlling access to the components.", "external_references": [ { @@ -7907,12 +7907,12 @@ } ], "id": "course-of-action--a1bf4237-87a8-460c-9079-d5da555304d3", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.824Z", + "created": "2021-01-13T01:52:41.612Z", "description": "Enforce physical access authorizations to the system in addition to the physical access controls for the facility at [Assignment: organization-defined physical spaces containing one or more components of the system].\n\nControl of physical access to the system provides additional physical security for those areas within facilities where there is a concentration of system components.", "external_references": [ { @@ -7921,12 +7921,12 @@ } ], "id": "course-of-action--4d7e0e0d-7309-4753-af84-951b6aac6f96", - "modified": "2021-01-06T18:30:53.824Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Control | System Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.612Z", "description": "Perform security checks [Assignment: organization-defined frequency] at the physical perimeter of the facility or system for exfiltration of information or removal of system components.\n\nOrganizations determine the extent, frequency, and/or randomness of security checks to adequately mitigate risk associated with exfiltration.", "external_references": [ { @@ -7935,12 +7935,12 @@ } ], "id": "course-of-action--8c597664-e664-43c9-b268-80548c3408fe", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Control | Facility and Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.612Z", "description": "Employ guards to control [Assignment: organization-defined physical access points] to the facility where the system resides 24 hours per day, 7 days per week.\n\nEmploying guards at selected physical access points to the facility provides a more rapid response capability for organizations. Guards also provide the opportunity for human surveillance in areas of the facility not covered by video surveillance.", "external_references": [ { @@ -7949,12 +7949,12 @@ } ], "id": "course-of-action--5180ddbd-b5cd-4e58-a3da-d897127abc3c", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.612Z", "name": "Physical Access Control | Continuous Guards", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Use lockable physical casings to protect [Assignment: organization-defined system components] from unauthorized physical access.\n\nThe greatest risk from the use of portable devices'such as smart phones, tablets, and notebook computers'is theft. Organizations can employ lockable, physical casings to reduce or eliminate the risk of equipment theft. Such casings come in a variety of sizes, from units that protect a single notebook computer to full cabinets that can protect multiple servers, computers, and peripherals. Lockable physical casings can be used in conjunction with cable locks or lockdown plates to prevent the theft of the locked casing containing the computer equipment.", "external_references": [ { @@ -7963,12 +7963,12 @@ } ], "id": "course-of-action--8eabc44a-da97-4742-b2df-3f33b372f2bd", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Physical Access Control | Lockable Casings", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Employ [Assignment: organization-defined anti-tamper technologies] to [Selection (one or more): detect; prevent] physical tampering or alteration of [Assignment: organization-defined hardware components] within the system.\n\nOrganizations can implement tamper detection and prevention at selected hardware components or implement tamper detection at some components and tamper prevention at other components. Detection and prevention activities can employ many types of anti-tamper technologies, including tamper-detection seals and anti-tamper coatings. Anti-tamper programs help to detect hardware alterations through counterfeiting and other supply chain-related risks.", "external_references": [ { @@ -7977,12 +7977,12 @@ } ], "id": "course-of-action--fc285a64-1698-4557-800e-73ef97659426", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Physical Access Control | Tamper Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.613Z", "description": "", "external_references": [ { @@ -7991,12 +7991,12 @@ } ], "id": "course-of-action--6a3a2bc4-628f-4a28-beb1-42e87350dc0c", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Physical Access Control | Facility Penetration Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Limit access using physical barriers.\n\nPhysical barriers include bollards, concrete slabs, jersey walls, and hydraulic active vehicle barriers.", "external_references": [ { @@ -8005,12 +8005,12 @@ } ], "id": "course-of-action--44c5520b-6c64-4c95-ac04-d777ac1e3c70", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Physical Access Control | Physical Barriers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.825Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Employ access control vestibules at [Assignment: organization-defined locations within the facility].\n\nAn access control vestibule, or mantrap, is part of a physical access control system that typically provides a space between two sets of interlocking doors. Mantraps are designed to prevent unauthorized individuals from following authorized individuals into facilities with controlled access. This activity, also known as piggybacking or tailgating, results in unauthorized access to the facility. Interlocking door controllers can be used to limit the number of individuals who enter controlled access points and to provide containment areas while authorization for physical access is verified. Interlocking door controllers can be fully automated (i.e., controlling the opening and closing of the doors) or partially automated (i.e., using security guards to control the number of individuals entering the containment area).", "external_references": [ { @@ -8019,12 +8019,12 @@ } ], "id": "course-of-action--737efb1c-63b0-4cf9-b895-072a2845d3a7", - "modified": "2021-01-06T18:30:53.825Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Physical Access Control | Access Control Vestibules", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Control physical access to [Assignment: organization-defined system distribution and transmission lines] within organizational facilities using [Assignment: organization-defined security controls].\n\nSecurity controls applied to system distribution and transmission lines prevent accidental damage, disruption, and physical tampering. Such controls may also be necessary to prevent eavesdropping or modification of unencrypted transmissions. Security controls used to control physical access to system distribution and transmission lines include disconnected or locked spare jacks, locked wiring closets, protection of cabling by conduit or cable trays, and wiretapping sensors.", "external_references": [ { @@ -8033,12 +8033,12 @@ } ], "id": "course-of-action--d2990f24-b8c6-4bd6-9c68-dbd9a69c867c", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Access Control for Transmission", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.613Z", "description": "Control physical access to output from [Assignment: organization-defined output devices] to prevent unauthorized individuals from obtaining the output.\n\nControlling physical access to output devices includes placing output devices in locked rooms or other secured areas with keypad or card reader access controls and allowing access to authorized individuals only, placing output devices in locations that can be monitored by personnel, installing monitor or screen filters, and using headphones. Examples of output devices include monitors, printers, scanners, audio devices, facsimile machines, and copiers.", "external_references": [ { @@ -8047,12 +8047,12 @@ } ], "id": "course-of-action--acb40101-737f-4649-9aa6-80c7fc082ada", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.613Z", "name": "Access Control for Output Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.614Z", "description": "", "external_references": [ { @@ -8061,12 +8061,12 @@ } ], "id": "course-of-action--272f1fca-195b-405f-9a1d-14fc69733078", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Access Control for Output Devices | Access to Output by Authorized Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.614Z", "description": "Link individual identity to receipt of output from output devices.\n\nMethods for linking individual identity to the receipt of output from output devices include installing security functionality on facsimile machines, copiers, and printers. Such functionality allows organizations to implement authentication on output devices prior to the release of output to individuals.", "external_references": [ { @@ -8075,12 +8075,12 @@ } ], "id": "course-of-action--2722ff54-de71-499e-bcd0-767a0598f888", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Access Control for Output Devices | Link to Individual Identity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.614Z", "description": "", "external_references": [ { @@ -8089,12 +8089,12 @@ } ], "id": "course-of-action--a26995c6-acf2-4b34-bdf5-be8d0a614728", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Access Control for Output Devices | Marking Output Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.826Z", + "created": "2021-01-13T01:52:41.614Z", "description": "a. Monitor physical access to the facility where the system resides to detect and respond to physical security incidents;\nb. Review physical access logs [Assignment: organization-defined frequency] and upon occurrence of [Assignment: organization-defined events or potential indications of events]; and\nc. Coordinate results of reviews and investigations with the organizational incident response capability.\n\nPhysical access monitoring includes publicly accessible areas within organizational facilities. Examples of physical access monitoring include the employment of guards, video surveillance equipment (i.e., cameras), and sensor devices. Reviewing physical access logs can help identify suspicious activity, anomalous events, or potential threats. The reviews can be supported by audit logging controls, such as AU-2, if the access logs are part of an automated system. Organizational incident response capabilities include investigations of physical security incidents and responses to the incidents. Incidents include security violations or suspicious physical access activities. Suspicious physical access activities include accesses outside of normal work hours, repeated accesses to areas not normally accessed, accesses for unusual lengths of time, and out-of-sequence accesses.", "external_references": [ { @@ -8103,12 +8103,12 @@ } ], "id": "course-of-action--a28d24a5-0fd7-492c-a7a7-49505c6367f8", - "modified": "2021-01-06T18:30:53.826Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Monitoring Physical Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.827Z", + "created": "2021-01-13T01:52:41.614Z", "description": "Monitor physical access to the facility where the system resides using physical intrusion alarms and surveillance equipment.\n\nPhysical intrusion alarms can be employed to alert security personnel when unauthorized access to the facility is attempted. Alarm systems work in conjunction with physical barriers, physical access control systems, and security guards by triggering a response when these other forms of security have been compromised or breached. Physical intrusion alarms can include different types of sensor devices, such as motion sensors, contact sensors, and broken glass sensors. Surveillance equipment includes video cameras installed at strategic locations throughout the facility.", "external_references": [ { @@ -8117,12 +8117,12 @@ } ], "id": "course-of-action--d9462a59-ed70-447e-a6d0-756a2a17b041", - "modified": "2021-01-06T18:30:53.827Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Monitoring Physical Access | Intrusion Alarms and Surveillance Equipment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.827Z", + "created": "2021-01-13T01:52:41.614Z", "description": "Recognize [Assignment: organization-defined classes or types of intrusions] and initiate [Assignment: organization-defined response actions] using [Assignment: organization-defined automated mechanisms].\n\nResponse actions can include notifying selected organizational personnel or law enforcement personnel. Automated mechanisms implemented to initiate response actions include system alert notifications, email and text messages, and activating door locking mechanisms. Physical access monitoring can be coordinated with intrusion detection systems and system monitoring capabilities to provide integrated threat coverage for the organization.", "external_references": [ { @@ -8131,12 +8131,12 @@ } ], "id": "course-of-action--5f35bb14-ca40-4987-8e20-e9b4df938656", - "modified": "2021-01-06T18:30:53.827Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Monitoring Physical Access | Automated Intrusion Recognition and Responses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.827Z", + "created": "2021-01-13T01:52:41.614Z", "description": "(a) Employ video surveillance of [Assignment: organization-defined operational areas];\n(b) Review video recordings [Assignment: organization-defined frequency]; and\n(c) Retain video recordings for [Assignment: organization-defined time period].\n\nVideo surveillance focuses on recording activity in specified areas for the purposes of subsequent review, if circumstances so warrant. Video recordings are typically reviewed to detect anomalous events or incidents. Monitoring the surveillance video is not required, although organizations may choose to do so. There may be legal considerations when performing and retaining video surveillance, especially if such surveillance is in a public location.", "external_references": [ { @@ -8145,12 +8145,12 @@ } ], "id": "course-of-action--3b3c3e31-08e8-4551-a8fe-1f701e3dd048", - "modified": "2021-01-06T18:30:53.827Z", + "modified": "2021-01-13T01:52:41.614Z", "name": "Monitoring Physical Access | Video Surveillance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "Monitor physical access to the system in addition to the physical access monitoring of the facility at [Assignment: organization-defined physical spaces containing one or more components of the system].\n\nMonitoring physical access to systems provides additional monitoring for those areas within facilities where there is a concentration of system components, including server rooms, media storage areas, and communications centers. Physical access monitoring can be coordinated with intrusion detection systems and system monitoring capabilities to provide comprehensive and integrated threat coverage for the organization.", "external_references": [ { @@ -8159,12 +8159,12 @@ } ], "id": "course-of-action--f13169cd-07b1-4b7e-8c52-a670932581e8", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Monitoring Physical Access | Monitoring Physical Access to Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "", "external_references": [ { @@ -8173,12 +8173,12 @@ } ], "id": "course-of-action--d973b3ca-f0aa-4e77-b589-a5db88278352", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Visitor Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "a. Maintain visitor access records to the facility where the system resides for [Assignment: organization-defined time period];\nb. Review visitor access records [Assignment: organization-defined frequency]; and\nc. Report anomalies in visitor access records to [Assignment: organization-defined personnel].\n\nVisitor access records include the names and organizations of individuals visiting, visitor signatures, forms of identification, dates of access, entry and departure times, purpose of visits, and the names and organizations of individuals visited. Access record reviews determine if access authorizations are current and are still required to support organizational mission and business functions. Access records are not required for publicly accessible areas.", "external_references": [ { @@ -8187,12 +8187,12 @@ } ], "id": "course-of-action--9bcddf52-f785-476e-92f4-e3125ae6460e", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Visitor Access Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "Maintain and review visitor access records using [Assignment: organization-defined automated mechanisms].\n\nVisitor access records may be stored and maintained in a database management system that is accessible by organizational personnel. Automated access to such records facilitates record reviews on a regular basis to determine if access authorizations are current and still required to support organizational mission and business functions.", "external_references": [ { @@ -8201,12 +8201,12 @@ } ], "id": "course-of-action--13a1201c-9284-4c9e-88f5-37dc8456cf41", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Visitor Access Records | Automated Records Maintenance and Review", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "", "external_references": [ { @@ -8215,12 +8215,12 @@ } ], "id": "course-of-action--73600ade-7137-49fe-a014-80a109590c68", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Visitor Access Records | Physical Access Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.828Z", + "created": "2021-01-13T01:52:41.615Z", "description": "Limit personally identifiable information contained in visitor access records to the following elements identified in the privacy risk assessment: [Assignment: organization-defined elements].\n\nOrganizations may have requirements that specify the contents of visitor access records. Limiting personally identifiable information in visitor access records when such information is not needed for operational purposes helps reduce the level of privacy risk created by a system.", "external_references": [ { @@ -8229,12 +8229,12 @@ } ], "id": "course-of-action--232cfceb-41e4-4904-81c6-b0fac45eabd8", - "modified": "2021-01-06T18:30:53.828Z", + "modified": "2021-01-13T01:52:41.615Z", "name": "Visitor Access Records | Limit Personally Identifiable Information Elements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "Protect power equipment and power cabling for the system from damage and destruction.\n\nOrganizations determine the types of protection necessary for the power equipment and cabling employed at different locations that are both internal and external to organizational facilities and environments of operation. Types of power equipment and cabling include internal cabling and uninterruptable power sources in offices or data centers, generators and power cabling outside of buildings, and power sources for self-contained components such as satellites, vehicles, and other deployable systems.", "external_references": [ { @@ -8243,12 +8243,12 @@ } ], "id": "course-of-action--77a49eff-5e06-40ea-b4cf-ab4871d82bb1", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Power Equipment and Cabling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "Employ redundant power cabling paths that are physically separated by [Assignment: organization-defined distance].\n\nPhysically separate and redundant power cables ensure that power continues to flow in the event that one of the cables is cut or otherwise damaged.", "external_references": [ { @@ -8257,12 +8257,12 @@ } ], "id": "course-of-action--85c0a648-b9e2-4dc2-9061-8212454fb16b", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Power Equipment and Cabling | Redundant Cabling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "Employ automatic voltage controls for [Assignment: organization-defined critical system components].\n\nAutomatic voltage controls can monitor and control voltage. Such controls include voltage regulators, voltage conditioners, and voltage stabilizers.", "external_references": [ { @@ -8271,12 +8271,12 @@ } ], "id": "course-of-action--4f7bbf39-69b4-4006-afc3-4fc907c03b40", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Power Equipment and Cabling | Automatic Voltage Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "a. Provide the capability of shutting off power to [Assignment: organization-defined system or individual system components] in emergency situations;\nb. Place emergency shutoff switches or devices in [Assignment: organization-defined location by system or system component] to facilitate access for authorized personnel; and\nc. Protect emergency power shutoff capability from unauthorized activation.\n\nEmergency power shutoff primarily applies to organizational facilities that contain concentrations of system resources, including data centers, mainframe computer rooms, server rooms, and areas with computer-controlled machinery.", "external_references": [ { @@ -8285,12 +8285,12 @@ } ], "id": "course-of-action--84a4723c-2875-4007-a59d-fd288c161582", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Emergency Shutoff", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "", "external_references": [ { @@ -8299,12 +8299,12 @@ } ], "id": "course-of-action--40ea7f18-f8dc-4cb2-b538-382af82cc902", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Emergency Shutoff | Accidental and Unauthorized Activation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.829Z", + "created": "2021-01-13T01:52:41.616Z", "description": "Provide an uninterruptible power supply to facilitate [Selection (one or more): an orderly shutdown of the system; transition of the system to long-term alternate power] in the event of a primary power source loss.\n\nAn uninterruptible power supply (UPS) is an electrical system or mechanism that provides emergency power when there is a failure of the main power source. A UPS is typically used to protect computers, data centers, telecommunication equipment, or other electrical equipment where an unexpected power disruption could cause injuries, fatalities, serious mission or business disruption, or loss of data or information. A UPS differs from an emergency power system or backup generator in that the UPS provides near-instantaneous protection from unanticipated power interruptions from the main power source by providing energy stored in batteries, supercapacitors, or flywheels. The battery duration of a UPS is relatively short but provides sufficient time to start a standby power source, such as a backup generator, or properly shut down the system.", "external_references": [ { @@ -8313,12 +8313,12 @@ } ], "id": "course-of-action--5df2bede-69b6-4d5d-8a5c-6910ee3e0e66", - "modified": "2021-01-06T18:30:53.829Z", + "modified": "2021-01-13T01:52:41.616Z", "name": "Emergency Power", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.830Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Provide an alternate power supply for the system that is activated [Selection: manually; automatically] and that can maintain minimally required operational capability in the event of an extended loss of the primary power source.\n\nProvision of an alternate power supply with minimal operating capability can be satisfied by accessing a secondary commercial power supply or other external power supply.", "external_references": [ { @@ -8327,12 +8327,12 @@ } ], "id": "course-of-action--9f3d0617-6f7c-42e2-a91c-a5ec4e387935", - "modified": "2021-01-06T18:30:53.830Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Emergency Power | Alternate Power Supply ' Minimal Operational Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.830Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Provide an alternate power supply for the system that is activated [Selection: manually; automatically] and that is:\n(a) Self-contained;\n(b) Not reliant on external power generation; and\n(c) Capable of maintaining [Selection: minimally required operational capability; full operational capability] in the event of an extended loss of the primary power source.\n\nThe provision of a long-term, self-contained power supply can be satisfied by using one or more generators with sufficient capacity to meet the needs of the organization.", "external_references": [ { @@ -8341,12 +8341,12 @@ } ], "id": "course-of-action--246791e5-cbec-4d05-ab07-e6b03fa76fdb", - "modified": "2021-01-06T18:30:53.830Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Emergency Power | Alternate Power Supply ' Self-contained", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.830Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Employ and maintain automatic emergency lighting for the system that activates in the event of a power outage or disruption and that covers emergency exits and evacuation routes within the facility.\n\nThe provision of emergency lighting applies primarily to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Emergency lighting provisions for the system are described in the contingency plan for the organization. If emergency lighting for the system fails or cannot be provided, organizations consider alternate processing sites for power-related contingencies.", "external_references": [ { @@ -8355,12 +8355,12 @@ } ], "id": "course-of-action--dd69fe18-b683-46b3-a86e-ba241b762dfc", - "modified": "2021-01-06T18:30:53.830Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Emergency Lighting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.830Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Provide emergency lighting for all areas within the facility supporting essential mission and business functions.\n\nOrganizations define their essential missions and functions.", "external_references": [ { @@ -8369,12 +8369,12 @@ } ], "id": "course-of-action--333766fa-9ff8-4a0e-bf1c-921cfe081b5d", - "modified": "2021-01-06T18:30:53.830Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Emergency Lighting | Essential Mission and Business Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.830Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Employ and maintain fire detection and suppression systems that are supported by an independent energy source.\n\nThe provision of fire detection and suppression systems applies primarily to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Fire detection and suppression systems that may require an independent energy source include sprinkler systems and smoke detectors. An independent energy source is an energy source, such as a microgrid, that is separate, or can be separated, from the energy sources providing power for the other parts of the facility.", "external_references": [ { @@ -8383,12 +8383,12 @@ } ], "id": "course-of-action--4d043e53-c612-4fb9-87a5-df9aca3b2c3c", - "modified": "2021-01-06T18:30:53.830Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Fire Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.617Z", "description": "Employ fire detection systems that activate automatically and notify [Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders] in the event of a fire.\n\nOrganizations can identify personnel, roles, and emergency responders if individuals on the notification list need to have access authorizations or clearances (e.g., to enter to facilities where access is restricted due to the classification or impact level of information within the facility). Notification mechanisms may require independent energy sources to ensure that the notification capability is not adversely affected by the fire.", "external_references": [ { @@ -8397,12 +8397,12 @@ } ], "id": "course-of-action--38b2de86-535f-4ed6-b20e-4c4134b646bc", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Fire Protection | Detection Systems ' Automatic Activation and Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.617Z", "description": "(a) Employ fire suppression systems that activate automatically and notify [Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders]; and\n(b) Employ an automatic fire suppression capability when the facility is not staffed on a continuous basis.\n\nOrganizations can identify specific personnel, roles, and emergency responders if individuals on the notification list need to have appropriate access authorizations and/or clearances (e.g., to enter to facilities where access is restricted due to the impact level or classification of information within the facility). Notification mechanisms may require independent energy sources to ensure that the notification capability is not adversely affected by the fire.", "external_references": [ { @@ -8411,12 +8411,12 @@ } ], "id": "course-of-action--e1f206af-2a10-4af8-b388-5512e69acd81", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.617Z", "name": "Fire Protection | Suppression Systems ' Automatic Activation and Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.618Z", "description": "", "external_references": [ { @@ -8425,12 +8425,12 @@ } ], "id": "course-of-action--3af54ad1-9176-41c3-ba0e-498de6929c02", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Fire Protection | Automatic Fire Suppression", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.618Z", "description": "Ensure that the facility undergoes [Assignment: organization-defined frequency] fire protection inspections by authorized and qualified inspectors and identified deficiencies are resolved within [Assignment: organization-defined time period].\n\nAuthorized and qualified personnel within the jurisdiction of the organization include state, county, and city fire inspectors and fire marshals. Organizations provide escorts during inspections in situations where the systems that reside within the facilities contain sensitive information.", "external_references": [ { @@ -8439,12 +8439,12 @@ } ], "id": "course-of-action--6ed240d3-4698-47b8-9e5a-b0805152abd3", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Fire Protection | Inspections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.618Z", "description": "a. Maintain [Selection (one or more): temperature; humidity; pressure; radiation; \n [Assignment: organization-defined environmental control]\n ] levels within the facility where the system resides at [Assignment: organization-defined acceptable levels]; and\nb. Monitor environmental control levels [Assignment: organization-defined frequency].\n\nThe provision of environmental controls applies primarily to organizational facilities that contain concentrations of system resources (e.g., data centers, mainframe computer rooms, and server rooms). Insufficient environmental controls, especially in very harsh environments, can have a significant adverse impact on the availability of systems and system components that are needed to support organizational mission and business functions.", "external_references": [ { @@ -8453,12 +8453,12 @@ } ], "id": "course-of-action--41b3f539-d736-4682-a1c2-8d054ec0a230", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Environmental Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.831Z", + "created": "2021-01-13T01:52:41.618Z", "description": "Employ the following automatic environmental controls in the facility to prevent fluctuations potentially harmful to the system: [Assignment: organization-defined automatic environmental controls].\n\nThe implementation of automatic environmental controls provides an immediate response to environmental conditions that can damage, degrade, or destroy organizational systems or systems components.", "external_references": [ { @@ -8467,12 +8467,12 @@ } ], "id": "course-of-action--dd4c3bd9-2740-4e3f-9296-cf6d26e8b42a", - "modified": "2021-01-06T18:30:53.831Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Environmental Controls | Automatic Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.618Z", "description": "Employ environmental control monitoring that provides an alarm or notification of changes potentially harmful to personnel or equipment to [Assignment: organization-defined personnel or roles].\n\nThe alarm or notification may be an audible alarm or a visual message in real time to personnel or roles defined by the organization. Such alarms and notifications can help minimize harm to individuals and damage to organizational assets by facilitating a timely incident response.", "external_references": [ { @@ -8481,12 +8481,12 @@ } ], "id": "course-of-action--b5e5e1b2-5d4e-457e-9f81-7bbc54fad11c", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Environmental Controls | Monitoring with Alarms and Notifications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.618Z", "description": "Protect the system from damage resulting from water leakage by providing master shutoff or isolation valves that are accessible, working properly, and known to key personnel.\n\nThe provision of water damage protection primarily applies to organizational facilities that contain concentrations of system resources, including data centers, server rooms, and mainframe computer rooms. Isolation valves can be employed in addition to or in lieu of master shutoff valves to shut off water supplies in specific areas of concern without affecting entire organizations.", "external_references": [ { @@ -8495,12 +8495,12 @@ } ], "id": "course-of-action--1a2f9066-0cc5-4ebb-954e-6222200052d3", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.618Z", "name": "Water Damage Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.619Z", "description": "Detect the presence of water near the system and alert [Assignment: organization-defined personnel or roles] using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms include notification systems, water detection sensors, and alarms.", "external_references": [ { @@ -8509,12 +8509,12 @@ } ], "id": "course-of-action--d001e2c1-31e3-465b-b418-6e0e1ac66d81", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Water Damage Protection | Automation Support", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.619Z", "description": "a. Authorize and control [Assignment: organization-defined types of system components] entering and exiting the facility; and\nb. Maintain records of the system components.\n\nEnforcing authorizations for entry and exit of system components may require restricting access to delivery areas and isolating the areas from the system and media libraries.", "external_references": [ { @@ -8523,12 +8523,12 @@ } ], "id": "course-of-action--5489cdee-7d8e-4e94-9225-deba900d30d9", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Delivery and Removal", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.619Z", "description": "a. Determine and document the [Assignment: organization-defined alternate work sites] allowed for use by employees;\nb. Employ the following controls at alternate work sites: [Assignment: organization-defined controls];\nc. Assess the effectiveness of controls at alternate work sites; and\nd. Provide a means for employees to communicate with information security and privacy personnel in case of incidents.\n\nAlternate work sites include government facilities or the private residences of employees. While distinct from alternative processing sites, alternate work sites can provide readily available alternate locations during contingency operations. Organizations can define different sets of controls for specific alternate work sites or types of sites depending on the work-related activities conducted at the sites. Implementing and assessing the effectiveness of organization-defined controls and providing a means to communicate incidents at alternate work sites supports the contingency planning activities of organizations.", "external_references": [ { @@ -8537,12 +8537,12 @@ } ], "id": "course-of-action--c903ace9-31bf-4815-8244-8349f4cf2a97", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Alternate Work Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.832Z", + "created": "2021-01-13T01:52:41.619Z", "description": "Position system components within the facility to minimize potential damage from [Assignment: organization-defined physical and environmental hazards] and to minimize the opportunity for unauthorized access.\n\nPhysical and environmental hazards include floods, fires, tornadoes, earthquakes, hurricanes, terrorism, vandalism, an electromagnetic pulse, electrical interference, and other forms of incoming electromagnetic radiation. Organizations consider the location of entry points where unauthorized individuals, while not being granted access, might nonetheless be near systems. Such proximity can increase the risk of unauthorized access to organizational communications using wireless packet sniffers or microphones, or unauthorized disclosure of information.", "external_references": [ { @@ -8551,12 +8551,12 @@ } ], "id": "course-of-action--d2628054-1268-49cf-ac3a-48214c861947", - "modified": "2021-01-06T18:30:53.832Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Location of System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.833Z", + "created": "2021-01-13T01:52:41.619Z", "description": "", "external_references": [ { @@ -8565,12 +8565,12 @@ } ], "id": "course-of-action--4e7e0118-5f8e-4c82-8a75-74a55d6503b4", - "modified": "2021-01-06T18:30:53.833Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Location of System Components | Facility Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.833Z", + "created": "2021-01-13T01:52:41.619Z", "description": "Protect the system from information leakage due to electromagnetic signals emanations.\n\nInformation leakage is the intentional or unintentional release of data or information to an untrusted environment from electromagnetic signals emanations. The security categories or classifications of systems (with respect to confidentiality), organizational security policies, and risk tolerance guide the selection of controls employed to protect systems against information leakage due to electromagnetic signals emanations.", "external_references": [ { @@ -8579,12 +8579,12 @@ } ], "id": "course-of-action--2f996dfd-e061-4648-950f-a9fba7a52e3e", - "modified": "2021-01-06T18:30:53.833Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Information Leakage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.833Z", + "created": "2021-01-13T01:52:41.619Z", "description": "Protect system components, associated data communications, and networks in accordance with national Emissions Security policies and procedures based on the security category or classification of the information.\n\nEmissions Security (EMSEC) policies include the former TEMPEST policies.", "external_references": [ { @@ -8593,12 +8593,12 @@ } ], "id": "course-of-action--6e0ec31f-ea61-49a1-896f-aa97ec6a9be6", - "modified": "2021-01-06T18:30:53.833Z", + "modified": "2021-01-13T01:52:41.619Z", "name": "Information Leakage | National Emissions and Tempest Policies and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.834Z", + "created": "2021-01-13T01:52:41.620Z", "description": "Employ [Assignment: organization-defined asset location technologies] to track and monitor the location and movement of [Assignment: organization-defined assets] within [Assignment: organization-defined controlled areas].\n\nAsset location technologies can help ensure that critical assets'including vehicles, equipment, and system components'remain in authorized locations. Organizations consult with the Office of the General Counsel and senior agency official for privacy regarding the deployment and use of asset location technologies to address potential privacy concerns.", "external_references": [ { @@ -8607,12 +8607,12 @@ } ], "id": "course-of-action--daf07b86-7c4b-456b-9912-bafa84befec0", - "modified": "2021-01-06T18:30:53.834Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "Asset Monitoring and Tracking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.834Z", + "created": "2021-01-13T01:52:41.620Z", "description": "Employ [Assignment: organization-defined protective measures] against electromagnetic pulse damage for [Assignment: organization-defined systems and system components].\n\nAn electromagnetic pulse (EMP) is a short burst of electromagnetic energy that is spread over a range of frequencies. Such energy bursts may be natural or man-made. EMP interference may be disruptive or damaging to electronic equipment. Protective measures used to mitigate EMP risk include shielding, surge suppressors, ferro-resonant transformers, and earth grounding. EMP protection may be especially significant for systems and applications that are part of the U.S. critical infrastructure.", "external_references": [ { @@ -8621,12 +8621,12 @@ } ], "id": "course-of-action--c1f792e0-a62c-4433-bfeb-913214230580", - "modified": "2021-01-06T18:30:53.834Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "Electromagnetic Pulse Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.834Z", + "created": "2021-01-13T01:52:41.620Z", "description": "Mark [Assignment: organization-defined system hardware components] indicating the impact level or classification level of the information permitted to be processed, stored, or transmitted by the hardware component.\n\nHardware components that may require marking include input and output devices. Input devices include desktop and notebook computers, keyboards, tablets, and smart phones. Output devices include printers, monitors/video displays, facsimile machines, scanners, copiers, and audio devices. Permissions controlling output to the output devices are addressed in AC-3 or AC-4. Components are marked to indicate the impact level or classification level of the system to which the devices are connected, or the impact level or classification level of the information permitted to be output. Security marking refers to the use of human-readable security attributes. Security labeling refers to the use of security attributes for internal system data structures. Security marking is generally not required for hardware components that process, store, or transmit information determined by organizations to be in the public domain or to be publicly releasable. However, organizations may require markings for hardware components that process, store, or transmit public information in order to indicate that such information is publicly releasable. Marking of system hardware components reflects applicable laws, executive orders, directives, policies, regulations, and standards.", "external_references": [ { @@ -8635,12 +8635,12 @@ } ], "id": "course-of-action--b37ad196-2d09-437e-a84f-42c93c647f5e", - "modified": "2021-01-06T18:30:53.834Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "Component Marking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.834Z", + "created": "2021-01-13T01:52:41.620Z", "description": "a. Plan the location or site of the facility where the system resides considering physical and environmental hazards; and\nb. For existing facilities, consider the physical and environmental hazards in the organizational risk management strategy.\n\nPhysical and environmental hazards include floods, fires, tornadoes, earthquakes, hurricanes, terrorism, vandalism, an electromagnetic pulse, electrical interference, and other forms of incoming electromagnetic radiation. The location of system components within the facility is addressed in PE-18.", "external_references": [ { @@ -8649,12 +8649,12 @@ } ], "id": "course-of-action--acf13c9b-6595-4f65-ac98-0fe6983ba810", - "modified": "2021-01-06T18:30:53.834Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "Facility Location", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.834Z", + "created": "2021-01-13T01:52:41.620Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] planning policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the planning policy and the associated planning controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the planning policy and procedures; and\nc. Review and update the current planning:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nPlanning policy and procedures for the controls in the PL family implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on their development. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission level or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to planning policy and procedures include, but are not limited to, assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -8663,12 +8663,12 @@ } ], "id": "course-of-action--b04fd535-3c76-4e3f-8fb0-aa285aeeaffa", - "modified": "2021-01-06T18:30:53.834Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.835Z", + "created": "2021-01-13T01:52:41.620Z", "description": "a. Develop security and privacy plans for the system that:\n1. Are consistent with the organization's enterprise architecture;\n2. Explicitly define the constituent system components;\n3. Describe the operational context of the system in terms of mission and business processes;\n4. Identify the individuals that fulfill system roles and responsibilities;\n5. Identify the information types processed, stored, and transmitted by the system;\n6. Provide the security categorization of the system, including supporting rationale;\n7. Describe any specific threats to the system that are of concern to the organization;\n8. Provide the results of a privacy risk assessment for systems processing personally identifiable information;\n9. Describe the operational environment for the system and any dependencies on or connections to other systems or system components;\n10. Provide an overview of the security and privacy requirements for the system;\n11. Identify any relevant control baselines or overlays, if applicable;\n12. Describe the controls in place or planned for meeting the security and privacy requirements, including a rationale for any tailoring decisions;\n13. Include risk determinations for security and privacy architecture and design decisions;\n14. Include security- and privacy-related activities affecting the system that require planning and coordination with [Assignment: organization-defined individuals or groups]; and\n15. Are reviewed and approved by the authorizing official or designated representative prior to plan implementation.\nb. Distribute copies of the plans and communicate subsequent changes to the plans to [Assignment: organization-defined personnel or roles];\nc. Review the plans [Assignment: organization-defined frequency];\nd. Update the plans to address changes to the system and environment of operation or problems identified during plan implementation or control assessments; and\ne. Protect the plans from unauthorized disclosure and modification.\n\nSystem security and privacy plans are scoped to the system and system components within the defined authorization boundary and contain an overview of the security and privacy requirements for the system and the controls selected to satisfy the requirements. The plans describe the intended application of each selected control in the context of the system with a sufficient level of detail to correctly implement the control and to subsequently assess the effectiveness of the control. The control documentation describes how system-specific and hybrid controls are implemented and the plans and expectations regarding the functionality of the system. System security and privacy plans can also be used in the design and development of systems in support of life cycle-based security and privacy engineering processes. System security and privacy plans are living documents that are updated and adapted throughout the system development life cycle (e.g., during capability determination, analysis of alternatives, requests for proposal, and design reviews). Section 2.1 describes the different types of requirements that are relevant to organizations during the system development life cycle and the relationship between requirements and controls.\nOrganizations may develop a single, integrated security and privacy plan or maintain separate plans. Security and privacy plans relate security and privacy requirements to a set of controls and control enhancements. The plans describe how the controls and control enhancements meet the security and privacy requirements but do not provide detailed, technical descriptions of the design or implementation of the controls and control enhancements. Security and privacy plans contain sufficient information (including specifications of control parameter values for selection and assignment operations explicitly or by reference) to enable a design and implementation that is unambiguously compliant with the intent of the plans and subsequent determinations of risk to organizational operations and assets, individuals, other organizations, and the Nation if the plan is implemented.\nSecurity and privacy plans need not be single documents. The plans can be a collection of various documents, including documents that already exist. Effective security and privacy plans make extensive use of references to policies, procedures, and additional documents, including design and implementation specifications where more detailed information can be obtained. The use of references helps reduce the documentation associated with security and privacy programs and maintains the security- and privacy-related information in other established management and operational areas, including enterprise architecture, system development life cycle, systems engineering, and acquisition. Security and privacy plans need not contain detailed contingency plan or incident response plan information but can instead provide'explicitly or by reference'sufficient information to define what needs to be accomplished by those plans.\nSecurity- and privacy-related activities that may require coordination and planning with other individuals or groups within the organization include assessments, audits, inspections, hardware and software maintenance, acquisition and supply chain risk management, patch management, and contingency plan testing. Planning and coordination include emergency and nonemergency (i.e., planned or non-urgent unplanned) situations. The process defined by organizations to plan and coordinate security- and privacy-related activities can also be included in other documents, as appropriate.", "external_references": [ { @@ -8677,12 +8677,12 @@ } ], "id": "course-of-action--114196f6-2ac1-4eac-83aa-5f954971b802", - "modified": "2021-01-06T18:30:53.835Z", + "modified": "2021-01-13T01:52:41.620Z", "name": "System Security and Privacy Plans", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.835Z", + "created": "2021-01-13T01:52:41.621Z", "description": "", "external_references": [ { @@ -8691,12 +8691,12 @@ } ], "id": "course-of-action--e46a6b47-87ea-4b1a-b952-f67ab4b692de", - "modified": "2021-01-06T18:30:53.835Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "System Security and Privacy Plans | Concept of Operations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.835Z", + "created": "2021-01-13T01:52:41.621Z", "description": "", "external_references": [ { @@ -8705,12 +8705,12 @@ } ], "id": "course-of-action--cd43524b-8088-40dc-91f3-6f73e6a9fc1d", - "modified": "2021-01-06T18:30:53.835Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "System Security and Privacy Plans | Functional Architecture", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.835Z", + "created": "2021-01-13T01:52:41.621Z", "description": "", "external_references": [ { @@ -8719,12 +8719,12 @@ } ], "id": "course-of-action--a9afc380-703b-45b3-b2e2-5b7984337f54", - "modified": "2021-01-06T18:30:53.835Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "System Security and Privacy Plans | Plan and Coordinate with Other Organizational Entities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.836Z", + "created": "2021-01-13T01:52:41.621Z", "description": "", "external_references": [ { @@ -8733,12 +8733,12 @@ } ], "id": "course-of-action--26b6c275-142d-4e63-9c10-440cb09566e1", - "modified": "2021-01-06T18:30:53.836Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "System Security Plan Update", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.836Z", + "created": "2021-01-13T01:52:41.621Z", "description": "a. Establish and provide to individuals requiring access to the system, the rules that describe their responsibilities and expected behavior for information and system usage, security, and privacy;\nb. Receive a documented acknowledgment from such individuals, indicating that they have read, understand, and agree to abide by the rules of behavior, before authorizing access to information and the system;\nc. Review and update the rules of behavior [Assignment: organization-defined frequency]; and\nd. Require individuals who have acknowledged a previous version of the rules of behavior to read and re-acknowledge [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; when the rules are revised or updated].\n\nRules of behavior represent a type of access agreement for organizational users. Other types of access agreements include nondisclosure agreements, conflict-of-interest agreements, and acceptable use agreements (see PS-6). Organizations consider rules of behavior based on individual user roles and responsibilities and differentiate between rules that apply to privileged users and rules that apply to general users. Establishing rules of behavior for some types of non-organizational users, including individuals who receive information from federal systems, is often not feasible given the large number of such users and the limited nature of their interactions with the systems. Rules of behavior for organizational and non-organizational users can also be established in AC-8. The related controls section provides a list of controls that are relevant to organizational rules of behavior. PL-4b, the documented acknowledgment portion of the control, may be satisfied by the literacy training and awareness and role-based training programs conducted by organizations if such training includes rules of behavior. Documented acknowledgements for rules of behavior include electronic or physical signatures and electronic agreement check boxes or radio buttons.", "external_references": [ { @@ -8747,12 +8747,12 @@ } ], "id": "course-of-action--20e4ab86-2137-4ff5-ad7b-c0247e5ca130", - "modified": "2021-01-06T18:30:53.836Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "Rules of Behavior", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.836Z", + "created": "2021-01-13T01:52:41.621Z", "description": "Include in the rules of behavior, restrictions on:\n(a) Use of social media, social networking sites, and external sites/applications;\n(b) Posting organizational information on public websites; and\n(c) Use of organization-provided identifiers (e.g., email addresses) and authentication secrets (e.g., passwords) for creating accounts on external sites/applications.\n\nSocial media, social networking, and external site/application usage restrictions address rules of behavior related to the use of social media, social networking, and external sites when organizational personnel are using such sites for official duties or in the conduct of official business, when organizational information is involved in social media and social networking transactions, and when personnel access social media and networking sites from organizational systems. Organizations also address specific rules that prevent unauthorized entities from obtaining non-public organizational information from social media and networking sites either directly or through inference. Non-public information includes personally identifiable information and system account information.", "external_references": [ { @@ -8761,12 +8761,12 @@ } ], "id": "course-of-action--af1f902f-35af-4ed4-b03b-92771ef387ab", - "modified": "2021-01-06T18:30:53.836Z", + "modified": "2021-01-13T01:52:41.621Z", "name": "Rules of Behavior | Social Media and External Site/application Usage Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.836Z", + "created": "2021-01-13T01:52:41.622Z", "description": "", "external_references": [ { @@ -8775,12 +8775,12 @@ } ], "id": "course-of-action--5f0a9712-3f1f-4a0e-b6d4-047a52ffc220", - "modified": "2021-01-06T18:30:53.836Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Privacy Impact Assessment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.836Z", + "created": "2021-01-13T01:52:41.622Z", "description": "", "external_references": [ { @@ -8789,12 +8789,12 @@ } ], "id": "course-of-action--9bb96e25-d5b2-4e36-ae98-e455be3265a7", - "modified": "2021-01-06T18:30:53.836Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Security-related Activity Planning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "a. Develop a Concept of Operations (CONOPS) for the system describing how the organization intends to operate the system from the perspective of information security and privacy; and\nb. Review and update the CONOPS [Assignment: organization-defined frequency].\n\nThe CONOPS may be included in the security or privacy plans for the system or in other system development life cycle documents. The CONOPS is a living document that requires updating throughout the system development life cycle. For example, during system design reviews, the concept of operations is checked to ensure that it remains consistent with the design for controls, the system architecture, and the operational procedures. Changes to the CONOPS are reflected in ongoing updates to the security and privacy plans, security and privacy architectures, and other organizational documents, such as procurement specifications, system development life cycle documents, and systems engineering documents.", "external_references": [ { @@ -8803,12 +8803,12 @@ } ], "id": "course-of-action--24af3cb0-34c2-4ba8-aba3-19deae8aeda5", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Concept of Operations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "a. Develop security and privacy architectures for the system that:\n1. Describe the requirements and approach to be taken for protecting the confidentiality, integrity, and availability of organizational information;\n2. Describe the requirements and approach to be taken for processing personally identifiable information to minimize privacy risk to individuals;\n3. Describe how the architectures are integrated into and support the enterprise architecture; and\n4. Describe any assumptions about, and dependencies on, external systems and services;\nb. Review and update the architectures [Assignment: organization-defined frequency] to reflect changes in the enterprise architecture; and\nc. Reflect planned architecture changes in security and privacy plans, Concept of Operations (CONOPS), criticality analysis, organizational procedures, and procurements and acquisitions.\n\nThe security and privacy architectures at the system level are consistent with the organization-wide security and privacy architectures described in PM-7, which are integral to and developed as part of the enterprise architecture. The architectures include an architectural description, the allocation of security and privacy functionality (including controls), security- and privacy-related information for external interfaces, information being exchanged across the interfaces, and the protection mechanisms associated with each interface. The architectures can also include other information, such as user roles and the access privileges assigned to each role; security and privacy requirements; types of information processed, stored, and transmitted by the system; supply chain risk management requirements; restoration priorities of information and system services; and other protection needs.\n[SP 800-160-1] provides guidance on the use of security architectures as part of the system development life cycle process. [OMB M-19-03] requires the use of the systems security engineering concepts described in [SP 800-160-1] for high value assets. Security and privacy architectures are reviewed and updated throughout the system development life cycle, from analysis of alternatives through review of the proposed architecture in the RFP responses to the design reviews before and during implementation (e.g., during preliminary design reviews and critical design reviews).\nIn today's modern computing architectures, it is becoming less common for organizations to control all information resources. There may be key dependencies on external information services and service providers. Describing such dependencies in the security and privacy architectures is necessary for developing a comprehensive mission and business protection strategy. Establishing, developing, documenting, and maintaining under configuration control a baseline configuration for organizational systems is critical to implementing and maintaining effective architectures. The development of the architectures is coordinated with the senior agency information security officer and the senior agency official for privacy to ensure that the controls needed to support security and privacy requirements are identified and effectively implemented. In many circumstances, there may be no distinction between the security and privacy architecture for a system. In other circumstances, security objectives may be adequately satisfied, but privacy objectives may only be partially satisfied by the security requirements. In these cases, consideration of the privacy requirements needed to achieve satisfaction will result in a distinct privacy architecture. The documentation, however, may simply reflect the combined architectures.\nPL-8 is primarily directed at organizations to ensure that architectures are developed for the system and, moreover, that the architectures are integrated with or tightly coupled to the enterprise architecture. In contrast, SA-17 is primarily directed at the external information technology product and system developers and integrators. SA-17, which is complementary to PL-8, is selected when organizations outsource the development of systems or components to external entities and when there is a need to demonstrate consistency with the organization's enterprise architecture and security and privacy architectures.", "external_references": [ { @@ -8817,12 +8817,12 @@ } ], "id": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Security and Privacy Architectures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "Design the security and privacy architectures for the system using a defense-in-depth approach that:\n(a) Allocates [Assignment: organization-defined controls] to [Assignment: organization-defined locations and architectural layers]; and\n(b) Ensures that the allocated controls operate in a coordinated and mutually reinforcing manner.\n\nOrganizations strategically allocate security and privacy controls in the security and privacy architectures so that adversaries must overcome multiple controls to achieve their objective. Requiring adversaries to defeat multiple controls makes it more difficult to attack information resources by increasing the work factor of the adversary; it also increases the likelihood of detection. The coordination of allocated controls is essential to ensure that an attack that involves one control does not create adverse, unintended consequences by interfering with other controls. Unintended consequences can include system lockout and cascading alarms. The placement of controls in systems and organizations is an important activity that requires thoughtful analysis. The value of organizational assets is an important consideration in providing additional layering. Defense-in-depth architectural approaches include modularity and layering (see SA-8(3)), separation of system and user functionality (see SC-2), and security function isolation (see SC-3).", "external_references": [ { @@ -8831,12 +8831,12 @@ } ], "id": "course-of-action--c1ec321a-4d6f-46d6-b18c-359dd57b8e9e", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Security and Privacy Architectures | Defense in Depth", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "Require that [Assignment: organization-defined controls] allocated to [Assignment: organization-defined locations and architectural layers] are obtained from different suppliers.\n\nInformation technology products have different strengths and weaknesses. Providing a broad spectrum of products complements the individual offerings. For example, vendors offering malicious code protection typically update their products at different times, often developing solutions for known viruses, Trojans, or worms based on their priorities and development schedules. By deploying different products at different locations, there is an increased likelihood that at least one of the products will detect the malicious code. With respect to privacy, vendors may offer products that track personally identifiable information in systems. Products may use different tracking methods. Using multiple products may result in more assurance that personally identifiable information is inventoried.", "external_references": [ { @@ -8845,12 +8845,12 @@ } ], "id": "course-of-action--2ea6af3d-adf7-4765-a191-889d2c0d6b52", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Security and Privacy Architectures | Supplier Diversity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "Centrally manage [Assignment: organization-defined controls and related processes].\n\nCentral management refers to organization-wide management and implementation of selected controls and processes. This includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed controls and processes. As the central management of controls is generally associated with the concept of common (inherited) controls, such management promotes and facilitates standardization of control implementations and management and the judicious use of organizational resources. Centrally managed controls and processes may also meet independence requirements for assessments in support of initial and ongoing authorizations to operate and as part of organizational continuous monitoring.\nAutomated tools (e.g., security information and event management tools or enterprise security monitoring and management tools) can improve the accuracy, consistency, and availability of information associated with centrally managed controls and processes. Automation can also provide data aggregation and data correlation capabilities; alerting mechanisms; and dashboards to support risk-based decision-making within the organization.\nAs part of the control selection processes, organizations determine the controls that may be suitable for central management based on resources and capabilities. It is not always possible to centrally manage every aspect of a control. In such cases, the control can be treated as a hybrid control with the control managed and implemented centrally or at the system level. The controls and control enhancements that are candidates for full or partial central management include but are not limited to: AC-2(1), AC-2(2), AC-2(3), AC-2(4), AC-4(all), AC-17(1), AC-17(2), AC-17(3), AC-17(9), AC-18(1), AC-18(3), AC-18(4), AC-18(5), AC-19(4), AC-22, AC-23, AT-2(1), AT-2(2), AT-3(1), AT-3(2), AT-3(3), AT-4, AU-3, AU-6(1), AU-6(3), AU-6(5), AU-6(6), AU-6(9), AU-7(1), AU-7(2), AU-11, AU-13, AU-16, CA-2(1), CA-2(2), CA-2(3), CA-3(1), CA-3(2), CA-3(3), CA-7(1), CA-9, CM-2(2), CM-3(1), CM-3(4), CM-4, CM-6, CM-6(1), CM-7(2), CM-7(4), CM-7(5), CM-8(all), CM-9(1), CM-10, CM-11, CP-7(all), CP-8(all), SC-43, SI-2, SI-3, SI-4(all), SI-7, SI-8.", "external_references": [ { @@ -8859,12 +8859,12 @@ } ], "id": "course-of-action--28f740f4-1f07-44b3-9630-871d586eadc8", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Central Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.623Z", "description": "Select a control baseline for the system.\n\nControl baselines are predefined sets of controls specifically assembled to address the protection needs of a group, organization, or community of interest. Controls are chosen for baselines to either satisfy mandates imposed by laws, executive orders, directives, regulations, policies, standards, and guidelines or address threats common to all users of the baseline under the assumptions specific to the baseline. Baselines represent a starting point for the protection of individuals' privacy, information, and information systems with subsequent tailoring actions to manage risk in accordance with mission, business, or other constraints (see PL-11). Federal control baselines are provided in [SP 800-53B]. The selection of a control baseline is determined by the needs of stakeholders. Stakeholder needs consider mission and business requirements as well as mandates imposed by applicable laws, executive orders, directives, policies, regulations, standards, and guidelines. For example, the control baselines in [SP 800-53B] are based on the requirements from [FISMA] and [PRIVACT]. The requirements, along with the NIST standards and guidelines implementing the legislation, direct organizations to select one of the control baselines after the reviewing the information types and the information that is processed, stored, and transmitted on the system; analyzing the potential adverse impact of the loss or compromise of the information or system on the organization's operations and assets, individuals, other organizations, or the Nation; and considering the results from system and organizational risk assessments. [CNSSI 1253] provides guidance on control baselines for national security systems.", "external_references": [ { @@ -8873,12 +8873,12 @@ } ], "id": "course-of-action--24dd4c42-1fb2-4600-b7a3-31b817f52dba", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Baseline Selection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.623Z", "description": "Tailor the selected control baseline by applying specified tailoring actions.\n\nThe concept of tailoring allows organizations to specialize or customize a set of baseline controls by applying a defined set of tailoring actions. Tailoring actions facilitate such specialization and customization by allowing organizations to develop security and privacy plans that reflect their specific mission and business functions, the environments where their systems operate, the threats and vulnerabilities that can affect their systems, and any other conditions or situations that can impact their mission or business success. Tailoring guidance is provided in [SP 800-53B]. Tailoring a control baseline is accomplished by identifying and designating common controls, applying scoping considerations, selecting compensating controls, assigning values to control parameters, supplementing the control baseline with additional controls as needed, and providing information for control implementation. The general tailoring actions in [SP 800-53B] can be supplemented with additional actions based on the needs of organizations. Tailoring actions can be applied to the baselines in [SP 800-53B] in accordance with the security and privacy requirements from [FISMA] and [PRIVACT]. Alternatively, other communities of interest adopting different control baselines can apply the tailoring actions in [SP 800-53B] to specialize or customize the controls that represent the specific needs and concerns of those entities.", "external_references": [ { @@ -8887,12 +8887,12 @@ } ], "id": "course-of-action--7a90b968-2686-4a1e-a146-f3452b46deb7", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Baseline Tailoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.623Z", "description": "a. Develop and disseminate an organization-wide information security program plan that:\n1. Provides an overview of the requirements for the security program and a description of the security program management controls and common controls in place or planned for meeting those requirements;\n2. Includes the identification and assignment of roles, responsibilities, management commitment, coordination among organizational entities, and compliance;\n3. Reflects the coordination among organizational entities responsible for information security; and\n4. Is approved by a senior official with responsibility and accountability for the risk being incurred to organizational operations (including mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation;\nb. Review and update the organization-wide information security program plan [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\nc. Protect the information security program plan from unauthorized disclosure and modification.\n\nAn information security program plan is a formal document that provides an overview of the security requirements for an organization-wide information security program and describes the program management controls and common controls in place or planned for meeting those requirements. An information security program plan can be represented in a single document or compilations of documents. Privacy program plans and supply chain risk management plans are addressed separately in PM-18 and SR-2, respectively.\nAn information security program plan documents implementation details about program management and common controls. The plan provides sufficient information about the controls (including specification of parameters for assignment and selection operations, explicitly or by reference) to enable implementations that are unambiguously compliant with the intent of the plan and a determination of the risk to be incurred if the plan is implemented as intended. Updates to information security program plans include organizational changes and problems identified during plan implementation or control assessments.\nProgram management controls may be implemented at the organization level or the mission or business process level, and are essential for managing the organization's information security program. Program management controls are distinct from common, system-specific, and hybrid controls because program management controls are independent of any particular system. Together, the individual system security plans and the organization-wide information security program plan provide complete coverage for the security controls employed within the organization.\nCommon controls available for inheritance by organizational systems are documented in an appendix to the organization's information security program plan unless the controls are included in a separate security plan for a system. The organization-wide information security program plan indicates which separate security plans contain descriptions of common controls.\nEvents that may precipitate an update to the information security program plan include, but are not limited to, organization-wide assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -8901,12 +8901,12 @@ } ], "id": "course-of-action--bd376e8f-4f60-4b1b-8d3e-ceef2dd04858", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Information Security Program Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.623Z", "description": "Appoint a senior agency information security officer with the mission and resources to coordinate, develop, implement, and maintain an organization-wide information security program.\n\nThe senior agency information security officer is an organizational official. For federal agencies (as defined by applicable laws, executive orders, regulations, directives, policies, and standards), this official is the senior agency information security officer. Organizations may also refer to this official as the senior information security officer or chief information security officer.", "external_references": [ { @@ -8915,12 +8915,12 @@ } ], "id": "course-of-action--f630993c-05df-43cd-91fc-3127466f973f", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Information Security Program Leadership Role", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.623Z", "description": "a. Include the resources needed to implement the information security and privacy programs in capital planning and investment requests and document all exceptions to this requirement;\nb. Prepare documentation required for addressing information security and privacy programs in capital planning and investment requests in accordance with applicable laws, executive orders, directives, policies, regulations, standards; and\nc. Make available for expenditure, the planned information security and privacy resources.\n\nOrganizations consider establishing champions for information security and privacy and, as part of including the necessary resources, assign specialized expertise and resources as needed. Organizations may designate and empower an Investment Review Board or similar group to manage and provide oversight for the information security and privacy aspects of the capital planning and investment control process.", "external_references": [ { @@ -8929,12 +8929,12 @@ } ], "id": "course-of-action--78981cce-8433-464c-b124-f33fb1cd7cdc", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Information Security and Privacy Resources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.623Z", "description": "a. Implement a process to ensure that plans of action and milestones for the information security, privacy, and supply chain risk management programs and associated organizational systems:\n1. Are developed and maintained;\n2. Document the remedial information security, privacy, and supply chain risk management actions to adequately respond to risk to organizational operations and assets, individuals, other organizations, and the Nation; and\n3. Are reported in accordance with established reporting requirements.\nb. Review plans of action and milestones for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.\n\nThe plan of action and milestones is a key organizational document and is subject to reporting requirements established by the Office of Management and Budget. Organizations develop plans of action and milestones with an organization-wide perspective, prioritizing risk response actions and ensuring consistency with the goals and objectives of the organization. Plan of action and milestones updates are based on findings from control assessments and continuous monitoring activities. There can be multiple plans of action and milestones corresponding to the information system level, mission/business process level, and organizational/governance level. While plans of action and milestones are required for federal organizations, other types of organizations can help reduce risk by documenting and tracking planned remediations. Specific guidance on plans of action and milestones at the system level is provided in CA-5.", "external_references": [ { @@ -8943,12 +8943,12 @@ } ], "id": "course-of-action--e98fe2ab-8f26-4613-b7fd-b2423a33066d", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.623Z", "name": "Plan of Action and Milestones Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Develop and update [Assignment: organization-defined frequency] an inventory of organizational systems.\n\n[OMB A-130] provides guidance on developing systems inventories and associated reporting requirements. System inventory refers to an organization-wide inventory of systems, not system components as described in CM-8.", "external_references": [ { @@ -8957,12 +8957,12 @@ } ], "id": "course-of-action--4d4e88de-077e-44de-8937-514350ee325c", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "System Inventory", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.838Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Establish, maintain, and update [Assignment: organization-defined frequency] an inventory of all systems, applications, and projects that process personally identifiable information.\n\nAn inventory of systems, applications, and projects that process personally identifiable information supports the mapping of data actions, providing individuals with privacy notices, maintaining accurate personally identifiable information, and limiting the processing of personally identifiable information when such information is not needed for operational purposes. Organizations may use this inventory to ensure that systems only process the personally identifiable information for authorized purposes and that this processing is still relevant and necessary for the purpose specified therein.", "external_references": [ { @@ -8971,12 +8971,12 @@ } ], "id": "course-of-action--8f3164e6-661d-4761-a55f-373fbbcbb8f1", - "modified": "2021-01-06T18:30:53.838Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "System Inventory | Inventory of Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Develop, monitor, and report on the results of information security and privacy measures of performance.\n\nMeasures of performance are outcome-based metrics used by an organization to measure the effectiveness or efficiency of the information security and privacy programs and the controls employed in support of the program. To facilitate security and privacy risk management, organizations consider aligning measures of performance with the organizational risk tolerance as defined in the risk management strategy.", "external_references": [ { @@ -8985,12 +8985,12 @@ } ], "id": "course-of-action--4dac2567-8f26-464e-97e3-5485241e6c6a", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "Measures of Performance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Develop and maintain an enterprise architecture with consideration for information security, privacy, and the resulting risk to organizational operations and assets, individuals, other organizations, and the Nation.\n\nThe integration of security and privacy requirements and controls into the enterprise architecture helps to ensure that security and privacy considerations are addressed throughout the system development life cycle and are explicitly related to the organization's mission and business processes. The process of security and privacy requirements integration also embeds into the enterprise architecture and the organization's security and privacy architectures consistent with the organizational risk management strategy. For PM-7, security and privacy architectures are developed at a system-of-systems level, representing all organizational systems. For PL-8, the security and privacy architectures are developed at a level that represents an individual system. The system-level architectures are consistent with the security and privacy architectures defined for the organization. Security and privacy requirements and control integration are most effectively accomplished through the rigorous application of the Risk Management Framework [SP 800-37] and supporting security standards and guidelines.", "external_references": [ { @@ -8999,12 +8999,12 @@ } ], "id": "course-of-action--0e7bf5f1-c550-40c0-a91d-9cc42c24d95c", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "Enterprise Architecture", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Offload [Assignment: organization-defined non-essential functions or services] to other systems, system components, or an external provider.\n\nNot every function or service that a system provides is essential to organizational mission or business functions. Printing or copying is an example of a non-essential but supporting service for an organization. Whenever feasible, such supportive but non-essential functions or services are not co-located with the functions or services that support essential mission or business functions. Maintaining such functions on the same system or system component increases the attack surface of the organization's mission-essential functions or services. Moving supportive but non-essential functions to a non-critical system, system component, or external provider can also increase efficiency by putting those functions or services under the control of individuals or providers who are subject matter experts in the functions or services.", "external_references": [ { @@ -9013,12 +9013,12 @@ } ], "id": "course-of-action--5d287a2e-48d9-4b1d-afaa-87f34355d220", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "Enterprise Architecture | Offloading", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.624Z", "description": "Address information security and privacy issues in the development, documentation, and updating of a critical infrastructure and key resources protection plan.\n\nProtection strategies are based on the prioritization of critical assets and resources. The requirement and guidance for defining critical infrastructure and key resources and for preparing an associated critical infrastructure protection plan are found in applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.", "external_references": [ { @@ -9027,12 +9027,12 @@ } ], "id": "course-of-action--fec85a83-2cda-4ec4-bbd2-3334dd0cf3d3", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "Critical Infrastructure Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.624Z", "description": "a. Develops a comprehensive strategy to manage:\n1. Security risk to organizational operations and assets, individuals, other organizations, and the Nation associated with the operation and use of organizational systems; and\n2. Privacy risk to individuals resulting from the authorized processing of personally identifiable information;\nb. Implement the risk management strategy consistently across the organization; and\nc. Review and update the risk management strategy [Assignment: organization-defined frequency] or as required, to address organizational changes.\n\nAn organization-wide risk management strategy includes an expression of the security and privacy risk tolerance for the organization, security and privacy risk mitigation strategies, acceptable risk assessment methodologies, a process for evaluating security and privacy risk across the organization with respect to the organization's risk tolerance, and approaches for monitoring risk over time. The senior accountable official for risk management (agency head or designated official) aligns information security management processes with strategic, operational, and budgetary planning processes. The risk executive function, led by the senior accountable official for risk management, can facilitate consistent application of the risk management strategy organization-wide. The risk management strategy can be informed by security and privacy risk-related inputs from other sources, both internal and external to the organization, to ensure that the strategy is broad-based and comprehensive. The supply chain risk management strategy described in PM-30 can also provide useful inputs to the organization-wide risk management strategy.", "external_references": [ { @@ -9041,12 +9041,12 @@ } ], "id": "course-of-action--01a059a9-30df-46d9-8876-2e2f3371f6ec", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.624Z", "name": "Risk Management Strategy", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.625Z", "description": "a. Manage the security and privacy state of organizational systems and the environments in which those systems operate through authorization processes;\nb. Designate individuals to fulfill specific roles and responsibilities within the organizational risk management process; and\nc. Integrate the authorization processes into an organization-wide risk management program.\n\nAuthorization processes for organizational systems and environments of operation require the implementation of an organization-wide risk management process and associated security and privacy standards and guidelines. Specific roles for risk management processes include a risk executive (function) and designated authorizing officials for each organizational system and common control provider. The authorization processes for the organization are integrated with continuous monitoring processes to facilitate ongoing understanding and acceptance of security and privacy risks to organizational operations, organizational assets, individuals, other organizations, and the Nation.", "external_references": [ { @@ -9055,12 +9055,12 @@ } ], "id": "course-of-action--806535a4-a0ca-4cd1-bf77-25568ae7cf2a", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Authorization Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.839Z", + "created": "2021-01-13T01:52:41.625Z", "description": "a. Define organizational mission and business processes with consideration for information security and privacy and the resulting risk to organizational operations, organizational assets, individuals, other organizations, and the Nation; and\nb. Determine information protection and personally identifiable information processing needs arising from the defined mission and business processes; and\nc. Review and revise the mission and business processes [Assignment: organization-defined frequency].\n\nProtection needs are technology-independent capabilities that are required to counter threats to organizations, individuals, systems, and the Nation through the compromise of information (i.e., loss of confidentiality, integrity, availability, or privacy). Information protection and personally identifiable information processing needs are derived from the mission and business needs defined by organizational stakeholders, the mission and business processes designed to meet those needs, and the organizational risk management strategy. Information protection and personally identifiable information processing needs determine the required controls for the organization and the systems. Inherent to defining protection and personally identifiable information processing needs is an understanding of the adverse impact that could result if a compromise or breach of information occurs. The categorization process is used to make such potential impact determinations. Privacy risks to individuals can arise from the compromise of personally identifiable information, but they can also arise as unintended consequences or a byproduct of the processing of personally identifiable information at any stage of the information life cycle. Privacy risk assessments are used to prioritize the risks that are created for individuals from system processing of personally identifiable information. These risk assessments enable the selection of the required privacy controls for the organization and systems. Mission and business process definitions and the associated protection requirements are documented in accordance with organizational policies and procedures.", "external_references": [ { @@ -9069,12 +9069,12 @@ } ], "id": "course-of-action--ef9d4567-e22e-4f1d-8e21-285f29d2d21d", - "modified": "2021-01-06T18:30:53.839Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Mission and Business Process Definition", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.625Z", "description": "Implement an insider threat program that includes a cross-discipline insider threat incident handling team.\n\nOrganizations that handle classified information are required, under Executive Order 13587 [EO 13587] and the National Insider Threat Policy [ODNI NITP], to establish insider threat programs. The same standards and guidelines that apply to insider threat programs in classified environments can also be employed effectively to improve the security of controlled unclassified and other information in non-national security systems. Insider threat programs include controls to detect and prevent malicious insider activity through the centralized integration and analysis of both technical and nontechnical information to identify potential insider threat concerns. A senior official is designated by the department or agency head as the responsible individual to implement and provide oversight for the program. In addition to the centralized integration and analysis capability, insider threat programs require organizations to prepare department or agency insider threat policies and implementation plans, conduct host-based user monitoring of individual employee activities on government-owned classified computers, provide insider threat awareness training to employees, receive access to information from offices in the department or agency for insider threat analysis, and conduct self-assessments of department or agency insider threat posture.\nInsider threat programs can leverage the existence of incident handling teams that organizations may already have in place, such as computer security incident response teams. Human resources records are especially important in this effort, as there is compelling evidence to show that some types of insider crimes are often preceded by nontechnical behaviors in the workplace, including ongoing patterns of disgruntled behavior and conflicts with coworkers and other colleagues. These precursors can guide organizational officials in more focused, targeted monitoring efforts. However, the use of human resource records could raise significant concerns for privacy. The participation of a legal team, including consultation with the senior agency official for privacy, ensures that monitoring activities are performed in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -9083,12 +9083,12 @@ } ], "id": "course-of-action--2d792a6e-6c68-42ef-baf2-de1aaab706fd", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Insider Threat Program", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.625Z", "description": "Establish a security and privacy workforce development and improvement program.\n\nSecurity and privacy workforce development and improvement programs include defining the knowledge, skills, and abilities needed to perform security and privacy duties and tasks; developing role-based training programs for individuals assigned security and privacy roles and responsibilities; and providing standards and guidelines for measuring and building individual qualifications for incumbents and applicants for security- and privacy-related positions. Such workforce development and improvement programs can also include security and privacy career paths to encourage security and privacy professionals to advance in the field and fill positions with greater responsibility. The programs encourage organizations to fill security- and privacy-related positions with qualified personnel. Security and privacy workforce development and improvement programs are complementary to organizational security awareness and training programs and focus on developing and institutionalizing the core security and privacy capabilities of personnel needed to protect organizational operations, assets, and individuals.", "external_references": [ { @@ -9097,12 +9097,12 @@ } ], "id": "course-of-action--2e2d31e5-b20f-4c44-8c12-2d797842e340", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Security and Privacy Workforce", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.625Z", "description": "a. Implement a process for ensuring that organizational plans for conducting security and privacy testing, training, and monitoring activities associated with organizational systems:\n1. Are developed and maintained; and\n2. Continue to be executed; and\nb. Review testing, training, and monitoring plans for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.\n\nA process for organization-wide security and privacy testing, training, and monitoring helps ensure that organizations provide oversight for testing, training, and monitoring activities and that those activities are coordinated. With the growing importance of continuous monitoring programs, the implementation of information security and privacy across the three levels of the risk management hierarchy and the widespread use of common controls, organizations coordinate and consolidate the testing and monitoring activities that are routinely conducted as part of ongoing assessments supporting a variety of controls. Security and privacy training activities, while focused on individual systems and specific roles, require coordination across all organizational elements. Testing, training, and monitoring plans and activities are informed by current threat and vulnerability assessments.", "external_references": [ { @@ -9111,12 +9111,12 @@ } ], "id": "course-of-action--74540e1b-bcb6-4fc3-beaf-19ec153bbd94", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Testing, Training, and Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.625Z", "description": "Establish and institutionalize contact with selected groups and associations within the security and privacy communities:\na. To facilitate ongoing security and privacy education and training for organizational personnel;\nb. To maintain currency with recommended security and privacy practices, techniques, and technologies; and\nc. To share current security and privacy information, including threats, vulnerabilities, and incidents.\n\nOngoing contact with security and privacy groups and associations is important in an environment of rapidly changing technologies and threats. Groups and associations include special interest groups, professional associations, forums, news groups, users' groups, and peer groups of security and privacy professionals in similar organizations. Organizations select security and privacy groups and associations based on mission and business functions. Organizations share threat, vulnerability, and incident information as well as contextual insights, compliance techniques, and privacy problems consistent with applicable laws, executive orders, directives, policies, regulations, standards, and guidelines.", "external_references": [ { @@ -9125,12 +9125,12 @@ } ], "id": "course-of-action--95bd17c0-2a36-4ec3-9368-ccb303a08e4f", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.625Z", "name": "Security and Privacy Groups and Associations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.626Z", "description": "Implement a threat awareness program that includes a cross-organization information-sharing capability for threat intelligence.\n\nBecause of the constantly changing and increasing sophistication of adversaries, especially the advanced persistent threat (APT), it may be more likely that adversaries can successfully breach or compromise organizational systems. One of the best techniques to address this concern is for organizations to share threat information, including threat events (i.e., tactics, techniques, and procedures) that organizations have experienced, mitigations that organizations have found are effective against certain types of threats, and threat intelligence (i.e., indications and warnings about threats). Threat information sharing may be bilateral or multilateral. Bilateral threat sharing includes government-to-commercial and government-to-government cooperatives. Multilateral threat sharing includes organizations taking part in threat-sharing consortia. Threat information may require special agreements and protection, or it may be freely shared.", "external_references": [ { @@ -9139,12 +9139,12 @@ } ], "id": "course-of-action--a89452d1-caf3-4de5-a82b-e8ebc33c18b0", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Threat Awareness Program", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.840Z", + "created": "2021-01-13T01:52:41.626Z", "description": "Employ automated mechanisms to maximize the effectiveness of sharing threat intelligence information.\n\nTo maximize the effectiveness of monitoring, it is important to know what threat observables and indicators the sensors need to be searching for. By using well-established frameworks, services, and automated tools, organizations improve their ability to rapidly share and feed the relevant threat detection signatures into monitoring tools.", "external_references": [ { @@ -9153,12 +9153,12 @@ } ], "id": "course-of-action--f3c5936d-ad99-4c1e-8652-6c1dd200d67c", - "modified": "2021-01-06T18:30:53.840Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Threat Awareness Program | Automated Means for Sharing Threat Intelligence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.626Z", "description": "a. Establish policy and procedures to ensure that requirements for the protection of controlled unclassified information that is processed, stored or transmitted on external systems, are implemented in accordance with applicable laws, executive orders, directives, policies, regulations, and standards; and\nb. Review and update the policy and procedures [Assignment: organization-defined frequency].\n\nControlled unclassified information is defined by the National Archives and Records Administration along with the safeguarding and dissemination requirements for such information and is codified in [32 CFR 2002] and, specifically for systems external to the federal organization, 32 CFR 2002.14h. The policy prescribes the specific use and conditions to be implemented in accordance with organizational procedures, including via its contracting processes.", "external_references": [ { @@ -9167,12 +9167,12 @@ } ], "id": "course-of-action--492efd8d-171e-45c2-bd91-a8ffb1d08c28", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Protecting Controlled Unclassified Information on External Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.626Z", "description": "a. Develop and disseminate an organization-wide privacy program plan that provides an overview of the agency's privacy program, and:\n1. Includes a description of the structure of the privacy program and the resources dedicated to the privacy program;\n2. Provides an overview of the requirements for the privacy program and a description of the privacy program management controls and common controls in place or planned for meeting those requirements;\n3. Includes the role of the senior agency official for privacy and the identification and assignment of roles of other privacy officials and staff and their responsibilities;\n4. Describes management commitment, compliance, and the strategic goals and objectives of the privacy program;\n5. Reflects coordination among organizational entities responsible for the different aspects of privacy; and\n6. Is approved by a senior official with responsibility and accountability for the privacy risk being incurred to organizational operations (including mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation; and\nb. Update the plan [Assignment: organization-defined frequency] and to address changes in federal privacy laws and policy and organizational changes and problems identified during plan implementation or privacy control assessments.\n\nA privacy program plan is a formal document that provides an overview of an organization's privacy program, including a description of the structure of the privacy program, the resources dedicated to the privacy program, the role of the senior agency official for privacy and other privacy officials and staff, the strategic goals and objectives of the privacy program, and the program management controls and common controls in place or planned for meeting applicable privacy requirements and managing privacy risks. Privacy program plans can be represented in single documents or compilations of documents.\nThe senior agency official for privacy is responsible for designating which privacy controls the organization will treat as program management, common, system-specific, and hybrid controls. Privacy program plans provide sufficient information about the privacy program management and common controls (including the specification of parameters and assignment and selection operations explicitly or by reference) to enable control implementations that are unambiguously compliant with the intent of the plans and a determination of the risk incurred if the plans are implemented as intended.\nProgram management controls are generally implemented at the organization level and are essential for managing the organization's privacy program. Program management controls are distinct from common, system-specific, and hybrid controls because program management controls are independent of any particular information system. Together, the privacy plans for individual systems and the organization-wide privacy program plan provide complete coverage for the privacy controls employed within the organization.\nCommon controls are documented in an appendix to the organization's privacy program plan unless the controls are included in a separate privacy plan for a system. The organization-wide privacy program plan indicates which separate privacy plans contain descriptions of privacy controls.", "external_references": [ { @@ -9181,12 +9181,12 @@ } ], "id": "course-of-action--df2d5375-d48d-41fc-9e60-ce7e5d520b32", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Privacy Program Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.626Z", "description": "Appoint a senior agency official for privacy with the authority, mission, accountability, and resources to coordinate, develop, and implement, applicable privacy requirements and manage privacy risks through the organization-wide privacy program.\n\nThe privacy officer is an organizational official. For federal agencies'as defined by applicable laws, executive orders, directives, regulations, policies, standards, and guidelines'this official is designated as the senior agency official for privacy. Organizations may also refer to this official as the chief privacy officer. The senior agency official for privacy also has roles on the data management board (see PM-23) and the data integrity board (see PM-24).", "external_references": [ { @@ -9195,12 +9195,12 @@ } ], "id": "course-of-action--eac06465-36c6-4562-b8e9-15299c99005e", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Privacy Program Leadership Role", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.626Z", "description": "Maintain a central resource webpage on the organization's principal public website that serves as a central source of information about the organization's privacy program and that:\na. Ensures that the public has access to information about organizational privacy activities and can communicate with its senior agency official for privacy;\nb. Ensures that organizational privacy practices and reports are publicly available; and\nc. Employs publicly facing email addresses and/or phone lines to enable the public to provide feedback and/or direct questions to privacy offices regarding privacy practices.\n\nFor federal agencies, the webpage is located at www.[agency].gov/privacy. Federal agencies include public privacy impact assessments, system of records notices, computer matching notices and agreements, [PRIVACT] exemption and implementation rules, privacy reports, privacy policies, instructions for individuals making an access or amendment request, email addresses for questions/complaints, blogs, and periodic publications.", "external_references": [ { @@ -9209,12 +9209,12 @@ } ], "id": "course-of-action--4459ebbd-747e-422e-ba3a-97b82bbe3038", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Dissemination of Privacy Program Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.626Z", "description": "Develop and post privacy policies on all external-facing websites, mobile applications, and other digital services, that:\n(a) Are written in plain language and organized in a way that is easy to understand and navigate;\n(b) Provide information needed by the public to make an informed decision about whether and how to interact with the organization; and\n(c) Are updated whenever the organization makes a substantive change to the practices it describes and includes a time/date stamp to inform the public of the date of the most recent changes.\n\nOrganizations post privacy policies on all external-facing websites, mobile applications, and other digital services. Organizations post a link to the relevant privacy policy on any known, major entry points to the website, application, or digital service. In addition, organizations provide a link to the privacy policy on any webpage that collects personally identifiable information. Organizations may be subject to applicable laws, executive orders, directives, regulations, or policies that require the provision of specific information to the public. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.", "external_references": [ { @@ -9223,12 +9223,12 @@ } ], "id": "course-of-action--4d71937c-42ff-4a82-bbd9-44d6c782d5b2", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.626Z", "name": "Dissemination of Privacy Program Information | Privacy Policies on Websites, Applications, and Digital Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.627Z", "description": "a. Develop and maintain an accurate accounting of disclosures of personally identifiable information, including:\n1. Date, nature, and purpose of each disclosure; and\n2. Name and address, or other contact information of the individual or organization to which the disclosure was made;\nb. Retain the accounting of disclosures for the length of the time the personally identifiable information is maintained or five years after the disclosure is made, whichever is longer; and\nc. Make the accounting of disclosures available to the individual to whom the personally identifiable information relates upon request.\n\nThe purpose of accounting of disclosures is to allow individuals to learn to whom their personally identifiable information has been disclosed, to provide a basis for subsequently advising recipients of any corrected or disputed personally identifiable information, and to provide an audit trail for subsequent reviews of organizational compliance with conditions for disclosures. For federal agencies, keeping an accounting of disclosures is required by the [PRIVACT]; agencies should consult with their senior agency official for privacy and legal counsel on this requirement and be aware of the statutory exceptions and OMB guidance relating to the provision.\nOrganizations can use any system for keeping notations of disclosures, if it can construct from such a system, a document listing of all disclosures along with the required information. Automated mechanisms can be used by organizations to determine when personally identifiable information is disclosed, including commercial services that provide notifications and alerts. Accounting of disclosures may also be used to help organizations verify compliance with applicable privacy statutes and policies governing the disclosure or dissemination of information and dissemination restrictions.", "external_references": [ { @@ -9237,12 +9237,12 @@ } ], "id": "course-of-action--9bec50e3-352b-4cc0-87c1-734a01862f5d", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.627Z", "name": "Accounting of Disclosures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.841Z", + "created": "2021-01-13T01:52:41.627Z", "description": "Develop and document organization-wide policies and procedures for:\na. Reviewing for the accuracy, relevance, timeliness, and completeness of personally identifiable information across the information life cycle;\nb. Correcting or deleting inaccurate or outdated personally identifiable information;\nc. Disseminating notice of corrected or deleted personally identifiable information to individuals or other appropriate entities; and\nd. Appeals of adverse decisions on correction or deletion requests.\n\nPersonally identifiable information quality management includes steps that organizations take to confirm the accuracy and relevance of personally identifiable information throughout the information life cycle. The information life cycle includes the creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposition of personally identifiable information. Organizational policies and procedures for personally identifiable information quality management are important because inaccurate or outdated personally identifiable information maintained by organizations may cause problems for individuals. Organizations consider the quality of personally identifiable information involved in business functions where inaccurate information may result in adverse decisions or the denial of benefits and services, or the disclosure of the information may cause stigmatization. Correct information, in certain circumstances, can cause problems for individuals that outweigh the benefits of organizations maintaining the information. Organizations consider creating policies and procedures for the removal of such information.\nThe senior agency official for privacy ensures that practical means and mechanisms exist and are accessible for individuals or their authorized representatives to seek the correction or deletion of personally identifiable information. Processes for correcting or deleting data are clearly defined and publicly available. Organizations use discretion in determining whether data is to be deleted or corrected based on the scope of requests, the changes sought, and the impact of the changes. Additionally, processes include the provision of responses to individuals of decisions to deny requests for correction or deletion. The responses include the reasons for the decisions, a means to record individual objections to the decisions, and a means of requesting reviews of the initial determinations.\nOrganizations notify individuals or their designated representatives when their personally identifiable information is corrected or deleted to provide transparency and confirm the completed action. Due to the complexity of data flows and storage, other entities may need to be informed of the correction or deletion. Notice supports the consistent correction and deletion of personally identifiable information across the data ecosystem.", "external_references": [ { @@ -9251,12 +9251,12 @@ } ], "id": "course-of-action--fbb928f6-b0f8-4bb2-bf11-44c851898827", - "modified": "2021-01-06T18:30:53.841Z", + "modified": "2021-01-13T01:52:41.627Z", "name": "Personally Identifiable Information Quality Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "Establish a Data Governance Body consisting of [Assignment: organization-defined roles] with [Assignment: organization-defined responsibilities].\n\nA Data Governance Body can help ensure that the organization has coherent policies and the ability to balance the utility of data with security and privacy requirements. The Data Governance Body establishes policies, procedures, and standards that facilitate data governance so that data, including personally identifiable information, is effectively managed and maintained in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidance. Responsibilities can include developing and implementing guidelines that support data modeling, quality, integrity, and the de-identification needs of personally identifiable information across the information life cycle as well as reviewing and approving applications to release data outside of the organization, archiving the applications and the released data, and performing post-release monitoring to ensure that the assumptions made as part of the data release continue to be valid. Members include the chief information officer, senior agency information security officer, and senior agency official for privacy. Federal agencies are required to establish a Data Governance Body with specific roles and responsibilities in accordance with the [EVIDACT] and policies set forth under [OMB M-19-23].", "external_references": [ { @@ -9265,12 +9265,12 @@ } ], "id": "course-of-action--89e9a8d2-94b0-4b0a-9c13-5de40233d3fc", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Data Governance Body", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "Establish a Data Integrity Board to:\na. Review proposals to conduct or participate in a matching program; and\nb. Conduct an annual review of all matching programs in which the agency has participated.\n\nA Data Integrity Board is the board of senior officials designated by the head of a federal agency and is responsible for, among other things, reviewing the agency's proposals to conduct or participate in a matching program and conducting an annual review of all matching programs in which the agency has participated. As a general matter, a matching program is a computerized comparison of records from two or more automated [PRIVACT] systems of records or an automated system of records and automated records maintained by a non-federal agency (or agent thereof). A matching program either pertains to Federal benefit programs or Federal personnel or payroll records. At a minimum, the Data Integrity Board includes the Inspector General of the agency, if any, and the senior agency official for privacy.", "external_references": [ { @@ -9279,12 +9279,12 @@ } ], "id": "course-of-action--88183cd7-1f0c-40a7-9ff5-0af3033d8ed1", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Data Integrity Board", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "a. Develop, document, and implement policies and procedures that address the use of personally identifiable information for internal testing, training, and research;\nb. Limit or minimize the amount of personally identifiable information used for internal testing, training, and research purposes;\nc. Authorize the use of personally identifiable information when such information is required for internal testing, training, and research; and\nd. Review and update policies and procedures [Assignment: organization-defined frequency].\n\nThe use of personally identifiable information in testing, research, and training increases the risk of unauthorized disclosure or misuse of such information. Organizations consult with the senior agency official for privacy and/or legal counsel to ensure that the use of personally identifiable information in testing, training, and research is compatible with the original purpose for which it was collected. When possible, organizations use placeholder data to avoid exposure of personally identifiable information when conducting testing, training, and research.", "external_references": [ { @@ -9293,12 +9293,12 @@ } ], "id": "course-of-action--7be67ed8-4672-413a-b238-091d15f8ba54", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Minimization of Personally Identifiable Information Used in Testing, Training, and Research", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "Implement a process for receiving and responding to complaints, concerns, or questions from individuals about the organizational security and privacy practices that includes:\na. Mechanisms that are easy to use and readily accessible by the public;\nb. All information necessary for successfully filing complaints;\nc. Tracking mechanisms to ensure all complaints received are reviewed and addressed within [Assignment: organization-defined time period];\nd. Acknowledgement of receipt of complaints, concerns, or questions from individuals within [Assignment: organization-defined time period]; and\ne. Response to complaints, concerns, or questions from individuals within [Assignment: organization-defined time period].\n\nComplaints, concerns, and questions from individuals can serve as valuable sources of input to organizations and ultimately improve operational models, uses of technology, data collection practices, and controls. Mechanisms that can be used by the public include telephone hotline, email, or web-based forms. The information necessary for successfully filing complaints includes contact information for the senior agency official for privacy or other official designated to receive complaints. Privacy complaints may also include personally identifiable information which is handled in accordance with relevant policies and processes.", "external_references": [ { @@ -9307,12 +9307,12 @@ } ], "id": "course-of-action--06705350-d9ff-46be-a101-346d0f8b717f", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Complaint Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "a. Develop [Assignment: organization-defined privacy reports] and disseminate to:\n1. [Assignment: organization-defined oversight bodies] to demonstrate accountability with statutory, regulatory, and policy privacy mandates; and\n2. [Assignment: organization-defined officials] and other personnel with responsibility for monitoring privacy program compliance; and\nb. Review and update privacy reports [Assignment: organization-defined frequency].\n\nThrough internal and external reporting, organizations promote accountability and transparency in organizational privacy operations. Reporting can also help organizations to determine progress in meeting privacy compliance requirements and privacy controls, compare performance across the federal government, discover vulnerabilities, identify gaps in policy and implementation, and identify models for success. For federal agencies, privacy reports include annual senior agency official for privacy reports to OMB, reports to Congress required by Implementing Regulations of the 9/11 Commission Act, and other public reports required by law, regulation, or policy, including internal policies of organizations. The senior agency official for privacy consults with legal counsel, where appropriate, to ensure that organizations meet all applicable privacy reporting requirements.", "external_references": [ { @@ -9321,12 +9321,12 @@ } ], "id": "course-of-action--d4708e76-97c9-49de-8136-6678d211fc51", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Privacy Reporting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.842Z", + "created": "2021-01-13T01:52:41.628Z", "description": "a. Identify and document:\n1. Assumptions affecting risk assessments, risk responses, and risk monitoring;\n2. Constraints affecting risk assessments, risk responses, and risk monitoring;\n3. Priorities and trade-offs considered by the organization for managing risk; and\n4. Organizational risk tolerance;\nb. Distribute the results of risk framing activities to [Assignment: organization-defined personnel]; and\nc. Review and update risk framing considerations [Assignment: organization-defined frequency].\n\nRisk framing is most effective when conducted at the organization level and in consultation with stakeholders throughout the organization including mission, business, and system owners. The assumptions, constraints, risk tolerance, priorities, and trade-offs identified as part of the risk framing process inform the risk management strategy, which in turn informs the conduct of risk assessment, risk response, and risk monitoring activities. Risk framing results are shared with organizational personnel, including mission and business owners, information owners or stewards, system owners, authorizing officials, senior agency information security officer, senior agency official for privacy, and senior accountable official for risk management.", "external_references": [ { @@ -9335,12 +9335,12 @@ } ], "id": "course-of-action--239cdad0-ed5d-43b8-a0eb-95ddda16725c", - "modified": "2021-01-06T18:30:53.842Z", + "modified": "2021-01-13T01:52:41.628Z", "name": "Risk Framing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.843Z", + "created": "2021-01-13T01:52:41.629Z", "description": "a. Appoint a Senior Accountable Official for Risk Management to align organizational information security and privacy management processes with strategic, operational, and budgetary planning processes; and\nb. Establish a Risk Executive (function) to view and analyze risk from an organization-wide perspective and ensure management of risk is consistent across the organization.\n\nThe senior accountable official for risk management leads the risk executive (function) in organization-wide risk management activities.", "external_references": [ { @@ -9349,12 +9349,12 @@ } ], "id": "course-of-action--3092ac00-c84d-4a78-a22d-b08b555422fe", - "modified": "2021-01-06T18:30:53.843Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Risk Management Program Leadership Roles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.843Z", + "created": "2021-01-13T01:52:41.629Z", "description": "a. Develop an organization-wide strategy for managing supply chain risks associated with the development, acquisition, maintenance, and disposal of systems, system components, and system services;\nb. Implement the supply chain risk management strategy consistently across the organization; and\nc. Review and update the supply chain risk management strategy on [Assignment: organization-defined frequency] or as required, to address organizational changes.\n\nAn organization-wide supply chain risk management strategy includes an unambiguous expression of the supply chain risk appetite and tolerance for the organization, acceptable supply chain risk mitigation strategies or controls, a process for consistently evaluating and monitoring supply chain risk, approaches for implementing and communicating the supply chain risk management strategy, and the associated roles and responsibilities. Supply chain risk management includes considerations of the security and privacy risks associated with the development, acquisition, maintenance, and disposal of systems, system components, and system services. The supply chain risk management strategy can be incorporated into the organization's overarching risk management strategy and can guide and inform supply chain policies and system-level supply chain risk management plans. In addition, the use of a risk executive function can facilitate a consistent, organization-wide application of the supply chain risk management strategy. The supply chain risk management strategy is implemented at the organization and mission/business levels, whereas the supply chain risk management plan (see SR-2) is implemented at the system level.", "external_references": [ { @@ -9363,12 +9363,12 @@ } ], "id": "course-of-action--7fc5ff58-b47c-4189-ac40-ee63e9d88199", - "modified": "2021-01-06T18:30:53.843Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Supply Chain Risk Management Strategy", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.843Z", + "created": "2021-01-13T01:52:41.629Z", "description": "Identify, prioritize, and assess suppliers of critical or mission-essential technologies, products, and services.\n\nThe identification and prioritization of suppliers of critical or mission-essential technologies, products, and services is paramount to the mission/business success of organizations. The assessment of suppliers is conducted using supplier reviews (see SR-6) and supply chain risk assessment processes (see RA-3(1)). An analysis of supply chain risk can help an organization identify systems or components for which additional supply chain risk mitigations are required.", "external_references": [ { @@ -9377,12 +9377,12 @@ } ], "id": "course-of-action--bcde5ecf-25c7-4c0d-b740-e54018ca7996", - "modified": "2021-01-06T18:30:53.843Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Supply Chain Risk Management Strategy | Suppliers of Critical or Mission-essential Items", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.843Z", + "created": "2021-01-13T01:52:41.629Z", "description": "Develop an organization-wide continuous monitoring strategy and implement continuous monitoring programs that include:\na. Establishing the following organization-wide metrics to be monitored: [Assignment: organization-defined metrics];\nb. Establishing [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessment of control effectiveness;\nc. Ongoing monitoring of organizationally-defined metrics in accordance with the continuous monitoring strategy;\nd. Correlation and analysis of information generated by control assessments and monitoring;\ne. Response actions to address results of the analysis of control assessment and monitoring information; and\nf. Reporting the security and privacy status of organizational systems to [Assignment: organization-defined personnel or roles]\n [Assignment: organization-defined frequency].\n\nContinuous monitoring at the organization level facilitates ongoing awareness of the security and privacy posture across the organization to support organizational risk management decisions. The terms 'continuous' and 'ongoing' imply that organizations assess and monitor their controls and risks at a frequency sufficient to support risk-based decisions. Different types of controls may require different monitoring frequencies. The results of continuous monitoring guide and inform risk response actions by organizations. Continuous monitoring programs allow organizations to maintain the authorizations of systems and common controls in highly dynamic environments of operation with changing mission and business needs, threats, vulnerabilities, and technologies. Having access to security- and privacy-related information on a continuing basis through reports and dashboards gives organizational officials the capability to make effective, timely, and informed risk management decisions, including ongoing authorization decisions. To further facilitate security and privacy risk management, organizations consider aligning organization-defined monitoring metrics with organizational risk tolerance as defined in the risk management strategy. Monitoring requirements, including the need for monitoring, may be referenced in other controls and control enhancements such as, AC-2g, AC-2(7), AC-2(12)(a), AC-2(7)(b), AC-2(7)(c), AC-17(1), AT-4a, AU-13, AU-13(1), AU-13(2), CA-7, CM-3f, CM-6d, CM-11c, IR-5, MA-2b, MA-3a, MA-4a, PE-3d, PE-6, PE-14b, PE-16, PE-20, PM-6, PM-23, PS-7e, SA-9c, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18c, SC-43b, SI-4.", "external_references": [ { @@ -9391,12 +9391,12 @@ } ], "id": "course-of-action--4ef396de-3af1-4900-b3f2-4aa11d6f4641", - "modified": "2021-01-06T18:30:53.843Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Continuous Monitoring Strategy", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.844Z", + "created": "2021-01-13T01:52:41.629Z", "description": "Analyze [Assignment: organization-defined systems or systems components] supporting mission essential services or functions to ensure that the information resources are being used consistent with their intended purpose.\n\nSystems are designed to support a specific mission or business function. However, over time, systems and system components may be used to support services and functions that are outside of the scope of the intended mission or business functions. This can result in exposing information resources to unintended environments and uses that can significantly increase threat exposure. In doing so, the systems are more vulnerable to compromise, which can ultimately impact the services and functions for which they were intended. This is especially impactful for mission-essential services and functions. By analyzing resource use, organizations can identify such potential exposures.", "external_references": [ { @@ -9405,12 +9405,12 @@ } ], "id": "course-of-action--8e5feae9-5103-400a-9f93-6f5b87407d33", - "modified": "2021-01-06T18:30:53.844Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Purposing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.844Z", + "created": "2021-01-13T01:52:41.629Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] personnel security policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the personnel security policy and the associated personnel security controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the personnel security policy and procedures; and\nc. Review and update the current personnel security:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nPersonnel security policy and procedures for the controls in the PS family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on their development. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission level or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission/business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to personnel security policy and procedures include, but are not limited to, assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -9419,12 +9419,12 @@ } ], "id": "course-of-action--9f32d4e9-9bef-4086-a8e2-df45b1f93ac2", - "modified": "2021-01-06T18:30:53.844Z", + "modified": "2021-01-13T01:52:41.629Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.844Z", + "created": "2021-01-13T01:52:41.630Z", "description": "a. Assign a risk designation to all organizational positions;\nb. Establish screening criteria for individuals filling those positions; and\nc. Review and update position risk designations [Assignment: organization-defined frequency].\n\nPosition risk designations reflect Office of Personnel Management (OPM) policy and guidance. Proper position designation is the foundation of an effective and consistent suitability and personnel security program. The Position Designation System (PDS) assesses the duties and responsibilities of a position to determine the degree of potential damage to the efficiency or integrity of the service due to misconduct of an incumbent of a position and establishes the risk level of that position. The PDS assessment also determines if the duties and responsibilities of the position present the potential for position incumbents to bring about a material adverse effect on national security and the degree of that potential effect, which establishes the sensitivity level of a position. The results of the assessment determine what level of investigation is conducted for a position. Risk designations can guide and inform the types of authorizations that individuals receive when accessing organizational information and information systems. Position screening criteria include explicit information security role appointment requirements. Parts 1400 and 731 of Title 5, Code of Federal Regulations, establish the requirements for organizations to evaluate relevant covered positions for a position sensitivity and position risk designation commensurate with the duties and responsibilities of those positions.", "external_references": [ { @@ -9433,12 +9433,12 @@ } ], "id": "course-of-action--0b91e290-ce07-4ee4-b352-6ad1babdbb8f", - "modified": "2021-01-06T18:30:53.844Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Position Risk Designation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.844Z", + "created": "2021-01-13T01:52:41.630Z", "description": "a. Screen individuals prior to authorizing access to the system; and\nb. Rescreen individuals in accordance with [Assignment: organization-defined conditions requiring rescreening and, where rescreening is so indicated, the frequency of rescreening].\n\nPersonnel screening and rescreening activities reflect applicable laws, executive orders, directives, regulations, policies, standards, guidelines, and specific criteria established for the risk designations of assigned positions. Examples of personnel screening include background investigations and agency checks. Organizations may define different rescreening conditions and frequencies for personnel accessing systems based on types of information processed, stored, or transmitted by the systems.", "external_references": [ { @@ -9447,12 +9447,12 @@ } ], "id": "course-of-action--78cbe00d-50ff-4b9f-aa0b-6f43a39ed907", - "modified": "2021-01-06T18:30:53.844Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Personnel Screening", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.845Z", + "created": "2021-01-13T01:52:41.630Z", "description": "Verify that individuals accessing a system processing, storing, or transmitting classified information are cleared and indoctrinated to the highest classification level of the information to which they have access on the system.\n\nClassified information is the most sensitive information that the Federal Government processes, stores, or transmits. It is imperative that individuals have the requisite security clearances and system access authorizations prior to gaining access to such information. Access authorizations are enforced by system access controls (see AC-3) and flow controls (see AC-4).", "external_references": [ { @@ -9461,12 +9461,12 @@ } ], "id": "course-of-action--d3937289-6ed8-4112-859d-8c20d4872ff0", - "modified": "2021-01-06T18:30:53.845Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Personnel Screening | Classified Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.845Z", + "created": "2021-01-13T01:52:41.630Z", "description": "Verify that individuals accessing a system processing, storing, or transmitting types of classified information that require formal indoctrination, are formally indoctrinated for all the relevant types of information to which they have access on the system.\n\nTypes of classified information that require formal indoctrination include Special Access Program (SAP), Restricted Data (RD), and Sensitive Compartmented Information (SCI).", "external_references": [ { @@ -9475,12 +9475,12 @@ } ], "id": "course-of-action--9de6de21-bfd3-4f28-8b37-b4b1deeefd9f", - "modified": "2021-01-06T18:30:53.845Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Personnel Screening | Formal Indoctrination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.845Z", + "created": "2021-01-13T01:52:41.630Z", "description": "Verify that individuals accessing a system processing, storing, or transmitting information requiring special protection:\n(a) Have valid access authorizations that are demonstrated by assigned official government duties; and\n(b) Satisfy [Assignment: organization-defined additional personnel screening criteria].\n\nOrganizational information that requires special protection includes controlled unclassified information. Personnel security criteria include position sensitivity background screening requirements.", "external_references": [ { @@ -9489,12 +9489,12 @@ } ], "id": "course-of-action--986b02f8-8b29-4032-9db4-5f772306a220", - "modified": "2021-01-06T18:30:53.845Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Personnel Screening | Information with Special Protective Measures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.845Z", + "created": "2021-01-13T01:52:41.630Z", "description": "Verify that individuals accessing a system processing, storing, or transmitting [Assignment: organization-defined information types] meet [Assignment: organization-defined citizenship requirements].\n\nNone.", "external_references": [ { @@ -9503,12 +9503,12 @@ } ], "id": "course-of-action--81efbc64-af8f-428f-adb9-c18705fb53dd", - "modified": "2021-01-06T18:30:53.845Z", + "modified": "2021-01-13T01:52:41.630Z", "name": "Personnel Screening | Citizenship Requirements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "Upon termination of individual employment:\na. Disable system access within [Assignment: organization-defined time period];\nb. Terminate or revoke any authenticators and credentials associated with the individual;\nc. Conduct exit interviews that include a discussion of [Assignment: organization-defined information security topics];\nd. Retrieve all security-related organizational system-related property; and\ne. Retain access to organizational information and systems formerly controlled by terminated individual.\n\nSystem property includes hardware authentication tokens, system administration technical manuals, keys, identification cards, and building passes. Exit interviews ensure that terminated individuals understand the security constraints imposed by being former employees and that proper accountability is achieved for system-related property. Security topics at exit interviews include reminding individuals of nondisclosure agreements and potential limitations on future employment. Exit interviews may not always be possible for some individuals, including in cases related to the unavailability of supervisors, illnesses, or job abandonment. Exit interviews are important for individuals with security clearances. The timely execution of termination actions is essential for individuals who have been terminated for cause. In certain situations, organizations consider disabling the system accounts of individuals who are being terminated prior to the individuals being notified.", "external_references": [ { @@ -9517,12 +9517,12 @@ } ], "id": "course-of-action--995c4e49-904b-49f2-bec0-09536ba6a872", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Personnel Termination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "(a) Notify terminated individuals of applicable, legally binding post-employment requirements for the protection of organizational information; and\n(b) Require terminated individuals to sign an acknowledgment of post-employment requirements as part of the organizational termination process.\n\nOrganizations consult with the Office of the General Counsel regarding matters of post-employment requirements on terminated individuals.", "external_references": [ { @@ -9531,12 +9531,12 @@ } ], "id": "course-of-action--d011d439-1cd1-4888-adc2-fc318edf3526", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Personnel Termination | Post-employment Requirements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "Use [Assignment: organization-defined automated mechanisms] to [Selection (one or more): notify [Assignment: organization-defined personnel or roles] of individual termination actions; disable access to system resources].\n\nIn organizations with many employees, not all personnel who need to know about termination actions receive the appropriate notifications, or if such notifications are received, they may not occur in a timely manner. Automated mechanisms can be used to send automatic alerts or notifications to organizational personnel or roles when individuals are terminated. Such automatic alerts or notifications can be conveyed in a variety of ways, including via telephone, electronic mail, text message, or websites. Automated mechanisms can also be employed to quickly and thoroughly disable access to system resources after an employee is terminated.", "external_references": [ { @@ -9545,12 +9545,12 @@ } ], "id": "course-of-action--97c6ba6a-3731-4ae2-9053-a6b142d91c16", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Personnel Termination | Automated Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "a. Review and confirm ongoing operational need for current logical and physical access authorizations to systems and facilities when individuals are reassigned or transferred to other positions within the organization;\nb. Initiate [Assignment: organization-defined transfer or reassignment actions] within [Assignment: organization-defined time period following the formal transfer action];\nc. Modify access authorization as needed to correspond with any changes in operational need due to reassignment or transfer; and\nd. Notify [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period].\n\nPersonnel transfer applies when reassignments or transfers of individuals are permanent or of such extended duration as to make the actions warranted. Organizations define actions appropriate for the types of reassignments or transfers, whether permanent or extended. Actions that may be required for personnel transfers or reassignments to other positions within organizations include returning old and issuing new keys, identification cards, and building passes; closing system accounts and establishing new accounts; changing system access authorizations (i.e., privileges); and providing for access to official records to which individuals had access at previous work locations and in previous system accounts.", "external_references": [ { @@ -9559,12 +9559,12 @@ } ], "id": "course-of-action--29b6c324-4bcf-4b67-9c13-4dcb47c10a56", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Personnel Transfer", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "a. Develop and document access agreements for organizational systems;\nb. Review and update the access agreements [Assignment: organization-defined frequency]; and\nc. Verify that individuals requiring access to organizational information and systems:\n1. Sign appropriate access agreements prior to being granted access; and\n2. Re-sign access agreements to maintain access to organizational systems when access agreements have been updated or [Assignment: organization-defined frequency].\n\nAccess agreements include nondisclosure agreements, acceptable use agreements, rules of behavior, and conflict-of-interest agreements. Signed access agreements include an acknowledgement that individuals have read, understand, and agree to abide by the constraints associated with organizational systems to which access is authorized. Organizations can use electronic signatures to acknowledge access agreements unless specifically prohibited by organizational policy.", "external_references": [ { @@ -9573,12 +9573,12 @@ } ], "id": "course-of-action--67442069-c7d7-4247-a5e2-d74d8bbd2a97", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Access Agreements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "", "external_references": [ { @@ -9587,12 +9587,12 @@ } ], "id": "course-of-action--8d2e26ca-e8e1-4ce7-a538-b3a961ecb131", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Access Agreements | Information Requiring Special Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.846Z", + "created": "2021-01-13T01:52:41.631Z", "description": "Verify that access to classified information requiring special protection is granted only to individuals who:\n(a) Have a valid access authorization that is demonstrated by assigned official government duties;\n(b) Satisfy associated personnel security criteria; and\n(c) Have read, understood, and signed a nondisclosure agreement.\n\nClassified information that requires special protection includes collateral information, Special Access Program (SAP) information, and Sensitive Compartmented Information (SCI). Personnel security criteria reflect applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -9601,12 +9601,12 @@ } ], "id": "course-of-action--ea471774-de8b-4aeb-b4ed-660e98702e8e", - "modified": "2021-01-06T18:30:53.846Z", + "modified": "2021-01-13T01:52:41.631Z", "name": "Access Agreements | Classified Information Requiring Special Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.847Z", + "created": "2021-01-13T01:52:41.633Z", "description": "(a) Notify individuals of applicable, legally binding post-employment requirements for protection of organizational information; and\n(b) Require individuals to sign an acknowledgment of these requirements, if applicable, as part of granting initial access to covered information.\n\nOrganizations consult with the Office of the General Counsel regarding matters of post-employment requirements on terminated individuals.", "external_references": [ { @@ -9615,12 +9615,12 @@ } ], "id": "course-of-action--3046e536-45e4-493e-a6b7-ad98b48c2276", - "modified": "2021-01-06T18:30:53.847Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Access Agreements | Post-employment Requirements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.847Z", + "created": "2021-01-13T01:52:41.633Z", "description": "a. Establish personnel security requirements, including security roles and responsibilities for external providers;\nb. Require external providers to comply with personnel security policies and procedures established by the organization;\nc. Document personnel security requirements;\nd. Require external providers to notify [Assignment: organization-defined personnel or roles] of any personnel transfers or terminations of external personnel who possess organizational credentials and/or badges, or who have system privileges within [Assignment: organization-defined time period]; and\ne. Monitor provider compliance with personnel security requirements.\n\nExternal provider refers to organizations other than the organization operating or acquiring the system. External providers include service bureaus, contractors, and other organizations that provide system development, information technology services, testing or assessment services, outsourced applications, and network/security management. Organizations explicitly include personnel security requirements in acquisition-related documents. External providers may have personnel working at organizational facilities with credentials, badges, or system privileges issued by organizations. Notifications of external personnel changes ensure the appropriate termination of privileges and credentials. Organizations define the transfers and terminations deemed reportable by security-related characteristics that include functions, roles, and the nature of credentials or privileges associated with transferred or terminated individuals.", "external_references": [ { @@ -9629,12 +9629,12 @@ } ], "id": "course-of-action--2c16ebbe-dc44-48e4-9727-dcc5ee80b96e", - "modified": "2021-01-06T18:30:53.847Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "External Personnel Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.847Z", + "created": "2021-01-13T01:52:41.633Z", "description": "a. Employ a formal sanctions process for individuals failing to comply with established information security and privacy policies and procedures; and\nb. Notify [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period] when a formal employee sanctions process is initiated, identifying the individual sanctioned and the reason for the sanction.\n\nOrganizational sanctions reflect applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Sanctions processes are described in access agreements and can be included as part of general personnel policies for organizations and/or specified in security and privacy policies. Organizations consult with the Office of the General Counsel regarding matters of employee sanctions.", "external_references": [ { @@ -9643,12 +9643,12 @@ } ], "id": "course-of-action--2e1703b5-6267-44d0-bbcd-698d85b6f8f1", - "modified": "2021-01-06T18:30:53.847Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Personnel Sanctions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.847Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Incorporate security and privacy roles and responsibilities into organizational position descriptions.\n\nSpecification of security and privacy roles in individual organizational position descriptions facilitates clarity in understanding the security or privacy responsibilities associated with the roles and the role-based security and privacy training requirements for the roles.", "external_references": [ { @@ -9657,12 +9657,12 @@ } ], "id": "course-of-action--c2426a26-ab4e-4954-a4b7-f3cf2a6c471a", - "modified": "2021-01-06T18:30:53.847Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Position Descriptions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.847Z", + "created": "2021-01-13T01:52:41.633Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] personally identifiable information processing and transparency policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the personally identifiable information processing and transparency policy and the associated personally identifiable information processing and transparency controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the personally identifiable information processing and transparency policy and procedures; and\nc. Review and update the current personally identifiable information processing and transparency:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nPersonally identifiable information processing and transparency policy and procedures address the controls in the PT family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of personally identifiable information processing and transparency policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to personally identifiable information processing and transparency policy and procedures include assessment or audit findings, privacy breaches, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -9671,12 +9671,12 @@ } ], "id": "course-of-action--15f8a7cd-2336-435a-b158-ef596c9636ab", - "modified": "2021-01-06T18:30:53.847Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "a. Determine and document the [Assignment: organization-defined authority] that permits the [Assignment: organization-defined processing] of personally identifiable information; and\nb. Restrict the [Assignment: organization-defined processing] of personally identifiable information to only that which is authorized.\n\nThe processing of personally identifiable information is an operation or set of operations that the information system or organization performs with respect to personally identifiable information across the information life cycle. Processing includes but is not limited to creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal. Processing operations also include logging, generation, and transformation, as well as analysis techniques, such as data mining.\nOrganizations may be subject to laws, executive orders, directives, regulations, or policies that establish the organization's authority and thereby limit certain types of processing of personally identifiable information or establish other requirements related to the processing. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such authority, particularly if the organization is subject to multiple jurisdictions or sources of authority. For organizations whose processing is not determined according to legal authorities, the organization's policies and determinations govern how they process personally identifiable information. While processing of personally identifiable information may be legally permissible, privacy risks may still arise. Privacy risk assessments can identify the privacy risks associated with the authorized processing of personally identifiable information and support solutions to manage such risks.\nOrganizations consider applicable requirements and organizational policies to determine how to document this authority. For federal agencies, the authority to process personally identifiable information is documented in privacy policies and notices, system of records notices, privacy impact assessments, [PRIVACT] statements, computer matching agreements and notices, contracts, information sharing agreements, memoranda of understanding, and other documentation.\nOrganizations take steps to ensure that personally identifiable information is only processed for authorized purposes, including training organizational personnel on the authorized processing of personally identifiable information and monitoring and auditing organizational use of personally identifiable information.", "external_references": [ { @@ -9685,12 +9685,12 @@ } ], "id": "course-of-action--f3ac6ee4-0f00-40c2-88b2-4415325c5241", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Authority to Process Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Attach data tags containing [Assignment: organization-defined permissible processing] to [Assignment: organization-defined elements of personally identifiable information].\n\nData tags support the tracking and enforcement of authorized processing by conveying the types of processing that are authorized along with the relevant elements of personally identifiable information throughout the system. Data tags may also support the use of automated tools.", "external_references": [ { @@ -9699,12 +9699,12 @@ } ], "id": "course-of-action--83869ca9-f9f1-4e68-8804-da7209254299", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Authority to Process Personally Identifiable Information | Data Tagging", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Manage enforcement of the authorized processing of personally identifiable information using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms augment verification that only authorized processing is occurring.", "external_references": [ { @@ -9713,12 +9713,12 @@ } ], "id": "course-of-action--2a032e41-a55d-4181-bffe-451b4368811c", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Authority to Process Personally Identifiable Information | Automation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "a. Identify and document the [Assignment: Assignment organization-defined purpose(s)] for processing personally identifiable information;\nb. Describe the purpose(s) in the public privacy notices and policies of the organization;\nc. Restrict the [Assignment: organization-defined processing] of personally identifiable information to only that which is compatible with the identified purpose(s); and\nd. Monitor changes in processing personally identifiable information and implement [Assignment: organization-defined mechanisms] to ensure that any changes are made in accordance with [Assignment: organization-defined requirements].\n\nIdentifying and documenting the purpose for processing provides organizations with a basis for understanding why personally identifiable information may be processed. The term 'process' includes every step of the information life cycle, including creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal. Identifying and documenting the purpose of processing is a prerequisite to enabling owners and operators of the system and individuals whose information is processed by the system to understand how the information will be processed. This enables individuals to make informed decisions about their engagement with information systems and organizations and to manage their privacy interests. Once the specific processing purpose has been identified, the purpose is described in the organization's privacy notices, policies, and any related privacy compliance documentation, including privacy impact assessments, system of records notices, [PRIVACT] statements, computer matching notices, and other applicable Federal Register notices.\nOrganizations take steps to help ensure that personally identifiable information is processed only for identified purposes, including training organizational personnel and monitoring and auditing organizational processing of personally identifiable information.\nOrganizations monitor for changes in personally identifiable information processing. Organizational personnel consult with the senior agency official for privacy and legal counsel to ensure that any new purposes that arise from changes in processing are compatible with the purpose for which the information was collected, or if the new purpose is not compatible, implement mechanisms in accordance with defined requirements to allow for the new processing, if appropriate. Mechanisms may include obtaining consent from individuals, revising privacy policies, or other measures to manage privacy risks that arise from changes in personally identifiable information processing purposes.", "external_references": [ { @@ -9727,12 +9727,12 @@ } ], "id": "course-of-action--5087b0e8-e789-43c7-b563-c31d57cad048", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Personally Identifiable Information Processing Purposes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Attach data tags containing the following purposes to [Assignment: organization-defined elements of personally identifiable information]: [Assignment: organization-defined processing purposes].\n\nData tags support the tracking of processing purposes by conveying the purposes along with the relevant elements of personally identifiable information throughout the system. By conveying the processing purposes in a data tag along with the personally identifiable information as the information transits a system, a system owner or operator can identify whether a change in processing would be compatible with the identified and documented purposes. Data tags may also support the use of automated tools.", "external_references": [ { @@ -9741,12 +9741,12 @@ } ], "id": "course-of-action--43baa050-c08c-434c-b139-5ed9044eb33b", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Personally Identifiable Information Processing Purposes | Data Tagging", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.848Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Track processing purposes of personally identifiable information using [Assignment: organization-defined automated mechanisms].\n\nAutomated mechanisms augment tracking of the processing purposes.", "external_references": [ { @@ -9755,12 +9755,12 @@ } ], "id": "course-of-action--ab034cea-3db3-4417-b402-4f381fee1ff1", - "modified": "2021-01-06T18:30:53.848Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Personally Identifiable Information Processing Purposes | Automation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.849Z", + "created": "2021-01-13T01:52:41.633Z", "description": "Implement [Assignment: organization-defined tools or mechanisms] for individuals to consent to the processing of their personally identifiable information prior to its collection that facilitate individuals' informed decision-making.\n\nConsent allows individuals to participate in making decisions about the processing of their information and transfers some of the risk that arises from the processing of personally identifiable information from the organization to an individual. Consent may be required by applicable laws, executive orders, directives, regulations, policies, standards, or guidelines. Otherwise, when selecting consent as a control, organizations consider whether individuals can be reasonably expected to understand and accept the privacy risks that arise from their authorization. Organizations consider whether other controls may more effectively mitigate privacy risk either alone or in conjunction with consent. Organizations also consider any demographic or contextual factors that may influence the understanding or behavior of individuals with respect to the processing carried out by the system or organization. When soliciting consent from individuals, organizations consider the appropriate mechanism for obtaining consent, including the type of consent (e.g., opt-in, opt-out), how to properly authenticate and identity proof individuals and how to obtain consent through electronic means. In addition, organizations consider providing a mechanism for individuals to revoke consent once it has been provided, as appropriate. Finally, organizations consider usability factors to help individuals understand the risks being accepted when providing consent, including the use of plain language and avoiding technical jargon.", "external_references": [ { @@ -9769,12 +9769,12 @@ } ], "id": "course-of-action--fafd8b44-951d-4239-a61c-671cb34f05bf", - "modified": "2021-01-06T18:30:53.849Z", + "modified": "2021-01-13T01:52:41.633Z", "name": "Consent", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.849Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Provide [Assignment: organization-defined mechanisms] to allow individuals to tailor processing permissions to selected elements of personally identifiable information.\n\nWhile some processing may be necessary for the basic functionality of the product or service, other processing may not. In these circumstances, organizations allow individuals to select how specific personally identifiable information elements may be processed. More tailored consent may help reduce privacy risk, increase individual satisfaction, and avoid adverse behaviors, such as abandonment of the product or service.", "external_references": [ { @@ -9783,12 +9783,12 @@ } ], "id": "course-of-action--c01e4052-a989-4381-9081-bfc0bb12ac7d", - "modified": "2021-01-06T18:30:53.849Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Consent | Tailored Consent", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.849Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Present [Assignment: organization-defined consent mechanisms] to individuals at [Assignment: organization-defined frequency] and in conjunction with [Assignment: organization-defined personally identifiable information processing].\n\nJust-in-time consent enables individuals to participate in how their personally identifiable information is being processed at the time or in conjunction with specific types of data processing when such participation may be most useful to the individual. Individual assumptions about how personally identifiable information is being processed might not be accurate or reliable if time has passed since the individual last gave consent or the type of processing creates significant privacy risk. Organizations use discretion to determine when to use just-in-time consent and may use supporting information on demographics, focus groups, or surveys to learn more about individuals' privacy interests and concerns.", "external_references": [ { @@ -9797,12 +9797,12 @@ } ], "id": "course-of-action--40e40634-1ad4-4a6f-8f81-8770aced6ab4", - "modified": "2021-01-06T18:30:53.849Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Consent | Just-in-time Consent", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.849Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Implement [Assignment: organization-defined tools or mechanisms] for individuals to revoke consent to the processing of their personally identifiable information.\n\nRevocation of consent enables individuals to exercise control over their initial consent decision when circumstances change. Organizations consider usability factors in enabling easy-to-use revocation capabilities.", "external_references": [ { @@ -9811,12 +9811,12 @@ } ], "id": "course-of-action--d47b7616-a599-4336-b662-6f268e3819e3", - "modified": "2021-01-06T18:30:53.849Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Consent | Revocation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.849Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Provide notice to individuals about the processing of personally identifiable information that:\na. Is available to individuals upon first interacting with an organization, and subsequently at [Assignment: organization-defined frequency];\nb. Is clear and easy-to-understand, expressing information about personally identifiable information processing in plain language;\nc. Identifies the authority that authorizes the processing of personally identifiable information;\nd. Identifies the purposes for which personally identifiable information is to be processed; and\ne. Includes [Assignment: organization-defined information].\n\nPrivacy notices help inform individuals about how their personally identifiable information is being processed by the system or organization. Organizations use privacy notices to inform individuals about how, under what authority, and for what purpose their personally identifiable information is processed, as well as other information such as choices individuals might have with respect to that processing and other parties with whom information is shared. Laws, executive orders, directives, regulations, or policies may require that privacy notices include specific elements or be provided in specific formats. Federal agency personnel consult with the senior agency official for privacy and legal counsel regarding when and where to provide privacy notices, as well as elements to include in privacy notices and required formats. In circumstances where laws or government-wide policies do not require privacy notices, organizational policies and determinations may require privacy notices and may serve as a source of the elements to include in privacy notices.\nPrivacy risk assessments identify the privacy risks associated with the processing of personally identifiable information and may help organizations determine appropriate elements to include in a privacy notice to manage such risks. To help individuals understand how their information is being processed, organizations write materials in plain language and avoid technical jargon.", "external_references": [ { @@ -9825,12 +9825,12 @@ } ], "id": "course-of-action--afcc8a29-06cb-4525-8ae3-d3d7ff864818", - "modified": "2021-01-06T18:30:53.849Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Privacy Notice", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.850Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Present notice of personally identifiable information processing to individuals at a time and location where the individual provides personally identifiable information or in conjunction with a data action, or [Assignment: organization-defined frequency].\n\nJust-in-time notices inform individuals of how organizations process their personally identifiable information at a time when such notices may be most useful to the individuals. Individual assumptions about how personally identifiable information will be processed might not be accurate or reliable if time has passed since the organization last presented notice or the circumstances under which the individual was last provided notice have changed. A just-in-time notice can explain data actions that organizations have identified as potentially giving rise to greater privacy risk for individuals. Organizations can use a just-in-time notice to update or remind individuals about specific data actions as they occur or highlight specific changes that occurred since last presenting notice. A just-in-time notice can be used in conjunction with just-in-time consent to explain what will occur if consent is declined. Organizations use discretion to determine when to use a just-in-time notice and may use supporting information on user demographics, focus groups, or surveys to learn about users' privacy interests and concerns.", "external_references": [ { @@ -9839,12 +9839,12 @@ } ], "id": "course-of-action--fcc96351-2afb-4c80-b7e0-473ee79c09bd", - "modified": "2021-01-06T18:30:53.850Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Privacy Notice | Just-in-time Notice", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.850Z", + "created": "2021-01-13T01:52:41.634Z", "description": "Include Privacy Act statements on forms that collect information that will be maintained in a Privacy Act system of records, or provide Privacy Act statements on separate forms that can be retained by individuals.\n\nIf a federal agency asks individuals to supply information that will become part of a system of records, the agency is required to provide a [PRIVACT] statement on the form used to collect the information or on a separate form that can be retained by the individual. The agency provides a [PRIVACT] statement in such circumstances regardless of whether the information will be collected on a paper or electronic form, on a website, on a mobile application, over the telephone, or through some other medium. This requirement ensures that the individual is provided with sufficient information about the request for information to make an informed decision on whether or not to respond.\n[PRIVACT] statements provide formal notice to individuals of the authority that authorizes the solicitation of the information; whether providing the information is mandatory or voluntary; the principal purpose(s) for which the information is to be used; the published routine uses to which the information is subject; the effects on the individual, if any, of not providing all or any part of the information requested; and an appropriate citation and link to the relevant system of records notice. Federal agency personnel consult with the senior agency official for privacy and legal counsel regarding the notice provisions of the [PRIVACT].", "external_references": [ { @@ -9853,12 +9853,12 @@ } ], "id": "course-of-action--ece67bb1-6420-4bd9-9673-1097c7a7e426", - "modified": "2021-01-06T18:30:53.850Z", + "modified": "2021-01-13T01:52:41.634Z", "name": "Privacy Notice | Privacy Act Statements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.850Z", + "created": "2021-01-13T01:52:41.635Z", "description": "For systems that process information that will be maintained in a Privacy Act system of records:\na. Draft system of records notices in accordance with OMB guidance and submit new and significantly modified system of records notices to the OMB and appropriate congressional committees for advance review;\nb. Publish system of records notices in the Federal Register; and\nc. Keep system of records notices accurate, up-to-date, and scoped in accordance with policy.\n\nThe [PRIVACT] requires that federal agencies publish a system of records notice in the Federal Register upon the establishment and/or modification of a [PRIVACT] system of records. As a general matter, a system of records notice is required when an agency maintains a group of any records under the control of the agency from which information is retrieved by the name of an individual or by some identifying number, symbol, or other identifier. The notice describes the existence and character of the system and identifies the system of records, the purpose(s) of the system, the authority for maintenance of the records, the categories of records maintained in the system, the categories of individuals about whom records are maintained, the routine uses to which the records are subject, and additional details about the system as described in [OMB A-108].", "external_references": [ { @@ -9867,12 +9867,12 @@ } ], "id": "course-of-action--b02a2833-f160-4217-8c10-f9f79734c1f6", - "modified": "2021-01-06T18:30:53.850Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "System of Records Notice", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.850Z", + "created": "2021-01-13T01:52:41.635Z", "description": "Review all routine uses published in the system of records notice at [Assignment: organization-defined frequency] to ensure continued accuracy, and to ensure that routine uses continue to be compatible with the purpose for which the information was collected.\n\nA [PRIVACT] routine use is a particular kind of disclosure of a record outside of the federal agency maintaining the system of records. A routine use is an exception to the [PRIVACT] prohibition on the disclosure of a record in a system of records without the prior written consent of the individual to whom the record pertains. To qualify as a routine use, the disclosure must be for a purpose that is compatible with the purpose for which the information was originally collected. The [PRIVACT] requires agencies to describe each routine use of the records maintained in the system of records, including the categories of users of the records and the purpose of the use. Agencies may only establish routine uses by explicitly publishing them in the relevant system of records notice.", "external_references": [ { @@ -9881,12 +9881,12 @@ } ], "id": "course-of-action--509a617d-7a7a-4969-aa38-14ec47476e59", - "modified": "2021-01-06T18:30:53.850Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "System of Records Notice | Routine Uses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.635Z", "description": "Review all Privacy Act exemptions claimed for the system of records at [Assignment: organization-defined frequency] to ensure they remain appropriate and necessary in accordance with law, that they have been promulgated as regulations, and that they are accurately described in the system of records notice.\n\nThe [PRIVACT] includes two sets of provisions that allow federal agencies to claim exemptions from certain requirements in the statute. In certain circumstances, these provisions allow agencies to promulgate regulations to exempt a system of records from select provisions of the [PRIVACT]. At a minimum, organizations' [PRIVACT] exemption regulations include the specific name(s) of any system(s) of records that will be exempt, the specific provisions of the [PRIVACT] from which the system(s) of records is to be exempted, the reasons for the exemption, and an explanation for why the exemption is both necessary and appropriate.", "external_references": [ { @@ -9895,12 +9895,12 @@ } ], "id": "course-of-action--aeb51fe9-4951-483d-934f-39317f11436b", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "System of Records Notice | Exemption Rules", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.635Z", "description": "Apply [Assignment: organization-defined processing conditions] for specific categories of personally identifiable information.\n\nOrganizations apply any conditions or protections that may be necessary for specific categories of personally identifiable information. These conditions may be required by laws, executive orders, directives, regulations, policies, standards, or guidelines. The requirements may also come from the results of privacy risk assessments that factor in contextual changes that may result in an organizational determination that a particular category of personally identifiable information is particularly sensitive or raises particular privacy risks. Organizations consult with the senior agency official for privacy and legal counsel regarding any protections that may be necessary.", "external_references": [ { @@ -9909,12 +9909,12 @@ } ], "id": "course-of-action--98f8e2b5-2b73-4239-9205-ebb5545c4016", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "Specific Categories of Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.635Z", "description": "When a system processes Social Security numbers:\n(a) Eliminate unnecessary collection, maintenance, and use of Social Security numbers, and explore alternatives to their use as a personal identifier;\n(b) Do not deny any individual any right, benefit, or privilege provided by law because of such individual's refusal to disclose his or her Social Security number; and\n(c) Inform any individual who is asked to disclose his or her Social Security number whether that disclosure is mandatory or voluntary, by what statutory or other authority such number is solicited, and what uses will be made of it.\n\nFederal law and policy establish specific requirements for organizations' processing of Social Security numbers. Organizations take steps to eliminate unnecessary uses of Social Security numbers and other sensitive information and observe any particular requirements that apply.", "external_references": [ { @@ -9923,12 +9923,12 @@ } ], "id": "course-of-action--13a93661-f23f-4146-a963-b30f7c6c6983", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "Specific Categories of Personally Identifiable Information | Social Security Numbers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.635Z", "description": "Prohibit the processing of information describing how any individual exercises rights guaranteed by the First Amendment unless expressly authorized by statute or by the individual or unless pertinent to and within the scope of an authorized law enforcement activity.\n\nThe [PRIVACT] limits agencies' ability to process information that describes how individuals exercise rights guaranteed by the First Amendment. Organizations consult with the senior agency official for privacy and legal counsel regarding these requirements.", "external_references": [ { @@ -9937,12 +9937,12 @@ } ], "id": "course-of-action--57a690c7-6599-4bb6-b04e-06cd29ea0123", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.635Z", "name": "Specific Categories of Personally Identifiable Information | First Amendment Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.636Z", "description": "When a system or organization processes information for the purpose of conducting a matching program:\na. Obtain approval from the Data Integrity Board to conduct the matching program;\nb. Develop and enter into a computer matching agreement;\nc. Publish a matching notice in the Federal Register;\nd. Independently verify the information produced by the matching program before taking adverse action against an individual, if required; and\ne. Provide individuals with notice and an opportunity to contest the findings before taking adverse action against an individual.\n\nThe [PRIVACT] establishes requirements for federal and non-federal agencies if they engage in a matching program. In general, a matching program is a computerized comparison of records from two or more automated [PRIVACT] systems of records or an automated system of records and automated records maintained by a non-federal agency (or agent thereof). A matching program either pertains to federal benefit programs or federal personnel or payroll records. A federal benefit match is performed to determine or verify eligibility for payments under federal benefit programs or to recoup payments or delinquent debts under federal benefit programs. A matching program involves not just the matching activity itself but also the investigative follow-up and ultimate action, if any.", "external_references": [ { @@ -9951,12 +9951,12 @@ } ], "id": "course-of-action--ed9dfe93-7bed-43d0-a85a-dab041400f42", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Computer Matching Requirements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.851Z", + "created": "2021-01-13T01:52:41.636Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] risk assessment policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the risk assessment policy and the associated risk assessment controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the risk assessment policy and procedures; and\nc. Review and update the current risk assessment:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nRisk assessment policy and procedures address the controls in the RA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of risk assessment policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to risk assessment policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -9965,12 +9965,12 @@ } ], "id": "course-of-action--ebe0c40a-7812-42b3-a585-3f2e102750b8", - "modified": "2021-01-06T18:30:53.851Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.636Z", "description": "a. Categorize the system and information it processes, stores, and transmits;\nb. Document the security categorization results, including supporting rationale, in the security plan for the system; and\nc. Verify that the authorizing official or authorizing official designated representative reviews and approves the security categorization decision.\n\nSecurity categories describe the potential adverse impacts or negative consequences to organizational operations, organizational assets, and individuals if organizational information and systems are compromised through a loss of confidentiality, integrity, or availability. Security categorization is also a type of asset loss characterization in systems security engineering processes that is carried out throughout the system development life cycle. Organizations can use privacy risk assessments or privacy impact assessments to better understand the potential adverse effects on individuals. [CNSSI 1253] provides additional guidance on categorization for national security systems.\nOrganizations conduct the security categorization process as an organization-wide activity with the direct involvement of chief information officers, senior agency information security officers, senior agency officials for privacy, system owners, mission and business owners, and information owners or stewards. Organizations consider the potential adverse impacts to other organizations and, in accordance with [USA PATRIOT] and Homeland Security Presidential Directives, potential national-level adverse impacts.\nSecurity categorization processes facilitate the development of inventories of information assets and, along with CM-8, mappings to specific system components where information is processed, stored, or transmitted. The security categorization process is revisited throughout the system development life cycle to ensure that the security categories remain accurate and relevant.", "external_references": [ { @@ -9979,12 +9979,12 @@ } ], "id": "course-of-action--799956db-6228-4eae-9b44-7fa800cafae3", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Security Categorization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.636Z", "description": "Conduct an impact-level prioritization of organizational systems to obtain additional granularity on system impact levels.\n\nOrganizations apply the 'high-water mark' concept to each system categorized in accordance with [FIPS 199], resulting in systems designated as low impact, moderate impact, or high impact. Organizations that desire additional granularity in the system impact designations for risk-based decision-making, can further partition the systems into sub-categories of the initial system categorization. For example, an impact-level prioritization on a moderate-impact system can produce three new sub-categories: low-moderate systems, moderate-moderate systems, and high-moderate systems. Impact-level prioritization and the resulting sub-categories of the system give organizations an opportunity to focus their investments related to security control selection and the tailoring of control baselines in responding to identified risks. Impact-level prioritization can also be used to determine those systems that may be of heightened interest or value to adversaries or represent a critical loss to the federal enterprise, sometimes described as high value assets. For such high value assets, organizations may be more focused on complexity, aggregation, and information exchanges. Systems with high value assets can be prioritized by partitioning high-impact systems into low-high systems, moderate-high systems, and high-high systems. Alternatively, organizations can apply the guidance in [CNSSI 1253] for security objective-related categorization.", "external_references": [ { @@ -9993,12 +9993,12 @@ } ], "id": "course-of-action--4ca4da69-3132-4246-bb08-756e40b1abbc", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Security Categorization | Impact-level Prioritization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.636Z", "description": "a. Conduct a risk assessment, including:\n1. Identifying threats to and vulnerabilities in the system;\n2. Determining the likelihood and magnitude of harm from unauthorized access, use, disclosure, disruption, modification, or destruction of the system, the information it processes, stores, or transmits, and any related information; and\n3. Determining the likelihood and impact of adverse effects on individuals arising from the processing of personally identifiable information;\nb. Integrate risk assessment results and risk management decisions from the organization and mission or business process perspectives with system-level risk assessments;\nc. Document risk assessment results in [Selection: security and privacy plans; risk assessment report; \n [Assignment: organization-defined document]\n ];\nd. Review risk assessment results [Assignment: organization-defined frequency];\ne. Disseminate risk assessment results to [Assignment: organization-defined personnel or roles]; and\nf. Update the risk assessment [Assignment: organization-defined frequency] or when there are significant changes to the system, its environment of operation, or other conditions that may impact the security or privacy state of the system.\n\nRisk assessments consider threats, vulnerabilities, likelihood, and impact to organizational operations and assets, individuals, other organizations, and the Nation. Risk assessments also consider risk from external parties, including contractors who operate systems on behalf of the organization, individuals who access organizational systems, service providers, and outsourcing entities.\nOrganizations can conduct risk assessments at all three levels in the risk management hierarchy (i.e., organization level, mission/business process level, or information system level) and at any stage in the system development life cycle. Risk assessments can also be conducted at various steps in the Risk Management Framework, including preparation, categorization, control selection, control implementation, control assessment, authorization, and control monitoring. Risk assessment is an ongoing activity carried out throughout the system development life cycle.\nRisk assessments can also address information related to the system, including system design, the intended use of the system, testing results, and supply chain-related information or artifacts. Risk assessments can play an important role in control selection processes, particularly during the application of tailoring guidance and in the earliest phases of capability determination.", "external_references": [ { @@ -10007,12 +10007,12 @@ } ], "id": "course-of-action--0bcc0172-f1c8-44bd-a0d0-d51ac386c60a", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Risk Assessment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.636Z", "description": "(a) Assess supply chain risks associated with [Assignment: organization-defined systems, system components, and system services]; and\n(b) Update the supply chain risk assessment [Assignment: organization-defined frequency], when there are significant changes to the relevant supply chain, or when changes to the system, environments of operation, or other conditions may necessitate a change in the supply chain.\n\nSupply chain-related events include disruption, use of defective components, insertion of counterfeits, theft, malicious development practices, improper delivery practices, and insertion of malicious code. These events can have a significant impact on the confidentiality, integrity, or availability of a system and its information and, therefore, can also adversely impact organizational operations (including mission, functions, image, or reputation), organizational assets, individuals, other organizations, and the Nation. The supply chain-related events may be unintentional or malicious and can occur at any point during the system life cycle. An analysis of supply chain risk can help an organization identify systems or components for which additional supply chain risk mitigations are required.", "external_references": [ { @@ -10021,12 +10021,12 @@ } ], "id": "course-of-action--e7965021-ca25-4f4c-9bc4-cfd8a7590c29", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Risk Assessment | Supply Chain Risk Assessment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.636Z", "description": "Use all-source intelligence to assist in the analysis of risk.\n\nOrganizations employ all-source intelligence to inform engineering, acquisition, and risk management decisions. All-source intelligence consists of information derived from all available sources, including publicly available or open-source information, measurement and signature intelligence, human intelligence, signals intelligence, and imagery intelligence. All-source intelligence is used to analyze the risk of vulnerabilities (both intentional and unintentional) from development, manufacturing, and delivery processes, people, and the environment. The risk analysis may be performed on suppliers at multiple tiers in the supply chain sufficient to manage risks. Organizations may develop agreements to share all-source intelligence information or resulting decisions with other organizations, as appropriate.", "external_references": [ { @@ -10035,12 +10035,12 @@ } ], "id": "course-of-action--1f99e1a0-06d5-433d-b24f-23e35f84c3be", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.636Z", "name": "Risk Assessment | Use of All-source Intelligence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.852Z", + "created": "2021-01-13T01:52:41.637Z", "description": "Determine the current cyber threat environment on an ongoing basis using [Assignment: organization-defined means].\n\nThe threat awareness information that is gathered feeds into the organization's information security operations to ensure that procedures are updated in response to the changing threat environment. For example, at higher threat levels, organizations may change the privilege or authentication thresholds required to perform certain operations.", "external_references": [ { @@ -10049,12 +10049,12 @@ } ], "id": "course-of-action--6c22803c-2707-482e-87b9-8539a382a21a", - "modified": "2021-01-06T18:30:53.852Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Risk Assessment | Dynamic Threat Awareness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "Employ the following advanced automation and analytics capabilities to predict and identify risks to [Assignment: organization-defined systems or system components]: [Assignment: organization-defined advanced automation and analytics capabilities].\n\nA properly resourced Security Operations Center (SOC) or Computer Incident Response Team (CIRT) may be overwhelmed by the volume of information generated by the proliferation of security tools and appliances unless it employs advanced automation and analytics to analyze the data. Advanced automation and analytics capabilities are typically supported by artificial intelligence concepts, including machine learning. Examples include Automated Threat Discovery and Response (which includes broad-based collection, context-based analysis, and adaptive response capabilities), automated workflow operations, and machine assisted decision tools. Note, however, that sophisticated adversaries may be able to extract information related to analytic parameters and retrain the machine learning to classify malicious activity as benign. Accordingly, machine learning is augmented by human monitoring to ensure that sophisticated adversaries are not able to conceal their activities.", "external_references": [ { @@ -10063,12 +10063,12 @@ } ], "id": "course-of-action--4f2f392e-0f14-4533-a6ec-d38545d2b2c3", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Risk Assessment | Predictive Cyber Analytics", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "", "external_references": [ { @@ -10077,12 +10077,12 @@ } ], "id": "course-of-action--b77f43f6-8b0e-4428-ae40-f102a98dc85a", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Risk Assessment Update", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "a. Monitor and scan for vulnerabilities in the system and hosted applications [Assignment: organization-defined frequency and/or randomly in accordance with organization-defined process] and when new vulnerabilities potentially affecting the system are identified and reported;\nb. Employ vulnerability monitoring tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:\n1. Enumerating platforms, software flaws, and improper configurations;\n2. Formatting checklists and test procedures; and\n3. Measuring vulnerability impact;\nc. Analyze vulnerability scan reports and results from vulnerability monitoring;\nd. Remediate legitimate vulnerabilities [Assignment: organization-defined response times] in accordance with an organizational assessment of risk;\ne. Share information obtained from the vulnerability monitoring process and control assessments with [Assignment: organization-defined personnel or roles] to help eliminate similar vulnerabilities in other systems; and\nf. Employ vulnerability monitoring tools that include the capability to readily update the vulnerabilities to be scanned.\n\nSecurity categorization of information and systems guides the frequency and comprehensiveness of vulnerability monitoring (including scans). Organizations determine the required vulnerability monitoring for system components, ensuring that the potential sources of vulnerabilities'such as infrastructure components (e.g., switches, routers, guards, sensors), networked printers, scanners, and copiers'are not overlooked. The capability to readily update vulnerability monitoring tools as new vulnerabilities are discovered and announced and as new scanning methods are developed helps to ensure that new vulnerabilities are not missed by employed vulnerability monitoring tools. The vulnerability monitoring tool update process helps to ensure that potential vulnerabilities in the system are identified and addressed as quickly as possible. Vulnerability monitoring and analyses for custom software may require additional approaches, such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Organizations can use these analysis approaches in source code reviews and in a variety of tools, including web-based application scanners, static analysis tools, and binary analyzers.\nVulnerability monitoring includes scanning for patch levels; scanning for functions, ports, protocols, and services that should not be accessible to users or devices; and scanning for flow control mechanisms that are improperly configured or operating incorrectly. Vulnerability monitoring may also include continuous vulnerability monitoring tools that use instrumentation to continuously analyze components. Instrumentation-based tools may improve accuracy and may be run throughout an organization without scanning. Vulnerability monitoring tools that facilitate interoperability include tools that are Security Content Automated Protocol (SCAP)-validated. Thus, organizations consider using scanning tools that express vulnerabilities in the Common Vulnerabilities and Exposures (CVE) naming convention and that employ the Open Vulnerability Assessment Language (OVAL) to determine the presence of vulnerabilities. Sources for vulnerability information include the Common Weakness Enumeration (CWE) listing and the National Vulnerability Database (NVD). Control assessments, such as red team exercises, provide additional sources of potential vulnerabilities for which to scan. Organizations also consider using scanning tools that express vulnerability impact by the Common Vulnerability Scoring System (CVSS).\nVulnerability monitoring includes a channel and process for receiving reports of security vulnerabilities from the public at-large. Vulnerability disclosure programs can be as simple as publishing a monitored email address or web form that can receive reports, including notification authorizing good-faith research and disclosure of security vulnerabilities. Organizations generally expect that such research is happening with or without their authorization and can use public vulnerability disclosure channels to increase the likelihood that discovered vulnerabilities are reported directly to the organization for remediation.\nOrganizations may also employ the use of financial incentives (also known as 'bug bounties') to further encourage external security researchers to report discovered vulnerabilities. Bug bounty programs can be tailored to the organization's needs. Bounties can be operated indefinitely or over a defined period of time and can be offered to the general public or to a curated group. Organizations may run public and private bounties simultaneously and could choose to offer partially credentialed access to certain participants in order to evaluate security vulnerabilities from privileged vantage points.", "external_references": [ { @@ -10091,12 +10091,12 @@ } ], "id": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Vulnerability Monitoring and Scanning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "", "external_references": [ { @@ -10105,12 +10105,12 @@ } ], "id": "course-of-action--478d80fb-daaa-44e4-84c7-92f80bd68695", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Vulnerability Monitoring and Scanning | Update Tool Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "Update the system vulnerabilities to be scanned [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; prior to a new scan; when new vulnerabilities are identified and reported].\n\nDue to the complexity of modern software, systems, and other factors, new vulnerabilities are discovered on a regular basis. It is important that newly discovered vulnerabilities are added to the list of vulnerabilities to be scanned to ensure that the organization can take steps to mitigate those vulnerabilities in a timely manner.", "external_references": [ { @@ -10119,12 +10119,12 @@ } ], "id": "course-of-action--c48c3f76-b12a-44fc-802e-8bd0df83beaa", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Vulnerability Monitoring and Scanning | Update Vulnerabilities to Be Scanned", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.638Z", "description": "Define the breadth and depth of vulnerability scanning coverage.\n\nThe breadth of vulnerability scanning coverage can be expressed as a percentage of components within the system, by the particular types of systems, by the criticality of systems, or by the number of vulnerabilities to be checked. Conversely, the depth of vulnerability scanning coverage can be expressed as the level of the system design that the organization intends to monitor (e.g., component, module, subsystem, element). Organizations can determine the sufficiency of vulnerability scanning coverage with regard to its risk tolerance and other factors. Scanning tools and how the tools are configured may affect the depth and coverage. Multiple scanning tools may be needed to achieve the desired depth and coverage. [SP 800-53A] provides additional information on the breadth and depth of coverage.", "external_references": [ { @@ -10133,12 +10133,12 @@ } ], "id": "course-of-action--dde7449c-8f35-4c19-a7f4-fd7eded834b3", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Breadth and Depth of Coverage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "Determine information about the system that is discoverable and take [Assignment: organization-defined corrective actions].\n\nDiscoverable information includes information that adversaries could obtain without compromising or breaching the system, such as by collecting information that the system is exposing or by conducting extensive web searches. Corrective actions include notifying appropriate organizational personnel, removing designated information, or changing the system to make the designated information less relevant or attractive to adversaries. This enhancement excludes intentionally discoverable information that may be part of a decoy capability (e.g., honeypots, honeynets, or deception nets) deployed by the organization.", "external_references": [ { @@ -10147,12 +10147,12 @@ } ], "id": "course-of-action--74822228-b077-49ba-a1ef-0ab08f5798d5", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Discoverable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "Implement privileged access authorization to [Assignment: organization-defined system components] for [Assignment: organization-defined vulnerability scanning activities].\n\nIn certain situations, the nature of the vulnerability scanning may be more intrusive, or the system component that is the subject of the scanning may contain classified or controlled unclassified information, such as personally identifiable information. Privileged access authorization to selected system components facilitates more thorough vulnerability scanning and protects the sensitive nature of such scanning.", "external_references": [ { @@ -10161,12 +10161,12 @@ } ], "id": "course-of-action--88fd5a9d-6ef2-469c-9326-6a57297d9b90", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Privileged Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "Compare the results of multiple vulnerability scans using [Assignment: organization-defined automated mechanisms].\n\nUsing automated mechanisms to analyze multiple vulnerability scans over time can help determine trends in system vulnerabilities and identify patterns of attack.", "external_references": [ { @@ -10175,12 +10175,12 @@ } ], "id": "course-of-action--00e66a1e-a1b3-4770-8881-f7f348d9634c", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Automated Trend Analyses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "", "external_references": [ { @@ -10189,12 +10189,12 @@ } ], "id": "course-of-action--088055d6-90ab-4d5d-b24f-4c96891c9e6e", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Automated Detection and Notification of Unauthorized Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "Review historic audit logs to determine if a vulnerability identified in a [Assignment: organization-defined system] has been previously exploited within an [Assignment: organization-defined time period].\n\nReviewing historic audit logs to determine if a recently detected vulnerability in a system has been previously exploited by an adversary can provide important information for forensic analyses. Such analyses can help identify, for example, the extent of a previous intrusion, the trade craft employed during the attack, organizational information exfiltrated or modified, mission or business capabilities affected, and the duration of the attack.", "external_references": [ { @@ -10203,12 +10203,12 @@ } ], "id": "course-of-action--7373d688-0b49-48b4-9531-a5a942857e14", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Review Historic Audit Logs", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.638Z", "description": "", "external_references": [ { @@ -10217,12 +10217,12 @@ } ], "id": "course-of-action--af3af03c-9855-4ced-a934-8355b37140ba", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.638Z", "name": "Vulnerability Monitoring and Scanning | Penetration Testing and Analyses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.854Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Correlate the output from vulnerability scanning tools to determine the presence of multi-vulnerability and multi-hop attack vectors.\n\nAn attack vector is a path or means by which an adversary can gain access to a system in order to deliver malicious code or exfiltrate information. Organizations can use attack trees to show how hostile activities by adversaries interact and combine to produce adverse impacts or negative consequences to systems and organizations. Such information, together with correlated data from vulnerability scanning tools, can provide greater clarity regarding multi-vulnerability and multi-hop attack vectors. The correlation of vulnerability scanning information is especially important when organizations are transitioning from older technologies to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols). During such transitions, some system components may inadvertently be unmanaged and create opportunities for adversary exploitation.", "external_references": [ { @@ -10231,12 +10231,12 @@ } ], "id": "course-of-action--3562d90c-b047-4f7d-a771-5455cb41a32b", - "modified": "2021-01-06T18:30:53.854Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Vulnerability Monitoring and Scanning | Correlate Scanning Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Establish a public reporting channel for receiving reports of vulnerabilities in organizational systems and system components.\n\nThe reporting channel is publicly discoverable and contains clear language authorizing good-faith research and the disclosure of vulnerabilities to the organization. The organization does not condition its authorization on an expectation of indefinite non-disclosure to the public by the reporting entity but may request a specific time period to properly remediate the vulnerability.", "external_references": [ { @@ -10245,12 +10245,12 @@ } ], "id": "course-of-action--d50d9451-7277-49ad-865a-653d56902053", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Vulnerability Monitoring and Scanning | Public Disclosure Program", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Employ a technical surveillance countermeasures survey at [Assignment: organization-defined locations]\n [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; when the following events or indicators occur; \n [Assignment: organization-defined events or indicators]\n ].\n\nA technical surveillance countermeasures survey is a service provided by qualified personnel to detect the presence of technical surveillance devices and hazards and to identify technical security weaknesses that could be used in the conduct of a technical penetration of the surveyed facility. Technical surveillance countermeasures surveys also provide evaluations of the technical security posture of organizations and facilities and include visual, electronic, and physical examinations of surveyed facilities, internally and externally. The surveys also provide useful input for risk assessments and information regarding organizational exposure to potential adversaries.", "external_references": [ { @@ -10259,12 +10259,12 @@ } ], "id": "course-of-action--2a374a02-2f93-4097-8520-f4087d81b943", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Technical Surveillance Countermeasures Survey", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Respond to findings from security and privacy assessments, monitoring, and audits in accordance with organizational risk tolerance.\n\nOrganizations have many options for responding to risk including mitigating risk by implementing new controls or strengthening existing controls, accepting risk with appropriate justification or rationale, sharing or transferring risk, or avoiding risk. The risk tolerance of the organization influences risk response decisions and actions. Risk response addresses the need to determine an appropriate response to risk before generating a plan of action and milestones entry. For example, the response may be to accept risk or reject risk, or it may be possible to mitigate the risk immediately so that a plan of action and milestones entry is not needed. However, if the risk response is to mitigate the risk, and the mitigation cannot be completed immediately, a plan of action and milestones entry is generated.", "external_references": [ { @@ -10273,12 +10273,12 @@ } ], "id": "course-of-action--62da9eb3-7a69-4185-941c-933fdf160762", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Risk Response", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Conduct privacy impact assessments for systems, programs, or other activities before:\na. Developing or procuring information technology that processes personally identifiable information; and\nb. Initiating a new collection of personally identifiable information that:\n1. Will be processed using information technology; and\n2. Includes personally identifiable information permitting the physical or virtual (online) contacting of a specific individual, if identical questions have been posed to, or identical reporting requirements imposed on, ten or more individuals, other than agencies, instrumentalities, or employees of the federal government.\n\nA privacy impact assessment is an analysis of how personally identifiable information is handled to ensure that handling conforms to applicable privacy requirements, determine the privacy risks associated with an information system or activity, and evaluate ways to mitigate privacy risks. A privacy impact assessment is both an analysis and a formal document that details the process and the outcome of the analysis.\nOrganizations conduct and develop a privacy impact assessment with sufficient clarity and specificity to demonstrate that the organization fully considered privacy and incorporated appropriate privacy protections from the earliest stages of the organization's activity and throughout the information life cycle. In order to conduct a meaningful privacy impact assessment, the organization's senior agency official for privacy works closely with program managers, system owners, information technology experts, security officials, counsel, and other relevant organization personnel. Moreover, a privacy impact assessment is not a time-restricted activity that is limited to a particular milestone or stage of the information system or personally identifiable information life cycles. Rather, the privacy analysis continues throughout the system and personally identifiable information life cycles. Accordingly, a privacy impact assessment is a living document that organizations update whenever changes to the information technology, changes to the organization's practices, or other factors alter the privacy risks associated with the use of such information technology.\nTo conduct the privacy impact assessment, organizations can use security and privacy risk assessments. Organizations may also use other related processes that may have different names, including privacy threshold analyses. A privacy impact assessment can also serve as notice to the public regarding the organization's practices with respect to privacy. Although conducting and publishing privacy impact assessments may be required by law, organizations may develop such policies in the absence of applicable laws. For federal agencies, privacy impact assessments may be required by [EGOV]; agencies should consult with their senior agency official for privacy and legal counsel on this requirement and be aware of the statutory exceptions and OMB guidance relating to the provision.", "external_references": [ { @@ -10287,12 +10287,12 @@ } ], "id": "course-of-action--6c89d223-649c-4a85-845e-0810f68df077", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Privacy Impact Assessments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.639Z", "description": "Identify critical system components and functions by performing a criticality analysis for [Assignment: organization-defined systems, system components, or system services] at [Assignment: organization-defined decision points in the system development life cycle].\n\nNot all system components, functions, or services necessarily require significant protections. For example, criticality analysis is a key tenet of supply chain risk management and informs the prioritization of protection activities. The identification of critical system components and functions considers applicable laws, executive orders, regulations, directives, policies, standards, system functionality requirements, system and component interfaces, and system and component dependencies. Systems engineers conduct a functional decomposition of a system to identify mission-critical functions and components. The functional decomposition includes the identification of organizational missions supported by the system, decomposition into the specific functions to perform those missions, and traceability to the hardware, software, and firmware components that implement those functions, including when the functions are shared by many components within and external to the system.\nThe operational environment of a system or a system component may impact the criticality, including the connections to and dependencies on cyber-physical systems, devices, system-of-systems, and outsourced IT services. System components that allow unmediated access to critical system components or functions are considered critical due to the inherent vulnerabilities that such components create. Component and function criticality are assessed in terms of the impact of a component or function failure on the organizational missions that are supported by the system that contains the components and functions.\nCriticality analysis is performed when an architecture or design is being developed, modified, or upgraded. If such analysis is performed early in the system development life cycle, organizations may be able to modify the system design to reduce the critical nature of these components and functions, such as by adding redundancy or alternate paths into the system design. Criticality analysis can also influence the protection measures required by development contractors. In addition to criticality analysis for systems, system components, and system services, criticality analysis of information is an important consideration. Such analysis is conducted as part of security categorization in RA-2.", "external_references": [ { @@ -10301,12 +10301,12 @@ } ], "id": "course-of-action--81aaebda-48d9-482a-af4c-d06b9775d7b6", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.639Z", "name": "Criticality Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Establish and maintain a cyber threat hunting capability to:\n1. Search for indicators of compromise in organizational systems; and\n2. Detect, track, and disrupt threats that evade existing controls; and\nb. Employ the threat hunting capability [Assignment: organization-defined frequency].\n\nThreat hunting is an active means of cyber defense in contrast to traditional protection measures, such as firewalls, intrusion detection and prevention systems, quarantining malicious code in sandboxes, and Security Information and Event Management technologies and systems. Cyber threat hunting involves proactively searching organizational systems, networks, and infrastructure for advanced threats. The objective is to track and disrupt cyber adversaries as early as possible in the attack sequence and to measurably improve the speed and accuracy of organizational responses. Indications of compromise include unusual network traffic, unusual file changes, and the presence of malicious code. Threat hunting teams leverage existing threat intelligence and may create new threat intelligence, which is shared with peer organizations, Information Sharing and Analysis Organizations (ISAO), Information Sharing and Analysis Centers (ISAC), and relevant government departments and agencies.", "external_references": [ { @@ -10315,12 +10315,12 @@ } ], "id": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "Threat Hunting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] system and services acquisition policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the system and services acquisition policy and the associated system and services acquisition controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and services acquisition policy and procedures; and\nc. Review and update the current system and services acquisition:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nSystem and services acquisition policy and procedures address the controls in the SA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and services acquisition policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and services acquisition policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -10329,12 +10329,12 @@ } ], "id": "course-of-action--b5f6fda9-58bc-45ac-b4fc-3cf0e5ebac6d", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Determine the high-level information security and privacy requirements for the system or system service in mission and business process planning;\nb. Determine, document, and allocate the resources required to protect the system or system service as part of the organizational capital planning and investment control process; and\nc. Establish a discrete line item for information security and privacy in organizational programming and budgeting documentation.\n\nResource allocation for information security and privacy includes funding for system and services acquisition, sustainment, and supply chain-related risks throughout the system development life cycle.", "external_references": [ { @@ -10343,12 +10343,12 @@ } ], "id": "course-of-action--c7c29f09-61b8-42d4-baac-6f8c726d3aa9", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "Allocation of Resources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Acquire, develop, and manage the system using [Assignment: organization-defined system development life cycle] that incorporates information security and privacy considerations;\nb. Define and document information security and privacy roles and responsibilities throughout the system development life cycle;\nc. Identify individuals having information security and privacy roles and responsibilities; and\nd. Integrate the organizational information security and privacy risk management process into system development life cycle activities.\n\nA system development life cycle process provides the foundation for the successful development, implementation, and operation of organizational systems. The integration of security and privacy considerations early in the system development life cycle is a foundational principle of systems security engineering and privacy engineering. To apply the required controls within the system development life cycle requires a basic understanding of information security and privacy, threats, vulnerabilities, adverse impacts, and risk to critical mission and business functions. The security engineering principles in SA-8 help individuals properly design, code, and test systems and system components. Organizations include qualified personnel (e.g., senior agency information security officers, senior agency officials for privacy, security and privacy architects, and security and privacy engineers) in system development life cycle processes to ensure that established security and privacy requirements are incorporated into organizational systems. Role-based security and privacy training programs can ensure that individuals with key security and privacy roles and responsibilities have the experience, skills, and expertise to conduct assigned system development life cycle activities.\nThe effective integration of security and privacy requirements into enterprise architecture also helps to ensure that important security and privacy considerations are addressed throughout the system life cycle and that those considerations are directly related to organizational mission and business processes. This process also facilitates the integration of the information security and privacy architectures into the enterprise architecture, consistent with the risk management strategy of the organization. Because the system development life cycle involves multiple organizations, (e.g., external suppliers, developers, integrators, service providers), acquisition and supply chain risk management functions and controls play significant roles in the effective management of the system during the life cycle.", "external_references": [ { @@ -10357,12 +10357,12 @@ } ], "id": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "System Development Life Cycle", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "Protect system preproduction environments commensurate with risk throughout the system development life cycle for the system, system component, or system service.\n\nThe preproduction environment includes development, test, and integration environments. The program protection planning processes established by the Department of Defense are examples of managing the preproduction environment for defense contractors. Criticality analysis and the application of controls on developers also contribute to a more secure system development environment.", "external_references": [ { @@ -10371,12 +10371,12 @@ } ], "id": "course-of-action--651ac258-516d-4efa-acee-4347a297974a", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "System Development Life Cycle | Manage Preproduction Environment", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "(a) Approve, document, and control the use of live data in preproduction environments for the system, system component, or system service; and\n(b) Protect preproduction environments for the system, system component, or system service at the same impact or classification level as any live data in use within the preproduction environments.\n\nLive data is also referred to as operational data. The use of live or operational data in preproduction (i.e., development, test, and integration) environments can result in significant risks to organizations. In addition, the use of personally identifiable information in testing, research, and training increases the risk of unauthorized disclosure or misuse of such information. Therefore, it is important for the organization to manage any additional risks that may result from the use of live or operational data. Organizations can minimize such risks by using test or dummy data during the design, development, and testing of systems, system components, and system services. Risk assessment techniques may be used to determine if the risk of using live or operational data is acceptable.", "external_references": [ { @@ -10385,12 +10385,12 @@ } ], "id": "course-of-action--e2b6b290-e96a-42bb-8307-feb6afe01b7f", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "System Development Life Cycle | Use of Live or Operational Data", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "Plan for and implement a technology refresh schedule for the system throughout the system development life cycle.\n\nTechnology refresh planning may encompass hardware, software, firmware, processes, personnel skill sets, suppliers, service providers, and facilities. The use of obsolete or nearing obsolete technology may increase the security and privacy risks associated with unsupported components, counterfeit or repurposed components, components unable to implement security or privacy requirements, slow or inoperable components, components from untrusted sources, inadvertent personnel error, or increased complexity. Technology refreshes typically occur during the operations and maintenance stage of the system development life cycle.", "external_references": [ { @@ -10399,12 +10399,12 @@ } ], "id": "course-of-action--f44598a3-af30-442d-a5dc-2a9bbff4d859", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "System Development Life Cycle | Technology Refresh", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Include the following requirements, descriptions, and criteria, explicitly or by reference, using [Selection (one or more): standardized contract language; \n [Assignment: organization-defined contract language]\n ] in the acquisition contract for the system, system component, or system service:\na. Security and privacy functional requirements;\nb. Strength of mechanism requirements;\nc. Security and privacy assurance requirements;\nd. Controls needed to satisfy the security and privacy requirements.\ne. Security and privacy documentation requirements;\nf. Requirements for protecting security and privacy documentation;\ng. Description of the system development environment and environment in which the system is intended to operate;\nh. Allocation of responsibility or identification of parties responsible for information security, privacy, and supply chain risk management; and\ni. Acceptance criteria.\n\nSecurity and privacy functional requirements are typically derived from the high-level security and privacy requirements described in SA-2. The derived requirements include security and privacy capabilities, functions, and mechanisms. Strength requirements associated with such capabilities, functions, and mechanisms include degree of correctness, completeness, resistance to tampering or bypass, and resistance to direct attack. Assurance requirements include development processes, procedures, and methodologies as well as the evidence from development and assessment activities that provide grounds for confidence that the required functionality is implemented and possesses the required strength of mechanism. [SP 800-160-1] describes the process of requirements engineering as part of the system development life cycle.\nControls can be viewed as descriptions of the safeguards and protection capabilities appropriate for achieving the particular security and privacy objectives of the organization and for reflecting the security and privacy requirements of stakeholders. Controls are selected and implemented in order to satisfy system requirements and include developer and organizational responsibilities. Controls can include technical, administrative, and physical aspects. In some cases, the selection and implementation of a control may necessitate additional specification by the organization in the form of derived requirements or instantiated control parameter values. The derived requirements and control parameter values may be necessary to provide the appropriate level of implementation detail for controls within the system development life cycle.\nSecurity and privacy documentation requirements address all stages of the system development life cycle. Documentation provides user and administrator guidance for the implementation and operation of controls. The level of detail required in such documentation is based on the security categorization or classification level of the system and the degree to which organizations depend on the capabilities, functions, or mechanisms to meet risk response expectations. Requirements can include mandated configuration settings that specify allowed functions, ports, protocols, and services. Acceptance criteria for systems, system components, and system services are defined in the same manner as the criteria for any organizational acquisition or procurement.", "external_references": [ { @@ -10413,12 +10413,12 @@ } ], "id": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Require the developer of the system, system component, or system service to provide a description of the functional properties of the controls to be implemented.\n\nFunctional properties of security and privacy controls describe the functionality (i.e., security or privacy capability, functions, or mechanisms) visible at the interfaces of the controls and specifically exclude functionality and data structures internal to the operation of the controls.", "external_references": [ { @@ -10427,12 +10427,12 @@ } ], "id": "course-of-action--992374e8-d7ec-4860-a78c-b891f149e965", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process | Functional Properties of Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Require the developer of the system, system component, or system service to provide design and implementation information for the controls that includes: [Selection (one or more): security-relevant external system interfaces; high-level design; low-level design; source code or hardware schematics; \n [Assignment: organization-defined design and implementation information]\n ] at [Assignment: organization-defined level of detail].\n\nOrganizations may require different levels of detail in the documentation for the design and implementation of controls in organizational systems, system components, or system services based on mission and business requirements, requirements for resiliency and trustworthiness, and requirements for analysis and testing. Systems can be partitioned into multiple subsystems. Each subsystem within the system can contain one or more modules. The high-level design for the system is expressed in terms of subsystems and the interfaces between subsystems providing security-relevant functionality. The low-level design for the system is expressed in terms of modules and the interfaces between modules providing security-relevant functionality. Design and implementation documentation can include manufacturer, version, serial number, verification hash signature, software libraries used, date of purchase or download, and the vendor or download source. Source code and hardware schematics are referred to as the implementation representation of the system.", "external_references": [ { @@ -10441,12 +10441,12 @@ } ], "id": "course-of-action--04a08d3b-637c-464e-8dc4-a21644f89611", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process | Design and Implementation Information for Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Require the developer of the system, system component, or system service to demonstrate the use of a system development life cycle process that includes:\n(a) [Assignment: organization-defined systems engineering methods];\n(b) [Assignment: organization-defined Selection (one or more): systems security; privacy] engineering methods]; and\n(c) [Assignment: organization-defined software development methods; testing, evaluation, assessment, verification, and validation methods; and quality control processes].\n\nFollowing a system development life cycle that includes state-of-the-practice software development methods, systems engineering methods, systems security and privacy engineering methods, and quality control processes helps to reduce the number and severity of latent errors within systems, system components, and system services. Reducing the number and severity of such errors reduces the number of vulnerabilities in those systems, components, and services. Transparency in the methods and techniques that developers select and implement for systems engineering, systems security and privacy engineering, software development, component and system assessments, and quality control processes provides an increased level of assurance in the trustworthiness of the system, system component, or system service being acquired.", "external_references": [ { @@ -10455,12 +10455,12 @@ } ], "id": "course-of-action--3768a407-6bae-40e1-a0f0-550b97180815", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process | Development Methods, Techniques, and Practices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "", "external_references": [ { @@ -10469,12 +10469,12 @@ } ], "id": "course-of-action--ce8a5d13-5168-4840-822f-bc7b2db5ac2a", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process | Assignment of Components to Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Deliver the system, component, or service with [Assignment: organization-defined security configurations] implemented; and\n(b) Use the configurations as the default for any subsequent system, component, or service reinstallation or upgrade.\n\nExamples of security configurations include the U.S. Government Configuration Baseline (USGCB), Security Technical Implementation Guides (STIGs), and any limitations on functions, ports, protocols, and services. Security characteristics can include requiring that default passwords have been changed.", "external_references": [ { @@ -10483,12 +10483,12 @@ } ], "id": "course-of-action--b853c675-c2bd-4f28-9f21-a4278ff11dd3", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process | System, Component, and Service Configurations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.858Z", + "created": "2021-01-13T01:52:41.642Z", "description": "(a) Employ only government off-the-shelf or commercial off-the-shelf information assurance and information assurance-enabled information technology products that compose an NSA-approved solution to protect classified information when the networks used to transmit the information are at a lower classification level than the information being transmitted; and\n(b) Ensure that these products have been evaluated and/or validated by NSA or in accordance with NSA-approved procedures.\n\nCommercial off-the-shelf IA or IA-enabled information technology products used to protect classified information by cryptographic means may be required to use NSA-approved key management. See [NSA CSFC].", "external_references": [ { @@ -10497,12 +10497,12 @@ } ], "id": "course-of-action--bfbfe1f4-c919-4381-ba2c-6298325ad572", - "modified": "2021-01-06T18:30:53.858Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Use of Information Assurance Products", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.858Z", + "created": "2021-01-13T01:52:41.642Z", "description": "(a) Limit the use of commercially provided information assurance and information assurance-enabled information technology products to those products that have been successfully evaluated against a National Information Assurance partnership (NIAP)-approved Protection Profile for a specific technology type, if such a profile exists; and\n(b) Require, if no NIAP-approved Protection Profile exists for a specific technology type but a commercially provided information technology product relies on cryptographic functionality to enforce its security policy, that the cryptographic module is FIPS-validated or NSA-approved.\n\nSee [NIAP CCEVS] for additional information on NIAP. See [NIST CMVP] for additional information on FIPS-validated cryptographic modules.", "external_references": [ { @@ -10511,12 +10511,12 @@ } ], "id": "course-of-action--44685222-29b4-49dd-bc07-c84b5fe62c99", - "modified": "2021-01-06T18:30:53.858Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Niap-approved Protection Profiles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.858Z", + "created": "2021-01-13T01:52:41.642Z", "description": "Require the developer of the system, system component, or system service to produce a plan for continuous monitoring of control effectiveness that is consistent with the continuous monitoring program of the organization.\n\nThe objective of continuous monitoring plans is to determine if the planned, required, and deployed controls within the system, system component, or system service continue to be effective over time based on the inevitable changes that occur. Developer continuous monitoring plans include a sufficient level of detail such that the information can be incorporated into continuous monitoring programs implemented by organizations. Continuous monitoring plans can include the types of control assessment and monitoring activities planned, frequency of control monitoring, and actions to be taken when controls fail or become ineffective.", "external_references": [ { @@ -10525,12 +10525,12 @@ } ], "id": "course-of-action--8acf745d-b750-4197-8dc4-9e25f14b61ba", - "modified": "2021-01-06T18:30:53.858Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Continuous Monitoring Plan for Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.858Z", + "created": "2021-01-13T01:52:41.642Z", "description": "Require the developer of the system, system component, or system service to identify the functions, ports, protocols, and services intended for organizational use.\n\nThe identification of functions, ports, protocols, and services early in the system development life cycle (e.g., during the initial requirements definition and design stages) allows organizations to influence the design of the system, system component, or system service. This early involvement in the system development life cycle helps organizations avoid or minimize the use of functions, ports, protocols, or services that pose unnecessarily high risks and understand the trade-offs involved in blocking specific ports, protocols, or services or requiring system service providers to do so. Early identification of functions, ports, protocols, and services avoids costly retrofitting of controls after the system, component, or system service has been implemented. SA-9 describes the requirements for external system services. Organizations identify which functions, ports, protocols, and services are provided from external sources.", "external_references": [ { @@ -10539,12 +10539,12 @@ } ], "id": "course-of-action--87318182-cfcc-4dab-9d88-da7688382944", - "modified": "2021-01-06T18:30:53.858Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Functions, Ports, Protocols, and Services in Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.858Z", + "created": "2021-01-13T01:52:41.642Z", "description": "Employ only information technology products on the FIPS 201-approved products list for Personal Identity Verification (PIV) capability implemented within organizational systems.\n\nProducts on the FIPS 201-approved products list meet NIST requirements for Personal Identity Verification (PIV) of Federal Employees and Contractors. PIV cards are used for multi-factor authentication in systems and organizations.", "external_references": [ { @@ -10553,12 +10553,12 @@ } ], "id": "course-of-action--352da5bc-e92c-4d9f-bf00-b76591c5b1f5", - "modified": "2021-01-06T18:30:53.858Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Use of Approved PIV Products", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.859Z", + "created": "2021-01-13T01:52:41.642Z", "description": "Include [Assignment: organization-defined Privacy Act requirements] in the acquisition contract for the operation of a system of records on behalf of an organization to accomplish an organizational mission or function.\n\nWhen, by contract, an organization provides for the operation of a system of records to accomplish an organizational mission or function, the organization, consistent with its authority, causes the requirements of the [PRIVACT] to be applied to the system of records.", "external_references": [ { @@ -10567,12 +10567,12 @@ } ], "id": "course-of-action--1f33b368-cced-4d00-8387-3a2e84fa2b32", - "modified": "2021-01-06T18:30:53.859Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | System of Records", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.859Z", + "created": "2021-01-13T01:52:41.642Z", "description": "(a) Include organizational data ownership requirements in the acquisition contract; and\n(b) Require all data to be removed from the contractor's system and returned to the organization within [Assignment: organization-defined time frame].\n\nContractors who operate a system that contains data owned by an organization initiating the contract have policies and procedures in place to remove the data from their systems and/or return the data in a time frame defined by the contract.", "external_references": [ { @@ -10581,12 +10581,12 @@ } ], "id": "course-of-action--0834b0f4-3dc8-45c9-949f-04c04e22a161", - "modified": "2021-01-06T18:30:53.859Z", + "modified": "2021-01-13T01:52:41.642Z", "name": "Acquisition Process | Data Ownership", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.859Z", + "created": "2021-01-13T01:52:41.643Z", "description": "a. Obtain or develop administrator documentation for the system, system component, or system service that describes:\n1. Secure configuration, installation, and operation of the system, component, or service;\n2. Effective use and maintenance of security and privacy functions and mechanisms; and\n3. Known vulnerabilities regarding configuration and use of administrative or privileged functions;\nb. Obtain or develop user documentation for the system, system component, or system service that describes:\n1. User-accessible security and privacy functions and mechanisms and how to effectively use those functions and mechanisms;\n2. Methods for user interaction, which enables individuals to use the system, component, or service in a more secure manner and protect individual privacy; and\n3. User responsibilities in maintaining the security of the system, component, or service and privacy of individuals;\nc. Document attempts to obtain system, system component, or system service documentation when such documentation is either unavailable or nonexistent and take [Assignment: organization-defined actions] in response; and\nd. Distribute documentation to [Assignment: organization-defined personnel or roles].\n\nSystem documentation helps personnel understand the implementation and operation of controls. Organizations consider establishing specific measures to determine the quality and completeness of the content provided. System documentation may be used to support the management of supply chain risk, incident response, and other functions. Personnel or roles that require documentation include system owners, system security officers, and system administrators. Attempts to obtain documentation include contacting manufacturers or suppliers and conducting web-based searches. The inability to obtain documentation may occur due to the age of the system or component or the lack of support from developers and contractors. When documentation cannot be obtained, organizations may need to recreate the documentation if it is essential to the implementation or operation of the controls. The protection provided for the documentation is commensurate with the security category or classification of the system. Documentation that addresses system vulnerabilities may require an increased level of protection. Secure operation of the system includes initially starting the system and resuming secure system operation after a lapse in system operation.", "external_references": [ { @@ -10595,12 +10595,12 @@ } ], "id": "course-of-action--8263dae9-dca8-4d1f-a524-33d01d78768a", - "modified": "2021-01-06T18:30:53.859Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.859Z", + "created": "2021-01-13T01:52:41.643Z", "description": "", "external_references": [ { @@ -10609,12 +10609,12 @@ } ], "id": "course-of-action--c762081b-8b51-4930-8735-be42e26912fd", - "modified": "2021-01-06T18:30:53.859Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation | Functional Properties of Security Controls", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.859Z", + "created": "2021-01-13T01:52:41.643Z", "description": "", "external_references": [ { @@ -10623,12 +10623,12 @@ } ], "id": "course-of-action--92da8cfe-0c42-4511-b339-57e482e11dbb", - "modified": "2021-01-06T18:30:53.859Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation | Security-relevant External System Interfaces", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.860Z", + "created": "2021-01-13T01:52:41.643Z", "description": "", "external_references": [ { @@ -10637,12 +10637,12 @@ } ], "id": "course-of-action--e072025c-3653-4702-a70f-17004c9cf0ca", - "modified": "2021-01-06T18:30:53.860Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation | High-level Design", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.860Z", + "created": "2021-01-13T01:52:41.643Z", "description": "", "external_references": [ { @@ -10651,12 +10651,12 @@ } ], "id": "course-of-action--3eee084f-eab3-45c8-b92d-8f3cc9e7755e", - "modified": "2021-01-06T18:30:53.860Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation | Low-level Design", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.860Z", + "created": "2021-01-13T01:52:41.643Z", "description": "", "external_references": [ { @@ -10665,12 +10665,12 @@ } ], "id": "course-of-action--45c333db-708b-49d8-b254-1194cc4dc052", - "modified": "2021-01-06T18:30:53.860Z", + "modified": "2021-01-13T01:52:41.643Z", "name": "System Documentation | Source Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.860Z", + "created": "2021-01-13T01:52:41.644Z", "description": "", "external_references": [ { @@ -10679,12 +10679,12 @@ } ], "id": "course-of-action--53c18f92-09f1-46a3-854f-81766801b7c9", - "modified": "2021-01-06T18:30:53.860Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Software Usage Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.861Z", + "created": "2021-01-13T01:52:41.644Z", "description": "", "external_references": [ { @@ -10693,12 +10693,12 @@ } ], "id": "course-of-action--7ead54cd-4a5f-4921-8b47-a5e8db1de254", - "modified": "2021-01-06T18:30:53.861Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "User-installed Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.861Z", + "created": "2021-01-13T01:52:41.644Z", "description": "Apply the following systems security and privacy engineering principles in the specification, design, development, implementation, and modification of the system and system components: [Assignment: organization-defined systems security and privacy engineering principles].\n\nSystems security and privacy engineering principles are closely related to and implemented throughout the system development life cycle (see SA-3). Organizations can apply systems security and privacy engineering principles to new systems under development or to systems undergoing upgrades. For existing systems, organizations apply systems security and privacy engineering principles to system upgrades and modifications to the extent feasible, given the current state of hardware, software, and firmware components within those systems.\nThe application of systems security and privacy engineering principles helps organizations develop trustworthy, secure, and resilient systems and reduces the susceptibility to disruptions, hazards, threats, and the creation of privacy problems for individuals. Examples of system security engineering principles include: developing layered protections; establishing security and privacy policies, architecture, and controls as the foundation for design and development; incorporating security and privacy requirements into the system development life cycle; delineating physical and logical security boundaries; ensuring that developers are trained on how to build secure software; tailoring controls to meet organizational needs; and performing threat modeling to identify use cases, threat agents, attack vectors and patterns, design patterns, and compensating controls needed to mitigate risk.\nOrganizations that apply systems security and privacy engineering concepts and principles can facilitate the development of trustworthy, secure systems, system components, and system services; reduce risk to acceptable levels; and make informed risk management decisions. System security engineering principles can also be used to protect against certain supply chain risks, including incorporating tamper-resistant hardware into a design.", "external_references": [ { @@ -10707,12 +10707,12 @@ } ], "id": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "modified": "2021-01-06T18:30:53.861Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Security and Privacy Engineering Principles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.861Z", + "created": "2021-01-13T01:52:41.644Z", "description": "Implement the security design principle of clear abstractions.\n\nThe principle of clear abstractions states that a system has simple, well-defined interfaces and functions that provide a consistent and intuitive view of the data and how the data is managed. The clarity, simplicity, necessity, and sufficiency of the system interfaces' combined with a precise definition of their functional behavior'promotes ease of analysis, inspection, and testing as well as the correct and secure use of the system. The clarity of an abstraction is subjective. Examples that reflect the application of this principle include avoidance of redundant, unused interfaces; information hiding; and avoidance of semantic overloading of interfaces or their parameters. Information hiding (i.e., representation-independent programming), is a design discipline used to ensure that the internal representation of information in one system component is not visible to another system component invoking or calling the first component, such that the published abstraction is not influenced by how the data may be managed internally.", "external_references": [ { @@ -10721,12 +10721,12 @@ } ], "id": "course-of-action--d3247207-c5b1-4ad4-a1c2-753fd9e2d61d", - "modified": "2021-01-06T18:30:53.861Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Security and Privacy Engineering Principles | Clear Abstractions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.861Z", + "created": "2021-01-13T01:52:41.644Z", "description": "Implement the security design principle of least common mechanism in [Assignment: organization-defined systems or system components].\n\nThe principle of least common mechanism states that the amount of mechanism common to more than one user and depended on by all users is minimized [POPEK74]. Mechanism minimization implies that different components of a system refrain from using the same mechanism to access a system resource. Every shared mechanism (especially a mechanism involving shared variables) represents a potential information path between users and is designed with care to ensure that it does not unintentionally compromise security [SALTZER75]. Implementing the principle of least common mechanism helps to reduce the adverse consequences of sharing the system state among different programs. A single program that corrupts a shared state (including shared variables) has the potential to corrupt other programs that are dependent on the state. The principle of least common mechanism also supports the principle of simplicity of design and addresses the issue of covert storage channels [LAMPSON73].", "external_references": [ { @@ -10735,12 +10735,12 @@ } ], "id": "course-of-action--5cd64894-3bce-4dd1-8695-55081d18b16a", - "modified": "2021-01-06T18:30:53.861Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Security and Privacy Engineering Principles | Least Common Mechanism", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.644Z", "description": "Implement the security design principles of modularity and layering in [Assignment: organization-defined systems or system components].\n\nThe principles of modularity and layering are fundamental across system engineering disciplines. Modularity and layering derived from functional decomposition are effective in managing system complexity by making it possible to comprehend the structure of the system. Modular decomposition, or refinement in system design, is challenging and resists general statements of principle. Modularity serves to isolate functions and related data structures into well-defined logical units. Layering allows the relationships of these units to be better understood so that dependencies are clear and undesired complexity can be avoided. The security design principle of modularity extends functional modularity to include considerations based on trust, trustworthiness, privilege, and security policy. Security-informed modular decomposition includes the allocation of policies to systems in a network, separation of system applications into processes with distinct address spaces, allocation of system policies to layers, and separation of processes into subjects with distinct privileges based on hardware-supported privilege domains.", "external_references": [ { @@ -10749,12 +10749,12 @@ } ], "id": "course-of-action--d80551a5-17e8-4a47-9892-b42a455d5841", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Security and Privacy Engineering Principles | Modularity and Layering", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.645Z", "description": "Implement the security design principle of partially ordered dependencies in [Assignment: organization-defined systems or system components].\n\nThe principle of partially ordered dependencies states that the synchronization, calling, and other dependencies in the system are partially ordered. A fundamental concept in system design is layering, whereby the system is organized into well-defined, functionally related modules or components. The layers are linearly ordered with respect to inter-layer dependencies, such that higher layers are dependent on lower layers. While providing functionality to higher layers, some layers can be self-contained and not dependent on lower layers. While a partial ordering of all functions in a given system may not be possible, if circular dependencies are constrained to occur within layers, the inherent problems of circularity can be more easily managed. Partially ordered dependencies and system layering contribute significantly to the simplicity and coherency of the system design. Partially ordered dependencies also facilitate system testing and analysis.", "external_references": [ { @@ -10763,12 +10763,12 @@ } ], "id": "course-of-action--d0144419-47b2-403a-8b05-ab79d26581f7", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.645Z", "name": "Security and Privacy Engineering Principles | Partially Ordered Dependencies", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.645Z", "description": "Implement the security design principle of efficiently mediated access in [Assignment: organization-defined systems or system components].\n\nThe principle of efficiently mediated access states that policy enforcement mechanisms utilize the least common mechanism available while satisfying stakeholder requirements within expressed constraints. The mediation of access to system resources (i.e., CPU, memory, devices, communication ports, services, infrastructure, data, and information) is often the predominant security function of secure systems. It also enables the realization of protections for the capability provided to stakeholders by the system. Mediation of resource access can result in performance bottlenecks if the system is not designed correctly. For example, by using hardware mechanisms, efficiently mediated access can be achieved. Once access to a low-level resource such as memory has been obtained, hardware protection mechanisms can ensure that out-of-bounds access does not occur.", "external_references": [ { @@ -10777,12 +10777,12 @@ } ], "id": "course-of-action--1c122124-0109-45a3-a17a-d8cad39578cb", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.645Z", "name": "Security and Privacy Engineering Principles | Efficiently Mediated Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.645Z", "description": "Implement the security design principle of minimized sharing in [Assignment: organization-defined systems or system components].\n\nThe principle of minimized sharing states that no computer resource is shared between system components (e.g., subjects, processes, functions) unless it is absolutely necessary to do so. Minimized sharing helps to simplify system design and implementation. In order to protect user-domain resources from arbitrary active entities, no resource is shared unless that sharing has been explicitly requested and granted. The need for resource sharing can be motivated by the design principle of least common mechanism in the case of internal entities or driven by stakeholder requirements. However, internal sharing is carefully designed to avoid performance and covert storage and timing channel problems. Sharing via common mechanism can increase the susceptibility of data and information to unauthorized access, disclosure, use, or modification and can adversely affect the inherent capability provided by the system. To minimize sharing induced by common mechanisms, such mechanisms can be designed to be reentrant or virtualized to preserve separation. Moreover, the use of global data to share information is carefully scrutinized. The lack of encapsulation may obfuscate relationships among the sharing entities.", "external_references": [ { @@ -10791,12 +10791,12 @@ } ], "id": "course-of-action--c97ec215-7cbf-4c05-be44-3cc9bb7f635e", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.645Z", "name": "Security and Privacy Engineering Principles | Minimized Sharing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.645Z", "description": "Implement the security design principle of reduced complexity in [Assignment: organization-defined systems or system components].\n\nThe principle of reduced complexity states that the system design is as simple and small as possible. A small and simple design is more understandable, more analyzable, and less prone to error. The reduced complexity principle applies to any aspect of a system, but it has particular importance for security due to the various analyses performed to obtain evidence about the emergent security property of the system. For such analyses to be successful, a small and simple design is essential. Application of the principle of reduced complexity contributes to the ability of system developers to understand the correctness and completeness of system security functions. It also facilitates the identification of potential vulnerabilities. The corollary of reduced complexity states that the simplicity of the system is directly related to the number of vulnerabilities it will contain; that is, simpler systems contain fewer vulnerabilities. An benefit of reduced complexity is that it is easier to understand whether the intended security policy has been captured in the system design and that fewer vulnerabilities are likely to be introduced during engineering development. An additional benefit is that any such conclusion about correctness, completeness, and the existence of vulnerabilities can be reached with a higher degree of assurance in contrast to conclusions reached in situations where the system design is inherently more complex. Transitioning from older technologies to newer technologies (e.g., transitioning from IPv4 to IPv6) may require implementing the older and newer technologies simultaneously during the transition period. This may result in a temporary increase in system complexity during the transition.", "external_references": [ { @@ -10805,12 +10805,12 @@ } ], "id": "course-of-action--2a700917-87e6-4723-9490-d7ac88c79cd5", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.645Z", "name": "Security and Privacy Engineering Principles | Reduced Complexity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.862Z", + "created": "2021-01-13T01:52:41.645Z", "description": "Implement the security design principle of secure evolvability in [Assignment: organization-defined systems or system components].\n\nThe principle of secure evolvability states that a system is developed to facilitate the maintenance of its security properties when there are changes to the system's structure, interfaces, interconnections (i.e., system architecture), functionality, or configuration (i.e., security policy enforcement). Changes include a new, enhanced, or upgraded system capability; maintenance and sustainment activities; and reconfiguration. Although it is not possible to plan for every aspect of system evolution, system upgrades and changes can be anticipated by analyses of mission or business strategic direction, anticipated changes in the threat environment, and anticipated maintenance and sustainment needs. It is unrealistic to expect that complex systems remain secure in contexts not envisioned during development, whether such contexts are related to the operational environment or to usage. A system may be secure in some new contexts, but there is no guarantee that its emergent behavior will always be secure. It is easier to build trustworthiness into a system from the outset, and it follows that the sustainment of system trustworthiness requires planning for change as opposed to adapting in an ad hoc or non-methodical manner. The benefits of this principle include reduced vendor life cycle costs, reduced cost of ownership, improved system security, more effective management of security risk, and less risk uncertainty.", "external_references": [ { @@ -10819,12 +10819,12 @@ } ], "id": "course-of-action--0c8d048d-8023-44fc-ae75-929576ad1f30", - "modified": "2021-01-06T18:30:53.862Z", + "modified": "2021-01-13T01:52:41.645Z", "name": "Security and Privacy Engineering Principles | Secure Evolvability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of trusted components in [Assignment: organization-defined systems or system components].\n\nThe principle of trusted components states that a component is trustworthy to at least a level commensurate with the security dependencies it supports (i.e., how much it is trusted to perform its security functions by other components). This principle enables the composition of components such that trustworthiness is not inadvertently diminished and the trust is not consequently misplaced. Ultimately, this principle demands some metric by which the trust in a component and the trustworthiness of a component can be measured on the same abstract scale. The principle of trusted components is particularly relevant when considering systems and components in which there are complex chains of trust dependencies. A trust dependency is also referred to as a trust relationship and there may be chains of trust relationships.\nThe principle of trusted components also applies to a compound component that consists of subcomponents (e.g., a subsystem), which may have varying levels of trustworthiness. The conservative assumption is that the trustworthiness of a compound component is that of its least trustworthy subcomponent. It may be possible to provide a security engineering rationale that the trustworthiness of a particular compound component is greater than the conservative assumption. However, any such rationale reflects logical reasoning based on a clear statement of the trustworthiness objectives as well as relevant and credible evidence. The trustworthiness of a compound component is not the same as increased application of defense-in-depth layering within the component or a replication of components. Defense-in-depth techniques do not increase the trustworthiness of the whole above that of the least trustworthy component.", "external_references": [ { @@ -10833,12 +10833,12 @@ } ], "id": "course-of-action--bc07d430-9b71-437d-9535-7618fefeab38", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Trusted Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of hierarchical trust in [Assignment: organization-defined systems or system components].\n\nThe principle of hierarchical trust for components builds on the principle of trusted components and states that the security dependencies in a system will form a partial ordering if they preserve the principle of trusted components. The partial ordering provides the basis for trustworthiness reasoning or an assurance case (assurance argument) when composing a secure system from heterogeneously trustworthy components. To analyze a system composed of heterogeneously trustworthy components for its trustworthiness, it is essential to eliminate circular dependencies with regard to the trustworthiness. If a more trustworthy component located in a lower layer of the system were to depend on a less trustworthy component in a higher layer, this would, in effect, put the components in the same 'less trustworthy' equivalence class per the principle of trusted components. Trust relationships, or chains of trust, can have various manifestations. For example, the root certificate of a certificate hierarchy is the most trusted node in the hierarchy, whereas the leaves in the hierarchy may be the least trustworthy nodes. Another example occurs in a layered high-assurance system where the security kernel (including the hardware base), which is located at the lowest layer of the system, is the most trustworthy component. The principle of hierarchical trust, however, does not prohibit the use of overly trustworthy components. There may be cases in a system of low trustworthiness where it is reasonable to employ a highly trustworthy component rather than one that is less trustworthy (e.g., due to availability or other cost-benefit driver). For such a case, any dependency of the highly trustworthy component upon a less trustworthy component does not degrade the trustworthiness of the resulting low-trust system.", "external_references": [ { @@ -10847,12 +10847,12 @@ } ], "id": "course-of-action--0bc2422e-83bf-4ebe-a069-e4df844190af", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Hierarchical Trust", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of inverse modification threshold in [Assignment: organization-defined systems or system components].\n\nThe principle of inverse modification threshold builds on the principle of trusted components and the principle of hierarchical trust and states that the degree of protection provided to a component is commensurate with its trustworthiness. As the trust placed in a component increases, the protection against unauthorized modification of the component also increases to the same degree. Protection from unauthorized modification can come in the form of the component's own self-protection and innate trustworthiness, or it can come from the protections afforded to the component from other elements or attributes of the security architecture (to include protections in the environment of operation).", "external_references": [ { @@ -10861,12 +10861,12 @@ } ], "id": "course-of-action--4efb90da-6e29-4e73-b6aa-5008a647edf0", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Inverse Modification Threshold", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of hierarchical protection in [Assignment: organization-defined systems or system components].\n\nThe principle of hierarchical protection states that a component need not be protected from more trustworthy components. In the degenerate case of the most trusted component, it protects itself from all other components. For example, if an operating system kernel is deemed the most trustworthy component in a system, then it protects itself from all untrusted applications it supports, but the applications, conversely, do not need to protect themselves from the kernel. The trustworthiness of users is a consideration for applying the principle of hierarchical protection. A trusted system need not protect itself from an equally trustworthy user, reflecting use of untrusted systems in 'system high' environments where users are highly trustworthy and where other protections are put in place to bound and protect the 'system high' execution environment.", "external_references": [ { @@ -10875,12 +10875,12 @@ } ], "id": "course-of-action--056ed9a4-0cc4-4c42-a0f7-6dade2f80ece", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Hierarchical Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of minimized security elements in [Assignment: organization-defined systems or system components].\n\nThe principle of minimized security elements states that the system does not have extraneous trusted components. The principle of minimized security elements has two aspects: the overall cost of security analysis and the complexity of security analysis. Trusted components are generally costlier to construct and implement, owing to the increased rigor of development processes. Trusted components require greater security analysis to qualify their trustworthiness. Thus, to reduce the cost and decrease the complexity of the security analysis, a system contains as few trustworthy components as possible. The analysis of the interaction of trusted components with other components of the system is one of the most important aspects of system security verification. If the interactions between components are unnecessarily complex, the security of the system will also be more difficult to ascertain than one whose internal trust relationships are simple and elegantly constructed. In general, fewer trusted components result in fewer internal trust relationships and a simpler system.", "external_references": [ { @@ -10889,12 +10889,12 @@ } ], "id": "course-of-action--e8091e10-6d46-47ef-aa64-96e1dfcc5ad5", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Minimized Security Elements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.863Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of least privilege in [Assignment: organization-defined systems or system components].\n\nThe principle of least privilege states that each system component is allocated sufficient privileges to accomplish its specified functions but no more. Applying the principle of least privilege limits the scope of the component's actions, which has two desirable effects: the security impact of a failure, corruption, or misuse of the component will have a minimized security impact, and the security analysis of the component will be simplified. Least privilege is a pervasive principle that is reflected in all aspects of the secure system design. Interfaces used to invoke component capability are available to only certain subsets of the user population, and component design supports a sufficiently fine granularity of privilege decomposition. For example, in the case of an audit mechanism, there may be an interface for the audit manager, who configures the audit settings; an interface for the audit operator, who ensures that audit data is safely collected and stored; and, finally, yet another interface for the audit reviewer, who only has need to view the audit data that has been collected but no need to perform operations on that data.\nIn addition to its manifestations at the system interface, least privilege can be used as a guiding principle for the internal structure of the system itself. One aspect of internal least privilege is to construct modules so that only the elements encapsulated by the module are directly operated on by the functions within the module. Elements external to a module that may be affected by the module's operation are indirectly accessed through interaction (e.g., via a function call) with the module that contains those elements. Another aspect of internal least privilege is that the scope of a given module or component includes only those system elements that are necessary for its functionality and that the access modes for the elements (e.g., read, write) are minimal.", "external_references": [ { @@ -10903,12 +10903,12 @@ } ], "id": "course-of-action--8d74d476-7a21-4c28-9696-15887cf385e5", - "modified": "2021-01-06T18:30:53.863Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Least Privilege", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.646Z", "description": "Implement the security design principle of predicate permission in [Assignment: organization-defined systems or system components].\n\nThe principle of predicate permission states that system designers consider requiring multiple authorized entities to provide consent before a highly critical operation or access to highly sensitive data, information, or resources is allowed to proceed. [SALTZER75] originally named predicate permission the separation of privilege. It is also equivalent to separation of duty. The division of privilege among multiple parties decreases the likelihood of abuse and provides the safeguard that no single accident, deception, or breach of trust is sufficient to enable an unrecoverable action that can lead to significantly damaging effects. The design options for such a mechanism may require simultaneous action (e.g., the firing of a nuclear weapon requires two different authorized individuals to give the correct command within a small time window) or a sequence of operations where each successive action is enabled by some prior action, but no single individual is able to enable more than one action.", "external_references": [ { @@ -10917,12 +10917,12 @@ } ], "id": "course-of-action--fd829b8a-4301-45b0-921a-0ab172701c02", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.646Z", "name": "Security and Privacy Engineering Principles | Predicate Permission", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of self-reliant trustworthiness in [Assignment: organization-defined systems or system components].\n\nThe principle of self-reliant trustworthiness states that systems minimize their reliance on other systems for their own trustworthiness. A system is trustworthy by default, and any connection to an external entity is used to supplement its function. If a system were required to maintain a connection with another external entity in order to maintain its trustworthiness, then that system would be vulnerable to malicious and non-malicious threats that could result in the loss or degradation of that connection. The benefit of the principle of self-reliant trustworthiness is that the isolation of a system will make it less vulnerable to attack. A corollary to this principle relates to the ability of the system (or system component) to operate in isolation and then resynchronize with other components when it is rejoined with them.", "external_references": [ { @@ -10931,12 +10931,12 @@ } ], "id": "course-of-action--676cbaff-0dd4-47d3-9a51-cc1df7da9fa5", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Self-reliant Trustworthiness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of secure distributed composition in [Assignment: organization-defined systems or system components].\n\nThe principle of secure distributed composition states that the composition of distributed components that enforce the same system security policy result in a system that enforces that policy at least as well as the individual components do. Many of the design principles for secure systems deal with how components can or should interact. The need to create or enable a capability from the composition of distributed components can magnify the relevancy of these principles. In particular, the translation of security policy from a stand-alone to a distributed system or a system-of-systems can have unexpected or emergent results. Communication protocols and distributed data consistency mechanisms help to ensure consistent policy enforcement across a distributed system. To ensure a system-wide level of assurance of correct policy enforcement, the security architecture of a distributed composite system is thoroughly analyzed.", "external_references": [ { @@ -10945,12 +10945,12 @@ } ], "id": "course-of-action--cc168bc5-5f0b-4fa1-a9b7-318552900394", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Secure Distributed Composition", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of trusted communications channels in [Assignment: organization-defined systems or system components].\n\nThe principle of trusted communication channels states that when composing a system where there is a potential threat to communications between components (i.e., the interconnections between components), each communication channel is trustworthy to a level commensurate with the security dependencies it supports (i.e., how much it is trusted by other components to perform its security functions). Trusted communication channels are achieved by a combination of restricting access to the communication channel (to ensure an acceptable match in the trustworthiness of the endpoints involved in the communication) and employing end-to-end protections for the data transmitted over the communication channel (to protect against interception and modification and to further increase the assurance of proper end-to-end communication).", "external_references": [ { @@ -10959,12 +10959,12 @@ } ], "id": "course-of-action--99569387-10af-4753-baa1-5ba02b4d57ce", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Trusted Communications Channels", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of continuous protection in [Assignment: organization-defined systems or system components].\n\nThe principle of continuous protection states that components and data used to enforce the security policy have uninterrupted protection that is consistent with the security policy and the security architecture assumptions. No assurances that the system can provide the confidentiality, integrity, availability, and privacy protections for its design capability can be made if there are gaps in the protection. Any assurances about the ability to secure a delivered capability require that data and information are continuously protected. That is, there are no periods during which data and information are left unprotected while under control of the system (i.e., during the creation, storage, processing, or communication of the data and information, as well as during system initialization, execution, failure, interruption, and shutdown). Continuous protection requires adherence to the precepts of the reference monitor concept (i.e., every request is validated by the reference monitor; the reference monitor is able to protect itself from tampering; and sufficient assurance of the correctness and completeness of the mechanism can be ascertained from analysis and testing) and the principle of secure failure and recovery (i.e., preservation of a secure state during error, fault, failure, and successful attack; preservation of a secure state during recovery to normal, degraded, or alternative operational modes).\nContinuous protection also applies to systems designed to operate in varying configurations, including those that deliver full operational capability and degraded-mode configurations that deliver partial operational capability. The continuous protection principle requires that changes to the system security policies be traceable to the operational need that drives the configuration and be verifiable (i.e., it is possible to verify that the proposed changes will not put the system into an insecure state). Insufficient traceability and verification may lead to inconsistent states or protection discontinuities due to the complex or undecidable nature of the problem. The use of pre-verified configuration definitions that reflect the new security policy enables analysis to determine that a transition from old to new policies is essentially atomic and that any residual effects from the old policy are guaranteed to not conflict with the new policy. The ability to demonstrate continuous protection is rooted in the clear articulation of life cycle protection needs as stakeholder security requirements.", "external_references": [ { @@ -10973,12 +10973,12 @@ } ], "id": "course-of-action--11b5b1c4-5bdf-4c81-971c-cf419aaaee3a", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Continuous Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.864Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of secure metadata management in [Assignment: organization-defined systems or system components].\n\nThe principle of secure metadata management states that metadata are 'first class' objects with respect to security policy when the policy requires either complete protection of information or that the security subsystem be self-protecting. The principle of secure metadata management is driven by the recognition that a system, subsystem, or component cannot achieve self-protection unless it protects the data it relies on for correct execution. Data is generally not interpreted by the system that stores it. It may have semantic value (i.e., it comprises information) to users and programs that process the data. In contrast, metadata is information about data, such as a file name or the date when the file was created. Metadata is bound to the target data that it describes in a way that the system can interpret, but it need not be stored inside of or proximate to its target data. There may be metadata whose target is itself metadata (e.g., the classification level or impact level of a file name), including self-referential metadata.\nThe apparent secondary nature of metadata can lead to neglect of its legitimate need for protection, resulting in a violation of the security policy that includes the exfiltration of information. A particular concern associated with insufficient protections for metadata is associated with multilevel secure (MLS) systems. MLS systems mediate access by a subject to an object based on relative sensitivity levels. It follows that all subjects and objects in the scope of control of the MLS system are either directly labeled or indirectly attributed with sensitivity levels. The corollary of labeled metadata for MLS systems states that objects containing metadata are labeled. As with protection needs assessments for data, attention is given to ensure that the confidentiality and integrity protections are individually assessed, specified, and allocated to metadata, as would be done for mission, business, and system data.", "external_references": [ { @@ -10987,12 +10987,12 @@ } ], "id": "course-of-action--b7e65c73-faf6-439f-8c9b-93de6f15fed4", - "modified": "2021-01-06T18:30:53.864Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Secure Metadata Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.647Z", "description": "Implement the security design principle of self-analysis in [Assignment: organization-defined systems or system components].\n\nThe principle of self-analysis states that a system component is able to assess its internal state and functionality to a limited extent at various stages of execution, and that this self-analysis capability is commensurate with the level of trustworthiness invested in the system. At the system level, self-analysis can be achieved through hierarchical assessments of trustworthiness established in a bottom-up fashion. In this approach, the lower-level components check for data integrity and correct functionality (to a limited extent) of higher-level components. For example, trusted boot sequences involve a trusted lower-level component that attests to the trustworthiness of the next higher-level components so that a transitive chain of trust can be established. At the root, a component attests to itself, which usually involves an axiomatic or environmentally enforced assumption about its integrity. Results of the self-analyses can be used to guard against externally induced errors, internal malfunction, or transient errors. By following this principle, some simple malfunctions or errors can be detected without allowing the effects of the error or malfunction to propagate outside of the component. Further, the self-test can be used to attest to the configuration of the component, detecting any potential conflicts in configuration with respect to the expected configuration.", "external_references": [ { @@ -11001,12 +11001,12 @@ } ], "id": "course-of-action--a2f6e2f6-2b24-484d-96a6-b3170db12587", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.647Z", "name": "Security and Privacy Engineering Principles | Self-analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of accountability and traceability in [Assignment: organization-defined systems or system components].\n\nThe principle of accountability and traceability states that it is possible to trace security-relevant actions (i.e., subject-object interactions) to the entity on whose behalf the action is being taken. The principle of accountability and traceability requires a trustworthy infrastructure that can record details about actions that affect system security (e.g., an audit subsystem). To record the details about actions, the system is able to uniquely identify the entity on whose behalf the action is being carried out and also record the relevant sequence of actions that are carried out. The accountability policy also requires that audit trail itself be protected from unauthorized access and modification. The principle of least privilege assists in tracing the actions to particular entities, as it increases the granularity of accountability. Associating specific actions with system entities, and ultimately with users, and making the audit trail secure against unauthorized access and modifications provide non-repudiation because once an action is recorded, it is not possible to change the audit trail. Another important function that accountability and traceability serves is in the routine and forensic analysis of events associated with the violation of security policy. Analysis of audit logs may provide additional information that may be helpful in determining the path or component that allowed the violation of the security policy and the actions of individuals associated with the violation of the security policy.", "external_references": [ { @@ -11015,12 +11015,12 @@ } ], "id": "course-of-action--5a138bd2-2379-4cbf-a17e-45f96900bbbf", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Accountability and Traceability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of secure defaults in [Assignment: organization-defined systems or system components].\n\nThe principle of secure defaults states that the default configuration of a system (including its constituent subsystems, components, and mechanisms) reflects a restrictive and conservative enforcement of security policy. The principle of secure defaults applies to the initial (i.e., default) configuration of a system as well as to the security engineering and design of access control and other security functions that follow a 'deny unless explicitly authorized' strategy. The initial configuration aspect of this principle requires that any 'as shipped' configuration of a system, subsystem, or system component does not aid in the violation of the security policy and can prevent the system from operating in the default configuration for those cases where the security policy itself requires configuration by the operational user.\nRestrictive defaults mean that the system will operate 'as-shipped' with adequate self-protection and be able to prevent security breaches before the intended security policy and system configuration is established. In cases where the protection provided by the 'as-shipped' product is inadequate, stakeholders assess the risk of using it prior to establishing a secure initial state. Adherence to the principle of secure defaults guarantees that a system is established in a secure state upon successfully completing initialization. In situations where the system fails to complete initialization, either it will perform a requested operation using secure defaults or it will not perform the operation. Refer to the principles of continuous protection and secure failure and recovery that parallel this principle to provide the ability to detect and recover from failure.\nThe security engineering approach to this principle states that security mechanisms deny requests unless the request is found to be well-formed and consistent with the security policy. The insecure alternative is to allow a request unless it is shown to be inconsistent with the policy. In a large system, the conditions that are satisfied to grant a request that is denied by default are often far more compact and complete than those that would need to be checked in order to deny a request that is granted by default.", "external_references": [ { @@ -11029,12 +11029,12 @@ } ], "id": "course-of-action--9aac6d7b-a356-4e4f-89e2-4abcd514dc26", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Secure Defaults", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of secure failure and recovery in [Assignment: organization-defined systems or system components].\n\nThe principle of secure failure and recovery states that neither a failure in a system function or mechanism nor any recovery action in response to failure leads to a violation of security policy. The principle of secure failure and recovery parallels the principle of continuous protection to ensure that a system is capable of detecting (within limits) actual and impending failure at any stage of its operation (i.e., initialization, normal operation, shutdown, and maintenance) and to take appropriate steps to ensure that security policies are not violated. In addition, when specified, the system is capable of recovering from impending or actual failure to resume normal, degraded, or alternative secure operations while ensuring that a secure state is maintained such that security policies are not violated.\nFailure is a condition in which the behavior of a component deviates from its specified or expected behavior for an explicitly documented input. Once a failed security function is detected, the system may reconfigure itself to circumvent the failed component while maintaining security and provide all or part of the functionality of the original system, or it may completely shut itself down to prevent any further violation of security policies. For this to occur, the reconfiguration functions of the system are designed to ensure continuous enforcement of security policy during the various phases of reconfiguration.\nAnother technique that can be used to recover from failures is to perform a rollback to a secure state (which may be the initial state) and then either shutdown or replace the service or component that failed such that secure operations may resume. Failure of a component may or may not be detectable to the components using it. The principle of secure failure indicates that components fail in a state that denies rather than grants access. For example, a nominally 'atomic' operation interrupted before completion does not violate security policy and is designed to handle interruption events by employing higher-level atomicity and rollback mechanisms (e.g., transactions). If a service is being used, its atomicity properties are well-documented and characterized so that the component availing itself of that service can detect and handle interruption events appropriately. For example, a system is designed to gracefully respond to disconnection and support resynchronization and data consistency after disconnection.\nFailure protection strategies that employ replication of policy enforcement mechanisms, sometimes called defense in depth, can allow the system to continue in a secure state even when one mechanism has failed to protect the system. If the mechanisms are similar, however, the additional protection may be illusory, as the adversary can simply attack in series. Similarly, in a networked system, breaking the security on one system or service may enable an attacker to do the same on other similar replicated systems and services. By employing multiple protection mechanisms whose features are significantly different, the possibility of attack replication or repetition can be reduced. Analyses are conducted to weigh the costs and benefits of such redundancy techniques against increased resource usage and adverse effects on the overall system performance. Additional analyses are conducted as the complexity of these mechanisms increases, as could be the case for dynamic behaviors. Increased complexity generally reduces trustworthiness. When a resource cannot be continuously protected, it is critical to detect and repair any security breaches before the resource is once again used in a secure context.", "external_references": [ { @@ -11043,12 +11043,12 @@ } ], "id": "course-of-action--0ff9d58b-f655-4d0d-b4fa-944a073c4df0", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Secure Failure and Recovery", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of economic security in [Assignment: organization-defined systems or system components].\n\nThe principle of economic security states that security mechanisms are not costlier than the potential damage that could occur from a security breach. This is the security-relevant form of the cost-benefit analyses used in risk management. The cost assumptions of cost-benefit analysis prevent the system designer from incorporating security mechanisms of greater strength than necessary, where strength of mechanism is proportional to cost. The principle of economic security also requires analysis of the benefits of assurance relative to the cost of that assurance in terms of the effort expended to obtain relevant and credible evidence as well as the necessary analyses to assess and draw trustworthiness and risk conclusions from the evidence.", "external_references": [ { @@ -11057,12 +11057,12 @@ } ], "id": "course-of-action--3a82c9d7-963a-4df2-bc1d-0ad838c6de80", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Economic Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.865Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of performance security in [Assignment: organization-defined systems or system components].\n\nThe principle of performance security states that security mechanisms are constructed so that they do not degrade system performance unnecessarily. Stakeholder and system design requirements for performance and security are precisely articulated and prioritized. For the system implementation to meet its design requirements and be found acceptable to stakeholders (i.e., validation against stakeholder requirements), the designers adhere to the specified constraints that capability performance needs place on protection needs. The overall impact of computationally intensive security services (e.g., cryptography) are assessed and demonstrated to pose no significant impact to higher-priority performance considerations or are deemed to provide an acceptable trade-off of performance for trustworthy protection. The trade-off considerations include less computationally intensive security services unless they are unavailable or insufficient. The insufficiency of a security service is determined by functional capability and strength of mechanism. The strength of mechanism is selected with respect to security requirements, performance-critical overhead issues (e.g., cryptographic key management), and an assessment of the capability of the threat.\nThe principle of performance security leads to the incorporation of features that help in the enforcement of security policy but incur minimum overhead, such as low-level hardware mechanisms upon which higher-level services can be built. Such low-level mechanisms are usually very specific, have very limited functionality, and are optimized for performance. For example, once access rights to a portion of memory is granted, many systems use hardware mechanisms to ensure that all further accesses involve the correct memory address and access mode. Application of this principle reinforces the need to design security into the system from the ground up and to incorporate simple mechanisms at the lower layers that can be used as building blocks for higher-level mechanisms.", "external_references": [ { @@ -11071,12 +11071,12 @@ } ], "id": "course-of-action--d86775ed-5be5-46f1-b5e1-d3b8cf3cbfae", - "modified": "2021-01-06T18:30:53.865Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Performance Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.866Z", + "created": "2021-01-13T01:52:41.648Z", "description": "Implement the security design principle of human factored security in [Assignment: organization-defined systems or system components].\n\nThe principle of human factored security states that the user interface for security functions and supporting services is intuitive, user-friendly, and provides feedback for user actions that affect such policy and its enforcement. The mechanisms that enforce security policy are not intrusive to the user and are designed not to degrade user efficiency. Security policy enforcement mechanisms also provide the user with meaningful, clear, and relevant feedback and warnings when insecure choices are being made. Particular attention is given to interfaces through which personnel responsible for system administration and operation configure and set up the security policies. Ideally, these personnel are able to understand the impact of their choices. Personnel with system administrative and operational responsibilities are able to configure systems before start-up and administer them during runtime with confidence that their intent is correctly mapped to the system's mechanisms. Security services, functions, and mechanisms do not impede or unnecessarily complicate the intended use of the system. There is a trade-off between system usability and the strictness necessary for security policy enforcement. If security mechanisms are frustrating or difficult to use, then users may disable them, avoid them, or use them in ways inconsistent with the security requirements and protection needs that the mechanisms were designed to satisfy.", "external_references": [ { @@ -11085,12 +11085,12 @@ } ], "id": "course-of-action--3ca440d2-926c-4744-a638-bf47c34ee7fc", - "modified": "2021-01-06T18:30:53.866Z", + "modified": "2021-01-13T01:52:41.648Z", "name": "Security and Privacy Engineering Principles | Human Factored Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.866Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the security design principle of acceptable security in [Assignment: organization-defined systems or system components].\n\nThe principle of acceptable security requires that the level of privacy and performance that the system provides is consistent with the users' expectations. The perception of personal privacy may affect user behavior, morale, and effectiveness. Based on the organizational privacy policy and the system design, users should be able to restrict their actions to protect their privacy. When systems fail to provide intuitive interfaces or meet privacy and performance expectations, users may either choose to completely avoid the system or use it in ways that may be inefficient or even insecure.", "external_references": [ { @@ -11099,12 +11099,12 @@ } ], "id": "course-of-action--f74d4423-4ce2-41a8-9d06-522e2302d30c", - "modified": "2021-01-06T18:30:53.866Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Acceptable Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.866Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the security design principle of repeatable and documented procedures in [Assignment: organization-defined systems or system components].\n\nThe principle of repeatable and documented procedures states that the techniques and methods employed to construct a system component permit the same component to be completely and correctly reconstructed at a later time. Repeatable and documented procedures support the development of a component that is identical to the component created earlier, which may be in widespread use. In the case of other system artifacts (e.g., documentation and testing results), repeatability supports consistency and the ability to inspect the artifacts. Repeatable and documented procedures can be introduced at various stages within the system development life cycle and contribute to the ability to evaluate assurance claims for the system. Examples include systematic procedures for code development and review, procedures for the configuration management of development tools and system artifacts, and procedures for system delivery.", "external_references": [ { @@ -11113,12 +11113,12 @@ } ], "id": "course-of-action--5a3e640e-16e6-4cda-9018-fc685caa67c6", - "modified": "2021-01-06T18:30:53.866Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Repeatable and Documented Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.866Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the security design principle of procedural rigor in [Assignment: organization-defined systems or system components].\n\nThe principle of procedural rigor states that the rigor of a system life cycle process is commensurate with its intended trustworthiness. Procedural rigor defines the scope, depth, and detail of the system life cycle procedures. Rigorous system life cycle procedures contribute to the assurance that the system is correct and free of unintended functionality in several ways. First, the procedures impose checks and balances on the life cycle process such that the introduction of unspecified functionality is prevented.\nSecond, rigorous procedures applied to systems security engineering activities that produce specifications and other system design documents contribute to the ability to understand the system as it has been built rather than trusting that the component, as implemented, is the authoritative (and potentially misleading) specification.\nFinally, modifications to an existing system component are easier when there are detailed specifications that describe its current design instead of studying source code or schematics to try to understand how it works. Procedural rigor helps ensure that security functional and assurance requirements have been satisfied, and it contributes to a better-informed basis for the determination of trustworthiness and risk posture. Procedural rigor is commensurate with the degree of assurance desired for the system. If the required trustworthiness of the system is low, a high level of procedural rigor may add unnecessary cost, whereas when high trustworthiness is critical, the cost of high procedural rigor is merited.", "external_references": [ { @@ -11127,12 +11127,12 @@ } ], "id": "course-of-action--03cbfab9-6a98-4898-b56c-cf9027269752", - "modified": "2021-01-06T18:30:53.866Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Procedural Rigor", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.867Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the security design principle of secure system modification in [Assignment: organization-defined systems or system components].\n\nThe principle of secure system modification states that system modification maintains system security with respect to the security requirements and risk tolerance of stakeholders. Upgrades or modifications to systems can transform secure systems into systems that are not secure. The procedures for system modification ensure that if the system is to maintain its trustworthiness, the same rigor that was applied to its initial development is applied to any system changes. Because modifications can affect the ability of the system to maintain its secure state, a careful security analysis of the modification is needed prior to its implementation and deployment. This principle parallels the principle of secure evolvability.", "external_references": [ { @@ -11141,12 +11141,12 @@ } ], "id": "course-of-action--68e95a2d-c3c4-4521-a707-419398c81241", - "modified": "2021-01-06T18:30:53.867Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Secure System Modification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.867Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the security design principle of sufficient documentation in [Assignment: organization-defined systems or system components].\n\nThe principle of sufficient documentation states that organizational personnel with responsibilities to interact with the system are provided with adequate documentation and other information such that the personnel contribute to rather than detract from system security. Despite attempts to comply with principles such as human factored security and acceptable security, systems are inherently complex, and the design intent for the use of security mechanisms and the ramifications of the misuse or misconfiguration of security mechanisms are not always intuitively obvious. Uninformed and insufficiently trained users can introduce vulnerabilities due to errors of omission and commission. The availability of documentation and training can help to ensure a knowledgeable cadre of personnel, all of whom have a critical role in the achievement of principles such as continuous protection. Documentation is written clearly and supported by training that provides security awareness and understanding of security-relevant responsibilities.", "external_references": [ { @@ -11155,12 +11155,12 @@ } ], "id": "course-of-action--ba67f56b-735c-4cd3-8664-45fc307d18b6", - "modified": "2021-01-06T18:30:53.867Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Sufficient Documentation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.867Z", + "created": "2021-01-13T01:52:41.649Z", "description": "Implement the privacy principle of minimization using [Assignment: organization-defined processes].\n\nThe principle of minimization states that organizations should only process personally identifiable information that is directly relevant and necessary to accomplish an authorized purpose and should only maintain personally identifiable information for as long as is necessary to accomplish the purpose. Organizations have processes in place, consistent with applicable laws and policies, to implement the principle of minimization.", "external_references": [ { @@ -11169,12 +11169,12 @@ } ], "id": "course-of-action--47177395-2475-42e1-b505-375d0c6b4eed", - "modified": "2021-01-06T18:30:53.867Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "Security and Privacy Engineering Principles | Minimization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.867Z", + "created": "2021-01-13T01:52:41.649Z", "description": "a. Require that providers of external system services comply with organizational security and privacy requirements and employ the following controls: [Assignment: organization-defined controls];\nb. Define and document organizational oversight and user roles and responsibilities with regard to external system services; and\nc. Employ the following processes, methods, and techniques to monitor control compliance by external service providers on an ongoing basis: [Assignment: organization-defined processes, methods, and techniques].\n\nExternal system services are provided by an external provider, and the organization has no direct control over the implementation of the required controls or the assessment of control effectiveness. Organizations establish relationships with external service providers in a variety of ways, including through business partnerships, contracts, interagency agreements, lines of business arrangements, licensing agreements, joint ventures, and supply chain exchanges. The responsibility for managing risks from the use of external system services remains with authorizing officials. For services external to organizations, a chain of trust requires that organizations establish and retain a certain level of confidence that each provider in the consumer-provider relationship provides adequate protection for the services rendered. The extent and nature of this chain of trust vary based on relationships between organizations and the external providers. Organizations document the basis for the trust relationships so that the relationships can be monitored. External system services documentation includes government, service providers, end user security roles and responsibilities, and service-level agreements. Service-level agreements define the expectations of performance for implemented controls, describe measurable outcomes, and identify remedies and response requirements for identified instances of noncompliance.", "external_references": [ { @@ -11183,12 +11183,12 @@ } ], "id": "course-of-action--69d9b938-8eda-43f4-9dd8-d577f897b935", - "modified": "2021-01-06T18:30:53.867Z", + "modified": "2021-01-13T01:52:41.649Z", "name": "External System Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "(a) Conduct an organizational assessment of risk prior to the acquisition or outsourcing of information security services; and\n(b) Verify that the acquisition or outsourcing of dedicated information security services is approved by [Assignment: organization-defined personnel or roles].\n\nInformation security services include the operation of security devices, such as firewalls or key management services as well as incident monitoring, analysis, and response. Risks assessed can include system, mission or business, security, privacy, or supply chain risks.", "external_references": [ { @@ -11197,12 +11197,12 @@ } ], "id": "course-of-action--51eddb29-4f4e-4951-aa29-cfb448e265ef", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Risk Assessments and Organizational Approvals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "Require providers of the following external system services to identify the functions, ports, protocols, and other services required for the use of such services: [Assignment: organization-defined external system services].\n\nInformation from external service providers regarding the specific functions, ports, protocols, and services used in the provision of such services can be useful when the need arises to understand the trade-offs involved in restricting certain functions and services or blocking certain ports and protocols.", "external_references": [ { @@ -11211,12 +11211,12 @@ } ], "id": "course-of-action--179d2b21-321f-48e1-a82c-b15ddbf2f0d6", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Identification of Functions, Ports, Protocols, and Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "Establish, document, and maintain trust relationships with external service providers based on the following requirements, properties, factors, or conditions: [Assignment: organization-defined security and privacy requirements, properties, factors, or conditions defining acceptable trust relationships].\n\nTrust relationships between organizations and external service providers reflect the degree of confidence that the risk from using external services is at an acceptable level. Trust relationships can help organizations gain increased levels of confidence that service providers are providing adequate protection for the services rendered and can also be useful when conducting incident response or when planning for upgrades or obsolescence. Trust relationships can be complicated due to the potentially large number of entities participating in the consumer-provider interactions, subordinate relationships and levels of trust, and types of interactions between the parties. In some cases, the degree of trust is based on the level of control that organizations can exert on external service providers regarding the controls necessary for the protection of the service, information, or individual privacy and the evidence brought forth as to the effectiveness of the implemented controls. The level of control is established by the terms and conditions of the contracts or service-level agreements.", "external_references": [ { @@ -11225,12 +11225,12 @@ } ], "id": "course-of-action--c9fa020a-9c80-438f-9c16-4faa8b49614b", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Establish and Maintain Trust Relationship with Providers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "Take the following actions to verify that the interests of [Assignment: organization-defined external service providers] are consistent with and reflect organizational interests: [Assignment: organization-defined actions].\n\nAs organizations increasingly use external service providers, it is possible that the interests of the service providers may diverge from organizational interests. In such situations, simply having the required technical, management, or operational controls in place may not be sufficient if the providers that implement and manage those controls are not operating in a manner consistent with the interests of the consuming organizations. Actions that organizations take to address such concerns include requiring background checks for selected service provider personnel; examining ownership records; employing only trustworthy service providers, such as providers with which organizations have had successful trust relationships; and conducting routine, periodic, unscheduled visits to service provider facilities.", "external_references": [ { @@ -11239,12 +11239,12 @@ } ], "id": "course-of-action--5081f8b6-0a5d-4d02-a03e-b1c04f042be1", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Consistent Interests of Consumers and Providers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "Restrict the location of [Selection (one or more): information processing; information or data; system services] to [Assignment: organization-defined locations] based on [Assignment: organization-defined requirements or conditions].\n\nThe location of information processing, information and data storage, or system services can have a direct impact on the ability of organizations to successfully execute their mission and business functions. The impact occurs when external providers control the location of processing, storage, or services. The criteria that external providers use for the selection of processing, storage, or service locations may be different from the criteria that organizations use. For example, organizations may desire that data or information storage locations be restricted to certain locations to help facilitate incident response activities in case of information security or privacy incidents. Incident response activities, including forensic analyses and after-the-fact investigations, may be adversely affected by the governing laws, policies, or protocols in the locations where processing and storage occur and/or the locations from which system services emanate.", "external_references": [ { @@ -11253,12 +11253,12 @@ } ], "id": "course-of-action--612a1c72-28c5-4597-8a2d-35c644de9b08", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Processing, Storage, and Service Location", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.868Z", + "created": "2021-01-13T01:52:41.650Z", "description": "Maintain exclusive control of cryptographic keys for encrypted material stored or transmitted through an external system.\n\nMaintaining exclusive control of cryptographic keys in an external system prevents decryption of organizational data by external system staff. Organizational control of cryptographic keys can be implemented by encrypting and decrypting data inside the organization as data is sent to and received from the external system or by employing a component that permits encryption and decryption functions to be local to the external system but allows exclusive organizational access to the encryption keys.", "external_references": [ { @@ -11267,12 +11267,12 @@ } ], "id": "course-of-action--6f27b777-dba4-4422-ab02-78bb494fa60c", - "modified": "2021-01-06T18:30:53.868Z", + "modified": "2021-01-13T01:52:41.650Z", "name": "External System Services | Organization-controlled Cryptographic Keys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Provide the capability to check the integrity of information while it resides in the external system.\n\nStorage of organizational information in an external system could limit visibility into the security status of its data. The ability of the organization to verify and validate the integrity of its stored data without transferring it out of the external system provides such visibility.", "external_references": [ { @@ -11281,12 +11281,12 @@ } ], "id": "course-of-action--f3d1e37d-5c4f-4f91-b586-c4e3305c8548", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "External System Services | Organization-controlled Integrity Checking", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Restrict the geographic location of information processing and data storage to facilities located within in the legal jurisdictional boundary of the United States.\n\nThe geographic location of information processing and data storage can have a direct impact on the ability of organizations to successfully execute their mission and business functions. A compromise or breach of high impact information and systems can have severe or catastrophic adverse impacts on organizational assets and operations, individuals, other organizations, and the Nation. Restricting the processing and storage of high-impact information to facilities within the legal jurisdictional boundary of the United States provides greater control over such processing and storage.", "external_references": [ { @@ -11295,12 +11295,12 @@ } ], "id": "course-of-action--1f12de74-b781-4b5a-a185-163d5894f25b", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "External System Services | Processing and Storage Location ' U.s. Jurisdiction", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Require the developer of the system, system component, or system service to:\na. Perform configuration management during system, component, or service [Selection (one or more): design; development; implementation; operation; disposal];\nb. Document, manage, and control the integrity of changes to [Assignment: organization-defined configuration items under configuration management];\nc. Implement only organization-approved changes to the system, component, or service;\nd. Document approved changes to the system, component, or service and the potential security and privacy impacts of such changes; and\ne. Track security flaws and flaw resolution within the system, component, or service and report findings to [Assignment: organization-defined personnel].\n\nOrganizations consider the quality and completeness of configuration management activities conducted by developers as direct evidence of applying effective security controls. Controls include protecting the master copies of material used to generate security-relevant portions of the system hardware, software, and firmware from unauthorized modification or destruction. Maintaining the integrity of changes to the system, system component, or system service requires strict configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.\nThe configuration items that are placed under configuration management include the formal model; the functional, high-level, and low-level design specifications; other design data; implementation documentation; source code and hardware schematics; the current running version of the object code; tools for comparing new versions of security-relevant hardware descriptions and source code with previous versions; and test fixtures and documentation. Depending on the mission and business needs of organizations and the nature of the contractual relationships in place, developers may provide configuration management support during the operations and maintenance stage of the system development life cycle.", "external_references": [ { @@ -11309,12 +11309,12 @@ } ], "id": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "Developer Configuration Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Require the developer of the system, system component, or system service to enable integrity verification of software and firmware components.\n\nSoftware and firmware integrity verification allows organizations to detect unauthorized changes to software and firmware components using developer-provided tools, techniques, and mechanisms. The integrity checking mechanisms can also address counterfeiting of software and firmware components. Organizations verify the integrity of software and firmware components, for example, through secure one-way hashes provided by developers. Delivered software and firmware components also include any updates to such components.", "external_references": [ { @@ -11323,12 +11323,12 @@ } ], "id": "course-of-action--a2adc663-d106-43b6-9326-8147b503d549", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "Developer Configuration Management | Software and Firmware Integrity Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Provide an alternate configuration management process using organizational personnel in the absence of a dedicated developer configuration management team.\n\nAlternate configuration management processes may be required when organizations use commercial off-the-shelf information technology products. Alternate configuration management processes include organizational personnel who review and approve proposed changes to systems, system components, and system services and conduct security and privacy impact analyses prior to the implementation of changes to systems, components, or services.", "external_references": [ { @@ -11337,12 +11337,12 @@ } ], "id": "course-of-action--5156f351-6b15-48d9-820a-677dc44a02d9", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "Developer Configuration Management | Alternative Configuration Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Require the developer of the system, system component, or system service to enable integrity verification of hardware components.\n\nHardware integrity verification allows organizations to detect unauthorized changes to hardware components using developer-provided tools, techniques, methods, and mechanisms. Organizations may verify the integrity of hardware components with hard-to-copy labels, verifiable serial numbers provided by developers, and by requiring the use of anti-tamper technologies. Delivered hardware components also include hardware and firmware updates to such components.", "external_references": [ { @@ -11351,12 +11351,12 @@ } ], "id": "course-of-action--0914766b-41fa-450e-b7fe-8f3314093ef4", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "Developer Configuration Management | Hardware Integrity Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service to employ tools for comparing newly generated versions of security-relevant hardware descriptions, source code, and object code with previous versions.\n\nThe trusted generation of descriptions, source code, and object code addresses authorized changes to hardware, software, and firmware components between versions during development. The focus is on the efficacy of the configuration management process by the developer to ensure that newly generated versions of security-relevant hardware descriptions, source code, and object code continue to enforce the security policy for the system, system component, or system service. In contrast, SA-10(1) and SA-10(3) allow organizations to detect unauthorized changes to hardware, software, and firmware components using tools, techniques, or mechanisms provided by developers.", "external_references": [ { @@ -11365,12 +11365,12 @@ } ], "id": "course-of-action--b410a0bb-7864-4008-b00b-f318e92cb6eb", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Configuration Management | Trusted Generation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service to maintain the integrity of the mapping between the master build data describing the current version of security-relevant hardware, software, and firmware and the on-site master copy of the data for the current version.\n\nMapping integrity for version control addresses changes to hardware, software, and firmware components during both initial development and system development life cycle updates. Maintaining the integrity between the master copies of security-relevant hardware, software, and firmware (including designs, hardware drawings, source code) and the equivalent data in master copies in operational environments is essential to ensuring the availability of organizational systems that support critical mission and business functions.", "external_references": [ { @@ -11379,12 +11379,12 @@ } ], "id": "course-of-action--47ac6d7f-9d3f-4e8c-870e-da9b4416be86", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Configuration Management | Mapping Integrity for Version Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service to execute procedures for ensuring that security-relevant hardware, software, and firmware updates distributed to the organization are exactly as specified by the master copies.\n\nThe trusted distribution of security-relevant hardware, software, and firmware updates help to ensure that the updates are correct representations of the master copies maintained by the developer and have not been tampered with during distribution.", "external_references": [ { @@ -11393,12 +11393,12 @@ } ], "id": "course-of-action--1b6e37f2-a144-4765-8642-e3c76af03941", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Configuration Management | Trusted Distribution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require [Assignment: organization-defined security and privacy representatives] to be included in the [Assignment: organization-defined configuration change management and control process].\n\nInformation security and privacy representatives can include system security officers, senior agency information security officers, senior agency officials for privacy, and system privacy officers. Representation by personnel with information security and privacy expertise is important because changes to system configurations can have unintended side effects, some of which may be security- or privacy-relevant. Detecting such changes early in the process can help avoid unintended, negative consequences that could ultimately affect the security and privacy posture of systems. The configuration change management and control process in this control enhancement refers to the change management and control process defined by organizations in SA-10b.", "external_references": [ { @@ -11407,12 +11407,12 @@ } ], "id": "course-of-action--e8caae28-85a8-4a41-8da7-08350c549349", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Configuration Management | Security and Privacy Representatives", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service, at all post-design stages of the system development life cycle, to:\na. Develop and implement a plan for ongoing security and privacy assessments;\nb. Perform [Selection (one or more): unit; integration; system; regression] testing/evaluation [Assignment: organization-defined frequency] at [Assignment: organization-defined depth and coverage];\nc. Produce evidence of the execution of the assessment plan and the results of the testing and evaluation;\nd. Implement a verifiable flaw remediation process; and\ne. Correct flaws identified during testing and evaluation.\n\nDevelopmental testing and evaluation confirms that the required controls are implemented correctly, operating as intended, enforcing the desired security and privacy policies, and meeting established security and privacy requirements. Security properties of systems and the privacy of individuals may be affected by the interconnection of system components or changes to those components. The interconnections or changes'including upgrading or replacing applications, operating systems, and firmware'may adversely affect previously implemented controls. Ongoing assessment during development allows for additional types of testing and evaluation that developers can conduct to reduce or eliminate potential flaws. Testing custom software applications may require approaches such as manual code review, security architecture review, and penetration testing, as well as and static analysis, dynamic analysis, binary analysis, or a hybrid of the three analysis approaches.\nDevelopers can use the analysis approaches, along with security instrumentation and fuzzing, in a variety of tools and in source code reviews. The security and privacy assessment plans include the specific activities that developers plan to carry out, including the types of analyses, testing, evaluation, and reviews of software and firmware components; the degree of rigor to be applied; the frequency of the ongoing testing and evaluation; and the types of artifacts produced during those processes. The depth of testing and evaluation refers to the rigor and level of detail associated with the assessment process. The coverage of testing and evaluation refers to the scope (i.e., number and type) of the artifacts included in the assessment process. Contracts specify the acceptance criteria for security and privacy assessment plans, flaw remediation processes, and the evidence that the plans and processes have been diligently applied. Methods for reviewing and protecting assessment plans, evidence, and documentation are commensurate with the security category or classification level of the system. Contracts may specify protection requirements for documentation.", "external_references": [ { @@ -11421,12 +11421,12 @@ } ], "id": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Testing and Evaluation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service to employ static code analysis tools to identify common flaws and document the results of the analysis.\n\nStatic code analysis provides a technology and methodology for security reviews and includes checking for weaknesses in the code as well as for the incorporation of libraries or other included code with known vulnerabilities or that are out-of-date and not supported. Static code analysis can be used to identify vulnerabilities and enforce secure coding practices. It is most effective when used early in the development process, when each code change can automatically be scanned for potential weaknesses. Static code analysis can provide clear remediation guidance and identify defects for developers to fix. Evidence of the correct implementation of static analysis can include aggregate defect density for critical defect types, evidence that defects were inspected by developers or security professionals, and evidence that defects were remediated. A high density of ignored findings, commonly referred to as false positives, indicates a potential problem with the analysis process or the analysis tool. In such cases, organizations weigh the validity of the evidence against evidence from other sources.", "external_references": [ { @@ -11435,12 +11435,12 @@ } ], "id": "course-of-action--6df3d92c-f03f-4497-873f-d9aa1e0eada2", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Testing and Evaluation | Static Code Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to perform threat modeling and vulnerability analyses during development and the subsequent testing and evaluation of the system, component, or service that:\n(a) Uses the following contextual information: [Assignment: organization-defined information concerning impact, environment of operations, known or assumed threats, and acceptable risk levels];\n(b) Employs the following tools and methods: [Assignment: organization-defined tools and methods];\n(c) Conducts the modeling and analyses at the following level of rigor: [Assignment: organization-defined breadth and depth of modeling and analyses]; and\n(d) Produces evidence that meets the following acceptance criteria: [Assignment: organization-defined acceptance criteria].\n\nSystems, system components, and system services may deviate significantly from the functional and design specifications created during the requirements and design stages of the system development life cycle. Therefore, updates to threat modeling and vulnerability analyses of those systems, system components, and system services during development and prior to delivery are critical to the effective operation of those systems, components, and services. Threat modeling and vulnerability analyses at this stage of the system development life cycle ensure that design and implementation changes have been accounted for and that vulnerabilities created because of those changes have been reviewed and mitigated.", "external_references": [ { @@ -11449,12 +11449,12 @@ } ], "id": "course-of-action--fd56ff63-f0fc-499f-b904-3e800cf827f3", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Threat Modeling and Vulnerability Analyses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "(a) Require an independent agent satisfying [Assignment: organization-defined independence criteria] to verify the correct implementation of the developer security and privacy assessment plans and the evidence produced during testing and evaluation; and\n(b) Verify that the independent agent is provided with sufficient information to complete the verification process or granted the authority to obtain such information.\n\nIndependent agents have the qualifications'including the expertise, skills, training, certifications, and experience'to verify the correct implementation of developer security and privacy assessment plans.", "external_references": [ { @@ -11463,12 +11463,12 @@ } ], "id": "course-of-action--90514659-9a3b-46ad-b8ba-3f052ba7256c", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Independent Verification of Assessment Plans and Evidence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to perform a manual code review of [Assignment: organization-defined specific code] using the following processes, procedures, and/or techniques: [Assignment: organization-defined processes, procedures, and/or techniques].\n\nManual code reviews are usually reserved for the critical software and firmware components of systems. Manual code reviews are effective at identifying weaknesses that require knowledge of the application's requirements or context that, in most cases, is unavailable to automated analytic tools and techniques, such as static and dynamic analysis. The benefits of manual code review include the ability to verify access control matrices against application controls and review detailed aspects of cryptographic implementations and controls.", "external_references": [ { @@ -11477,12 +11477,12 @@ } ], "id": "course-of-action--4f34368a-7624-480a-a0b4-565da2eda642", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Manual Code Reviews", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to perform penetration testing:\n(a) At the following level of rigor: [Assignment: organization-defined breadth and depth of testing]; and\n(b) Under the following constraints: [Assignment: organization-defined constraints].\n\nPenetration testing is an assessment methodology in which assessors, using all available information technology product or system documentation and working under specific constraints, attempt to circumvent the implemented security and privacy features of information technology products and systems. Useful information for assessors who conduct penetration testing includes product and system design specifications, source code, and administrator and operator manuals. Penetration testing can include white-box, gray-box, or black-box testing with analyses performed by skilled professionals who simulate adversary actions. The objective of penetration testing is to discover vulnerabilities in systems, system components, and services that result from implementation errors, configuration faults, or other operational weaknesses or deficiencies. Penetration tests can be performed in conjunction with automated and manual code reviews to provide a greater level of analysis than would ordinarily be possible. When user session information and other personally identifiable information is captured or recorded during penetration testing, such information is handled appropriately to protect privacy.", "external_references": [ { @@ -11491,12 +11491,12 @@ } ], "id": "course-of-action--d5e677bb-f345-4ea2-a646-49da38b89041", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Penetration Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to perform attack surface reviews.\n\nAttack surfaces of systems and system components are exposed areas that make those systems more vulnerable to attacks. Attack surfaces include any accessible areas where weaknesses or deficiencies in the hardware, software, and firmware components provide opportunities for adversaries to exploit vulnerabilities. Attack surface reviews ensure that developers analyze the design and implementation changes to systems and mitigate attack vectors generated as a result of the changes. The correction of identified flaws includes deprecation of unsafe functions.", "external_references": [ { @@ -11505,12 +11505,12 @@ } ], "id": "course-of-action--ffb2f8b2-912f-418c-8b38-2ef482982373", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Attack Surface Reviews", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.871Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to verify that the scope of testing and evaluation provides complete coverage of the required controls at the following level of rigor: [Assignment: organization-defined breadth and depth of testing and evaluation].\n\nVerifying that testing and evaluation provides complete coverage of required controls can be accomplished by a variety of analytic techniques ranging from informal to formal. Each of these techniques provides an increasing level of assurance that corresponds to the degree of formality of the analysis. Rigorously demonstrating control coverage at the highest levels of assurance can be achieved using formal modeling and analysis techniques, including correlation between control implementation and corresponding test cases.", "external_references": [ { @@ -11519,12 +11519,12 @@ } ], "id": "course-of-action--9f160f88-7b25-42a0-8dfd-cad8a655c90b", - "modified": "2021-01-06T18:30:53.871Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Verify Scope of Testing and Evaluation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.653Z", "description": "Require the developer of the system, system component, or system service to employ dynamic code analysis tools to identify common flaws and document the results of the analysis.\n\nDynamic code analysis provides runtime verification of software programs using tools capable of monitoring programs for memory corruption, user privilege issues, and other potential security problems. Dynamic code analysis employs runtime tools to ensure that security functionality performs in the way it was designed. A type of dynamic analysis, known as fuzz testing, induces program failures by deliberately introducing malformed or random data into software programs. Fuzz testing strategies are derived from the intended use of applications and the functional and design specifications for the applications. To understand the scope of dynamic code analysis and the assurance provided, organizations may also consider conducting code coverage analysis (i.e., checking the degree to which the code has been tested using metrics such as percent of subroutines tested or percent of program statements called during execution of the test suite) and/or concordance analysis (i.e., checking for words that are out of place in software code, such as non-English language words or derogatory terms).", "external_references": [ { @@ -11533,12 +11533,12 @@ } ], "id": "course-of-action--95a25f4a-d876-43d6-b36f-2549b47af59d", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.653Z", "name": "Developer Testing and Evaluation | Dynamic Code Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "Require the developer of the system, system component, or system service to employ interactive application security testing tools to identify flaws and document the results.\n\nInteractive (also known as instrumentation-based) application security testing is a method of detecting vulnerabilities by observing applications as they run during testing. The use of instrumentation relies on direct measurements of the actual running applications and uses access to the code, user interaction, libraries, frameworks, backend connections, and configurations to directly measure control effectiveness. When combined with analysis techniques, interactive application security testing can identify a broad range of potential vulnerabilities and confirm control effectiveness. Instrumentation-based testing works in real time and can be used continuously throughout the system development life cycle.", "external_references": [ { @@ -11547,12 +11547,12 @@ } ], "id": "course-of-action--5f2873eb-ca43-4861-ae34-1b7694e66b2c", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Developer Testing and Evaluation | Interactive Application Security Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -11561,12 +11561,12 @@ } ], "id": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -11575,12 +11575,12 @@ } ], "id": "course-of-action--b95b5014-5560-4c62-a423-422f832f9bc5", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection | Acquisition Strategies / Tools / Methods", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -11589,12 +11589,12 @@ } ], "id": "course-of-action--fbbfdfab-b8da-47d4-bbc2-374098934e37", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection | Supplier Reviews", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -11603,12 +11603,12 @@ } ], "id": "course-of-action--24f84ac0-86e8-4007-91be-0c7d1d269adf", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection | Trusted Shipping and Warehousing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.873Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -11617,12 +11617,12 @@ } ], "id": "course-of-action--2ed00260-11b9-4af6-851e-af77ddf78783", - "modified": "2021-01-06T18:30:53.873Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection | Diversity of Suppliers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.873Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11631,12 +11631,12 @@ } ], "id": "course-of-action--fb1d45d3-8cc1-4b62-b6e9-1c0f74aefc5c", - "modified": "2021-01-06T18:30:53.873Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Limitation of Harm", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.873Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11645,12 +11645,12 @@ } ], "id": "course-of-action--7e598dc0-e2fe-4e2d-8261-fff17d73686a", - "modified": "2021-01-06T18:30:53.873Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Minimizing Procurement Time", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.873Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11659,12 +11659,12 @@ } ], "id": "course-of-action--0b3224fa-c6f8-4ad3-ac9b-6bec796d59aa", - "modified": "2021-01-06T18:30:53.873Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Assessments Prior to Selection / Acceptance / Update", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.873Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11673,12 +11673,12 @@ } ], "id": "course-of-action--3fd3d6c8-fc58-4571-84a9-1bff67b58f17", - "modified": "2021-01-06T18:30:53.873Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Use of All-source Intelligence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.874Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11687,12 +11687,12 @@ } ], "id": "course-of-action--f1c614bd-5ddb-4987-b39b-4029406a9f8c", - "modified": "2021-01-06T18:30:53.874Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Operations Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.874Z", + "created": "2021-01-13T01:52:41.655Z", "description": "", "external_references": [ { @@ -11701,12 +11701,12 @@ } ], "id": "course-of-action--c00dd502-e086-4145-9580-69bc7b6ca7bb", - "modified": "2021-01-06T18:30:53.874Z", + "modified": "2021-01-13T01:52:41.655Z", "name": "Supply Chain Protection | Validate as Genuine and Not Altered", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.874Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11715,12 +11715,12 @@ } ], "id": "course-of-action--f250a862-2989-40a7-90a8-d903f57f95ac", - "modified": "2021-01-06T18:30:53.874Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Supply Chain Protection | Penetration Testing / Analysis of Elements, Processes, and Actors", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.874Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11729,12 +11729,12 @@ } ], "id": "course-of-action--53f78654-d58f-4412-93e4-7db5f8251bab", - "modified": "2021-01-06T18:30:53.874Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Supply Chain Protection | Inter-organizational Agreements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.874Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11743,12 +11743,12 @@ } ], "id": "course-of-action--634bf4da-c6f4-4f0e-938a-6298ed55386c", - "modified": "2021-01-06T18:30:53.874Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Supply Chain Protection | Critical Information System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11757,12 +11757,12 @@ } ], "id": "course-of-action--7a1c8dfa-0ffc-429b-8afd-f5bf73e12865", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Supply Chain Protection | Identity and Traceability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11771,12 +11771,12 @@ } ], "id": "course-of-action--9dc8b304-ea29-4c7c-b8f5-1a4ae9f2d7e3", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Supply Chain Protection | Processes to Address Weaknesses or Deficiencies", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11785,12 +11785,12 @@ } ], "id": "course-of-action--168f13a3-f5a7-43d7-b4c4-c9e6af5c711e", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Trustworthiness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -11799,12 +11799,12 @@ } ], "id": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Criticality Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.657Z", "description": "", "external_references": [ { @@ -11813,12 +11813,12 @@ } ], "id": "course-of-action--beb855bc-07bd-4501-8c78-0267c0d426f6", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Criticality Analysis | Critical Components with No Viable Alternative Sourcing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.657Z", "description": "a. Require the developer of the system, system component, or system service to follow a documented development process that:\n1. Explicitly addresses security and privacy requirements;\n2. Identifies the standards and tools used in the development process;\n3. Documents the specific tool options and tool configurations used in the development process; and\n4. Documents, manages, and ensures the integrity of changes to the process and/or tools used in development; and\nb. Review the development process, standards, tools, tool options, and tool configurations [Assignment: organization-defined frequency] to determine if the process, standards, tools, tool options and tool configurations selected and employed can satisfy the following security and privacy requirements: [Assignment: organization-defined security and privacy requirements].\n\nDevelopment tools include programming languages and computer-aided design systems. Reviews of development processes include the use of maturity models to determine the potential effectiveness of such processes. Maintaining the integrity of changes to tools and processes facilitates effective supply chain risk assessment and mitigation. Such integrity requires configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.", "external_references": [ { @@ -11827,12 +11827,12 @@ } ], "id": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.657Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Define quality metrics at the beginning of the development process; and\n(b) Provide evidence of meeting the quality metrics [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; \n [Assignment: organization-defined program review milestones]\n ; upon delivery].\n\nOrganizations use quality metrics to establish acceptable levels of system quality. Metrics can include quality gates, which are collections of completion criteria or sufficiency standards that represent the satisfactory execution of specific phases of the system development project. For example, a quality gate may require the elimination of all compiler warnings or a determination that such warnings have no impact on the effectiveness of required security or privacy capabilities. During the execution phases of development projects, quality gates provide clear, unambiguous indications of progress. Other metrics apply to the entire development project. Metrics can include defining the severity thresholds of vulnerabilities in accordance with organizational risk tolerance, such as requiring no known vulnerabilities in the delivered system with a Common Vulnerability Scoring System (CVSS) severity of medium or high.", "external_references": [ { @@ -11841,12 +11841,12 @@ } ], "id": "course-of-action--59ba5b26-b143-4fcc-8b5d-1def65cb559c", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools | Quality Metrics", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.657Z", "description": "Require the developer of the system, system component, or system service to select and employ security and privacy tracking tools for use during the development process.\n\nSystem development teams select and deploy security and privacy tracking tools, including vulnerability or work item tracking systems that facilitate assignment, sorting, filtering, and tracking of completed work items or tasks associated with development processes.", "external_references": [ { @@ -11855,12 +11855,12 @@ } ], "id": "course-of-action--b51a93df-b9ea-4b8a-8643-62b933293352", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools | Security and Privacy Tracking Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.657Z", "description": "Require the developer of the system, system component, or system service to perform a criticality analysis:\n(a) At the following decision points in the system development life cycle: [Assignment: organization-defined decision points in the system development life cycle]; and\n(b) At the following level of rigor: [Assignment: organization-defined breadth and depth of criticality analysis].\n\nCriticality analysis performed by the developer provides input to the criticality analysis performed by organizations. Developer input is essential to organizational criticality analysis because organizations may not have access to detailed design documentation for system components that are developed as commercial off-the-shelf products. Such design documentation includes functional specifications, high-level designs, low-level designs, source code, and hardware schematics. Criticality analysis is important for organizational systems that are designated as high value assets. High value assets can be moderate- or high-impact systems due to heightened adversarial interest or potential adverse effects on the federal enterprise. Developer input is especially important when organizations conduct supply chain criticality analyses.", "external_references": [ { @@ -11869,12 +11869,12 @@ } ], "id": "course-of-action--1111c707-2fe8-4449-9ac5-09fa5feab67e", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools | Criticality Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.657Z", "description": "", "external_references": [ { @@ -11883,12 +11883,12 @@ } ], "id": "course-of-action--cd113f76-bbb2-47b3-af03-4ad8b7e69a51", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools | Threat Modeling and Vulnerability Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system, system component, or system service to reduce attack surfaces to [Assignment: organization-defined thresholds].\n\nAttack surface reduction is closely aligned with threat and vulnerability analyses and system architecture and design. Attack surface reduction is a means of reducing risk to organizations by giving attackers less opportunity to exploit weaknesses or deficiencies (i.e., potential vulnerabilities) within systems, system components, and system services. Attack surface reduction includes implementing the concept of layered defenses, applying the principles of least privilege and least functionality, applying secure software development practices, deprecating unsafe functions, reducing entry points available to unauthorized users, reducing the amount of code that executes, and eliminating application programming interfaces (APIs) that are vulnerable to attacks.", "external_references": [ { @@ -11897,12 +11897,12 @@ } ], "id": "course-of-action--8b57c13d-491b-4dba-94ea-795b074de017", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Attack Surface Reduction", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.876Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system, system component, or system service to implement an explicit process to continuously improve the development process.\n\nDevelopers of systems, system components, and system services consider the effectiveness and efficiency of their development processes for meeting quality objectives and addressing the security and privacy capabilities in current threat environments.", "external_references": [ { @@ -11911,12 +11911,12 @@ } ], "id": "course-of-action--8643e718-d8b4-4f60-8d4d-ac14032ae883", - "modified": "2021-01-06T18:30:53.876Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Continuous Improvement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system, system component, or system service [Assignment: organization-defined frequency] to:\n(a) Perform an automated vulnerability analysis using [Assignment: organization-defined tools];\n(b) Determine the exploitation potential for discovered vulnerabilities;\n(c) Determine potential risk mitigations for delivered vulnerabilities; and\n(d) Deliver the outputs of the tools and results of the analysis to [Assignment: organization-defined personnel or roles].\n\nAutomated tools can be more effective at analyzing exploitable weaknesses or deficiencies in large and complex systems, prioritizing vulnerabilities by severity, and providing recommendations for risk mitigations.", "external_references": [ { @@ -11925,12 +11925,12 @@ } ], "id": "course-of-action--ee950a17-76af-45f8-9cbc-52b2b639aa99", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Automated Vulnerability Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system, system component, or system service to use threat modeling and vulnerability analyses from similar systems, components, or services to inform the current development process.\n\nAnalysis of vulnerabilities found in similar software applications can inform potential design and implementation issues for systems under development. Similar systems or system components may exist within developer organizations. Vulnerability information is available from a variety of public and private sector sources, including the NIST National Vulnerability Database.", "external_references": [ { @@ -11939,12 +11939,12 @@ } ], "id": "course-of-action--83c51a64-0fa7-4f6a-b98b-1d46434de27f", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Reuse of Threat and Vulnerability Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.658Z", "description": "", "external_references": [ { @@ -11953,12 +11953,12 @@ } ], "id": "course-of-action--17a5757f-734d-411d-a565-f60ea1534784", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Use of Live Data", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system, system component, or system service to provide, implement, and test an incident response plan.\n\nThe incident response plan provided by developers may provide information not readily available to organizations and be incorporated into organizational incident response plans. Developer information may also be extremely helpful, such as when organizations respond to vulnerabilities in commercial off-the-shelf products.", "external_references": [ { @@ -11967,12 +11967,12 @@ } ], "id": "course-of-action--35375e4c-75e4-486d-b327-6e8492a758f2", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Incident Response Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.658Z", "description": "Require the developer of the system or system component to archive the system or component to be released or delivered together with the corresponding evidence supporting the final security and privacy review.\n\nArchiving system or system components requires the developer to retain key development artifacts, including hardware specifications, source code, object code, and relevant documentation from the development process that can provide a readily available configuration baseline for system and component upgrades or modifications.", "external_references": [ { @@ -11981,12 +11981,12 @@ } ], "id": "course-of-action--a1705ea1-a46c-4b52-a2ae-fededd0122ac", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.658Z", "name": "Development Process, Standards, and Tools | Archive System or Component", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system or system component to minimize the use of personally identifiable information in development and test environments.\n\nOrganizations can minimize the risk to an individual's privacy by using techniques such as de-identification or synthetic data. Limiting the use of personally identifiable information in development and test environments helps reduce the level of privacy risk created by a system.", "external_references": [ { @@ -11995,12 +11995,12 @@ } ], "id": "course-of-action--449ecc0e-1e0e-456f-aff0-f330a0d6a7ff", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Development Process, Standards, and Tools | Minimize Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system, system component, or system service to provide the following training on the correct use and operation of the implemented security and privacy functions, controls, and/or mechanisms: [Assignment: organization-defined training].\n\nDeveloper-provided training applies to external and internal (in-house) developers. Training personnel is essential to ensuring the effectiveness of the controls implemented within organizational systems. Types of training include web-based and computer-based training, classroom-style training, and hands-on training (including micro-training). Organizations can also request training materials from developers to conduct in-house training or offer self-training to organizational personnel. Organizations determine the type of training necessary and may require different types of training for different security and privacy functions, controls, and mechanisms.", "external_references": [ { @@ -12009,12 +12009,12 @@ } ], "id": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Developer-provided Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system, system component, or system service to produce a design specification and security and privacy architecture that:\na. Is consistent with the organization's security and privacy architecture that is an integral part the organization's enterprise architecture;\nb. Accurately and completely describes the required security and privacy functionality, and the allocation of controls among physical and logical components; and\nc. Expresses how individual security and privacy functions, mechanisms, and services work together to provide required security and privacy capabilities and a unified approach to protection.\n\nDeveloper security and privacy architecture and design are directed at external developers, although they could also be applied to internal (in-house) development. In contrast, PL-8 is directed at internal developers to ensure that organizations develop a security and privacy architecture that is integrated with the enterprise architecture. The distinction between SA-17 and PL-8 is especially important when organizations outsource the development of systems, system components, or system services and when there is a requirement to demonstrate consistency with the enterprise architecture and security and privacy architecture of the organization. [ISO 15408-2], [ISO 15408-3], and [SP 800-160-1] provide information on security architecture and design, including formal policy models, security-relevant components, formal and informal correspondence, conceptually simple design, and structuring for least privilege and testing.", "external_references": [ { @@ -12023,12 +12023,12 @@ } ], "id": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Developer Security and Privacy Architecture and Design", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Produce, as an integral part of the development process, a formal policy model describing the [Assignment: organization-defined elements of organizational security and privacy policy] to be enforced; and\n(b) Prove that the formal policy model is internally consistent and sufficient to enforce the defined elements of the organizational security and privacy policy when implemented.\n\nFormal models describe specific behaviors or security and privacy policies using formal languages, thus enabling the correctness of those behaviors and policies to be formally proven. Not all components of systems can be modeled. Generally, formal specifications are scoped to the behaviors or policies of interest, such as nondiscretionary access control policies. Organizations choose the formal modeling language and approach based on the nature of the behaviors and policies to be described and the available tools.", "external_references": [ { @@ -12037,12 +12037,12 @@ } ], "id": "course-of-action--eaaaa477-df5f-4064-8171-efe8d69e4b71", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Developer Security and Privacy Architecture and Design | Formal Policy Model", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.660Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Define security-relevant hardware, software, and firmware; and\n(b) Provide a rationale that the definition for security-relevant hardware, software, and firmware is complete.\n\nThe security-relevant hardware, software, and firmware represent the portion of the system, component, or service that is trusted to perform correctly to maintain required security properties.", "external_references": [ { @@ -12051,12 +12051,12 @@ } ], "id": "course-of-action--e7977e95-29bd-4e39-88b9-d9bca377c6ae", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.660Z", "name": "Developer Security and Privacy Architecture and Design | Security-relevant Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.660Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Produce, as an integral part of the development process, a formal top-level specification that specifies the interfaces to security-relevant hardware, software, and firmware in terms of exceptions, error messages, and effects;\n(b) Show via proof to the extent feasible with additional informal demonstration as necessary, that the formal top-level specification is consistent with the formal policy model;\n(c) Show via informal demonstration, that the formal top-level specification completely covers the interfaces to security-relevant hardware, software, and firmware;\n(d) Show that the formal top-level specification is an accurate description of the implemented security-relevant hardware, software, and firmware; and\n(e) Describe the security-relevant hardware, software, and firmware mechanisms not addressed in the formal top-level specification but strictly internal to the security-relevant hardware, software, and firmware.\n\nCorrespondence is an important part of the assurance gained through modeling. It demonstrates that the implementation is an accurate transformation of the model, and that any additional code or implementation details that are present have no impact on the behaviors or policies being modeled. Formal methods can be used to show that the high-level security properties are satisfied by the formal system description, and that the formal system description is correctly implemented by a description of some lower level, including a hardware description. Consistency between the formal top-level specification and the formal policy models is generally not amenable to being fully proven. Therefore, a combination of formal and informal methods may be needed to demonstrate such consistency. Consistency between the formal top-level specification and the actual implementation may require the use of an informal demonstration due to limitations on the applicability of formal methods to prove that the specification accurately reflects the implementation. Hardware, software, and firmware mechanisms internal to security-relevant components include mapping registers and direct memory input and output.", "external_references": [ { @@ -12065,12 +12065,12 @@ } ], "id": "course-of-action--a3db8e9f-883f-48f2-92a0-afcba363da6c", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.660Z", "name": "Developer Security and Privacy Architecture and Design | Formal Correspondence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.660Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Produce, as an integral part of the development process, an informal descriptive top-level specification that specifies the interfaces to security-relevant hardware, software, and firmware in terms of exceptions, error messages, and effects;\n(b) Show via [Selection: informal demonstration; convincing argument with formal methods as feasible] that the descriptive top-level specification is consistent with the formal policy model;\n(c) Show via informal demonstration, that the descriptive top-level specification completely covers the interfaces to security-relevant hardware, software, and firmware;\n(d) Show that the descriptive top-level specification is an accurate description of the interfaces to security-relevant hardware, software, and firmware; and\n(e) Describe the security-relevant hardware, software, and firmware mechanisms not addressed in the descriptive top-level specification but strictly internal to the security-relevant hardware, software, and firmware.\n\nCorrespondence is an important part of the assurance gained through modeling. It demonstrates that the implementation is an accurate transformation of the model, and that additional code or implementation detail has no impact on the behaviors or policies being modeled. Consistency between the descriptive top-level specification (i.e., high-level/low-level design) and the formal policy model is generally not amenable to being fully proven. Therefore, a combination of formal and informal methods may be needed to show such consistency. Hardware, software, and firmware mechanisms strictly internal to security-relevant hardware, software, and firmware include mapping registers and direct memory input and output.", "external_references": [ { @@ -12079,12 +12079,12 @@ } ], "id": "course-of-action--13fe784a-ad2f-45e7-82f4-6149e40eb296", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.660Z", "name": "Developer Security and Privacy Architecture and Design | Informal Correspondence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.661Z", "description": "Require the developer of the system, system component, or system service to:\n(a) Design and structure the security-relevant hardware, software, and firmware to use a complete, conceptually simple protection mechanism with precisely defined semantics; and\n(b) Internally structure the security-relevant hardware, software, and firmware with specific regard for this mechanism.\n\nThe principle of reduced complexity states that the system design is as simple and small as possible (see SA-8(7)). A small and simple design is easier to understand and analyze and is also less prone to error (see AC-25, SA-8(13)). The principle of reduced complexity applies to any aspect of a system, but it has particular importance for security due to the various analyses performed to obtain evidence about the emergent security property of the system. For such analyses to be successful, a small and simple design is essential. Application of the principle of reduced complexity contributes to the ability of system developers to understand the correctness and completeness of system security functions and facilitates the identification of potential vulnerabilities. The corollary of reduced complexity states that the simplicity of the system is directly related to the number of vulnerabilities it will contain. That is, simpler systems contain fewer vulnerabilities. An important benefit of reduced complexity is that it is easier to understand whether the security policy has been captured in the system design and that fewer vulnerabilities are likely to be introduced during engineering development. An additional benefit is that any such conclusion about correctness, completeness, and existence of vulnerabilities can be reached with a higher degree of assurance in contrast to conclusions reached in situations where the system design is inherently more complex.", "external_references": [ { @@ -12093,12 +12093,12 @@ } ], "id": "course-of-action--db47cd5e-670e-4ab0-b9d3-84c9f76a7f97", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.661Z", "name": "Developer Security and Privacy Architecture and Design | Conceptually Simple Design", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.661Z", "description": "Require the developer of the system, system component, or system service to structure security-relevant hardware, software, and firmware to facilitate testing.\n\nApplying the security design principles in [SP 800-160-1] promotes complete, consistent, and comprehensive testing and evaluation of systems, system components, and services. The thoroughness of such testing contributes to the evidence produced to generate an effective assurance case or argument as to the trustworthiness of the system, system component, or service.", "external_references": [ { @@ -12107,12 +12107,12 @@ } ], "id": "course-of-action--9993f2b8-a1dd-4bf8-ba84-515880ba0836", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.661Z", "name": "Developer Security and Privacy Architecture and Design | Structure for Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.661Z", "description": "Require the developer of the system, system component, or system service to structure security-relevant hardware, software, and firmware to facilitate controlling access with least privilege.\n\nThe principle of least privilege states that each component is allocated sufficient privileges to accomplish its specified functions but no more (see SA-8(14)). Applying the principle of least privilege limits the scope of the component's actions, which has two desirable effects. First, the security impact of a failure, corruption, or misuse of the system component results in a minimized security impact. Second, the security analysis of the component is simplified. Least privilege is a pervasive principle that is reflected in all aspects of the secure system design. Interfaces used to invoke component capability are available to only certain subsets of the user population, and component design supports a sufficiently fine granularity of privilege decomposition. For example, in the case of an audit mechanism, there may be an interface for the audit manager, who configures the audit settings; an interface for the audit operator, who ensures that audit data is safely collected and stored; and, finally, yet another interface for the audit reviewer, who only has a need to view the audit data that has been collected but no need to perform operations on that data.\nIn addition to its manifestations at the system interface, least privilege can be used as a guiding principle for the internal structure of the system itself. One aspect of internal least privilege is to construct modules so that only the elements encapsulated by the module are directly operated upon by the functions within the module. Elements external to a module that may be affected by the module's operation are indirectly accessed through interaction (e.g., via a function call) with the module that contains those elements. Another aspect of internal least privilege is that the scope of a given module or component includes only those system elements that are necessary for its functionality, and the access modes to the elements (e.g., read, write) are minimal.", "external_references": [ { @@ -12121,12 +12121,12 @@ } ], "id": "course-of-action--7b3f688f-9703-4153-be6b-5d7b8eb2fb94", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.661Z", "name": "Developer Security and Privacy Architecture and Design | Structure for Least Privilege", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.661Z", "description": "Design [Assignment: organization-defined critical systems or system components] with coordinated behavior to implement the following capabilities: [Assignment: organization-defined capabilities, by system or component].\n\nSecurity resources that are distributed, located at different layers or in different system elements, or are implemented to support different aspects of trustworthiness can interact in unforeseen or incorrect ways. Adverse consequences can include cascading failures, interference, or coverage gaps. Coordination of the behavior of security resources (e.g., by ensuring that one patch is installed across all resources before making a configuration change that assumes that the patch is propagated) can avert such negative interactions.", "external_references": [ { @@ -12135,12 +12135,12 @@ } ], "id": "course-of-action--744b33cf-8baf-422b-9f54-042393f0f191", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.661Z", "name": "Developer Security and Privacy Architecture and Design | Orchestration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.662Z", "description": "Use different designs for [Assignment: organization-defined critical systems or system components] to satisfy a common set of requirements or to provide equivalent functionality.\n\nDesign diversity is achieved by supplying the same requirements specification to multiple developers, each of whom is responsible for developing a variant of the system or system component that meets the requirements. Variants can be in software design, in hardware design, or in both hardware and a software design. Differences in the designs of the variants can result from developer experience (e.g., prior use of a design pattern), design style (e.g., when decomposing a required function into smaller tasks, determining what constitutes a separate task and how far to decompose tasks into sub-tasks), selection of libraries to incorporate into the variant, and the development environment (e.g., different design tools make some design patterns easier to visualize). Hardware design diversity includes making different decisions about what information to keep in analog form and what information to convert to digital form, transmitting the same information at different times, and introducing delays in sampling (temporal diversity). Design diversity is commonly used to support fault tolerance.", "external_references": [ { @@ -12149,12 +12149,12 @@ } ], "id": "course-of-action--6d47e366-2bdf-40d2-9c84-7c71fe25a09c", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Developer Security and Privacy Architecture and Design | Design Diversity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.879Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -12163,12 +12163,12 @@ } ], "id": "course-of-action--e03dc007-bc64-4e85-bbe1-e07028a85f8a", - "modified": "2021-01-06T18:30:53.879Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Tamper Resistance and Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -12177,12 +12177,12 @@ } ], "id": "course-of-action--a7b43bbf-7d5a-49d4-932d-704645eb0db0", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Tamper Resistance and Detection | Multiple Phases of System Development Life Cycle", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -12191,12 +12191,12 @@ } ], "id": "course-of-action--4962b747-cc16-4e1f-bf4a-ba43d50b617c", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Tamper Resistance and Detection | Inspection of Systems or Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -12205,12 +12205,12 @@ } ], "id": "course-of-action--f62a7d56-7929-4570-bd16-18d2d3ca83eb", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Component Authenticity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -12219,12 +12219,12 @@ } ], "id": "course-of-action--4fe4d9f1-7c8f-4aa3-b4eb-f8d351a7296c", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Component Authenticity | Anti-counterfeit Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.663Z", "description": "", "external_references": [ { @@ -12233,12 +12233,12 @@ } ], "id": "course-of-action--d3dc3c4f-00ca-4305-a334-beee8fba2000", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Component Authenticity | Configuration Control for Component Service and Repair", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.663Z", "description": "", "external_references": [ { @@ -12247,12 +12247,12 @@ } ], "id": "course-of-action--af319f56-756e-42cb-9c38-ae9d5712e974", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Component Authenticity | Component Disposal", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.663Z", "description": "", "external_references": [ { @@ -12261,12 +12261,12 @@ } ], "id": "course-of-action--a352fc90-c934-4717-b46e-840a552470c9", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Component Authenticity | Anti-counterfeit Scanning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.663Z", "description": "Reimplement or custom develop the following critical system components: [Assignment: organization-defined critical system components].\n\nOrganizations determine that certain system components likely cannot be trusted due to specific threats to and vulnerabilities in those components for which there are no viable security controls to adequately mitigate risk. Reimplementation or custom development of such components may satisfy requirements for higher assurance and is carried out by initiating changes to system components (including hardware, software, and firmware) such that the standard attacks by adversaries are less likely to succeed. In situations where no alternative sourcing is available and organizations choose not to reimplement or custom develop critical system components, additional controls can be employed. Controls include enhanced auditing, restrictions on source code and system utility access, and protection from deletion of system and application files.", "external_references": [ { @@ -12275,12 +12275,12 @@ } ], "id": "course-of-action--90851f26-0b76-414e-93a3-3ce4ee545076", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Customized Development of Critical Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.663Z", "description": "Require that the developer of [Assignment: organization-defined system, system component, or system service]:\na. Has appropriate access authorizations as determined by assigned [Assignment: organization-defined official government duties]; and\nb. Satisfies the following additional personnel screening criteria: [Assignment: organization-defined additional personnel screening criteria].\n\nDeveloper screening is directed at external developers. Internal developer screening is addressed by PS-3. Because the system, system component, or system service may be used in critical activities essential to the national or economic security interests of the United States, organizations have a strong interest in ensuring that developers are trustworthy. The degree of trust required of developers may need to be consistent with that of the individuals who access the systems, system components, or system services once deployed. Authorization and personnel screening criteria include clearances, background checks, citizenship, and nationality. Developer trustworthiness may also include a review and analysis of company ownership and relationships that the company has with entities that may potentially affect the quality and reliability of the systems, components, or services being developed. Satisfying the required access authorizations and personnel screening criteria includes providing a list of all individuals who are authorized to perform development activities on the selected system, system component, or system service so that organizations can validate that the developer has satisfied the authorization and screening requirements.", "external_references": [ { @@ -12289,12 +12289,12 @@ } ], "id": "course-of-action--94758846-33af-4d17-b8f0-949e219673b9", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Developer Screening", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.663Z", "description": "", "external_references": [ { @@ -12303,12 +12303,12 @@ } ], "id": "course-of-action--26f23b54-33d5-4163-847a-3d5ca9477199", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.663Z", "name": "Developer Screening | Validation of Screening", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.664Z", "description": "a. Replace system components when support for the components is no longer available from the developer, vendor, or manufacturer; or\nb. Provide the following options for alternative sources for continued support for unsupported components [Selection (one or more): in-house support; \n [Assignment: organization-defined support from external providers]\n ].\n\nSupport for system components includes software patches, firmware updates, replacement parts, and maintenance contracts. An example of unsupported components includes when vendors no longer provide critical software patches or product updates, which can result in an opportunity for adversaries to exploit weaknesses in the installed components. Exceptions to replacing unsupported system components include systems that provide critical mission or business capabilities where newer technologies are not available or where the systems are so isolated that installing replacement components is not an option.\nAlternative sources for support address the need to provide continued support for system components that are no longer supported by the original manufacturers, developers, or vendors when such components remain essential to organizational mission and business functions. If necessary, organizations can establish in-house support by developing customized patches for critical software components or, alternatively, obtain the services of external providers who provide ongoing support for the designated unsupported components through contractual relationships. Such contractual relationships can include open-source software value-added vendors. The increased risk of using unsupported system components can be mitigated, for example, by prohibiting the connection of such components to public or uncontrolled networks, or implementing other forms of isolation.", "external_references": [ { @@ -12317,12 +12317,12 @@ } ], "id": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Unsupported System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "", "external_references": [ { @@ -12331,12 +12331,12 @@ } ], "id": "course-of-action--34d551c4-2f58-4fbe-95d9-1d3705ce872d", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Unsupported System Components | Alternative Sources for Continued Support", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "Employ [Selection (one or more): design modification; augmentation; reconfiguration] on [Assignment: organization-defined systems or system components] supporting mission essential services or functions to increase the trustworthiness in those systems or components.\n\nIt is often necessary for a system or system component that supports mission-essential services or functions to be enhanced to maximize the trustworthiness of the resource. Sometimes this enhancement is done at the design level. In other instances, it is done post-design, either through modifications of the system in question or by augmenting the system with additional components. For example, supplemental authentication or non-repudiation functions may be added to the system to enhance the identity of critical resources to other resources that depend on the organization-defined resources.", "external_references": [ { @@ -12345,12 +12345,12 @@ } ], "id": "course-of-action--3b91b5fc-0b5d-4206-af78-1d7bb375fec6", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Specialization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] system and communications protection policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the system and communications protection policy and the associated system and communications protection controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and communications protection policy and procedures; and\nc. Review and update the current system and communications protection:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nSystem and communications protection policy and procedures address the controls in the SC family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and communications protection policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and communications protection policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -12359,12 +12359,12 @@ } ], "id": "course-of-action--6bae242e-5f8b-4cf4-b446-20f8578d8c46", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "Separate user functionality, including user interface services, from system management functionality.\n\nSystem management functionality includes functions that are necessary to administer databases, network components, workstations, or servers. These functions typically require privileged user access. The separation of user functions from system management functions is physical or logical. Organizations may separate system management functions from user functions by using different computers, instances of operating systems, central processing units, or network addresses; by employing virtualization techniques; or some combination of these or other methods. Separation of system management functions from user functions includes web administrative interfaces that employ separate authentication methods for users of any other system resources. Separation of system and user functions may include isolating administrative interfaces on different domains and with additional access controls. The separation of system and user functionality can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).", "external_references": [ { @@ -12373,12 +12373,12 @@ } ], "id": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Separation of System and User Functionality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "Prevent the presentation of system management functionality at interfaces to non-privileged users.\n\nPreventing the presentation of system management functionality at interfaces to non-privileged users ensures that system administration options, including administrator privileges, are not available to the general user population. Restricting user access also prohibits the use of the grey-out option commonly used to eliminate accessibility to such information. One potential solution is to withhold system administration options until users establish sessions with administrator privileges.", "external_references": [ { @@ -12387,12 +12387,12 @@ } ], "id": "course-of-action--bd141ec6-9db8-4f35-9c92-b69319d3908d", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Separation of System and User Functionality | Interfaces for Non-privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "Store state information from applications and software separately.\n\nIf a system is compromised, storing applications and software separately from state information about users' interactions with an application may better protect individuals' privacy.", "external_references": [ { @@ -12401,12 +12401,12 @@ } ], "id": "course-of-action--fa716e36-fa0d-4d04-af25-8dbeb0dc0e0f", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Separation of System and User Functionality | Disassociability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Isolate security functions from nonsecurity functions.\n\nSecurity functions are isolated from nonsecurity functions by means of an isolation boundary implemented within a system via partitions and domains. The isolation boundary controls access to and protects the integrity of the hardware, software, and firmware that perform system security functions. Systems implement code separation in many ways, such as through the provision of security kernels via processor rings or processor modes. For non-kernel code, security function isolation is often achieved through file system protections that protect the code on disk and address space protections that protect executing code. Systems can restrict access to security functions using access control mechanisms and by implementing least privilege capabilities. While the ideal is for all code within the defined security function isolation boundary to only contain security-relevant code, it is sometimes necessary to include nonsecurity functions as an exception. The isolation of security functions from nonsecurity functions can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).", "external_references": [ { @@ -12415,12 +12415,12 @@ } ], "id": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Employ hardware separation mechanisms to implement security function isolation.\n\nHardware separation mechanisms include hardware ring architectures that are implemented within microprocessors and hardware-enforced address segmentation used to support logically distinct storage objects with separate attributes (i.e., readable, writeable).", "external_references": [ { @@ -12429,12 +12429,12 @@ } ], "id": "course-of-action--f22d810f-c1a4-4599-98e0-32fb05f88202", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation | Hardware Separation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Isolate security functions enforcing access and information flow control from nonsecurity functions and from other security functions.\n\nSecurity function isolation occurs because of implementation. The functions can still be scanned and monitored. Security functions that are potentially isolated from access and flow control enforcement functions include auditing, intrusion detection, and malicious code protection functions.", "external_references": [ { @@ -12443,12 +12443,12 @@ } ], "id": "course-of-action--7a71a038-07fe-401f-8107-7abfd12ed603", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation | Access and Flow Control Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Minimize the number of nonsecurity functions included within the isolation boundary containing security functions.\n\nWhere it is not feasible to achieve strict isolation of nonsecurity functions from security functions, it is necessary to take actions to minimize nonsecurity-relevant functions within the security function boundary. Nonsecurity functions contained within the isolation boundary are considered security-relevant because errors or malicious code in the software can directly impact the security functions of systems. The fundamental design objective is that the specific portions of systems that provide information security are of minimal size and complexity. Minimizing the number of nonsecurity functions in the security-relevant system components allows designers and implementers to focus only on those functions which are necessary to provide the desired security capability (typically access enforcement). By minimizing the nonsecurity functions within the isolation boundaries, the amount of code that is trusted to enforce security policies is significantly reduced, thus contributing to understandability.", "external_references": [ { @@ -12457,12 +12457,12 @@ } ], "id": "course-of-action--8d3f254c-582c-4b00-b146-7650d96ebd8a", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation | Minimize Nonsecurity Functionality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Implement security functions as largely independent modules that maximize internal cohesiveness within modules and minimize coupling between modules.\n\nThe reduction of inter-module interactions helps to constrain security functions and manage complexity. The concepts of coupling and cohesion are important with respect to modularity in software design. Coupling refers to the dependencies that one module has on other modules. Cohesion refers to the relationship between functions within a module. Best practices in software engineering and systems security engineering rely on layering, minimization, and modular decomposition to reduce and manage complexity. This produces software modules that are highly cohesive and loosely coupled.", "external_references": [ { @@ -12471,12 +12471,12 @@ } ], "id": "course-of-action--6ae2fd63-f8b0-4823-ae4d-b3bf4e4536f3", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation | Module Coupling and Cohesiveness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.884Z", + "created": "2021-01-13T01:52:41.666Z", "description": "Implement security functions as a layered structure minimizing interactions between layers of the design and avoiding any dependence by lower layers on the functionality or correctness of higher layers.\n\nThe implementation of layered structures with minimized interactions among security functions and non-looping layers (i.e., lower-layer functions do not depend on higher-layer functions) enables the isolation of security functions and the management of complexity.", "external_references": [ { @@ -12485,12 +12485,12 @@ } ], "id": "course-of-action--c6a77756-c6f7-43ff-bc3d-e9f62322a836", - "modified": "2021-01-06T18:30:53.884Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Security Function Isolation | Layered Structures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.884Z", + "created": "2021-01-13T01:52:41.666Z", "description": "Prevent unauthorized and unintended information transfer via shared system resources.\n\nPreventing unauthorized and unintended information transfer via shared system resources stops information produced by the actions of prior users or roles (or the actions of processes acting on behalf of prior users or roles) from being available to current users or roles (or current processes acting on behalf of current users or roles) that obtain access to shared system resources after those resources have been released back to the system. Information in shared system resources also applies to encrypted representations of information. In other contexts, control of information in shared system resources is referred to as object reuse and residual information protection. Information in shared system resources does not address information remanence, which refers to the residual representation of data that has been nominally deleted; covert channels (including storage and timing channels), where shared system resources are manipulated to violate information flow restrictions; or components within systems for which there are only single users or roles.", "external_references": [ { @@ -12499,12 +12499,12 @@ } ], "id": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "modified": "2021-01-06T18:30:53.884Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Information in Shared System Resources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.666Z", "description": "", "external_references": [ { @@ -12513,12 +12513,12 @@ } ], "id": "course-of-action--ecd38bf4-241e-45c5-855d-1ed432d70084", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Information in Shared System Resources | Security Levels", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.666Z", "description": "Prevent unauthorized information transfer via shared resources in accordance with [Assignment: organization-defined procedures] when system processing explicitly switches between different information classification levels or security categories.\n\nChanges in processing levels can occur during multilevel or periods processing with information at different classification levels or security categories. It can also occur during serial reuse of hardware components at different classification levels. Organization-defined procedures can include approved sanitization processes for electronically stored information.", "external_references": [ { @@ -12527,12 +12527,12 @@ } ], "id": "course-of-action--8e8913c0-fec0-4603-8e88-80096f63901f", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Information in Shared System Resources | Multilevel or Periods Processing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.666Z", "description": "a. [Selection: Protect against; Limit] the effects of the following types of denial-of-service events: [Assignment: organization-defined types of denial-of-service events]; and\nb. Employ the following controls to achieve the denial-of-service objective: [Assignment: organization-defined controls by type of denial-of-service event].\n\nDenial-of-service events may occur due to a variety of internal and external causes, such as an attack by an adversary or a lack of planning to support organizational needs with respect to capacity and bandwidth. Such attacks can occur across a wide range of network protocols (e.g., IPv4, IPv6). A variety of technologies are available to limit or eliminate the origination and effects of denial-of-service events. For example, boundary protection devices can filter certain types of packets to protect system components on internal networks from being directly affected by or the source of denial-of-service attacks. Employing increased network capacity and bandwidth combined with service redundancy also reduces the susceptibility to denial-of-service events.", "external_references": [ { @@ -12541,12 +12541,12 @@ } ], "id": "course-of-action--d8158d1c-4cf1-45eb-a40a-58f0a5f5d2b0", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Denial-of-service Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.666Z", "description": "Restrict the ability of individuals to launch the following denial-of-service attacks against other systems: [Assignment: organization-defined denial-of-service attacks].\n\nRestricting the ability of individuals to launch denial-of-service attacks requires the mechanisms commonly used for such attacks to be unavailable. Individuals of concern include hostile insiders or external adversaries who have breached or compromised the system and are using it to launch a denial-of-service attack. Organizations can restrict the ability of individuals to connect and transmit arbitrary information on the transport medium (i.e., wired networks, wireless networks, spoofed Internet protocol packets). Organizations can also limit the ability of individuals to use excessive system resources. Protection against individuals having the ability to launch denial-of-service attacks may be implemented on specific systems or boundary devices that prohibit egress to potential target systems.", "external_references": [ { @@ -12555,12 +12555,12 @@ } ], "id": "course-of-action--689fa2c9-e516-4816-9cf4-0681e128b1fe", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Denial-of-service Protection | Restrict Ability to Attack Other Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.667Z", "description": "Manage capacity, bandwidth, or other redundancy to limit the effects of information flooding denial-of-service attacks.\n\nManaging capacity ensures that sufficient capacity is available to counter flooding attacks. Managing capacity includes establishing selected usage priorities, quotas, partitioning, or load balancing.", "external_references": [ { @@ -12569,12 +12569,12 @@ } ], "id": "course-of-action--81814127-413a-4ac0-a766-8025165d2d00", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Denial-of-service Protection | Capacity, Bandwidth, and Redundancy", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.885Z", + "created": "2021-01-13T01:52:41.667Z", "description": "(a) Employ the following monitoring tools to detect indicators of denial-of-service attacks against, or launched from, the system: [Assignment: organization-defined monitoring tools]; and\n(b) Monitor the following system resources to determine if sufficient resources exist to prevent effective denial-of-service attacks: [Assignment: organization-defined system resources].\n\nOrganizations consider the utilization and capacity of system resources when managing risk associated with a denial of service due to malicious attacks. Denial-of-service attacks can originate from external or internal sources. System resources that are sensitive to denial of service include physical disk storage, memory, and CPU cycles. Techniques used to prevent denial-of-service attacks related to storage utilization and capacity include instituting disk quotas, configuring systems to automatically alert administrators when specific storage capacity thresholds are reached, using file compression technologies to maximize available storage space, and imposing separate partitions for system and user data.", "external_references": [ { @@ -12583,12 +12583,12 @@ } ], "id": "course-of-action--7cbe5a9e-3c1b-46a6-9641-36efbddd28e4", - "modified": "2021-01-06T18:30:53.885Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Denial-of-service Protection | Detection and Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.667Z", "description": "Protect the availability of resources by allocating [Assignment: organization-defined resources] by [Selection (one or more): priority; quota; \n [Assignment: organization-defined controls]\n ].\n\nPriority protection prevents lower-priority processes from delaying or interfering with the system that services higher-priority processes. Quotas prevent users or processes from obtaining more than predetermined amounts of resources.", "external_references": [ { @@ -12597,12 +12597,12 @@ } ], "id": "course-of-action--c818a67b-0124-4a28-a1b0-b9eee5a62c52", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Resource Availability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.667Z", "description": "a. Monitor and control communications at the external managed interfaces to the system and at key internal managed interfaces within the system;\nb. Implement subnetworks for publicly accessible system components that are [Selection: physically; logically] separated from internal organizational networks; and\nc. Connect to external networks or systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security and privacy architecture.\n\nManaged interfaces include gateways, routers, firewalls, guards, network-based malicious code analysis, virtualization systems, or encrypted tunnels implemented within a security architecture. Subnetworks that are physically or logically separated from internal networks are referred to as demilitarized zones or DMZs. Restricting or prohibiting interfaces within organizational systems includes restricting external web traffic to designated web servers within managed interfaces, prohibiting external traffic that appears to be spoofing internal addresses, and prohibiting internal traffic that appears to be spoofing external addresses. Commercial telecommunications services are provided by network components and consolidated management systems shared by customers. These services may also include third party-provided access lines and other service elements. Such services may represent sources of increased risk despite contract security provisions. Boundary protection may be implemented as a common control for all or part of an organizational network such that the boundary to be protected is greater than a system-specific boundary (i.e., an authorization boundary).", "external_references": [ { @@ -12611,12 +12611,12 @@ } ], "id": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Boundary Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.667Z", "description": "", "external_references": [ { @@ -12625,12 +12625,12 @@ } ], "id": "course-of-action--eba18226-0224-4f12-b58f-6553b2fecf96", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Boundary Protection | Physically Separated Subnetworks", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.667Z", "description": "", "external_references": [ { @@ -12639,12 +12639,12 @@ } ], "id": "course-of-action--0504063d-b8b4-446f-acce-bbc57c420a02", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Boundary Protection | Public Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.668Z", "description": "Limit the number of external network connections to the system.\n\nLimiting the number of external network connections facilitates monitoring of inbound and outbound communications traffic. The Trusted Internet Connection [DHS TIC] initiative is an example of a federal guideline that requires limits on the number of external network connections. Limiting the number of external network connections to the system is important during transition periods from older to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols). Such transitions may require implementing the older and newer technologies simultaneously during the transition period and thus increase the number of access points to the system.", "external_references": [ { @@ -12653,12 +12653,12 @@ } ], "id": "course-of-action--3bc4f574-f163-4349-907f-f032751d2687", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | Access Points", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.668Z", "description": "(a) Implement a managed interface for each external telecommunication service;\n(b) Establish a traffic flow policy for each managed interface;\n(c) Protect the confidentiality and integrity of the information being transmitted across each interface;\n(d) Document each exception to the traffic flow policy with a supporting mission or business need and duration of that need;\n(e) Review exceptions to the traffic flow policy [Assignment: organization-defined frequency] and remove exceptions that are no longer supported by an explicit mission or business need;\n(f) Prevent unauthorized exchange of control plane traffic with external networks;\n(g) Publish information to enable remote networks to detect unauthorized control plane traffic from internal networks; and\n(h) Filter unauthorized control plane traffic from external networks.\n\nExternal telecommunications services can provide data and/or voice communications services. Examples of control plane traffic include routing, Domain Name System (DNS), and management. Unauthorized control plane traffic can occur through a technique known as 'spoofing.'", "external_references": [ { @@ -12667,12 +12667,12 @@ } ], "id": "course-of-action--c3a3f747-9c71-43b0-849e-777a867dd1da", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | External Telecommunications Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.668Z", "description": "Deny network communications traffic by default and allow network communications traffic by exception [Selection (one or more): at managed interfaces; for [Assignment: organization-defined systems]\n ].\n\nDenying by default and allowing by exception applies to inbound and outbound network communications traffic. A deny-all, permit-by-exception network communications traffic policy ensures that only those system connections that are essential and approved are allowed. Deny by default, allow by exception also applies to a system that is connected to an external system.", "external_references": [ { @@ -12681,12 +12681,12 @@ } ], "id": "course-of-action--ea0284e2-1f35-4385-a624-25e734482900", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | Deny by Default ' Allow by Exception", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.668Z", "description": "", "external_references": [ { @@ -12695,12 +12695,12 @@ } ], "id": "course-of-action--fb74018b-d4c3-4966-b602-df8e72dff349", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | Response to Recognized Failures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.668Z", "description": "Prevent split tunneling for remote devices connecting to organizational systems unless the split tunnel is securely provisioned using [Assignment: organization-defined safeguards].\n\nSplit tunneling is the process of allowing a remote user or device to establish a non-remote connection with a system and simultaneously communicate via some other connection to a resource in an external network. This method of network access enables a user to access remote devices and simultaneously, access uncontrolled networks. Split tunneling might be desirable by remote users to communicate with local system resources, such as printers or file servers. However, split tunneling can facilitate unauthorized external connections, making the system vulnerable to attack and to exfiltration of organizational information. Split tunneling can be prevented by disabling configuration settings that allow such capability in remote devices and by preventing those configuration settings from being configurable by users. Prevention can also be achieved by the detection of split tunneling (or of configuration settings that allow split tunneling) in the remote device, and by prohibiting the connection if the remote device is using split tunneling. A virtual private network (VPN) can be used to securely provision a split tunnel. A securely provisioned VPN includes locking connectivity to exclusive, managed, and named environments, or to a specific set of pre-approved addresses, without user control.", "external_references": [ { @@ -12709,12 +12709,12 @@ } ], "id": "course-of-action--f8da3f53-d5fc-4f81-b6bb-ca6b975f743e", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | Split Tunneling for Remote Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.668Z", "description": "Route [Assignment: organization-defined internal communications traffic] to [Assignment: organization-defined external networks] through authenticated proxy servers at managed interfaces.\n\nExternal networks are networks outside of organizational control. A proxy server is a server (i.e., system or application) that acts as an intermediary for clients requesting system resources from non-organizational or other organizational servers. System resources that may be requested include files, connections, web pages, or services. Client requests established through a connection to a proxy server are assessed to manage complexity and provide additional protection by limiting direct connectivity. Web content filtering devices are one of the most common proxy servers that provide access to the Internet. Proxy servers can support the logging of Transmission Control Protocol sessions and the blocking of specific Uniform Resource Locators, Internet Protocol addresses, and domain names. Web proxies can be configured with organization-defined lists of authorized and unauthorized websites. Note that proxy servers may inhibit the use of virtual private networks (VPNs) and create the potential for 'man-in-the-middle' attacks (depending on the implementation).", "external_references": [ { @@ -12723,12 +12723,12 @@ } ], "id": "course-of-action--cb1d4c5a-13ea-4523-b555-fe3490757493", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.668Z", "name": "Boundary Protection | Route Traffic to Authenticated Proxy Servers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.669Z", "description": "(a) Detect and deny outgoing communications traffic posing a threat to external systems; and\n(b) Audit the identity of internal users associated with denied communications.\n\nDetecting outgoing communications traffic from internal actions that may pose threats to external systems is known as extrusion detection. Extrusion detection is carried out within the system at managed interfaces. Extrusion detection includes the analysis of incoming and outgoing communications traffic while searching for indications of internal threats to the security of external systems. Internal threats to external systems include traffic indicative of denial-of-service attacks, traffic with spoofed source addresses, and traffic that contains malicious code. Organizations have criteria to determine, update, and manage identified threats related to extrusion detection.", "external_references": [ { @@ -12737,12 +12737,12 @@ } ], "id": "course-of-action--6395cdcb-2f50-4510-b5da-580d232397ed", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Restrict Threatening Outgoing Communications Traffic", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.669Z", "description": "(a) Prevent the exfiltration of information; and\n(b) Conduct exfiltration tests [Assignment: organization-defined frequency].\n\nPrevention of exfiltration applies to both the intentional and unintentional exfiltration of information. Techniques used to prevent the exfiltration of information from systems may be implemented at internal endpoints, external boundaries, and across managed interfaces and include adherence to protocol formats, monitoring for beaconing activity from systems, disconnecting external network interfaces except when explicitly needed, employing traffic profile analysis to detect deviations from the volume and types of traffic expected, call backs to command and control centers, conducting penetration testing, monitoring for steganography, disassembling and reassembling packet headers, and using data loss and data leakage prevention tools. Devices that enforce strict adherence to protocol formats include deep packet inspection firewalls and Extensible Markup Language (XML) gateways. The devices verify adherence to protocol formats and specifications at the application layer and identify vulnerabilities that cannot be detected by devices that operate at the network or transport layers. The prevention of exfiltration is similar to data loss prevention or data leakage prevention and is closely associated with cross-domain solutions and system guards that enforce information flow requirements.", "external_references": [ { @@ -12751,12 +12751,12 @@ } ], "id": "course-of-action--21478f28-1791-4e78-ad25-182c55e3ae1b", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Prevent Exfiltration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.887Z", + "created": "2021-01-13T01:52:41.669Z", "description": "Only allow incoming communications from [Assignment: organization-defined authorized sources] to be routed to [Assignment: organization-defined authorized destinations].\n\nGeneral source address validation techniques are applied to restrict the use of illegal and unallocated source addresses as well as source addresses that should only be used within the system. The restriction of incoming communications traffic provides determinations that source and destination address pairs represent authorized or allowed communications. Determinations can be based on several factors, including the presence of such address pairs in the lists of authorized or allowed communications, the absence of such address pairs in lists of unauthorized or disallowed pairs, or meeting more general rules for authorized or allowed source and destination pairs. Strong authentication of network addresses is not possible without the use of explicit security protocols, and thus, addresses can often be spoofed. Further, identity-based incoming traffic restriction methods can be employed, including router access control lists and firewall rules.", "external_references": [ { @@ -12765,12 +12765,12 @@ } ], "id": "course-of-action--8e9c15d0-eccc-427d-8d19-d54842fe393b", - "modified": "2021-01-06T18:30:53.887Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Restrict Incoming Communications Traffic", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.669Z", "description": "Implement [Assignment: organization-defined host-based boundary protection mechanisms] at [Assignment: organization-defined system components].\n\nHost-based boundary protection mechanisms include host-based firewalls. System components that employ host-based boundary protection mechanisms include servers, workstations, notebook computers, and mobile devices.", "external_references": [ { @@ -12779,12 +12779,12 @@ } ], "id": "course-of-action--9d7301b9-ef53-4563-aa20-ff8d7796b885", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Host-based Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.669Z", "description": "Isolate [Assignment: organization-defined information security tools, mechanisms, and support components] from other internal system components by implementing physically separate subnetworks with managed interfaces to other components of the system.\n\nPhysically separate subnetworks with managed interfaces are useful in isolating computer network defenses from critical operational processing networks to prevent adversaries from discovering the analysis and forensics techniques employed by organizations.", "external_references": [ { @@ -12793,12 +12793,12 @@ } ], "id": "course-of-action--fe6c3381-34f3-42e5-a134-2ee3337e0f56", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Isolation of Security Tools, Mechanisms, and Support Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.669Z", "description": "Protect against unauthorized physical connections at [Assignment: organization-defined managed interfaces].\n\nSystems that operate at different security categories or classification levels may share common physical and environmental controls, since the systems may share space within the same facilities. In practice, it is possible that these separate systems may share common equipment rooms, wiring closets, and cable distribution paths. Protection against unauthorized physical connections can be achieved by using clearly identified and physically separated cable trays, connection frames, and patch panels for each side of managed interfaces with physical access controls that enforce limited authorized access to these items.", "external_references": [ { @@ -12807,12 +12807,12 @@ } ], "id": "course-of-action--7e05ac40-0d7b-445d-abf5-62c3588ff874", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Protect Against Unauthorized Physical Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.669Z", "description": "Route networked, privileged accesses through a dedicated, managed interface for purposes of access control and auditing.\n\nPrivileged access provides greater accessibility to system functions, including security functions. Adversaries attempt to gain privileged access to systems through remote access to cause adverse mission or business impacts, such as by exfiltrating information or bringing down a critical system capability. Routing networked, privileged access requests through a dedicated, managed interface further restricts privileged access for increased access control and auditing.", "external_references": [ { @@ -12821,12 +12821,12 @@ } ], "id": "course-of-action--3f4287e2-0ad3-475b-a00c-28887d1adc51", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.669Z", "name": "Boundary Protection | Networked Privileged Accesses", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Prevent the discovery of specific system components that represent a managed interface.\n\nPreventing the discovery of system components representing a managed interface helps protect network addresses of those components from discovery through common tools and techniques used to identify devices on networks. Network addresses are not available for discovery and require prior knowledge for access. Preventing the discovery of components and devices can be accomplished by not publishing network addresses, using network address translation, or not entering the addresses in domain name systems. Another prevention technique is to periodically change network addresses.", "external_references": [ { @@ -12835,12 +12835,12 @@ } ], "id": "course-of-action--3aaae668-9a89-430f-8f77-15a1eec38a9c", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Prevent Discovery of System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.888Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Enforce adherence to protocol formats.\n\nSystem components that enforce protocol formats include deep packet inspection firewalls and XML gateways. The components verify adherence to protocol formats and specifications at the application layer and identify vulnerabilities that cannot be detected by devices operating at the network or transport layers.", "external_references": [ { @@ -12849,12 +12849,12 @@ } ], "id": "course-of-action--3c097e71-3aff-4b52-8d0b-bfb2fe72f69d", - "modified": "2021-01-06T18:30:53.888Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Automated Enforcement of Protocol Formats", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.889Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Prevent systems from entering unsecure states in the event of an operational failure of a boundary protection device.\n\nFail secure is a condition achieved by employing mechanisms to ensure that in the event of operational failures of boundary protection devices at managed interfaces, systems do not enter into unsecure states where intended security properties no longer hold. Managed interfaces include routers, firewalls, and application gateways that reside on protected subnetworks (commonly referred to as demilitarized zones). Failures of boundary protection devices cannot lead to or cause information external to the devices to enter the devices nor can failures permit unauthorized information releases.", "external_references": [ { @@ -12863,12 +12863,12 @@ } ], "id": "course-of-action--58786fd4-40a3-4e4b-94af-124417837f6c", - "modified": "2021-01-06T18:30:53.889Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Fail Secure", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.889Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Block inbound and outbound communications traffic between [Assignment: organization-defined communication clients] that are independently configured by end users and external service providers.\n\nCommunication clients independently configured by end users and external service providers include instant messaging clients and video conferencing software and applications. Traffic blocking does not apply to communication clients that are configured by organizations to perform authorized functions.", "external_references": [ { @@ -12877,12 +12877,12 @@ } ], "id": "course-of-action--bbda751d-f126-4656-9edd-b91d9da70e88", - "modified": "2021-01-06T18:30:53.889Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Block Communication from Non-organizationally Configured Hosts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.889Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Provide the capability to dynamically isolate [Assignment: organization-defined system components] from other system components.\n\nThe capability to dynamically isolate certain internal system components is useful when it is necessary to partition or separate system components of questionable origin from components that possess greater trustworthiness. Component isolation reduces the attack surface of organizational systems. Isolating selected system components can also limit the damage from successful attacks when such attacks occur.", "external_references": [ { @@ -12891,12 +12891,12 @@ } ], "id": "course-of-action--b85d6aaa-c0d7-4448-9714-a9e9eba08322", - "modified": "2021-01-06T18:30:53.889Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Dynamic Isolation and Segregation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.889Z", + "created": "2021-01-13T01:52:41.670Z", "description": "Employ boundary protection mechanisms to isolate [Assignment: organization-defined system components] supporting [Assignment: organization-defined missions and/or business functions].\n\nOrganizations can isolate system components that perform different mission or business functions. Such isolation limits unauthorized information flows among system components and provides the opportunity to deploy greater levels of protection for selected system components. Isolating system components with boundary protection mechanisms provides the capability for increased protection of individual system components and to more effectively control information flows between those components. Isolating system components provides enhanced protection that limits the potential harm from hostile cyber-attacks and errors. The degree of isolation varies depending upon the mechanisms chosen. Boundary protection mechanisms include routers, gateways, and firewalls that separate system components into physically separate networks or subnetworks; cross-domain devices that separate subnetworks; virtualization techniques; and the encryption of information flows among system components using distinct encryption keys.", "external_references": [ { @@ -12905,12 +12905,12 @@ } ], "id": "course-of-action--eb3e4f5f-6755-4530-ab77-6f84e6353850", - "modified": "2021-01-06T18:30:53.889Z", + "modified": "2021-01-13T01:52:41.670Z", "name": "Boundary Protection | Isolation of System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.890Z", + "created": "2021-01-13T01:52:41.671Z", "description": "Implement separate network addresses to connect to systems in different security domains.\n\nThe decomposition of systems into subnetworks (i.e., subnets) helps to provide the appropriate level of protection for network connections to different security domains that contain information with different security categories or classification levels.", "external_references": [ { @@ -12919,12 +12919,12 @@ } ], "id": "course-of-action--23eb8a53-a3ae-4346-9ec4-0e2a58419e83", - "modified": "2021-01-06T18:30:53.890Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Separate Subnets for Connecting to Different Security Domains", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.890Z", + "created": "2021-01-13T01:52:41.671Z", "description": "Disable feedback to senders on protocol format validation failure.\n\nDisabling feedback to senders when there is a failure in protocol validation format prevents adversaries from obtaining information that would otherwise be unavailable.", "external_references": [ { @@ -12933,12 +12933,12 @@ } ], "id": "course-of-action--ff742767-de8e-4774-b477-2489df07415c", - "modified": "2021-01-06T18:30:53.890Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Disable Sender Feedback on Protocol Validation Failure", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.890Z", + "created": "2021-01-13T01:52:41.671Z", "description": "For systems that process personally identifiable information:\n(a) Apply the following processing rules to data elements of personally identifiable information: [Assignment: organization-defined processing rules];\n(b) Monitor for permitted processing at the external interfaces to the system and at key internal boundaries within the system;\n(c) Document each processing exception; and\n(d) Review and remove exceptions that are no longer supported.\n\nManaging the processing of personally identifiable information is an important aspect of protecting an individual's privacy. Applying, monitoring for, and documenting exceptions to processing rules ensure that personally identifiable information is processed only in accordance with established privacy requirements.", "external_references": [ { @@ -12947,12 +12947,12 @@ } ], "id": "course-of-action--914cb61e-15c1-485d-84c0-e2bfbcb818c1", - "modified": "2021-01-06T18:30:53.890Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Personally Identifiable Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.890Z", + "created": "2021-01-13T01:52:41.671Z", "description": "Prohibit the direct connection of [Assignment: organization-defined unclassified national security system] to an external network without the use of [Assignment: organization-defined boundary protection device].\n\nA direct connection is a dedicated physical or virtual connection between two or more systems. Organizations typically do not have complete control over external networks, including the Internet. Boundary protection devices (e.g., firewalls, gateways, and routers) mediate communications and information flows between unclassified national security systems and external networks.", "external_references": [ { @@ -12961,12 +12961,12 @@ } ], "id": "course-of-action--0b905e11-fec1-45c1-bdfb-4bddc6d3bae3", - "modified": "2021-01-06T18:30:53.890Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Unclassified National Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.890Z", + "created": "2021-01-13T01:52:41.671Z", "description": "Prohibit the direct connection of a classified national security system to an external network without the use of [Assignment: organization-defined boundary protection device].\n\nA direct connection is a dedicated physical or virtual connection between two or more systems. Organizations typically do not have complete control over external networks, including the Internet. Boundary protection devices (e.g., firewalls, gateways, and routers) mediate communications and information flows between classified national security systems and external networks. In addition, approved boundary protection devices (typically managed interface or cross-domain systems) provide information flow enforcement from systems to external networks.", "external_references": [ { @@ -12975,12 +12975,12 @@ } ], "id": "course-of-action--df283cb9-40be-4d84-b48e-7764589b13c7", - "modified": "2021-01-06T18:30:53.890Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Classified National Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.891Z", + "created": "2021-01-13T01:52:41.671Z", "description": "Prohibit the direct connection of [Assignment: organization-defined unclassified non-national security system] to an external network without the use of [Assignment: organization-defined boundary protection device].\n\nA direct connection is a dedicated physical or virtual connection between two or more systems. Organizations typically do not have complete control over external networks, including the Internet. Boundary protection devices (e.g., firewalls, gateways, and routers) mediate communications and information flows between unclassified non-national security systems and external networks.", "external_references": [ { @@ -12989,12 +12989,12 @@ } ], "id": "course-of-action--0a5a9a5c-b18b-43f8-a1e4-1dc471dedfef", - "modified": "2021-01-06T18:30:53.891Z", + "modified": "2021-01-13T01:52:41.671Z", "name": "Boundary Protection | Unclassified Non-national Security System Connections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.891Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Prohibit the direct connection of [Assignment: organization-defined system] to a public network.\n\nA direct connection is a dedicated physical or virtual connection between two or more systems. A public network is a network accessible to the public, including the Internet and organizational extranets with public access.", "external_references": [ { @@ -13003,12 +13003,12 @@ } ], "id": "course-of-action--10ab490b-6042-47f4-b11e-3ae63e873c04", - "modified": "2021-01-06T18:30:53.891Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Boundary Protection | Connections to Public Networks", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.891Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Implement [Selection: physically; logically] separate subnetworks to isolate the following critical system components and functions: [Assignment: organization-defined critical system components and functions].\n\nSeparating critical system components and functions from other noncritical system components and functions through separate subnetworks may be necessary to reduce susceptibility to a catastrophic or debilitating breach or compromise that results in system failure. For example, physically separating the command and control function from the in-flight entertainment function through separate subnetworks in a commercial aircraft provides an increased level of assurance in the trustworthiness of critical system functions.", "external_references": [ { @@ -13017,12 +13017,12 @@ } ], "id": "course-of-action--95e6e86c-9be0-404e-87f7-f76779b8c8ab", - "modified": "2021-01-06T18:30:53.891Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Boundary Protection | Separate Subnets to Isolate Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.891Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Protect the [Selection (one or more): confidentiality; integrity] of transmitted information.\n\nProtecting the confidentiality and integrity of transmitted information applies to internal and external networks as well as any system components that can transmit information, including servers, notebook computers, desktop computers, mobile devices, printers, copiers, scanners, facsimile machines, and radios. Unprotected communication paths are exposed to the possibility of interception and modification. Protecting the confidentiality and integrity of information can be accomplished by physical or logical means. Physical protection can be achieved by using protected distribution systems. A protected distribution system is a wireline or fiber-optics telecommunications system that includes terminals and adequate electromagnetic, acoustical, electrical, and physical controls to permit its use for the unencrypted transmission of classified information. Logical protection can be achieved by employing encryption techniques.\nOrganizations that rely on commercial providers who offer transmission services as commodity services rather than as fully dedicated services may find it difficult to obtain the necessary assurances regarding the implementation of needed controls for transmission confidentiality and integrity. In such situations, organizations determine what types of confidentiality or integrity services are available in standard, commercial telecommunications service packages. If it is not feasible to obtain the necessary controls and assurances of control effectiveness through appropriate contracting vehicles, organizations can implement appropriate compensating controls.", "external_references": [ { @@ -13031,12 +13031,12 @@ } ], "id": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "modified": "2021-01-06T18:30:53.891Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Implement cryptographic mechanisms to [Selection (one or more): prevent unauthorized disclosure of information; detect changes to information] during transmission.\n\nEncryption protects information from unauthorized disclosure and modification during transmission. Cryptographic mechanisms that protect the confidentiality and integrity of information during transmission include TLS and IPSec. Cryptographic mechanisms used to protect information integrity include cryptographic hash functions that have applications in digital signatures, checksums, and message authentication codes.", "external_references": [ { @@ -13045,12 +13045,12 @@ } ], "id": "course-of-action--9c8497ca-806f-4545-ba91-b0308ccc28b3", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Maintain the [Selection (one or more): confidentiality; integrity] of information during preparation for transmission and during reception.\n\nInformation can be unintentionally or maliciously disclosed or modified during preparation for transmission or during reception, including during aggregation, at protocol transformation points, and during packing and unpacking. Such unauthorized disclosures or modifications compromise the confidentiality or integrity of the information.", "external_references": [ { @@ -13059,12 +13059,12 @@ } ], "id": "course-of-action--5807519a-dc82-43fc-ad09-0e16e9076cc8", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity | Pre- and Post-transmission Handling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Implement cryptographic mechanisms to protect message externals unless otherwise protected by [Assignment: organization-defined alternative physical controls].\n\nCryptographic protection for message externals addresses protection from the unauthorized disclosure of information. Message externals include message headers and routing information. Cryptographic protection prevents the exploitation of message externals and applies to internal and external networks or links that may be visible to individuals who are not authorized users. Header and routing information is sometimes transmitted in clear text (i.e., unencrypted) because the information is not identified by organizations as having significant value or because encrypting the information can result in lower network performance or higher costs. Alternative physical controls include protected distribution systems.", "external_references": [ { @@ -13073,12 +13073,12 @@ } ], "id": "course-of-action--c052768a-d5d7-43f4-aa16-f2b5f6ae12df", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity | Cryptographic Protection for Message Externals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Implement cryptographic mechanisms to conceal or randomize communication patterns unless otherwise protected by [Assignment: organization-defined alternative physical controls].\n\nConcealing or randomizing communication patterns addresses protection from unauthorized disclosure of information. Communication patterns include frequency, periods, predictability, and amount. Changes to communications patterns can reveal information with intelligence value, especially when combined with other available information related to the mission and business functions of the organization. Concealing or randomizing communications prevents the derivation of intelligence based on communications patterns and applies to both internal and external networks or links that may be visible to individuals who are not authorized users. Encrypting the links and transmitting in continuous, fixed, or random patterns prevents the derivation of intelligence from the system communications patterns. Alternative physical controls include protected distribution systems.", "external_references": [ { @@ -13087,12 +13087,12 @@ } ], "id": "course-of-action--07317317-539a-4163-9ecf-12862488d7ae", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity | Conceal or Randomize Communications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.673Z", "description": "Implement [Assignment: organization-defined protected distribution system] to [Selection (one or more): prevent unauthorized disclosure of information; detect changes to information] during transmission.\n\nThe purpose of a protected distribution system is to deter, detect, and/or make difficult physical access to the communication lines that carry national security information.", "external_references": [ { @@ -13101,12 +13101,12 @@ } ], "id": "course-of-action--c13d8bf8-8436-49cd-8c75-94ad9c2789c0", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Transmission Confidentiality and Integrity | Protected Distribution System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.673Z", "description": "", "external_references": [ { @@ -13115,12 +13115,12 @@ } ], "id": "course-of-action--5947bba2-4495-48b7-9408-5c218b541546", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Transmission Confidentiality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.673Z", "description": "Terminate the network connection associated with a communications session at the end of the session or after [Assignment: organization-defined time period] of inactivity.\n\nNetwork disconnect applies to internal and external networks. Terminating network connections associated with specific communications sessions includes de-allocating TCP/IP address or port pairs at the operating system level and de-allocating the networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. Periods of inactivity may be established by organizations and include time periods by type of network access or for specific network accesses.", "external_references": [ { @@ -13129,12 +13129,12 @@ } ], "id": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Network Disconnect", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.673Z", "description": "a. Provide a [Selection: physically; logically] isolated trusted communications path for communications between the user and the trusted components of the system; and\nb. Permit users to invoke the trusted communications path for communications between the user and the following security functions of the system, including at a minimum, authentication and re-authentication: [Assignment: organization-defined security functions].\n\nTrusted paths are mechanisms by which users can communicate (using input devices such as keyboards) directly with the security functions of systems with the requisite assurance to support security policies. Trusted path mechanisms can only be activated by users or the security functions of organizational systems. User responses that occur via trusted paths are protected from modification by and disclosure to untrusted applications. Organizations employ trusted paths for trustworthy, high-assurance connections between security functions of systems and users, including during system logons. The original implementations of trusted paths employed an out-of-band signal to initiate the path, such as using the key, which does not transmit characters that can be spoofed. In later implementations, a key combination that could not be hijacked was used (e.g., the + + keys). Such key combinations, however, are platform-specific and may not provide a trusted path implementation in every case. The enforcement of trusted communications paths is provided by a specific implementation that meets the reference monitor concept.", "external_references": [ { @@ -13143,12 +13143,12 @@ } ], "id": "course-of-action--57baf47c-0c76-4e82-8a6b-084436353645", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Trusted Path", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.673Z", "description": "(a) Provide a trusted communications path that is irrefutably distinguishable from other communications paths; and\n(b) Initiate the trusted communications path for communications between the [Assignment: organization-defined security functions] of the system and the user.\n\nAn irrefutable communications path permits the system to initiate a trusted path, which necessitates that the user can unmistakably recognize the source of the communication as a trusted system component. For example, the trusted path may appear in an area of the display that other applications cannot access or be based on the presence of an identifier that cannot be spoofed.", "external_references": [ { @@ -13157,12 +13157,12 @@ } ], "id": "course-of-action--9cc936ba-e0cb-4768-81c1-e72d979125a5", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Trusted Path | Irrefutable Communications Path", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.673Z", "description": "Establish and manage cryptographic keys when cryptography is employed within the system in accordance with the following key management requirements: [Assignment: organization-defined requirements for key generation, distribution, storage, access, and destruction].\n\nCryptographic key management and establishment can be performed using manual procedures or automated mechanisms with supporting manual procedures. Organizations define key management requirements in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and specify appropriate options, parameters, and levels. Organizations manage trust stores to ensure that only approved trust anchors are part of such trust stores. This includes certificates with visibility external to organizational systems and certificates related to the internal operations of systems. [NIST CMVP] and [NIST CAVP] provide additional information on validated cryptographic modules and algorithms that can be used in cryptographic key management and establishment.", "external_references": [ { @@ -13171,12 +13171,12 @@ } ], "id": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Cryptographic Key Establishment and Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.674Z", "description": "Maintain availability of information in the event of the loss of cryptographic keys by users.\n\nEscrowing of encryption keys is a common practice for ensuring availability in the event of key loss. A forgotten passphrase is an example of losing a cryptographic key.", "external_references": [ { @@ -13185,12 +13185,12 @@ } ], "id": "course-of-action--60479f5e-2603-4e10-bc32-c99d8ee6a410", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | Availability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.674Z", "description": "Produce, control, and distribute symmetric cryptographic keys using [Selection: NIST FIPS-validated; NSA-approved] key management technology and processes.\n\n[SP 800-56A], [SP 800-56B], and [SP 800-56C] provide guidance on cryptographic key establishment schemes and key derivation methods. [SP 800-57-1], [SP 800-57-2], and [SP 800-57-3] provide guidance on cryptographic key management.", "external_references": [ { @@ -13199,12 +13199,12 @@ } ], "id": "course-of-action--7dfe015e-c439-4f16-9ca7-f5893e070aaa", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | Symmetric Keys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.674Z", "description": "Produce, control, and distribute asymmetric cryptographic keys using [Selection: NSA-approved key management technology and processes; prepositioned keying material; DoD-approved or DoD-issued Medium Assurance PKI certificates; DoD-approved or DoD-issued Medium Hardware Assurance PKI certificates and hardware security tokens that protect the user's private key; certificates issued in accordance with organization-defined requirements].\n\n[SP 800-56A], [SP 800-56B], and [SP 800-56C] provide guidance on cryptographic key establishment schemes and key derivation methods. [SP 800-57-1], [SP 800-57-2], and [SP 800-57-3] provide guidance on cryptographic key management.", "external_references": [ { @@ -13213,12 +13213,12 @@ } ], "id": "course-of-action--0c2558c1-0bda-42f3-a25e-fbbb4f916b44", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | Asymmetric Keys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.674Z", "description": "", "external_references": [ { @@ -13227,12 +13227,12 @@ } ], "id": "course-of-action--22e731e2-0298-41a1-b35a-b986a1f43c9f", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | PKI Certificates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.674Z", "description": "", "external_references": [ { @@ -13241,12 +13241,12 @@ } ], "id": "course-of-action--631419f2-f242-4c26-a88b-14ad0c06a50f", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | PKI Certificates / Hardware Tokens", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.674Z", "description": "Maintain physical control of cryptographic keys when stored information is encrypted by external service providers.\n\nFor organizations that use external service providers (e.g., cloud service or data center providers), physical control of cryptographic keys provides additional assurance that information stored by such external providers is not subject to unauthorized disclosure or modification.", "external_references": [ { @@ -13255,12 +13255,12 @@ } ], "id": "course-of-action--694f2dee-06cd-4a74-8c50-ff4e61ce41e8", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Key Establishment and Management | Physical Control of Keys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.674Z", "description": "a. Determine the [Assignment: organization-defined cryptographic uses]; and\nb. Implement the following types of cryptography required for each specified cryptographic use: [Assignment: organization-defined types of cryptography for each specified cryptographic use].\n\nCryptography can be employed to support a variety of security solutions, including the protection of classified information and controlled unclassified information, the provision and implementation of digital signatures, and the enforcement of information separation when authorized individuals have the necessary clearances but lack the necessary formal access approvals. Cryptography can also be used to support random number and hash generation. Generally applicable cryptographic standards include FIPS-validated cryptography and NSA-approved cryptography. For example, organizations that need to protect classified information may specify the use of NSA-approved cryptography. Organizations that need to provision and implement digital signatures may specify the use of FIPS-validated cryptography. Cryptography is implemented in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -13269,12 +13269,12 @@ } ], "id": "course-of-action--5dcdff01-f596-4a6a-a6d2-ce4138fd7f19", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.674Z", "name": "Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.675Z", "description": "", "external_references": [ { @@ -13283,12 +13283,12 @@ } ], "id": "course-of-action--5999de91-c795-40e5-a7e1-e8711d3a53ba", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Cryptographic Protection | Fips-validated Cryptography", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.894Z", + "created": "2021-01-13T01:52:41.675Z", "description": "", "external_references": [ { @@ -13297,12 +13297,12 @@ } ], "id": "course-of-action--cfc9b5b4-c8e7-4413-8e0e-40134dbde790", - "modified": "2021-01-06T18:30:53.894Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Cryptographic Protection | Nsa-approved Cryptography", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.675Z", "description": "", "external_references": [ { @@ -13311,12 +13311,12 @@ } ], "id": "course-of-action--5f603490-ec2c-498e-8053-afd07887393f", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Cryptographic Protection | Individuals Without Formal Access Approvals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.675Z", "description": "", "external_references": [ { @@ -13325,12 +13325,12 @@ } ], "id": "course-of-action--df552489-b222-4da6-8343-3f07a5ab1351", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Cryptographic Protection | Digital Signatures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.675Z", "description": "", "external_references": [ { @@ -13339,12 +13339,12 @@ } ], "id": "course-of-action--df0b69dd-b011-41a1-9f38-c932ec5a6fff", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Public Access Protections", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.675Z", "description": "a. Prohibit remote activation of collaborative computing devices and applications with the following exceptions: [Assignment: organization-defined exceptions where remote activation is to be allowed]; and\nb. Provide an explicit indication of use to users physically present at the devices.\n\nCollaborative computing devices and applications include remote meeting devices and applications, networked white boards, cameras, and microphones. The explicit indication of use includes signals to users when collaborative computing devices and applications are activated.", "external_references": [ { @@ -13353,12 +13353,12 @@ } ], "id": "course-of-action--40d7503e-e5b5-4111-9ce5-5247eb36e02f", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Collaborative Computing Devices and Applications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.675Z", "description": "Provide [Selection (one or more): physical; logical] disconnect of collaborative computing devices in a manner that supports ease of use.\n\nFailing to disconnect from collaborative computing devices can result in subsequent compromises of organizational information. Providing easy methods to disconnect from such devices after a collaborative computing session ensures that participants carry out the disconnect activity without having to go through complex and tedious procedures. Disconnect from collaborative computing devices can be manual or automatic.", "external_references": [ { @@ -13367,12 +13367,12 @@ } ], "id": "course-of-action--339b4148-a9c7-410b-882e-785e7a46d5db", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.675Z", "name": "Collaborative Computing Devices and Applications | Physical or Logical Disconnect", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.676Z", "description": "", "external_references": [ { @@ -13381,12 +13381,12 @@ } ], "id": "course-of-action--bd88271c-962e-4f6e-9c45-0cf2db2b114d", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Collaborative Computing Devices and Applications | Blocking Inbound and Outbound Communications Traffic", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.895Z", + "created": "2021-01-13T01:52:41.676Z", "description": "Disable or remove collaborative computing devices and applications from [Assignment: organization-defined systems or system components] in [Assignment: organization-defined secure work areas].\n\nFailing to disable or remove collaborative computing devices and applications from systems or system components can result in compromises of information, including eavesdropping on conversations. A Sensitive Compartmented Information Facility (SCIF) is an example of a secure work area.", "external_references": [ { @@ -13395,12 +13395,12 @@ } ], "id": "course-of-action--ec6a4eb4-c97a-4941-9b21-6b86fba37fd1", - "modified": "2021-01-06T18:30:53.895Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Collaborative Computing Devices and Applications | Disabling and Removal in Secure Work Areas", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.676Z", "description": "Provide an explicit indication of current participants in [Assignment: organization-defined online meetings and teleconferences].\n\nExplicitly indicating current participants prevents unauthorized individuals from participating in collaborative computing sessions without the explicit knowledge of other participants.", "external_references": [ { @@ -13409,12 +13409,12 @@ } ], "id": "course-of-action--6e609c24-e5fb-4ebe-b01c-23989f095348", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Collaborative Computing Devices and Applications | Explicitly Indicate Current Participants", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.676Z", "description": "Associate [Assignment: organization-defined security and privacy attributes] with information exchanged between systems and between system components.\n\nSecurity and privacy attributes can be explicitly or implicitly associated with the information contained in organizational systems or system components. Attributes are abstractions that represent the basic properties or characteristics of an entity with respect to protecting information or the management of personally identifiable information. Attributes are typically associated with internal data structures, including records, buffers, and files within the system. Security and privacy attributes are used to implement access control and information flow control policies; reflect special dissemination, management, or distribution instructions, including permitted uses of personally identifiable information; or support other aspects of the information security and privacy policies. Privacy attributes may be used independently or in conjunction with security attributes.", "external_references": [ { @@ -13423,12 +13423,12 @@ } ], "id": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Transmission of Security and Privacy Attributes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.676Z", "description": "Verify the integrity of transmitted security and privacy attributes.\n\nPart of verifying the integrity of transmitted information is ensuring that security and privacy attributes that are associated with such information have not been modified in an unauthorized manner. Unauthorized modification of security or privacy attributes can result in a loss of integrity for transmitted information.", "external_references": [ { @@ -13437,12 +13437,12 @@ } ], "id": "course-of-action--acad99af-acdc-4667-88f9-15e618b42cee", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Transmission of Security and Privacy Attributes | Integrity Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.677Z", "description": "Implement anti-spoofing mechanisms to prevent adversaries from falsifying the security attributes indicating the successful application of the security process.\n\nSome attack vectors operate by altering the security attributes of an information system to intentionally and maliciously implement an insufficient level of security within the system. The alteration of attributes leads organizations to believe that a greater number of security functions are in place and operational than have actually been implemented.", "external_references": [ { @@ -13451,12 +13451,12 @@ } ], "id": "course-of-action--aeb13a25-703a-4d8c-96e3-0f018b249e19", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Transmission of Security and Privacy Attributes | Anti-spoofing Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.677Z", "description": "Implement [Assignment: organization-defined mechanisms or techniques] to bind security and privacy attributes to transmitted information.\n\nCryptographic mechanisms and techniques can provide strong security and privacy attribute binding to transmitted information to help ensure the integrity of such information.", "external_references": [ { @@ -13465,12 +13465,12 @@ } ], "id": "course-of-action--b1525697-7d72-4aab-8725-09ae400eb209", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Transmission of Security and Privacy Attributes | Cryptographic Binding", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.677Z", "description": "a. Issue public key certificates under an [Assignment: organization-defined certificate policy] or obtain public key certificates from an approved service provider; and\nb. Include only approved trust anchors in trust stores or certificate stores managed by the organization.\n\nPublic key infrastructure certificates are certificates with visibility external to organizational systems and certificates related to the internal operations of systems, such as application-specific time services. In cryptographic systems with a hierarchical structure, a trust anchor is an authoritative source (i.e., a certificate authority) for which trust is assumed and not derived. A root certificate for a PKI system is an example of a trust anchor. A trust store or certificate store maintains a list of trusted root certificates.", "external_references": [ { @@ -13479,12 +13479,12 @@ } ], "id": "course-of-action--6e561e80-7062-4695-ab3b-03e631acbfc1", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Public Key Infrastructure Certificates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.677Z", "description": "a. Define acceptable and unacceptable mobile code and mobile code technologies; and\nb. Authorize, monitor, and control the use of mobile code within the system.\n\nMobile code includes any program, application, or content that can be transmitted across a network (e.g., embedded in an email, document, or website) and executed on a remote system. Decisions regarding the use of mobile code within organizational systems are based on the potential for the code to cause damage to the systems if used maliciously. Mobile code technologies include Java applets, JavaScript, HTML5, WebGL, and VBScript. Usage restrictions and implementation guidelines apply to both the selection and use of mobile code installed on servers and mobile code downloaded and executed on individual workstations and devices, including notebook computers and smart phones. Mobile code policy and procedures address specific actions taken to prevent the development, acquisition, and introduction of unacceptable mobile code within organizational systems, including requiring mobile code to be digitally signed by a trusted source.", "external_references": [ { @@ -13493,12 +13493,12 @@ } ], "id": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Mobile Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.677Z", "description": "Identify [Assignment: organization-defined unacceptable mobile code] and take [Assignment: organization-defined corrective actions].\n\nCorrective actions when unacceptable mobile code is detected include blocking, quarantine, or alerting administrators. Blocking includes preventing the transmission of word processing files with embedded macros when such macros have been determined to be unacceptable mobile code.", "external_references": [ { @@ -13507,12 +13507,12 @@ } ], "id": "course-of-action--de494d09-6ddc-4ff8-bbf1-a4061b37051d", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Mobile Code | Identify Unacceptable Code and Take Corrective Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.677Z", "description": "Verify that the acquisition, development, and use of mobile code to be deployed in the system meets [Assignment: organization-defined mobile code requirements].\n\nNone.", "external_references": [ { @@ -13521,12 +13521,12 @@ } ], "id": "course-of-action--cd303412-5177-4117-a317-10f459555d46", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Mobile Code | Acquisition, Development, and Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.678Z", "description": "Prevent the download and execution of [Assignment: organization-defined unacceptable mobile code].\n\nNone.", "external_references": [ { @@ -13535,12 +13535,12 @@ } ], "id": "course-of-action--559fd340-6460-488c-916f-c718e1ce394a", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Mobile Code | Prevent Downloading and Execution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.678Z", "description": "Prevent the automatic execution of mobile code in [Assignment: organization-defined software applications] and enforce [Assignment: organization-defined actions] prior to executing the code.\n\nActions enforced before executing mobile code include prompting users prior to opening email attachments or clicking on web links. Preventing the automatic execution of mobile code includes disabling auto-execute features on system components that employ portable storage devices, such as compact discs, digital versatile discs, and universal serial bus devices.", "external_references": [ { @@ -13549,12 +13549,12 @@ } ], "id": "course-of-action--1e7e8705-bf30-4f84-ad68-d4baf011ee6d", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Mobile Code | Prevent Automatic Execution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.678Z", "description": "Allow execution of permitted mobile code only in confined virtual machine environments.\n\nPermitting the execution of mobile code only in confined virtual machine environments helps prevent the introduction of malicious code into other systems and system components.", "external_references": [ { @@ -13563,12 +13563,12 @@ } ], "id": "course-of-action--1b5965b7-39cd-410c-850d-32142b76c695", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Mobile Code | Allow Execution Only in Confined Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.678Z", "description": "Technology-specific; addressed as any other technology or protocol.", "external_references": [ { @@ -13577,12 +13577,12 @@ } ], "id": "course-of-action--a691da7a-6095-49f2-8ad8-7fbe2a6d87dc", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Voice Over Internet Protocol", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.678Z", "description": "a. Provide additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and\nb. Provide the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains, when operating as part of a distributed, hierarchical namespace.\n\nProviding authoritative source information enables external clients, including remote Internet clients, to obtain origin authentication and integrity verification assurances for the host/service name to network address resolution information obtained through the service. Systems that provide name and address resolution services include domain name system (DNS) servers. Additional artifacts include DNS Security Extensions (DNSSEC) digital signatures and cryptographic keys. Authoritative data includes DNS resource records. The means for indicating the security status of child zones include the use of delegation signer resource records in the DNS. Systems that use technologies other than the DNS to map between host and service names and network addresses provide other means to assure the authenticity and integrity of response data.", "external_references": [ { @@ -13591,12 +13591,12 @@ } ], "id": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Secure Name/address Resolution Service (authoritative Source)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.679Z", "description": "", "external_references": [ { @@ -13605,12 +13605,12 @@ } ], "id": "course-of-action--071dd1a2-7140-42bd-9de9-4694ef36c9fa", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Secure Name/address Resolution Service (authoritative Source) | Child Subspaces", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Provide data origin and integrity protection artifacts for internal name/address resolution queries.\n\nNone.", "external_references": [ { @@ -13619,12 +13619,12 @@ } ], "id": "course-of-action--29e2aac9-1aa0-4b50-ba10-6c3f481edbd6", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Secure Name/address Resolution Service (authoritative Source) | Data Origin and Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Request and perform data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.\n\nEach client of name resolution services either performs this validation on its own or has authenticated channels to trusted validation providers. Systems that provide name and address resolution services for local clients include recursive resolving or caching domain name system (DNS) servers. DNS client resolvers either perform validation of DNSSEC signatures, or clients use authenticated channels to recursive resolvers that perform such validations. Systems that use technologies other than the DNS to map between host and service names and network addresses provide some other means to enable clients to verify the authenticity and integrity of response data.", "external_references": [ { @@ -13633,12 +13633,12 @@ } ], "id": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Secure Name/address Resolution Service (recursive or Caching Resolver)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "", "external_references": [ { @@ -13647,12 +13647,12 @@ } ], "id": "course-of-action--9543aeea-e1de-4081-b15f-f89e5830e55b", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Secure Name/address Resolution Service (recursive or Caching Resolver) | Data Origin and Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Ensure the systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal and external role separation.\n\nSystems that provide name and address resolution services include domain name system (DNS) servers. To eliminate single points of failure in systems and enhance redundancy, organizations employ at least two authoritative domain name system servers'one configured as the primary server and the other configured as the secondary server. Additionally, organizations typically deploy the servers in two geographically separated network subnetworks (i.e., not located in the same physical facility). For role separation, DNS servers with internal roles only process name and address resolution requests from within organizations (i.e., from internal clients). DNS servers with external roles only process name and address resolution information requests from clients external to organizations (i.e., on external networks, including the Internet). Organizations specify clients that can access authoritative DNS servers in certain roles (e.g., by address ranges and explicit lists).", "external_references": [ { @@ -13661,12 +13661,12 @@ } ], "id": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Architecture and Provisioning for Name/address Resolution Service", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Protect the authenticity of communications sessions.\n\nProtecting session authenticity addresses communications protection at the session level, not at the packet level. Such protection establishes grounds for confidence at both ends of communications sessions in the ongoing identities of other parties and the validity of transmitted information. Authenticity protection includes protecting against 'man-in-the-middle' attacks, session hijacking, and the insertion of false information into sessions.", "external_references": [ { @@ -13675,12 +13675,12 @@ } ], "id": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Session Authenticity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Invalidate session identifiers upon user logout or other session termination.\n\nInvalidating session identifiers at logout curtails the ability of adversaries to capture and continue to employ previously valid session IDs.", "external_references": [ { @@ -13689,12 +13689,12 @@ } ], "id": "course-of-action--16c8dd5f-8d19-41ed-94ae-95b08cd30c28", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Session Authenticity | Invalidate Session Identifiers at Logout", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.900Z", + "created": "2021-01-13T01:52:41.680Z", "description": "", "external_references": [ { @@ -13703,12 +13703,12 @@ } ], "id": "course-of-action--bbe449da-0cc8-4395-ae8a-32baebb42749", - "modified": "2021-01-06T18:30:53.900Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Session Authenticity | User-initiated Logouts and Message Displays", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.900Z", + "created": "2021-01-13T01:52:41.680Z", "description": "Generate a unique session identifier for each session with [Assignment: organization-defined randomness requirements] and recognize only session identifiers that are system-generated.\n\nGenerating unique session identifiers curtails the ability of adversaries to reuse previously valid session IDs. Employing the concept of randomness in the generation of unique session identifiers protects against brute-force attacks to determine future session identifiers.", "external_references": [ { @@ -13717,12 +13717,12 @@ } ], "id": "course-of-action--4f14a84d-4ed0-4eab-9434-35f5a4375cfb", - "modified": "2021-01-06T18:30:53.900Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Session Authenticity | Unique System-generated Session Identifiers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.900Z", + "created": "2021-01-13T01:52:41.680Z", "description": "", "external_references": [ { @@ -13731,12 +13731,12 @@ } ], "id": "course-of-action--8fb01585-bf55-46b8-aac9-f7d3be3b4116", - "modified": "2021-01-06T18:30:53.900Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Session Authenticity | Unique Session Identifiers with Randomization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.900Z", + "created": "2021-01-13T01:52:41.680Z", "description": "Only allow the use of [Assignment: organization-defined certificate authorities] for verification of the establishment of protected sessions.\n\nReliance on certificate authorities for the establishment of secure sessions includes the use of Transport Layer Security (TLS) certificates. These certificates, after verification by their respective certificate authorities, facilitate the establishment of protected sessions between web clients and web servers.", "external_references": [ { @@ -13745,12 +13745,12 @@ } ], "id": "course-of-action--da32cb74-fa57-4849-a193-2fbe0c7f2899", - "modified": "2021-01-06T18:30:53.900Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Session Authenticity | Allowed Certificate Authorities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.900Z", + "created": "2021-01-13T01:52:41.680Z", "description": "Fail to a [Assignment: organization-defined known system state] for the following failures on the indicated components while preserving [Assignment: organization-defined system state information] in failure: [Assignment: list of organization-defined types of system failures on organization-defined system components].\n\nFailure in a known state addresses security concerns in accordance with the mission and business needs of organizations. Failure in a known state prevents the loss of confidentiality, integrity, or availability of information in the event of failures of organizational systems or system components. Failure in a known safe state helps to prevent systems from failing to a state that may cause injury to individuals or destruction to property. Preserving system state information facilitates system restart and return to the operational mode with less disruption of mission and business processes.", "external_references": [ { @@ -13759,12 +13759,12 @@ } ], "id": "course-of-action--40c28ffb-79c6-44ad-9be4-e458223b06a6", - "modified": "2021-01-06T18:30:53.900Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Fail in Known State", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.680Z", "description": "Employ minimal functionality and information storage on the following system components: [Assignment: organization-defined system components].\n\nThe deployment of system components with minimal functionality reduces the need to secure every endpoint and may reduce the exposure of information, systems, and services to attacks. Reduced or minimal functionality includes diskless nodes and thin client technologies.", "external_references": [ { @@ -13773,12 +13773,12 @@ } ], "id": "course-of-action--99a13180-4e3b-481f-9840-3bb1066da35a", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.680Z", "name": "Thin Nodes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Include components within organizational systems specifically designed to be the target of malicious attacks for detecting, deflecting, and analyzing such attacks.\n\nDecoys (i.e., honeypots, honeynets, or deception nets) are established to attract adversaries and deflect attacks away from the operational systems that support organizational mission and business functions. Use of decoys requires some supporting isolation measures to ensure that any deflected malicious code does not infect organizational systems. Depending on the specific usage of the decoy, consultation with the Office of the General Counsel before deployment may be needed.", "external_references": [ { @@ -13787,12 +13787,12 @@ } ], "id": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Decoys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "", "external_references": [ { @@ -13801,12 +13801,12 @@ } ], "id": "course-of-action--fb066266-4450-439f-a0c9-c771023bb183", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Decoys | Detection of Malicious Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Include within organizational systems the following platform independent applications: [Assignment: organization-defined platform-independent applications].\n\nPlatforms are combinations of hardware, firmware, and software components used to execute software applications. Platforms include operating systems, the underlying computer architectures, or both. Platform-independent applications are applications with the capability to execute on multiple platforms. Such applications promote portability and reconstitution on different platforms. Application portability and the ability to reconstitute on different platforms increase the availability of mission-essential functions within organizations in situations where systems with specific operating systems are under attack.", "external_references": [ { @@ -13815,12 +13815,12 @@ } ], "id": "course-of-action--733f4930-11bd-4449-940e-42dbf36c30b3", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Platform-independent Applications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Protect the [Selection (one or more): confidentiality; integrity] of the following information at rest: [Assignment: organization-defined information at rest].\n\nInformation at rest refers to the state of information when it is not in process or in transit and is located on system components. Such components include internal or external hard disk drives, storage area network devices, or databases. However, the focus of protecting information at rest is not on the type of storage device or frequency of access but rather on the state of the information. Information at rest addresses the confidentiality and integrity of information and covers user information and system information. System-related information that requires protection includes configurations or rule sets for firewalls, intrusion detection and prevention systems, filtering routers, and authentication information. Organizations may employ different mechanisms to achieve confidentiality and integrity protections, including the use of cryptographic mechanisms and file share scanning. Integrity protection can be achieved, for example, by implementing write-once-read-many (WORM) technologies. When adequate protection of information at rest cannot otherwise be achieved, organizations may employ other controls, including frequent scanning to identify malicious code at rest and secure offline storage in lieu of online storage.", "external_references": [ { @@ -13829,12 +13829,12 @@ } ], "id": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Protection of Information at Rest", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Implement cryptographic mechanisms to prevent unauthorized disclosure and modification of the following information at rest on [Assignment: organization-defined system components or media]: [Assignment: organization-defined information].\n\nThe selection of cryptographic mechanisms is based on the need to protect the confidentiality and integrity of organizational information. The strength of mechanism is commensurate with the security category or classification of the information. Organizations have the flexibility to encrypt information on system components or media or encrypt data structures, including files, records, or fields.", "external_references": [ { @@ -13843,12 +13843,12 @@ } ], "id": "course-of-action--abd2c98c-a423-4a8b-86eb-72a5a9420b1c", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Protection of Information at Rest | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.902Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Remove the following information from online storage and store offline in a secure location: [Assignment: organization-defined information].\n\nRemoving organizational information from online storage to offline storage eliminates the possibility of individuals gaining unauthorized access to the information through a network. Therefore, organizations may choose to move information to offline storage in lieu of protecting such information in online storage.", "external_references": [ { @@ -13857,12 +13857,12 @@ } ], "id": "course-of-action--bae870d9-1983-4d09-9d9e-5748f9fef19f", - "modified": "2021-01-06T18:30:53.902Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Protection of Information at Rest | Offline Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.902Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Provide protected storage for cryptographic keys [Selection: \n [Assignment: organization-defined safeguards]\n ; hardware-protected key store].\n\nA Trusted Platform Module (TPM) is an example of a hardware-protected data store that can be used to protect cryptographic keys.", "external_references": [ { @@ -13871,12 +13871,12 @@ } ], "id": "course-of-action--5cbef9d5-ffc8-4d7e-9d6e-b14c45ea60b3", - "modified": "2021-01-06T18:30:53.902Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Protection of Information at Rest | Cryptographic Keys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.902Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ a diverse set of information technologies for the following system components in the implementation of the system: [Assignment: organization-defined system components].\n\nIncreasing the diversity of information technologies within organizational systems reduces the impact of potential exploitations or compromises of specific technologies. Such diversity protects against common mode failures, including those failures induced by supply chain attacks. Diversity in information technologies also reduces the likelihood that the means adversaries use to compromise one system component will be effective against other system components, thus further increasing the adversary work factor to successfully complete planned attacks. An increase in diversity may add complexity and management overhead that could ultimately lead to mistakes and unauthorized configurations.", "external_references": [ { @@ -13885,12 +13885,12 @@ } ], "id": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", - "modified": "2021-01-06T18:30:53.902Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Heterogeneity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.902Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ virtualization techniques to support the deployment of a diversity of operating systems and applications that are changed [Assignment: organization-defined frequency].\n\nWhile frequent changes to operating systems and applications can pose significant configuration management challenges, the changes can result in an increased work factor for adversaries to conduct successful attacks. Changing virtual operating systems or applications, as opposed to changing actual operating systems or applications, provides virtual changes that impede attacker success while reducing configuration management efforts. Virtualization techniques can assist in isolating untrustworthy software or software of dubious provenance into confined execution environments.", "external_references": [ { @@ -13899,12 +13899,12 @@ } ], "id": "course-of-action--c76ba5c1-6e4a-41e7-97a0-8778d6f13a45", - "modified": "2021-01-06T18:30:53.902Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Heterogeneity | Virtualization Techniques", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ the following concealment and misdirection techniques for [Assignment: organization-defined systems] at [Assignment: organization-defined time periods] to confuse and mislead adversaries: [Assignment: organization-defined concealment and misdirection techniques].\n\nConcealment and misdirection techniques can significantly reduce the targeting capabilities of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete attacks. For example, virtualization techniques provide organizations with the ability to disguise systems, potentially reducing the likelihood of successful attacks without the cost of having multiple platforms. The increased use of concealment and misdirection techniques and methods'including randomness, uncertainty, and virtualization'may sufficiently confuse and mislead adversaries and subsequently increase the risk of discovery and/or exposing tradecraft. Concealment and misdirection techniques may provide additional time to perform core mission and business functions. The implementation of concealment and misdirection techniques may add to the complexity and management overhead required for the system.", "external_references": [ { @@ -13913,12 +13913,12 @@ } ], "id": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Concealment and Misdirection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.682Z", "description": "", "external_references": [ { @@ -13927,12 +13927,12 @@ } ], "id": "course-of-action--16445816-7931-4706-963a-d491c4c90f59", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Concealment and Misdirection | Virtualization Techniques", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ [Assignment: organization-defined techniques] to introduce randomness into organizational operations and assets.\n\nRandomness introduces increased levels of uncertainty for adversaries regarding the actions that organizations take to defend their systems against attacks. Such actions may impede the ability of adversaries to correctly target information resources of organizations that support critical missions or business functions. Uncertainty may also cause adversaries to hesitate before initiating or continuing attacks. Misdirection techniques that involve randomness include performing certain routine actions at different times of day, employing different information technologies, using different suppliers, and rotating roles and responsibilities of organizational personnel.", "external_references": [ { @@ -13941,12 +13941,12 @@ } ], "id": "course-of-action--c5019661-9921-47c6-a2fc-f50d655fbee9", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Concealment and Misdirection | Randomness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Change the location of [Assignment: organization-defined processing and/or storage]\n [Selection: \n [Assignment: organization-defined time frequency]\n ; at random time intervals]].\n\nAdversaries target critical mission and business functions and the systems that support those mission and business functions while also trying to minimize the exposure of their existence and tradecraft. The static, homogeneous, and deterministic nature of organizational systems targeted by adversaries make such systems more susceptible to attacks with less adversary cost and effort to be successful. Changing processing and storage locations (also referred to as moving target defense) addresses the advanced persistent threat using techniques such as virtualization, distributed processing, and replication. This enables organizations to relocate the system components (i.e., processing, storage) that support critical mission and business functions. Changing the locations of processing activities and/or storage sites introduces a degree of uncertainty into the targeting activities of adversaries. The targeting uncertainty increases the work factor of adversaries and makes compromises or breaches of the organizational systems more difficult and time-consuming. It also increases the chances that adversaries may inadvertently disclose certain aspects of their tradecraft while attempting to locate critical organizational resources.", "external_references": [ { @@ -13955,12 +13955,12 @@ } ], "id": "course-of-action--b2c3b840-e77b-4f41-9251-84fb73aeb6c6", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Concealment and Misdirection | Change Processing and Storage Locations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.683Z", "description": "Employ realistic, but misleading information in [Assignment: organization-defined system components] about its security state or posture.\n\nEmploying misleading information is intended to confuse potential adversaries regarding the nature and extent of controls deployed by organizations. Thus, adversaries may employ incorrect and ineffective attack techniques. One technique for misleading adversaries is for organizations to place misleading information regarding the specific controls deployed in external systems that are known to be targeted by adversaries. Another technique is the use of deception nets that mimic actual aspects of organizational systems but use, for example, out-of-date software configurations.", "external_references": [ { @@ -13969,12 +13969,12 @@ } ], "id": "course-of-action--af463226-2d20-4726-a40e-fd1d2c16d64c", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Concealment and Misdirection | Misleading Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.683Z", "description": "Employ the following techniques to hide or conceal [Assignment: organization-defined system components]: [Assignment: organization-defined techniques].\n\nBy hiding, disguising, or concealing critical system components, organizations may be able to decrease the probability that adversaries target and successfully compromise those assets. Potential means to hide, disguise, or conceal system components include the configuration of routers or the use of encryption or virtualization techniques.", "external_references": [ { @@ -13983,12 +13983,12 @@ } ], "id": "course-of-action--e7273a20-f550-46dd-a056-19e99c83d6fb", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Concealment and Misdirection | Concealment of System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.683Z", "description": "a. Perform a covert channel analysis to identify those aspects of communications within the system that are potential avenues for covert [Selection (one or more): storage; timing] channels; and\nb. Estimate the maximum bandwidth of those channels.\n\nDevelopers are in the best position to identify potential areas within systems that might lead to covert channels. Covert channel analysis is a meaningful activity when there is the potential for unauthorized information flows across security domains, such as in the case of systems that contain export-controlled information and have connections to external networks (i.e., networks that are not controlled by organizations). Covert channel analysis is also useful for multilevel secure systems, multiple security level systems, and cross-domain systems.", "external_references": [ { @@ -13997,12 +13997,12 @@ } ], "id": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Covert Channel Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.683Z", "description": "Test a subset of the identified covert channels to determine the channels that are exploitable.\n\nNone.", "external_references": [ { @@ -14011,12 +14011,12 @@ } ], "id": "course-of-action--5e18f36b-1a41-4abd-b8c1-720544a2bf94", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Covert Channel Analysis | Test Covert Channels for Exploitability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.683Z", "description": "Reduce the maximum bandwidth for identified covert [Selection (one or more): storage; timing] channels to [Assignment: organization-defined values].\n\nThe complete elimination of covert channels, especially covert timing channels, is usually not possible without significant performance impacts.", "external_references": [ { @@ -14025,12 +14025,12 @@ } ], "id": "course-of-action--1ed41674-3c13-4211-91de-839c9a49e883", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Covert Channel Analysis | Maximum Bandwidth", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.683Z", "description": "Measure the bandwidth of [Assignment: organization-defined subset of identified covert channels] in the operational environment of the system.\n\nMeasuring covert channel bandwidth in specified operational environments helps organizations determine how much information can be covertly leaked before such leakage adversely affects mission or business functions. Covert channel bandwidth may be significantly different when measured in settings that are independent of the specific environments of operation, including laboratories or system development environments.", "external_references": [ { @@ -14039,12 +14039,12 @@ } ], "id": "course-of-action--2c77b2a4-e49a-48ce-9aa7-a9a04327e11d", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Covert Channel Analysis | Measure Bandwidth in Operational Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.684Z", "description": "Partition the system into [Assignment: organization-defined system components] residing in separate [Selection: physical; logical] domains or environments based on [Assignment: organization-defined circumstances for physical or logical separation of components].\n\nSystem partitioning is part of a defense-in-depth protection strategy. Organizations determine the degree of physical separation of system components. Physical separation options include physically distinct components in separate racks in the same room, critical components in separate rooms, and geographical separation of critical components. Security categorization can guide the selection of candidates for domain partitioning. Managed interfaces restrict or prohibit network access and information flow among partitioned system components.", "external_references": [ { @@ -14053,12 +14053,12 @@ } ], "id": "course-of-action--ce3d4360-a62f-4fbb-bc02-da2562f5c1ca", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.684Z", "name": "System Partitioning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.684Z", "description": "Partition privileged functions into separate physical domains.\n\nPrivileged functions that operate in a single physical domain may represent a single point of failure if that domain becomes compromised or experiences a denial of service.", "external_references": [ { @@ -14067,12 +14067,12 @@ } ], "id": "course-of-action--30d2498f-b314-4137-8d36-e571741c6eca", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.684Z", "name": "System Partitioning | Separate Physical Domains for Privileged Functions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.684Z", "description": "", "external_references": [ { @@ -14081,12 +14081,12 @@ } ], "id": "course-of-action--b474a8e1-c357-4ff4-87bd-f45635fe22f1", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.684Z", "name": "Transmission Preparation Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.684Z", "description": "For [Assignment: organization-defined system components], load and execute:\na. The operating environment from hardware-enforced, read-only media; and\nb. The following applications from hardware-enforced, read-only media: [Assignment: organization-defined applications].\n\nThe operating environment for a system contains the code that hosts applications, including operating systems, executives, or virtual machine monitors (i.e., hypervisors). It can also include certain applications that run directly on hardware platforms. Hardware-enforced, read-only media include Compact Disc-Recordable (CD-R) and Digital Versatile Disc-Recordable (DVD-R) disk drives as well as one-time, programmable, read-only memory. The use of non-modifiable storage ensures the integrity of software from the point of creation of the read-only image. The use of reprogrammable, read-only memory can be accepted as read-only media provided that integrity can be adequately protected from the point of initial writing to the insertion of the memory into the system, and there are reliable hardware protections against reprogramming the memory while installed in organizational systems.", "external_references": [ { @@ -14095,12 +14095,12 @@ } ], "id": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.684Z", "name": "Non-modifiable Executable Programs", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Employ [Assignment: organization-defined system components] with no writeable storage that is persistent across component restart or power on/off.\n\nDisallowing writeable storage eliminates the possibility of malicious code insertion via persistent, writeable storage within the designated system components. The restriction applies to fixed and removable storage, with the latter being addressed either directly or as specific restrictions imposed through access controls for mobile devices.", "external_references": [ { @@ -14109,12 +14109,12 @@ } ], "id": "course-of-action--79480dc7-f333-4ad7-a12e-15e569a043f6", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Non-modifiable Executable Programs | No Writable Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Protect the integrity of information prior to storage on read-only media and control the media after such information has been recorded onto the media.\n\nControls prevent the substitution of media into systems or the reprogramming of programmable read-only media prior to installation into the systems. Integrity protection controls include a combination of prevention, detection, and response.", "external_references": [ { @@ -14123,12 +14123,12 @@ } ], "id": "course-of-action--23499217-7ecd-4502-aba6-0125cd47a5f9", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Non-modifiable Executable Programs | Integrity Protection on Read-only Media", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.685Z", "description": "", "external_references": [ { @@ -14137,12 +14137,12 @@ } ], "id": "course-of-action--98e9f0e1-cff2-43b4-be85-02cdad59298e", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Non-modifiable Executable Programs | Hardware-based Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Include system components that proactively seek to identify network-based malicious code or malicious websites.\n\nExternal malicious code identification differs from decoys in SC-26 in that the components actively probe networks, including the Internet, in search of malicious code contained on external websites. Like decoys, the use of external malicious code identification techniques requires some supporting isolation measures to ensure that any malicious code discovered during the search and subsequently executed does not infect organizational systems. Virtualization is a common technique for achieving such isolation.", "external_references": [ { @@ -14151,12 +14151,12 @@ } ], "id": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "External Malicious Code Identification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Distribute the following processing and storage components across multiple [Selection: physical locations; logical domains]: [Assignment: organization-defined processing and storage components].\n\nDistributing processing and storage across multiple physical locations or logical domains provides a degree of redundancy or overlap for organizations. The redundancy and overlap increase the work factor of adversaries to adversely impact organizational operations, assets, and individuals. The use of distributed processing and storage does not assume a single primary processing or storage location. Therefore, it allows for parallel processing and storage.", "external_references": [ { @@ -14165,12 +14165,12 @@ } ], "id": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Distributed Processing and Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.685Z", "description": "(a) Employ polling techniques to identify potential faults, errors, or compromises to the following processing and storage components: [Assignment: organization-defined distributed processing and storage components]; and\n(b) Take the following actions in response to identified faults, errors, or compromises: [Assignment: organization-defined actions].\n\nDistributed processing and/or storage may be used to reduce opportunities for adversaries to compromise the confidentiality, integrity, or availability of organizational information and systems. However, the distribution of processing and storage components does not prevent adversaries from compromising one or more of the components. Polling compares the processing results and/or storage content from the distributed components and subsequently votes on the outcomes. Polling identifies potential faults, compromises, or errors in the distributed processing and storage components.", "external_references": [ { @@ -14179,12 +14179,12 @@ } ], "id": "course-of-action--de92f91c-736e-4713-b7ec-0cd1963fcb5e", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Distributed Processing and Storage | Polling Techniques", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Synchronize the following duplicate systems or system components: [Assignment: organization-defined duplicate systems or system components].\n\nSC-36 and CP-9(6) require the duplication of systems or system components in distributed locations. The synchronization of duplicated and redundant services and data helps to ensure that information contained in the distributed locations can be used in the mission or business functions of organizations, as needed.", "external_references": [ { @@ -14193,12 +14193,12 @@ } ], "id": "course-of-action--ca75cc5a-f486-49b7-8c56-37b6638c264d", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Distributed Processing and Storage | Synchronization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Employ the following out-of-band channels for the physical delivery or electronic transmission of [Assignment: organization-defined information, system components, or devices] to [Assignment: organization-defined individuals or systems]: [Assignment: organization-defined out-of-band channels].\n\nOut-of-band channels include local, non-network accesses to systems; network paths physically separate from network paths used for operational traffic; or non-electronic paths, such as the U.S. Postal Service. The use of out-of-band channels is contrasted with the use of in-band channels (i.e., the same channels) that carry routine operational traffic. Out-of-band channels do not have the same vulnerability or exposure as in-band channels. Therefore, the confidentiality, integrity, or availability compromises of in-band channels will not compromise or adversely affect the out-of-band channels. Organizations may employ out-of-band channels in the delivery or transmission of organizational items, including authenticators and credentials; cryptographic key management information; system and data backups; configuration management changes for hardware, firmware, or software; security updates; maintenance information; and malicious code protection updates.", "external_references": [ { @@ -14207,12 +14207,12 @@ } ], "id": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Out-of-band Channels", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.907Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Employ [Assignment: organization-defined controls] to ensure that only [Assignment: organization-defined individuals or systems] receive the following information, system components, or devices: [Assignment: organization-defined information, system components, or devices].\n\nTechniques employed by organizations to ensure that only designated systems or individuals receive certain information, system components, or devices include sending authenticators via an approved courier service but requiring recipients to show some form of government-issued photographic identification as a condition of receipt.", "external_references": [ { @@ -14221,12 +14221,12 @@ } ], "id": "course-of-action--165f9ecf-f871-4cac-a720-96f2b0a65a2d", - "modified": "2021-01-06T18:30:53.907Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Out-of-band Channels | Ensure Delivery and Transmission", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.907Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Employ the following operations security controls to protect key organizational information throughout the system development life cycle: [Assignment: organization-defined operations security controls].\n\nOperations security (OPSEC) is a systematic process by which potential adversaries can be denied information about the capabilities and intentions of organizations by identifying, controlling, and protecting generally unclassified information that specifically relates to the planning and execution of sensitive organizational activities. The OPSEC process involves five steps: identification of critical information, analysis of threats, analysis of vulnerabilities, assessment of risks, and the application of appropriate countermeasures. OPSEC controls are applied to organizational systems and the environments in which those systems operate. OPSEC controls protect the confidentiality of information, including limiting the sharing of information with suppliers, potential suppliers, and other non-organizational elements and individuals. Information critical to organizational mission and business functions includes user identities, element uses, suppliers, supply chain processes, functional requirements, security requirements, system design specifications, testing and evaluation protocols, and security control implementation details.", "external_references": [ { @@ -14235,12 +14235,12 @@ } ], "id": "course-of-action--50a89b9a-6036-406d-9c8d-cbaf8c96adba", - "modified": "2021-01-06T18:30:53.907Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Operations Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.907Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Maintain a separate execution domain for each executing system process.\n\nSystems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each system process has a distinct address space so that communication between processes is performed in a manner controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces. Process isolation technologies, including sandboxing or virtualization, logically separate software and firmware from other software, firmware, and data. Process isolation helps limit the access of potentially untrusted software to other system resources. The capability to maintain separate execution domains is available in commercial operating systems that employ multi-state processor technologies.", "external_references": [ { @@ -14249,12 +14249,12 @@ } ], "id": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "modified": "2021-01-06T18:30:53.907Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Process Isolation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.908Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Implement hardware separation mechanisms to facilitate process isolation.\n\nHardware-based separation of system processes is generally less susceptible to compromise than software-based separation, thus providing greater assurance that the separation will be enforced. Hardware separation mechanisms include hardware memory management.", "external_references": [ { @@ -14263,12 +14263,12 @@ } ], "id": "course-of-action--0ece8721-796c-4be3-b785-d98dd89cbaa2", - "modified": "2021-01-06T18:30:53.908Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Process Isolation | Hardware Separation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.908Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Maintain a separate execution domain for each thread in [Assignment: organization-defined multi-threaded processing].\n\nNone.", "external_references": [ { @@ -14277,12 +14277,12 @@ } ], "id": "course-of-action--55f5fe32-1fe6-4bb8-9b90-087200936597", - "modified": "2021-01-06T18:30:53.908Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Process Isolation | Separate Execution Domain Per Thread", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.908Z", + "created": "2021-01-13T01:52:41.687Z", "description": "Protect external and internal [Assignment: organization-defined wireless links] from the following signal parameter attacks: [Assignment: organization-defined types of signal parameter attacks or references to sources for such attacks].\n\nWireless link protection applies to internal and external wireless communication links that may be visible to individuals who are not authorized system users. Adversaries can exploit the signal parameters of wireless links if such links are not adequately protected. There are many ways to exploit the signal parameters of wireless links to gain intelligence, deny service, or spoof system users. Protection of wireless links reduces the impact of attacks that are unique to wireless systems. If organizations rely on commercial service providers for transmission services as commodity items rather than as fully dedicated services, it may not be possible to implement wireless link protections to the extent necessary to meet organizational security requirements.", "external_references": [ { @@ -14291,12 +14291,12 @@ } ], "id": "course-of-action--2d654a0d-6287-4680-aefb-2e60805107a9", - "modified": "2021-01-06T18:30:53.908Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Wireless Link Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.908Z", + "created": "2021-01-13T01:52:41.687Z", "description": "Implement cryptographic mechanisms that achieve [Assignment: organization-defined level of protection] against the effects of intentional electromagnetic interference.\n\nThe implementation of cryptographic mechanisms for electromagnetic interference protects systems against intentional jamming that might deny or impair communications by ensuring that wireless spread spectrum waveforms used to provide anti-jam protection are not predictable by unauthorized individuals. The implementation of cryptographic mechanisms may also coincidentally mitigate the effects of unintentional jamming due to interference from legitimate transmitters that share the same spectrum. Mission requirements, projected threats, concept of operations, and laws, executive orders, directives, regulations, policies, and standards determine levels of wireless link availability, cryptography needed, and performance.", "external_references": [ { @@ -14305,12 +14305,12 @@ } ], "id": "course-of-action--2254fc91-22d1-4ab0-bd51-bab7fb4ee451", - "modified": "2021-01-06T18:30:53.908Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Wireless Link Protection | Electromagnetic Interference", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.908Z", + "created": "2021-01-13T01:52:41.687Z", "description": "Implement cryptographic mechanisms to reduce the detection potential of wireless links to [Assignment: organization-defined level of reduction].\n\nThe implementation of cryptographic mechanisms to reduce detection potential is used for covert communications and to protect wireless transmitters from geo-location. It also ensures that the spread spectrum waveforms used to achieve a low probability of detection are not predictable by unauthorized individuals. Mission requirements, projected threats, concept of operations, and applicable laws, executive orders, directives, regulations, policies, and standards determine the levels to which wireless links are undetectable.", "external_references": [ { @@ -14319,12 +14319,12 @@ } ], "id": "course-of-action--c3b2eb71-254c-498c-baaa-8966bb91586f", - "modified": "2021-01-06T18:30:53.908Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Wireless Link Protection | Reduce Detection Potential", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.687Z", "description": "Implement cryptographic mechanisms to identify and reject wireless transmissions that are deliberate attempts to achieve imitative or manipulative communications deception based on signal parameters.\n\nThe implementation of cryptographic mechanisms to identify and reject imitative or manipulative communications ensures that the signal parameters of wireless transmissions are not predictable by unauthorized individuals. Such unpredictability reduces the probability of imitative or manipulative communications deception based on signal parameters alone.", "external_references": [ { @@ -14333,12 +14333,12 @@ } ], "id": "course-of-action--f59aa9a4-6842-4dda-87d4-3715a7ebae88", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Wireless Link Protection | Imitative or Manipulative Communications Deception", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.687Z", "description": "Implement cryptographic mechanisms to prevent the identification of [Assignment: organization-defined wireless transmitters] by using the transmitter signal parameters.\n\nThe implementation of cryptographic mechanisms to prevent the identification of wireless transmitters protects against the unique identification of wireless transmitters for the purposes of intelligence exploitation by ensuring that anti-fingerprinting alterations to signal parameters are not predictable by unauthorized individuals. It also provides anonymity when required. Radio fingerprinting techniques identify the unique signal parameters of transmitters to fingerprint such transmitters for purposes of tracking and mission or user identification.", "external_references": [ { @@ -14347,12 +14347,12 @@ } ], "id": "course-of-action--097427ad-60fc-4cfc-8b18-ee9fa545759c", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Wireless Link Protection | Signal Parameter Identification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.687Z", "description": "[Selection: Physically; Logically] disable or remove [Assignment: organization-defined connection ports or input/output devices] on the following systems or system components: [Assignment: organization-defined systems or system components].\n\nConnection ports include Universal Serial Bus (USB), Thunderbolt, and Firewire (IEEE 1394). Input/output (I/O) devices include compact disc and digital versatile disc drives. Disabling or removing such connection ports and I/O devices helps prevent the exfiltration of information from systems and the introduction of malicious code from those ports or devices. Physically disabling or removing ports and/or devices is the stronger action.", "external_references": [ { @@ -14361,12 +14361,12 @@ } ], "id": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Port and I/O Device Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.688Z", "description": "a. Prohibit [Selection (one or more): the use of devices possessing [Assignment: organization-defined environmental sensing capabilities] in [Assignment: organization-defined facilities, areas, or systems]\n ; the remote activation of environmental sensing capabilities on organizational systems or system components with the following exceptions; \n [Assignment: organization-defined exceptions where remote activation of sensors is allowed]\n ]; and\nb. Provide an explicit indication of sensor use to [Assignment: organization-defined class of users].\n\nSensor capability and data applies to types of systems or system components characterized as mobile devices, such as cellular telephones, smart phones, and tablets. Mobile devices often include sensors that can collect and record data regarding the environment where the system is in use. Sensors that are embedded within mobile devices include microphones, cameras, Global Positioning System (GPS) mechanisms, and accelerometers. While the sensors on mobiles devices provide an important function, if activated covertly, such devices can potentially provide a means for adversaries to learn valuable information about individuals and organizations. For example, remotely activating the GPS function on a mobile device could provide an adversary with the ability to track the movements of an individual. Organizations may prohibit individuals from bringing cellular telephones or digital cameras into certain designated facilities or controlled areas within facilities where classified information is stored or sensitive conversations are taking place.", "external_references": [ { @@ -14375,12 +14375,12 @@ } ], "id": "course-of-action--e9ab1931-5d67-4fc4-8c60-ab429163f67d", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.688Z", "description": "Verify that the system is configured so that data or information collected by the [Assignment: organization-defined sensors] is only reported to authorized individuals or roles.\n\nIn situations where sensors are activated by authorized individuals, it is still possible that the data or information collected by the sensors will be sent to unauthorized entities.", "external_references": [ { @@ -14389,12 +14389,12 @@ } ], "id": "course-of-action--29870725-0e0c-47e8-94db-8ed047c959c6", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data | Reporting to Authorized Individuals or Roles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.688Z", "description": "Employ the following measures so that data or information collected by [Assignment: organization-defined sensors] is only used for authorized purposes: [Assignment: organization-defined measures].\n\nInformation collected by sensors for a specific authorized purpose could be misused for some unauthorized purpose. For example, GPS sensors that are used to support traffic navigation could be misused to track the movements of individuals. Measures to mitigate such activities include additional training to help ensure that authorized individuals do not abuse their authority and, in the case where sensor data is maintained by external parties, contractual restrictions on the use of such data.", "external_references": [ { @@ -14403,12 +14403,12 @@ } ], "id": "course-of-action--c04d24d4-c706-4b3c-af66-868b62e1322a", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data | Authorized Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.688Z", "description": "", "external_references": [ { @@ -14417,12 +14417,12 @@ } ], "id": "course-of-action--394a0a9c-2b86-4022-8aea-c7b12efb24a3", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data | Prohibit Use of Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.688Z", "description": "Employ the following measures to facilitate an individual's awareness that personally identifiable information is being collected by [Assignment: organization-defined sensors]: [Assignment: organization-defined measures].\n\nAwareness that organizational sensors are collecting data enables individuals to more effectively engage in managing their privacy. Measures can include conventional written notices and sensor configurations that make individuals directly or indirectly aware through other devices that the sensor is collecting information. The usability and efficacy of the notice are important considerations.", "external_references": [ { @@ -14431,12 +14431,12 @@ } ], "id": "course-of-action--0d758db0-875d-4956-9853-1a6f80b405c0", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data | Notice of Collection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.688Z", "description": "Employ [Assignment: organization-defined sensors] that are configured to minimize the collection of information about individuals that is not needed.\n\nAlthough policies to control for authorized use can be applied to information once it is collected, minimizing the collection of information that is not needed mitigates privacy risk at the system entry point and mitigates the risk of policy control failures. Sensor configurations include the obscuring of human features, such as blurring or pixelating flesh tones.", "external_references": [ { @@ -14445,12 +14445,12 @@ } ], "id": "course-of-action--9c5cd646-cad2-4d66-96e8-4d3b08e7776f", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.688Z", "name": "Sensor Capability and Data | Collection Minimization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.689Z", "description": "a. Establish usage restrictions and implementation guidelines for the following system components: [Assignment: organization-defined system components]; and\nb. Authorize, monitor, and control the use of such components within the system.\n\nUsage restrictions apply to all system components including but not limited to mobile code, mobile devices, wireless access, and wired and wireless peripheral components (e.g., copiers, printers, scanners, optical devices, and other similar technologies). The usage restrictions and implementation guidelines are based on the potential for system components to cause damage to the system and help to ensure that only authorized system use occurs.", "external_references": [ { @@ -14459,12 +14459,12 @@ } ], "id": "course-of-action--315acd74-515d-4c94-bc55-d7c8ff1e033e", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Usage Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Employ a detonation chamber capability within [Assignment: organization-defined system, system component, or location].\n\nDetonation chambers, also known as dynamic execution environments, allow organizations to open email attachments, execute untrusted or suspicious applications, and execute Universal Resource Locator requests in the safety of an isolated environment or a virtualized sandbox. Protected and isolated execution environments provide a means of determining whether the associated attachments or applications contain malicious code. While related to the concept of deception nets, the employment of detonation chambers is not intended to maintain a long-term environment in which adversaries can operate and their actions can be observed. Rather, detonation chambers are intended to quickly identify malicious code and either reduce the likelihood that the code is propagated to user environments of operation or prevent such propagation completely.", "external_references": [ { @@ -14473,12 +14473,12 @@ } ], "id": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Detonation Chambers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Synchronize system clocks within and between systems and system components.\n\nTime synchronization of system clocks is essential for the correct execution of many system services, including identification and authentication processes that involve certificates and time-of-day restrictions as part of access control. Denial of service or failure to deny expired credentials may result without properly synchronized clocks within and between systems and system components. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC. The granularity of time measurements refers to the degree of synchronization between system clocks and reference clocks, such as clocks synchronizing within hundreds of milliseconds or tens of milliseconds. Organizations may define different time granularities for system components. Time service can be critical to other security capabilities'such as access control and identification and authentication'depending on the nature of the mechanisms used to support the capabilities.", "external_references": [ { @@ -14487,12 +14487,12 @@ } ], "id": "course-of-action--770b5076-1809-4f08-8273-685796ff7baa", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "System Time Synchronization", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.689Z", "description": "(a) Compare the internal system clocks [Assignment: organization-defined frequency] with [Assignment: organization-defined authoritative time source]; and\n(b) Synchronize the internal system clocks to the authoritative time source when the time difference is greater than [Assignment: organization-defined time period].\n\nSynchronization of internal system clocks with an authoritative source provides uniformity of time stamps for systems with multiple system clocks and systems connected over a network.", "external_references": [ { @@ -14501,12 +14501,12 @@ } ], "id": "course-of-action--7f76f719-1995-43ce-b893-a419504246ee", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "System Time Synchronization | Synchronization with Authoritative Time Source", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.689Z", "description": "(a) Identify a secondary authoritative time source that is in a different geographic region than the primary authoritative time source; and\n(b) Synchronize the internal system clocks to the secondary authoritative time source if the primary authoritative time source is unavailable.\n\nIt may be necessary to employ geolocation information to determine that the secondary authoritative time source is in a different geographic region.", "external_references": [ { @@ -14515,12 +14515,12 @@ } ], "id": "course-of-action--20f37010-27bb-4d39-86b0-50c7ffcaaa33", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "System Time Synchronization | Secondary Authoritative Time Source", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Implement a policy enforcement mechanism [Selection: physically; logically] between the physical and/or network interfaces for the connecting security domains.\n\nFor logical policy enforcement mechanisms, organizations avoid creating a logical path between interfaces to prevent the ability to bypass the policy enforcement mechanism. For physical policy enforcement mechanisms, the robustness of physical isolation afforded by the physical implementation of policy enforcement to preclude the presence of logical covert channels penetrating the security domain may be needed. Contact ncdsmo@nsa.gov for more information.", "external_references": [ { @@ -14529,12 +14529,12 @@ } ], "id": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Cross Domain Policy Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Establish [Assignment: organization-defined alternate communications paths] for system operations organizational command and control.\n\nAn incident, whether adversarial- or nonadversarial-based, can disrupt established communications paths used for system operations and organizational command and control. Alternate communications paths reduce the risk of all communications paths being affected by the same incident. To compound the problem, the inability of organizational officials to obtain timely information about disruptions or to provide timely direction to operational elements after a communications path incident, can impact the ability of the organization to respond to such incidents in a timely manner. Establishing alternate communications paths for command and control purposes, including designating alternative decision makers if primary decision makers are unavailable and establishing the extent and limitations of their actions, can greatly facilitate the organization's ability to continue to operate and take appropriate actions during an incident.", "external_references": [ { @@ -14543,12 +14543,12 @@ } ], "id": "course-of-action--89e4d4a0-4671-4931-8b8c-7e9f74d02f06", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Alternate Communications Paths", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.690Z", "description": "Relocate [Assignment: organization-defined sensors and monitoring capabilities] to [Assignment: organization-defined locations] under the following conditions or circumstances: [Assignment: organization-defined conditions or circumstances].\n\nAdversaries may take various paths and use different approaches as they move laterally through an organization (including its systems) to reach their target or as they attempt to exfiltrate information from the organization. The organization often only has a limited set of monitoring and detection capabilities, and they may be focused on the critical or likely infiltration or exfiltration paths. By using communications paths that the organization typically does not monitor, the adversary can increase its chances of achieving its desired goals. By relocating its sensors or monitoring capabilities to new locations, the organization can impede the adversary's ability to achieve its goals. The relocation of the sensors or monitoring capabilities might be done based on threat information that the organization has acquired or randomly to confuse the adversary and make its lateral transition through the system or organization more challenging.", "external_references": [ { @@ -14557,12 +14557,12 @@ } ], "id": "course-of-action--23bd53cb-6faf-4570-8fce-597d497558a9", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Sensor Relocation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.690Z", "description": "Dynamically relocate [Assignment: organization-defined sensors and monitoring capabilities] to [Assignment: organization-defined locations] under the following conditions or circumstances: [Assignment: organization-defined conditions or circumstances].\n\nNone.", "external_references": [ { @@ -14571,12 +14571,12 @@ } ], "id": "course-of-action--dcedd3af-deb6-4f0f-80a0-db2749a1d506", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Sensor Relocation | Dynamic Relocation of Sensors or Monitoring Capabilities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.690Z", "description": "Implement hardware-enforced separation and policy enforcement mechanisms between [Assignment: organization-defined security domains].\n\nSystem owners may require additional strength of mechanism and robustness to ensure domain separation and policy enforcement for specific types of threats and environments of operation. Hardware-enforced separation and policy enforcement provide greater strength of mechanism than software-enforced separation and policy enforcement.", "external_references": [ { @@ -14585,12 +14585,12 @@ } ], "id": "course-of-action--8f457f00-e1f4-4738-b123-58068f40ccda", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Hardware-enforced Separation and Policy Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.690Z", "description": "Implement software-enforced separation and policy enforcement mechanisms between [Assignment: organization-defined security domains].\n\nSystem owners may require additional strength of mechanism to ensure domain separation and policy enforcement for specific types of threats and environments of operation.", "external_references": [ { @@ -14599,12 +14599,12 @@ } ], "id": "course-of-action--76c092eb-ae57-41c0-bb55-f3576b19a58c", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Software-enforced Separation and Policy Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.690Z", "description": "a. Employ hardware-based, write-protect for [Assignment: organization-defined system firmware components]; and\nb. Implement specific procedures for [Assignment: organization-defined authorized individuals] to manually disable hardware write-protect for firmware modifications and re-enable the write-protect prior to returning to operational mode.\n\nNone.", "external_references": [ { @@ -14613,12 +14613,12 @@ } ], "id": "course-of-action--42020086-7867-4b83-8068-38f45ca2321e", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Hardware-based Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.690Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] system and information integrity policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the system and information integrity policy and the associated system and information integrity controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the system and information integrity policy and procedures; and\nc. Review and update the current system and information integrity:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nSystem and information integrity policy and procedures address the controls in the SI family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of system and information integrity policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to system and information integrity policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -14627,12 +14627,12 @@ } ], "id": "course-of-action--5e8b9678-9b39-4d0f-b771-735da73403cd", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.690Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.691Z", "description": "a. Identify, report, and correct system flaws;\nb. Test software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;\nc. Install security-relevant software and firmware updates within [Assignment: organization-defined time period] of the release of the updates; and\nd. Incorporate flaw remediation into the organizational configuration management process.\n\nThe need to remediate system flaws applies to all types of software and firmware. Organizations identify systems affected by software flaws, including potential vulnerabilities resulting from those flaws, and report this information to designated organizational personnel with information security and privacy responsibilities. Security-relevant updates include patches, service packs, and malicious code signatures. Organizations also address flaws discovered during assessments, continuous monitoring, incident response activities, and system error handling. By incorporating flaw remediation into configuration management processes, required remediation actions can be tracked and verified.\nOrganization-defined time periods for updating security-relevant software and firmware may vary based on a variety of risk factors, including the security category of the system, the criticality of the update (i.e., severity of the vulnerability related to the discovered flaw), the organizational risk tolerance, the mission supported by the system, or the threat environment. Some types of flaw remediation may require more testing than other types. Organizations determine the type of testing needed for the specific type of flaw remediation activity under consideration and the types of changes that are to be configuration-managed. In some situations, organizations may determine that the testing of software or firmware updates is not necessary or practical, such as when implementing simple malicious code signature updates. In testing decisions, organizations consider whether security-relevant software or firmware updates are obtained from authorized sources with appropriate digital signatures.", "external_references": [ { @@ -14641,12 +14641,12 @@ } ], "id": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.691Z", "description": "", "external_references": [ { @@ -14655,12 +14655,12 @@ } ], "id": "course-of-action--8142cefc-8340-43e4-b278-2269fea4f756", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Central Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.691Z", "description": "Determine if system components have applicable security-relevant software and firmware updates installed using [Assignment: organization-defined automated mechanisms]\n [Assignment: organization-defined frequency].\n\nAutomated mechanisms can track and determine the status of known flaws for system components.", "external_references": [ { @@ -14669,12 +14669,12 @@ } ], "id": "course-of-action--be89260b-80b6-40ef-8177-f39ff4a57932", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Automated Flaw Remediation Status", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.691Z", "description": "(a) Measure the time between flaw identification and flaw remediation; and\n(b) Establish the following benchmarks for taking corrective actions: [Assignment: organization-defined benchmarks].\n\nOrganizations determine the time it takes on average to correct system flaws after such flaws have been identified and subsequently establish organizational benchmarks (i.e., time frames) for taking corrective actions. Benchmarks can be established by the type of flaw or the severity of the potential vulnerability if the flaw can be exploited.", "external_references": [ { @@ -14683,12 +14683,12 @@ } ], "id": "course-of-action--f1d8e819-8179-4947-b501-5fb198f1c36e", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Time to Remediate Flaws and Benchmarks for Corrective Actions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.691Z", "description": "Employ automated patch management tools to facilitate flaw remediation to the following system components: [Assignment: organization-defined system components].\n\nUsing automated tools to support patch management helps to ensure the timeliness and completeness of system patching operations.", "external_references": [ { @@ -14697,12 +14697,12 @@ } ], "id": "course-of-action--6df0ac31-a595-4b64-90f0-cc45316f9f6b", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Automated Patch Management Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.691Z", "description": "Install [Assignment: organization-defined security-relevant software and firmware updates] automatically to [Assignment: organization-defined system components].\n\nDue to system integrity and availability concerns, organizations consider the methodology used to carry out automatic updates. Organizations balance the need to ensure that the updates are installed as soon as possible with the need to maintain configuration management and control with any mission or operational impacts that automatic updates might impose.", "external_references": [ { @@ -14711,12 +14711,12 @@ } ], "id": "course-of-action--7f2c02b0-56fb-4440-a6a8-332bc04455a7", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Automatic Software and Firmware Updates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.691Z", "description": "Remove previous versions of [Assignment: organization-defined software and firmware components] after updated versions have been installed.\n\nPrevious versions of software or firmware components that are not removed from the system after updates have been installed may be exploited by adversaries. Some products may automatically remove previous versions of software and firmware from the system.", "external_references": [ { @@ -14725,12 +14725,12 @@ } ], "id": "course-of-action--a692efef-160c-4769-9019-bf051b0ca4be", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation | Removal of Previous Versions of Software and Firmware", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.692Z", "description": "a. Implement [Selection (one or more): signature based; non-signature based] malicious code protection mechanisms at system entry and exit points to detect and eradicate malicious code;\nb. Automatically update malicious code protection mechanisms as new releases are available in accordance with organizational configuration management policy and procedures;\nc. Configure malicious code protection mechanisms to:\n1. Perform periodic scans of the system [Assignment: organization-defined frequency] and real-time scans of files from external sources at [Selection (one or more): endpoint; network entry and exit points] as the files are downloaded, opened, or executed in accordance with organizational policy; and\n2. [Selection (one or more): block malicious code; quarantine malicious code; take [Assignment: organization-defined action]\n ]; and send alert to [Assignment: organization-defined personnel or roles] in response to malicious code detection; and\nd. Address the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the system.\n\nSystem entry and exit points include firewalls, remote access servers, workstations, electronic mail servers, web servers, proxy servers, notebook computers, and mobile devices. Malicious code includes viruses, worms, Trojan horses, and spyware. Malicious code can also be encoded in various formats contained within compressed or hidden files or hidden in files using techniques such as steganography. Malicious code can be inserted into systems in a variety of ways, including by electronic mail, the world-wide web, and portable storage devices. Malicious code insertions occur through the exploitation of system vulnerabilities. A variety of technologies and methods exist to limit or eliminate the effects of malicious code.\nMalicious code protection mechanisms include both signature- and nonsignature-based technologies. Nonsignature-based detection mechanisms include artificial intelligence techniques that use heuristics to detect, analyze, and describe the characteristics or behavior of malicious code and to provide controls against such code for which signatures do not yet exist or for which existing signatures may not be effective. Malicious code for which active signatures do not yet exist or may be ineffective includes polymorphic malicious code (i.e., code that changes signatures when it replicates). Nonsignature-based mechanisms also include reputation-based technologies. In addition to the above technologies, pervasive configuration management, comprehensive software integrity controls, and anti-exploitation software may be effective in preventing the execution of unauthorized code. Malicious code may be present in commercial off-the-shelf software as well as custom-built software and could include logic bombs, backdoors, and other types of attacks that could affect organizational mission and business functions.\nIn situations where malicious code cannot be detected by detection methods or technologies, organizations rely on other types of controls, including secure coding practices, configuration management and control, trusted procurement processes, and monitoring practices to ensure that software does not perform functions other than the functions intended. Organizations may determine that, in response to the detection of malicious code, different actions may be warranted. For example, organizations can define actions in response to malicious code detection during periodic scans, the detection of malicious downloads, or the detection of maliciousness when attempting to open or execute files.", "external_references": [ { @@ -14739,12 +14739,12 @@ } ], "id": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.692Z", "description": "", "external_references": [ { @@ -14753,12 +14753,12 @@ } ], "id": "course-of-action--0014bc18-45ec-4f98-a5b2-e13c8dcfc334", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Central Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.914Z", + "created": "2021-01-13T01:52:41.692Z", "description": "", "external_references": [ { @@ -14767,12 +14767,12 @@ } ], "id": "course-of-action--9f87a966-4842-40ea-94cd-791ecc09d3d7", - "modified": "2021-01-06T18:30:53.914Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Automatic Updates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.914Z", + "created": "2021-01-13T01:52:41.692Z", "description": "", "external_references": [ { @@ -14781,12 +14781,12 @@ } ], "id": "course-of-action--d5937be5-8c5b-4ca2-9d2f-7f02dcdac7f7", - "modified": "2021-01-06T18:30:53.914Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Non-privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.914Z", + "created": "2021-01-13T01:52:41.692Z", "description": "Update malicious code protection mechanisms only when directed by a privileged user.\n\nProtection mechanisms for malicious code are typically categorized as security-related software and, as such, are only updated by organizational personnel with appropriate access privileges.", "external_references": [ { @@ -14795,12 +14795,12 @@ } ], "id": "course-of-action--951d936b-4552-4269-8bfe-04dbf40514b4", - "modified": "2021-01-06T18:30:53.914Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Updates Only by Privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.914Z", + "created": "2021-01-13T01:52:41.692Z", "description": "", "external_references": [ { @@ -14809,12 +14809,12 @@ } ], "id": "course-of-action--79e2ec70-b552-4b52-94b2-8a52d588016c", - "modified": "2021-01-06T18:30:53.914Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Portable Storage Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.692Z", "description": "(a) Test malicious code protection mechanisms [Assignment: organization-defined frequency] by introducing known benign code into the system; and\n(b) Verify that the detection of the code and the associated incident reporting occur.\n\nNone.", "external_references": [ { @@ -14823,12 +14823,12 @@ } ], "id": "course-of-action--41b5cef0-5095-4f2f-9c53-89d6fb7dfd05", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection | Testing and Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "", "external_references": [ { @@ -14837,12 +14837,12 @@ } ], "id": "course-of-action--efcfaef7-eee8-4706-8f89-5b50b6e62944", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "Malicious Code Protection | Nonsignature-based Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "(a) Detect the following unauthorized operating system commands through the kernel application programming interface on [Assignment: organization-defined system hardware components]: [Assignment: organization-defined unauthorized operating system commands]; and\n(b) [Selection (one or more): issue a warning; audit the command execution; prevent the execution of the command].\n\nDetecting unauthorized commands can be applied to critical interfaces other than kernel-based interfaces, including interfaces with virtual machines and privileged applications. Unauthorized operating system commands include commands for kernel functions from system processes that are not trusted to initiate such commands as well as commands for kernel functions that are suspicious even though commands of that type are reasonable for processes to initiate. Organizations can define the malicious commands to be detected by a combination of command types, command classes, or specific instances of commands. Organizations can also define hardware components by component type, component, component location in the network, or a combination thereof. Organizations may select different actions for different types, classes, or instances of malicious commands.", "external_references": [ { @@ -14851,12 +14851,12 @@ } ], "id": "course-of-action--ea6ced30-4fb8-4ef1-98b8-f8a9901eede7", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "Malicious Code Protection | Detect Unauthorized Commands", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "", "external_references": [ { @@ -14865,12 +14865,12 @@ } ], "id": "course-of-action--aa18449d-6a43-4e19-9082-859bc2c8c02b", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "Malicious Code Protection | Authenticate Remote Commands", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "(a) Employ the following tools and techniques to analyze the characteristics and behavior of malicious code: [Assignment: organization-defined tools and techniques]; and\n(b) Incorporate the results from malicious code analysis into organizational incident response and flaw remediation processes.\n\nThe use of malicious code analysis tools provides organizations with a more in-depth understanding of adversary tradecraft (i.e., tactics, techniques, and procedures) and the functionality and purpose of specific instances of malicious code. Understanding the characteristics of malicious code facilitates effective organizational responses to current and future threats. Organizations can conduct malicious code analyses by employing reverse engineering techniques or by monitoring the behavior of executing code.", "external_references": [ { @@ -14879,12 +14879,12 @@ } ], "id": "course-of-action--95372656-1dc0-4b66-b468-cd0a04813b1a", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "Malicious Code Protection | Malicious Code Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "a. Monitor the system to detect:\n1. Attacks and indicators of potential attacks in accordance with the following monitoring objectives: [Assignment: organization-defined monitoring objectives]; and\n2. Unauthorized local, network, and remote connections;\nb. Identify unauthorized use of the system through the following techniques and methods: [Assignment: organization-defined techniques and methods];\nc. Invoke internal monitoring capabilities or deploy monitoring devices:\n1. Strategically within the system to collect organization-determined essential information; and\n2. At ad hoc locations within the system to track specific types of transactions of interest to the organization;\nd. Analyze detected events and anomalies;\ne. Adjust the level of system monitoring activity when there is a change in risk to organizational operations and assets, individuals, other organizations, or the Nation;\nf. Obtain legal opinion regarding system monitoring activities; and\ng. Provide [Assignment: organization-defined system monitoring information] to [Assignment: organization-defined personnel or roles]\n [Selection (one or more): as needed; \n [Assignment: organization-defined frequency]\n ].\n\nSystem monitoring includes external and internal monitoring. External monitoring includes the observation of events occurring at external interfaces to the system. Internal monitoring includes the observation of events occurring within the system. Organizations monitor systems by observing audit activities in real time or by observing other system aspects such as access patterns, characteristics of access, and other actions. The monitoring objectives guide and inform the determination of the events. System monitoring capabilities are achieved through a variety of tools and techniques, including intrusion detection and prevention systems, malicious code protection software, scanning tools, audit record monitoring software, and network monitoring software.\nDepending on the security architecture, the distribution and configuration of monitoring devices may impact throughput at key internal and external boundaries as well as at other locations across a network due to the introduction of network throughput latency. If throughput management is needed, such devices are strategically located and deployed as part of an established organization-wide security architecture. Strategic locations for monitoring devices include selected perimeter locations and near key servers and server farms that support critical applications. Monitoring devices are typically employed at the managed interfaces associated with controls SC-7 and AC-17. The information collected is a function of the organizational monitoring objectives and the capability of systems to support such objectives. Specific types of transactions of interest include Hypertext Transfer Protocol (HTTP) traffic that bypasses HTTP proxies. System monitoring is an integral part of organizational continuous monitoring and incident response programs, and output from system monitoring serves as input to those programs. System monitoring requirements, including the need for specific types of system monitoring, may be referenced in other controls (e.g., AC-2g, AC-2(7), AC-2(12)(a), AC-17(1), AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, MA-3a, MA-4a, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18b, SC-43b). Adjustments to levels of system monitoring are based on law enforcement information, intelligence information, or other sources of information. The legality of system monitoring activities is based on applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -14893,12 +14893,12 @@ } ], "id": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "System Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.916Z", + "created": "2021-01-13T01:52:41.693Z", "description": "Connect and configure individual intrusion detection tools into a system-wide intrusion detection system.\n\nLinking individual intrusion detection tools into a system-wide intrusion detection system provides additional coverage and effective detection capabilities. The information contained in one intrusion detection tool can be shared widely across the organization, making the system-wide detection capability more robust and powerful.", "external_references": [ { @@ -14907,12 +14907,12 @@ } ], "id": "course-of-action--8533d13e-8029-40ed-a5f9-a8272c9c47d8", - "modified": "2021-01-06T18:30:53.916Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "System Monitoring | System-wide Intrusion Detection System", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.916Z", + "created": "2021-01-13T01:52:41.694Z", "description": "Employ automated tools and mechanisms to support near real-time analysis of events.\n\nAutomated tools and mechanisms include host-based, network-based, transport-based, or storage-based event monitoring tools and mechanisms or security information and event management (SIEM) technologies that provide real-time analysis of alerts and notifications generated by organizational systems. Automated monitoring techniques can create unintended privacy risks because automated controls may connect to external or otherwise unrelated systems. The matching of records between these systems may create linkages with unintended consequences. Organizations assess and document these risks in their privacy impact assessment and make determinations that are in alignment with their privacy program plan.", "external_references": [ { @@ -14921,12 +14921,12 @@ } ], "id": "course-of-action--0674a0d7-3eb5-40d2-8aac-a9e87158d7ce", - "modified": "2021-01-06T18:30:53.916Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | Automated Tools and Mechanisms for Real-time Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.916Z", + "created": "2021-01-13T01:52:41.694Z", "description": "Employ automated tools and mechanisms to integrate intrusion detection tools and mechanisms into access control and flow control mechanisms.\n\nUsing automated tools and mechanisms to integrate intrusion detection tools and mechanisms into access and flow control mechanisms facilitates a rapid response to attacks by enabling the reconfiguration of mechanisms in support of attack isolation and elimination.", "external_references": [ { @@ -14935,12 +14935,12 @@ } ], "id": "course-of-action--6004f183-96a9-496a-962a-b08cf5f95f4e", - "modified": "2021-01-06T18:30:53.916Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | Automated Tool and Mechanism Integration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.916Z", + "created": "2021-01-13T01:52:41.694Z", "description": "(a) Determine criteria for unusual or unauthorized activities or conditions for inbound and outbound communications traffic;\n(b) Monitor inbound and outbound communications traffic [Assignment: organization-defined frequency] for [Assignment: organization-defined unusual or unauthorized activities or conditions].\n\nUnusual or unauthorized activities or conditions related to system inbound and outbound communications traffic includes internal traffic that indicates the presence of malicious code or unauthorized use of legitimate code or credentials within organizational systems or propagating among system components, signaling to external systems, and the unauthorized exporting of information. Evidence of malicious code or unauthorized use of legitimate code or credentials is used to identify potentially compromised systems or system components.", "external_references": [ { @@ -14949,12 +14949,12 @@ } ], "id": "course-of-action--d9f22dbc-abe0-45a3-a727-6dacd6d0361e", - "modified": "2021-01-06T18:30:53.916Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | Inbound and Outbound Communications Traffic", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.917Z", + "created": "2021-01-13T01:52:41.694Z", "description": "Alert [Assignment: organization-defined personnel or roles] when the following system-generated indications of compromise or potential compromise occur: [Assignment: organization-defined compromise indicators].\n\nAlerts may be generated from a variety of sources, including audit records or inputs from malicious code protection mechanisms, intrusion detection or prevention mechanisms, or boundary protection devices such as firewalls, gateways, and routers. Alerts can be automated and may be transmitted telephonically, by electronic mail messages, or by text messaging. Organizational personnel on the alert notification list can include system administrators, mission or business owners, system owners, information owners/stewards, senior agency information security officers, senior agency officials for privacy, system security officers, or privacy officers. In contrast to alerts generated by the system, alerts generated by organizations in SI-4(12) focus on information sources external to the system, such as suspicious activity reports and reports on potential insider threats.", "external_references": [ { @@ -14963,12 +14963,12 @@ } ], "id": "course-of-action--9d096bf0-111a-4a75-ad47-90b6be6bb2a6", - "modified": "2021-01-06T18:30:53.917Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | System-generated Alerts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.917Z", + "created": "2021-01-13T01:52:41.694Z", "description": "", "external_references": [ { @@ -14977,12 +14977,12 @@ } ], "id": "course-of-action--376bdd31-1713-4683-9894-8c205b80f644", - "modified": "2021-01-06T18:30:53.917Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | Restrict Non-privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.917Z", + "created": "2021-01-13T01:52:41.694Z", "description": "(a) Notify [Assignment: organization-defined incident response personnel (identified by name and/or by role)] of detected suspicious events; and\n(b) Take the following actions upon detection: [Assignment: organization-defined least-disruptive actions to terminate suspicious events].\n\nLeast-disruptive actions include initiating requests for human responses.", "external_references": [ { @@ -14991,12 +14991,12 @@ } ], "id": "course-of-action--0d718ae4-c0c3-47f8-99e8-2bb33bc21f37", - "modified": "2021-01-06T18:30:53.917Z", + "modified": "2021-01-13T01:52:41.694Z", "name": "System Monitoring | Automated Response to Suspicious Events", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.918Z", + "created": "2021-01-13T01:52:41.695Z", "description": "", "external_references": [ { @@ -15005,12 +15005,12 @@ } ], "id": "course-of-action--acaec977-ea1d-4f83-a998-4ab9fb30ddb8", - "modified": "2021-01-06T18:30:53.918Z", + "modified": "2021-01-13T01:52:41.695Z", "name": "System Monitoring | Protection of Monitoring Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.918Z", + "created": "2021-01-13T01:52:41.695Z", "description": "Test intrusion-monitoring tools and mechanisms [Assignment: organization-defined frequency].\n\nTesting intrusion-monitoring tools and mechanisms is necessary to ensure that the tools and mechanisms are operating correctly and continue to satisfy the monitoring objectives of organizations. The frequency and depth of testing depends on the types of tools and mechanisms used by organizations and the methods of deployment.", "external_references": [ { @@ -15019,12 +15019,12 @@ } ], "id": "course-of-action--65a6229f-5248-498c-a6a3-a32e7f0d018c", - "modified": "2021-01-06T18:30:53.918Z", + "modified": "2021-01-13T01:52:41.695Z", "name": "System Monitoring | Testing of Monitoring Tools and Mechanisms", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.695Z", "description": "Make provisions so that [Assignment: organization-defined encrypted communications traffic] is visible to [Assignment: organization-defined system monitoring tools and mechanisms].\n\nOrganizations balance the need to encrypt communications traffic to protect data confidentiality with the need to maintain visibility into such traffic from a monitoring perspective. Organizations determine whether the visibility requirement applies to internal encrypted traffic, encrypted traffic intended for external destinations, or a subset of the traffic types.", "external_references": [ { @@ -15033,12 +15033,12 @@ } ], "id": "course-of-action--3b9b182f-d8cc-43b4-aa05-b5236e3bfc77", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.695Z", "name": "System Monitoring | Visibility of Encrypted Communications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.695Z", "description": "Analyze outbound communications traffic at the external interfaces to the system and selected [Assignment: organization-defined interior points within the system] to discover anomalies.\n\nOrganization-defined interior points include subnetworks and subsystems. Anomalies within organizational systems include large file transfers, long-time persistent connections, attempts to access information from unexpected locations, the use of unusual protocols and ports, the use of unmonitored network protocols (e.g., IPv6 usage during IPv4 transition), and attempted communications with suspected malicious external addresses.", "external_references": [ { @@ -15047,12 +15047,12 @@ } ], "id": "course-of-action--85344e64-15d2-451a-8eb7-50b050ac3817", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.695Z", "name": "System Monitoring | Analyze Communications Traffic Anomalies", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.695Z", "description": "Alert [Assignment: organization-defined personnel or roles] using [Assignment: organization-defined automated mechanisms] when the following indications of inappropriate or unusual activities with security or privacy implications occur: [Assignment: organization-defined activities that trigger alerts].\n\nOrganizational personnel on the system alert notification list include system administrators, mission or business owners, system owners, senior agency information security officer, senior agency official for privacy, system security officers, or privacy officers. Automated organization-generated alerts are the security alerts generated by organizations and transmitted using automated means. The sources for organization-generated alerts are focused on other entities such as suspicious activity reports and reports on potential insider threats. In contrast to alerts generated by the organization, alerts generated by the system in SI-4(5) focus on information sources that are internal to the systems, such as audit records.", "external_references": [ { @@ -15061,12 +15061,12 @@ } ], "id": "course-of-action--ea80e8b3-7c6f-4af9-a846-ef7d5ee450ff", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.695Z", "name": "System Monitoring | Automated Organization-generated Alerts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.696Z", "description": "(a) Analyze communications traffic and event patterns for the system;\n(b) Develop profiles representing common traffic and event patterns; and\n(c) Use the traffic and event profiles in tuning system-monitoring devices.\n\nIdentifying and understanding common communications traffic and event patterns help organizations provide useful information to system monitoring devices to more effectively identify suspicious or anomalous traffic and events when they occur. Such information can help reduce the number of false positives and false negatives during system monitoring.", "external_references": [ { @@ -15075,12 +15075,12 @@ } ], "id": "course-of-action--de6984d8-d2a7-445b-a5a8-928f90e2412c", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Analyze Traffic and Event Patterns", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Employ a wireless intrusion detection system to identify rogue wireless devices and to detect attack attempts and potential compromises or breaches to the system.\n\nWireless signals may radiate beyond organizational facilities. Organizations proactively search for unauthorized wireless connections, including the conduct of thorough scans for unauthorized wireless access points. Wireless scans are not limited to those areas within facilities containing systems but also include areas outside of facilities to verify that unauthorized wireless access points are not connected to organizational systems.", "external_references": [ { @@ -15089,12 +15089,12 @@ } ], "id": "course-of-action--552a726a-880a-4f4d-9dd8-c93b881224d7", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Wireless Intrusion Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.919Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Employ an intrusion detection system to monitor wireless communications traffic as the traffic passes from wireless to wireline networks.\n\nWireless networks are inherently less secure than wired networks. For example, wireless networks are more susceptible to eavesdroppers or traffic analysis than wireline networks. When wireless to wireline communications exist, the wireless network could become a port of entry into the wired network. Given the greater facility of unauthorized network access via wireless access points compared to unauthorized wired network access from within the physical boundaries of the system, additional monitoring of transitioning traffic between wireless and wired networks may be necessary to detect malicious activities. Employing intrusion detection systems to monitor wireless communications traffic helps to ensure that the traffic does not contain malicious code prior to transitioning to the wireline network.", "external_references": [ { @@ -15103,12 +15103,12 @@ } ], "id": "course-of-action--616373c8-f078-4874-9d32-4a879cfda764", - "modified": "2021-01-06T18:30:53.919Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Wireless to Wireline Communications", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Correlate information from monitoring tools and mechanisms employed throughout the system.\n\nCorrelating information from different system monitoring tools and mechanisms can provide a more comprehensive view of system activity. Correlating system monitoring tools and mechanisms that typically work in isolation'including malicious code protection software, host monitoring, and network monitoring'can provide an organization-wide monitoring view and may reveal otherwise unseen attack patterns. Understanding the capabilities and limitations of diverse monitoring tools and mechanisms and how to maximize the use of information generated by those tools and mechanisms can help organizations develop, operate, and maintain effective monitoring programs. The correlation of monitoring information is especially important during the transition from older to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols).", "external_references": [ { @@ -15117,12 +15117,12 @@ } ], "id": "course-of-action--36c2cd5d-d271-4a16-9c74-0d2f78be74d4", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Correlate Monitoring Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Correlate information from monitoring physical, cyber, and supply chain activities to achieve integrated, organization-wide situational awareness.\n\nCorrelating monitoring information from a more diverse set of information sources helps to achieve integrated situational awareness. Integrated situational awareness from a combination of physical, cyber, and supply chain monitoring activities enhances the capability of organizations to more quickly detect sophisticated attacks and investigate the methods and techniques employed to carry out such attacks. In contrast to SI-4(16), which correlates the various cyber monitoring information, integrated situational awareness is intended to correlate monitoring beyond the cyber domain. Correlation of monitoring information from multiple activities may help reveal attacks on organizations that are operating across multiple attack vectors.", "external_references": [ { @@ -15131,12 +15131,12 @@ } ], "id": "course-of-action--81a93181-d4c2-455c-9aa6-ac38a983d5dd", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Integrated Situational Awareness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Analyze outbound communications traffic at external interfaces to the system and at the following interior points to detect covert exfiltration of information: [Assignment: organization-defined interior points within the system].\n\nOrganization-defined interior points include subnetworks and subsystems. Covert means that can be used to exfiltrate information include steganography.", "external_references": [ { @@ -15145,12 +15145,12 @@ } ], "id": "course-of-action--d3b47375-162b-43db-8dc7-6d94d9572f9b", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Analyze Traffic and Covert Exfiltration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.696Z", "description": "Implement [Assignment: organization-defined additional monitoring] of individuals who have been identified by [Assignment: organization-defined sources] as posing an increased level of risk.\n\nIndications of increased risk from individuals can be obtained from different sources, including personnel records, intelligence agencies, law enforcement organizations, and other sources. The monitoring of individuals is coordinated with the management, legal, security, privacy, and human resource officials who conduct such monitoring. Monitoring is conducted in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -15159,12 +15159,12 @@ } ], "id": "course-of-action--239277f8-f57f-4b6e-a316-4b924270293a", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.696Z", "name": "System Monitoring | Risk for Individuals", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.697Z", "description": "Implement the following additional monitoring of privileged users: [Assignment: organization-defined additional monitoring].\n\nPrivileged users have access to more sensitive information, including security-related information, than the general user population. Access to such information means that privileged users can potentially do greater damage to systems and organizations than non-privileged users. Therefore, implementing additional monitoring on privileged users helps to ensure that organizations can identify malicious activity at the earliest possible time and take appropriate actions.", "external_references": [ { @@ -15173,12 +15173,12 @@ } ], "id": "course-of-action--03e2d48a-bd37-4cc9-a17c-45806591e10f", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Privileged Users", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.920Z", + "created": "2021-01-13T01:52:41.697Z", "description": "Implement the following additional monitoring of individuals during [Assignment: organization-defined probationary period]: [Assignment: organization-defined additional monitoring].\n\nDuring probationary periods, employees do not have permanent employment status within organizations. Without such status or access to information that is resident on the system, additional monitoring can help identify any potentially malicious activity or inappropriate behavior.", "external_references": [ { @@ -15187,12 +15187,12 @@ } ], "id": "course-of-action--4b94a958-4cd5-4ba8-895a-004fa24dd9d6", - "modified": "2021-01-06T18:30:53.920Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Probationary Periods", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.697Z", "description": "(a) Detect network services that have not been authorized or approved by [Assignment: organization-defined authorization or approval processes]; and\n(b) [Selection (one or more): Audit; Alert [Assignment: organization-defined personnel or roles]\n ] when detected.\n\nUnauthorized or unapproved network services include services in service-oriented architectures that lack organizational verification or validation and may therefore be unreliable or serve as malicious rogues for valid services.", "external_references": [ { @@ -15201,12 +15201,12 @@ } ], "id": "course-of-action--98349552-ba71-4083-b3f4-50d06b1e356b", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Unauthorized Network Services", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.697Z", "description": "Implement the following host-based monitoring mechanisms at [Assignment: organization-defined system components]: [Assignment: organization-defined host-based monitoring mechanisms].\n\nHost-based monitoring collects information about the host (or system in which it resides). System components in which host-based monitoring can be implemented include servers, notebook computers, and mobile devices. Organizations may consider employing host-based monitoring mechanisms from multiple product developers or vendors.", "external_references": [ { @@ -15215,12 +15215,12 @@ } ], "id": "course-of-action--6dac951d-3dbe-4930-936b-a2dde415cc25", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Host-based Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.697Z", "description": "Discover, collect, and distribute to [Assignment: organization-defined personnel or roles], indicators of compromise provided by [Assignment: organization-defined sources].\n\nIndicators of compromise (IOC) are forensic artifacts from intrusions that are identified on organizational systems at the host or network level. IOCs provide valuable information on systems that have been compromised. IOCs can include the creation of registry key values. IOCs for network traffic include Universal Resource Locator or protocol elements that indicate malicious code command and control servers. The rapid distribution and adoption of IOCs can improve information security by reducing the time that systems and organizations are vulnerable to the same exploit or attack. Threat indicators, signatures, tactics, techniques, procedures, and other indicators of compromise may be available via government and non-government cooperatives, including the Forum of Incident Response and Security Teams, the United States Computer Emergency Readiness Team, the Defense Industrial Base Cybersecurity Information Sharing Program, and the CERT Coordination Center.", "external_references": [ { @@ -15229,12 +15229,12 @@ } ], "id": "course-of-action--9baa8ee7-ff08-4522-93ec-fff2c50909d2", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Indicators of Compromise", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.697Z", "description": "Provide visibility into network traffic at external and key internal system interfaces to optimize the effectiveness of monitoring devices.\n\nEncrypted traffic, asymmetric routing architectures, capacity and latency limitations, and transitioning from older to newer technologies (e.g., IPv4 to IPv6 network protocol transition) may result in blind spots for organizations when analyzing network traffic. Collecting, decrypting, pre-processing, and distributing only relevant traffic to monitoring devices can streamline the efficiency and use of devices and optimize traffic analysis.", "external_references": [ { @@ -15243,12 +15243,12 @@ } ], "id": "course-of-action--d3a2cc00-f96a-4c63-bc05-48e01a2d9267", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.697Z", "name": "System Monitoring | Optimize Network Traffic Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.698Z", "description": "a. Receive system security alerts, advisories, and directives from [Assignment: organization-defined external organizations] on an ongoing basis;\nb. Generate internal security alerts, advisories, and directives as deemed necessary;\nc. Disseminate security alerts, advisories, and directives to: [Selection (one or more): \n [Assignment: organization-defined personnel or roles]\n ; \n [Assignment: organization-defined elements within the organization]\n ; \n [Assignment: organization-defined external organizations]\n ]; and\nd. Implement security directives in accordance with established time frames, or notify the issuing organization of the degree of noncompliance.\n\nThe Cybersecurity and Infrastructure Security Agency (CISA) generates security alerts and advisories to maintain situational awareness throughout the Federal Government. Security directives are issued by OMB or other designated organizations with the responsibility and authority to issue such directives. Compliance with security directives is essential due to the critical nature of many of these directives and the potential (immediate) adverse effects on organizational operations and assets, individuals, other organizations, and the Nation should the directives not be implemented in a timely manner. External organizations include supply chain partners, external mission or business partners, external service providers, and other peer or supporting organizations.", "external_references": [ { @@ -15257,12 +15257,12 @@ } ], "id": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security Alerts, Advisories, and Directives", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.698Z", "description": "Broadcast security alert and advisory information throughout the organization using [Assignment: organization-defined automated mechanisms].\n\nThe significant number of changes to organizational systems and environments of operation requires the dissemination of security-related information to a variety of organizational entities that have a direct interest in the success of organizational mission and business functions. Based on information provided by security alerts and advisories, changes may be required at one or more of the three levels related to the management of risk, including the governance level, mission and business process level, and the information system level.", "external_references": [ { @@ -15271,12 +15271,12 @@ } ], "id": "course-of-action--cea4ef34-78f9-4874-8d15-bb247a4b69d2", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security Alerts, Advisories, and Directives | Automated Alerts and Advisories", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.698Z", "description": "a. Verify the correct operation of [Assignment: organization-defined security and privacy functions];\nb. Perform the verification of the functions specified in SI-6a [Selection (one or more): \n [Assignment: organization-defined system transitional states]\n ; upon command by user with appropriate privilege; \n [Assignment: organization-defined frequency]\n ];\nc. Alert [Assignment: organization-defined personnel or roles] to failed security and privacy verification tests; and\nd. [Selection (one or more): Shut the system down; Restart the system; \n [Assignment: organization-defined alternative action(s)]\n ] when anomalies are discovered.\n\nTransitional states for systems include system startup, restart, shutdown, and abort. System notifications include hardware indicator lights, electronic alerts to system administrators, and messages to local computer consoles. In contrast to security function verification, privacy function verification ensures that privacy functions operate as expected and are approved by the senior agency official for privacy or that privacy attributes are applied or used as expected.", "external_references": [ { @@ -15285,12 +15285,12 @@ } ], "id": "course-of-action--29587e06-6c6e-4653-a675-0505b82a602b", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security and Privacy Function Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.698Z", "description": "", "external_references": [ { @@ -15299,12 +15299,12 @@ } ], "id": "course-of-action--6ae85ffe-0685-40be-bd13-b907a0bc9e2b", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security and Privacy Function Verification | Notification of Failed Security Tests", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.698Z", "description": "Implement automated mechanisms to support the management of distributed security and privacy function testing.\n\nThe use of automated mechanisms to support the management of distributed function testing helps to ensure the integrity, timeliness, completeness, and efficacy of such testing.", "external_references": [ { @@ -15313,12 +15313,12 @@ } ], "id": "course-of-action--09c9612b-e641-46ca-bf2a-c057c0c07e38", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security and Privacy Function Verification | Automation Support for Distributed Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.698Z", "description": "Report the results of security and privacy function verification to [Assignment: organization-defined personnel or roles].\n\nOrganizational personnel with potential interest in the results of the verification of security and privacy functions include systems security officers, senior agency information security officers, and senior agency officials for privacy.", "external_references": [ { @@ -15327,12 +15327,12 @@ } ], "id": "course-of-action--b13752b6-077d-48aa-b7ac-16fbfb7aa488", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security and Privacy Function Verification | Report Verification Results", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.698Z", "description": "a. Employ integrity verification tools to detect unauthorized changes to the following software, firmware, and information: [Assignment: organization-defined software, firmware, and information]; and\nb. Take the following actions when unauthorized changes to the software, firmware, and information are detected: [Assignment: organization-defined actions].\n\nUnauthorized changes to software, firmware, and information can occur due to errors or malicious activity. Software includes operating systems (with key internal components, such as kernels or drivers), middleware, and applications. Firmware interfaces include Unified Extensible Firmware Interface (UEFI) and Basic Input/Output System (BIOS). Information includes personally identifiable information and metadata that contains security and privacy attributes associated with information. Integrity-checking mechanisms'including parity checks, cyclical redundancy checks, cryptographic hashes, and associated tools'can automatically monitor the integrity of systems and hosted applications.", "external_references": [ { @@ -15341,12 +15341,12 @@ } ], "id": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Software, Firmware, and Information Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.699Z", "description": "Perform an integrity check of [Assignment: organization-defined software, firmware, and information]\n [Selection (one or more): at startup; at [Assignment: organization-defined transitional states or security-relevant events]\n ; \n [Assignment: organization-defined frequency]\n ].\n\nSecurity-relevant events include the identification of new threats to which organizational systems are susceptible and the installation of new hardware, software, or firmware. Transitional states include system startup, restart, shutdown, and abort.", "external_references": [ { @@ -15355,12 +15355,12 @@ } ], "id": "course-of-action--f1a6e5ae-52cc-487e-9a68-2a3ed62a9269", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Integrity Checks", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.699Z", "description": "Employ automated tools that provide notification to [Assignment: organization-defined personnel or roles] upon discovering discrepancies during integrity verification.\n\nThe employment of automated tools to report system and information integrity violations and to notify organizational personnel in a timely matter is essential to effective risk response. Personnel with an interest in system and information integrity violations include mission and business owners, system owners, senior agency information security official, senior agency official for privacy, system administrators, software developers, systems integrators, information security officers, and privacy officers.", "external_references": [ { @@ -15369,12 +15369,12 @@ } ], "id": "course-of-action--147fc5ee-bf78-4d35-b878-a66a057f20b5", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Automated Notifications of Integrity Violations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.699Z", "description": "Employ centrally managed integrity verification tools.\n\nCentrally managed integrity verification tools provides greater consistency in the application of such tools and can facilitate more comprehensive coverage of integrity verification actions.", "external_references": [ { @@ -15383,12 +15383,12 @@ } ], "id": "course-of-action--3be955ea-aecc-4f3b-b641-87b8723f4e61", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Centrally Managed Integrity Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.699Z", "description": "", "external_references": [ { @@ -15397,12 +15397,12 @@ } ], "id": "course-of-action--34f3a098-ddf3-4d26-9410-195221883ba0", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Tamper-evident Packaging", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.699Z", "description": "Automatically [Selection (one or more): shut the system down; restart the system; implement [Assignment: organization-defined controls]\n ] when integrity violations are discovered.\n\nOrganizations may define different integrity-checking responses by type of information, specific information, or a combination of both. Types of information include firmware, software, and user data. Specific information includes boot firmware for certain types of machines. The automatic implementation of controls within organizational systems includes reversing the changes, halting the system, or triggering audit alerts when unauthorized modifications to critical security files occur.", "external_references": [ { @@ -15411,12 +15411,12 @@ } ], "id": "course-of-action--fd19aaed-1613-46b8-b294-920b496907dd", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Automated Response to Integrity Violations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.699Z", "description": "Implement cryptographic mechanisms to detect unauthorized changes to software, firmware, and information.\n\nCryptographic mechanisms used to protect integrity include digital signatures and the computation and application of signed hashes using asymmetric cryptography, protecting the confidentiality of the key used to generate the hash, and using the public key to verify the hash information. Organizations that employ cryptographic mechanisms also consider cryptographic key management solutions.", "external_references": [ { @@ -15425,12 +15425,12 @@ } ], "id": "course-of-action--4e094324-4c87-4e2b-bae8-29a1189c28e0", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.699Z", "name": "Software, Firmware, and Information Integrity | Cryptographic Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.700Z", "description": "Incorporate the detection of the following unauthorized changes into the organizational incident response capability: [Assignment: organization-defined security-relevant changes to the system].\n\nIntegrating detection and response helps to ensure that detected events are tracked, monitored, corrected, and available for historical purposes. Maintaining historical records is important for being able to identify and discern adversary actions over an extended time period and for possible legal actions. Security-relevant changes include unauthorized changes to established configuration settings or the unauthorized elevation of system privileges.", "external_references": [ { @@ -15439,12 +15439,12 @@ } ], "id": "course-of-action--aefa4abf-fedd-4c9a-ab59-53b7490be954", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Integration of Detection and Response", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.700Z", "description": "Upon detection of a potential integrity violation, provide the capability to audit the event and initiate the following actions: [Selection (one or more): generate an audit record; alert current user; alert [Assignment: organization-defined personnel or roles]\n ; \n [Assignment: organization-defined other actions]\n ].\n\nOrganizations select response actions based on types of software, specific software, or information for which there are potential integrity violations.", "external_references": [ { @@ -15453,12 +15453,12 @@ } ], "id": "course-of-action--4815e443-6460-400d-9d29-ea0db424cdaf", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Auditing Capability for Significant Events", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.923Z", + "created": "2021-01-13T01:52:41.700Z", "description": "Verify the integrity of the boot process of the following system components: [Assignment: organization-defined system components].\n\nEnsuring the integrity of boot processes is critical to starting system components in known, trustworthy states. Integrity verification mechanisms provide a level of assurance that only trusted code is executed during boot processes.", "external_references": [ { @@ -15467,12 +15467,12 @@ } ], "id": "course-of-action--e0cb49be-fd47-4ed4-bf48-a127b282dfbb", - "modified": "2021-01-06T18:30:53.923Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Verify Boot Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.700Z", "description": "Implement the following mechanisms to protect the integrity of boot firmware in [Assignment: organization-defined system components]: [Assignment: organization-defined mechanisms].\n\nUnauthorized modifications to boot firmware may indicate a sophisticated, targeted attack. These types of targeted attacks can result in a permanent denial of service or a persistent malicious code presence. These situations can occur if the firmware is corrupted or if the malicious code is embedded within the firmware. System components can protect the integrity of boot firmware in organizational systems by verifying the integrity and authenticity of all updates to the firmware prior to applying changes to the system component and preventing unauthorized processes from modifying the boot firmware.", "external_references": [ { @@ -15481,12 +15481,12 @@ } ], "id": "course-of-action--6475be6c-9789-4fba-82bb-fbd02c7f8513", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Protection of Boot Firmware", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.700Z", "description": "", "external_references": [ { @@ -15495,12 +15495,12 @@ } ], "id": "course-of-action--3e70fabb-85b2-40c0-a2d5-1fb9589575d7", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Confined Environments with Limited Privileges", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.700Z", "description": "Require that the integrity of the following user-installed software be verified prior to execution: [Assignment: organization-defined user-installed software].\n\nOrganizations verify the integrity of user-installed software prior to execution to reduce the likelihood of executing malicious code or programs that contains errors from unauthorized modifications. Organizations consider the practicality of approaches to verifying software integrity, including the availability of trustworthy checksums from software developers and vendors.", "external_references": [ { @@ -15509,12 +15509,12 @@ } ], "id": "course-of-action--f4a1dc8f-7b7f-4276-ba1c-47d513b375d1", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.700Z", "name": "Software, Firmware, and Information Integrity | Integrity Verification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.701Z", "description": "", "external_references": [ { @@ -15523,12 +15523,12 @@ } ], "id": "course-of-action--72283575-28d4-435f-9540-867f72d3ea7c", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Software, Firmware, and Information Integrity | Code Execution in Protected Environments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.701Z", "description": "", "external_references": [ { @@ -15537,12 +15537,12 @@ } ], "id": "course-of-action--530fa5be-fcea-4844-a472-e32072fff032", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Software, Firmware, and Information Integrity | Binary or Machine Executable Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.924Z", + "created": "2021-01-13T01:52:41.701Z", "description": "Implement cryptographic mechanisms to authenticate the following software or firmware components prior to installation: [Assignment: organization-defined software or firmware components].\n\nCryptographic authentication includes verifying that software or firmware components have been digitally signed using certificates recognized and approved by organizations. Code signing is an effective method to protect against malicious code. Organizations that employ cryptographic mechanisms also consider cryptographic key management solutions.", "external_references": [ { @@ -15551,12 +15551,12 @@ } ], "id": "course-of-action--ae51f3c2-e12a-474f-8e56-b96842d4b59b", - "modified": "2021-01-06T18:30:53.924Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Software, Firmware, and Information Integrity | Code Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.701Z", "description": "Prohibit processes from executing without supervision for more than [Assignment: organization-defined time period].\n\nPlacing a time limit on process execution without supervision is intended to apply to processes for which typical or normal execution periods can be determined and situations in which organizations exceed such periods. Supervision includes timers on operating systems, automated responses, and manual oversight and response when system process anomalies occur.", "external_references": [ { @@ -15565,12 +15565,12 @@ } ], "id": "course-of-action--69a8d31f-43e5-4fc5-870d-670a42d6c970", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Software, Firmware, and Information Integrity | Time Limit on Process Execution Without Supervision", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.701Z", "description": "Implement [Assignment: organization-defined controls] for application self-protection at runtime.\n\nRuntime application self-protection employs runtime instrumentation to detect and block the exploitation of software vulnerabilities by taking advantage of information from the software in execution. Runtime exploit prevention differs from traditional perimeter-based protections such as guards and firewalls which can only detect and block attacks by using network information without contextual awareness. Runtime application self-protection technology can reduce the susceptibility of software to attacks by monitoring its inputs and blocking those inputs that could allow attacks. It can also help protect the runtime environment from unwanted changes and tampering. When a threat is detected, runtime application self-protection technology can prevent exploitation and take other actions (e.g., sending a warning message to the user, terminating the user's session, terminating the application, or sending an alert to organizational personnel). Runtime application self-protection solutions can be deployed in either a monitor or protection mode.", "external_references": [ { @@ -15579,12 +15579,12 @@ } ], "id": "course-of-action--5ac3ef9e-caf5-4243-98aa-58d92a8c00aa", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Software, Firmware, and Information Integrity | Runtime Application Self-protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.701Z", "description": "a. Employ spam protection mechanisms at system entry and exit points to detect and act on unsolicited messages; and\nb. Update spam protection mechanisms when new releases are available in accordance with organizational configuration management policy and procedures.\n\nSystem entry and exit points include firewalls, remote-access servers, electronic mail servers, web servers, proxy servers, workstations, notebook computers, and mobile devices. Spam can be transported by different means, including email, email attachments, and web accesses. Spam protection mechanisms include signature definitions.", "external_references": [ { @@ -15593,12 +15593,12 @@ } ], "id": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Spam Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.701Z", "description": "", "external_references": [ { @@ -15607,12 +15607,12 @@ } ], "id": "course-of-action--dc8b6a93-04da-4ef8-90e8-60694b0863e3", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Spam Protection | Central Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Automatically update spam protection mechanisms [Assignment: organization-defined frequency].\n\nUsing automated mechanisms to update spam protection mechanisms helps to ensure that updates occur on a regular basis and provide the latest content and protection capabilities.", "external_references": [ { @@ -15621,12 +15621,12 @@ } ], "id": "course-of-action--bbaf652f-d40f-4722-81c5-67a3f388221a", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Spam Protection | Automatic Updates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Implement spam protection mechanisms with a learning capability to more effectively identify legitimate communications traffic.\n\nLearning mechanisms include Bayesian filters that respond to user inputs that identify specific traffic as spam or legitimate by updating algorithm parameters and thereby more accurately separating types of traffic.", "external_references": [ { @@ -15635,12 +15635,12 @@ } ], "id": "course-of-action--92208f74-a896-4fde-9792-ca35a0c0069c", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Spam Protection | Continuous Learning Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.702Z", "description": "", "external_references": [ { @@ -15649,12 +15649,12 @@ } ], "id": "course-of-action--30a703b9-7286-4b29-a26d-d11068850d09", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Check the validity of the following information inputs: [Assignment: organization-defined information inputs to the system].\n\nChecking the valid syntax and semantics of system inputs'including character set, length, numerical range, and acceptable values'verifies that inputs match specified definitions for format and content. For example, if the organization specifies that numerical values between 1-100 are the only acceptable inputs for a field in a given application, inputs of '387,' 'abc,' or '%K%' are invalid inputs and are not accepted as input to the system. Valid inputs are likely to vary from field to field within a software application. Applications typically follow well-defined protocols that use structured messages (i.e., commands or queries) to communicate between software modules or system components. Structured messages can contain raw or unstructured data interspersed with metadata or control information. If software applications use attacker-supplied inputs to construct structured messages without properly encoding such messages, then the attacker could insert malicious commands or special characters that can cause the data to be interpreted as control information or metadata. Consequently, the module or component that receives the corrupted output will perform the wrong operations or otherwise interpret the data incorrectly. Prescreening inputs prior to passing them to interpreters prevents the content from being unintentionally interpreted as commands. Input validation ensures accurate and correct inputs and prevents attacks such as cross-site scripting and a variety of injection attacks.", "external_references": [ { @@ -15663,12 +15663,12 @@ } ], "id": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Validation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.702Z", "description": "(a) Provide a manual override capability for input validation of the following information inputs: [Assignment: organization-defined inputs defined in the base control (SI-10)];\n(b) Restrict the use of the manual override capability to only [Assignment: organization-defined authorized individuals]; and\n(c) Audit the use of the manual override capability.\n\nIn certain situations, such as during events that are defined in contingency plans, a manual override capability for input validation may be needed. Manual overrides are used only in limited circumstances and with the inputs defined by the organization.", "external_references": [ { @@ -15677,12 +15677,12 @@ } ], "id": "course-of-action--90385ae1-9593-4ff8-a3c7-4fe98b0d166f", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Validation | Manual Override Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Review and resolve input validation errors within [Assignment: organization-defined time period].\n\nResolution of input validation errors includes correcting systemic causes of errors and resubmitting transactions with corrected input. Input validation errors are those related to the information inputs defined by the organization in the base control (SI-10).", "external_references": [ { @@ -15691,12 +15691,12 @@ } ], "id": "course-of-action--746f41f4-684d-4266-b7ec-92b661f5fea0", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Validation | Review and Resolve Errors", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Verify that the system behaves in a predictable and documented manner when invalid inputs are received.\n\nA common vulnerability in organizational systems is unpredictable behavior when invalid inputs are received. Verification of system predictability helps ensure that the system behaves as expected when invalid inputs are received. This occurs by specifying system responses that allow the system to transition to known states without adverse, unintended side effects. The invalid inputs are those related to the information inputs defined by the organization in the base control (SI-10).", "external_references": [ { @@ -15705,12 +15705,12 @@ } ], "id": "course-of-action--d6075f80-3c25-4bee-8622-ad4a1a88bcd7", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Validation | Predictable Behavior", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Account for timing interactions among system components in determining appropriate responses for invalid inputs.\n\nIn addressing invalid system inputs received across protocol interfaces, timing interactions become relevant, where one protocol needs to consider the impact of the error response on other protocols in the protocol stack. For example, 802.11 standard wireless network protocols do not interact well with Transmission Control Protocols (TCP) when packets are dropped (which could be due to invalid packet input). TCP assumes packet losses are due to congestion, while packets lost over 802.11 links are typically dropped due to noise or collisions on the link. If TCP makes a congestion response, it takes the wrong action in response to a collision event. Adversaries may be able to use what appear to be acceptable individual behaviors of the protocols in concert to achieve adverse effects through suitable construction of invalid input. The invalid inputs are those related to the information inputs defined by the organization in the base control (SI-10).", "external_references": [ { @@ -15719,12 +15719,12 @@ } ], "id": "course-of-action--0e4e6c0c-ac13-4a3d-86e8-eb7d3666421f", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Input Validation | Timing Interactions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Restrict the use of information inputs to [Assignment: organization-defined trusted sources] and/or [Assignment: organization-defined formats].\n\nRestricting the use of inputs to trusted sources and in trusted formats applies the concept of authorized or permitted software to information inputs. Specifying known trusted sources for information inputs and acceptable formats for such inputs can reduce the probability of malicious activity. The information inputs are those defined by the organization in the base control (SI-10).", "external_references": [ { @@ -15733,12 +15733,12 @@ } ], "id": "course-of-action--c67eb6c2-404d-42ab-87b2-89a367c9d09b", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Input Validation | Restrict Inputs to Trusted Sources and Approved Formats", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Prevent untrusted data injections.\n\nUntrusted data injections may be prevented using a parameterized interface or output escaping (output encoding). Parameterized interfaces separate data from code so that injections of malicious or unintended data cannot change the semantics of commands being sent. Output escaping uses specified characters to inform the interpreter's parser whether data is trusted. Prevention of untrusted data injections are with respect to the information inputs defined by the organization in the base control (SI-10).", "external_references": [ { @@ -15747,12 +15747,12 @@ } ], "id": "course-of-action--d78dc46b-2570-415a-b62f-7e5cd1545c9f", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Input Validation | Injection Prevention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "a. Generate error messages that provide information necessary for corrective actions without revealing information that could be exploited; and\nb. Reveal error messages only to [Assignment: organization-defined personnel or roles].\n\nOrganizations consider the structure and content of error messages. The extent to which systems can handle error conditions is guided and informed by organizational policy and operational requirements. Exploitable information includes stack traces and implementation details; erroneous logon attempts with passwords mistakenly entered as the username; mission or business information that can be derived from, if not stated explicitly by, the information recorded; and personally identifiable information, such as account numbers, social security numbers, and credit card numbers. Error messages may also provide a covert channel for transmitting information.", "external_references": [ { @@ -15761,12 +15761,12 @@ } ], "id": "course-of-action--bf40c65c-72f7-473e-9822-2f7787e7e76d", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Error Handling", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Manage and retain information within the system and information output from the system in accordance with applicable laws, executive orders, directives, regulations, policies, standards, guidelines and operational requirements.\n\nInformation management and retention requirements cover the full life cycle of information, in some cases extending beyond system disposal. Information to be retained may also include policies, procedures, plans, reports, data output from control implementation, and other types of administrative information. The National Archives and Records Administration (NARA) provides federal policy and guidance on records retention and schedules. If organizations have a records management office, consider coordinating with records management personnel. Records produced from the output of implemented controls that may require management and retention include, but are not limited to: All XX-1, AC-6(9), AT-4, AU-12, CA-2, CA-3, CA-5, CA-6, CA-7, CA-8, CA-9, CM-2, CM-3, CM-4, CM-6, CM-8, CM-9, CM-12, CM-13, CP-2, IR-6, IR-8, MA-2, MA-4, PE-2, PE-8, PE-16, PE-17, PL-2, PL-4, PL-7, PL-8, PM-5, PM-8, PM-9, PM-18, PM-21, PM-27, PM-28, PM-30, PM-31, PS-2, PS-6, PS-7, PT-2, PT-3, PT-7, RA-2, RA-3, RA-5, RA-8, SA-4, SA-5, SA-8, SA-10, SI-4, SR-2, SR-4, SR-8.", "external_references": [ { @@ -15775,12 +15775,12 @@ } ], "id": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Management and Retention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Limit personally identifiable information being processed in the information life cycle to the following elements of PII: [Assignment: organization-defined elements of personally identifiable information].\n\nLimiting the use of personally identifiable information throughout the information life cycle when the information is not needed for operational purposes helps to reduce the level of privacy risk created by a system. The information life cycle includes information creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposition. Risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to determining which elements of personally identifiable information may create risk.", "external_references": [ { @@ -15789,12 +15789,12 @@ } ], "id": "course-of-action--8473f99c-9d69-4f95-a0e5-70b5c6edca9f", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Management and Retention | Limit Personally Identifiable Information Elements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Use the following techniques to minimize the use of personally identifiable information for research, testing, or training: [Assignment: organization-defined techniques].\n\nOrganizations can minimize the risk to an individual's privacy by employing techniques such as de-identification or synthetic data. Limiting the use of personally identifiable information throughout the information life cycle when the information is not needed for research, testing, or training helps reduce the level of privacy risk created by a system. Risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to determining the techniques to use and when to use them.", "external_references": [ { @@ -15803,12 +15803,12 @@ } ], "id": "course-of-action--e29eb6bb-e60d-4943-a0ae-436c1460b646", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Management and Retention | Minimize Personally Identifiable Information in Testing, Training, and Research", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.704Z", "description": "Use the following techniques to dispose of, destroy, or erase information following the retention period: [Assignment: organization-defined techniques].\n\nOrganizations can minimize both security and privacy risks by disposing of information when it is no longer needed. The disposal or destruction of information applies to originals as well as copies and archived records, including system logs that may contain personally identifiable information.", "external_references": [ { @@ -15817,12 +15817,12 @@ } ], "id": "course-of-action--ffec9b7b-b3c9-4312-8156-6ffd653c5794", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Information Management and Retention | Information Disposal", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "a. Determine mean time to failure (MTTF) for the following system components in specific environments of operation: [Assignment: organization-defined system components]; and\nb. Provide substitute system components and a means to exchange active and standby components in accordance with the following criteria: [Assignment: organization-defined MTTF substitution criteria].\n\nWhile MTTF is primarily a reliability issue, predictable failure prevention is intended to address potential failures of system components that provide security capabilities. Failure rates reflect installation-specific consideration rather than the industry-average. Organizations define the criteria for the substitution of system components based on the MTTF value with consideration for the potential harm from component failures. The transfer of responsibilities between active and standby components does not compromise safety, operational readiness, or security capabilities. The preservation of system state variables is also critical to help ensure a successful transfer process. Standby components remain available at all times except for maintenance issues or recovery failures in progress.", "external_references": [ { @@ -15831,12 +15831,12 @@ } ], "id": "course-of-action--f7f7882e-239b-4149-bfe4-a8c04eb04f51", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "Take system components out of service by transferring component responsibilities to substitute components no later than [Assignment: organization-defined fraction or percentage] of mean time to failure.\n\nTransferring primary system component responsibilities to other substitute components prior to primary component failure is important to reduce the risk of degraded or debilitated mission or business functions. Making such transfers based on a percentage of mean time to failure allows organizations to be proactive based on their risk tolerance. However, the premature replacement of system components can result in the increased cost of system operations.", "external_references": [ { @@ -15845,12 +15845,12 @@ } ], "id": "course-of-action--bd1ec33b-4de1-4fda-9aee-164fb7b6dc11", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention | Transferring Component Responsibilities", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "", "external_references": [ { @@ -15859,12 +15859,12 @@ } ], "id": "course-of-action--d1832f3c-c2f3-4d88-a400-5fe6371ef124", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention | Time Limit on Process Execution Without Supervision", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "Manually initiate transfers between active and standby system components when the use of the active component reaches [Assignment: organization-defined percentage] of the mean time to failure.\n\nFor example, if the MTTF for a system component is 100 days and the MTTF percentage defined by the organization is 90 percent, the manual transfer would occur after 90 days.", "external_references": [ { @@ -15873,12 +15873,12 @@ } ], "id": "course-of-action--466ea2ae-0fcf-4512-bcc4-965aa99f2fb7", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention | Manual Transfer Between Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "If system component failures are detected:\n(a) Ensure that the standby components are successfully and transparently installed within [Assignment: organization-defined time period]; and\n(b) [Selection (one or more): Activate [Assignment: organization-defined alarm]\n ; Automatically shut down the system; \n [Assignment: organization-defined action]\n ].\n\nAutomatic or manual transfer of components from standby to active mode can occur upon the detection of component failures.", "external_references": [ { @@ -15887,12 +15887,12 @@ } ], "id": "course-of-action--7748c275-3a19-4c0c-afa3-ebbab10aa198", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention | Standby Component Installation and Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.928Z", + "created": "2021-01-13T01:52:41.704Z", "description": "Provide [Selection: real-time; near real-time]\n [Assignment: organization-defined failover capability] for the system.\n\nFailover refers to the automatic switchover to an alternate system upon the failure of the primary system. Failover capability includes incorporating mirrored system operations at alternate processing sites or periodic data mirroring at regular intervals defined by the recovery time periods of organizations.", "external_references": [ { @@ -15901,12 +15901,12 @@ } ], "id": "course-of-action--79fbe5d0-5b83-4c81-9abe-4faa99d1a44e", - "modified": "2021-01-06T18:30:53.928Z", + "modified": "2021-01-13T01:52:41.704Z", "name": "Predictable Failure Prevention | Failover Capability", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.705Z", "description": "Implement non-persistent [Assignment: organization-defined system components and services] that are initiated in a known state and terminated [Selection (one or more): upon end of session of use; periodically at [Assignment: organization-defined frequency]\n ].\n\nImplementation of non-persistent components and services mitigates risk from advanced persistent threats (APTs) by reducing the targeting capability of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete attacks. By implementing the concept of non-persistence for selected system components, organizations can provide a trusted, known state computing resource for a specific time period that does not give adversaries sufficient time to exploit vulnerabilities in organizational systems or operating environments. Since the APT is a high-end, sophisticated threat with regard to capability, intent, and targeting, organizations assume that over an extended period, a percentage of attacks will be successful. Non-persistent system components and services are activated as required using protected information and terminated periodically or at the end of sessions. Non-persistence increases the work factor of adversaries attempting to compromise or breach organizational systems.\nNon-persistence can be achieved by refreshing system components, periodically reimaging components, or using a variety of common virtualization techniques. Non-persistent services can be implemented by using virtualization techniques as part of virtual machines or as new instances of processes on physical machines (either persistent or non-persistent). The benefit of periodic refreshes of system components and services is that it does not require organizations to first determine whether compromises of components or services have occurred (something that may often be difficult to determine). The refresh of selected system components and services occurs with sufficient frequency to prevent the spread or intended impact of attacks, but not with such frequency that it makes the system unstable. Refreshes of critical components and services may be done periodically to hinder the ability of adversaries to exploit optimum windows of vulnerabilities.", "external_references": [ { @@ -15915,12 +15915,12 @@ } ], "id": "course-of-action--00406fa5-0e25-4696-a07a-50d72b00e688", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.705Z", "name": "Non-persistence", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.705Z", "description": "Obtain software and data employed during system component and service refreshes from the following trusted sources: [Assignment: organization-defined trusted sources].\n\nTrusted sources include software and data from write-once, read-only media or from selected offline secure storage facilities.", "external_references": [ { @@ -15929,12 +15929,12 @@ } ], "id": "course-of-action--3615bd4f-16d1-4ab6-a8c6-fce3f0e907b8", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.705Z", "name": "Non-persistence | Refresh from Trusted Sources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.705Z", "description": "(a) [Selection: Refresh [Assignment: organization-defined information]\n [Assignment: organization-defined frequency]\n ; Generate [Assignment: organization-defined information] on demand]; and\n(b) Delete information when no longer needed.\n\nRetaining information longer than is needed makes the information a potential target for advanced adversaries searching for high value assets to compromise through unauthorized disclosure, unauthorized modification, or exfiltration. For system-related information, unnecessary retention provides advanced adversaries information that can assist in their reconnaissance and lateral movement through the system.", "external_references": [ { @@ -15943,12 +15943,12 @@ } ], "id": "course-of-action--4b910b04-bda4-4acc-9a66-a7a8c38b2df5", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.705Z", "name": "Non-persistence | Non-persistent Information", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.705Z", "description": "Establish connections to the system on demand and terminate connections after [Selection: completion of a request; a period of non-use].\n\nPersistent connections to systems can provide advanced adversaries with paths to move laterally through systems and potentially position themselves closer to high value assets. Limiting the availability of such connections impedes the adversary's ability to move freely through organizational systems.", "external_references": [ { @@ -15957,12 +15957,12 @@ } ], "id": "course-of-action--6dbc17bf-5222-4c20-92a5-6e01d640ed6d", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.705Z", "name": "Non-persistence | Non-persistent Connectivity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Validate information output from the following software programs and/or applications to ensure that the information is consistent with the expected content: [Assignment: organization-defined software programs and/or applications].\n\nCertain types of attacks, including SQL injections, produce output results that are unexpected or inconsistent with the output results that would be expected from software programs or applications. Information output filtering focuses on detecting extraneous content, preventing such extraneous content from being displayed, and then alerting monitoring tools that anomalous behavior has been discovered.", "external_references": [ { @@ -15971,12 +15971,12 @@ } ], "id": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Information Output Filtering", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Implement the following controls to protect the system memory from unauthorized code execution: [Assignment: organization-defined controls].\n\nSome adversaries launch attacks with the intent of executing code in non-executable regions of memory or in memory locations that are prohibited. Controls employed to protect memory include data execution prevention and address space layout randomization. Data execution prevention controls can either be hardware-enforced or software-enforced with hardware enforcement providing the greater strength of mechanism.", "external_references": [ { @@ -15985,12 +15985,12 @@ } ], "id": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Memory Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.930Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Implement the indicated fail-safe procedures when the indicated failures occur: [Assignment: organization-defined list of failure conditions and associated fail-safe procedures].\n\nFailure conditions include the loss of communications among critical system components or between system components and operational facilities. Fail-safe procedures include alerting operator personnel and providing specific instructions on subsequent steps to take. Subsequent steps may include doing nothing, reestablishing system settings, shutting down processes, restarting the system, or contacting designated organizational personnel.", "external_references": [ { @@ -15999,12 +15999,12 @@ } ], "id": "course-of-action--8ba91982-bdc8-44e9-adb7-de0995377897", - "modified": "2021-01-06T18:30:53.930Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Fail-safe Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.930Z", + "created": "2021-01-13T01:52:41.706Z", "description": "a. Check the accuracy, relevance, timeliness, and completeness of personally identifiable information across the information life cycle [Assignment: organization-defined frequency]; and\nb. Correct or delete inaccurate or outdated personally identifiable information.\n\nPersonally identifiable information quality operations include the steps that organizations take to confirm the accuracy and relevance of personally identifiable information throughout the information life cycle. The information life cycle includes the creation, collection, use, processing, storage, maintenance, dissemination, disclosure, and disposal of personally identifiable information. Personally identifiable information quality operations include editing and validating addresses as they are collected or entered into systems using automated address verification look-up application programming interfaces. Checking personally identifiable information quality includes the tracking of updates or changes to data over time, which enables organizations to know how and what personally identifiable information was changed should erroneous information be identified. The measures taken to protect personally identifiable information quality are based on the nature and context of the personally identifiable information, how it is to be used, how it was obtained, and the potential de-identification methods employed. The measures taken to validate the accuracy of personally identifiable information used to make determinations about the rights, benefits, or privileges of individuals covered under federal programs may be more comprehensive than the measures used to validate personally identifiable information used for less sensitive purposes.", "external_references": [ { @@ -16013,12 +16013,12 @@ } ], "id": "course-of-action--c2d7e160-aabc-4a2a-8e38-8fb48c540799", - "modified": "2021-01-06T18:30:53.930Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Personally Identifiable Information Quality Operations", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.930Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Correct or delete personally identifiable information that is inaccurate or outdated, incorrectly determined regarding impact, or incorrectly de-identified using [Assignment: organization-defined automated mechanisms].\n\nThe use of automated mechanisms to improve data quality may inadvertently create privacy risks. Automated tools may connect to external or otherwise unrelated systems, and the matching of records between these systems may create linkages with unintended consequences. Organizations assess and document these risks in their privacy impact assessments and make determinations that are in alignment with their privacy program plans.\nAs data is obtained and used across the information life cycle, it is important to confirm the accuracy and relevance of personally identifiable information. Automated mechanisms can augment existing data quality processes and procedures and enable an organization to better identify and manage personally identifiable information in large-scale systems. For example, automated tools can greatly improve efforts to consistently normalize data or identify malformed data. Automated tools can also be used to improve the auditing of data and detect errors that may incorrectly alter personally identifiable information or incorrectly associate such information with the wrong individual. Automated capabilities backstop processes and procedures at-scale and enable more fine-grained detection and correction of data quality errors.", "external_references": [ { @@ -16027,12 +16027,12 @@ } ], "id": "course-of-action--13d2290c-aa3e-4bf7-9f8e-08a2ead80789", - "modified": "2021-01-06T18:30:53.930Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Personally Identifiable Information Quality Operations | Automation Support", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.930Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Employ data tags to automate the correction or deletion of personally identifiable information across the information life cycle within organizational systems.\n\nData tagging personally identifiable information includes tags that note processing permissions, authority to process, de-identification, impact level, information life cycle stage, and retention or last updated dates. Employing data tags for personally identifiable information can support the use of automation tools to correct or delete relevant personally identifiable information.", "external_references": [ { @@ -16041,12 +16041,12 @@ } ], "id": "course-of-action--8d30bc2c-bcad-43c3-bd29-70e28c58453f", - "modified": "2021-01-06T18:30:53.930Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Personally Identifiable Information Quality Operations | Data Tags", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.930Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Collect personally identifiable information directly from the individual.\n\nIndividuals or their designated representatives can be sources of correct personally identifiable information. Organizations consider contextual factors that may incentivize individuals to provide correct data versus false data. Additional steps may be necessary to validate collected information based on the nature and context of the personally identifiable information, how it is to be used, and how it was obtained. The measures taken to validate the accuracy of personally identifiable information used to make determinations about the rights, benefits, or privileges of individuals under federal programs may be more comprehensive than the measures taken to validate less sensitive personally identifiable information.", "external_references": [ { @@ -16055,12 +16055,12 @@ } ], "id": "course-of-action--b8fc9193-f3e3-42f9-bb02-d1111cfe3b27", - "modified": "2021-01-06T18:30:53.930Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Personally Identifiable Information Quality Operations | Collection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.707Z", "description": "Correct or delete personally identifiable information upon request by individuals or their designated representatives.\n\nInaccurate personally identifiable information maintained by organizations may cause problems for individuals, especially in those business functions where inaccurate information may result in inappropriate decisions or the denial of benefits and services to individuals. Even correct information, in certain circumstances, can cause problems for individuals that outweigh the benefits of an organization maintaining the information. Organizations use discretion when determining if personally identifiable information is to be corrected or deleted based on the scope of requests, the changes sought, the impact of the changes, and laws, regulations, and policies. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding appropriate instances of correction or deletion.", "external_references": [ { @@ -16069,12 +16069,12 @@ } ], "id": "course-of-action--5a59d955-8e63-4163-a8d3-a7289675f2a3", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.707Z", "name": "Personally Identifiable Information Quality Operations | Individual Requests", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.707Z", "description": "Notify [Assignment: organization-defined recipients of personally identifiable information] and individuals that the personally identifiable information has been corrected or deleted.\n\nWhen personally identifiable information is corrected or deleted, organizations take steps to ensure that all authorized recipients of such information, and the individual with whom the information is associated or their designated representatives, are informed of the corrected or deleted information.", "external_references": [ { @@ -16083,12 +16083,12 @@ } ], "id": "course-of-action--b52f4bc3-6824-48c4-b594-c0383bdc7e71", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.707Z", "name": "Personally Identifiable Information Quality Operations | Notice of Correction or Deletion", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.707Z", "description": "a. Remove the following elements of personally identifiable information from datasets: [Assignment: organization-defined elements of personally identifiable information]; and\nb. Evaluate [Assignment: organization-defined frequency] for effectiveness of de-identification.\n\nDe-identification is the general term for the process of removing the association between a set of identifying data and the data subject. Many datasets contain information about individuals that can be used to distinguish or trace an individual's identity, such as name, social security number, date and place of birth, mother's maiden name, or biometric records. Datasets may also contain other information that is linked or linkable to an individual, such as medical, educational, financial, and employment information. Personally identifiable information is removed from datasets by trained individuals when such information is not (or no longer) necessary to satisfy the requirements envisioned for the data. For example, if the dataset is only used to produce aggregate statistics, the identifiers that are not needed for producing those statistics are removed. Removing identifiers improves privacy protection since information that is removed cannot be inadvertently disclosed or improperly used. Organizations may be subject to specific de-identification definitions or methods under applicable laws, regulations, or policies. Re-identification is a residual risk with de-identified data. Re-identification attacks can vary, including combining new datasets or other improvements in data analytics. Maintaining awareness of potential attacks and evaluating for the effectiveness of the de-identification over time support the management of this residual risk.", "external_references": [ { @@ -16097,12 +16097,12 @@ } ], "id": "course-of-action--07b69844-fd2c-45a8-b625-62fcc185a7cd", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.707Z", "name": "De-identification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.707Z", "description": "De-identify the dataset upon collection by not collecting personally identifiable information.\n\nIf a data source contains personally identifiable information but the information will not be used, the dataset can be de-identified when it is created by not collecting the data elements that contain the personally identifiable information. For example, if an organization does not intend to use the social security number of an applicant, then application forms do not ask for a social security number.", "external_references": [ { @@ -16111,12 +16111,12 @@ } ], "id": "course-of-action--4a2be3a2-48bf-4466-9c2f-df7b98587bf9", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.707Z", "name": "De-identification | Collection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.707Z", "description": "Prohibit archiving of personally identifiable information elements if those elements in a dataset will not be needed after the dataset is archived.\n\nDatasets can be archived for many reasons. The envisioned purposes for the archived dataset are specified, and if personally identifiable information elements are not required, the elements are not archived. For example, social security numbers may have been collected for record linkage, but the archived dataset may include the required elements from the linked records. In this case, it is not necessary to archive the social security numbers.", "external_references": [ { @@ -16125,12 +16125,12 @@ } ], "id": "course-of-action--4be6013e-e005-4a11-b300-19f31a30d544", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.707Z", "name": "De-identification | Archiving", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Remove personally identifiable information elements from a dataset prior to its release if those elements in the dataset do not need to be part of the data release.\n\nPrior to releasing a dataset, a data custodian considers the intended uses of the dataset and determines if it is necessary to release personally identifiable information. If the personally identifiable information is not necessary, the information can be removed using de-identification techniques.", "external_references": [ { @@ -16139,12 +16139,12 @@ } ], "id": "course-of-action--98f51a74-1b13-4a21-a2ea-999d985dd39e", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Release", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.931Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Remove, mask, encrypt, hash, or replace direct identifiers in a dataset.\n\nThere are many possible processes for removing direct identifiers from a dataset. Columns in a dataset that contain a direct identifier can be removed. In masking, the direct identifier is transformed into a repeating character, such as XXXXXX or 999999. Identifiers can be encrypted or hashed so that the linked records remain linked. In the case of encryption or hashing, algorithms are employed that require the use of a key, including the Advanced Encryption Standard or a Hash-based Message Authentication Code. Implementations may use the same key for all identifiers or use a different key for each identifier. Using a different key for each identifier provides a higher degree of security and privacy. Identifiers can alternatively be replaced with a keyword, including transforming 'George Washington' to 'PATIENT' or replacing it with a surrogate value, such as transforming 'George Washington' to 'Abraham Polk.'", "external_references": [ { @@ -16153,12 +16153,12 @@ } ], "id": "course-of-action--719259cd-7167-4256-ac79-6fe7240f95d4", - "modified": "2021-01-06T18:30:53.931Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Removal, Masking, Encryption, Hashing, or Replacement of Direct Identifiers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.932Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Manipulate numerical data, contingency tables, and statistical findings so that no individual or organization is identifiable in the results of the analysis.\n\nMany types of statistical analyses can result in the disclosure of information about individuals even if only summary information is provided. For example, if a school that publishes a monthly table with the number of minority students enrolled, reports that it has 10-19 such students in January, and subsequently reports that it has 20-29 such students in March, then it can be inferred that the student who enrolled in February was a minority.", "external_references": [ { @@ -16167,12 +16167,12 @@ } ], "id": "course-of-action--61e5b1b4-0fbc-4dd6-bef8-d6714659a8a4", - "modified": "2021-01-06T18:30:53.932Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Statistical Disclosure Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.932Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Prevent disclosure of personally identifiable information by adding non-deterministic noise to the results of mathematical operations before the results are reported.\n\nThe mathematical definition for differential privacy holds that the result of a dataset analysis should be approximately the same before and after the addition or removal of a single data record (which is assumed to be the data from a single individual). In its most basic form, differential privacy applies only to online query systems. However, it can also be used to produce machine-learning statistical classifiers and synthetic data. Differential privacy comes at the cost of decreased accuracy of results, forcing organizations to quantify the trade-off between privacy protection and the overall accuracy, usefulness, and utility of the de-identified dataset. Non-deterministic noise can include adding small, random values to the results of mathematical operations in dataset analysis.", "external_references": [ { @@ -16181,12 +16181,12 @@ } ], "id": "course-of-action--851ba9cc-1696-4cc1-ac02-d076aa5b8f80", - "modified": "2021-01-06T18:30:53.932Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Differential Privacy", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.932Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Perform de-identification using validated algorithms and software that is validated to implement the algorithms.\n\nAlgorithms that appear to remove personally identifiable information from a dataset may in fact leave information that is personally identifiable or data that is re-identifiable. Software that is claimed to implement a validated algorithm may contain bugs or implement a different algorithm. Software may de-identify one type of data, such as integers, but not de-identify another type of data, such as floating point numbers. For these reasons, de-identification is performed using algorithms and software that are validated.", "external_references": [ { @@ -16195,12 +16195,12 @@ } ], "id": "course-of-action--83143bb3-8497-4780-9ac9-13fe3cac8607", - "modified": "2021-01-06T18:30:53.932Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Validated Algorithms and Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.932Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Perform a motivated intruder test on the de-identified dataset to determine if the identified data remains or if the de-identified data can be re-identified.\n\nA motivated intruder test is a test in which an individual or group takes a data release and specified resources and attempts to re-identify one or more individuals in the de-identified dataset. Such tests specify the amount of inside knowledge, computational resources, financial resources, data, and skills that intruders possess to conduct the tests. A motivated intruder test can determine if the de-identification is insufficient. It can also be a useful diagnostic tool to assess if de-identification is likely to be sufficient. However, the test alone cannot prove that de-identification is sufficient.", "external_references": [ { @@ -16209,12 +16209,12 @@ } ], "id": "course-of-action--40b841e9-eccf-4cd1-a54e-07e63e1da2ef", - "modified": "2021-01-06T18:30:53.932Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "De-identification | Motivated Intruder", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.932Z", + "created": "2021-01-13T01:52:41.708Z", "description": "Embed data or capabilities in the following systems or system components to determine if organizational data has been exfiltrated or improperly removed from the organization: [Assignment: organization-defined systems or system components].\n\nMany cyber-attacks target organizational information, or information that the organization holds on behalf of other entities (e.g., personally identifiable information), and exfiltrate that data. In addition, insider attacks and erroneous user procedures can remove information from the system that is in violation of the organizational policies. Tainting approaches can range from passive to active. A passive tainting approach can be as simple as adding false email names and addresses to an internal database. If the organization receives email at one of the false email addresses, it knows that the database has been compromised. Moreover, the organization knows that the email was sent by an unauthorized entity, so any packets it includes potentially contain malicious code, and that the unauthorized entity may have potentially obtained a copy of the database. Another tainting approach can include embedding false data or steganographic data in files to enable the data to be found via open-source analysis. Finally, an active tainting approach can include embedding software in the data that is able to 'call home,' thereby alerting the organization to its 'capture,' and possibly its location, and the path by which it was exfiltrated or removed.", "external_references": [ { @@ -16223,12 +16223,12 @@ } ], "id": "course-of-action--d7707c9c-a9ba-4e91-811d-477700bb8e31", - "modified": "2021-01-06T18:30:53.932Z", + "modified": "2021-01-13T01:52:41.708Z", "name": "Tainting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.933Z", + "created": "2021-01-13T01:52:41.709Z", "description": "Refresh [Assignment: organization-defined information] at [Assignment: organization-defined frequencies] or generate the information on demand and delete the information when no longer needed.\n\nRetaining information for longer than it is needed makes it an increasingly valuable and enticing target for adversaries. Keeping information available for the minimum period of time needed to support organizational missions or business functions reduces the opportunity for adversaries to compromise, capture, and exfiltrate that information.", "external_references": [ { @@ -16237,12 +16237,12 @@ } ], "id": "course-of-action--7ff5f0f0-6d47-4494-b575-e4c423ca37f8", - "modified": "2021-01-06T18:30:53.933Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Information Refresh", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.933Z", + "created": "2021-01-13T01:52:41.709Z", "description": "a. Identify the following alternative sources of information for [Assignment: organization-defined essential functions and services]: [Assignment: organization-defined alternative information sources]; and\nb. Use an alternative information source for the execution of essential functions or services on [Assignment: organization-defined systems or system components] when the primary source of information is corrupted or unavailable.\n\nActions taken by a system service or a function are often driven by the information it receives. Corruption, fabrication, modification, or deletion of that information could impact the ability of the service function to properly carry out its intended actions. By having multiple sources of input, the service or function can continue operation if one source is corrupted or no longer available. It is possible that the alternative sources of information may be less precise or less accurate than the primary source of information. But having such sub-optimal information sources may still provide a sufficient level of quality that the essential service or function can be carried out, even in a degraded or debilitated manner.", "external_references": [ { @@ -16251,12 +16251,12 @@ } ], "id": "course-of-action--6256316e-42d1-4f24-a9b4-d2b29f840da5", - "modified": "2021-01-06T18:30:53.933Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Information Diversity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.933Z", + "created": "2021-01-13T01:52:41.709Z", "description": "Based on [Assignment: organization-defined circumstances]:\na. Fragment the following information: [Assignment: organization-defined information]; and\nb. Distribute the fragmented information across the following systems or system components: [Assignment: Assignment organization-defined systems or system components].\n\nOne objective of the advanced persistent threat is to exfiltrate valuable information. Once exfiltrated, there is generally no way for the organization to recover the lost information. Therefore, organizations may consider dividing the information into disparate elements and distributing those elements across multiple systems or system components and locations. Such actions will increase the adversary's work factor to capture and exfiltrate the desired information and, in so doing, increase the probability of detection. The fragmentation of information impacts the organization's ability to access the information in a timely manner. The extent of the fragmentation is dictated by the impact or classification level (and value) of the information, threat intelligence information received, and whether data tainting is used (i.e., data tainting-derived information about the exfiltration of some information could result in the fragmentation of the remaining information).", "external_references": [ { @@ -16265,12 +16265,12 @@ } ], "id": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "modified": "2021-01-06T18:30:53.933Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Information Fragmentation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.933Z", + "created": "2021-01-13T01:52:41.709Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] supply chain risk management policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the supply chain risk management policy and the associated supply chain risk management controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the supply chain risk management policy and procedures; and\nc. Review and update the current supply chain risk management:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nSupply chain risk management policy and procedures address the controls in the SR family as well as supply chain-related controls in other families that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of supply chain risk management policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to supply chain risk management policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -16279,12 +16279,12 @@ } ], "id": "course-of-action--13ebe89f-5140-4653-8a2f-4e7024860b2f", - "modified": "2021-01-06T18:30:53.933Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.709Z", "description": "a. Develop a plan for managing supply chain risks associated with the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of the following systems, system components or system services: [Assignment: organization-defined systems, system components, or system services];\nb. Review and update the supply chain risk management plan [Assignment: organization-defined frequency] or as required, to address threat, organizational or environmental changes; and\nc. Protect the supply chain risk management plan from unauthorized disclosure and modification.\n\nThe dependence on products, systems, and services from external providers, as well as the nature of the relationships with those providers, present an increasing level of risk to an organization. Threat actions that may increase security or privacy risks include unauthorized production, the insertion or use of counterfeits, tampering, theft, insertion of malicious software and hardware, and poor manufacturing and development practices in the supply chain. Supply chain risks can be endemic or systemic within a system element or component, a system, an organization, a sector, or the Nation. Managing supply chain risk is a complex, multifaceted undertaking that requires a coordinated effort across an organization to build trust relationships and communicate with internal and external stakeholders. Supply chain risk management (SCRM) activities include identifying and assessing risks, determining appropriate risk response actions, developing SCRM plans to document response actions, and monitoring performance against plans. The SCRM plan (at the system-level) is implementation specific, providing policy implementation, requirements, constraints and implications. It can either be stand-alone, or incorporated into system security and privacy plans. The SCRM plan addresses managing, implementation, and monitoring of SCRM controls and the development/sustainment of systems across the SDLC to support mission and business functions.\nBecause supply chains can differ significantly across and within organizations, SCRM plans are tailored to the individual program, organizational, and operational contexts. Tailored SCRM plans provide the basis for determining whether a technology, service, system component, or system is fit for purpose, and as such, the controls need to be tailored accordingly. Tailored SCRM plans help organizations focus their resources on the most critical mission and business functions based on mission and business requirements and their risk environment. Supply chain risk management plans include an expression of the supply chain risk tolerance for the organization, acceptable supply chain risk mitigation strategies or controls, a process for consistently evaluating and monitoring supply chain risk, approaches for implementing and communicating the plan, a description of and justification for supply chain risk mitigation measures taken, and associated roles and responsibilities. Finally, supply chain risk management plans address requirements for developing trustworthy, secure, privacy-protective, and resilient system components and systems, including the application of the security design principles implemented as part of life cycle-based systems security engineering processes (see SA-8).", "external_references": [ { @@ -16293,12 +16293,12 @@ } ], "id": "course-of-action--4f1f7489-4b7e-4854-88f9-62d6deac189f", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Supply Chain Risk Management Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.709Z", "description": "Establish a supply chain risk management team consisting of [Assignment: organization-defined personnel, roles, and responsibilities] to lead and support the following SCRM activities: [Assignment: organization-defined supply chain risk management activities].\n\nTo implement supply chain risk management plans, organizations establish a coordinated, team-based approach to identify and assess supply chain risks and manage these risks by using programmatic and technical mitigation techniques. The team approach enables organizations to conduct an analysis of their supply chain, communicate with internal and external partners or stakeholders, and gain broad consensus regarding the appropriate resources for SCRM. The SCRM team consists of organizational personnel with diverse roles and responsibilities for leading and supporting SCRM activities, including risk executive, information technology, contracting, information security, privacy, mission or business, legal, supply chain and logistics, acquisition, business continuity, and other relevant functions. Members of the SCRM team are involved in various aspects of the SDLC and, collectively, have an awareness of and provide expertise in acquisition processes, legal practices, vulnerabilities, threats, and attack vectors, as well as an understanding of the technical aspects and dependencies of systems. The SCRM team can be an extension of the security and privacy risk management processes or be included as part of an organizational risk management team.", "external_references": [ { @@ -16307,12 +16307,12 @@ } ], "id": "course-of-action--1e8a3621-e017-4eaf-adc3-ae3cf094a55c", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Supply Chain Risk Management Plan | Establish Scrm Team", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.710Z", "description": "a. Establish a process or processes to identify and address weaknesses or deficiencies in the supply chain elements and processes of [Assignment: organization-defined system or system component] in coordination with [Assignment: organization-defined supply chain personnel];\nb. Employ the following controls to protect against supply chain risks to the system, system component, or system service and to limit the harm or consequences from supply chain-related events: [Assignment: organization-defined supply chain controls]; and\nc. Document the selected and implemented supply chain processes and controls in [Selection: security and privacy plans; supply chain risk management plan; \n [Assignment: organization-defined document]\n ].\n\nSupply chain elements include organizations, entities, or tools employed for the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of systems and system components. Supply chain processes include hardware, software, and firmware development processes; shipping and handling procedures; personnel security and physical security programs; configuration management tools, techniques, and measures to maintain provenance; or other programs, processes, or procedures associated with the development, acquisition, maintenance and disposal of systems and system components. Supply chain elements and processes may be provided by organizations, system integrators, or external providers. Weaknesses or deficiencies in supply chain elements or processes represent potential vulnerabilities that can be exploited by adversaries to cause harm to the organization and affect its ability to carry out its core missions or business functions. Supply chain personnel are individuals with roles and responsibilities in the supply chain.", "external_references": [ { @@ -16321,12 +16321,12 @@ } ], "id": "course-of-action--ca21468d-48cd-4f2e-9261-e904961fc854", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Supply Chain Controls and Processes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.710Z", "description": "Employ a diverse set of sources for the following system components and services: [Assignment: organization-defined system components and services].\n\nDiversifying the supply of systems, system components, and services can reduce the probability that adversaries will successfully identify and target the supply chain and can reduce the impact of a supply chain event or compromise. Identifying multiple suppliers for replacement components can reduce the probability that the replacement component will become unavailable. Employing a diverse set of developers or logistics service providers can reduce the impact of a natural disaster or other supply chain event. Organizations consider designing the system to include diverse materials and components.", "external_references": [ { @@ -16335,12 +16335,12 @@ } ], "id": "course-of-action--2a590a0f-4c7e-4e07-a627-27a6637f7c12", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Supply Chain Controls and Processes | Diverse Supply Base", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.710Z", "description": "Employ the following controls to limit harm from potential adversaries identifying and targeting the organizational supply chain: [Assignment: organization-defined controls].\n\nControls that can be implemented to reduce the probability of adversaries successfully identifying and targeting the supply chain include avoiding the purchase of custom or non-standardized configurations, employing approved vendor lists with standing reputations in industry, following pre-agreed maintenance schedules and update and patch delivery mechanisms, maintaining a contingency plan in case of a supply chain event, using procurement carve-outs that provide exclusions to commitments or obligations, using diverse delivery routes, and minimizing the time between purchase decisions and delivery.", "external_references": [ { @@ -16349,12 +16349,12 @@ } ], "id": "course-of-action--cf94810b-7eec-4dbe-aa52-cde6bd73803e", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Supply Chain Controls and Processes | Limitation of Harm", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.934Z", + "created": "2021-01-13T01:52:41.710Z", "description": "Ensure that the controls included in the contracts of prime contractors are also included in the contracts of subcontractors.\n\nTo manage supply chain risk effectively and holistically, it is important that organizations ensure that supply chain risk management controls are included at all tiers in the supply chain. This includes ensuring that Tier 1 (prime) contractors have implemented processes to facilitate the 'flow down' of supply chain risk management controls to sub-tier contractors. The controls subject to flow down are identified in SR-3b.", "external_references": [ { @@ -16363,12 +16363,12 @@ } ], "id": "course-of-action--1ee286ff-d549-4296-b3ca-8aa5deb5547a", - "modified": "2021-01-06T18:30:53.934Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Supply Chain Controls and Processes | Sub-tier Flow Down", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.935Z", + "created": "2021-01-13T01:52:41.710Z", "description": "Document, monitor, and maintain valid provenance of the following systems, system components, and associated data: [Assignment: organization-defined systems, system components, and associated data].\n\nEvery system and system component has a point of origin and may be changed throughout its existence. Provenance is the chronology of the origin, development, ownership, location, and changes to a system or system component and associated data. It may also include personnel and processes used to interact with or make modifications to the system, component, or associated data. Organizations consider developing procedures (see SR-1) for allocating responsibilities for the creation, maintenance, and monitoring of provenance for systems and system components; transferring provenance documentation and responsibility between organizations; and preventing and monitoring for unauthorized changes to the provenance records. Organizations have methods to document, monitor, and maintain valid provenance baselines for systems, system components, and related data. These actions help track, assess, and document any changes to the provenance, including changes in supply chain elements or configuration, and help ensure non-repudiation of provenance information and the provenance change records. Provenance considerations are addressed throughout the system development life cycle and incorporated into contracts and other arrangements, as appropriate.", "external_references": [ { @@ -16377,12 +16377,12 @@ } ], "id": "course-of-action--c92da123-43d1-4f9b-80be-813a0775e6cf", - "modified": "2021-01-06T18:30:53.935Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Provenance", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.935Z", + "created": "2021-01-13T01:52:41.710Z", "description": "Establish and maintain unique identification of the following supply chain elements, processes, and personnel associated with the identified system and critical system components: [Assignment: organization-defined supply chain elements, processes, and personnel associated with organization-defined systems and critical system components].\n\nKnowing who and what is in the supply chains of organizations is critical to gaining visibility into supply chain activities. Visibility into supply chain activities is also important for monitoring and identifying high-risk events and activities. Without reasonable visibility into supply chains elements, processes, and personnel, it is very difficult for organizations to understand and manage risk and reduce their susceptibility to adverse events. Supply chain elements include organizations, entities, or tools used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems and system components. Supply chain processes include development processes for hardware, software, and firmware; shipping and handling procedures; configuration management tools, techniques, and measures to maintain provenance; personnel and physical security programs; or other programs, processes, or procedures associated with the production and distribution of supply chain elements. Supply chain personnel are individuals with specific roles and responsibilities related to the secure the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of a system or system component. Identification methods are sufficient to support an investigation in case of a supply chain change (e.g. if a supply company is purchased), compromise, or event.", "external_references": [ { @@ -16391,12 +16391,12 @@ } ], "id": "course-of-action--fd2feb18-0506-49cc-9cba-8590c4f3598c", - "modified": "2021-01-06T18:30:53.935Z", + "modified": "2021-01-13T01:52:41.710Z", "name": "Provenance | Identity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.935Z", + "created": "2021-01-13T01:52:41.711Z", "description": "Establish and maintain unique identification of the following systems and critical system components for tracking through the supply chain: [Assignment: organization-defined systems and critical system components].\n\nTracking the unique identification of systems and system components during development and transport activities provides a foundational identity structure for the establishment and maintenance of provenance. For example, system components may be labeled using serial numbers or tagged using radio-frequency identification tags. Labels and tags can help provide better visibility into the provenance of a system or system component. A system or system component may have more than one unique identifier. Identification methods are sufficient to support a forensic investigation after a supply chain compromise or event.", "external_references": [ { @@ -16405,12 +16405,12 @@ } ], "id": "course-of-action--5442ec03-76fc-4ed4-95c6-c13ec9d5d548", - "modified": "2021-01-06T18:30:53.935Z", + "modified": "2021-01-13T01:52:41.711Z", "name": "Provenance | Track and Trace", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.935Z", + "created": "2021-01-13T01:52:41.711Z", "description": "Employ the following controls to validate that the system or system component received is genuine and has not been altered: [Assignment: organization-defined controls].\n\nFor many systems and system components, especially hardware, there are technical means to determine if the items are genuine or have been altered, including optical and nanotechnology tagging, physically unclonable functions, side-channel analysis, cryptographic hash verifications or digital signatures, and visible anti-tamper labels or stickers. Controls can also include monitoring for out of specification performance, which can be an indicator of tampering or counterfeits. Organizations may leverage supplier and contractor processes for validating that a system or component is genuine and has not been altered and for replacing a suspect system or component. Some indications of tampering may be visible and addressable before accepting delivery, such as inconsistent packaging, broken seals, and incorrect labels. When a system or system component is suspected of being altered or counterfeit, the supplier, contractor, or original equipment manufacturer may be able to replace the item or provide a forensic capability to determine the origin of the counterfeit or altered item. Organizations can provide training to personnel on how to identify suspicious system or component deliveries.", "external_references": [ { @@ -16419,12 +16419,12 @@ } ], "id": "course-of-action--d08713da-08db-4691-8f16-64311405ec66", - "modified": "2021-01-06T18:30:53.935Z", + "modified": "2021-01-13T01:52:41.711Z", "name": "Provenance | Validate as Genuine and Not Altered", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.935Z", + "created": "2021-01-13T01:52:41.711Z", "description": "Employ [Assignment: organization-defined controls] and conduct [Assignment: organization-defined analysis] to ensure the integrity of the system and system components by validating the internal composition and provenance of critical or mission-essential technologies, products, and services.\n\nAuthoritative information regarding the internal composition of system components and the provenance of technology, products, and services provides a strong basis for trust. The validation of the internal composition and provenance of technologies, products, and services is referred to as the pedigree. For microelectronics, this includes material composition of components. For software this includes the composition of open-source and proprietary code, including the version of the component at a given point in time. Pedigrees increase the assurance that the claims suppliers assert about the internal composition and provenance of the products, services, and technologies they provide are valid. The validation of the internal composition and provenance can be achieved by various evidentiary artifacts or records that manufacturers and suppliers produce during the research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal of technology, products, and services. Evidentiary artifacts include, but are not limited to, software identification (SWID) tags, software component inventory, the manufacturers' declarations of platform attributes (e.g., serial numbers, hardware component inventory), and measurements (e.g., firmware hashes) that are tightly bound to the hardware itself.", "external_references": [ { @@ -16433,12 +16433,12 @@ } ], "id": "course-of-action--62170a82-c5c3-4098-b423-0159b9ae0304", - "modified": "2021-01-06T18:30:53.935Z", + "modified": "2021-01-13T01:52:41.711Z", "name": "Provenance | Supply Chain Integrity ' Pedigree", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.711Z", "description": "Employ the following acquisition strategies, contract tools, and procurement methods to protect against, identify, and mitigate supply chain risks: [Assignment: organization-defined acquisition strategies, contract tools, and procurement methods].\n\nThe use of the acquisition process provides an important vehicle to protect the supply chain. There are many useful tools and techniques available, including obscuring the end use of a system or system component, using blind or filtered buys, requiring tamper-evident packaging, or using trusted or controlled distribution. The results from a supply chain risk assessment can guide and inform the strategies, tools, and methods that are most applicable to the situation. Tools and techniques may provide protections against unauthorized production, theft, tampering, insertion of counterfeits, insertion of malicious software or backdoors, and poor development practices throughout the system development life cycle. Organizations also consider providing incentives for suppliers who implement controls, promote transparency into their processes and security and privacy practices, provide contract language that addresses the prohibition of tainted or counterfeit components, and restrict purchases from untrustworthy suppliers. Organizations consider providing training, education, and awareness programs for personnel regarding supply chain risk, available mitigation strategies, and when the programs should be employed. Methods for reviewing and protecting development plans, documentation, and evidence are commensurate with the security and privacy requirements of the organization. Contracts may specify documentation protection requirements.", "external_references": [ { @@ -16447,12 +16447,12 @@ } ], "id": "course-of-action--ab2398a1-199a-43a9-8dba-860829bdacdb", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.711Z", "name": "Acquisition Strategies, Tools, and Methods", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.711Z", "description": "Employ the following controls to ensure an adequate supply of [Assignment: organization-defined critical system components]: [Assignment: organization-defined controls].\n\nAdversaries can attempt to impede organizational operations by disrupting the supply of critical system components or corrupting supplier operations. Organizations may track systems and component mean time to failure to mitigate the loss of temporary or permanent system function. Controls to ensure that adequate supplies of critical system components include the use of multiple suppliers throughout the supply chain for the identified critical components, stockpiling spare components to ensure operation during mission-critical times, and the identification of functionally identical or similar components that may be used, if necessary.", "external_references": [ { @@ -16461,12 +16461,12 @@ } ], "id": "course-of-action--a3fbb68e-3177-4552-abbe-b29bf11a8cc2", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.711Z", "name": "Acquisition Strategies, Tools, and Methods | Adequate Supply", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Assess the system, system component, or system service prior to selection, acceptance, modification, or update.\n\nOrganizational personnel or independent, external entities conduct assessments of systems, components, products, tools, and services to uncover evidence of tampering, unintentional and intentional vulnerabilities, or evidence of non-compliance with supply chain controls. These include malicious code, malicious processes, defective software, backdoors, and counterfeits. Assessments can include evaluations; design proposal reviews; visual or physical inspection; static and dynamic analyses; visual, x-ray, or magnetic particle inspections; simulations; white, gray, or black box testing; fuzz testing; stress testing; and penetration testing (see SR-6(1)). Evidence generated during assessments is documented for follow-on actions by organizations. The evidence generated during the organizational or independent assessments of supply chain elements may be used to improve supply chain processes and inform the supply chain risk management process. The evidence can be leveraged in follow-on assessments. Evidence and other documentation may be shared in accordance with organizational agreements.", "external_references": [ { @@ -16475,12 +16475,12 @@ } ], "id": "course-of-action--3638b65b-4bf3-44ca-970a-a7c722c67483", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Acquisition Strategies, Tools, and Methods | Assessments Prior to Selection, Acceptance, Modification, or Update", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Assess and review the supply chain-related risks associated with suppliers or contractors and the system, system component, or system service they provide [Assignment: organization-defined frequency].\n\nAn assessment and review of supplier risk includes security and supply chain risk management processes, foreign ownership, control or influence (FOCI), and the ability of the supplier to effectively assess subordinate second-tier and third-tier suppliers and contractors. The reviews may be conducted by the organization or by an independent third party. The reviews consider documented processes, documented controls, all-source intelligence, and publicly available information related to the supplier or contractor. Organizations can use open-source information to monitor for indications of stolen information, poor development and quality control practices, information spillage, or counterfeits. In some cases, it may be appropriate or required to share assessment and review results with other organizations in accordance with any applicable rules, policies, or inter-organizational agreements or contracts.", "external_references": [ { @@ -16489,12 +16489,12 @@ } ], "id": "course-of-action--9a6be2d5-24ce-4c65-8aad-f936dda46d10", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Supplier Assessments and Reviews", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Employ [Selection (one or more): organizational analysis, independent third-party analysis, organizational testing, independent third-party testing] of the following supply chain elements, processes, and actors associated with the system, system component, or system service: [Assignment: organization-defined supply chain elements, processes, and actors].\n\nRelationships between entities and procedures within the supply chain, including development and delivery, are considered. Supply chain elements include organizations, entities, or tools that are used for the research and development, design, manufacturing, acquisition, delivery, integration, operations, maintenance, and disposal of systems, system components, or system services. Supply chain processes include supply chain risk management programs; SCRM strategies and implementation plans; personnel and physical security programs; hardware, software, and firmware development processes; configuration management tools, techniques, and measures to maintain provenance; shipping and handling procedures; and programs, processes, or procedures associated with the production and distribution of supply chain elements. Supply chain actors are individuals with specific roles and responsibilities in the supply chain. The evidence generated and collected during analyses and testing of supply chain elements, processes, and actors is documented and used to inform organizational risk management activities and decisions.", "external_references": [ { @@ -16503,12 +16503,12 @@ } ], "id": "course-of-action--5e8f29ba-65fc-4f79-a325-3d6065cec572", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Supplier Assessments and Reviews | Testing and Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.936Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Employ the following Operations Security (OPSEC) controls to protect supply chain-related information for the system, system component, or system service: [Assignment: organization-defined Operations Security (OPSEC) controls].\n\nSupply chain OPSEC expands the scope of OPSEC to include suppliers and potential suppliers. OPSEC is a process that includes identifying critical information, analyzing friendly actions related to operations and other activities to identify actions that can be observed by potential adversaries, determining indicators that potential adversaries might obtain that could be interpreted or pieced together to derive information in sufficient time to cause harm to organizations, implementing safeguards or countermeasures to eliminate or reduce exploitable vulnerabilities and risk to an acceptable level, and considering how aggregated information may expose users or specific uses of the supply chain. Supply chain information includes user identities; uses for systems, system components, and system services; supplier identities; security and privacy requirements; system and component configurations; supplier processes; design specifications; and testing and evaluation results. Supply chain OPSEC may require organizations to withhold mission or business information from suppliers and may include the use of intermediaries to hide the end use or users of systems, system components, or system services.", "external_references": [ { @@ -16517,12 +16517,12 @@ } ], "id": "course-of-action--410a249d-25db-4cb0-8bb6-1f9e35c050b6", - "modified": "2021-01-06T18:30:53.936Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Supply Chain Operations Security", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Establish agreements and procedures with entities involved in the supply chain for the system, system component, or system service for the [Selection (one or more): notification of supply chain compromises; results of assessments or audits; \n [Assignment: organization-defined information]\n ].\n\nThe establishment of agreements and procedures facilitates communications among supply chain entities. Early notification of compromises and potential compromises in the supply chain that can potentially adversely affect or have adversely affected organizational systems or system components is essential for organizations to effectively respond to such incidents. The results of assessments or audits may include open-source information that contributed to a decision or result and could be used to help the supply chain entity resolve a concern or improve its processes.", "external_references": [ { @@ -16531,12 +16531,12 @@ } ], "id": "course-of-action--8669b379-ddd9-4275-9035-1f6592560b4f", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Notification Agreements", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Implement a tamper protection program for the system, system component, or system service.\n\nAnti-tamper technologies, tools, and techniques provide a level of protection for systems, system components, and services against many threats, including reverse engineering, modification, and substitution. Strong identification combined with tamper resistance and/or tamper detection is essential to protecting systems and components during distribution and when in use.", "external_references": [ { @@ -16545,12 +16545,12 @@ } ], "id": "course-of-action--c645725d-e334-4d96-b253-ce0b427d8b73", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Tamper Resistance and Detection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.712Z", "description": "Employ anti-tamper technologies, tools, and techniques throughout the system development life cycle.\n\nThe system development life cycle includes research and development, design, manufacturing, acquisition, delivery, integration, operations and maintenance, and disposal. Organizations use a combination of hardware and software techniques for tamper resistance and detection. Organizations use obfuscation and self-checking to make reverse engineering and modifications more difficult, time-consuming, and expensive for adversaries. The customization of systems and system components can make substitutions easier to detect and therefore limit damage.", "external_references": [ { @@ -16559,12 +16559,12 @@ } ], "id": "course-of-action--c2a44dea-20f7-4f51-af02-18424ba9b94b", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.712Z", "name": "Tamper Resistance and Detection | Multiple Stages of System Development Life Cycle", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.713Z", "description": "Inspect the following systems or system components [Selection (one or more): at random; at [Assignment: organization-defined frequency], upon [Assignment: organization-defined indications of need for inspection]\n ] to detect tampering: [Assignment: organization-defined systems or system components].\n\nThe inspection of systems or systems components for tamper resistance and detection addresses physical and logical tampering and is applied to systems and system components removed from organization-controlled areas. Indications of a need for inspection include changes in packaging, specifications, factory location, or entity in which the part is purchased, and when individuals return from travel to high-risk locations.", "external_references": [ { @@ -16573,12 +16573,12 @@ } ], "id": "course-of-action--0ab0a144-5552-4cd3-9a11-4a3ca2ec9f3a", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Inspection of Systems or Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.713Z", "description": "a. Develop and implement anti-counterfeit policy and procedures that include the means to detect and prevent counterfeit components from entering the system; and\nb. Report counterfeit system components to [Selection (one or more): source of counterfeit component; \n [Assignment: organization-defined external reporting organizations]\n ; \n [Assignment: organization-defined personnel or roles]\n ].\n\nSources of counterfeit components include manufacturers, developers, vendors, and contractors. Anti-counterfeiting policies and procedures support tamper resistance and provide a level of protection against the introduction of malicious code. External reporting organizations include CISA.", "external_references": [ { @@ -16587,12 +16587,12 @@ } ], "id": "course-of-action--64672235-3349-4175-af93-4bb4c68e98df", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Component Authenticity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.713Z", "description": "Train [Assignment: organization-defined personnel or roles] to detect counterfeit system components (including hardware, software, and firmware).\n\nNone.", "external_references": [ { @@ -16601,12 +16601,12 @@ } ], "id": "course-of-action--254102af-0aa7-49e2-9d9c-9975a821caad", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Component Authenticity | Anti-counterfeit Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.937Z", + "created": "2021-01-13T01:52:41.713Z", "description": "Maintain configuration control over the following system components awaiting service or repair and serviced or repaired components awaiting return to service: [Assignment: organization-defined system components].\n\nNone.", "external_references": [ { @@ -16615,12 +16615,12 @@ } ], "id": "course-of-action--3dbb97d9-1a3d-46c8-8a74-f3a605a2ae07", - "modified": "2021-01-06T18:30:53.937Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Component Authenticity | Configuration Control for Component Service and Repair", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.938Z", + "created": "2021-01-13T01:52:41.713Z", "description": "Scan for counterfeit system components [Assignment: organization-defined frequency].\n\nThe type of component determines the type of scanning to be conducted (e.g., web application scanning if the component is a web application).", "external_references": [ { @@ -16629,12 +16629,12 @@ } ], "id": "course-of-action--44a422cf-87a6-4765-bd64-6a65fc779d54", - "modified": "2021-01-06T18:30:53.938Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Component Authenticity | Anti-counterfeit Scanning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.938Z", + "created": "2021-01-13T01:52:41.713Z", "description": "Dispose of [Assignment: organization-defined data, documentation, tools, or system components] using the following techniques and methods: [Assignment: organization-defined techniques and methods].\n\nData, documentation, tools, or system components can be disposed of at any time during the system development life cycle (not only in the disposal or retirement phase of the life cycle). For example, disposal can occur during research and development, design, prototyping, or operations/maintenance and include methods such as disk cleaning, removal of cryptographic keys, partial reuse of components. Opportunities for compromise during disposal affect physical and logical data, including system documentation in paper-based or digital files; shipping and delivery documentation; memory sticks with software code; or complete routers or servers that include permanent media, which contain sensitive or proprietary information. Additionally, proper disposal of system components helps to prevent such components from entering the gray market.", "external_references": [ { @@ -16643,7 +16643,7 @@ } ], "id": "course-of-action--4b2ba88e-3357-4699-b549-c0d16b698f07", - "modified": "2021-01-06T18:30:53.938Z", + "modified": "2021-01-13T01:52:41.713Z", "name": "Component Disposal", "type": "course-of-action" } diff --git a/frameworks/nist800-53-r5/stix/nist800-53-r5-enterprise-attack.json b/frameworks/nist800-53-r5/stix/nist800-53-r5-enterprise-attack.json index 797b91ac..f152817a 100644 --- a/frameworks/nist800-53-r5/stix/nist800-53-r5-enterprise-attack.json +++ b/frameworks/nist800-53-r5/stix/nist800-53-r5-enterprise-attack.json @@ -1,5 +1,5 @@ { - "id": "bundle--9789cb94-549c-4309-a913-22c4b630c5d6", + "id": "bundle--33e1baa8-b108-441c-937b-d116864f8160", "objects": [ { "created": "2017-12-14T16:46:06.044Z", @@ -229406,7 +229406,7 @@ "type": "marking-definition" }, { - "created": "2021-01-06T18:30:53.714Z", + "created": "2021-01-13T01:52:41.506Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] access control policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the access control policy and the associated access controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the access control policy and procedures; and\nc. Review and update the current access control:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nAccess control policy and procedures address the controls in the AC family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of access control policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies reflecting the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to access control policy and procedures include assessment or audit findings, security or privacy incidents, or changes in laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -229415,12 +229415,12 @@ } ], "id": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "modified": "2021-01-06T18:30:53.714Z", + "modified": "2021-01-13T01:52:41.506Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.714Z", + "created": "2021-01-13T01:52:41.507Z", "description": "a. Define and document the types of accounts allowed and specifically prohibited for use within the system;\nb. Assign account managers;\nc. Require [Assignment: organization-defined prerequisites and criteria] for group and role membership;\nd. Specify:\n1. Authorized users of the system;\n2. Group and role membership; and\n3. Access authorizations (i.e., privileges) and [Assignment: organization-defined attributes (as required)] for each account;\ne. Require approvals by [Assignment: organization-defined personnel or roles] for requests to create accounts;\nf. Create, enable, modify, disable, and remove accounts in accordance with [Assignment: organization-defined policy, procedures, prerequisites, and criteria];\ng. Monitor the use of accounts;\nh. Notify account managers and [Assignment: organization-defined personnel or roles] within:\n1. [Assignment: organization-defined time period] when accounts are no longer required;\n2. [Assignment: organization-defined time period] when users are terminated or transferred; and\n3. [Assignment: organization-defined time period] when system usage or need-to-know changes for an individual;\ni. Authorize access to the system based on:\n1. A valid access authorization;\n2. Intended system usage; and\n3. [Assignment: organization-defined attributes (as required)];\nj. Review accounts for compliance with account management requirements [Assignment: organization-defined frequency];\nk. Establish and implement a process for changing shared or group account authenticators (if deployed) when individuals are removed from the group; and\nl. Align account management processes with personnel termination and transfer processes.\n\nExamples of system account types include individual, shared, group, system, guest, anonymous, emergency, developer, temporary, and service. Identification of authorized system users and the specification of access privileges reflect the requirements in other controls in the security plan. Users requiring administrative privileges on system accounts receive additional scrutiny by organizational personnel responsible for approving such accounts and privileged access, including system owner, mission or business owner, senior agency information security officer, or senior agency official for privacy. Types of accounts that organizations may wish to prohibit due to increased risk include shared, group, emergency, anonymous, temporary, and guest accounts.\nWhere access involves personally identifiable information, security programs collaborate with the senior agency official for privacy to establish the specific conditions for group and role membership; specify authorized users, group and role membership, and access authorizations for each account; and create, adjust, or remove system accounts in accordance with organizational policies. Policies can include such information as account expiration dates or other factors that trigger the disabling of accounts. Organizations may choose to define access privileges or other attributes by account, type of account, or a combination of the two. Examples of other attributes required for authorizing access include restrictions on time of day, day of week, and point of origin. In defining other system account attributes, organizations consider system-related requirements and mission/business requirements. Failure to consider these factors could affect system availability.\nTemporary and emergency accounts are intended for short-term use. Organizations establish temporary accounts as part of normal account activation procedures when there is a need for short-term accounts without the demand for immediacy in account activation. Organizations establish emergency accounts in response to crisis situations and with the need for rapid account activation. Therefore, emergency account activation may bypass normal account authorization processes. Emergency and temporary accounts are not to be confused with infrequently used accounts, including local logon accounts used for special tasks or when network resources are unavailable (may also be known as accounts of last resort). Such accounts remain available and are not subject to automatic disabling or removal dates. Conditions for disabling or deactivating accounts include when shared/group, emergency, or temporary accounts are no longer required and when individuals are transferred or terminated. Changing shared/group authenticators when members leave the group is intended to ensure that former group members do not retain access to the shared or group account. Some types of system accounts may require specialized training.", "external_references": [ { @@ -229429,12 +229429,12 @@ } ], "id": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "modified": "2021-01-06T18:30:53.714Z", + "modified": "2021-01-13T01:52:41.507Z", "name": "Account Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.718Z", + "created": "2021-01-13T01:52:41.509Z", "description": "Enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.\n\nAccess control policies control access between active entities or subjects (i.e., users or processes acting on behalf of users) and passive entities or objects (i.e., devices, files, records, domains) in organizational systems. In addition to enforcing authorized access at the system level and recognizing that systems can host many applications and services in support of mission and business functions, access enforcement mechanisms can also be employed at the application and service level to provide increased information security and privacy. In contrast to logical access controls that are implemented within the system, physical access controls are addressed by the controls in the Physical and Environmental Protection (PE) family.", "external_references": [ { @@ -229443,12 +229443,12 @@ } ], "id": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "modified": "2021-01-06T18:30:53.718Z", + "modified": "2021-01-13T01:52:41.509Z", "name": "Access Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.722Z", + "created": "2021-01-13T01:52:41.513Z", "description": "Enforce approved authorizations for controlling the flow of information within the system and between connected systems based on [Assignment: organization-defined information flow control policies].\n\nInformation flow control regulates where information can travel within a system and between systems (in contrast to who is allowed to access the information) and without regard to subsequent accesses to that information. Flow control restrictions include blocking external traffic that claims to be from within the organization, keeping export-controlled information from being transmitted in the clear to the Internet, restricting web requests that are not from the internal web proxy server, and limiting information transfers between organizations based on data structures and content. Transferring information between organizations may require an agreement specifying how the information flow is enforced (see CA-3). Transferring information between systems in different security or privacy domains with different security or privacy policies introduces the risk that such transfers violate one or more domain security or privacy policies. In such situations, information owners/stewards provide guidance at designated policy enforcement points between connected systems. Organizations consider mandating specific architectural solutions to enforce specific security and privacy policies. Enforcement includes prohibiting information transfers between connected systems (i.e., allowing access only), verifying write permissions before accepting information from another security or privacy domain or connected system, employing hardware mechanisms to enforce one-way information flows, and implementing trustworthy regrading mechanisms to reassign security or privacy attributes and labels.\nOrganizations commonly employ information flow control policies and enforcement mechanisms to control the flow of information between designated sources and destinations within systems and between connected systems. Flow control is based on the characteristics of the information and/or the information path. Enforcement occurs, for example, in boundary protection devices that employ rule sets or establish configuration settings that restrict system services, provide a packet-filtering capability based on header information, or provide a message-filtering capability based on message content. Organizations also consider the trustworthiness of filtering and/or inspection mechanisms (i.e., hardware, firmware, and software components) that are critical to information flow enforcement. Control enhancements 3 through 32 primarily address cross-domain solution needs that focus on more advanced filtering techniques, in-depth analysis, and stronger flow enforcement mechanisms implemented in cross-domain products, such as high-assurance guards. Such capabilities are generally not available in commercial off-the-shelf products. Information flow enforcement also applies to control plane traffic (e.g., routing and DNS).", "external_references": [ { @@ -229457,12 +229457,12 @@ } ], "id": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "modified": "2021-01-06T18:30:53.722Z", + "modified": "2021-01-13T01:52:41.513Z", "name": "Information Flow Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "a. Identify and document [Assignment: organization-defined duties of individuals requiring separation]; and\nb. Define system access authorizations to support separation of duties.\n\nSeparation of duties addresses the potential for abuse of authorized privileges and helps to reduce the risk of malevolent activity without collusion. Separation of duties includes dividing mission or business functions and support functions among different individuals or roles, conducting system support functions with different individuals, and ensuring that security personnel who administer access control functions do not also administer audit functions. Because separation of duty violations can span systems and application domains, organizations consider the entirety of systems and system components when developing policy on separation of duties. Separation of duties is enforced through the account management activities in AC-2, access control mechanisms in AC-3, and identity management activities in IA-2, IA-4, and IA-12.", "external_references": [ { @@ -229471,12 +229471,12 @@ } ], "id": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Separation of Duties", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.729Z", + "created": "2021-01-13T01:52:41.519Z", "description": "Employ the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) that are necessary to accomplish assigned organizational tasks.\n\nOrganizations employ least privilege for specific duties and systems. The principle of least privilege is also applied to system processes, ensuring that the processes have access to systems and operate at privilege levels no higher than necessary to accomplish organizational missions or business functions. Organizations consider the creation of additional processes, roles, and accounts as necessary to achieve least privilege. Organizations apply least privilege to the development, implementation, and operation of organizational systems.", "external_references": [ { @@ -229485,12 +229485,12 @@ } ], "id": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "modified": "2021-01-06T18:30:53.729Z", + "modified": "2021-01-13T01:52:41.519Z", "name": "Least Privilege", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.732Z", + "created": "2021-01-13T01:52:41.522Z", "description": "a. Enforce a limit of [Assignment: organization-defined number] consecutive invalid logon attempts by a user during a [Assignment: organization-defined time period]; and\nb. Automatically [Selection (one or more): lock the account or node for an [Assignment: organization-defined time period]\n ; lock the account or node until released by an administrator; delay next logon prompt per [Assignment: organization-defined delay algorithm]\n ; notify system administrator; take other [Assignment: organization-defined action]\n ] when the maximum number of unsuccessful attempts is exceeded.\n\nThe need to limit unsuccessful logon attempts and take subsequent action when the maximum number of attempts is exceeded applies regardless of whether the logon occurs via a local or network connection. Due to the potential for denial of service, automatic lockouts initiated by systems are usually temporary and automatically release after a predetermined, organization-defined time period. If a delay algorithm is selected, organizations may employ different algorithms for different components of the system based on the capabilities of those components. Responses to unsuccessful logon attempts may be implemented at the operating system and the application levels. Organization-defined actions that may be taken when the number of allowed consecutive invalid logon attempts is exceeded include prompting the user to answer a secret question in addition to the username and password, invoking a lockdown mode with limited user capabilities (instead of full lockout), allowing users to only logon from specified Internet Protocol (IP) addresses, requiring a CAPTCHA to prevent automated attacks, or applying user profiles such as location, time of day, IP address, device, or Media Access Control (MAC) address. If automatic system lockout or execution of a delay algorithm is not implemented in support of the availability objective, organizations consider a combination of other actions to help prevent brute force attacks. In addition to the above, organizations can prompt users to respond to a secret question before the number of allowed unsuccessful logon attempts is exceeded. Automatically unlocking an account after a specified period of time is generally not permitted. However, exceptions may be required based on operational mission or need.", "external_references": [ { @@ -229499,12 +229499,12 @@ } ], "id": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "modified": "2021-01-06T18:30:53.732Z", + "modified": "2021-01-13T01:52:41.522Z", "name": "Unsuccessful Logon Attempts", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.733Z", + "created": "2021-01-13T01:52:41.523Z", "description": "a. Display [Assignment: organization-defined system use notification message or banner] to users before granting access to the system that provides privacy and security notices consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and state that:\n1. Users are accessing a U.S. Government system;\n2. System usage may be monitored, recorded, and subject to audit;\n3. Unauthorized use of the system is prohibited and subject to criminal and civil penalties; and\n4. Use of the system indicates consent to monitoring and recording;\nb. Retain the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to log on to or further access the system; and\nc. For publicly accessible systems:\n1. Display system use information [Assignment: organization-defined conditions], before granting further access to the publicly accessible system;\n2. Display references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that generally prohibit those activities; and\n3. Include a description of the authorized uses of the system.\n\nSystem use notifications can be implemented using messages or warning banners displayed before individuals log in to systems. System use notifications are used only for access via logon interfaces with human users. Notifications are not required when human interfaces do not exist. Based on an assessment of risk, organizations consider whether or not a secondary system use notification is needed to access applications or other system resources after the initial network logon. Organizations consider system use notification messages or banners displayed in multiple languages based on organizational needs and the demographics of system users. Organizations consult with the privacy office for input regarding privacy messaging and the Office of the General Counsel or organizational equivalent for legal review and approval of warning banner content.", "external_references": [ { @@ -229513,12 +229513,12 @@ } ], "id": "course-of-action--cbce7f45-69d6-4543-b33e-be0d0a7a43d6", - "modified": "2021-01-06T18:30:53.733Z", + "modified": "2021-01-13T01:52:41.523Z", "name": "System Use Notification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.735Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Limit the number of concurrent sessions for each [Assignment: organization-defined account and/or account type] to [Assignment: organization-defined number].\n\nOrganizations may define the maximum number of concurrent sessions for system accounts globally, by account type, by account, or any combination thereof. For example, organizations may limit the number of concurrent sessions for system administrators or other individuals working in particularly sensitive domains or mission-critical applications. Concurrent session control addresses concurrent sessions for system accounts. It does not, however, address concurrent sessions by single users via multiple system accounts.", "external_references": [ { @@ -229527,12 +229527,12 @@ } ], "id": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", - "modified": "2021-01-06T18:30:53.735Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Concurrent Session Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.735Z", + "created": "2021-01-13T01:52:41.524Z", "description": "a. Prevent further access to the system by [Selection (one or more): initiating a device lock after [Assignment: organization-defined time period] of inactivity; requiring the user to initiate a device lock before leaving the system unattended]; and\nb. Retain the device lock until the user reestablishes access using established identification and authentication procedures.\n\nDevice locks are temporary actions taken to prevent logical access to organizational systems when users stop work and move away from the immediate vicinity of those systems but do not want to log out because of the temporary nature of their absences. Device locks can be implemented at the operating system level or at the application level. A proximity lock may be used to initiate the device lock (e.g., via a Bluetooth-enabled device or dongle). User-initiated device locking is behavior or policy-based and, as such, requires users to take physical action to initiate the device lock. Device locks are not an acceptable substitute for logging out of systems, such as when organizations require users to log out at the end of workdays.", "external_references": [ { @@ -229541,12 +229541,12 @@ } ], "id": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", - "modified": "2021-01-06T18:30:53.735Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Device Lock", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.737Z", + "created": "2021-01-13T01:52:41.524Z", "description": "Automatically terminate a user session after [Assignment: organization-defined conditions, or trigger events requiring session disconnect].\n\nSession termination addresses the termination of user-initiated logical sessions (in contrast to SC-10, which addresses the termination of network connections associated with communications sessions (i.e., network disconnect)). A logical session (for local, network, and remote access) is initiated whenever a user (or process acting on behalf of a user) accesses an organizational system. Such user sessions can be terminated without terminating network sessions. Session termination ends all processes associated with a user's logical session except for those processes that are specifically created by the user (i.e., session owner) to continue after the session is terminated. Conditions or trigger events that require automatic termination of the session include organization-defined periods of user inactivity, targeted responses to certain types of incidents, or time-of-day restrictions on system use.", "external_references": [ { @@ -229555,12 +229555,12 @@ } ], "id": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", - "modified": "2021-01-06T18:30:53.737Z", + "modified": "2021-01-13T01:52:41.524Z", "name": "Session Termination", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.738Z", + "created": "2021-01-13T01:52:41.525Z", "description": "a. Identify [Assignment: organization-defined user actions] that can be performed on the system without identification or authentication consistent with organizational mission and business functions; and\nb. Document and provide supporting rationale in the security plan for the system, user actions not requiring identification or authentication.\n\nSpecific user actions may be permitted without identification or authentication if organizations determine that identification and authentication are not required for the specified user actions. Organizations may allow a limited number of user actions without identification or authentication, including when individuals access public websites or other publicly accessible federal systems, when individuals use mobile phones to receive calls, or when facsimiles are received. Organizations identify actions that normally require identification or authentication but may, under certain circumstances, allow identification or authentication mechanisms to be bypassed. Such bypasses may occur, for example, via a software-readable physical switch that commands bypass of the logon functionality and is protected from accidental or unmonitored use. Permitting actions without identification or authentication does not apply to situations where identification and authentication have already occurred and are not repeated but rather to situations where identification and authentication have not yet occurred. Organizations may decide that there are no user actions that can be performed on organizational systems without identification and authentication, and therefore, the value for the assignment can be 'none.'", "external_references": [ { @@ -229569,12 +229569,12 @@ } ], "id": "course-of-action--211c4deb-da02-46df-a20c-48599e4bd050", - "modified": "2021-01-06T18:30:53.738Z", + "modified": "2021-01-13T01:52:41.525Z", "name": "Permitted Actions Without Identification or Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.739Z", + "created": "2021-01-13T01:52:41.526Z", "description": "a. Provide the means to associate [Assignment: organization-defined types of security and privacy attributes] with [Assignment: organization-defined security and privacy attribute values] for information in storage, in process, and/or in transmission;\nb. Ensure that the attribute associations are made and retained with the information;\nc. Establish the following permitted security and privacy attributes from the attributes defined in AC-16a for [Assignment: organization-defined systems]: [Assignment: organization-defined security and privacy attributes];\nd. Determine the following permitted attribute values or ranges for each of the established attributes: [Assignment: organization-defined attribute values or ranges for established attributes];\ne. Audit changes to attributes; and\nf. Review [Assignment: organization-defined security and privacy attributes] for applicability [Assignment: organization-defined frequency].\n\nInformation is represented internally within systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are typically associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are typically associated with data structures, such as records, buffers, tables, files, inter-process pipes, and communications ports. Security attributes, a form of metadata, are abstractions that represent the basic properties or characteristics of active and passive entities with respect to safeguarding information. Privacy attributes, which may be used independently or in conjunction with security attributes, represent the basic properties or characteristics of active or passive entities with respect to the management of personally identifiable information. Attributes can be either explicitly or implicitly associated with the information contained in organizational systems or system components.\nAttributes may be associated with active entities (i.e., subjects) that have the potential to send or receive information, cause information to flow among objects, or change the system state. These attributes may also be associated with passive entities (i.e., objects) that contain or receive information. The association of attributes to subjects and objects by a system is referred to as binding and is inclusive of setting the attribute value and the attribute type. Attributes, when bound to data or information, permit the enforcement of security and privacy policies for access control and information flow control, including data retention limits, permitted uses of personally identifiable information, and identification of personal information within data objects. Such enforcement occurs through organizational processes or system functions or mechanisms. The binding techniques implemented by systems affect the strength of attribute binding to information. Binding strength and the assurance associated with binding techniques play important parts in the trust that organizations have in the information flow enforcement process. The binding techniques affect the number and degree of additional reviews required by organizations. The content or assigned values of attributes can directly affect the ability of individuals to access organizational information.\nOrganizations can define the types of attributes needed for systems to support missions or business functions. There are many values that can be assigned to a security attribute. By specifying the permitted attribute ranges and values, organizations ensure that attribute values are meaningful and relevant. Labeling refers to the association of attributes with the subjects and objects represented by the internal data structures within systems. This facilitates system-based enforcement of information security and privacy policies. Labels include classification of information in accordance with legal and compliance requirements (e.g., top secret, secret, confidential, controlled unclassified), information impact level; high value asset information, access authorizations, nationality; data life cycle protection (i.e., encryption and data expiration), personally identifiable information processing permissions, including individual consent to personally identifiable information processing, and contractor affiliation. A related term to labeling is marking. Marking refers to the association of attributes with objects in a human-readable form and displayed on system media. Marking enables manual, procedural, or process-based enforcement of information security and privacy policies. Security and privacy labels may have the same value as media markings (e.g., top secret, secret, confidential). See MP-3 (Media Marking).", "external_references": [ { @@ -229583,12 +229583,12 @@ } ], "id": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "modified": "2021-01-06T18:30:53.739Z", + "modified": "2021-01-13T01:52:41.526Z", "name": "Security and Privacy Attributes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.741Z", + "created": "2021-01-13T01:52:41.528Z", "description": "a. Establish and document usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and\nb. Authorize each type of remote access to the system prior to allowing such connections.\n\nRemote access is access to organizational systems (or processes acting on behalf of users) that communicate through external networks such as the Internet. Types of remote access include dial-up, broadband, and wireless. Organizations use encrypted virtual private networks (VPNs) to enhance confidentiality and integrity for remote connections. The use of encrypted VPNs provides sufficient assurance to the organization that it can effectively treat such connections as internal networks if the cryptographic mechanisms used are implemented in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Still, VPN connections traverse external networks, and the encrypted VPN does not enhance the availability of remote connections. VPNs with encrypted tunnels can also affect the ability to adequately monitor network communications traffic for malicious code. Remote access controls apply to systems other than public web servers or systems designed for public access. Authorization of each remote access type addresses authorization prior to allowing remote access without specifying the specific formats for such authorization. While organizations may use information exchange and system connection security agreements to manage remote access connections to other systems, such agreements are addressed as part of CA-3. Enforcing access restrictions for remote access is addressed via AC-3.", "external_references": [ { @@ -229597,12 +229597,12 @@ } ], "id": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "modified": "2021-01-06T18:30:53.741Z", + "modified": "2021-01-13T01:52:41.528Z", "name": "Remote Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.744Z", + "created": "2021-01-13T01:52:41.530Z", "description": "a. Establish configuration requirements, connection requirements, and implementation guidance for each type of wireless access; and\nb. Authorize each type of wireless access to the system prior to allowing such connections.\n\nWireless technologies include microwave, packet radio (ultra-high frequency or very high frequency), 802.11x, and Bluetooth. Wireless networks use authentication protocols that provide authenticator protection and mutual authentication.", "external_references": [ { @@ -229611,12 +229611,12 @@ } ], "id": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "modified": "2021-01-06T18:30:53.744Z", + "modified": "2021-01-13T01:52:41.530Z", "name": "Wireless Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.745Z", + "created": "2021-01-13T01:52:41.531Z", "description": "a. Establish configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices, to include when such devices are outside of controlled areas; and\nb. Authorize the connection of mobile devices to organizational systems.\n\nA mobile device is a computing device that has a small form factor such that it can easily be carried by a single individual; is designed to operate without a physical connection; possesses local, non-removable or removable data storage; and includes a self-contained power source. Mobile device functionality may also include voice communication capabilities, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations. Examples include smart phones and tablets. Mobile devices are typically associated with a single individual. The processing, storage, and transmission capability of the mobile device may be comparable to or merely a subset of notebook/desktop systems, depending on the nature and intended purpose of the device. Protection and control of mobile devices is behavior or policy-based and requires users to take physical action to protect and control such devices when outside of controlled areas. Controlled areas are spaces for which organizations provide physical or procedural controls to meet the requirements established for protecting information and systems.\nDue to the large variety of mobile devices with different characteristics and capabilities, organizational restrictions may vary for the different classes or types of such devices. Usage restrictions and specific implementation guidance for mobile devices include configuration management, device identification and authentication, implementation of mandatory protective software, scanning devices for malicious code, updating virus protection software, scanning for critical software updates and patches, conducting primary operating system (and possibly other resident software) integrity checks, and disabling unnecessary hardware.\nUsage restrictions and authorization to connect may vary among organizational systems. For example, the organization may authorize the connection of mobile devices to the organizational network and impose a set of usage restrictions, while a system owner may withhold authorization for mobile device connection to specific applications or impose additional usage restrictions before allowing mobile device connections to a system. Adequate security for mobile devices goes beyond the requirements specified in AC-19. Many controls for mobile devices are reflected in other controls allocated to the initial control baselines as starting points for the development of security plans and overlays using the tailoring process. There may also be some overlap by the security controls within the different families of controls. AC-20 addresses mobile devices that are not organization-controlled.", "external_references": [ { @@ -229625,12 +229625,12 @@ } ], "id": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "modified": "2021-01-06T18:30:53.745Z", + "modified": "2021-01-13T01:52:41.531Z", "name": "Access Control for Mobile Devices", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.747Z", + "created": "2021-01-13T01:52:41.532Z", "description": "a. [Selection (one or more): Establish [Assignment: organization-defined terms and conditions]\n ; Identify [Assignment: organization-defined controls asserted to be implemented on external systems]\n ], consistent with the trust relationships established with other organizations owning, operating, and/or maintaining external systems, allowing authorized individuals to:\n1. Access the system from external systems; and\n2. Process, store, or transmit organization-controlled information using external systems; or\nb. Prohibit the use of [Assignment: organizationally-defined types of external systems].\n\nExternal systems are systems that are used by but not part of organizational systems and for which the organization has no direct control over the implementation of required controls or the assessment of control effectiveness. External systems include personally owned systems, components, or devices; privately owned computing and communications devices in commercial or public facilities; systems owned or controlled by nonfederal organizations; systems managed by contractors; and federal information systems that are not owned by, operated by, or under the direct supervision or authority of the organization. External systems also include systems owned or operated by other components within the same organization and systems within the organization with different authorization boundaries. Organizations have the option to prohibit the use of any type of external system or prohibit the use of specified types of external systems, (e.g., prohibit the use of any external system that is not organizationally owned or prohibit the use of personally-owned systems).\nFor some external systems (i.e., systems operated by other organizations), the trust relationships that have been established between those organizations and the originating organization may be such that no explicit terms and conditions are required. Systems within these organizations may not be considered external. These situations occur when, for example, there are pre-existing information exchange agreements (either implicit or explicit) established between organizations or components or when such agreements are specified by applicable laws, executive orders, directives, regulations, policies, or standards. Authorized individuals include organizational personnel, contractors, or other individuals with authorized access to organizational systems and over which organizations have the authority to impose specific rules of behavior regarding system access. Restrictions that organizations impose on authorized individuals need not be uniform, as the restrictions may vary depending on trust relationships between organizations. Therefore, organizations may choose to impose different security restrictions on contractors than on state, local, or tribal governments.\nExternal systems used to access public interfaces to organizational systems are outside the scope of AC-20. Organizations establish specific terms and conditions for the use of external systems in accordance with organizational security policies and procedures. At a minimum, terms and conditions address the specific types of applications that can be accessed on organizational systems from external systems and the highest security category of information that can be processed, stored, or transmitted on external systems. If the terms and conditions with the owners of the external systems cannot be established, organizations may impose restrictions on organizational personnel using those external systems.", "external_references": [ { @@ -229639,12 +229639,12 @@ } ], "id": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "modified": "2021-01-06T18:30:53.747Z", + "modified": "2021-01-13T01:52:41.532Z", "name": "Use of External Systems", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.748Z", + "created": "2021-01-13T01:52:41.533Z", "description": "a. Enable authorized users to determine whether access authorizations assigned to a sharing partner match the information's access and use restrictions for [Assignment: organization-defined information sharing circumstances where user discretion is required]; and\nb. Employ [Assignment: organization-defined automated mechanisms or manual processes] to assist users in making information sharing and collaboration decisions.\n\nInformation sharing applies to information that may be restricted in some manner based on some formal or administrative determination. Examples of such information include, contract-sensitive information, classified information related to special access programs or compartments, privileged information, proprietary information, and personally identifiable information. Security and privacy risk assessments as well as applicable laws, regulations, and policies can provide useful inputs to these determinations. Depending on the circumstances, sharing partners may be defined at the individual, group, or organizational level. Information may be defined by content, type, security category, or special access program or compartment. Access restrictions may include non-disclosure agreements (NDA). Information flow techniques and security attributes may be used to provide automated assistance to users making sharing and collaboration decisions.", "external_references": [ { @@ -229653,12 +229653,12 @@ } ], "id": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", - "modified": "2021-01-06T18:30:53.748Z", + "modified": "2021-01-13T01:52:41.533Z", "name": "Information Sharing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.749Z", + "created": "2021-01-13T01:52:41.534Z", "description": "Employ [Assignment: organization-defined data mining prevention and detection techniques] for [Assignment: organization-defined data storage objects] to detect and protect against unauthorized data mining.\n\nData mining is an analytical process that attempts to find correlations or patterns in large data sets for the purpose of data or knowledge discovery. Data storage objects include database records and database fields. Sensitive information can be extracted from data mining operations. When information is personally identifiable information, it may lead to unanticipated revelations about individuals and give rise to privacy risks. Prior to performing data mining activities, organizations determine whether such activities are authorized. Organizations may be subject to applicable laws, executive orders, directives, regulations, or policies that address data mining requirements. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.\nData mining prevention and detection techniques include limiting the number and frequency of database queries to increase the work factor needed to determine the contents of databases, limiting types of responses provided to database queries, applying differential privacy techniques or homomorphic encryption, and notifying personnel when atypical database queries or accesses occur. Data mining protection focuses on protecting information from data mining while such information resides in organizational data stores. In contrast, AU-13 focuses on monitoring for organizational information that may have been mined or otherwise obtained from data stores and is available as open-source information residing on external sites, such as social networking or social media websites.\n[EO 13587] requires the establishment of an insider threat program for deterring, detecting, and mitigating insider threats, including the safeguarding of sensitive information from exploitation, compromise, or other unauthorized disclosure. Data mining protection requires organizations to identify appropriate techniques to prevent and detect unnecessary or unauthorized data mining. Data mining can be used by an insider to collect organizational information for the purpose of exfiltration.", "external_references": [ { @@ -229667,12 +229667,12 @@ } ], "id": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", - "modified": "2021-01-06T18:30:53.749Z", + "modified": "2021-01-13T01:52:41.534Z", "name": "Data Mining Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.768Z", + "created": "2021-01-13T01:52:41.551Z", "description": "a. Select the appropriate assessor or assessment team for the type of assessment to be conducted;\nb. Develop a control assessment plan that describes the scope of the assessment including:\n1. Controls and control enhancements under assessment;\n2. Assessment procedures to be used to determine control effectiveness; and\n3. Assessment environment, assessment team, and assessment roles and responsibilities;\nc. Ensure the control assessment plan is reviewed and approved by the authorizing official or designated representative prior to conducting the assessment;\nd. Assess the controls in the system and its environment of operation [Assignment: organization-defined frequency] to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security and privacy requirements;\ne. Produce a control assessment report that document the results of the assessment; and\nf. Provide the results of the control assessment to [Assignment: organization-defined individuals or roles].\n\nOrganizations ensure that control assessors possess the required skills and technical expertise to develop effective assessment plans and to conduct assessments of system-specific, hybrid, common, and program management controls, as appropriate. The required skills include general knowledge of risk management concepts and approaches as well as comprehensive knowledge of and experience with the hardware, software, and firmware system components implemented.\nOrganizations assess controls in systems and the environments in which those systems operate as part of initial and ongoing authorizations, continuous monitoring, FISMA annual assessments, system design and development, systems security engineering, privacy engineering, and the system development life cycle. Assessments help to ensure that organizations meet information security and privacy requirements, identify weaknesses and deficiencies in the system design and development process, provide essential information needed to make risk-based decisions as part of authorization processes, and comply with vulnerability mitigation procedures. Organizations conduct assessments on the implemented controls as documented in security and privacy plans. Assessments can also be conducted throughout the system development life cycle as part of systems engineering and systems security engineering processes. The design for controls can be assessed as RFPs are developed, responses assessed, and design reviews conducted. If a design to implement controls and subsequent implementation in accordance with the design are assessed during development, the final control testing can be a simple confirmation utilizing previously completed control assessment and aggregating the outcomes.\nOrganizations may develop a single, consolidated security and privacy assessment plan for the system or maintain separate plans. A consolidated assessment plan clearly delineates the roles and responsibilities for control assessment. If multiple organizations participate in assessing a system, a coordinated approach can reduce redundancies and associated costs.\nOrganizations can use other types of assessment activities, such as vulnerability scanning and system monitoring, to maintain the security and privacy posture of systems during the system life cycle. Assessment reports document assessment results in sufficient detail, as deemed necessary by organizations, to determine the accuracy and completeness of the reports and whether the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting requirements. Assessment results are provided to the individuals or roles appropriate for the types of assessments being conducted. For example, assessments conducted in support of authorization decisions are provided to authorizing officials, senior agency officials for privacy, senior agency information security officers, and authorizing official designated representatives.\nTo satisfy annual assessment requirements, organizations can use assessment results from the following sources: initial or ongoing system authorizations, continuous monitoring, systems engineering processes, or system development life cycle activities. Organizations ensure that assessment results are current, relevant to the determination of control effectiveness, and obtained with the appropriate level of assessor independence. Existing control assessment results can be reused to the extent that the results are still valid and can also be supplemented with additional assessments as needed. After the initial authorizations, organizations assess controls during continuous monitoring. Organizations also establish the frequency for ongoing assessments in accordance with organizational continuous monitoring strategies. External audits, including audits by external entities such as regulatory agencies, are outside of the scope of CA-2.", "external_references": [ { @@ -229681,12 +229681,12 @@ } ], "id": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", - "modified": "2021-01-06T18:30:53.768Z", + "modified": "2021-01-13T01:52:41.551Z", "name": "Control Assessments", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.771Z", + "created": "2021-01-13T01:52:41.554Z", "description": "Develop a system-level continuous monitoring strategy and implement continuous monitoring in accordance with the organization-level continuous monitoring strategy that includes:\na. Establishing the following system-level metrics to be monitored: [Assignment: organization-defined system-level metrics];\nb. Establishing [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessment of control effectiveness;\nc. Ongoing control assessments in accordance with the continuous monitoring strategy;\nd. Ongoing monitoring of system and organization-defined metrics in accordance with the continuous monitoring strategy;\ne. Correlation and analysis of information generated by control assessments and monitoring;\nf. Response actions to address results of the analysis of control assessment and monitoring information; and\ng. Reporting the security and privacy status of the system to [Assignment: organization-defined personnel or roles]\n [Assignment: organization-defined frequency].\n\nContinuous monitoring at the system level facilitates ongoing awareness of the system security and privacy posture to support organizational risk management decisions. The terms 'continuous' and 'ongoing' imply that organizations assess and monitor their controls and risks at a frequency sufficient to support risk-based decisions. Different types of controls may require different monitoring frequencies. The results of continuous monitoring generate risk response actions by organizations. When monitoring the effectiveness of multiple controls that have been grouped into capabilities, a root-cause analysis may be needed to determine the specific control that has failed. Continuous monitoring programs allow organizations to maintain the authorizations of systems and common controls in highly dynamic environments of operation with changing mission and business needs, threats, vulnerabilities, and technologies. Having access to security and privacy information on a continuing basis through reports and dashboards gives organizational officials the ability to make effective and timely risk management decisions, including ongoing authorization decisions.\nAutomation supports more frequent updates to hardware, software, and firmware inventories, authorization packages, and other system information. Effectiveness is further enhanced when continuous monitoring outputs are formatted to provide information that is specific, measurable, actionable, relevant, and timely. Continuous monitoring activities are scaled in accordance with the security categories of systems. Monitoring requirements, including the need for specific monitoring, may be referenced in other controls and control enhancements, such as AC-2g, AC-2(7), AC-2(12)(a), AC-2(7)(b), AC-2(7)(c), AC-17(1), AT-4a, AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, CM-11c, IR-5, MA-2b, MA-3a, MA-4a, PE-3d, PE-6, PE-14b, PE-16, PE-20, PM-6, PM-23, PM-31, PS-7e, SA-9c, SR-4, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18c, SC-43b, and SI-4.", "external_references": [ { @@ -229695,12 +229695,12 @@ } ], "id": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "modified": "2021-01-06T18:30:53.771Z", + "modified": "2021-01-13T01:52:41.554Z", "name": "Continuous Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.772Z", + "created": "2021-01-13T01:52:41.556Z", "description": "Conduct penetration testing [Assignment: organization-defined frequency] on [Assignment: organization-defined systems or system components].\n\nPenetration testing is a specialized type of assessment conducted on systems or individual system components to identify vulnerabilities that could be exploited by adversaries. Penetration testing goes beyond automated vulnerability scanning and is conducted by agents and teams with demonstrable skills and experience that include technical expertise in network, operating system, and/or application level security. Penetration testing can be used to validate vulnerabilities or determine the degree of penetration resistance of systems to adversaries within specified constraints. Such constraints include time, resources, and skills. Penetration testing attempts to duplicate the actions of adversaries and provides a more in-depth analysis of security- and privacy-related weaknesses or deficiencies. Penetration testing is especially important when organizations are transitioning from older technologies to newer technologies (e.g., transitioning from IPv4 to IPv6 network protocols).\nOrganizations can use the results of vulnerability analyses to support penetration testing activities. Penetration testing can be conducted internally or externally on the hardware, software, or firmware components of a system and can exercise both physical and technical controls. A standard method for penetration testing includes a pretest analysis based on full knowledge of the system, pretest identification of potential vulnerabilities based on the pretest analysis, and testing designed to determine the exploitability of vulnerabilities. All parties agree to the rules of engagement before commencing penetration testing scenarios. Organizations correlate the rules of engagement for the penetration tests with the tools, techniques, and procedures that are anticipated to be employed by adversaries. Penetration testing may result in the exposure of information that is protected by laws or regulations, to individuals conducting the testing. Rules of engagement, contracts, or other appropriate mechanisms can be used to communicate expectations for how to protect this information. Risk assessments guide the decisions on the level of independence required for the personnel conducting penetration testing.", "external_references": [ { @@ -229709,12 +229709,12 @@ } ], "id": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "modified": "2021-01-06T18:30:53.772Z", + "modified": "2021-01-13T01:52:41.556Z", "name": "Penetration Testing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.773Z", + "created": "2021-01-13T01:52:41.557Z", "description": "a. Develop, document, and maintain under configuration control, a current baseline configuration of the system; and\nb. Review and update the baseline configuration of the system:\n1. [Assignment: organization-defined frequency];\n2. When required due to [Assignment: Assignment organization-defined circumstances]; and\n3. When system components are installed or upgraded.\n\nBaseline configurations for systems and system components include connectivity, operational, and communications aspects of systems. Baseline configurations are documented, formally reviewed, and agreed-upon specifications for systems or configuration items within those systems. Baseline configurations serve as a basis for future builds, releases, or changes to systems and include security and privacy control implementations, operational procedures, information about system components, network topology, and logical placement of components in the system architecture. Maintaining baseline configurations requires creating new baselines as organizational systems change over time. Baseline configurations of systems reflect the current enterprise architecture.", "external_references": [ { @@ -229723,12 +229723,12 @@ } ], "id": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "modified": "2021-01-06T18:30:53.773Z", + "modified": "2021-01-13T01:52:41.557Z", "name": "Baseline Configuration", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.775Z", + "created": "2021-01-13T01:52:41.559Z", "description": "a. Determine and document the types of changes to the system that are configuration-controlled;\nb. Review proposed configuration-controlled changes to the system and approve or disapprove such changes with explicit consideration for security and privacy impact analyses;\nc. Document configuration change decisions associated with the system;\nd. Implement approved configuration-controlled changes to the system;\ne. Retain records of configuration-controlled changes to the system for [Assignment: organization-defined time period];\nf. Monitor and review activities associated with configuration-controlled changes to the system; and\ng. Coordinate and provide oversight for configuration change control activities through [Assignment: organization-defined configuration change control element] that convenes [Selection (one or more): \n [Assignment: organization-defined frequency]\n ; when [Assignment: organization-defined configuration change conditions]\n ].\n\nConfiguration change control for organizational systems involves the systematic proposal, justification, implementation, testing, review, and disposition of system changes, including system upgrades and modifications. Configuration change control includes changes to baseline configurations, configuration items of systems, operational procedures, configuration settings for system components, remediate vulnerabilities, and unscheduled or unauthorized changes. Processes for managing configuration changes to systems include Configuration Control Boards or Change Advisory Boards that review and approve proposed changes. For changes that impact privacy risk, the senior agency official for privacy updates privacy impact assessments and system of records notices. For new systems or major upgrades, organizations consider including representatives from the development organizations on the Configuration Control Boards or Change Advisory Boards. Auditing of changes includes activities before and after changes are made to systems and the auditing activities required to implement such changes. See also SA-10.", "external_references": [ { @@ -229737,12 +229737,12 @@ } ], "id": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "modified": "2021-01-06T18:30:53.775Z", + "modified": "2021-01-13T01:52:41.559Z", "name": "Configuration Change Control", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.777Z", + "created": "2021-01-13T01:52:41.562Z", "description": "Define, document, approve, and enforce physical and logical access restrictions associated with changes to the system.\n\nChanges to the hardware, software, or firmware components of systems or the operational procedures related to the system can potentially have significant effects on the security of the systems or individuals' privacy. Therefore, organizations permit only qualified and authorized individuals to access systems for purposes of initiating changes. Access restrictions include physical and logical access controls (see AC-3 and PE-3), software libraries, workflow automation, media libraries, abstract layers (i.e., changes implemented into external interfaces rather than directly into systems), and change windows (i.e., changes occur only during specified times).", "external_references": [ { @@ -229751,12 +229751,12 @@ } ], "id": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "modified": "2021-01-06T18:30:53.777Z", + "modified": "2021-01-13T01:52:41.562Z", "name": "Access Restrictions for Change", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.778Z", + "created": "2021-01-13T01:52:41.565Z", "description": "a. Establish and document configuration settings for components employed within the system that reflect the most restrictive mode consistent with operational requirements using [Assignment: organization-defined common secure configurations];\nb. Implement the configuration settings;\nc. Identify, document, and approve any deviations from established configuration settings for [Assignment: organization-defined system components] based on [Assignment: organization-defined operational requirements]; and\nd. Monitor and control changes to the configuration settings in accordance with organizational policies and procedures.\n\nConfiguration settings are the parameters that can be changed in the hardware, software, or firmware components of the system that affect the security and privacy posture or functionality of the system. Information technology products for which configuration settings can be defined include mainframe computers, servers, workstations, operating systems, mobile devices, input/output devices, protocols, and applications. Parameters that impact the security posture of systems include registry settings; account, file, or directory permission settings; and settings for functions, protocols, ports, services, and remote connections. Privacy parameters are parameters impacting the privacy posture of systems, including the parameters required to satisfy other privacy controls. Privacy parameters include settings for access controls, data processing preferences, and processing and retention permissions. Organizations establish organization-wide configuration settings and subsequently derive specific configuration settings for systems. The established settings become part of the configuration baseline for the system.\nCommon secure configurations (also known as security configuration checklists, lockdown and hardening guides, and security reference guides) provide recognized, standardized, and established benchmarks that stipulate secure configuration settings for information technology products and platforms as well as instructions for configuring those products or platforms to meet operational requirements. Common secure configurations can be developed by a variety of organizations, including information technology product developers, manufacturers, vendors, federal agencies, consortia, academia, industry, and other organizations in the public and private sectors.\nImplementation of a common secure configuration may be mandated at the organization level, mission and business process level, system level, or at a higher level, including by a regulatory agency. Common secure configurations include the United States Government Configuration Baseline [USGCB] and security technical implementation guides (STIGs), which affect the implementation of CM-6 and other controls such as AC-19 and CM-7. The Security Content Automation Protocol (SCAP) and the defined standards within the protocol provide an effective method to uniquely identify, track, and control configuration settings.", "external_references": [ { @@ -229765,12 +229765,12 @@ } ], "id": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "modified": "2021-01-06T18:30:53.778Z", + "modified": "2021-01-13T01:52:41.565Z", "name": "Configuration Settings", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.779Z", + "created": "2021-01-13T01:52:41.566Z", "description": "a. Configure the system to provide only [Assignment: organization-defined mission essential capabilities]; and\nb. Prohibit or restrict the use of the following functions, ports, protocols, software, and/or services: [Assignment: organization-defined prohibited or restricted functions, system ports, protocols, software, and/or services].\n\nSystems provide a wide variety of functions and services. Some of the functions and services routinely provided by default may not be necessary to support essential organizational missions, functions, or operations. Additionally, it is sometimes convenient to provide multiple services from a single system component, but doing so increases risk over limiting the services provided by that single component. Where feasible, organizations limit component functionality to a single function per component. Organizations consider removing unused or unnecessary software and disabling unused or unnecessary physical and logical ports and protocols to prevent unauthorized connection of components, transfer of information, and tunneling. Organizations employ network scanning tools, intrusion detection and prevention systems, and end-point protection technologies, such as firewalls and host-based intrusion detection systems, to identify and prevent the use of prohibited functions, protocols, ports, and services. Least functionality can also be achieved as part of the fundamental design and development of the system (see SA-8, SC-2, and SC-3).", "external_references": [ { @@ -229779,12 +229779,12 @@ } ], "id": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "modified": "2021-01-06T18:30:53.779Z", + "modified": "2021-01-13T01:52:41.566Z", "name": "Least Functionality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.780Z", + "created": "2021-01-13T01:52:41.570Z", "description": "a. Develop and document an inventory of system components that:\n1. Accurately reflects the system;\n2. Includes all components within the system;\n3. Does not include duplicate accounting of components or components assigned to any other system;\n4. Is at the level of granularity deemed necessary for tracking and reporting; and\n5. Includes the following information to achieve system component accountability: [Assignment: organization-defined information deemed necessary to achieve effective system component accountability]; and\nb. Review and update the system component inventory [Assignment: organization-defined frequency].\n\nSystem components are discrete, identifiable information technology assets that include hardware, software, and firmware. Organizations may choose to implement centralized system component inventories that include components from all organizational systems. In such situations, organizations ensure that the inventories include system-specific information required for component accountability. The information necessary for effective accountability of system components includes the system name, software owners, software version numbers, hardware inventory specifications, software license information, and for networked components, the machine names and network addresses across all implemented protocols (e.g., IPv4, IPv6). Inventory specifications include date of receipt, cost, model, serial number, manufacturer, supplier information, component type, and physical location.\nPreventing duplicate accounting of system components addresses the lack of accountability that occurs when component ownership and system association is not known, especially in large or complex connected systems. Effective prevention of duplicate accounting of system components necessitates use of a unique identifier for each component. For software inventory, centrally managed software that is accessed via other systems is addressed as a component of the system on which it is installed and managed. Software installed on multiple organizational systems and managed at the system level is addressed for each individual system and may appear more than once in a centralized component inventory, necessitating a system association for each software instance in the centralized inventory to avoid duplicate accounting of components. Scanning systems implementing multiple network protocols (e.g., IPv4 and IPv6) can result in duplicate components being identified in different address spaces. The implementation of CM-8(7) can help to eliminate duplicate accounting of components.", "external_references": [ { @@ -229793,12 +229793,12 @@ } ], "id": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "modified": "2021-01-06T18:30:53.780Z", + "modified": "2021-01-13T01:52:41.570Z", "name": "System Component Inventory", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "a. Use software and associated documentation in accordance with contract agreements and copyright laws;\nb. Track the use of software and associated documentation protected by quantity licenses to control copying and distribution; and\nc. Control and document the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.\n\nSoftware license tracking can be accomplished by manual or automated methods, depending on organizational needs. Examples of contract agreements include software license agreements and non-disclosure agreements.", "external_references": [ { @@ -229807,12 +229807,12 @@ } ], "id": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "Software Usage Restrictions", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.783Z", + "created": "2021-01-13T01:52:41.573Z", "description": "a. Establish [Assignment: organization-defined policies] governing the installation of software by users;\nb. Enforce software installation policies through the following methods: [Assignment: organization-defined methods]; and\nc. Monitor policy compliance [Assignment: organization-defined frequency].\n\nIf provided the necessary privileges, users can install software in organizational systems. To maintain control over the software installed, organizations identify permitted and prohibited actions regarding software installation. Permitted software installations include updates and security patches to existing software and downloading new applications from organization-approved 'app stores.' Prohibited software installations include software with unknown or suspect pedigrees or software that organizations consider potentially malicious. Policies selected for governing user-installed software are organization-developed or provided by some external entity. Policy enforcement methods can include procedural methods and automated methods.", "external_references": [ { @@ -229821,12 +229821,12 @@ } ], "id": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "modified": "2021-01-06T18:30:53.783Z", + "modified": "2021-01-13T01:52:41.573Z", "name": "User-installed Software", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.785Z", + "created": "2021-01-13T01:52:41.575Z", "description": "a. Develop a contingency plan for the system that:\n1. Identifies essential mission and business functions and associated contingency requirements;\n2. Provides recovery objectives, restoration priorities, and metrics;\n3. Addresses contingency roles, responsibilities, assigned individuals with contact information;\n4. Addresses maintaining essential mission and business functions despite a system disruption, compromise, or failure;\n5. Addresses eventual, full system restoration without deterioration of the controls originally planned and implemented;\n6. Addresses the sharing of contingency information; and\n7. Is reviewed and approved by [Assignment: organization-defined personnel or roles];\nb. Distribute copies of the contingency plan to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\nc. Coordinate contingency planning activities with incident handling activities;\nd. Review the contingency plan for the system [Assignment: organization-defined frequency];\ne. Update the contingency plan to address changes to the organization, system, or environment of operation and problems encountered during contingency plan implementation, execution, or testing;\nf. Communicate contingency plan changes to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\ng. Incorporate lessons learned from contingency plan testing, training, or actual contingency activities into contingency testing and training; and\nh. Protect the contingency plan from unauthorized disclosure and modification.\n\nContingency planning for systems is part of an overall program for achieving continuity of operations for organizational mission and business functions. Contingency planning addresses system restoration and implementation of alternative mission or business processes when systems are compromised or breached. Contingency planning is considered throughout the system development life cycle and is a fundamental part of the system design. Systems can be designed for redundancy, to provide backup capabilities, and for resilience. Contingency plans reflect the degree of restoration required for organizational systems since not all systems need to fully recover to achieve the level of continuity of operations desired. System recovery objectives reflect applicable laws, executive orders, directives, regulations, policies, standards, guidelines, organizational risk tolerance, and system impact level.\nActions addressed in contingency plans include orderly system degradation, system shutdown, fallback to a manual mode, alternate information flows, and operating in modes reserved for when systems are under attack. By coordinating contingency planning with incident handling activities, organizations ensure that the necessary planning activities are in place and activated in the event of an incident. Organizations consider whether continuity of operations during an incident conflicts with the capability to automatically disable the system, as specified in IR-4(5). Incident response planning is part of contingency planning for organizations and is addressed in the IR (Incident Response) family.", "external_references": [ { @@ -229835,12 +229835,12 @@ } ], "id": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", - "modified": "2021-01-06T18:30:53.785Z", + "modified": "2021-01-13T01:52:41.575Z", "name": "Contingency Plan", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.788Z", + "created": "2021-01-13T01:52:41.579Z", "description": "a. Establish an alternate storage site, including necessary agreements to permit the storage and retrieval of system backup information; and\nb. Ensure that the alternate storage site provides controls equivalent to that of the primary site.\n\nAlternate storage sites are geographically distinct from primary storage sites and maintain duplicate copies of information and data if the primary storage site is not available. Similarly, alternate processing sites provide processing capability if the primary processing site is not available. Geographically distributed architectures that support contingency requirements may be considered alternate storage sites. Items covered by alternate storage site agreements include environmental conditions at the alternate sites, access rules for systems and facilities, physical and environmental protection requirements, and coordination of delivery and retrieval of backup media. Alternate storage sites reflect the requirements in contingency plans so that organizations can maintain essential mission and business functions despite compromise, failure, or disruption in organizational systems.", "external_references": [ { @@ -229849,12 +229849,12 @@ } ], "id": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "modified": "2021-01-06T18:30:53.788Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Storage Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.789Z", + "created": "2021-01-13T01:52:41.579Z", "description": "a. Establish an alternate processing site, including necessary agreements to permit the transfer and resumption of [Assignment: organization-defined system operations] for essential mission and business functions within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] when the primary processing capabilities are unavailable;\nb. Make available at the alternate processing site, the equipment and supplies required to transfer and resume operations or put contracts in place to support delivery to the site within the organization-defined time period for transfer and resumption; and\nc. Provide controls at the alternate processing site that are equivalent to those at the primary site.\n\nAlternate processing sites are geographically distinct from primary processing sites and provide processing capability if the primary processing site is not available. The alternate processing capability may be addressed using a physical processing site or other alternatives, such as failover to a cloud-based service provider or other internally or externally provided processing service. Geographically distributed architectures that support contingency requirements may also be considered alternate processing sites. Controls that are covered by alternate processing site agreements include the environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and the coordination for the transfer and assignment of personnel. Requirements are allocated to alternate processing sites that reflect the requirements in contingency plans to maintain essential mission and business functions despite disruption, compromise, or failure in organizational systems.", "external_references": [ { @@ -229863,12 +229863,12 @@ } ], "id": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "modified": "2021-01-06T18:30:53.789Z", + "modified": "2021-01-13T01:52:41.579Z", "name": "Alternate Processing Site", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.791Z", + "created": "2021-01-13T01:52:41.581Z", "description": "a. Conduct backups of user-level information contained in [Assignment: organization-defined system components]\n [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\nb. Conduct backups of system-level information contained in the system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\nc. Conduct backups of system documentation, including security- and privacy-related documentation [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]; and\nd. Protect the confidentiality, integrity, and availability of backup information.\n\nSystem-level information includes system state information, operating system software, middleware, application software, and licenses. User-level information includes information other than system-level information. Mechanisms employed to protect the integrity of system backups include digital signatures and cryptographic hashes. Protection of system backup information while in transit is addressed by MP-5 and SC-8. System backups reflect the requirements in contingency plans as well as other organizational requirements for backing up information. Organizations may be subject to laws, executive orders, directives, regulations, or policies with requirements regarding specific categories of information (e.g., personal health information). Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.", "external_references": [ { @@ -229877,12 +229877,12 @@ } ], "id": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "modified": "2021-01-06T18:30:53.791Z", + "modified": "2021-01-13T01:52:41.581Z", "name": "System Backup", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.792Z", + "created": "2021-01-13T01:52:41.582Z", "description": "Provide for the recovery and reconstitution of the system to a known state within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] after a disruption, compromise, or failure.\n\nRecovery is executing contingency plan activities to restore organizational mission and business functions. Reconstitution takes place following recovery and includes activities for returning systems to fully operational states. Recovery and reconstitution operations reflect mission and business priorities; recovery point, recovery time, and reconstitution objectives; and organizational metrics consistent with contingency plan requirements. Reconstitution includes the deactivation of interim system capabilities that may have been needed during recovery operations. Reconstitution also includes assessments of fully restored system capabilities, reestablishment of continuous monitoring activities, system reauthorization (if required), and activities to prepare the system and organization for future disruptions, breaches, compromises, or failures. Recovery and reconstitution capabilities can include automated mechanisms and manual procedures. Organizations establish recovery time and recovery point objectives as part of contingency planning.", "external_references": [ { @@ -229891,12 +229891,12 @@ } ], "id": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", - "modified": "2021-01-06T18:30:53.792Z", + "modified": "2021-01-13T01:52:41.582Z", "name": "System Recovery and Reconstitution", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "a. Develop, document, and disseminate to [Assignment: organization-defined personnel or roles]:\n1. [Selection (one or more): organization-level; mission/business process-level; system-level] identification and authentication policy that:\n(a) Addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n(b) Is consistent with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines; and\n2. Procedures to facilitate the implementation of the identification and authentication policy and the associated identification and authentication controls;\nb. Designate an [Assignment: organization-defined official] to manage the development, documentation, and dissemination of the identification and authentication policy and procedures; and\nc. Review and update the current identification and authentication:\n1. Policy [Assignment: organization-defined frequency] and following [Assignment: organization-defined events]; and\n2. Procedures [Assignment: organization-defined frequency] and following [Assignment: organization-defined events].\n\nIdentification and authentication policy and procedures address the controls in the IA family that are implemented within systems and organizations. The risk management strategy is an important factor in establishing such policies and procedures. Policies and procedures contribute to security and privacy assurance. Therefore, it is important that security and privacy programs collaborate on the development of identification and authentication policy and procedures. Security and privacy program policies and procedures at the organization level are preferable, in general, and may obviate the need for mission- or system-specific policies and procedures. The policy can be included as part of the general security and privacy policy or be represented by multiple policies that reflect the complex nature of organizations. Procedures can be established for security and privacy programs, for mission or business processes, and for systems, if needed. Procedures describe how the policies or controls are implemented and can be directed at the individual or role that is the object of the procedure. Procedures can be documented in system security and privacy plans or in one or more separate documents. Events that may precipitate an update to identification and authentication policy and procedures include assessment or audit findings, security or privacy incidents, or changes in applicable laws, executive orders, directives, regulations, policies, standards, and guidelines. Simply restating controls does not constitute an organizational policy or procedure.", "external_references": [ { @@ -229905,12 +229905,12 @@ } ], "id": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Policy and Procedures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.794Z", + "created": "2021-01-13T01:52:41.584Z", "description": "Uniquely identify and authenticate organizational users and associate that unique identification with processes acting on behalf of those users.\n\nOrganizations can satisfy the identification and authentication requirements by complying with the requirements in [HSPD 12]. Organizational users include employees or individuals who organizations consider to have an equivalent status to employees (e.g., contractors and guest researchers). Unique identification and authentication of users applies to all accesses other than those that are explicitly identified in AC-14 and that occur through the authorized use of group authenticators without individual authentication. Since processes execute on behalf of groups and roles, organizations may require unique identification of individuals in group accounts or for detailed accountability of individual activity.\nOrganizations employ passwords, physical authenticators, or biometrics to authenticate user identities or, in the case of multi-factor authentication, some combination thereof. Access to organizational systems is defined as either local access or network access. Local access is any access to organizational systems by users or processes acting on behalf of users, where access is obtained through direct connections without the use of networks. Network access is access to organizational systems by users (or processes acting on behalf of users) where access is obtained through network connections (i.e., nonlocal accesses). Remote access is a type of network access that involves communication through external networks. Internal networks include local area networks and wide area networks.\nThe use of encrypted virtual private networks for network connections between organization-controlled endpoints and non-organization-controlled endpoints may be treated as internal networks with respect to protecting the confidentiality and integrity of information traversing the network. Identification and authentication requirements for non-organizational users are described in IA-8.", "external_references": [ { @@ -229919,12 +229919,12 @@ } ], "id": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "modified": "2021-01-06T18:30:53.794Z", + "modified": "2021-01-13T01:52:41.584Z", "name": "Identification and Authentication (organizational Users)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.796Z", + "created": "2021-01-13T01:52:41.586Z", "description": "Uniquely identify and authenticate [Assignment: organization-defined devices and/or types of devices] before establishing a [Selection (one or more): local; remote; network] connection.\n\nDevices that require unique device-to-device identification and authentication are defined by type, device, or a combination of type and device. Organization-defined device types include devices that are not owned by the organization. Systems use shared known information (e.g., Media Access Control [MAC], Transmission Control Protocol/Internet Protocol [TCP/IP] addresses) for device identification or organizational authentication solutions (e.g., Institute of Electrical and Electronics Engineers (IEEE) 802.1x and Extensible Authentication Protocol [EAP], RADIUS server with EAP-Transport Layer Security [TLS] authentication, Kerberos) to identify and authenticate devices on local and wide area networks. Organizations determine the required strength of authentication mechanisms based on the security categories of systems and mission or business requirements. Because of the challenges of implementing device authentication on a large scale, organizations can restrict the application of the control to a limited number/type of devices based on mission or business needs.", "external_references": [ { @@ -229933,12 +229933,12 @@ } ], "id": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "modified": "2021-01-06T18:30:53.796Z", + "modified": "2021-01-13T01:52:41.586Z", "name": "Device Identification and Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.797Z", + "created": "2021-01-13T01:52:41.587Z", "description": "Manage system identifiers by:\na. Receiving authorization from [Assignment: organization-defined personnel or roles] to assign an individual, group, role, service, or device identifier;\nb. Selecting an identifier that identifies an individual, group, role, service, or device;\nc. Assigning the identifier to the intended individual, group, role, service, or device; and\nd. Preventing reuse of identifiers for [Assignment: organization-defined time period].\n\nCommon device identifiers include Media Access Control (MAC) addresses, Internet Protocol (IP) addresses, or device-unique token identifiers. The management of individual identifiers is not applicable to shared system accounts. Typically, individual identifiers are the usernames of the system accounts assigned to those individuals. In such instances, the account management activities of AC-2 use account names provided by IA-4. Identifier management also addresses individual identifiers not necessarily associated with system accounts. Preventing the reuse of identifiers implies preventing the assignment of previously used individual, group, role, service, or device identifiers to different individuals, groups, roles, services, or devices.", "external_references": [ { @@ -229947,12 +229947,12 @@ } ], "id": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "modified": "2021-01-06T18:30:53.797Z", + "modified": "2021-01-13T01:52:41.587Z", "name": "Identifier Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.799Z", + "created": "2021-01-13T01:52:41.589Z", "description": "Manage system authenticators by:\na. Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, service, or device receiving the authenticator;\nb. Establishing initial authenticator content for any authenticators issued by the organization;\nc. Ensuring that authenticators have sufficient strength of mechanism for their intended use;\nd. Establishing and implementing administrative procedures for initial authenticator distribution, for lost or compromised or damaged authenticators, and for revoking authenticators;\ne. Changing default authenticators prior to first use;\nf. Changing or refreshing authenticators [Assignment: organization-defined time period by authenticator type] or when [Assignment: organization-defined events] occur;\ng. Protecting authenticator content from unauthorized disclosure and modification;\nh. Requiring individuals to take, and having devices implement, specific controls to protect authenticators; and\ni. Changing authenticators for group or role accounts when membership to those accounts changes.\n\nAuthenticators include passwords, cryptographic devices, biometrics, certificates, one-time password devices, and ID badges. Device authenticators include certificates and passwords. Initial authenticator content is the actual content of the authenticator (e.g., the initial password). In contrast, the requirements for authenticator content contain specific criteria or characteristics (e.g., minimum password length). Developers may deliver system components with factory default authentication credentials (i.e., passwords) to allow for initial installation and configuration. Default authentication credentials are often well known, easily discoverable, and present a significant risk. The requirement to protect individual authenticators may be implemented via control PL-4 or PS-6 for authenticators in the possession of individuals and by controls AC-3, AC-6, and SC-28 for authenticators stored in organizational systems, including passwords stored in hashed or encrypted formats or files containing encrypted or hashed passwords accessible with administrator privileges.\nSystems support authenticator management by organization-defined settings and restrictions for various authenticator characteristics (e.g., minimum password length, validation time window for time synchronous one-time tokens, and number of allowed rejections during the verification stage of biometric authentication). Actions can be taken to safeguard individual authenticators, including maintaining possession of authenticators, not sharing authenticators with others, and immediately reporting lost, stolen, or compromised authenticators. Authenticator management includes issuing and revoking authenticators for temporary access when no longer needed.", "external_references": [ { @@ -229961,12 +229961,12 @@ } ], "id": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "modified": "2021-01-06T18:30:53.799Z", + "modified": "2021-01-13T01:52:41.589Z", "name": "Authenticator Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.802Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Obscure feedback of authentication information during the authentication process to protect the information from possible exploitation and use by unauthorized individuals.\n\nAuthentication feedback from systems does not provide information that would allow unauthorized individuals to compromise authentication mechanisms. For some types of systems, such as desktops or notebooks with relatively large monitors, the threat (referred to as shoulder surfing) may be significant. For other types of systems, such as mobile devices with small displays, the threat may be less significant and is balanced against the increased likelihood of typographic input errors due to small keyboards. Thus, the means for obscuring authentication feedback is selected accordingly. Obscuring authentication feedback includes displaying asterisks when users type passwords into input devices or displaying feedback for a very limited time before obscuring it.", "external_references": [ { @@ -229975,12 +229975,12 @@ } ], "id": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", - "modified": "2021-01-06T18:30:53.802Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Authentication Feedback", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Implement mechanisms for authentication to a cryptographic module that meet the requirements of applicable laws, executive orders, directives, policies, regulations, standards, and guidelines for such authentication.\n\nAuthentication mechanisms may be required within a cryptographic module to authenticate an operator accessing the module and to verify that the operator is authorized to assume the requested role and perform services within that role.", "external_references": [ { @@ -229989,12 +229989,12 @@ } ], "id": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Cryptographic Module Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.803Z", + "created": "2021-01-13T01:52:41.592Z", "description": "Uniquely identify and authenticate non-organizational users or processes acting on behalf of non-organizational users.\n\nNon-organizational users include system users other than organizational users explicitly covered by IA-2. Non-organizational users are uniquely identified and authenticated for accesses other than those explicitly identified and documented in AC-14. Identification and authentication of non-organizational users accessing federal systems may be required to protect federal, proprietary, or privacy-related information (with exceptions noted for national security systems). Organizations consider many factors'including security, privacy, scalability, and practicality'when balancing the need to ensure ease of use for access to federal information and systems with the need to protect and adequately mitigate risk.", "external_references": [ { @@ -230003,12 +230003,12 @@ } ], "id": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", - "modified": "2021-01-06T18:30:53.803Z", + "modified": "2021-01-13T01:52:41.592Z", "name": "Identification and Authentication (non-organizational Users)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.593Z", "description": "Uniquely identify and authenticate [Assignment: organization-defined system services and applications] before establishing communications with devices, users, or other services or applications.\n\nServices that may require identification and authentication include web applications using digital certificates or services or applications that query a database. Identification and authentication methods for system services and applications include information or code signing, provenance graphs, and electronic signatures that indicate the sources of services. Decisions regarding the validity of identification and authentication claims can be made by services separate from the services acting on those decisions. This can occur in distributed system architectures. In such situations, the identification and authentication decisions (instead of actual identifiers and authentication data) are provided to the services that need to act on those decisions.", "external_references": [ { @@ -230017,12 +230017,12 @@ } ], "id": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.593Z", "name": "Service Identification and Authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.804Z", + "created": "2021-01-13T01:52:41.594Z", "description": "Require users to re-authenticate when [Assignment: organization-defined circumstances or situations requiring re-authentication].\n\nIn addition to the re-authentication requirements associated with device locks, organizations may require re-authentication of individuals in certain situations, including when roles, authenticators or credentials change, when security categories of systems change, when the execution of privileged functions occurs, after a fixed time period, or periodically.", "external_references": [ { @@ -230031,12 +230031,12 @@ } ], "id": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "modified": "2021-01-06T18:30:53.804Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Re-authentication", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.805Z", + "created": "2021-01-13T01:52:41.594Z", "description": "a. Identity proof users that require accounts for logical access to systems based on appropriate identity assurance level requirements as specified in applicable standards and guidelines;\nb. Resolve user identities to a unique individual; and\nc. Collect, validate, and verify identity evidence.\n\nIdentity proofing is the process of collecting, validating, and verifying a user's identity information for the purposes of establishing credentials for accessing a system. Identity proofing is intended to mitigate threats to the registration of users and the establishment of their accounts. Standards and guidelines specifying identity assurance levels for identity proofing include [SP 800-63-3] and [SP 800-63A]. Organizations may be subject to laws, executive orders, directives, regulations, or policies that address the collection of identity evidence. Organizational personnel consult with the senior agency official for privacy and legal counsel regarding such requirements.", "external_references": [ { @@ -230045,12 +230045,12 @@ } ], "id": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", - "modified": "2021-01-06T18:30:53.805Z", + "modified": "2021-01-13T01:52:41.594Z", "name": "Identity Proofing", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.822Z", + "created": "2021-01-13T01:52:41.610Z", "description": "a. [Selection: Restrict; Prohibit] the use of [Assignment: organization-defined types of system media] on [Assignment: organization-defined systems or system components] using [Assignment: organization-defined controls]; and\nb. Prohibit the use of portable storage devices in organizational systems when such devices have no identifiable owner.\n\nSystem media includes both digital and non-digital media. Digital media includes diskettes, magnetic tapes, flash drives, compact discs, digital versatile discs, and removable hard disk drives. Non-digital media includes paper and microfilm. Media use protections also apply to mobile devices with information storage capabilities. In contrast to MP-2, which restricts user access to media, MP-7 restricts the use of certain types of media on systems, for example, restricting or prohibiting the use of flash drives or external hard disk drives. Organizations use technical and nontechnical controls to restrict the use of system media. Organizations may restrict the use of portable storage devices, for example, by using physical cages on workstations to prohibit access to certain external ports or disabling or removing the ability to insert, read, or write to such devices. Organizations may also limit the use of portable storage devices to only approved devices, including devices provided by the organization, devices provided by other approved organizations, and devices that are not personally owned. Finally, organizations may restrict the use of portable storage devices based on the type of device, such as by prohibiting the use of writeable, portable storage devices and implementing this restriction by disabling or removing the capability to write to such devices. Requiring identifiable owners for storage devices reduces the risk of using such devices by allowing organizations to assign responsibility for addressing known vulnerabilities in the devices.", "external_references": [ { @@ -230059,12 +230059,12 @@ } ], "id": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "modified": "2021-01-06T18:30:53.822Z", + "modified": "2021-01-13T01:52:41.610Z", "name": "Media Use", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.837Z", + "created": "2021-01-13T01:52:41.622Z", "description": "a. Develop security and privacy architectures for the system that:\n1. Describe the requirements and approach to be taken for protecting the confidentiality, integrity, and availability of organizational information;\n2. Describe the requirements and approach to be taken for processing personally identifiable information to minimize privacy risk to individuals;\n3. Describe how the architectures are integrated into and support the enterprise architecture; and\n4. Describe any assumptions about, and dependencies on, external systems and services;\nb. Review and update the architectures [Assignment: organization-defined frequency] to reflect changes in the enterprise architecture; and\nc. Reflect planned architecture changes in security and privacy plans, Concept of Operations (CONOPS), criticality analysis, organizational procedures, and procurements and acquisitions.\n\nThe security and privacy architectures at the system level are consistent with the organization-wide security and privacy architectures described in PM-7, which are integral to and developed as part of the enterprise architecture. The architectures include an architectural description, the allocation of security and privacy functionality (including controls), security- and privacy-related information for external interfaces, information being exchanged across the interfaces, and the protection mechanisms associated with each interface. The architectures can also include other information, such as user roles and the access privileges assigned to each role; security and privacy requirements; types of information processed, stored, and transmitted by the system; supply chain risk management requirements; restoration priorities of information and system services; and other protection needs.\n[SP 800-160-1] provides guidance on the use of security architectures as part of the system development life cycle process. [OMB M-19-03] requires the use of the systems security engineering concepts described in [SP 800-160-1] for high value assets. Security and privacy architectures are reviewed and updated throughout the system development life cycle, from analysis of alternatives through review of the proposed architecture in the RFP responses to the design reviews before and during implementation (e.g., during preliminary design reviews and critical design reviews).\nIn today's modern computing architectures, it is becoming less common for organizations to control all information resources. There may be key dependencies on external information services and service providers. Describing such dependencies in the security and privacy architectures is necessary for developing a comprehensive mission and business protection strategy. Establishing, developing, documenting, and maintaining under configuration control a baseline configuration for organizational systems is critical to implementing and maintaining effective architectures. The development of the architectures is coordinated with the senior agency information security officer and the senior agency official for privacy to ensure that the controls needed to support security and privacy requirements are identified and effectively implemented. In many circumstances, there may be no distinction between the security and privacy architecture for a system. In other circumstances, security objectives may be adequately satisfied, but privacy objectives may only be partially satisfied by the security requirements. In these cases, consideration of the privacy requirements needed to achieve satisfaction will result in a distinct privacy architecture. The documentation, however, may simply reflect the combined architectures.\nPL-8 is primarily directed at organizations to ensure that architectures are developed for the system and, moreover, that the architectures are integrated with or tightly coupled to the enterprise architecture. In contrast, SA-17 is primarily directed at the external information technology product and system developers and integrators. SA-17, which is complementary to PL-8, is selected when organizations outsource the development of systems or components to external entities and when there is a need to demonstrate consistency with the organization's enterprise architecture and security and privacy architectures.", "external_references": [ { @@ -230073,12 +230073,12 @@ } ], "id": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", - "modified": "2021-01-06T18:30:53.837Z", + "modified": "2021-01-13T01:52:41.622Z", "name": "Security and Privacy Architectures", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.853Z", + "created": "2021-01-13T01:52:41.637Z", "description": "a. Monitor and scan for vulnerabilities in the system and hosted applications [Assignment: organization-defined frequency and/or randomly in accordance with organization-defined process] and when new vulnerabilities potentially affecting the system are identified and reported;\nb. Employ vulnerability monitoring tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:\n1. Enumerating platforms, software flaws, and improper configurations;\n2. Formatting checklists and test procedures; and\n3. Measuring vulnerability impact;\nc. Analyze vulnerability scan reports and results from vulnerability monitoring;\nd. Remediate legitimate vulnerabilities [Assignment: organization-defined response times] in accordance with an organizational assessment of risk;\ne. Share information obtained from the vulnerability monitoring process and control assessments with [Assignment: organization-defined personnel or roles] to help eliminate similar vulnerabilities in other systems; and\nf. Employ vulnerability monitoring tools that include the capability to readily update the vulnerabilities to be scanned.\n\nSecurity categorization of information and systems guides the frequency and comprehensiveness of vulnerability monitoring (including scans). Organizations determine the required vulnerability monitoring for system components, ensuring that the potential sources of vulnerabilities'such as infrastructure components (e.g., switches, routers, guards, sensors), networked printers, scanners, and copiers'are not overlooked. The capability to readily update vulnerability monitoring tools as new vulnerabilities are discovered and announced and as new scanning methods are developed helps to ensure that new vulnerabilities are not missed by employed vulnerability monitoring tools. The vulnerability monitoring tool update process helps to ensure that potential vulnerabilities in the system are identified and addressed as quickly as possible. Vulnerability monitoring and analyses for custom software may require additional approaches, such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Organizations can use these analysis approaches in source code reviews and in a variety of tools, including web-based application scanners, static analysis tools, and binary analyzers.\nVulnerability monitoring includes scanning for patch levels; scanning for functions, ports, protocols, and services that should not be accessible to users or devices; and scanning for flow control mechanisms that are improperly configured or operating incorrectly. Vulnerability monitoring may also include continuous vulnerability monitoring tools that use instrumentation to continuously analyze components. Instrumentation-based tools may improve accuracy and may be run throughout an organization without scanning. Vulnerability monitoring tools that facilitate interoperability include tools that are Security Content Automated Protocol (SCAP)-validated. Thus, organizations consider using scanning tools that express vulnerabilities in the Common Vulnerabilities and Exposures (CVE) naming convention and that employ the Open Vulnerability Assessment Language (OVAL) to determine the presence of vulnerabilities. Sources for vulnerability information include the Common Weakness Enumeration (CWE) listing and the National Vulnerability Database (NVD). Control assessments, such as red team exercises, provide additional sources of potential vulnerabilities for which to scan. Organizations also consider using scanning tools that express vulnerability impact by the Common Vulnerability Scoring System (CVSS).\nVulnerability monitoring includes a channel and process for receiving reports of security vulnerabilities from the public at-large. Vulnerability disclosure programs can be as simple as publishing a monitored email address or web form that can receive reports, including notification authorizing good-faith research and disclosure of security vulnerabilities. Organizations generally expect that such research is happening with or without their authorization and can use public vulnerability disclosure channels to increase the likelihood that discovered vulnerabilities are reported directly to the organization for remediation.\nOrganizations may also employ the use of financial incentives (also known as 'bug bounties') to further encourage external security researchers to report discovered vulnerabilities. Bug bounty programs can be tailored to the organization's needs. Bounties can be operated indefinitely or over a defined period of time and can be offered to the general public or to a curated group. Organizations may run public and private bounties simultaneously and could choose to offer partially credentialed access to certain participants in order to evaluate security vulnerabilities from privileged vantage points.", "external_references": [ { @@ -230087,12 +230087,12 @@ } ], "id": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "modified": "2021-01-06T18:30:53.853Z", + "modified": "2021-01-13T01:52:41.637Z", "name": "Vulnerability Monitoring and Scanning", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.855Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Establish and maintain a cyber threat hunting capability to:\n1. Search for indicators of compromise in organizational systems; and\n2. Detect, track, and disrupt threats that evade existing controls; and\nb. Employ the threat hunting capability [Assignment: organization-defined frequency].\n\nThreat hunting is an active means of cyber defense in contrast to traditional protection measures, such as firewalls, intrusion detection and prevention systems, quarantining malicious code in sandboxes, and Security Information and Event Management technologies and systems. Cyber threat hunting involves proactively searching organizational systems, networks, and infrastructure for advanced threats. The objective is to track and disrupt cyber adversaries as early as possible in the attack sequence and to measurably improve the speed and accuracy of organizational responses. Indications of compromise include unusual network traffic, unusual file changes, and the presence of malicious code. Threat hunting teams leverage existing threat intelligence and may create new threat intelligence, which is shared with peer organizations, Information Sharing and Analysis Organizations (ISAO), Information Sharing and Analysis Centers (ISAC), and relevant government departments and agencies.", "external_references": [ { @@ -230101,12 +230101,12 @@ } ], "id": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", - "modified": "2021-01-06T18:30:53.855Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "Threat Hunting", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.856Z", + "created": "2021-01-13T01:52:41.640Z", "description": "a. Acquire, develop, and manage the system using [Assignment: organization-defined system development life cycle] that incorporates information security and privacy considerations;\nb. Define and document information security and privacy roles and responsibilities throughout the system development life cycle;\nc. Identify individuals having information security and privacy roles and responsibilities; and\nd. Integrate the organizational information security and privacy risk management process into system development life cycle activities.\n\nA system development life cycle process provides the foundation for the successful development, implementation, and operation of organizational systems. The integration of security and privacy considerations early in the system development life cycle is a foundational principle of systems security engineering and privacy engineering. To apply the required controls within the system development life cycle requires a basic understanding of information security and privacy, threats, vulnerabilities, adverse impacts, and risk to critical mission and business functions. The security engineering principles in SA-8 help individuals properly design, code, and test systems and system components. Organizations include qualified personnel (e.g., senior agency information security officers, senior agency officials for privacy, security and privacy architects, and security and privacy engineers) in system development life cycle processes to ensure that established security and privacy requirements are incorporated into organizational systems. Role-based security and privacy training programs can ensure that individuals with key security and privacy roles and responsibilities have the experience, skills, and expertise to conduct assigned system development life cycle activities.\nThe effective integration of security and privacy requirements into enterprise architecture also helps to ensure that important security and privacy considerations are addressed throughout the system life cycle and that those considerations are directly related to organizational mission and business processes. This process also facilitates the integration of the information security and privacy architectures into the enterprise architecture, consistent with the risk management strategy of the organization. Because the system development life cycle involves multiple organizations, (e.g., external suppliers, developers, integrators, service providers), acquisition and supply chain risk management functions and controls play significant roles in the effective management of the system during the life cycle.", "external_references": [ { @@ -230115,12 +230115,12 @@ } ], "id": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "modified": "2021-01-06T18:30:53.856Z", + "modified": "2021-01-13T01:52:41.640Z", "name": "System Development Life Cycle", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.857Z", + "created": "2021-01-13T01:52:41.641Z", "description": "Include the following requirements, descriptions, and criteria, explicitly or by reference, using [Selection (one or more): standardized contract language; \n [Assignment: organization-defined contract language]\n ] in the acquisition contract for the system, system component, or system service:\na. Security and privacy functional requirements;\nb. Strength of mechanism requirements;\nc. Security and privacy assurance requirements;\nd. Controls needed to satisfy the security and privacy requirements.\ne. Security and privacy documentation requirements;\nf. Requirements for protecting security and privacy documentation;\ng. Description of the system development environment and environment in which the system is intended to operate;\nh. Allocation of responsibility or identification of parties responsible for information security, privacy, and supply chain risk management; and\ni. Acceptance criteria.\n\nSecurity and privacy functional requirements are typically derived from the high-level security and privacy requirements described in SA-2. The derived requirements include security and privacy capabilities, functions, and mechanisms. Strength requirements associated with such capabilities, functions, and mechanisms include degree of correctness, completeness, resistance to tampering or bypass, and resistance to direct attack. Assurance requirements include development processes, procedures, and methodologies as well as the evidence from development and assessment activities that provide grounds for confidence that the required functionality is implemented and possesses the required strength of mechanism. [SP 800-160-1] describes the process of requirements engineering as part of the system development life cycle.\nControls can be viewed as descriptions of the safeguards and protection capabilities appropriate for achieving the particular security and privacy objectives of the organization and for reflecting the security and privacy requirements of stakeholders. Controls are selected and implemented in order to satisfy system requirements and include developer and organizational responsibilities. Controls can include technical, administrative, and physical aspects. In some cases, the selection and implementation of a control may necessitate additional specification by the organization in the form of derived requirements or instantiated control parameter values. The derived requirements and control parameter values may be necessary to provide the appropriate level of implementation detail for controls within the system development life cycle.\nSecurity and privacy documentation requirements address all stages of the system development life cycle. Documentation provides user and administrator guidance for the implementation and operation of controls. The level of detail required in such documentation is based on the security categorization or classification level of the system and the degree to which organizations depend on the capabilities, functions, or mechanisms to meet risk response expectations. Requirements can include mandated configuration settings that specify allowed functions, ports, protocols, and services. Acceptance criteria for systems, system components, and system services are defined in the same manner as the criteria for any organizational acquisition or procurement.", "external_references": [ { @@ -230129,12 +230129,12 @@ } ], "id": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "modified": "2021-01-06T18:30:53.857Z", + "modified": "2021-01-13T01:52:41.641Z", "name": "Acquisition Process", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.861Z", + "created": "2021-01-13T01:52:41.644Z", "description": "Apply the following systems security and privacy engineering principles in the specification, design, development, implementation, and modification of the system and system components: [Assignment: organization-defined systems security and privacy engineering principles].\n\nSystems security and privacy engineering principles are closely related to and implemented throughout the system development life cycle (see SA-3). Organizations can apply systems security and privacy engineering principles to new systems under development or to systems undergoing upgrades. For existing systems, organizations apply systems security and privacy engineering principles to system upgrades and modifications to the extent feasible, given the current state of hardware, software, and firmware components within those systems.\nThe application of systems security and privacy engineering principles helps organizations develop trustworthy, secure, and resilient systems and reduces the susceptibility to disruptions, hazards, threats, and the creation of privacy problems for individuals. Examples of system security engineering principles include: developing layered protections; establishing security and privacy policies, architecture, and controls as the foundation for design and development; incorporating security and privacy requirements into the system development life cycle; delineating physical and logical security boundaries; ensuring that developers are trained on how to build secure software; tailoring controls to meet organizational needs; and performing threat modeling to identify use cases, threat agents, attack vectors and patterns, design patterns, and compensating controls needed to mitigate risk.\nOrganizations that apply systems security and privacy engineering concepts and principles can facilitate the development of trustworthy, secure systems, system components, and system services; reduce risk to acceptable levels; and make informed risk management decisions. System security engineering principles can also be used to protect against certain supply chain risks, including incorporating tamper-resistant hardware into a design.", "external_references": [ { @@ -230143,12 +230143,12 @@ } ], "id": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "modified": "2021-01-06T18:30:53.861Z", + "modified": "2021-01-13T01:52:41.644Z", "name": "Security and Privacy Engineering Principles", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.869Z", + "created": "2021-01-13T01:52:41.651Z", "description": "Require the developer of the system, system component, or system service to:\na. Perform configuration management during system, component, or service [Selection (one or more): design; development; implementation; operation; disposal];\nb. Document, manage, and control the integrity of changes to [Assignment: organization-defined configuration items under configuration management];\nc. Implement only organization-approved changes to the system, component, or service;\nd. Document approved changes to the system, component, or service and the potential security and privacy impacts of such changes; and\ne. Track security flaws and flaw resolution within the system, component, or service and report findings to [Assignment: organization-defined personnel].\n\nOrganizations consider the quality and completeness of configuration management activities conducted by developers as direct evidence of applying effective security controls. Controls include protecting the master copies of material used to generate security-relevant portions of the system hardware, software, and firmware from unauthorized modification or destruction. Maintaining the integrity of changes to the system, system component, or system service requires strict configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.\nThe configuration items that are placed under configuration management include the formal model; the functional, high-level, and low-level design specifications; other design data; implementation documentation; source code and hardware schematics; the current running version of the object code; tools for comparing new versions of security-relevant hardware descriptions and source code with previous versions; and test fixtures and documentation. Depending on the mission and business needs of organizations and the nature of the contractual relationships in place, developers may provide configuration management support during the operations and maintenance stage of the system development life cycle.", "external_references": [ { @@ -230157,12 +230157,12 @@ } ], "id": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "modified": "2021-01-06T18:30:53.869Z", + "modified": "2021-01-13T01:52:41.651Z", "name": "Developer Configuration Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.870Z", + "created": "2021-01-13T01:52:41.652Z", "description": "Require the developer of the system, system component, or system service, at all post-design stages of the system development life cycle, to:\na. Develop and implement a plan for ongoing security and privacy assessments;\nb. Perform [Selection (one or more): unit; integration; system; regression] testing/evaluation [Assignment: organization-defined frequency] at [Assignment: organization-defined depth and coverage];\nc. Produce evidence of the execution of the assessment plan and the results of the testing and evaluation;\nd. Implement a verifiable flaw remediation process; and\ne. Correct flaws identified during testing and evaluation.\n\nDevelopmental testing and evaluation confirms that the required controls are implemented correctly, operating as intended, enforcing the desired security and privacy policies, and meeting established security and privacy requirements. Security properties of systems and the privacy of individuals may be affected by the interconnection of system components or changes to those components. The interconnections or changes'including upgrading or replacing applications, operating systems, and firmware'may adversely affect previously implemented controls. Ongoing assessment during development allows for additional types of testing and evaluation that developers can conduct to reduce or eliminate potential flaws. Testing custom software applications may require approaches such as manual code review, security architecture review, and penetration testing, as well as and static analysis, dynamic analysis, binary analysis, or a hybrid of the three analysis approaches.\nDevelopers can use the analysis approaches, along with security instrumentation and fuzzing, in a variety of tools and in source code reviews. The security and privacy assessment plans include the specific activities that developers plan to carry out, including the types of analyses, testing, evaluation, and reviews of software and firmware components; the degree of rigor to be applied; the frequency of the ongoing testing and evaluation; and the types of artifacts produced during those processes. The depth of testing and evaluation refers to the rigor and level of detail associated with the assessment process. The coverage of testing and evaluation refers to the scope (i.e., number and type) of the artifacts included in the assessment process. Contracts specify the acceptance criteria for security and privacy assessment plans, flaw remediation processes, and the evidence that the plans and processes have been diligently applied. Methods for reviewing and protecting assessment plans, evidence, and documentation are commensurate with the security category or classification level of the system. Contracts may specify protection requirements for documentation.", "external_references": [ { @@ -230171,12 +230171,12 @@ } ], "id": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "modified": "2021-01-06T18:30:53.870Z", + "modified": "2021-01-13T01:52:41.652Z", "name": "Developer Testing and Evaluation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.872Z", + "created": "2021-01-13T01:52:41.654Z", "description": "", "external_references": [ { @@ -230185,12 +230185,12 @@ } ], "id": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", - "modified": "2021-01-06T18:30:53.872Z", + "modified": "2021-01-13T01:52:41.654Z", "name": "Supply Chain Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -230199,12 +230199,12 @@ } ], "id": "course-of-action--168f13a3-f5a7-43d7-b4c4-c9e6af5c711e", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Trustworthiness", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.656Z", "description": "", "external_references": [ { @@ -230213,12 +230213,12 @@ } ], "id": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.656Z", "name": "Criticality Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.875Z", + "created": "2021-01-13T01:52:41.657Z", "description": "a. Require the developer of the system, system component, or system service to follow a documented development process that:\n1. Explicitly addresses security and privacy requirements;\n2. Identifies the standards and tools used in the development process;\n3. Documents the specific tool options and tool configurations used in the development process; and\n4. Documents, manages, and ensures the integrity of changes to the process and/or tools used in development; and\nb. Review the development process, standards, tools, tool options, and tool configurations [Assignment: organization-defined frequency] to determine if the process, standards, tools, tool options and tool configurations selected and employed can satisfy the following security and privacy requirements: [Assignment: organization-defined security and privacy requirements].\n\nDevelopment tools include programming languages and computer-aided design systems. Reviews of development processes include the use of maturity models to determine the potential effectiveness of such processes. Maintaining the integrity of changes to tools and processes facilitates effective supply chain risk assessment and mitigation. Such integrity requires configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes.", "external_references": [ { @@ -230227,12 +230227,12 @@ } ], "id": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "modified": "2021-01-06T18:30:53.875Z", + "modified": "2021-01-13T01:52:41.657Z", "name": "Development Process, Standards, and Tools", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.877Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system, system component, or system service to provide the following training on the correct use and operation of the implemented security and privacy functions, controls, and/or mechanisms: [Assignment: organization-defined training].\n\nDeveloper-provided training applies to external and internal (in-house) developers. Training personnel is essential to ensuring the effectiveness of the controls implemented within organizational systems. Types of training include web-based and computer-based training, classroom-style training, and hands-on training (including micro-training). Organizations can also request training materials from developers to conduct in-house training or offer self-training to organizational personnel. Organizations determine the type of training necessary and may require different types of training for different security and privacy functions, controls, and mechanisms.", "external_references": [ { @@ -230241,12 +230241,12 @@ } ], "id": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "modified": "2021-01-06T18:30:53.877Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Developer-provided Training", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.878Z", + "created": "2021-01-13T01:52:41.659Z", "description": "Require the developer of the system, system component, or system service to produce a design specification and security and privacy architecture that:\na. Is consistent with the organization's security and privacy architecture that is an integral part the organization's enterprise architecture;\nb. Accurately and completely describes the required security and privacy functionality, and the allocation of controls among physical and logical components; and\nc. Expresses how individual security and privacy functions, mechanisms, and services work together to provide required security and privacy capabilities and a unified approach to protection.\n\nDeveloper security and privacy architecture and design are directed at external developers, although they could also be applied to internal (in-house) development. In contrast, PL-8 is directed at internal developers to ensure that organizations develop a security and privacy architecture that is integrated with the enterprise architecture. The distinction between SA-17 and PL-8 is especially important when organizations outsource the development of systems, system components, or system services and when there is a requirement to demonstrate consistency with the enterprise architecture and security and privacy architecture of the organization. [ISO 15408-2], [ISO 15408-3], and [SP 800-160-1] provide information on security architecture and design, including formal policy models, security-relevant components, formal and informal correspondence, conceptually simple design, and structuring for least privilege and testing.", "external_references": [ { @@ -230255,12 +230255,12 @@ } ], "id": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "modified": "2021-01-06T18:30:53.878Z", + "modified": "2021-01-13T01:52:41.659Z", "name": "Developer Security and Privacy Architecture and Design", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.880Z", + "created": "2021-01-13T01:52:41.662Z", "description": "", "external_references": [ { @@ -230269,12 +230269,12 @@ } ], "id": "course-of-action--f62a7d56-7929-4570-bd16-18d2d3ca83eb", - "modified": "2021-01-06T18:30:53.880Z", + "modified": "2021-01-13T01:52:41.662Z", "name": "Component Authenticity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.881Z", + "created": "2021-01-13T01:52:41.664Z", "description": "a. Replace system components when support for the components is no longer available from the developer, vendor, or manufacturer; or\nb. Provide the following options for alternative sources for continued support for unsupported components [Selection (one or more): in-house support; \n [Assignment: organization-defined support from external providers]\n ].\n\nSupport for system components includes software patches, firmware updates, replacement parts, and maintenance contracts. An example of unsupported components includes when vendors no longer provide critical software patches or product updates, which can result in an opportunity for adversaries to exploit weaknesses in the installed components. Exceptions to replacing unsupported system components include systems that provide critical mission or business capabilities where newer technologies are not available or where the systems are so isolated that installing replacement components is not an option.\nAlternative sources for support address the need to provide continued support for system components that are no longer supported by the original manufacturers, developers, or vendors when such components remain essential to organizational mission and business functions. If necessary, organizations can establish in-house support by developing customized patches for critical software components or, alternatively, obtain the services of external providers who provide ongoing support for the designated unsupported components through contractual relationships. Such contractual relationships can include open-source software value-added vendors. The increased risk of using unsupported system components can be mitigated, for example, by prohibiting the connection of such components to public or uncontrolled networks, or implementing other forms of isolation.", "external_references": [ { @@ -230283,12 +230283,12 @@ } ], "id": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", - "modified": "2021-01-06T18:30:53.881Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Unsupported System Components", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.882Z", + "created": "2021-01-13T01:52:41.664Z", "description": "Separate user functionality, including user interface services, from system management functionality.\n\nSystem management functionality includes functions that are necessary to administer databases, network components, workstations, or servers. These functions typically require privileged user access. The separation of user functions from system management functions is physical or logical. Organizations may separate system management functions from user functions by using different computers, instances of operating systems, central processing units, or network addresses; by employing virtualization techniques; or some combination of these or other methods. Separation of system management functions from user functions includes web administrative interfaces that employ separate authentication methods for users of any other system resources. Separation of system and user functions may include isolating administrative interfaces on different domains and with additional access controls. The separation of system and user functionality can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).", "external_references": [ { @@ -230297,12 +230297,12 @@ } ], "id": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", - "modified": "2021-01-06T18:30:53.882Z", + "modified": "2021-01-13T01:52:41.664Z", "name": "Separation of System and User Functionality", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.883Z", + "created": "2021-01-13T01:52:41.665Z", "description": "Isolate security functions from nonsecurity functions.\n\nSecurity functions are isolated from nonsecurity functions by means of an isolation boundary implemented within a system via partitions and domains. The isolation boundary controls access to and protects the integrity of the hardware, software, and firmware that perform system security functions. Systems implement code separation in many ways, such as through the provision of security kernels via processor rings or processor modes. For non-kernel code, security function isolation is often achieved through file system protections that protect the code on disk and address space protections that protect executing code. Systems can restrict access to security functions using access control mechanisms and by implementing least privilege capabilities. While the ideal is for all code within the defined security function isolation boundary to only contain security-relevant code, it is sometimes necessary to include nonsecurity functions as an exception. The isolation of security functions from nonsecurity functions can be achieved by applying the systems security engineering design principles in SA-8, including SA-8(1), SA-8(3), SA-8(4), SA-8(10), SA-8(12), SA-8(13), SA-8(14), and SA-8(18).", "external_references": [ { @@ -230311,12 +230311,12 @@ } ], "id": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "modified": "2021-01-06T18:30:53.883Z", + "modified": "2021-01-13T01:52:41.665Z", "name": "Security Function Isolation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.884Z", + "created": "2021-01-13T01:52:41.666Z", "description": "Prevent unauthorized and unintended information transfer via shared system resources.\n\nPreventing unauthorized and unintended information transfer via shared system resources stops information produced by the actions of prior users or roles (or the actions of processes acting on behalf of prior users or roles) from being available to current users or roles (or current processes acting on behalf of current users or roles) that obtain access to shared system resources after those resources have been released back to the system. Information in shared system resources also applies to encrypted representations of information. In other contexts, control of information in shared system resources is referred to as object reuse and residual information protection. Information in shared system resources does not address information remanence, which refers to the residual representation of data that has been nominally deleted; covert channels (including storage and timing channels), where shared system resources are manipulated to violate information flow restrictions; or components within systems for which there are only single users or roles.", "external_references": [ { @@ -230325,12 +230325,12 @@ } ], "id": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "modified": "2021-01-06T18:30:53.884Z", + "modified": "2021-01-13T01:52:41.666Z", "name": "Information in Shared System Resources", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.886Z", + "created": "2021-01-13T01:52:41.667Z", "description": "a. Monitor and control communications at the external managed interfaces to the system and at key internal managed interfaces within the system;\nb. Implement subnetworks for publicly accessible system components that are [Selection: physically; logically] separated from internal organizational networks; and\nc. Connect to external networks or systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security and privacy architecture.\n\nManaged interfaces include gateways, routers, firewalls, guards, network-based malicious code analysis, virtualization systems, or encrypted tunnels implemented within a security architecture. Subnetworks that are physically or logically separated from internal networks are referred to as demilitarized zones or DMZs. Restricting or prohibiting interfaces within organizational systems includes restricting external web traffic to designated web servers within managed interfaces, prohibiting external traffic that appears to be spoofing internal addresses, and prohibiting internal traffic that appears to be spoofing external addresses. Commercial telecommunications services are provided by network components and consolidated management systems shared by customers. These services may also include third party-provided access lines and other service elements. Such services may represent sources of increased risk despite contract security provisions. Boundary protection may be implemented as a common control for all or part of an organizational network such that the boundary to be protected is greater than a system-specific boundary (i.e., an authorization boundary).", "external_references": [ { @@ -230339,12 +230339,12 @@ } ], "id": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "modified": "2021-01-06T18:30:53.886Z", + "modified": "2021-01-13T01:52:41.667Z", "name": "Boundary Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.891Z", + "created": "2021-01-13T01:52:41.672Z", "description": "Protect the [Selection (one or more): confidentiality; integrity] of transmitted information.\n\nProtecting the confidentiality and integrity of transmitted information applies to internal and external networks as well as any system components that can transmit information, including servers, notebook computers, desktop computers, mobile devices, printers, copiers, scanners, facsimile machines, and radios. Unprotected communication paths are exposed to the possibility of interception and modification. Protecting the confidentiality and integrity of information can be accomplished by physical or logical means. Physical protection can be achieved by using protected distribution systems. A protected distribution system is a wireline or fiber-optics telecommunications system that includes terminals and adequate electromagnetic, acoustical, electrical, and physical controls to permit its use for the unencrypted transmission of classified information. Logical protection can be achieved by employing encryption techniques.\nOrganizations that rely on commercial providers who offer transmission services as commodity services rather than as fully dedicated services may find it difficult to obtain the necessary assurances regarding the implementation of needed controls for transmission confidentiality and integrity. In such situations, organizations determine what types of confidentiality or integrity services are available in standard, commercial telecommunications service packages. If it is not feasible to obtain the necessary controls and assurances of control effectiveness through appropriate contracting vehicles, organizations can implement appropriate compensating controls.", "external_references": [ { @@ -230353,12 +230353,12 @@ } ], "id": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "modified": "2021-01-06T18:30:53.891Z", + "modified": "2021-01-13T01:52:41.672Z", "name": "Transmission Confidentiality and Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.892Z", + "created": "2021-01-13T01:52:41.673Z", "description": "Terminate the network connection associated with a communications session at the end of the session or after [Assignment: organization-defined time period] of inactivity.\n\nNetwork disconnect applies to internal and external networks. Terminating network connections associated with specific communications sessions includes de-allocating TCP/IP address or port pairs at the operating system level and de-allocating the networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. Periods of inactivity may be established by organizations and include time periods by type of network access or for specific network accesses.", "external_references": [ { @@ -230367,12 +230367,12 @@ } ], "id": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "modified": "2021-01-06T18:30:53.892Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Network Disconnect", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.893Z", + "created": "2021-01-13T01:52:41.673Z", "description": "Establish and manage cryptographic keys when cryptography is employed within the system in accordance with the following key management requirements: [Assignment: organization-defined requirements for key generation, distribution, storage, access, and destruction].\n\nCryptographic key management and establishment can be performed using manual procedures or automated mechanisms with supporting manual procedures. Organizations define key management requirements in accordance with applicable laws, executive orders, directives, regulations, policies, standards, and guidelines and specify appropriate options, parameters, and levels. Organizations manage trust stores to ensure that only approved trust anchors are part of such trust stores. This includes certificates with visibility external to organizational systems and certificates related to the internal operations of systems. [NIST CMVP] and [NIST CAVP] provide additional information on validated cryptographic modules and algorithms that can be used in cryptographic key management and establishment.", "external_references": [ { @@ -230381,12 +230381,12 @@ } ], "id": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "modified": "2021-01-06T18:30:53.893Z", + "modified": "2021-01-13T01:52:41.673Z", "name": "Cryptographic Key Establishment and Management", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.676Z", "description": "Associate [Assignment: organization-defined security and privacy attributes] with information exchanged between systems and between system components.\n\nSecurity and privacy attributes can be explicitly or implicitly associated with the information contained in organizational systems or system components. Attributes are abstractions that represent the basic properties or characteristics of an entity with respect to protecting information or the management of personally identifiable information. Attributes are typically associated with internal data structures, including records, buffers, and files within the system. Security and privacy attributes are used to implement access control and information flow control policies; reflect special dissemination, management, or distribution instructions, including permitted uses of personally identifiable information; or support other aspects of the information security and privacy policies. Privacy attributes may be used independently or in conjunction with security attributes.", "external_references": [ { @@ -230395,12 +230395,12 @@ } ], "id": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.676Z", "name": "Transmission of Security and Privacy Attributes", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.896Z", + "created": "2021-01-13T01:52:41.677Z", "description": "a. Issue public key certificates under an [Assignment: organization-defined certificate policy] or obtain public key certificates from an approved service provider; and\nb. Include only approved trust anchors in trust stores or certificate stores managed by the organization.\n\nPublic key infrastructure certificates are certificates with visibility external to organizational systems and certificates related to the internal operations of systems, such as application-specific time services. In cryptographic systems with a hierarchical structure, a trust anchor is an authoritative source (i.e., a certificate authority) for which trust is assumed and not derived. A root certificate for a PKI system is an example of a trust anchor. A trust store or certificate store maintains a list of trusted root certificates.", "external_references": [ { @@ -230409,12 +230409,12 @@ } ], "id": "course-of-action--6e561e80-7062-4695-ab3b-03e631acbfc1", - "modified": "2021-01-06T18:30:53.896Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Public Key Infrastructure Certificates", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.897Z", + "created": "2021-01-13T01:52:41.677Z", "description": "a. Define acceptable and unacceptable mobile code and mobile code technologies; and\nb. Authorize, monitor, and control the use of mobile code within the system.\n\nMobile code includes any program, application, or content that can be transmitted across a network (e.g., embedded in an email, document, or website) and executed on a remote system. Decisions regarding the use of mobile code within organizational systems are based on the potential for the code to cause damage to the systems if used maliciously. Mobile code technologies include Java applets, JavaScript, HTML5, WebGL, and VBScript. Usage restrictions and implementation guidelines apply to both the selection and use of mobile code installed on servers and mobile code downloaded and executed on individual workstations and devices, including notebook computers and smart phones. Mobile code policy and procedures address specific actions taken to prevent the development, acquisition, and introduction of unacceptable mobile code within organizational systems, including requiring mobile code to be digitally signed by a trusted source.", "external_references": [ { @@ -230423,12 +230423,12 @@ } ], "id": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "modified": "2021-01-06T18:30:53.897Z", + "modified": "2021-01-13T01:52:41.677Z", "name": "Mobile Code", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.678Z", "description": "a. Provide additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and\nb. Provide the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains, when operating as part of a distributed, hierarchical namespace.\n\nProviding authoritative source information enables external clients, including remote Internet clients, to obtain origin authentication and integrity verification assurances for the host/service name to network address resolution information obtained through the service. Systems that provide name and address resolution services include domain name system (DNS) servers. Additional artifacts include DNS Security Extensions (DNSSEC) digital signatures and cryptographic keys. Authoritative data includes DNS resource records. The means for indicating the security status of child zones include the use of delegation signer resource records in the DNS. Systems that use technologies other than the DNS to map between host and service names and network addresses provide other means to assure the authenticity and integrity of response data.", "external_references": [ { @@ -230437,12 +230437,12 @@ } ], "id": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.678Z", "name": "Secure Name/address Resolution Service (authoritative Source)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.898Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Request and perform data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.\n\nEach client of name resolution services either performs this validation on its own or has authenticated channels to trusted validation providers. Systems that provide name and address resolution services for local clients include recursive resolving or caching domain name system (DNS) servers. DNS client resolvers either perform validation of DNSSEC signatures, or clients use authenticated channels to recursive resolvers that perform such validations. Systems that use technologies other than the DNS to map between host and service names and network addresses provide some other means to enable clients to verify the authenticity and integrity of response data.", "external_references": [ { @@ -230451,12 +230451,12 @@ } ], "id": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "modified": "2021-01-06T18:30:53.898Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Secure Name/address Resolution Service (recursive or Caching Resolver)", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Ensure the systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal and external role separation.\n\nSystems that provide name and address resolution services include domain name system (DNS) servers. To eliminate single points of failure in systems and enhance redundancy, organizations employ at least two authoritative domain name system servers'one configured as the primary server and the other configured as the secondary server. Additionally, organizations typically deploy the servers in two geographically separated network subnetworks (i.e., not located in the same physical facility). For role separation, DNS servers with internal roles only process name and address resolution requests from within organizations (i.e., from internal clients). DNS servers with external roles only process name and address resolution information requests from clients external to organizations (i.e., on external networks, including the Internet). Organizations specify clients that can access authoritative DNS servers in certain roles (e.g., by address ranges and explicit lists).", "external_references": [ { @@ -230465,12 +230465,12 @@ } ], "id": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Architecture and Provisioning for Name/address Resolution Service", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.899Z", + "created": "2021-01-13T01:52:41.679Z", "description": "Protect the authenticity of communications sessions.\n\nProtecting session authenticity addresses communications protection at the session level, not at the packet level. Such protection establishes grounds for confidence at both ends of communications sessions in the ongoing identities of other parties and the validity of transmitted information. Authenticity protection includes protecting against 'man-in-the-middle' attacks, session hijacking, and the insertion of false information into sessions.", "external_references": [ { @@ -230479,12 +230479,12 @@ } ], "id": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "modified": "2021-01-06T18:30:53.899Z", + "modified": "2021-01-13T01:52:41.679Z", "name": "Session Authenticity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Include components within organizational systems specifically designed to be the target of malicious attacks for detecting, deflecting, and analyzing such attacks.\n\nDecoys (i.e., honeypots, honeynets, or deception nets) are established to attract adversaries and deflect attacks away from the operational systems that support organizational mission and business functions. Use of decoys requires some supporting isolation measures to ensure that any deflected malicious code does not infect organizational systems. Depending on the specific usage of the decoy, consultation with the Office of the General Counsel before deployment may be needed.", "external_references": [ { @@ -230493,12 +230493,12 @@ } ], "id": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Decoys", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.901Z", + "created": "2021-01-13T01:52:41.681Z", "description": "Protect the [Selection (one or more): confidentiality; integrity] of the following information at rest: [Assignment: organization-defined information at rest].\n\nInformation at rest refers to the state of information when it is not in process or in transit and is located on system components. Such components include internal or external hard disk drives, storage area network devices, or databases. However, the focus of protecting information at rest is not on the type of storage device or frequency of access but rather on the state of the information. Information at rest addresses the confidentiality and integrity of information and covers user information and system information. System-related information that requires protection includes configurations or rule sets for firewalls, intrusion detection and prevention systems, filtering routers, and authentication information. Organizations may employ different mechanisms to achieve confidentiality and integrity protections, including the use of cryptographic mechanisms and file share scanning. Integrity protection can be achieved, for example, by implementing write-once-read-many (WORM) technologies. When adequate protection of information at rest cannot otherwise be achieved, organizations may employ other controls, including frequent scanning to identify malicious code at rest and secure offline storage in lieu of online storage.", "external_references": [ { @@ -230507,12 +230507,12 @@ } ], "id": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "modified": "2021-01-06T18:30:53.901Z", + "modified": "2021-01-13T01:52:41.681Z", "name": "Protection of Information at Rest", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.902Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ a diverse set of information technologies for the following system components in the implementation of the system: [Assignment: organization-defined system components].\n\nIncreasing the diversity of information technologies within organizational systems reduces the impact of potential exploitations or compromises of specific technologies. Such diversity protects against common mode failures, including those failures induced by supply chain attacks. Diversity in information technologies also reduces the likelihood that the means adversaries use to compromise one system component will be effective against other system components, thus further increasing the adversary work factor to successfully complete planned attacks. An increase in diversity may add complexity and management overhead that could ultimately lead to mistakes and unauthorized configurations.", "external_references": [ { @@ -230521,12 +230521,12 @@ } ], "id": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", - "modified": "2021-01-06T18:30:53.902Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Heterogeneity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.903Z", + "created": "2021-01-13T01:52:41.682Z", "description": "Employ the following concealment and misdirection techniques for [Assignment: organization-defined systems] at [Assignment: organization-defined time periods] to confuse and mislead adversaries: [Assignment: organization-defined concealment and misdirection techniques].\n\nConcealment and misdirection techniques can significantly reduce the targeting capabilities of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete attacks. For example, virtualization techniques provide organizations with the ability to disguise systems, potentially reducing the likelihood of successful attacks without the cost of having multiple platforms. The increased use of concealment and misdirection techniques and methods'including randomness, uncertainty, and virtualization'may sufficiently confuse and mislead adversaries and subsequently increase the risk of discovery and/or exposing tradecraft. Concealment and misdirection techniques may provide additional time to perform core mission and business functions. The implementation of concealment and misdirection techniques may add to the complexity and management overhead required for the system.", "external_references": [ { @@ -230535,12 +230535,12 @@ } ], "id": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", - "modified": "2021-01-06T18:30:53.903Z", + "modified": "2021-01-13T01:52:41.682Z", "name": "Concealment and Misdirection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.904Z", + "created": "2021-01-13T01:52:41.683Z", "description": "a. Perform a covert channel analysis to identify those aspects of communications within the system that are potential avenues for covert [Selection (one or more): storage; timing] channels; and\nb. Estimate the maximum bandwidth of those channels.\n\nDevelopers are in the best position to identify potential areas within systems that might lead to covert channels. Covert channel analysis is a meaningful activity when there is the potential for unauthorized information flows across security domains, such as in the case of systems that contain export-controlled information and have connections to external networks (i.e., networks that are not controlled by organizations). Covert channel analysis is also useful for multilevel secure systems, multiple security level systems, and cross-domain systems.", "external_references": [ { @@ -230549,12 +230549,12 @@ } ], "id": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "modified": "2021-01-06T18:30:53.904Z", + "modified": "2021-01-13T01:52:41.683Z", "name": "Covert Channel Analysis", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.684Z", "description": "For [Assignment: organization-defined system components], load and execute:\na. The operating environment from hardware-enforced, read-only media; and\nb. The following applications from hardware-enforced, read-only media: [Assignment: organization-defined applications].\n\nThe operating environment for a system contains the code that hosts applications, including operating systems, executives, or virtual machine monitors (i.e., hypervisors). It can also include certain applications that run directly on hardware platforms. Hardware-enforced, read-only media include Compact Disc-Recordable (CD-R) and Digital Versatile Disc-Recordable (DVD-R) disk drives as well as one-time, programmable, read-only memory. The use of non-modifiable storage ensures the integrity of software from the point of creation of the read-only image. The use of reprogrammable, read-only memory can be accepted as read-only media provided that integrity can be adequately protected from the point of initial writing to the insertion of the memory into the system, and there are reliable hardware protections against reprogramming the memory while installed in organizational systems.", "external_references": [ { @@ -230563,12 +230563,12 @@ } ], "id": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.684Z", "name": "Non-modifiable Executable Programs", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.905Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Include system components that proactively seek to identify network-based malicious code or malicious websites.\n\nExternal malicious code identification differs from decoys in SC-26 in that the components actively probe networks, including the Internet, in search of malicious code contained on external websites. Like decoys, the use of external malicious code identification techniques requires some supporting isolation measures to ensure that any malicious code discovered during the search and subsequently executed does not infect organizational systems. Virtualization is a common technique for achieving such isolation.", "external_references": [ { @@ -230577,12 +230577,12 @@ } ], "id": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", - "modified": "2021-01-06T18:30:53.905Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "External Malicious Code Identification", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.685Z", "description": "Distribute the following processing and storage components across multiple [Selection: physical locations; logical domains]: [Assignment: organization-defined processing and storage components].\n\nDistributing processing and storage across multiple physical locations or logical domains provides a degree of redundancy or overlap for organizations. The redundancy and overlap increase the work factor of adversaries to adversely impact organizational operations, assets, and individuals. The use of distributed processing and storage does not assume a single primary processing or storage location. Therefore, it allows for parallel processing and storage.", "external_references": [ { @@ -230591,12 +230591,12 @@ } ], "id": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.685Z", "name": "Distributed Processing and Storage", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.906Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Employ the following out-of-band channels for the physical delivery or electronic transmission of [Assignment: organization-defined information, system components, or devices] to [Assignment: organization-defined individuals or systems]: [Assignment: organization-defined out-of-band channels].\n\nOut-of-band channels include local, non-network accesses to systems; network paths physically separate from network paths used for operational traffic; or non-electronic paths, such as the U.S. Postal Service. The use of out-of-band channels is contrasted with the use of in-band channels (i.e., the same channels) that carry routine operational traffic. Out-of-band channels do not have the same vulnerability or exposure as in-band channels. Therefore, the confidentiality, integrity, or availability compromises of in-band channels will not compromise or adversely affect the out-of-band channels. Organizations may employ out-of-band channels in the delivery or transmission of organizational items, including authenticators and credentials; cryptographic key management information; system and data backups; configuration management changes for hardware, firmware, or software; security updates; maintenance information; and malicious code protection updates.", "external_references": [ { @@ -230605,12 +230605,12 @@ } ], "id": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "modified": "2021-01-06T18:30:53.906Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Out-of-band Channels", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.907Z", + "created": "2021-01-13T01:52:41.686Z", "description": "Maintain a separate execution domain for each executing system process.\n\nSystems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each system process has a distinct address space so that communication between processes is performed in a manner controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces. Process isolation technologies, including sandboxing or virtualization, logically separate software and firmware from other software, firmware, and data. Process isolation helps limit the access of potentially untrusted software to other system resources. The capability to maintain separate execution domains is available in commercial operating systems that employ multi-state processor technologies.", "external_references": [ { @@ -230619,12 +230619,12 @@ } ], "id": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "modified": "2021-01-06T18:30:53.907Z", + "modified": "2021-01-13T01:52:41.686Z", "name": "Process Isolation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.909Z", + "created": "2021-01-13T01:52:41.687Z", "description": "[Selection: Physically; Logically] disable or remove [Assignment: organization-defined connection ports or input/output devices] on the following systems or system components: [Assignment: organization-defined systems or system components].\n\nConnection ports include Universal Serial Bus (USB), Thunderbolt, and Firewire (IEEE 1394). Input/output (I/O) devices include compact disc and digital versatile disc drives. Disabling or removing such connection ports and I/O devices helps prevent the exfiltration of information from systems and the introduction of malicious code from those ports or devices. Physically disabling or removing ports and/or devices is the stronger action.", "external_references": [ { @@ -230633,12 +230633,12 @@ } ], "id": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "modified": "2021-01-06T18:30:53.909Z", + "modified": "2021-01-13T01:52:41.687Z", "name": "Port and I/O Device Access", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.910Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Employ a detonation chamber capability within [Assignment: organization-defined system, system component, or location].\n\nDetonation chambers, also known as dynamic execution environments, allow organizations to open email attachments, execute untrusted or suspicious applications, and execute Universal Resource Locator requests in the safety of an isolated environment or a virtualized sandbox. Protected and isolated execution environments provide a means of determining whether the associated attachments or applications contain malicious code. While related to the concept of deception nets, the employment of detonation chambers is not intended to maintain a long-term environment in which adversaries can operate and their actions can be observed. Rather, detonation chambers are intended to quickly identify malicious code and either reduce the likelihood that the code is propagated to user environments of operation or prevent such propagation completely.", "external_references": [ { @@ -230647,12 +230647,12 @@ } ], "id": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "modified": "2021-01-06T18:30:53.910Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Detonation Chambers", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.911Z", + "created": "2021-01-13T01:52:41.689Z", "description": "Implement a policy enforcement mechanism [Selection: physically; logically] between the physical and/or network interfaces for the connecting security domains.\n\nFor logical policy enforcement mechanisms, organizations avoid creating a logical path between interfaces to prevent the ability to bypass the policy enforcement mechanism. For physical policy enforcement mechanisms, the robustness of physical isolation afforded by the physical implementation of policy enforcement to preclude the presence of logical covert channels penetrating the security domain may be needed. Contact ncdsmo@nsa.gov for more information.", "external_references": [ { @@ -230661,12 +230661,12 @@ } ], "id": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "modified": "2021-01-06T18:30:53.911Z", + "modified": "2021-01-13T01:52:41.689Z", "name": "Cross Domain Policy Enforcement", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.912Z", + "created": "2021-01-13T01:52:41.691Z", "description": "a. Identify, report, and correct system flaws;\nb. Test software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;\nc. Install security-relevant software and firmware updates within [Assignment: organization-defined time period] of the release of the updates; and\nd. Incorporate flaw remediation into the organizational configuration management process.\n\nThe need to remediate system flaws applies to all types of software and firmware. Organizations identify systems affected by software flaws, including potential vulnerabilities resulting from those flaws, and report this information to designated organizational personnel with information security and privacy responsibilities. Security-relevant updates include patches, service packs, and malicious code signatures. Organizations also address flaws discovered during assessments, continuous monitoring, incident response activities, and system error handling. By incorporating flaw remediation into configuration management processes, required remediation actions can be tracked and verified.\nOrganization-defined time periods for updating security-relevant software and firmware may vary based on a variety of risk factors, including the security category of the system, the criticality of the update (i.e., severity of the vulnerability related to the discovered flaw), the organizational risk tolerance, the mission supported by the system, or the threat environment. Some types of flaw remediation may require more testing than other types. Organizations determine the type of testing needed for the specific type of flaw remediation activity under consideration and the types of changes that are to be configuration-managed. In some situations, organizations may determine that the testing of software or firmware updates is not necessary or practical, such as when implementing simple malicious code signature updates. In testing decisions, organizations consider whether security-relevant software or firmware updates are obtained from authorized sources with appropriate digital signatures.", "external_references": [ { @@ -230675,12 +230675,12 @@ } ], "id": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "modified": "2021-01-06T18:30:53.912Z", + "modified": "2021-01-13T01:52:41.691Z", "name": "Flaw Remediation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.913Z", + "created": "2021-01-13T01:52:41.692Z", "description": "a. Implement [Selection (one or more): signature based; non-signature based] malicious code protection mechanisms at system entry and exit points to detect and eradicate malicious code;\nb. Automatically update malicious code protection mechanisms as new releases are available in accordance with organizational configuration management policy and procedures;\nc. Configure malicious code protection mechanisms to:\n1. Perform periodic scans of the system [Assignment: organization-defined frequency] and real-time scans of files from external sources at [Selection (one or more): endpoint; network entry and exit points] as the files are downloaded, opened, or executed in accordance with organizational policy; and\n2. [Selection (one or more): block malicious code; quarantine malicious code; take [Assignment: organization-defined action]\n ]; and send alert to [Assignment: organization-defined personnel or roles] in response to malicious code detection; and\nd. Address the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the system.\n\nSystem entry and exit points include firewalls, remote access servers, workstations, electronic mail servers, web servers, proxy servers, notebook computers, and mobile devices. Malicious code includes viruses, worms, Trojan horses, and spyware. Malicious code can also be encoded in various formats contained within compressed or hidden files or hidden in files using techniques such as steganography. Malicious code can be inserted into systems in a variety of ways, including by electronic mail, the world-wide web, and portable storage devices. Malicious code insertions occur through the exploitation of system vulnerabilities. A variety of technologies and methods exist to limit or eliminate the effects of malicious code.\nMalicious code protection mechanisms include both signature- and nonsignature-based technologies. Nonsignature-based detection mechanisms include artificial intelligence techniques that use heuristics to detect, analyze, and describe the characteristics or behavior of malicious code and to provide controls against such code for which signatures do not yet exist or for which existing signatures may not be effective. Malicious code for which active signatures do not yet exist or may be ineffective includes polymorphic malicious code (i.e., code that changes signatures when it replicates). Nonsignature-based mechanisms also include reputation-based technologies. In addition to the above technologies, pervasive configuration management, comprehensive software integrity controls, and anti-exploitation software may be effective in preventing the execution of unauthorized code. Malicious code may be present in commercial off-the-shelf software as well as custom-built software and could include logic bombs, backdoors, and other types of attacks that could affect organizational mission and business functions.\nIn situations where malicious code cannot be detected by detection methods or technologies, organizations rely on other types of controls, including secure coding practices, configuration management and control, trusted procurement processes, and monitoring practices to ensure that software does not perform functions other than the functions intended. Organizations may determine that, in response to the detection of malicious code, different actions may be warranted. For example, organizations can define actions in response to malicious code detection during periodic scans, the detection of malicious downloads, or the detection of maliciousness when attempting to open or execute files.", "external_references": [ { @@ -230689,12 +230689,12 @@ } ], "id": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "modified": "2021-01-06T18:30:53.913Z", + "modified": "2021-01-13T01:52:41.692Z", "name": "Malicious Code Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.915Z", + "created": "2021-01-13T01:52:41.693Z", "description": "a. Monitor the system to detect:\n1. Attacks and indicators of potential attacks in accordance with the following monitoring objectives: [Assignment: organization-defined monitoring objectives]; and\n2. Unauthorized local, network, and remote connections;\nb. Identify unauthorized use of the system through the following techniques and methods: [Assignment: organization-defined techniques and methods];\nc. Invoke internal monitoring capabilities or deploy monitoring devices:\n1. Strategically within the system to collect organization-determined essential information; and\n2. At ad hoc locations within the system to track specific types of transactions of interest to the organization;\nd. Analyze detected events and anomalies;\ne. Adjust the level of system monitoring activity when there is a change in risk to organizational operations and assets, individuals, other organizations, or the Nation;\nf. Obtain legal opinion regarding system monitoring activities; and\ng. Provide [Assignment: organization-defined system monitoring information] to [Assignment: organization-defined personnel or roles]\n [Selection (one or more): as needed; \n [Assignment: organization-defined frequency]\n ].\n\nSystem monitoring includes external and internal monitoring. External monitoring includes the observation of events occurring at external interfaces to the system. Internal monitoring includes the observation of events occurring within the system. Organizations monitor systems by observing audit activities in real time or by observing other system aspects such as access patterns, characteristics of access, and other actions. The monitoring objectives guide and inform the determination of the events. System monitoring capabilities are achieved through a variety of tools and techniques, including intrusion detection and prevention systems, malicious code protection software, scanning tools, audit record monitoring software, and network monitoring software.\nDepending on the security architecture, the distribution and configuration of monitoring devices may impact throughput at key internal and external boundaries as well as at other locations across a network due to the introduction of network throughput latency. If throughput management is needed, such devices are strategically located and deployed as part of an established organization-wide security architecture. Strategic locations for monitoring devices include selected perimeter locations and near key servers and server farms that support critical applications. Monitoring devices are typically employed at the managed interfaces associated with controls SC-7 and AC-17. The information collected is a function of the organizational monitoring objectives and the capability of systems to support such objectives. Specific types of transactions of interest include Hypertext Transfer Protocol (HTTP) traffic that bypasses HTTP proxies. System monitoring is an integral part of organizational continuous monitoring and incident response programs, and output from system monitoring serves as input to those programs. System monitoring requirements, including the need for specific types of system monitoring, may be referenced in other controls (e.g., AC-2g, AC-2(7), AC-2(12)(a), AC-17(1), AU-13, AU-13(1), AU-13(2), CM-3f, CM-6d, MA-3a, MA-4a, SC-5(3)(b), SC-7a, SC-7(24)(b), SC-18b, SC-43b). Adjustments to levels of system monitoring are based on law enforcement information, intelligence information, or other sources of information. The legality of system monitoring activities is based on applicable laws, executive orders, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -230703,12 +230703,12 @@ } ], "id": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "modified": "2021-01-06T18:30:53.915Z", + "modified": "2021-01-13T01:52:41.693Z", "name": "System Monitoring", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.921Z", + "created": "2021-01-13T01:52:41.698Z", "description": "a. Receive system security alerts, advisories, and directives from [Assignment: organization-defined external organizations] on an ongoing basis;\nb. Generate internal security alerts, advisories, and directives as deemed necessary;\nc. Disseminate security alerts, advisories, and directives to: [Selection (one or more): \n [Assignment: organization-defined personnel or roles]\n ; \n [Assignment: organization-defined elements within the organization]\n ; \n [Assignment: organization-defined external organizations]\n ]; and\nd. Implement security directives in accordance with established time frames, or notify the issuing organization of the degree of noncompliance.\n\nThe Cybersecurity and Infrastructure Security Agency (CISA) generates security alerts and advisories to maintain situational awareness throughout the Federal Government. Security directives are issued by OMB or other designated organizations with the responsibility and authority to issue such directives. Compliance with security directives is essential due to the critical nature of many of these directives and the potential (immediate) adverse effects on organizational operations and assets, individuals, other organizations, and the Nation should the directives not be implemented in a timely manner. External organizations include supply chain partners, external mission or business partners, external service providers, and other peer or supporting organizations.", "external_references": [ { @@ -230717,12 +230717,12 @@ } ], "id": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", - "modified": "2021-01-06T18:30:53.921Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Security Alerts, Advisories, and Directives", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.922Z", + "created": "2021-01-13T01:52:41.698Z", "description": "a. Employ integrity verification tools to detect unauthorized changes to the following software, firmware, and information: [Assignment: organization-defined software, firmware, and information]; and\nb. Take the following actions when unauthorized changes to the software, firmware, and information are detected: [Assignment: organization-defined actions].\n\nUnauthorized changes to software, firmware, and information can occur due to errors or malicious activity. Software includes operating systems (with key internal components, such as kernels or drivers), middleware, and applications. Firmware interfaces include Unified Extensible Firmware Interface (UEFI) and Basic Input/Output System (BIOS). Information includes personally identifiable information and metadata that contains security and privacy attributes associated with information. Integrity-checking mechanisms'including parity checks, cyclical redundancy checks, cryptographic hashes, and associated tools'can automatically monitor the integrity of systems and hosted applications.", "external_references": [ { @@ -230731,12 +230731,12 @@ } ], "id": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "modified": "2021-01-06T18:30:53.922Z", + "modified": "2021-01-13T01:52:41.698Z", "name": "Software, Firmware, and Information Integrity", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.925Z", + "created": "2021-01-13T01:52:41.701Z", "description": "a. Employ spam protection mechanisms at system entry and exit points to detect and act on unsolicited messages; and\nb. Update spam protection mechanisms when new releases are available in accordance with organizational configuration management policy and procedures.\n\nSystem entry and exit points include firewalls, remote-access servers, electronic mail servers, web servers, proxy servers, workstations, notebook computers, and mobile devices. Spam can be transported by different means, including email, email attachments, and web accesses. Spam protection mechanisms include signature definitions.", "external_references": [ { @@ -230745,12 +230745,12 @@ } ], "id": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "modified": "2021-01-06T18:30:53.925Z", + "modified": "2021-01-13T01:52:41.701Z", "name": "Spam Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.926Z", + "created": "2021-01-13T01:52:41.702Z", "description": "Check the validity of the following information inputs: [Assignment: organization-defined information inputs to the system].\n\nChecking the valid syntax and semantics of system inputs'including character set, length, numerical range, and acceptable values'verifies that inputs match specified definitions for format and content. For example, if the organization specifies that numerical values between 1-100 are the only acceptable inputs for a field in a given application, inputs of '387,' 'abc,' or '%K%' are invalid inputs and are not accepted as input to the system. Valid inputs are likely to vary from field to field within a software application. Applications typically follow well-defined protocols that use structured messages (i.e., commands or queries) to communicate between software modules or system components. Structured messages can contain raw or unstructured data interspersed with metadata or control information. If software applications use attacker-supplied inputs to construct structured messages without properly encoding such messages, then the attacker could insert malicious commands or special characters that can cause the data to be interpreted as control information or metadata. Consequently, the module or component that receives the corrupted output will perform the wrong operations or otherwise interpret the data incorrectly. Prescreening inputs prior to passing them to interpreters prevents the content from being unintentionally interpreted as commands. Input validation ensures accurate and correct inputs and prevents attacks such as cross-site scripting and a variety of injection attacks.", "external_references": [ { @@ -230759,12 +230759,12 @@ } ], "id": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "modified": "2021-01-06T18:30:53.926Z", + "modified": "2021-01-13T01:52:41.702Z", "name": "Information Input Validation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.927Z", + "created": "2021-01-13T01:52:41.703Z", "description": "Manage and retain information within the system and information output from the system in accordance with applicable laws, executive orders, directives, regulations, policies, standards, guidelines and operational requirements.\n\nInformation management and retention requirements cover the full life cycle of information, in some cases extending beyond system disposal. Information to be retained may also include policies, procedures, plans, reports, data output from control implementation, and other types of administrative information. The National Archives and Records Administration (NARA) provides federal policy and guidance on records retention and schedules. If organizations have a records management office, consider coordinating with records management personnel. Records produced from the output of implemented controls that may require management and retention include, but are not limited to: All XX-1, AC-6(9), AT-4, AU-12, CA-2, CA-3, CA-5, CA-6, CA-7, CA-8, CA-9, CM-2, CM-3, CM-4, CM-6, CM-8, CM-9, CM-12, CM-13, CP-2, IR-6, IR-8, MA-2, MA-4, PE-2, PE-8, PE-16, PE-17, PL-2, PL-4, PL-7, PL-8, PM-5, PM-8, PM-9, PM-18, PM-21, PM-27, PM-28, PM-30, PM-31, PS-2, PS-6, PS-7, PT-2, PT-3, PT-7, RA-2, RA-3, RA-5, RA-8, SA-4, SA-5, SA-8, SA-10, SI-4, SR-2, SR-4, SR-8.", "external_references": [ { @@ -230773,12 +230773,12 @@ } ], "id": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "modified": "2021-01-06T18:30:53.927Z", + "modified": "2021-01-13T01:52:41.703Z", "name": "Information Management and Retention", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Validate information output from the following software programs and/or applications to ensure that the information is consistent with the expected content: [Assignment: organization-defined software programs and/or applications].\n\nCertain types of attacks, including SQL injections, produce output results that are unexpected or inconsistent with the output results that would be expected from software programs or applications. Information output filtering focuses on detecting extraneous content, preventing such extraneous content from being displayed, and then alerting monitoring tools that anomalous behavior has been discovered.", "external_references": [ { @@ -230787,12 +230787,12 @@ } ], "id": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Information Output Filtering", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.929Z", + "created": "2021-01-13T01:52:41.706Z", "description": "Implement the following controls to protect the system memory from unauthorized code execution: [Assignment: organization-defined controls].\n\nSome adversaries launch attacks with the intent of executing code in non-executable regions of memory or in memory locations that are prohibited. Controls employed to protect memory include data execution prevention and address space layout randomization. Data execution prevention controls can either be hardware-enforced or software-enforced with hardware enforcement providing the greater strength of mechanism.", "external_references": [ { @@ -230801,12 +230801,12 @@ } ], "id": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", - "modified": "2021-01-06T18:30:53.929Z", + "modified": "2021-01-13T01:52:41.706Z", "name": "Memory Protection", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:53.933Z", + "created": "2021-01-13T01:52:41.709Z", "description": "Based on [Assignment: organization-defined circumstances]:\na. Fragment the following information: [Assignment: organization-defined information]; and\nb. Distribute the fragmented information across the following systems or system components: [Assignment: Assignment organization-defined systems or system components].\n\nOne objective of the advanced persistent threat is to exfiltrate valuable information. Once exfiltrated, there is generally no way for the organization to recover the lost information. Therefore, organizations may consider dividing the information into disparate elements and distributing those elements across multiple systems or system components and locations. Such actions will increase the adversary's work factor to capture and exfiltrate the desired information and, in so doing, increase the probability of detection. The fragmentation of information impacts the organization's ability to access the information in a timely manner. The extent of the fragmentation is dictated by the impact or classification level (and value) of the information, threat intelligence information received, and whether data tainting is used (i.e., data tainting-derived information about the exfiltration of some information could result in the fragmentation of the remaining information).", "external_references": [ { @@ -230815,57153 +230815,37616 @@ } ], "id": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "modified": "2021-01-06T18:30:53.933Z", + "modified": "2021-01-13T01:52:41.709Z", "name": "Information Fragmentation", "type": "course-of-action" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.973Z", "id": "relationship--01d02a4b-73be-424f-87ab-b96392f21348", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--9b4cd333-8d9d-4080-935f-85b6c662299e", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--7f78bb9d-d98d-4dcc-9c3f-4fe6633d95ab", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--c7ce7dbb-fd72-4ba8-8c31-6a335d0070cb", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--2938c748-1ed5-4fe8-874e-2ba5746e4f48", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--d5814d8a-fb01-46e9-b1bb-2366e8ccb89d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--fbc08dc7-499d-4efc-ab09-3b0871289793", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--b8ae63ec-1d64-4bda-8b67-bb4eb9e233eb", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--57bb1c15-f067-4c93-bec7-f9546792ec11", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--d411d872-5549-4d4f-8815-ea3930aa9aad", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--2a9bac3c-9fe7-4a45-8fd7-10d1e207f130", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--02f7cfd1-9b6a-4c63-af56-2fe7498e3737", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.976Z", "id": "relationship--1c533911-eb8e-4ef5-8dd5-ec73b2142c7d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.976Z", "id": "relationship--e8259d5d-bc0e-4fa4-8963-f51d9bbb744d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.977Z", "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--cc08b477-5e41-4b05-8ea6-87cbc81808ee", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--768c9663-daff-481c-8f35-76296cd88b2f", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--45fffc48-4756-48ae-959f-5e59de2b602b", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--f1e29608-01a1-464b-801a-9c196586b00a", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--dd16b9e7-2367-4749-b124-5cabe00bad78", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--09a55636-cbe9-4e05-bafb-d258c8efe0bd", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--f9275823-4ebd-4533-900c-958d31aaf240", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--3e4bdba4-f0fe-48dc-a263-251ce8f7cffa", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--6e3c3489-9396-48fe-816a-761ec17b0e49", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--ff6f86c0-c93f-4f52-9b64-995f19f8a013", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.718Z", + "created": "2021-01-13T01:52:43.983Z", "id": "relationship--920c76c7-ed9b-4b0f-8de1-d20cd774fd6e", - "modified": "2021-01-06T18:30:54.718Z", + "modified": "2021-01-13T01:52:43.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.718Z", + "created": "2021-01-13T01:52:43.983Z", "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:54.718Z", + "modified": "2021-01-13T01:52:43.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.986Z", "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.986Z", "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.987Z", "id": "relationship--048b028e-1a0c-4059-b09b-a244d705448f", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.987Z", "id": "relationship--87eff696-c0d4-41c9-a39f-a5fad38eb7ac", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--8b137a81-c7ec-4e62-b659-417d6759e9dd", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--b19c4e56-93bd-4143-b47b-e84d39edf0b4", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--307bbb1a-aa96-44ad-aec1-c8a61979a758", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--a9faf1de-512b-406b-81e7-9e4037675804", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--3af75b39-6c1d-4263-ad51-0cb0093e1534", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--12179f09-6ae5-4654-a873-7dd74baf49ad", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--c182cdd9-b637-4c5d-8f4e-587a3a044682", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--d9c85aef-6b1f-4929-a5f7-bf470b99af8c", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--3381620a-4dd8-4c19-9205-33aa1186ca19", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--e4e4b88d-ce9e-4585-83dd-2ecb58d2dcb2", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.723Z", + "created": "2021-01-13T01:52:43.990Z", "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:54.723Z", + "modified": "2021-01-13T01:52:43.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.990Z", "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--ccf6b20d-404e-43b1-8f22-e1f7cf4e12bb", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--071251a2-0d60-4cc9-90f5-2d46e6e37eed", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.992Z", "id": "relationship--78f6eea0-78fc-4628-845e-6ee09c54daa1", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.992Z", "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--b87298e7-35fc-4cae-a034-981115046b83", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--86707c80-dd6b-4998-8067-cd17c1a978a5", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--bb6f985d-5e1d-4d1e-ab57-a9f41dd10163", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--76a7cac0-6fd7-4b9f-8038-f1dab00f2064", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--6cc88dde-75bb-4066-b5b1-9766aa8229e4", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.994Z", "id": "relationship--b583ec41-8c6e-499c-b991-caee330f10d5", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.994Z", "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.727Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--0d1307da-4f68-4552-8fbe-67ccd889ba21", - "modified": "2021-01-06T18:30:54.727Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.727Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:54.727Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--c01591b9-5a7c-4ee0-bce5-4b0bb2bbc65e", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--e793f5d1-1d38-4ffe-b035-98e51ad462b2", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--84cd81b3-d7cc-49e7-a2e2-dc0001cef7a3", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--0fc9ca50-d7c3-4796-983b-949f68bcecbf", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--351e968c-5cbb-4026-bbcd-7130260b7e57", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--c38f05bb-49c6-419c-9e14-3755a3983255", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--e6620622-c001-48b5-94d4-40a3385dbf2f", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--c63f1f3f-6389-412e-b339-8260c08f0f61", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.729Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--db295f3f-c1ae-485f-a44b-5b97a8334776", - "modified": "2021-01-06T18:30:54.729Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.730Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:43.998Z", "id": "relationship--93a29b01-bb3f-4e17-90e1-7cc30991ae6c", - "modified": "2021-01-06T18:30:54.730Z", + "modified": "2021-01-13T01:52:43.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.730Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:43.998Z", "id": "relationship--298f45ac-e5ae-4a87-be10-efecfaded690", - "modified": "2021-01-06T18:30:54.730Z", + "modified": "2021-01-13T01:52:43.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.731Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:43.999Z", "id": "relationship--9dae6268-83d9-41bf-87eb-1b10f5cb15b9", - "modified": "2021-01-06T18:30:54.731Z", + "modified": "2021-01-13T01:52:43.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.731Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:43.999Z", "id": "relationship--bfb8efb7-2a01-4ee9-977c-b7edb4edadda", - "modified": "2021-01-06T18:30:54.731Z", + "modified": "2021-01-13T01:52:43.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--f6fedb30-34e5-4a5b-beb9-dee330c54bd7", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--0ff39bf4-66d5-4511-aeee-6d8cf4f77c06", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--84690366-24e8-4157-b9fe-854d0bd2ff57", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--182c236e-90a4-4490-bdff-d8e8252e790f", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.001Z", "id": "relationship--4bbddcfd-de49-4232-a1b2-6207ae5eed6a", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.733Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.001Z", "id": "relationship--9dd394f9-f09b-4936-8a3c-ddc8230427f2", - "modified": "2021-01-06T18:30:54.733Z", + "modified": "2021-01-13T01:52:44.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--c4fc19f2-5952-4ff4-a0b3-f7cada0d3cab", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--7b4ec88f-31cb-4154-a40e-843dccbf068b", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--b98f20bf-110e-48c4-8023-8a72026b9879", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--b719241b-e0fa-47e8-95d2-334b65b1d862", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.735Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--ddfd4b3d-2542-42f0-882f-4a9098a2fe8a", - "modified": "2021-01-06T18:30:54.735Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.735Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--8b48a325-c1c8-4c1d-aa6b-70095466173f", - "modified": "2021-01-06T18:30:54.735Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.736Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.004Z", "id": "relationship--ef909396-5b2b-4cf4-8860-a9b14bf14042", - "modified": "2021-01-06T18:30:54.736Z", + "modified": "2021-01-13T01:52:44.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.736Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.005Z", "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:54.736Z", + "modified": "2021-01-13T01:52:44.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.737Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.011Z", "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:54.737Z", + "modified": "2021-01-13T01:52:44.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.737Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.012Z", "id": "relationship--f476af09-ed64-4b8d-8478-658d7b826bed", - "modified": "2021-01-06T18:30:54.737Z", + "modified": "2021-01-13T01:52:44.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--7be00ab2-d7e9-4732-9c71-6eedd4bbbf44", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--3bd3e974-ae5a-41e2-9b0b-2353d92334d2", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--05081acb-f547-453f-bad1-002891ac22e7", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--4981efd9-1791-492c-8757-74bce2bec610", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:54.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--a055c63e-e4c1-4298-8068-fb3f5bc87b22", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--51a5c9e3-93d8-4bc8-ac5f-3140135872bc", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:54.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--4bec2cea-959e-4e8f-9c4c-4191de7723b2", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:54.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:54.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.019Z", "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.019Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--f4fed9c8-f324-4871-b13b-dc799c5c607e", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--23b2bf27-97be-44ff-8ede-c0f02cce6237", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--a9090825-c14f-4650-94e3-88fe861c61b1", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--bb23020c-486e-4ecd-b529-72b80853f1c5", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--834402f8-f070-4509-94c7-cfd5f43b7d15", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--f28dfcdd-0b23-4956-b8f7-fb7823a1d8f4", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--c9a0a962-532b-42d1-b3c3-12b73746a664", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.023Z", "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.023Z", "id": "relationship--d348da1d-9a96-48c2-aae4-8cab44cd5f76", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.024Z", "id": "relationship--f7464e95-df43-41df-aab2-945d6a4945eb", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--fa5cb2bc-bc29-4b2f-8ad8-4c6b9259bdba", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--446497f2-61b4-4ecc-8547-01cbf2f9ad4e", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--05a6a2b1-5472-4559-b323-d68325ad4e58", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--ec883b32-681e-4355-9107-dadd4cd28a24", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:54.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.029Z", "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:54.746Z", + "modified": "2021-01-13T01:52:44.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.029Z", "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:54.746Z", + "modified": "2021-01-13T01:52:44.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--71f3a6c8-774d-4247-8685-04cac7fcc1dd", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.031Z", "id": "relationship--c617e38c-444b-4f55-8b6d-88907cf20bc8", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.748Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.031Z", "id": "relationship--fe3aa1fa-370c-4d7d-a577-4cdb8e4e693f", - "modified": "2021-01-06T18:30:54.748Z", + "modified": "2021-01-13T01:52:44.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:54.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.032Z", "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.032Z", "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:54.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:54.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:54.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.751Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.036Z", "id": "relationship--78070826-5fb9-4630-82cf-c9ce52743e73", - "modified": "2021-01-06T18:30:54.751Z", + "modified": "2021-01-13T01:52:44.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.751Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.036Z", "id": "relationship--9e1de270-04c8-4de3-8e6b-75ca7c9f4d80", - "modified": "2021-01-06T18:30:54.751Z", + "modified": "2021-01-13T01:52:44.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.752Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.037Z", "id": "relationship--50852282-b549-4cf8-8ff1-8085a5cc0551", - "modified": "2021-01-06T18:30:54.752Z", + "modified": "2021-01-13T01:52:44.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.753Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.039Z", "id": "relationship--a288cd47-50b2-4ea8-8a93-42cb87f91bb5", - "modified": "2021-01-06T18:30:54.753Z", + "modified": "2021-01-13T01:52:44.039Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:54.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:54.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", + "created": "2021-01-13T01:52:44.042Z", "id": "relationship--db40f2f1-2a22-4ccf-97a7-dbfbc2de9378", - "modified": "2021-01-06T18:30:54.755Z", + "modified": "2021-01-13T01:52:44.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.756Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.043Z", "id": "relationship--5a60b941-48be-480a-bb61-f5de803cfd16", - "modified": "2021-01-06T18:30:54.756Z", + "modified": "2021-01-13T01:52:44.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.756Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.043Z", "id": "relationship--06dbc710-32d7-4e1e-a777-580592851b28", - "modified": "2021-01-06T18:30:54.756Z", + "modified": "2021-01-13T01:52:44.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.758Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.045Z", "id": "relationship--a8eecaa9-03a0-434d-8259-b8a678939084", - "modified": "2021-01-06T18:30:54.758Z", + "modified": "2021-01-13T01:52:44.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.759Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.047Z", "id": "relationship--87e34a24-bdb6-451b-80b0-093cbfeeedf0", - "modified": "2021-01-06T18:30:54.759Z", + "modified": "2021-01-13T01:52:44.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.759Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.047Z", "id": "relationship--b44c32eb-a243-402f-b907-fb5cef1536a1", - "modified": "2021-01-06T18:30:54.759Z", + "modified": "2021-01-13T01:52:44.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.760Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.049Z", "id": "relationship--307a7292-e8a2-45c3-83f1-68918fca62f8", - "modified": "2021-01-06T18:30:54.760Z", + "modified": "2021-01-13T01:52:44.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.760Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.050Z", "id": "relationship--015bebb9-f68e-4f3f-958c-8a1b5a4d5280", - "modified": "2021-01-06T18:30:54.760Z", + "modified": "2021-01-13T01:52:44.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.761Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.051Z", "id": "relationship--ed81fac6-c9e5-44ab-9a58-cbc4991373d7", - "modified": "2021-01-06T18:30:54.761Z", + "modified": "2021-01-13T01:52:44.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.052Z", "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--18f8d5e6-c364-46d7-8366-034a6412d75a", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--937fc5d2-18a6-4c44-bb76-1b7500b51e5a", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--4d538de5-2144-415a-b381-34f0a53d5c19", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--9742abb6-4165-407b-a302-4d8ff8db6c45", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--ba24e9be-9c3e-41d2-81cb-1371466f4c7f", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--28ff0106-4725-4e61-9d30-f258eeb784fb", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.764Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.055Z", "id": "relationship--b0f09191-e6ef-47cf-9dc4-e42006357419", - "modified": "2021-01-06T18:30:54.764Z", + "modified": "2021-01-13T01:52:44.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.765Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.056Z", "id": "relationship--6a12a01c-6861-4fcb-a172-3a96a00069ff", - "modified": "2021-01-06T18:30:54.765Z", + "modified": "2021-01-13T01:52:44.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.765Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.056Z", "id": "relationship--a7a4463b-a3fd-485c-8ea5-a5e2d55eec97", - "modified": "2021-01-06T18:30:54.765Z", + "modified": "2021-01-13T01:52:44.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.057Z", "id": "relationship--4ab1b628-3854-472a-b688-03c93268b815", - "modified": "2021-01-06T18:30:54.766Z", + "modified": "2021-01-13T01:52:44.057Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.767Z", - "description": "Account Management, ", + "created": "2021-01-13T01:52:44.059Z", "id": "relationship--202a16de-092a-4d04-aeb9-d7fe7a1799ac", - "modified": "2021-01-06T18:30:54.767Z", + "modified": "2021-01-13T01:52:44.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.768Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:44.061Z", "id": "relationship--d2612625-bc28-4c8d-9c8f-7c058c3c68c0", - "modified": "2021-01-06T18:30:54.768Z", + "modified": "2021-01-13T01:52:44.061Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--ac63e351-cf2b-4a9a-8e20-8c68f9ce3cc6", - "modified": "2021-01-06T18:30:54.769Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:54.769Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--a383f267-4d7e-4fb8-8e01-34c8b24f216a", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--fa9efe06-0728-4ff6-b1aa-86c01e209055", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--09fd6b45-3c84-4e0b-8ba8-533292d3f6df", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--679fb900-b3a9-45fd-9dab-3c467bb3e4ac", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--ae7d154f-7ac6-4cd6-bbb5-f05e9907bc09", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--36681363-4476-4a2c-8442-2efb3e9593e3", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--0896a18c-2df1-4b1b-81fb-d21d5dc16acb", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--6f59c746-2722-4ac8-801e-9c56e79c9404", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--c16da334-18e6-4282-a9f3-7b523ca1640f", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--c372e451-7655-41f2-a9d6-d847a5f2bd72", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--442e2f58-5b40-4d20-98f1-66db4994b279", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.775Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:54.775Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.775Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:54.775Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--2e649cbd-e520-407e-a870-02926bf90326", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--aadb1e86-b398-4314-9012-d91900bb6ec3", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--70eac0d9-8cf5-4364-8682-06787f7e2516", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--a431d2de-6825-4918-9ab3-cfa14e7b39ed", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--e58dc1e1-d12d-4385-9382-6f24263b1593", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--2d1b8563-a343-46a4-8da9-9cc37474c619", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--e33f2867-1289-4ef6-ba3c-bc8dadfe5961", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--442e2f58-5b40-4d20-98f1-66db4994b279", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--b50e9b86-9a9b-47db-975c-13524f0fa6ea", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--3813dc56-e0d8-458e-b1ef-ae95b2b20e6f", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--5b252a1e-792e-4d21-9a3c-983e6ec040a9", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--7bb8fb1a-029b-49c9-b918-4c3c91ce1d44", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--d6e38d89-705a-466a-8b66-0fad5594afbb", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--3cbebc72-3f85-409a-ac5c-49ab20fa227a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--86cb2d9c-dad3-45ea-90b5-b3ae1119cd3a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--e1faa8b0-f214-4863-843e-b3007638f61d", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--8524aa68-f4bf-4c99-b603-31dca596bdb8", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--15f5deb7-eced-49ef-9c65-f2a8ff165cd3", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--1c4f15ce-810c-4e3d-b4fd-941362e68668", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--e15c1ca8-d481-48b9-9724-65b315c1af16", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--3aff963c-88a0-4c64-b0a7-b542c19fc32a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--7dd88c28-f18e-4696-9916-2a3e28d12203", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.780Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--7932f8d4-e273-48dc-adde-7fa558bc1263", - "modified": "2021-01-06T18:30:54.780Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.780Z", - "description": "Continuous Monitoring", - "id": "relationship--679fb900-b3a9-45fd-9dab-3c467bb3e4ac", - "modified": "2021-01-06T18:30:54.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.781Z", - "description": "Continuous Monitoring", - "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:54.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.781Z", - "description": "Continuous Monitoring", - "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:54.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--0b6fd0a2-ebc3-43e0-b3fb-f969edf0a27d", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--a0b1cadc-a49f-4992-b0f4-140ad9b754ee", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--44b8c28d-3bba-4b8a-8742-30ec430ea408", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--8575b5a1-6310-4313-bba8-dce2ae9c0eb8", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--02712b85-d388-47bb-bad5-079456dc1b0a", - "modified": "2021-01-06T18:30:54.783Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--7abc4f96-4b99-4998-ad1b-e1b69be286da", - "modified": "2021-01-06T18:30:54.783Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--2e649cbd-e520-407e-a870-02926bf90326", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--dc7ac4f5-4650-445f-96d1-7270631c3224", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--14ca501a-f37a-462b-8a79-f0f9b91a3fac", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--4acb4e12-ec65-4383-8d06-25666b0c9485", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--d0c26eb8-ef28-4b49-afe1-30dfe3c8266a", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--729e7a61-1c08-49f6-89b4-947b9677a646", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--9c668461-cf06-4722-83af-e742e84a086c", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--c83feed4-2c0f-4dbd-89e6-b8886846a8b2", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--ae1a8c8d-d85a-4272-aa99-480a69ffca8c", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--15439cf4-7965-41e7-877f-55fcb83222ae", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.091Z", "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.091Z", "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.092Z", "id": "relationship--b8ad08b1-de3e-44e2-8f19-247ee694ee27", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.092Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.789Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.093Z", "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:54.789Z", + "modified": "2021-01-13T01:52:44.093Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.789Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.093Z", "id": "relationship--6387f37c-50f8-4955-b895-ebae75e435d8", - "modified": "2021-01-06T18:30:54.789Z", + "modified": "2021-01-13T01:52:44.093Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.790Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.095Z", "id": "relationship--8e9ddc17-dc67-41cb-8f14-0281d9995542", - "modified": "2021-01-06T18:30:54.790Z", + "modified": "2021-01-13T01:52:44.095Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.791Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.097Z", "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:54.791Z", + "modified": "2021-01-13T01:52:44.097Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.792Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.097Z", "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:54.792Z", + "modified": "2021-01-13T01:52:44.097Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.099Z", "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.099Z", "id": "relationship--6d1d8177-09f1-4d90-9ffa-3d9fbb4710dd", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--574aaea7-088d-4615-be3d-051795465d34", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--5fac53ef-2b87-48bb-94e7-c74f4d8aca8f", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--ae4df92c-5daa-4cd0-932b-bbca1b2d83be", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.794Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.102Z", "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:54.794Z", + "modified": "2021-01-13T01:52:44.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.795Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.102Z", "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:54.795Z", + "modified": "2021-01-13T01:52:44.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.795Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.103Z", "id": "relationship--ee3019f6-77dd-4841-be9c-31eafe0483c8", - "modified": "2021-01-06T18:30:54.795Z", + "modified": "2021-01-13T01:52:44.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.796Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.104Z", "id": "relationship--4d54c6a9-281e-4c60-a169-9ccc8e7a20fa", - "modified": "2021-01-06T18:30:54.796Z", + "modified": "2021-01-13T01:52:44.104Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.798Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:52:44.105Z", "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:54.798Z", + "modified": "2021-01-13T01:52:44.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.798Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:52:44.105Z", "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:54.798Z", + "modified": "2021-01-13T01:52:44.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.106Z", "id": "relationship--94977699-c6c5-4546-9cf3-4cc25f8fe934", - "modified": "2021-01-06T18:30:54.799Z", + "modified": "2021-01-13T01:52:44.106Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.106Z", "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:54.799Z", + "modified": "2021-01-13T01:52:44.106Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.801Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.108Z", "id": "relationship--8cd74b70-6610-4a01-9097-e457d96ebf08", - "modified": "2021-01-06T18:30:54.801Z", + "modified": "2021-01-13T01:52:44.108Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.802Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.110Z", "id": "relationship--53817e6d-141b-4dd6-b341-aec8c99e327b", - "modified": "2021-01-06T18:30:54.802Z", + "modified": "2021-01-13T01:52:44.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.802Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.110Z", "id": "relationship--0a61242d-1466-48db-a236-bbdbed2df501", - "modified": "2021-01-06T18:30:54.802Z", + "modified": "2021-01-13T01:52:44.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.803Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--f2a8cdbc-7a12-4057-bdf1-97f44358e5f9", - "modified": "2021-01-06T18:30:54.803Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--fce982aa-f07c-4009-ba42-ced161078798", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--49a65080-b396-4b22-b0e1-29702214f459", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--615c0da1-68f5-4577-8948-9ae006264e20", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--4976e57e-4ac9-4daf-b193-74dd99eead1f", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--c78cf4c7-4463-4c1f-b6dd-db05113b6351", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--6e6cc63c-6242-4562-9587-0d5166ce4374", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--534d31a0-0ba0-4625-a46f-1f569656aeda", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--a46023bf-3ae4-428f-be04-f3b9fb465478", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.115Z", "id": "relationship--53375273-4561-4c48-90bc-f039d2031d99", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.116Z", "id": "relationship--fab02c4b-680d-4865-90f1-68e7ae975578", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.116Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--6bfa35fc-e275-4c96-976c-fded254578d6", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--1b2a0bb4-69c9-4e1e-9b52-50f5f9beb90b", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--cf46fba0-d7e8-43dc-8ba1-b157c00657bc", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.808Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.118Z", "id": "relationship--7666cef8-6443-41a5-8f0c-bda91876f671", - "modified": "2021-01-06T18:30:54.808Z", + "modified": "2021-01-13T01:52:44.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.808Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.118Z", "id": "relationship--ff5b6fa3-4249-4ed4-9379-7676c8d77ee1", - "modified": "2021-01-06T18:30:54.808Z", + "modified": "2021-01-13T01:52:44.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.119Z", "id": "relationship--83852c8b-e079-4834-8314-8bdc5b4ebc15", - "modified": "2021-01-06T18:30:54.809Z", + "modified": "2021-01-13T01:52:44.119Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--76a7cac0-6fd7-4b9f-8038-f1dab00f2064", - "modified": "2021-01-06T18:30:54.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.119Z", "id": "relationship--61eb5772-2be6-4e74-a2a3-1a6ba17e2e08", - "modified": "2021-01-06T18:30:54.809Z", + "modified": "2021-01-13T01:52:44.119Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.810Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:54.810Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.811Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:52:44.121Z", "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:54.811Z", + "modified": "2021-01-13T01:52:44.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.811Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:52:44.121Z", "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:54.811Z", + "modified": "2021-01-13T01:52:44.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:54.812Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--1a9b8cf5-fc36-4aac-aa1d-92d171c4a138", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--4b1e61b9-2091-422d-bc0a-deab6b72ed35", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:54.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.124Z", "id": "relationship--8055b0de-9f63-4ead-bc73-d78f36ad76b8", - "modified": "2021-01-06T18:30:54.813Z", + "modified": "2021-01-13T01:52:44.124Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:54.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.814Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.125Z", "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:54.814Z", + "modified": "2021-01-13T01:52:44.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.814Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.125Z", "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:54.814Z", + "modified": "2021-01-13T01:52:44.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--7729812e-6e2c-4532-9359-ea8b0f3543b9", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.127Z", "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.127Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.817Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.128Z", "id": "relationship--97e195f0-e5c8-48b0-99f4-edbff224b608", - "modified": "2021-01-06T18:30:54.817Z", + "modified": "2021-01-13T01:52:44.128Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.817Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.128Z", "id": "relationship--ca85cc5a-c42d-43a2-8126-db82cc54187a", - "modified": "2021-01-06T18:30:54.817Z", + "modified": "2021-01-13T01:52:44.128Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--0af5acc3-cfcb-4764-bb9e-a7d2508aa1dc", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--b3567a0b-7998-4554-96a4-0e0b15eb2116", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--e4d010ba-de5d-4d62-a61b-80e67a53cbcd", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--f0afce7e-48d1-4db5-b29b-b26133e2f65d", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.131Z", "id": "relationship--00361e78-882b-4439-876e-9ff380aa793d", - "modified": "2021-01-06T18:30:54.821Z", + "modified": "2021-01-13T01:52:44.131Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--c975038b-a5f0-4787-85fc-05f46864c127", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--e011f9c9-ec87-43e3-b1b0-fedfb161f41d", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--d90b36cc-9f58-43e6-b72d-11321b1cece3", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--a1846487-c90c-4077-bbee-1f4931f9425a", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.823Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:54.823Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.823Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:54.823Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--9f8eb690-94d2-4494-bcb7-87af99035dfa", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--8fe35e6a-f81e-4861-a5a5-0d483b728f85", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--feeaf489-71af-43df-8ca5-5827908fab77", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--42c9e7db-8505-48b8-9338-dc1370ff97af", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.135Z", "id": "relationship--44d5846f-d804-4f79-b0a7-c747be7c86ea", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.135Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--c6acbd57-fa4e-4238-8f1b-abd0f4732f20", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--4f370686-2f9c-4803-8cd5-ce48f7f98ffc", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--0c572a17-1369-4083-a913-fdfed2625e83", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.826Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.137Z", "id": "relationship--990dd13c-2276-4171-9770-89f524987c3b", - "modified": "2021-01-06T18:30:54.826Z", + "modified": "2021-01-13T01:52:44.137Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--05843b9c-4ba0-41e9-bba2-8e57b708faba", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--29963aa0-6b58-4f13-bcee-68ecc6b3a0cb", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--078d32a1-aa30-4a76-a473-90a67650102b", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--34b30139-dd84-4e5b-ae1a-abecdfd94b34", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--1f48f25a-e154-4ff7-9928-fc180520f450", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--9a5c48b3-3481-4a79-8324-e3848ed59d29", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--1f05cb7a-2ead-4410-bbdc-44b0343cfc06", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--cb99f70a-8d0f-4a51-a57a-38f828a0424b", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--d3b46ad3-6691-4862-beaa-720aac063f04", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--5ed29154-612b-4cc1-b983-27b7d2e40acc", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--2d99ddcd-3aab-47e1-8658-a3f0d872051e", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.141Z", "id": "relationship--76e7565e-02a9-4eec-b38d-61513ba87f89", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.141Z", "id": "relationship--1ef1fe2d-4e6c-4f0a-a030-6c7f132d5e9e", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.142Z", "id": "relationship--6e8a422e-6c6d-4880-a381-8382802eb37a", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.142Z", "id": "relationship--981b9f39-886c-4533-9d61-79c91d7cb0eb", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--e28cd530-7e29-4915-85c8-1508f50952b0", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--f1e31ef5-4692-49a3-b1c8-0b7b36da082d", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--c1658e38-d9a0-45de-b8b2-41208fa19a5d", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--4a0045ef-64c1-4eb5-b662-3e598665300f", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--2511f506-3add-45e4-a76e-1527f268c71a", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--aa735d70-c58e-44be-b486-0944c3492fa0", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.831Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--28296063-011d-4c1b-9732-55eb7c22107b", - "modified": "2021-01-06T18:30:54.831Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.831Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--38f017ac-fa08-4caa-9c8f-d4344be80399", - "modified": "2021-01-06T18:30:54.831Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--2bfeb0a9-2764-40cf-921d-d1561d7b2b4e", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--5a883ed0-ddf3-4bc7-8f41-2fcbafcfc4d9", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--63e43ec0-4836-444c-a847-dd35f8b3bff9", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.147Z", "id": "relationship--0e1a221e-2d0e-4148-8814-b916e1ee5114", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.147Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.149Z", "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.149Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--fe73d6df-f941-4372-be62-31d6b6926017", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--d5f09d51-04c9-4d8a-abc3-e3190410716a", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--2c88f31f-1d5f-4728-9405-c262d059fe97", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--c2589497-5ab6-4427-879f-654f8a4353df", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--c70e90ff-a08f-4bd3-8cfc-d8b0179a1784", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--9d2b8c1d-4272-4f6f-b563-27aeb2c80652", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--8de42003-1150-4f7f-b910-8c9a11b86178", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--f9e7d410-31dc-48f6-9299-69bebd02ab9c", - "modified": "2021-01-06T18:30:54.836Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.154Z", "id": "relationship--1a95a010-09b0-47d2-acf9-fa9ea1595ab5", - "modified": "2021-01-06T18:30:54.836Z", + "modified": "2021-01-13T01:52:44.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.837Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--649cc28c-e6a7-4d82-ac2b-304cb5fbda4f", - "modified": "2021-01-06T18:30:54.837Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.837Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--1f5d2629-74c2-4ac6-93bf-05321c1da3f9", - "modified": "2021-01-06T18:30:54.837Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.838Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--037c31b9-c3d3-4a44-be59-b348cb58d4a4", - "modified": "2021-01-06T18:30:54.838Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.839Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:54.839Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.839Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:54.839Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.840Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--c7181a87-03ff-4afa-8bf6-cbf6770d3803", - "modified": "2021-01-06T18:30:54.840Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.841Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--fa10d7ab-a9c8-45b5-b85d-4243423c40f3", - "modified": "2021-01-06T18:30:54.841Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--b6aeea4d-8136-46e1-bdce-751909e0fd22", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--97b96aa3-bd15-4c54-8906-fddb5ac225f0", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.160Z", "id": "relationship--12e1c66f-f959-45a6-a2bb-9a7a7bd8be61", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.160Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.160Z", "id": "relationship--f3a49bce-aee6-49a5-a0b9-a9058ed3c912", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.160Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.843Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.161Z", "id": "relationship--856aec98-1e48-4f2d-85f0-081fea4ace3b", - "modified": "2021-01-06T18:30:54.843Z", + "modified": "2021-01-13T01:52:44.161Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.845Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.162Z", "id": "relationship--55678820-c564-4a2a-b3b5-1e82d990e68c", - "modified": "2021-01-06T18:30:54.845Z", + "modified": "2021-01-13T01:52:44.162Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--8db20810-b90f-42dd-9803-f8bb7d7ae0a5", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--fffae109-6b64-4862-a5e5-7607c5a505d9", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--f95ba53c-22b9-45c2-a12a-b714dc45ad32", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--2ff37c5e-3fab-446b-8bc9-d331a607032a", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--334a0098-86ef-4921-8fd1-d0b68fa2fcd2", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--4164cf5f-d33e-46d3-a456-63a95bc84b38", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--e6ad0c84-99c1-4ff1-9f43-31fe90ed2825", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--2cbb3009-e4f8-4014-a358-52762bce79d0", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--b38126c5-9102-4c21-a1bb-ab11c9b018cf", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--7371524d-98ac-46f1-91c7-170f17b12a60", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--bbdca9f7-7787-47cc-9948-af8bc63b700b", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--251d3332-f281-4b3c-8f43-90a19623c42b", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--0bf0496e-6d5c-4dea-83b6-24491c1d6bc9", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--806a2ee5-97b4-4791-8dde-11779be1d24d", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--79d2707c-b744-4900-94a4-3adeea9c3fc5", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--06dd97d1-2af2-4047-b779-e6f18f42749c", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--3101536e-cbe4-4b48-b460-76813e93a71c", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--3c44418b-9305-442f-8d41-29b567ccbf26", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--bae1899f-1349-4428-b50d-136527828ac3", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.851Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:54.851Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.851Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:54.851Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.852Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--d55f1854-db31-4e89-9ba4-6480c6d2d84e", - "modified": "2021-01-06T18:30:54.852Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--5c368894-17fc-4d7c-832b-186b71e48840", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--dcd2515f-a17d-47b8-885a-53517adcc83d", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--dbb2a4c1-c382-4542-8254-f377438ee1fc", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--49e9f55a-c174-4912-b62e-f00cd0ddffd9", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--eb8d40f8-1034-4fc1-8b44-0a34efd6765b", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--8fbaf565-0fbc-4f31-891a-c1500a16ed80", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.855Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--d363cfce-25ec-4769-afec-a8c408486e7d", - "modified": "2021-01-06T18:30:54.855Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.855Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:54.855Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--d2f2a28c-a666-4e85-ac40-0e6d8a2ac171", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--34b8a8fc-42d9-4d12-9d77-8c97a2a35e39", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.174Z", "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.174Z", "id": "relationship--89fe1aae-f98c-4836-9ef6-443cf461fdd4", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.858Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.175Z", "id": "relationship--fd953a90-3f27-4efa-b138-614187d120da", - "modified": "2021-01-06T18:30:54.858Z", + "modified": "2021-01-13T01:52:44.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.858Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.175Z", "id": "relationship--f9a0091f-520a-4e71-90a0-ecb0cacc96fb", - "modified": "2021-01-06T18:30:54.858Z", + "modified": "2021-01-13T01:52:44.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.859Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.176Z", "id": "relationship--1bb32a65-843a-4f8f-98c2-fde3c66433e8", - "modified": "2021-01-06T18:30:54.859Z", + "modified": "2021-01-13T01:52:44.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.859Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.176Z", "id": "relationship--5d4b74d8-a26f-4000-8c9a-79eec3850c5d", - "modified": "2021-01-06T18:30:54.859Z", + "modified": "2021-01-13T01:52:44.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.860Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.177Z", "id": "relationship--fa198237-2385-4c8a-b490-863016d72f75", - "modified": "2021-01-06T18:30:54.860Z", + "modified": "2021-01-13T01:52:44.177Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.862Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.179Z", "id": "relationship--8e395f09-2ca9-4de6-8013-31b49e0ab757", - "modified": "2021-01-06T18:30:54.862Z", + "modified": "2021-01-13T01:52:44.179Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.862Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.180Z", "id": "relationship--85378058-c0bb-4b1d-b373-47648dc12eb8", - "modified": "2021-01-06T18:30:54.862Z", + "modified": "2021-01-13T01:52:44.180Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.865Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.183Z", "id": "relationship--90a2a6b8-71af-4886-b1f2-36c914afbc3e", - "modified": "2021-01-06T18:30:54.865Z", + "modified": "2021-01-13T01:52:44.183Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.867Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.184Z", "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:54.867Z", + "modified": "2021-01-13T01:52:44.184Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.868Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:54.868Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.870Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.187Z", "id": "relationship--eab8de2b-e555-4794-b390-b94ff776a24b", - "modified": "2021-01-06T18:30:54.870Z", + "modified": "2021-01-13T01:52:44.187Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.871Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.188Z", "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:54.871Z", + "modified": "2021-01-13T01:52:44.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.872Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.188Z", "id": "relationship--2a3748ca-7c23-4696-b455-91f4e3b9fc10", - "modified": "2021-01-06T18:30:54.872Z", + "modified": "2021-01-13T01:52:44.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--345cceb6-b865-4d8e-b650-40b758df1101", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--754d7f6b-c829-43a1-b754-86288cad6c3b", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--43167aa3-0b33-48c4-91b2-3f7013044348", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--70dcd442-5409-4ab9-8e89-bfe8f64f5503", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.191Z", "id": "relationship--1b346713-fbfc-4de4-a21a-da0b0c13b293", - "modified": "2021-01-06T18:30:54.874Z", + "modified": "2021-01-13T01:52:44.191Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.875Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.191Z", "id": "relationship--ac64218a-e028-473e-adf5-bb54b94e0635", - "modified": "2021-01-06T18:30:54.875Z", + "modified": "2021-01-13T01:52:44.191Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.193Z", "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.193Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--7ea6ca54-9084-4b02-b685-8b24e7e11c5c", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.195Z", "id": "relationship--00e91bee-faf6-4906-b891-a94129353157", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.195Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.195Z", "id": "relationship--84806b18-2d8c-4211-86ff-4176633b037c", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.195Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--61f57c5b-d4f0-44ca-b750-2db7a3a18b96", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--989e5b84-901b-462b-9bf2-5feb20ccae72", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--bd70f25c-ad40-4821-b50d-12e353397dbd", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--5dc21a6c-637e-4c6d-b3be-5de36d7de602", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--5c024ccc-e129-45c3-ae04-002e0af64850", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--8b4eb980-4520-4ce9-a9c0-7c5e04753606", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--1f938f97-4bc9-4734-b63f-c52467b96f46", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--c0dc7c51-cd2d-4347-a51d-5e4418776e02", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--3955a747-c0fc-48c1-9aba-bcc2bd2e2c9b", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--b676b28f-037b-4f87-8cd8-7a0b428ba361", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--1691f338-5256-4b88-810b-770c003c8432", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--4d4f2395-0088-4864-a64d-c8a59bac70e7", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--c68fe43a-fbd7-4482-825b-ce3ef107e6e8", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--f5e8869e-359a-4094-83fd-150adcf7dae3", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--d1e5134a-38de-4967-9693-5e400f938c2a", - "modified": "2021-01-06T18:30:54.881Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--fd7eacdf-a24d-4eaf-9c9a-cff9a047ec5b", - "modified": "2021-01-06T18:30:54.881Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.882Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--3b16b2b9-3b1b-4439-a16e-c81fa29116ad", - "modified": "2021-01-06T18:30:54.882Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--b53375f9-802c-4b6c-9309-fe9cce94a3bb", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--cb8715b8-3213-4b6d-8184-c4402f53a70b", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--49cf2cf4-5e17-42f7-8543-dcc724797eb1", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.200Z", "id": "relationship--63a905e5-d285-4a83-a418-5270d72e2418", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.200Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--a8d4eea5-abcc-4624-a1ba-d574d6d22bf8", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--f80124e7-2722-48db-be34-d025c9ab532f", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.886Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--bb0eb289-260c-4149-92b0-dcffafe0176f", - "modified": "2021-01-06T18:30:54.886Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--202a16de-092a-4d04-aeb9-d7fe7a1799ac", - "modified": "2021-01-06T18:30:54.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--9294183e-b5e1-4af6-acd1-9e79c9027839", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--d68818b2-12d1-42e0-99a0-0afbc7104143", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--84252169-2e44-4fb8-8f39-3e59b044c9a7", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.888Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.204Z", "id": "relationship--8e84efc8-6b21-414a-8ba8-20108b01d597", - "modified": "2021-01-06T18:30:54.888Z", + "modified": "2021-01-13T01:52:44.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.890Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.206Z", "id": "relationship--74b8710d-9c25-4e2d-9060-3e04f5014e23", - "modified": "2021-01-06T18:30:54.890Z", + "modified": "2021-01-13T01:52:44.206Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.891Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--fed5f115-ee0a-4db8-9e4b-010d7be6f71d", - "modified": "2021-01-06T18:30:54.891Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.891Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--4327176e-7aab-4c8c-85e4-2445d121fbad", - "modified": "2021-01-06T18:30:54.891Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--f32d016e-1a37-4208-a656-b420118e6a29", - "modified": "2021-01-06T18:30:54.892Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--ae8a6693-32df-44ac-8e8c-fb0242b41116", - "modified": "2021-01-06T18:30:54.892Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.893Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.208Z", "id": "relationship--d343515d-8061-4806-83b9-a6c23c04713b", - "modified": "2021-01-06T18:30:54.893Z", + "modified": "2021-01-13T01:52:44.208Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.894Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.209Z", "id": "relationship--68ad63de-7ec8-47fc-afe7-07c74bedd546", - "modified": "2021-01-06T18:30:54.894Z", + "modified": "2021-01-13T01:52:44.209Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.210Z", "id": "relationship--1947b4f9-9c60-4229-be88-d348e642c16e", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.210Z", "id": "relationship--731881a6-cb2d-4b5c-8d9a-f29e9be6aa7d", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--719e851b-9cd4-4275-8455-bde428b3dd2f", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--f0d3d3c5-322f-4247-a8be-5c3e4144651e", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--a6be64f7-a2e0-4238-9db8-46e7b84266a9", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--12270fb5-d942-464b-88d2-6c79b818d24f", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--0a2798f0-1e62-4687-9554-2ac7d9862f00", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--888f53d8-1c05-409b-b177-7727fcdfab61", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--b7feade7-58ae-482b-a4f8-9b4f8911117d", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--5e511ca7-6fe1-4a90-8625-d215ea4fc2ec", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--2e715486-7008-4158-8b1f-c98d02958a0d", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--8bfb502b-0262-40fa-b999-8550b136dab9", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.897Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--18a79461-1446-4f11-8caa-63671cf8bd09", - "modified": "2021-01-06T18:30:54.897Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.898Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--3635e5a5-4c2c-4b50-9fa9-c7800e17bdf9", - "modified": "2021-01-06T18:30:54.898Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.898Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--21898240-3dc4-43b3-a5c4-aff7be41c9e3", - "modified": "2021-01-06T18:30:54.898Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--a3eeb116-7324-4814-8362-1236195ce859", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--b6e6bf4c-81e9-448f-8304-4707a84c17dc", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--7f7790be-a5bb-4387-8180-e7b4c3bc3172", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--e59b2dbd-3c4f-4e02-9e20-9f43ba6d7041", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--80d54e83-a883-4bf8-99fc-45ed11903a09", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--ec6b25ae-f191-4d0a-a2ca-da0849b72431", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.902Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--0b9c121c-bb1e-49c0-a5fc-31433300ea31", - "modified": "2021-01-06T18:30:54.902Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--27c0ac7e-877b-419e-a462-578eec401a54", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--2c53b770-1f8e-4af1-bf95-495a589577e6", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--2be8aab8-b779-431a-bcb4-0aad51cc6a34", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.905Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.217Z", "id": "relationship--bbb01564-cd3b-4d39-b6a4-76a16ca3cf7c", - "modified": "2021-01-06T18:30:54.905Z", + "modified": "2021-01-13T01:52:44.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.907Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.219Z", "id": "relationship--0a50c499-bc21-4973-84a7-1e0dc03583b6", - "modified": "2021-01-06T18:30:54.907Z", + "modified": "2021-01-13T01:52:44.219Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--602f4ff5-2f6f-4db6-9b7a-13902b5fe496", - "modified": "2021-01-06T18:30:54.909Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--1df8f733-db51-4809-81ab-8802c9e8e49b", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--df922bee-af95-46aa-a720-b4736b2ba0fe", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.913Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.221Z", "id": "relationship--db429883-1122-4585-8c9f-fbf9dc121408", - "modified": "2021-01-06T18:30:54.913Z", + "modified": "2021-01-13T01:52:44.221Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.222Z", "id": "relationship--37ee3790-fdb2-492b-bd49-98a4de985164", - "modified": "2021-01-06T18:30:54.915Z", + "modified": "2021-01-13T01:52:44.222Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6d1d8177-09f1-4d90-9ffa-3d9fbb4710dd", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fac53ef-2b87-48bb-94e7-c74f4d8aca8f", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:54.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.919Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.225Z", "id": "relationship--2676eef0-f89b-4991-8693-0e37d328018a", - "modified": "2021-01-06T18:30:54.919Z", + "modified": "2021-01-13T01:52:44.225Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.921Z", - "description": "User Access Permissions", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:54.921Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.922Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.226Z", "id": "relationship--f5e7ab4b-9145-47c7-a6f6-2ba4e25d8e38", - "modified": "2021-01-06T18:30:54.922Z", + "modified": "2021-01-13T01:52:44.226Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--83882629-5cf5-4866-9b9d-35a6320123cb", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.924Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:54.924Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.925Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.228Z", "id": "relationship--a1da3766-b6a4-480a-9e1a-3ff01eecae65", - "modified": "2021-01-06T18:30:54.925Z", + "modified": "2021-01-13T01:52:44.228Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.926Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.229Z", "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:54.926Z", + "modified": "2021-01-13T01:52:44.229Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.926Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.230Z", "id": "relationship--03459033-9bbc-487a-bf12-884d332a752e", - "modified": "2021-01-06T18:30:54.926Z", + "modified": "2021-01-13T01:52:44.230Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--1cf82f32-e00d-4677-af7b-5bc918a22aac", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--11d175d9-8796-474e-8c79-d38fbeacea21", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--5c72f17e-7ba2-4020-bd7e-4056c097de38", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.928Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.232Z", "id": "relationship--11238f37-4028-4b70-a1e5-fd19b1196101", - "modified": "2021-01-06T18:30:54.928Z", + "modified": "2021-01-13T01:52:44.232Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.929Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.233Z", "id": "relationship--f4428437-13f0-471b-8d9c-40e6929bac86", - "modified": "2021-01-06T18:30:54.929Z", + "modified": "2021-01-13T01:52:44.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.929Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.233Z", "id": "relationship--526b6455-7090-4845-b043-fa0d835a2c4d", - "modified": "2021-01-06T18:30:54.929Z", + "modified": "2021-01-13T01:52:44.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.234Z", "id": "relationship--909cca25-0cdc-4a33-9f78-277fa31b50f6", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.234Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--452d18a6-3fbc-4092-a44d-09b156d2d229", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--e3aef98e-1a55-4395-b903-ab6b0498aa9a", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--371af803-cd05-4f07-b302-74d4b07c693f", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.931Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.236Z", "id": "relationship--5347cbfa-3afd-4827-94ff-1dca3f7e4404", - "modified": "2021-01-06T18:30:54.931Z", + "modified": "2021-01-13T01:52:44.236Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.236Z", "id": "relationship--2414a830-a70b-418e-8666-ffaa19cd5525", - "modified": "2021-01-06T18:30:54.932Z", + "modified": "2021-01-13T01:52:44.236Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--3b9c407f-7d24-4922-bb6d-6002430d3c6a", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--fc5134e4-8273-45ac-9d13-98895cfde9bf", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--534a75e1-4b09-40d0-b545-1dbf1b79ac23", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--33cc01f4-7780-4d2b-9753-d95fd8ec06f4", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--19e83368-e496-4ae3-bfaf-a34081c96d36", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--76210c82-5f4e-41b7-b93c-51c64f29c313", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--4c8cf8df-9874-4202-9fd3-6606c3d3312e", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--c22e8843-d57d-4f62-b0c9-625cc61600a1", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--e42a6c26-5d6c-4bc7-86ee-4fd395678368", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--ca640360-e0d3-42cb-8677-f897a3620c3c", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--8240e297-281e-4f03-8bc4-81e4369652ae", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--702cf900-5ede-4889-be20-4e8f10fe7c6d", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--e934cab7-21fd-4380-b6ce-8c030978b943", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--5264d814-71b0-418d-9449-63acda1ebb15", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--fb3856a0-37ba-4107-8582-a3fbb2a6de40", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--c1649d14-7399-49e2-aa2c-8b8a6090037c", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--a411ba43-9eee-4bd7-8bfa-2c5c3dd2283f", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.937Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.240Z", "id": "relationship--91bfda43-bafd-4c19-bc75-02c7184b863c", - "modified": "2021-01-06T18:30:54.937Z", + "modified": "2021-01-13T01:52:44.240Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.937Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--162f929e-ea3e-465d-bac1-fcb8c379a237", - "modified": "2021-01-06T18:30:54.937Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--15a503a4-5d74-4704-9546-0193453c21dd", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--7f1368b8-520d-43f8-8da9-e24a596002e2", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--8e61d444-b717-4ad3-b025-c53dc1eecdd0", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--0ef3a1dd-8337-4e0c-9dec-a622d6c3b593", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.242Z", "id": "relationship--1eb6b45d-a172-4d4f-9ecc-353bf7b233a0", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.242Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--39006bc1-cb58-4372-b22b-39e2bdb97114", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--d1e1069c-8419-4e17-a3d4-9aeaaada028c", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--8130a450-9d6e-4b14-8577-a97a19b2cc62", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.940Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--6d6bfa68-93e7-42bb-bcca-fbfb25522b40", - "modified": "2021-01-06T18:30:54.940Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.940Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--702977fd-2631-4bb5-ab8a-a89d9f6496d4", - "modified": "2021-01-06T18:30:54.940Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.244Z", "id": "relationship--c0b6a614-2967-482a-86f3-44a2768f0605", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.244Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--cabdc082-24d3-4463-8199-8f69a6d117a0", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--8cf8b41a-3371-43e2-babe-9ae3c9d8b5aa", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--a0bf5c27-0f3f-4f8e-bc81-78e5ecfe49a1", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.942Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.246Z", "id": "relationship--b2e53e9f-0c35-41b6-af37-774a277c774a", - "modified": "2021-01-06T18:30:54.942Z", + "modified": "2021-01-13T01:52:44.246Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.943Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.247Z", "id": "relationship--bf76cdfd-963e-4b90-9bc8-61ab5c8eece3", - "modified": "2021-01-06T18:30:54.943Z", + "modified": "2021-01-13T01:52:44.247Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.248Z", "id": "relationship--853b4d47-b22f-47cc-9659-19f9a502502c", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.248Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.248Z", "id": "relationship--eb8c90fe-4ed0-4fac-8f28-9a6d1bd180be", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.248Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--326f49a6-1880-45a5-a62e-bbf37b8873df", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--5a988f58-c926-4491-9afe-9f33eed4b539", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--ba331fcc-9d28-4a88-9997-5ab60bcdfdc0", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--fddf4caf-5f37-42de-842a-918f7c890dda", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--1cd35eb0-0398-44c5-beee-9f21305af73e", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--8d517e6d-f5f0-4345-85fc-c1a3e74d7b52", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--e6112f28-f3f9-4fea-a205-0ad0d16d4441", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--24fd1cb0-6058-4366-b2a4-7b3df51fccc9", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.250Z", "id": "relationship--46042ab4-3bb6-46b5-9e71-03ea80b7749f", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.250Z", "id": "relationship--8d37024e-6110-40a2-a866-3303ae39a936", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.946Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--b71e4fa6-917c-49fd-8795-920484b73e0e", - "modified": "2021-01-06T18:30:54.946Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.946Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--bb4da27b-e20b-433c-9fe9-9098e99a18d0", - "modified": "2021-01-06T18:30:54.946Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.947Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--0b75fafa-e4ee-4a80-8d11-2e3461601a75", - "modified": "2021-01-06T18:30:54.947Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--192a7558-523e-4a42-99bc-260f49344cb5", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--d65bbc30-1f33-4bce-ba8b-495fd21ac2cb", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--9c0d54f6-7f33-4bee-8d32-e5ff8e2b9ade", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.253Z", "id": "relationship--f113490d-3311-40ee-84c1-f496812ac9dd", - "modified": "2021-01-06T18:30:54.949Z", + "modified": "2021-01-13T01:52:44.253Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:54.949Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:54.949Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--c9cea2ca-3334-46f6-95e9-a1d4e2b759d4", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--e4e5f368-0205-47bc-88a7-08de5870a16f", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--4761155b-3b80-4560-b9af-8bc57304db06", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--f8104ffc-986f-47c0-a1e9-cca551251278", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:54.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--163d3853-39d6-4c12-83e8-092a23c856f3", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.255Z", "id": "relationship--10d0ba5a-c1f3-4547-96a2-b4ae6202385e", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:54.951Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.255Z", "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--6a12a192-5fe0-4662-b5ed-c8b558c1cea8", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--b59dbace-1818-4bb0-b268-33de26463b15", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--9d632723-ee46-42b9-bce5-bfb2d2bf618b", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--44ca4399-cdb0-4edc-9bc8-d4fd9748224b", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--3f17dc10-22b5-472d-8d79-3cfc80765305", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--75708a83-476e-4787-adf5-931ef8ed078f", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--ebf1daa5-744c-4d7c-9e2b-d68a52cd085f", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--3df91b26-19ba-42b6-bb86-f680bd017087", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--819292a1-5a6b-4e6f-8718-e5195720e5de", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--25aa606f-a020-43b6-8de5-2c7341b51f4f", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--46d543f1-6ee7-4e32-b259-d597fe441949", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--6efa0541-ff03-47f4-afab-b47293a31b97", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--efdd24de-7bbb-43d6-bd21-024a67ebe5ec", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--b11b7c79-fabc-4051-bfad-7a41cb73c79a", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--2b792009-4473-47e0-b338-0d8d2635228e", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--d0f29dc1-7975-4229-a38a-a65bfbc4e91b", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--bfead51b-aa3b-43c8-b646-f412eddd142c", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--9ccb2ee8-eb20-4b66-8b1e-8d0d4e627753", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--073dfaf7-839e-4239-9ec2-43c770bbc375", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--a189354a-a19e-4196-ab16-00fd008ef921", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--230b13fb-1a95-4790-ae7e-2604e4f9c7cf", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--ae882bdc-808e-484f-aaa8-cf91e76152a5", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--213bd900-1808-421c-88f3-a2d50145b51d", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--5dfdb723-54a5-415a-9845-1e583c7abce6", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--3bb043f9-b4f6-407e-84a0-0f6d5d435f54", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--b8d45d62-3ea5-4141-ac0c-bbd43021e2eb", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--7fc366b4-d49d-470e-9c80-6d9cdf395ffc", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.959Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--387cd12d-78ed-4f79-9cbb-6dc9e2142395", - "modified": "2021-01-06T18:30:54.959Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.264Z", "id": "relationship--858bcd41-df79-456a-bf21-e9d334ef4da5", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.264Z", "id": "relationship--24ea89a8-b943-4a1e-ab09-df3bd32feeb3", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--38710920-ebca-4e2b-ad6f-93a29596f0de", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--1a782800-facc-4dfb-831f-1ae7b97f2e3b", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--51405937-d1dc-46cc-8a57-e3a686e9b348", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--9e684054-daf2-4db3-908b-4d90dba47dd2", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--02ca523c-8a90-432f-8d16-b94dbea515ae", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.961Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--fb21bc19-ac5c-4426-8608-dc1b194acec8", - "modified": "2021-01-06T18:30:54.961Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.961Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--33690dae-eefd-42e8-bd9e-31e30619c8d5", - "modified": "2021-01-06T18:30:54.961Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--0c1a2749-b687-4fb6-bec4-eff39e8f1423", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--1dbff2c3-339d-4e14-9f63-08ebdaae3299", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--a9c65b0c-bd4b-4597-b7d4-7e322fae5542", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--3b7675b5-470e-466f-af19-d8de449cd336", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--36c939ca-8387-4bd4-aead-16f44bdd6e11", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--e7168f2a-7711-4dbd-a93c-7ff6680ef6d5", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--952e8b02-f68e-46c3-a7dd-182247b6a46c", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--3f9435dd-9b77-4136-9dc4-b4d8915255c0", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--fb809a9e-3945-4a0f-bb74-cdc0996568fb", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--613ac41e-ae28-406b-8b8e-f287af930c36", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--62e142ed-7eae-4548-aafd-43a9b4553b86", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--0d2278e7-ae41-48ed-a784-209b736b36e9", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.965Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.270Z", "id": "relationship--d4ec633a-e81a-493b-a94a-ce495110eb8f", - "modified": "2021-01-06T18:30:54.965Z", + "modified": "2021-01-13T01:52:44.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.966Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.270Z", "id": "relationship--0650f8a1-9ba2-4eef-acd7-55b5e6dbbfab", - "modified": "2021-01-06T18:30:54.966Z", + "modified": "2021-01-13T01:52:44.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.967Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.272Z", "id": "relationship--39c1ddf8-d933-437c-9cbc-b1d3ff95eb91", - "modified": "2021-01-06T18:30:54.967Z", + "modified": "2021-01-13T01:52:44.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.967Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.272Z", "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:54.967Z", + "modified": "2021-01-13T01:52:44.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--f34fd691-0ecc-4ec6-a2a2-4b55ab10b92a", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--e288d2d5-8d5a-43a6-996a-337c7858c2d8", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--3ce822f8-80d5-43d7-81fd-de7e8be71b66", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--1c13daa0-e29a-447d-983a-4bb307ded65d", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.274Z", "id": "relationship--c1633d02-37f6-4a9a-81c6-fe7de85896ec", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.274Z", "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--7b49c644-ca00-451a-8fa1-593aa86ca0a6", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--2fede993-15e0-4744-8a9a-6d59f4627ba7", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--51fb904d-20bb-4fea-b507-6175dd990921", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--3bcd97b1-aef0-4433-8b86-8659d928f951", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.972Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.276Z", "id": "relationship--85680721-9104-4110-9920-626b1673a9a5", - "modified": "2021-01-06T18:30:54.972Z", + "modified": "2021-01-13T01:52:44.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.973Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.276Z", "id": "relationship--a0e1e7eb-43ef-4724-aa3b-333de3656730", - "modified": "2021-01-06T18:30:54.973Z", + "modified": "2021-01-13T01:52:44.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.974Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.277Z", "id": "relationship--6d14bba6-dd95-4bb9-a182-674375aa3718", - "modified": "2021-01-06T18:30:54.974Z", + "modified": "2021-01-13T01:52:44.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.974Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--2ec3b4b8-72b1-488b-aa53-ebf8e980a32f", - "modified": "2021-01-06T18:30:54.974Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--102989d0-4ad1-4794-a042-174d38595a77", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--67f8817a-efcc-492f-808f-c74d97521722", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--abccb607-d683-4413-bf11-b5188bd52472", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--3f371577-9e2b-403c-b0ed-ce37dabf645e", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--6a8b1e8d-082f-4e74-8a1a-3b52932155bd", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--b4b95c73-f3f4-457b-9794-c992e6c1359d", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--aa28f037-9410-45b1-b45e-2388f06cdc8c", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--b43d6d16-b6e5-4dd5-905d-c1c8c9597d0e", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--b92e435e-a939-4f9f-8636-b4b7bf69007f", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--90d11eb6-7bba-404c-bd76-896b8287b279", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--cdd76d80-bcc9-41a6-8181-140168e903c3", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--f14a1ef2-6dc6-45ec-8ae5-71b89c94108c", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--ac3fc14d-0efc-4683-9c01-6d500514b694", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.977Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--f813062a-4cc6-44bc-ac8d-3ca751877fc7", - "modified": "2021-01-06T18:30:54.977Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--6fcc4fdb-db17-44de-92cc-4c9bb1f8c521", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--ed7910a7-da1b-42cd-99cd-ffd7efb668c5", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--f162143d-c766-4042-9bd4-6a73dcddf8f5", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.282Z", "id": "relationship--56a8be0b-8f6c-404a-90a0-8dde978b6ed0", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.282Z", "id": "relationship--70446905-8e0d-42c3-8b35-5e3fbe6ed7a1", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.283Z", "id": "relationship--72bbec30-03ff-4de5-bae0-bb43b7c8f521", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.283Z", "id": "relationship--66beb3b8-87d2-4e09-abc6-994251de0fcb", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.980Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--bd2826a1-6be8-49af-ad9f-cf945189c61b", - "modified": "2021-01-06T18:30:54.980Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--a9c6a077-187d-49f0-9847-7d629246c29d", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--d384fb4d-95b0-4b64-9e6c-c23d40e486f9", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--b59e646a-3b00-413e-9ce7-b97fde82365b", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--b0539dc6-1194-4f01-8fc1-839862828af2", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--90d86b48-ec1c-4af8-939c-d86556ce880c", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--ff60090f-0ac5-4b75-be33-e9d287e79eba", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--07943d79-a540-4210-9df3-e4222889eb29", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--a5bb25db-0767-4566-b6e3-979438a2c92c", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--5efca001-f9bf-4d2a-b3ed-0a523d87b372", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--1ac636ce-b9a6-49f4-90b3-07f702edb6d0", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--9e0065d0-7a7c-408c-af96-54882358a506", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--ec704b12-7088-46c6-a8af-9e7a5115e0f2", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--0bb2413f-d436-45eb-b13d-d2885c1bca92", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--04fb248f-6479-4aa1-a128-a5cbde269523", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.984Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--dd2ac1ea-362f-4468-b326-e4f2cbeac8c8", - "modified": "2021-01-06T18:30:54.984Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.985Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.287Z", "id": "relationship--b1e540cf-8e30-4684-8472-4a1ac556d4ca", - "modified": "2021-01-06T18:30:54.985Z", + "modified": "2021-01-13T01:52:44.287Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.985Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--3424d304-fbea-45b5-8cf0-a4aedbd3aec0", - "modified": "2021-01-06T18:30:54.985Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.986Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--b874c1c9-4d77-4fb2-9d8f-ff24adbf233a", - "modified": "2021-01-06T18:30:54.986Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.986Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--684c5613-f79f-4830-8a00-736baf69995c", - "modified": "2021-01-06T18:30:54.986Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--0f987b5b-8175-4d35-8d0f-69f80af19013", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--922d7bce-6a3d-4d67-b909-df8c91f7e85c", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--158fcbd7-426d-49c3-95b5-069d4da94d11", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.988Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--c36910ad-5157-40e0-addf-9af1e7abcf75", - "modified": "2021-01-06T18:30:54.988Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.290Z", "id": "relationship--fc850a3a-ef59-4c9e-967e-10d1416ad1ec", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--b3eaff2b-21f2-4b20-8c4b-e34531b8b1c4", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--79cf0982-ee38-4921-9900-5b293da4ede3", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.990Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--5520a3c9-8627-483d-a8ff-6e18e78fd5c5", - "modified": "2021-01-06T18:30:54.990Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.992Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.292Z", "id": "relationship--73ed7360-cc2b-4a96-bc35-3b0b77c9993c", - "modified": "2021-01-06T18:30:54.992Z", + "modified": "2021-01-13T01:52:44.292Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.993Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:52:44.293Z", "id": "relationship--7ac15110-827a-4c79-a7a4-aafdba4d65d3", - "modified": "2021-01-06T18:30:54.993Z", + "modified": "2021-01-13T01:52:44.293Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.994Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.294Z", "id": "relationship--f1119991-bb3c-454b-b2ed-d7837bb09946", - "modified": "2021-01-06T18:30:54.994Z", + "modified": "2021-01-13T01:52:44.294Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.995Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.295Z", "id": "relationship--ff04a238-a5db-4ebe-b032-b4084b23b39a", - "modified": "2021-01-06T18:30:54.995Z", + "modified": "2021-01-13T01:52:44.295Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.996Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.296Z", "id": "relationship--8fe9d2b1-731f-4ec0-a940-44eac6117ba7", - "modified": "2021-01-06T18:30:54.996Z", + "modified": "2021-01-13T01:52:44.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.996Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.296Z", "id": "relationship--d692461d-6c5d-41cb-86cf-cce8d43559be", - "modified": "2021-01-06T18:30:54.996Z", + "modified": "2021-01-13T01:52:44.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.997Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.297Z", "id": "relationship--b35597aa-550a-4864-892a-80d37c8e51e0", - "modified": "2021-01-06T18:30:54.997Z", + "modified": "2021-01-13T01:52:44.297Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.997Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.297Z", "id": "relationship--6652b1e9-3da8-42e3-8339-64e70728c222", - "modified": "2021-01-06T18:30:54.997Z", + "modified": "2021-01-13T01:52:44.297Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.999Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.299Z", "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:54.999Z", + "modified": "2021-01-13T01:52:44.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.999Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.299Z", "id": "relationship--a25b4651-3571-4c95-a1b5-eb0af88e6f59", - "modified": "2021-01-06T18:30:54.999Z", + "modified": "2021-01-13T01:52:44.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.000Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.300Z", "id": "relationship--7bdf9c0e-d6ee-4cf9-bdfc-97d0b6afa978", - "modified": "2021-01-06T18:30:55.000Z", + "modified": "2021-01-13T01:52:44.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.001Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.300Z", "id": "relationship--a2b9cbaa-b711-4375-b512-7bc13a871432", - "modified": "2021-01-06T18:30:55.001Z", + "modified": "2021-01-13T01:52:44.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.002Z", - "description": "Continuous Monitoring, Penetration Testing", - "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:55.002Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.002Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.301Z", "id": "relationship--4de1933d-0056-48f1-86d6-286fde478652", - "modified": "2021-01-06T18:30:55.002Z", + "modified": "2021-01-13T01:52:44.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.003Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.302Z", "id": "relationship--0a1c1f63-ead8-43b6-9709-557a74e8170f", - "modified": "2021-01-06T18:30:55.003Z", + "modified": "2021-01-13T01:52:44.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.003Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.302Z", "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.003Z", + "modified": "2021-01-13T01:52:44.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.004Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.303Z", "id": "relationship--cc7b46d4-747e-4b2c-a1c5-f07e9668424b", - "modified": "2021-01-06T18:30:55.004Z", + "modified": "2021-01-13T01:52:44.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.005Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.303Z", "id": "relationship--adc6aa57-6dba-42b5-a5f5-1e68068e620f", - "modified": "2021-01-06T18:30:55.005Z", + "modified": "2021-01-13T01:52:44.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.006Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.304Z", "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:55.006Z", + "modified": "2021-01-13T01:52:44.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.007Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.305Z", "id": "relationship--c3793146-b071-4c6e-a0ca-afa9f2e25502", - "modified": "2021-01-06T18:30:55.007Z", + "modified": "2021-01-13T01:52:44.305Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.008Z", - "description": "Vulnerability Scanning, Threat Hunting", - "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:55.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.009Z", - "description": "Vulnerability Scanning, Threat Hunting", - "id": "relationship--f476af09-ed64-4b8d-8478-658d7b826bed", - "modified": "2021-01-06T18:30:55.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.010Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.308Z", "id": "relationship--ad8b6fc9-d63d-42b1-a64b-0ff61997d6b0", - "modified": "2021-01-06T18:30:55.010Z", + "modified": "2021-01-13T01:52:44.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.011Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.308Z", "id": "relationship--10b40f06-b899-4177-b655-b8d4fa7af5af", - "modified": "2021-01-06T18:30:55.011Z", + "modified": "2021-01-13T01:52:44.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.011Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.309Z", "id": "relationship--7642e31b-42bc-48ce-8fb3-498a338f5030", - "modified": "2021-01-06T18:30:55.011Z", + "modified": "2021-01-13T01:52:44.309Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.012Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.309Z", "id": "relationship--6b535300-446a-4af7-b27f-89d7c485cbda", - "modified": "2021-01-06T18:30:55.012Z", + "modified": "2021-01-13T01:52:44.309Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.013Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.310Z", "id": "relationship--43ab80fc-81e6-4947-a479-7c4f761aafd2", - "modified": "2021-01-06T18:30:55.013Z", + "modified": "2021-01-13T01:52:44.310Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.013Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.311Z", "id": "relationship--3b309cf6-2043-4df0-b249-23ff1d54dbf0", - "modified": "2021-01-06T18:30:55.013Z", + "modified": "2021-01-13T01:52:44.311Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.015Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.312Z", "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:55.015Z", + "modified": "2021-01-13T01:52:44.312Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.015Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.312Z", "id": "relationship--cb818310-bac5-4afc-b5db-954828f480ae", - "modified": "2021-01-06T18:30:55.015Z", + "modified": "2021-01-13T01:52:44.312Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.017Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.313Z", "id": "relationship--29e1cc95-a981-4cbf-a817-5aad433f7c25", - "modified": "2021-01-06T18:30:55.017Z", + "modified": "2021-01-13T01:52:44.313Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.017Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.313Z", "id": "relationship--4dbb9921-ba08-4df2-8d0d-f60ec70284ad", - "modified": "2021-01-06T18:30:55.017Z", + "modified": "2021-01-13T01:52:44.313Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.020Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:52:44.315Z", "id": "relationship--bf476995-126e-405f-86af-6f0197e20e27", - "modified": "2021-01-06T18:30:55.020Z", + "modified": "2021-01-13T01:52:44.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.021Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.316Z", "id": "relationship--3c7eb290-48cf-4be7-91ee-ce18bac74f2d", - "modified": "2021-01-06T18:30:55.021Z", + "modified": "2021-01-13T01:52:44.316Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.022Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.316Z", "id": "relationship--c7604f20-16f7-462f-8ea1-f4687e8343c0", - "modified": "2021-01-06T18:30:55.022Z", + "modified": "2021-01-13T01:52:44.316Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.023Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.317Z", "id": "relationship--c26fee28-c2cb-4926-a887-56256fc42ec5", - "modified": "2021-01-06T18:30:55.023Z", + "modified": "2021-01-13T01:52:44.317Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.023Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.317Z", "id": "relationship--e7e2b204-d0b1-4e29-828e-6ef8599a58d0", - "modified": "2021-01-06T18:30:55.023Z", + "modified": "2021-01-13T01:52:44.317Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.025Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.318Z", "id": "relationship--6f1ef72c-386d-4fd3-8b63-f22196b6d6b9", - "modified": "2021-01-06T18:30:55.025Z", + "modified": "2021-01-13T01:52:44.318Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.025Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.318Z", "id": "relationship--120e595b-0508-455c-a5a2-977cab87a5b9", - "modified": "2021-01-06T18:30:55.025Z", + "modified": "2021-01-13T01:52:44.318Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.027Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.319Z", "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:55.027Z", + "modified": "2021-01-13T01:52:44.319Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.028Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.319Z", "id": "relationship--659ef6b8-c7eb-4746-9dbe-fed131335d03", - "modified": "2021-01-06T18:30:55.028Z", + "modified": "2021-01-13T01:52:44.319Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.029Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.320Z", "id": "relationship--a8bb18bd-e21a-47ea-93ef-f6e6a9c5a196", - "modified": "2021-01-06T18:30:55.029Z", + "modified": "2021-01-13T01:52:44.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.030Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.320Z", "id": "relationship--60ea3538-0289-4703-a5c0-a5c1f53ab00b", - "modified": "2021-01-06T18:30:55.030Z", + "modified": "2021-01-13T01:52:44.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.031Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:52:44.322Z", "id": "relationship--d58ce704-24f1-4f28-8b9a-a6e48e4e60e3", - "modified": "2021-01-06T18:30:55.031Z", + "modified": "2021-01-13T01:52:44.322Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.033Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:52:44.323Z", "id": "relationship--e7b7c14b-f771-4409-b01f-a4ff97f5b0ee", - "modified": "2021-01-06T18:30:55.033Z", + "modified": "2021-01-13T01:52:44.323Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--ca9d3402-ada3-484d-876a-d717bd6e05f2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.035Z", - "description": "Transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.324Z", "id": "relationship--612e41e8-03bd-48fa-abb8-45fee4c4ff9c", - "modified": "2021-01-06T18:30:55.035Z", + "modified": "2021-01-13T01:52:44.324Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.035Z", - "description": "Transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.324Z", "id": "relationship--8ad867db-7b9a-4652-ac4e-5b3668d9bee5", - "modified": "2021-01-06T18:30:55.035Z", + "modified": "2021-01-13T01:52:44.324Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--700fe7f0-cc4d-4c19-8741-0f18cbf73b6d", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--f13b8659-a64a-40be-a276-f5a4fa320040", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--ee368629-1044-4cd2-baf5-ca835f5c0c91", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.039Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:55.039Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.039Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--20be92ca-88c6-419b-9727-b4c85303a2b9", - "modified": "2021-01-06T18:30:55.039Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--50c4ed6a-0278-406b-8a27-f4f45fc8506d", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--72deedcb-dd22-4539-bbb8-97dc788a1d19", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--e359ef99-5e72-49c4-b998-d1c38f74fc22", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--96f70fc0-f020-4dd4-8082-00cb31bb3639", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--d5b7e8cf-1ead-4215-ac35-229e8eb6144f", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--93e070a7-814b-4774-80d0-0c1f64cb9667", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--49c42282-0861-43ae-9a36-5929ba451847", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--47a0cf56-0685-419f-ada2-976eacbbbccb", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.332Z", "id": "relationship--979bcbe0-0c94-4ac8-a0ec-8342ee743541", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.332Z", "id": "relationship--0e155fdb-dab1-4d9e-94e5-48183342ca00", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--8e84a5d9-9de8-4299-9fd6-450782544eeb", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--8a7c9856-4268-452f-8dfb-371cee9058d7", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--01cdc438-eca4-425d-a2d6-ad52436a43b2", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--236aa49d-3ce6-40cd-a7d5-89e6f152a362", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.334Z", "id": "relationship--195dcbed-4af3-4d95-a5ed-3651a93210ee", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.334Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.334Z", "id": "relationship--43d035ce-4f10-43ea-8f74-88b10116d1d4", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.334Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.045Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--d3413c43-1731-4a3c-b99c-66986458d8a4", - "modified": "2021-01-06T18:30:55.045Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--56ab044c-f773-42a3-9b5b-e851df5d7e4f", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--6e7d1cc8-b132-4c35-82dc-69c77c364568", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--dd9e068b-fb86-47b8-b326-4dbc7734dcf3", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.047Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--e884d6da-e879-498f-8e32-5f82193f0e19", - "modified": "2021-01-06T18:30:55.047Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.047Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--2647354e-e781-4b53-a4d4-557247d1cd63", - "modified": "2021-01-06T18:30:55.047Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.048Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--06522e57-0704-4d57-851e-43f52843a0aa", - "modified": "2021-01-06T18:30:55.048Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.048Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--dbcc8a0d-599d-4eb9-935f-a3e7ee08e4dc", - "modified": "2021-01-06T18:30:55.048Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--c1a80479-f9f4-4cee-8ffb-28f9ea5e439b", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--5b892111-c49a-49bc-8597-6fe4b31920e7", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--afaab810-c13c-4aec-8328-cbaa87837219", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.050Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--441f38b0-e66e-408c-aa34-79d8fae7ae67", - "modified": "2021-01-06T18:30:55.050Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.051Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.340Z", "id": "relationship--30346d2e-798d-4cb4-9d31-e4e16d62f0be", - "modified": "2021-01-06T18:30:55.051Z", + "modified": "2021-01-13T01:52:44.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.052Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.340Z", "id": "relationship--cf7c1688-7646-4559-b0c5-ba0d8281e6c1", - "modified": "2021-01-06T18:30:55.052Z", + "modified": "2021-01-13T01:52:44.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.053Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.341Z", "id": "relationship--203a087b-7a81-4e3a-a279-d499c5fbd20d", - "modified": "2021-01-06T18:30:55.053Z", + "modified": "2021-01-13T01:52:44.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.054Z", - "description": "Information Flow Enforcement", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:55.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.054Z", - "description": "Information Flow Enforcement", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:55.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.057Z", - "description": "Malicious Code Protection", - "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:55.057Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.057Z", - "description": "Malicious Code Protection", - "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:55.057Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.058Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--36681363-4476-4a2c-8442-2efb3e9593e3", - "modified": "2021-01-06T18:30:55.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--0896a18c-2df1-4b1b-81fb-d21d5dc16acb", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c16da334-18e6-4282-a9f3-7b523ca1640f", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c372e451-7655-41f2-a9d6-d847a5f2bd72", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.060Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.348Z", "id": "relationship--ae969af9-d1cc-4657-9e48-020c391e86fe", - "modified": "2021-01-06T18:30:55.060Z", + "modified": "2021-01-13T01:52:44.348Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.061Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:55.061Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.061Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:55.061Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--574aaea7-088d-4615-be3d-051795465d34", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:55.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:55.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", + "created": "2021-01-13T01:52:44.352Z", "id": "relationship--6895b337-72cf-498c-893f-1d3371d8e01f", - "modified": "2021-01-06T18:30:55.063Z", + "modified": "2021-01-13T01:52:44.352Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.064Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.353Z", "id": "relationship--befc3c7f-84e2-4845-93ae-2ffdbaedf133", - "modified": "2021-01-06T18:30:55.064Z", + "modified": "2021-01-13T01:52:44.353Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.064Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.354Z", "id": "relationship--c4357546-407d-4b48-886f-a28d309dcdce", - "modified": "2021-01-06T18:30:55.064Z", + "modified": "2021-01-13T01:52:44.354Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.065Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--662f0fae-5c5b-4c1c-84e9-4b523741045a", - "modified": "2021-01-06T18:30:55.065Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--1582b155-e4c5-40c4-84d9-7c8ce977afc0", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--583cdb9e-e961-4374-b860-e26702f5a506", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--a4abf736-6d0e-4df2-b61b-1f81d80871b7", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.067Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:55.067Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--9f8eb690-94d2-4494-bcb7-87af99035dfa", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--8fe35e6a-f81e-4861-a5a5-0d483b728f85", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--feeaf489-71af-43df-8ca5-5827908fab77", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--42c9e7db-8505-48b8-9338-dc1370ff97af", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--0af5acc3-cfcb-4764-bb9e-a7d2508aa1dc", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--f0afce7e-48d1-4db5-b29b-b26133e2f65d", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--00361e78-882b-4439-876e-9ff380aa793d", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--9532d456-8e9d-465e-807a-28220cf25173", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--e244d524-88a0-4e33-b22d-96ad24db1f9a", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--36a4927f-ac3c-4a45-a5b4-423606fc6823", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.073Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--3e556474-eb4a-467a-ba8f-6fc795d7b738", - "modified": "2021-01-06T18:30:55.073Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--e8d8df01-60e5-4425-aa1a-20bff7ecb405", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--43fecfb6-21a0-4826-ae02-7ef7c4910295", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--f7fac494-dbb9-48cc-90f8-786e277dd463", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.362Z", "id": "relationship--ba48926b-5bf1-44f6-9543-f9ad0c884359", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.362Z", "id": "relationship--ffce886c-3cbf-4bed-979f-3a6606a0926f", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.075Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.363Z", "id": "relationship--a0350100-3212-40d2-a194-83550d5cf6b1", - "modified": "2021-01-06T18:30:55.075Z", + "modified": "2021-01-13T01:52:44.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.076Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.363Z", "id": "relationship--2251136a-cb32-4dce-ac99-36db0198b18b", - "modified": "2021-01-06T18:30:55.076Z", + "modified": "2021-01-13T01:52:44.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--7c9fa533-6e75-4b44-95bc-c6a44a725fd2", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--39877479-ee07-4f74-b322-7421c74c36cd", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--275ab5fe-67b6-43c5-bfea-0860f32934d3", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--932e1baa-aa00-4a19-9e93-2d1fb6ebb34b", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--77e39e51-b112-4525-b2c3-689585059c26", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.365Z", "id": "relationship--cc1f915a-9a8c-4c49-b5b0-cfe910f5f68a", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.078Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:55.078Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.078Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:55.078Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--8f81c837-feda-4c51-be0b-6b5c02eab2ca", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--213a392b-3809-4d28-8ff0-8cdaf641e408", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--15e1b556-e190-4305-8bee-1dd674303a1f", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--516d6d8a-04ba-4464-832a-35f2147a6d4b", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.367Z", "id": "relationship--2e90ce89-e206-45e1-8d8d-aeef09dbb730", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.367Z", "id": "relationship--1df42dbe-575e-40d9-9b3d-a3b4d506b833", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.368Z", "id": "relationship--10849a88-8bed-4da1-80e6-437af5e2f7e3", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--81c7a503-4e83-44f2-a661-a823b3ac3900", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--dad621f2-3d27-465e-9e4b-e4f2979d5cf9", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--d69a6f60-aeef-4045-87a7-c45357a05e2d", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--7663bac6-98dd-44e7-a32a-9b2ea76f2b75", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--dc427dad-1e7c-4be7-8c3e-de6cd6d1c256", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--c53c7202-6b05-4c42-94ba-0a4489fa5b84", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.082Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--32ce3845-ba4b-4979-a34f-33ad764eabb5", - "modified": "2021-01-06T18:30:55.082Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--d4cf2dea-5055-49f0-b383-da186e37e4cd", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--f66b561e-85a7-4216-b8cd-5479c302ff74", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--607ad419-dd8b-414e-9c7d-d0a5feac499d", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--dc82c825-4d88-4d3e-82af-d78d65b6d64d", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--a6462bea-a7aa-408e-84b6-2c18a37ca57f", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--97c78c2b-56c9-470d-8414-184c41be5439", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.084Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--5515a4b0-4756-47fe-8d46-c4d968c6c956", - "modified": "2021-01-06T18:30:55.084Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.084Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--58acffc7-7b4d-4f7d-84c0-fdd212cb6980", - "modified": "2021-01-06T18:30:55.084Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.085Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.372Z", "id": "relationship--898c2439-0d20-46ca-8ee8-6536cf8ebf4b", - "modified": "2021-01-06T18:30:55.085Z", + "modified": "2021-01-13T01:52:44.372Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--0cc607ad-9cfa-42ac-aa77-0d9fbab9d10a", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--4fc9485e-e320-49ae-8e19-5625436b6b51", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--fd9f02a1-90b9-4eda-aab0-22f73eaeed21", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--45c8c626-e082-4d8b-947d-54ac41dd0ef2", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--5bda8ed3-729e-4d5e-b9b0-fb0b53deded9", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--4d4114e9-391f-4f7f-be0f-83903599b02f", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--ca0a316e-09c8-43f8-9a39-17961c9f6c13", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--935a71f6-41a2-4dca-847d-4411be91301e", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--7601c4c4-8e1b-47a1-868a-57c552f340ec", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--e5f53d5f-21c3-49ab-80bf-755a7af7ccd4", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--c86d8c74-615b-4e3a-a973-83b363e07e60", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--5f4f0c13-32b5-42ba-9d80-1fa330859776", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--7720395e-d4bd-4052-9e1d-7cfc7cf13d3f", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--853dd129-1430-4fbf-aa02-e3d46a0e0450", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--30678c37-e30a-4130-b7ee-1d3802c8ac11", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--ee77dfa1-5053-4ae0-acb8-0859bdf335bc", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--3d8a3654-2dad-4cfb-b170-6d384fdd6133", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--9cd70b0b-331d-4f1d-917d-a9c9e5370478", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.089Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.376Z", "id": "relationship--d59d7404-175a-412d-800f-7c64def1ecd1", - "modified": "2021-01-06T18:30:55.089Z", + "modified": "2021-01-13T01:52:44.376Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--e720212e-c29a-4bc2-9a42-2cdd8538070e", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--424c457c-e786-46de-8bb8-34e47fd3afe2", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--c5dde3e5-25ff-4949-8e73-28890e43b302", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--711c1fe3-d6dc-4d1a-9cc5-9faff17b44be", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--90a0fbcc-32e3-4cbb-9db6-c51a875e5043", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.091Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--1f844ef8-2811-4388-9aa5-8543216b3fc6", - "modified": "2021-01-06T18:30:55.091Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--f3c6a449-5445-48da-9fc6-a2618908885b", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--52593e1c-aec1-4546-8be2-5ccc4f8ce35a", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--67b53abe-2187-4fe6-a53d-9aab32d4a843", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--92c14ba0-0322-455a-818a-cb1779c7b4a4", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--8308bbeb-b568-4f73-9a57-eb8c93f604ac", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--cf9c5e19-bd25-4f69-8c85-05f60d2a07e6", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--a4e46121-a57c-45f3-88cf-b0a95a008047", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--73622ab7-1557-4e0b-9bb6-e1f487b9704b", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.093Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--1a8a850f-cbd6-4b64-933e-46307ea55a20", - "modified": "2021-01-06T18:30:55.093Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.093Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:55.093Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.094Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:55.094Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.094Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:55.094Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.095Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.382Z", "id": "relationship--02cc53dc-ee23-4bb9-8ae2-34c7d225692c", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.095Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.383Z", "id": "relationship--a4ffadeb-08b3-4252-812f-a4c9d55e4eda", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.095Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.383Z", "id": "relationship--4dd7326b-3e53-4ad0-8946-33f1f6fa19cc", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.096Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.384Z", "id": "relationship--3f797f0b-6add-4208-8c20-9d3ec01c5913", - "modified": "2021-01-06T18:30:55.096Z", + "modified": "2021-01-13T01:52:44.384Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.097Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.385Z", "id": "relationship--b05caa48-ecee-40fb-8b48-5bf0b3af1e3d", - "modified": "2021-01-06T18:30:55.097Z", + "modified": "2021-01-13T01:52:44.385Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.387Z", "id": "relationship--77fc00ac-0163-406a-bbd3-bad73885fb50", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.387Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.388Z", "id": "relationship--ecfdc133-0b10-4851-89ed-7d41ddf70cf7", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.388Z", "id": "relationship--e2fc690e-8c45-4427-9f87-9d0dd5c63162", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.390Z", "id": "relationship--62f8b90f-64c2-45c9-9e7c-1efa67c93665", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.390Z", "id": "relationship--7291410f-701d-43a9-a954-086776b41f53", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--c91071fc-cf70-4523-9d94-37281fd263c1", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--5e4c21c4-d311-4993-9731-025478d6cc5d", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--757b1ead-7f14-46c7-b688-9c7dbea2c09e", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--ffdc64c2-4aa1-4242-a534-cdf72fee0661", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--e34849db-64ed-44b9-8d5f-cb21b9aa1c4c", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--3a744b99-767e-4e7d-9ff3-4e151a75bbe2", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--b45a61a9-f3e5-4988-a7d0-461712f50731", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--f974a0d9-603a-4340-b49c-929d1e9efbbf", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--4b17797f-fce7-4ee6-a7cc-68cacff96ab1", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--2bce1c46-b49f-4629-ac6b-7781ac5dfab6", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--3000a547-6ae9-45aa-aa27-24d3aae54b9a", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--87556c1b-6038-476c-823c-2bdf76f6af42", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--37e502b0-7d28-4917-bb35-c9584923d04c", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--2018b205-fc17-40f6-ad76-dc51f03ee522", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.103Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.396Z", "id": "relationship--9c3946ce-71e3-4340-8978-36c1114585bc", - "modified": "2021-01-06T18:30:55.103Z", + "modified": "2021-01-13T01:52:44.396Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.396Z", "id": "relationship--f17840cf-98b0-4f1e-aac9-888c03fb745f", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.396Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--b4d55f34-1f33-408c-a521-6b3bd6638f0e", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--a6912992-7165-4812-98e4-178c0ba328ec", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--25088766-9277-4bc3-88b4-c85fa5a29f8a", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--dcdb164b-875d-4752-86cf-c5730ae3370d", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.398Z", "id": "relationship--4bd99689-f0fa-4412-8e92-5b81deae4383", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.398Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.398Z", "id": "relationship--9b8784f1-223d-4dde-88b7-26902bccf447", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.398Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.105Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--08dc231b-5361-4494-b411-146a8f4e3417", - "modified": "2021-01-06T18:30:55.105Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.105Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--cc563625-86d3-424d-9fe2-cc743cfba128", - "modified": "2021-01-06T18:30:55.105Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.106Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--b8c7d080-6b98-40cb-a6bf-a7bfe3977795", - "modified": "2021-01-06T18:30:55.106Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.106Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--f75b00b6-e199-43ff-a215-092b02dc7835", - "modified": "2021-01-06T18:30:55.106Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.107Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--5bb5f3f9-efb9-4af6-b1e8-9f0e32bb3b21", - "modified": "2021-01-06T18:30:55.107Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--9651892b-4334-4849-ace0-983cf018d3b5", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--c744b24f-cd32-41d3-af23-2ea27b2c01a9", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--138931c4-97ac-4971-bfae-485188cc6522", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--f78bb02e-ecf3-4144-86f0-fea70ebfd1e8", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--09cee9f4-7e95-43bf-901f-6ce75126a0af", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--809807da-e8a6-4fa0-9d2c-87b55634cd31", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--7db1ffb2-fe29-4cca-921a-b6254b4c8227", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--6f27f0e3-216b-446e-9bb2-3e52ddcd5000", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--babc2467-4763-4a1c-8047-23377550d2cc", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--ea0bf4b5-a220-4c81-8e14-0b1d3d9258b9", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--886b546c-1916-43cc-8e52-6568c2587ef5", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.111Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.403Z", "id": "relationship--c0c6e3ef-c506-4661-9187-6cb07df0d8ed", - "modified": "2021-01-06T18:30:55.111Z", + "modified": "2021-01-13T01:52:44.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.112Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.404Z", "id": "relationship--06b33ad1-70c6-4d63-8ecc-8c1bf1a3cee4", - "modified": "2021-01-06T18:30:55.112Z", + "modified": "2021-01-13T01:52:44.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.114Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:52:44.405Z", "id": "relationship--cbf2adf4-eaa9-42ae-b8cf-f6ea8723d65f", - "modified": "2021-01-06T18:30:55.114Z", + "modified": "2021-01-13T01:52:44.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.114Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:52:44.405Z", "id": "relationship--dd98f251-4dc5-4150-a953-efcafc4e1b28", - "modified": "2021-01-06T18:30:55.114Z", + "modified": "2021-01-13T01:52:44.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.116Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.406Z", "id": "relationship--bf5c70e4-cb20-4538-abcc-24ec5016bc79", - "modified": "2021-01-06T18:30:55.116Z", + "modified": "2021-01-13T01:52:44.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.407Z", "id": "relationship--87453f4a-48d3-4fed-9aad-245115266f96", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.407Z", "id": "relationship--07a9ac50-7a50-49c6-a9d8-7e8e9f77fae6", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.408Z", "id": "relationship--72d425f7-1fd1-4ccc-94af-b749ce6f227d", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.120Z", - "description": "Cryptographic Key Establishment and Management", + "created": "2021-01-13T01:52:44.409Z", "id": "relationship--779d48ca-7507-43ad-ba3f-dfcde1306356", - "modified": "2021-01-06T18:30:55.120Z", + "modified": "2021-01-13T01:52:44.409Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.121Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.410Z", "id": "relationship--e41cfecb-efd6-4a42-ab39-071abce0d4ae", - "modified": "2021-01-06T18:30:55.121Z", + "modified": "2021-01-13T01:52:44.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.123Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.411Z", "id": "relationship--1bf3190d-aec1-476c-85c7-9985a9551c23", - "modified": "2021-01-06T18:30:55.123Z", + "modified": "2021-01-13T01:52:44.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.125Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.412Z", "id": "relationship--0698ba20-393d-44b0-b8a8-41eb04ff4ee8", - "modified": "2021-01-06T18:30:55.125Z", + "modified": "2021-01-13T01:52:44.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.413Z", "id": "relationship--8fe4448d-5ddf-4739-937f-fd826f0a4624", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.413Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.414Z", "id": "relationship--cc313add-0c43-4880-8e3c-8b4c983089a6", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.415Z", "id": "relationship--0320f1c4-971f-40f1-9d1e-187bc81429f7", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.415Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.127Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.415Z", "id": "relationship--018091e7-a8df-4fb9-938f-af79f5d8da8a", - "modified": "2021-01-06T18:30:55.127Z", + "modified": "2021-01-13T01:52:44.415Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--2c0a0a68-9cf2-4ef9-9952-3959f6fa21e8", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--2f3118e2-e0f5-4ae2-b371-2d7b9b421b27", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--e0f07491-ddb5-426e-8d67-dcb1608acafc", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--01ae6504-166b-41b8-b135-93818fe28478", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--0fad9dcc-b81f-4761-b42a-77ee7b474818", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--c2dbe5a6-ce02-405b-95bc-d28e4407a7b6", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--02e55fcf-3caf-4138-b53a-39b3b813094c", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--065e1b7b-b97f-4f7e-bbdb-ee459864ebe7", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--2be0f372-d16e-4f7a-80d4-5542579fc51a", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--beac8dd9-106d-4dcd-a64c-e63e8f94c7c3", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--dd3e53a7-a424-49c9-8732-5148ad8e422d", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--7287aedc-b43a-4315-bc04-219c4ecad0c1", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.419Z", "id": "relationship--a77a662f-7753-4b37-a310-e0a9dfc7386d", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.419Z", "id": "relationship--d887f3ab-2c0b-4578-ab58-1d01c2a2e473", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--32f1a462-9b8d-4775-a49b-165413b01158", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--0e69f25c-1d51-42ca-9f35-619c533e33a8", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--06a2c04f-3c5d-4a9c-b188-48d3ad59bf92", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--0ce5c934-db38-401a-98b1-cb4281010724", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--602f4ff5-2f6f-4db6-9b7a-13902b5fe496", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--1df8f733-db51-4809-81ab-8802c9e8e49b", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.133Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.422Z", "id": "relationship--af552122-570a-4617-b0f0-3f5509d0ece0", - "modified": "2021-01-06T18:30:55.133Z", + "modified": "2021-01-13T01:52:44.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.135Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.424Z", "id": "relationship--e559f9e2-0bd7-458f-9ac6-5227d944d0a3", - "modified": "2021-01-06T18:30:55.135Z", + "modified": "2021-01-13T01:52:44.424Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.136Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.425Z", "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:55.136Z", + "modified": "2021-01-13T01:52:44.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.136Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.425Z", "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:55.136Z", + "modified": "2021-01-13T01:52:44.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.137Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:55.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:55.138Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:52:44.426Z", "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:55.138Z", + "modified": "2021-01-13T01:52:44.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:52:44.426Z", "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:55.138Z", + "modified": "2021-01-13T01:52:44.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.139Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.428Z", "id": "relationship--2791cb53-48ad-4c2e-929a-1319bc17d381", - "modified": "2021-01-06T18:30:55.139Z", + "modified": "2021-01-13T01:52:44.428Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.140Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.430Z", "id": "relationship--0ed497fe-1155-4185-8ba3-d0f7e5ff8a22", - "modified": "2021-01-06T18:30:55.140Z", + "modified": "2021-01-13T01:52:44.430Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.140Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.430Z", "id": "relationship--3a1c3d15-c77c-4aa8-b2e7-27e5078919c1", - "modified": "2021-01-06T18:30:55.140Z", + "modified": "2021-01-13T01:52:44.430Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.142Z", - "description": "Access Enforcement", - "id": "relationship--76210c82-5f4e-41b7-b93c-51c64f29c313", - "modified": "2021-01-06T18:30:55.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.142Z", - "description": "Access Enforcement", - "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:55.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--e8727265-b854-495b-a9ed-a6afd19d1e89", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--aca33b31-d548-4a53-9697-e4ac426a3aa0", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--6f14af0e-2040-4de1-bab7-91b53ebd1c82", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--8cf260a2-9c6f-4e86-820a-ab8f60f3dfee", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--99ff8904-2c8d-4473-9974-3dbfe05c3ae2", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--27d2715a-9ce6-4d55-a048-7c6058412509", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--04db3310-4d5d-4001-8579-18027f01a408", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.437Z", "id": "relationship--aa260139-ed38-4c83-8d21-9e035cfc02e3", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.437Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.145Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.438Z", "id": "relationship--b26569df-c31c-4654-8c1c-378cea85b941", - "modified": "2021-01-06T18:30:55.145Z", + "modified": "2021-01-13T01:52:44.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.145Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.438Z", "id": "relationship--7dd86180-1d53-496a-ae29-fab2e282ff29", - "modified": "2021-01-06T18:30:55.145Z", + "modified": "2021-01-13T01:52:44.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--0c628903-1d0b-4413-a6bc-0f601592058e", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--611c8687-8595-4faf-9fdd-a1c292dc5caf", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--82c9706f-339e-4856-941e-e4901ee1e85d", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--17dfbffa-eded-4149-bdfc-a9d15987cafb", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:55.146Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.147Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:55.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--e180696a-95ed-4fcd-aa04-01fab724c7c8", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--5e63eca5-99a3-4eda-8949-dde20a592888", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--4b4e2d0c-8d89-4d3c-8bf2-d2e3022d19ac", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--0b5fc684-7237-43b1-9378-26d068b40335", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.150Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.443Z", "id": "relationship--a68d18fa-ca56-4a2c-b318-10ecb97c2702", - "modified": "2021-01-06T18:30:55.150Z", + "modified": "2021-01-13T01:52:44.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.150Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.443Z", "id": "relationship--a174705a-82a1-4a51-a271-0a06af61db8b", - "modified": "2021-01-06T18:30:55.150Z", + "modified": "2021-01-13T01:52:44.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.151Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.444Z", "id": "relationship--3dfd8757-64bf-47ae-b566-f379b3ddd6e4", - "modified": "2021-01-06T18:30:55.151Z", + "modified": "2021-01-13T01:52:44.444Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--e1ff7e51-4111-43d2-82d9-7ca37b4e61bf", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--854b5859-8e13-4c76-935a-04d39d18594d", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--efdb25ba-d2bf-4ae1-91f2-b4b0ef3b5fc2", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--b29dba07-c552-4631-9c60-7bc4cfa22a55", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--50726a53-a93b-4b1c-921f-0244f2522278", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.153Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--9822a27a-442a-48fb-88db-c64623d2ff1a", - "modified": "2021-01-06T18:30:55.153Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--5ae5466f-ba70-49d2-869a-60b9e1c7fd37", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--cf14b805-a167-418a-bdc3-c952fb411e12", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--e5435fb5-6e55-45d1-b9a3-9d732cdeba6f", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.156Z", - "description": "Access Enforcement", - "id": "relationship--fab02c4b-680d-4865-90f1-68e7ae975578", - "modified": "2021-01-06T18:30:55.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.156Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.448Z", "id": "relationship--53fc53ca-cf66-456f-9156-b1d065f5a3cd", - "modified": "2021-01-06T18:30:55.156Z", + "modified": "2021-01-13T01:52:44.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.157Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7666cef8-6443-41a5-8f0c-bda91876f671", - "modified": "2021-01-06T18:30:55.157Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--4c4c196c-c184-4268-b083-981eccfd0ea9", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--660c7e9b-88a0-46dd-84ce-f7bd7ca82003", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--9a01ae0d-e033-43c7-92c4-3f6057715ac4", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.159Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.450Z", "id": "relationship--96d02e31-4af8-4aca-8dd9-95bfff90da2e", - "modified": "2021-01-06T18:30:55.159Z", + "modified": "2021-01-13T01:52:44.450Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.159Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.450Z", "id": "relationship--275740f0-6809-4ddc-b3e3-374d86486540", - "modified": "2021-01-06T18:30:55.159Z", + "modified": "2021-01-13T01:52:44.450Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f2a8cdbc-7a12-4057-bdf1-97f44358e5f9", - "modified": "2021-01-06T18:30:55.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.451Z", "id": "relationship--1944b61f-33f0-4458-8d14-448ca79a85bd", - "modified": "2021-01-06T18:30:55.160Z", + "modified": "2021-01-13T01:52:44.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6e6cc63c-6242-4562-9587-0d5166ce4374", - "modified": "2021-01-06T18:30:55.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.451Z", "id": "relationship--2dca39e5-a7a0-438a-8ec7-f3e8411a9523", - "modified": "2021-01-06T18:30:55.160Z", + "modified": "2021-01-13T01:52:44.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.161Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.452Z", "id": "relationship--ec881934-bb8d-4d2f-b702-7b6fd5c86a09", - "modified": "2021-01-06T18:30:55.161Z", + "modified": "2021-01-13T01:52:44.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.162Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.452Z", "id": "relationship--3288c3fc-f460-44f5-9dc4-9364375a2e2b", - "modified": "2021-01-06T18:30:55.162Z", + "modified": "2021-01-13T01:52:44.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.162Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.453Z", "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:55.162Z", + "modified": "2021-01-13T01:52:44.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.453Z", "id": "relationship--c002722c-5938-4ebb-b95d-233ad0ff52b4", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.454Z", "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.454Z", "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--2adf7f8f-eeef-4049-a7d4-e0a41702633b", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--35f89b64-9acb-46bb-a6dc-25bd288fb198", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--1691dc9a-e74f-4389-9ba9-fd52a9b66c0b", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--c78b1e76-3c3a-4bfa-a765-5e8e131260ae", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--0335c34f-800d-4174-bd5a-ca24e2ce3d8d", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.456Z", "id": "relationship--ec801380-23cf-43e3-a4e4-dbdfd029a126", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.166Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.456Z", "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:55.166Z", + "modified": "2021-01-13T01:52:44.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.166Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.457Z", "id": "relationship--8453db9c-6181-4946-9b7a-70d835bc1e60", - "modified": "2021-01-06T18:30:55.166Z", + "modified": "2021-01-13T01:52:44.457Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.167Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.458Z", "id": "relationship--e4955da0-473e-46e8-8629-d7951f1479e5", - "modified": "2021-01-06T18:30:55.167Z", + "modified": "2021-01-13T01:52:44.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.168Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.458Z", "id": "relationship--02fe0334-5917-4d33-9fc3-61d521fd3839", - "modified": "2021-01-06T18:30:55.168Z", + "modified": "2021-01-13T01:52:44.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.169Z", - "description": "Continuous Monitoring", - "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:55.169Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.169Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.459Z", "id": "relationship--b4b63a06-a527-4404-ad97-3136e5f99dba", - "modified": "2021-01-06T18:30:55.169Z", + "modified": "2021-01-13T01:52:44.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.170Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.460Z", "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:55.170Z", + "modified": "2021-01-13T01:52:44.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.170Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.460Z", "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:55.170Z", + "modified": "2021-01-13T01:52:44.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.171Z", - "description": "Account Managment", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:55.171Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.172Z", - "description": "Account Managment", + "created": "2021-01-13T01:52:44.461Z", "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:55.172Z", + "modified": "2021-01-13T01:52:44.461Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.172Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:55.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.462Z", "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.463Z", "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.463Z", "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--83852c8b-e079-4834-8314-8bdc5b4ebc15", - "modified": "2021-01-06T18:30:55.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.464Z", "id": "relationship--cd371467-4fae-4801-9def-e21e3c20403e", - "modified": "2021-01-06T18:30:55.174Z", + "modified": "2021-01-13T01:52:44.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--61eb5772-2be6-4e74-a2a3-1a6ba17e2e08", - "modified": "2021-01-06T18:30:55.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.464Z", "id": "relationship--fcfcb851-f57e-4b03-9025-cc37393f55c0", - "modified": "2021-01-06T18:30:55.174Z", + "modified": "2021-01-13T01:52:44.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7729812e-6e2c-4532-9359-ea8b0f3543b9", - "modified": "2021-01-06T18:30:55.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--99fb808a-293b-40ba-94c5-f167b42ebc25", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--2500b7a6-bdfd-4d30-bbb4-1607df46edab", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--f5aba3e4-a98e-4423-a28c-55cd13054a97", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:55.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--b5616433-ca79-4ae8-bd41-9d8c44be649c", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.177Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.467Z", "id": "relationship--810a04e7-cab2-418f-a0d4-37bfb167497e", - "modified": "2021-01-06T18:30:55.177Z", + "modified": "2021-01-13T01:52:44.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.178Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.467Z", "id": "relationship--b2c10bb7-dd86-4cc4-87c9-284d7a3207f4", - "modified": "2021-01-06T18:30:55.178Z", + "modified": "2021-01-13T01:52:44.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.179Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.468Z", "id": "relationship--d02bf12d-d2e1-42fc-8b7c-f5c9d7880773", - "modified": "2021-01-06T18:30:55.179Z", + "modified": "2021-01-13T01:52:44.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.179Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.469Z", "id": "relationship--7c7ab027-f054-4302-bee3-6d286c6c2c99", - "modified": "2021-01-06T18:30:55.179Z", + "modified": "2021-01-13T01:52:44.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.180Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.469Z", "id": "relationship--03fc936f-42f7-4c08-9c8e-48dc5306cdf5", - "modified": "2021-01-06T18:30:55.180Z", + "modified": "2021-01-13T01:52:44.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.180Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.470Z", "id": "relationship--33e127c8-b4fa-42b4-b441-91497647d20e", - "modified": "2021-01-06T18:30:55.180Z", + "modified": "2021-01-13T01:52:44.470Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.181Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--4d3c0c73-fdc6-4cbd-ad6b-e9499944c62a", - "modified": "2021-01-06T18:30:55.181Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--4e703ca0-2a08-4c6a-a6e0-22a23b4a195a", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--f0a3ea37-ea8f-419e-ae84-cc6b9b56b6e9", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--1c1ff14f-906b-4391-a607-88ca9b78b2e2", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--8423d534-2a68-4802-afa5-02c5103bd9ae", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--f8883872-fc06-40ec-b82c-0c4cd6fc6baa", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--9e659494-78e6-4ccf-be5c-b3f43e3bbbf6", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--51deb3b9-f7e7-402c-a6b1-7e84efb8e994", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--dc58d0fa-d892-4fae-8ebb-1a4292ead3a2", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.472Z", "id": "relationship--f995e3f1-d761-4731-8793-83ed51bb4240", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.472Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ebf1daa5-744c-4d7c-9e2b-d68a52cd085f", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--819292a1-5a6b-4e6f-8718-e5195720e5de", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--25aa606f-a020-43b6-8de5-2c7341b51f4f", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--46d543f1-6ee7-4e32-b259-d597fe441949", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--efdd24de-7bbb-43d6-bd21-024a67ebe5ec", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2b792009-4473-47e0-b338-0d8d2635228e", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d0f29dc1-7975-4229-a38a-a65bfbc4e91b", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bfead51b-aa3b-43c8-b646-f412eddd142c", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9ccb2ee8-eb20-4b66-8b1e-8d0d4e627753", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a189354a-a19e-4196-ab16-00fd008ef921", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ae882bdc-808e-484f-aaa8-cf91e76152a5", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--213bd900-1808-421c-88f3-a2d50145b51d", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5dfdb723-54a5-415a-9845-1e583c7abce6", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3bb043f9-b4f6-407e-84a0-0f6d5d435f54", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.188Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:55.188Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.188Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--387cd12d-78ed-4f79-9cbb-6dc9e2142395", - "modified": "2021-01-06T18:30:55.188Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.475Z", "id": "relationship--09254ccf-87ba-4bc9-ba13-a869f3910589", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.475Z", "id": "relationship--648db36e-1f3d-4093-9159-d8e18a2ab06f", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--363b700e-ffb4-49d5-b753-e60a293bd5f1", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--139bf74d-3159-42b4-b8d5-185bbdd619db", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--db37fa4c-a3e4-4835-ad77-283bb1c5ce84", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.190Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--057967ad-0f67-45ea-b0ba-43a70fca2df4", - "modified": "2021-01-06T18:30:55.190Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--a1903398-679b-4e01-9d0b-8908690fc692", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--3eebf9a8-9db9-448a-8484-07f92f83b130", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--31223575-2eb6-47bb-a0b3-e17a1d03716c", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--e46c9e44-81d7-4c6a-8003-fffb39fd6e8e", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--3b97d6bf-3eb6-4700-9557-f42c3d573c78", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--8470a73d-e5fb-4e82-9fc8-2292321c6805", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--18999cf5-200f-4deb-ba87-49c8f22cd4df", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--75d0d317-dbbe-46f6-9dc4-24a297599ab9", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--c83759f5-c665-49b4-b740-da956a28d905", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--8831a675-8349-49ad-ab54-f45af8624684", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--deeaaadb-08af-470d-b9a9-c6e017c8d576", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--1886bb6a-f966-468e-83f6-90bdb2d4da1c", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--2dcaae0c-f1df-4211-8de3-4b4a05533387", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--d0201fdd-96cb-40a1-8660-f0d1938de285", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--34c87547-289a-45af-82cf-a2f0ef72b4e6", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.194Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--4f12d12c-c414-40f5-8279-6275ee38e213", - "modified": "2021-01-06T18:30:55.194Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.195Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--9332b25d-8538-454d-b001-e034f9976943", - "modified": "2021-01-06T18:30:55.195Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.195Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--3daf04d3-c35c-457a-a9b5-69a5d62b9c70", - "modified": "2021-01-06T18:30:55.195Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.196Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.481Z", "id": "relationship--8cec1785-83ab-4b68-a71d-d56c5fed3c41", - "modified": "2021-01-06T18:30:55.196Z", + "modified": "2021-01-13T01:52:44.481Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.197Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.482Z", "id": "relationship--f6b4063d-cf73-4527-9d2d-a20824e9a049", - "modified": "2021-01-06T18:30:55.197Z", + "modified": "2021-01-13T01:52:44.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.198Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.483Z", "id": "relationship--2026f4a3-401c-4017-89ae-4a2ee866ff2a", - "modified": "2021-01-06T18:30:55.198Z", + "modified": "2021-01-13T01:52:44.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.200Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.484Z", "id": "relationship--c6210619-447e-45e5-ba9a-fad67fa8a6e9", - "modified": "2021-01-06T18:30:55.200Z", + "modified": "2021-01-13T01:52:44.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.200Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.484Z", "id": "relationship--997e3aaa-ecbf-488e-a7c0-12cb8e2a5555", - "modified": "2021-01-06T18:30:55.200Z", + "modified": "2021-01-13T01:52:44.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.201Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.485Z", "id": "relationship--d5a4fd02-9855-4e23-ba17-400314ae3b6e", - "modified": "2021-01-06T18:30:55.201Z", + "modified": "2021-01-13T01:52:44.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--4ca0db45-19c1-4206-a5b8-9624e0d03949", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--7919e5b7-68ac-4a66-b6e7-667e24aaf172", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--1500fda6-117e-4146-973d-02176ca222ca", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.487Z", "id": "relationship--d6dfc9a8-cb31-4fd2-bf7c-9c14b8707b94", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.487Z", "id": "relationship--372f0638-803f-4d74-a431-e6b4af85b561", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--928dc754-a444-418d-ab2d-b57872506a9d", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--65f73811-182e-460e-a397-d5678cff8d14", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--58d66621-a5c3-4de3-b916-48296ef9d34e", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--215602c0-756f-40b2-a766-9d01e2a9356e", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--07fe24b4-0444-4521-a96c-0934bbfb0e5a", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--b53741e9-40d0-4df5-9d2f-2d39979332e7", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.205Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--eabdad1c-0999-467d-b229-507c6f9f942b", - "modified": "2021-01-06T18:30:55.205Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.205Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.489Z", "id": "relationship--ca5975f9-e8a4-42ca-beab-80ef3349e325", - "modified": "2021-01-06T18:30:55.205Z", + "modified": "2021-01-13T01:52:44.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.206Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.489Z", "id": "relationship--0e1b1388-3e16-47ca-ac5c-4f9595d7640b", - "modified": "2021-01-06T18:30:55.206Z", + "modified": "2021-01-13T01:52:44.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.206Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.490Z", "id": "relationship--bf156322-7499-4f86-ab7b-d3b2749cc498", - "modified": "2021-01-06T18:30:55.206Z", + "modified": "2021-01-13T01:52:44.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--16b337da-055d-4798-82e1-7a23b395097e", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--eb883a4a-0b13-4000-9500-debe2e32f76c", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--637a12a6-25ce-445b-afd3-07734403aee8", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--47f170f1-7541-4b24-93f2-f4e905bd7208", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--1143536e-94d1-4939-aece-363d4e761027", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.208Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--744e115c-0097-452d-be16-eab3b8f8a541", - "modified": "2021-01-06T18:30:55.208Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--aff69fe2-2611-47a3-96d0-da84d49f5001", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--32944b19-6f01-4774-9063-21eaa1c73ba9", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--c635a10b-6503-452a-a97d-ee74ebb8ce81", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.210Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--5cb3ab46-2d8e-413b-80d4-8783c465f1c2", - "modified": "2021-01-06T18:30:55.210Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.211Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--98ea863b-d699-4481-867c-4e86e1b86025", - "modified": "2021-01-06T18:30:55.211Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.211Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--482c4864-27ea-4d19-b605-c283d9dd0471", - "modified": "2021-01-06T18:30:55.211Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.494Z", "id": "relationship--97e1c6e5-910a-408a-bdc2-4e9d1b2a1443", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.494Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.495Z", "id": "relationship--9e2ffac3-72a9-4fc7-b8d9-453329ba3335", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.495Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.495Z", "id": "relationship--fcfa1d00-709b-4983-9828-0bd3a2e8ce7b", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.495Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.213Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.496Z", "id": "relationship--47f749e1-1aab-4f9e-ba3d-6ad65758a089", - "modified": "2021-01-06T18:30:55.213Z", + "modified": "2021-01-13T01:52:44.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.213Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.496Z", "id": "relationship--ebb64e0f-f090-4ad1-9b6c-aa9c2996e289", - "modified": "2021-01-06T18:30:55.213Z", + "modified": "2021-01-13T01:52:44.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.214Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--afc90615-7f35-49f3-a537-d4a9db1ee81a", - "modified": "2021-01-06T18:30:55.214Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--89e9ae29-66e4-4001-b961-47e363ebd1c7", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--8a8d79de-8aee-46f4-a90e-40d0fce7f92d", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--316e42ee-22b4-4b6f-b6b6-e62dbc5b1cce", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--fe72851a-fc64-4234-a1ac-b196599d9685", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.498Z", "id": "relationship--4e5985a9-02cc-4057-bc6e-d8842d87b331", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.216Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.498Z", "id": "relationship--e664ba6b-f171-4187-ab82-1a95b8446068", - "modified": "2021-01-06T18:30:55.216Z", + "modified": "2021-01-13T01:52:44.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--16436c96-67ec-4be7-a898-48232ce5cfb9", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--49541de1-713a-4694-9466-a6e735e9a82b", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--c1906084-8752-4576-8dba-d44031695bf2", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--664aa16b-a549-454d-8537-1f9aa050e34f", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.218Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--83c7e575-8ca7-486f-bff7-c83e1542018b", - "modified": "2021-01-06T18:30:55.218Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--90902a5e-8493-4c20-8a25-858cfea2e168", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--ec0acde1-7a87-4c88-8527-867177b83946", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--8b6bac93-8799-4689-a0d8-94276c520427", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--f40dcbc1-9ecf-479e-9f63-a474dd016690", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--3775ff58-eff3-4279-b941-a87456428f79", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--2aab9a5c-3f2a-462e-9b87-0ebed329d58d", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--b321f786-80e3-4b31-85b8-5806ca39df24", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--fc6cd7a1-7199-4937-bcf0-b339f3a3b94a", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--82056438-d444-4376-bcdb-f38f25c4e5ef", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--20489337-33ec-4fde-bdb7-76c0164b96ea", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--73090a74-e9aa-4173-a455-71a648cd88b9", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--b38a117c-6de9-4570-a099-c7f42f96eafe", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--b30738b5-0e84-451d-8eae-53fda6b6aa3b", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--34e824fd-541a-4b79-985a-905be6b5a9ce", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--b5beb26f-ebb7-4b8a-a524-77ad1959b80c", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.222Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--ec8f644a-dbca-4bd3-8c23-182b3a67a8a5", - "modified": "2021-01-06T18:30:55.222Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--14710b99-cbc7-4c46-874c-0c05bc96a0b1", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--770a15d2-d9a5-4dc9-ad67-b0e4c810d5ff", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--102989d0-4ad1-4794-a042-174d38595a77", - "modified": "2021-01-06T18:30:55.223Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--c6d0de6f-06b5-43c5-96b9-f3ce493ad421", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--ebf77616-257f-4860-b5dc-03388d08b3ca", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--50700990-2bf8-4102-8ebd-dd90a4ca8dc0", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--ed06eb5a-dd83-43e2-88b7-4349aa44fa7f", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--dcb71cc7-243d-46bf-9310-d0df2783bb5a", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6a8b1e8d-082f-4e74-8a1a-3b52932155bd", - "modified": "2021-01-06T18:30:55.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--39453f96-78b0-4b41-8b70-86879931cde0", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--0a50c9d7-fa7b-46a0-93e9-2b1cd2bd132b", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--170a941e-1263-443b-a030-aa1b6bb6381a", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--139bffb9-f89d-4648-8733-29bed5199c9f", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--a07d01b8-f162-4f21-abb5-a85f1c905079", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--70e5ef7b-9ffe-46f5-a99e-9f45c6d8a847", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--6a81fa14-6840-44a4-88b6-8d993242f6dc", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--9444daf2-324d-4cca-b78f-684d066340fc", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--96285394-4e6d-471a-ab7a-8f021da389cb", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--d1fb4656-1c55-47db-bef9-943feb2390b4", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b92e435e-a939-4f9f-8636-b4b7bf69007f", - "modified": "2021-01-06T18:30:55.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--dff97696-4db4-43fe-960f-18e2795dfc12", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--56f7546a-70e6-40e2-a6f6-96ce3dfe3357", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--2e13870c-58d8-4539-863d-c7943e3a4f87", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--a5b38c65-3152-4b57-b498-7952a0ef3939", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--c4ef1159-8416-4b73-bcd6-80a896cede5f", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:55.226Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--72f7bafc-d74d-4d70-9b52-38ef242fed80", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--bd7a34d8-27bb-4dd9-943c-6056c7606536", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.227Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--8c913107-f1f2-4d0a-9a73-4343f847c84d", - "modified": "2021-01-06T18:30:55.227Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--a4fda13c-2e52-4f9f-b2f8-99be4e8d32cb", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--11314e1e-31a6-4517-8504-e3440a257c7c", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--98612f1d-6cdf-4e23-80a4-2b3b7d5b1a46", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--7216f815-f25f-48c6-a2de-01b46508b0f6", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--d3af2d3a-723b-495a-af64-bd0362394dff", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--9ee4f8da-67fa-441f-ac0a-308a207746c9", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--31753c77-d151-447c-9d6d-819912acb2e6", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--df9a748a-c57d-4f41-a5a4-9acbbddd2d1c", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--6da36d28-f82d-4e30-9ec5-5e71cd56ce6b", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--b825a7d2-02bd-43bf-a2e4-2ca203e27aad", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--d2220990-554d-47fa-90ad-e61954c0f3a4", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--dad396ff-809d-49a3-aaac-562ed0e46fd8", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--5f1951f3-c918-435e-a9a5-8f92bbc87f32", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--012cd8b9-8db3-4049-8b95-11995eeda2a1", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--a4c8e26e-18d5-44c9-9cc6-e9f51337e106", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--8674efa9-79a1-4b41-82d9-ca3689b49919", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--3fc0ca7b-a631-4e16-91ea-1f7097560a96", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--c43f8199-f8a8-4400-9da7-5da7a2d34102", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--90ecf3e1-573c-4021-ae48-300ace66ef4e", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--3d3d3237-2c2e-4e39-8236-b9fa8007e914", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--dbac2ec4-1f53-4bd8-b388-42d434bfacef", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--d723a848-eab1-4121-a129-335adeb781a9", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.232Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--a9ba865a-7e26-453f-9409-9869a1225240", - "modified": "2021-01-06T18:30:55.232Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--4bb52f81-869b-4f08-9f44-5c3fee38eb2a", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--257178a5-ad29-4ce1-a4ca-ed4485c48736", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--306f2c5d-dcc7-4d3d-a50e-9c3e3c4f18d5", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--fd709396-7f95-477a-aeb4-75d2c7664699", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.234Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--28142779-69e8-4663-9640-48433e51d5a5", - "modified": "2021-01-06T18:30:55.234Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.235Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.513Z", "id": "relationship--45977344-88e7-472e-b017-4d864980b2bb", - "modified": "2021-01-06T18:30:55.235Z", + "modified": "2021-01-13T01:52:44.513Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.236Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.513Z", "id": "relationship--f9dc4f5c-fdab-4932-9bfa-44cdfdfe7084", - "modified": "2021-01-06T18:30:55.236Z", + "modified": "2021-01-13T01:52:44.513Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.237Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.514Z", "id": "relationship--f373ce58-95b5-4014-8ea1-fa8a3540ff2c", - "modified": "2021-01-06T18:30:55.237Z", + "modified": "2021-01-13T01:52:44.514Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.237Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.514Z", "id": "relationship--4091b1c5-d4e0-4719-8dbd-b5fa4e978079", - "modified": "2021-01-06T18:30:55.237Z", + "modified": "2021-01-13T01:52:44.514Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.238Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:52:44.515Z", "id": "relationship--6f0426d3-2c1d-43fe-9b3f-a0442769f3d2", - "modified": "2021-01-06T18:30:55.238Z", + "modified": "2021-01-13T01:52:44.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.238Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:52:44.515Z", "id": "relationship--1f7b8772-3e5f-4c43-950e-b923478f1426", - "modified": "2021-01-06T18:30:55.238Z", + "modified": "2021-01-13T01:52:44.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.239Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.516Z", "id": "relationship--c2403f4c-9bdc-423f-bd2f-ad6944e52bd1", - "modified": "2021-01-06T18:30:55.239Z", + "modified": "2021-01-13T01:52:44.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.240Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.516Z", "id": "relationship--8b638a03-6cfe-4809-bd64-0153e490dece", - "modified": "2021-01-06T18:30:55.240Z", + "modified": "2021-01-13T01:52:44.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.241Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:55.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.241Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--db429883-1122-4585-8c9f-fbf9dc121408", - "modified": "2021-01-06T18:30:55.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.242Z", - "id": "relationship--53fc53ca-cf66-456f-9156-b1d065f5a3cd", - "modified": "2021-01-06T18:30:55.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.242Z", + "created": "2021-01-13T01:52:44.519Z", "id": "relationship--63dd5687-537b-4205-99d7-f649627b2f84", - "modified": "2021-01-06T18:30:55.242Z", + "modified": "2021-01-13T01:52:44.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.242Z", + "created": "2021-01-13T01:52:44.519Z", "id": "relationship--bfc433a7-9cae-4520-bc3d-ee679e66f90c", - "modified": "2021-01-06T18:30:55.242Z", + "modified": "2021-01-13T01:52:44.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.243Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.520Z", "id": "relationship--1ae66313-7fe2-46cf-ae2d-6c6936d2e304", - "modified": "2021-01-06T18:30:55.243Z", + "modified": "2021-01-13T01:52:44.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.243Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.520Z", "id": "relationship--2577bf5b-b021-40af-b320-038e4d1b86bc", - "modified": "2021-01-06T18:30:55.243Z", + "modified": "2021-01-13T01:52:44.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.244Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:55.244Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.245Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--9e684054-daf2-4db3-908b-4d90dba47dd2", - "modified": "2021-01-06T18:30:55.245Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.245Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.521Z", "id": "relationship--fd3a71d8-77e0-4b07-9275-56d105369210", - "modified": "2021-01-06T18:30:55.245Z", + "modified": "2021-01-13T01:52:44.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:55.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--51405937-d1dc-46cc-8a57-e3a686e9b348", - "modified": "2021-01-06T18:30:55.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.523Z", "id": "relationship--72a9e2a7-5dd3-47b3-a5c3-b7f1030dc978", - "modified": "2021-01-06T18:30:55.246Z", + "modified": "2021-01-13T01:52:44.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:55.247Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--24ea89a8-b943-4a1e-ab09-df3bd32feeb3", - "modified": "2021-01-06T18:30:55.247Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.524Z", "id": "relationship--a33812b3-ae78-4dd3-a7cc-878e96306260", - "modified": "2021-01-06T18:30:55.247Z", + "modified": "2021-01-13T01:52:44.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.248Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:55.248Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.249Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--1a782800-facc-4dfb-831f-1ae7b97f2e3b", - "modified": "2021-01-06T18:30:55.249Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.249Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.525Z", "id": "relationship--ed6964ed-6ea0-40bf-bafb-589bca06432f", - "modified": "2021-01-06T18:30:55.249Z", + "modified": "2021-01-13T01:52:44.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.251Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:55.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.251Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:55.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.252Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:52:44.527Z", "id": "relationship--6ff166b2-70e5-49e1-9086-9213f8174886", - "modified": "2021-01-06T18:30:55.252Z", + "modified": "2021-01-13T01:52:44.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.252Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:52:44.527Z", "id": "relationship--8d20b7d3-9a1e-4137-80ff-f4bca54e55b5", - "modified": "2021-01-06T18:30:55.252Z", + "modified": "2021-01-13T01:52:44.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.253Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--cdd76d80-bcc9-41a6-8181-140168e903c3", - "modified": "2021-01-06T18:30:55.253Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.253Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--f813062a-4cc6-44bc-ac8d-3ca751877fc7", - "modified": "2021-01-06T18:30:55.253Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.254Z", - "description": "Continuous Monitoring", - "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:55.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.254Z", - "description": "Continuous Monitoring", - "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:55.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.255Z", - "description": "Configuration Setting", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.255Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.255Z", - "description": "Configuration Setting", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.255Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.256Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:55.256Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.256Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:55.256Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.257Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:55.257Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.257Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:55.257Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.258Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:55.258Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.258Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:55.258Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.259Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.259Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.260Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:55.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.260Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:55.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--0fc478f0-da4a-4f23-b1de-5ec54be857eb", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--520c85ee-8070-44af-b1a5-39149dfc8d74", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--bc245a18-8993-4b90-bcd2-e1eb74229948", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--3630090a-4ac5-4f48-9fea-552bb08f51f1", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--38dce282-9fb4-4f14-a9da-07540e68e1fd", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--4fe60c93-fcb4-49a0-850f-736a0950568c", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--91f62c6c-c752-4e2e-bb87-192ee2d1c8c7", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--438a5ca9-11e8-490f-9bab-07105f76ef97", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.263Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.537Z", "id": "relationship--dfd9b070-a530-41ad-bda3-dc512d5a9077", - "modified": "2021-01-06T18:30:55.263Z", + "modified": "2021-01-13T01:52:44.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.264Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.538Z", "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:55.264Z", + "modified": "2021-01-13T01:52:44.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.264Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.538Z", "id": "relationship--bef24453-bffc-4c30-bb65-efb2323c3c75", - "modified": "2021-01-06T18:30:55.264Z", + "modified": "2021-01-13T01:52:44.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--2627f684-311b-4b0c-b667-621d4fce7243", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--85dfd41a-f0fc-4c8b-9113-b8293dc2360e", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--e60bfd51-6cf2-41a3-8b09-d4d96a0be7af", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.266Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--92b9c250-0f97-4a32-a437-78b198958b51", - "modified": "2021-01-06T18:30:55.266Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--9e56f823-965a-4bbb-85ab-f091cfb9a1ee", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--37743937-066a-4297-accf-999bb844c1bc", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.268Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.541Z", "id": "relationship--6c1f92fb-e9e9-4345-b1e8-26d656e30bbe", - "modified": "2021-01-06T18:30:55.268Z", + "modified": "2021-01-13T01:52:44.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.269Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.541Z", "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:55.269Z", + "modified": "2021-01-13T01:52:44.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.270Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.542Z", "id": "relationship--7473bf38-7602-41a1-bb0a-b474d9708493", - "modified": "2021-01-06T18:30:55.270Z", + "modified": "2021-01-13T01:52:44.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.270Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.542Z", "id": "relationship--96da6d5e-b976-43f6-9e29-b0fad262c218", - "modified": "2021-01-06T18:30:55.270Z", + "modified": "2021-01-13T01:52:44.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.271Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.543Z", "id": "relationship--cb5a63cd-09ce-4989-911a-eec190fb76fe", - "modified": "2021-01-06T18:30:55.271Z", + "modified": "2021-01-13T01:52:44.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.271Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.543Z", "id": "relationship--8646d967-4818-4504-b1ff-b4355ec511f4", - "modified": "2021-01-06T18:30:55.271Z", + "modified": "2021-01-13T01:52:44.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.272Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.544Z", "id": "relationship--bf9efd7c-5db4-461c-aade-74a152ff04b8", - "modified": "2021-01-06T18:30:55.272Z", + "modified": "2021-01-13T01:52:44.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.273Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.544Z", "id": "relationship--c7a9a4fe-ca3c-4e44-9833-65b2f5d574ed", - "modified": "2021-01-06T18:30:55.273Z", + "modified": "2021-01-13T01:52:44.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.546Z", "id": "relationship--580444d2-c717-4028-bac4-7002d3968a74", - "modified": "2021-01-06T18:30:55.274Z", + "modified": "2021-01-13T01:52:44.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.546Z", "id": "relationship--07c96bc7-fb23-4b28-886f-b7c95a734048", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--595fc2f3-aa98-4c33-96ac-36a504645eef", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--f5ef2011-0cb1-453a-9e20-7568e67ad9de", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--419c4902-7f2b-4bfd-aaaf-ac9b17029c07", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--c5a78b67-6b3d-4c74-a36a-1e6b71cfbe08", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--04edbec4-1260-4273-a5d8-2eb136286402", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--5befc642-3a9a-41ea-8835-82f7cc341d13", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--14813b51-9bf8-4eb5-9891-0982566401b5", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--e072ea3b-7c26-43a7-bec7-80ad8807b82c", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--14f22310-07ef-405e-977b-5ab759d225d6", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--c807c669-3346-49d7-b2da-9d25d7c8e85d", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f1e29608-01a1-464b-801a-9c196586b00a", - "modified": "2021-01-06T18:30:55.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd16b9e7-2367-4749-b124-5cabe00bad78", - "modified": "2021-01-06T18:30:55.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--3a85c945-2d74-4c91-970c-0ef2a9bd6176", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--d1f67af3-11b7-4a81-ad8a-f3fa53de0dd6", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--b0484a1e-3288-45e0-baa5-0bb313a3fae0", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--09a55636-cbe9-4e05-bafb-d258c8efe0bd", - "modified": "2021-01-06T18:30:55.277Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--00063127-10b5-4b87-95ea-a74641125292", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--37da7f1a-fd0a-477b-b4ac-1869c9c758df", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--741a9be9-dd96-4304-b651-4f1061d6a8d5", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.549Z", "id": "relationship--d0be160e-dbcb-4f99-9cd2-e0174aa05485", - "modified": "2021-01-06T18:30:55.278Z", + "modified": "2021-01-13T01:52:44.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.279Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--16c284ce-c238-48da-a927-59203ba5a321", - "modified": "2021-01-06T18:30:55.279Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.279Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--4e34baf7-ce32-4fb8-a5ad-77df2e49b14a", - "modified": "2021-01-06T18:30:55.279Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--04fd5b03-56c9-4b41-b556-97db52865c12", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--515fe32e-f403-4d94-b95d-0e9d782e4061", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--20480dac-f76a-465a-bcc7-ac3ae5da403c", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--0308728a-d212-46be-b8f1-ae1a7dbba1bc", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--cc7a7d2b-2e1a-4df2-94ce-dda7b368a48e", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--f618084e-439c-4e2a-b57b-69ae6a4e66e2", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--5035a65e-e3bd-4e8e-bd49-e123f8ee358b", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--31c401fb-0470-48d9-bdfb-a71e796556ca", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.282Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.552Z", "id": "relationship--87663848-c530-4f61-968e-c48fe2d4d8b8", - "modified": "2021-01-06T18:30:55.282Z", + "modified": "2021-01-13T01:52:44.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.282Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.283Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.553Z", "id": "relationship--1381bb4d-1e81-422d-8495-e1527ee02f8d", - "modified": "2021-01-06T18:30:55.283Z", + "modified": "2021-01-13T01:52:44.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.283Z", - "description": "User Access Permissions", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:55.283Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.554Z", "id": "relationship--64bc94fb-c89a-48cf-8654-29e487a25444", - "modified": "2021-01-06T18:30:55.284Z", + "modified": "2021-01-13T01:52:44.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--4d638038-21bf-4858-a98c-c56ecde2fbd1", - "modified": "2021-01-06T18:30:55.286Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:55.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--fe73d6df-f941-4372-be62-31d6b6926017", - "modified": "2021-01-06T18:30:55.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--90a108ef-4ae5-45f6-97dd-3de7535f01f1", - "modified": "2021-01-06T18:30:55.286Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--8b56193b-7dc8-43c7-9214-067a683e802a", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--49ceffd7-db63-490d-a951-55d16db99047", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--976b0b02-df50-4c09-aaad-4795a4fa86ec", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--f95aca0f-e882-48b6-86a9-bd573fd91530", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c2589497-5ab6-4427-879f-654f8a4353df", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c70e90ff-a08f-4bd3-8cfc-d8b0179a1784", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--5f4d4931-246a-40de-a16d-948c9c24a4a0", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--b7a36a18-6867-4f54-b5e4-04f052e166d4", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--c3bc0e04-cc63-4b44-9d2c-ce5193f2b0b1", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--b5b03526-b5ff-4a93-bfc1-5234de14ff86", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--c52a8ad2-ce4e-4611-b81c-c9e3ce99b390", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--578fe349-d0ca-4620-a42f-06b8bdbe034b", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:55.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--f9e7d410-31dc-48f6-9299-69bebd02ab9c", - "modified": "2021-01-06T18:30:55.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--ba804d1b-5ed0-4fb2-9d34-6e9b8add5c7b", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--e293ccd0-a2dd-4c1b-8b7e-dee891c83591", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.558Z", "id": "relationship--d63005cf-aa5f-47f2-9826-5054e42fb615", - "modified": "2021-01-06T18:30:55.290Z", + "modified": "2021-01-13T01:52:44.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--649cc28c-e6a7-4d82-ac2b-304cb5fbda4f", - "modified": "2021-01-06T18:30:55.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--1f5d2629-74c2-4ac6-93bf-05321c1da3f9", - "modified": "2021-01-06T18:30:55.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--06521771-2f6c-4451-9f5d-9f225259be0f", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--74b4ef98-d608-4099-aef1-7788be1f1d2d", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--1a24a10d-082b-461e-9959-f6aa6da02302", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--506ceec0-b873-48aa-ad88-3d06d473fd26", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:55.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", - "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:55.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--b8371754-c54b-4f8e-98b4-920c34ffd390", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--7f20d0bb-9f58-4388-9cac-8a1b051ca0fc", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.294Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fa10d7ab-a9c8-45b5-b85d-4243423c40f3", - "modified": "2021-01-06T18:30:55.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.294Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b6aeea4d-8136-46e1-bdce-751909e0fd22", - "modified": "2021-01-06T18:30:55.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.295Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--97b96aa3-bd15-4c54-8906-fddb5ac225f0", - "modified": "2021-01-06T18:30:55.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.295Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--12e1c66f-f959-45a6-a2bb-9a7a7bd8be61", - "modified": "2021-01-06T18:30:55.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.296Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--856aec98-1e48-4f2d-85f0-081fea4ace3b", - "modified": "2021-01-06T18:30:55.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.296Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.563Z", "id": "relationship--71a62659-f76e-4eb5-9a5b-51a1cc72874e", - "modified": "2021-01-06T18:30:55.296Z", + "modified": "2021-01-13T01:52:44.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.297Z", - "description": "User Access Permissions", - "id": "relationship--55678820-c564-4a2a-b3b5-1e82d990e68c", - "modified": "2021-01-06T18:30:55.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:55.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:55.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:55.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:55.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--334a0098-86ef-4921-8fd1-d0b68fa2fcd2", - "modified": "2021-01-06T18:30:55.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2cbb3009-e4f8-4014-a358-52762bce79d0", - "modified": "2021-01-06T18:30:55.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b38126c5-9102-4c21-a1bb-ab11c9b018cf", - "modified": "2021-01-06T18:30:55.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:55.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bbdca9f7-7787-47cc-9948-af8bc63b700b", - "modified": "2021-01-06T18:30:55.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--806a2ee5-97b4-4791-8dde-11779be1d24d", - "modified": "2021-01-06T18:30:55.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--79d2707c-b744-4900-94a4-3adeea9c3fc5", - "modified": "2021-01-06T18:30:55.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--06dd97d1-2af2-4047-b779-e6f18f42749c", - "modified": "2021-01-06T18:30:55.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:55.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:55.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.301Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:55.301Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.301Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:55.301Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--5c368894-17fc-4d7c-832b-186b71e48840", - "modified": "2021-01-06T18:30:55.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49e9f55a-c174-4912-b62e-f00cd0ddffd9", - "modified": "2021-01-06T18:30:55.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--eb8d40f8-1034-4fc1-8b44-0a34efd6765b", - "modified": "2021-01-06T18:30:55.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8fbaf565-0fbc-4f31-891a-c1500a16ed80", - "modified": "2021-01-06T18:30:55.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.568Z", "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:55.303Z", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.568Z", "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:55.303Z", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.568Z", "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:55.303Z", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.568Z", "id": "relationship--92b07d99-c8cc-4545-aafd-ca05405eab9a", - "modified": "2021-01-06T18:30:55.303Z", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:55.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:55.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:55.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.305Z", - "description": "User Access Permissions", - "id": "relationship--89fe1aae-f98c-4836-9ef6-443cf461fdd4", - "modified": "2021-01-06T18:30:55.305Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.570Z", "id": "relationship--377ce984-c848-4455-8091-e995c7bd145d", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--cbe6fca0-0b08-43e2-a239-e6ad66762387", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--2bda06f7-1cea-4e4e-9c8e-c46a08b11d80", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--9b80f503-bafc-406e-89cd-8a3f3eedd271", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--470b134b-9dab-4305-a86f-ad2b6f648265", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--5d7f97b3-fcc1-4c80-9354-9537eb2c70c7", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--793c452d-a8de-468f-9077-fd3d047f061e", - "modified": "2021-01-06T18:30:55.306Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.307Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.571Z", "id": "relationship--0f377664-4f70-4597-bfa8-a27815c10070", - "modified": "2021-01-06T18:30:55.307Z", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.307Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.572Z", "id": "relationship--a6745291-8aec-4970-b8e6-62fd3b658814", - "modified": "2021-01-06T18:30:55.307Z", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.307Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.572Z", "id": "relationship--288bb34c-b7ca-4daf-b9ec-08b6514e1568", - "modified": "2021-01-06T18:30:55.307Z", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.308Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.572Z", "id": "relationship--396d24a0-ac1c-42fc-a6fe-00736b2df23c", - "modified": "2021-01-06T18:30:55.308Z", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.308Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.572Z", "id": "relationship--9931912a-2377-4946-899a-f64fe0fdfb66", - "modified": "2021-01-06T18:30:55.308Z", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.309Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.573Z", "id": "relationship--cfe559d2-47f7-4a9e-bd05-c97dba2b5a56", - "modified": "2021-01-06T18:30:55.309Z", + "modified": "2021-01-13T01:52:44.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.309Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.573Z", "id": "relationship--8c10ca4a-3812-41ca-988c-2d30c02fb2a3", - "modified": "2021-01-06T18:30:55.309Z", + "modified": "2021-01-13T01:52:44.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.574Z", "id": "relationship--5c0b99d0-85ce-4bc9-9ed5-78affa2e425e", - "modified": "2021-01-06T18:30:55.310Z", + "modified": "2021-01-13T01:52:44.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.575Z", "id": "relationship--6750e5b7-8665-487f-a20e-eb43b7c87d24", - "modified": "2021-01-06T18:30:55.310Z", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.575Z", "id": "relationship--713e5a08-aee9-4916-9cef-261bd2b3d70f", - "modified": "2021-01-06T18:30:55.310Z", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.575Z", "id": "relationship--2d12b370-d908-439d-99a9-8dd99e71f99e", - "modified": "2021-01-06T18:30:55.310Z", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.311Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.576Z", "id": "relationship--3b2d3780-4976-49e1-bcaa-4fb7c0a775b9", - "modified": "2021-01-06T18:30:55.311Z", + "modified": "2021-01-13T01:52:44.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.311Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.576Z", "id": "relationship--b95e5d65-463f-4df7-b794-a4398bb8ba1d", - "modified": "2021-01-06T18:30:55.311Z", + "modified": "2021-01-13T01:52:44.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.312Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.577Z", "id": "relationship--9cad4928-0740-43f8-ae93-9f9cff5317fc", - "modified": "2021-01-06T18:30:55.312Z", + "modified": "2021-01-13T01:52:44.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.578Z", "id": "relationship--c6974952-5bc6-4a8a-b715-91e7007754d4", - "modified": "2021-01-06T18:30:55.313Z", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fd953a90-3f27-4efa-b138-614187d120da", - "modified": "2021-01-06T18:30:55.313Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.578Z", "id": "relationship--ee6c37e1-271c-4241-843e-31a6dfa1e94f", - "modified": "2021-01-06T18:30:55.313Z", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.578Z", "id": "relationship--cb9cb31a-b01c-449a-b25c-1d16a6552774", - "modified": "2021-01-06T18:30:55.314Z", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f9a0091f-520a-4e71-90a0-ecb0cacc96fb", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.578Z", "id": "relationship--7e8fbe99-1123-4b86-b95c-fd7d005454c4", - "modified": "2021-01-06T18:30:55.314Z", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.578Z", "id": "relationship--1e8daf73-c4b3-48da-a116-37ab1813a92f", - "modified": "2021-01-06T18:30:55.314Z", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1bb32a65-843a-4f8f-98c2-fde3c66433e8", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.579Z", "id": "relationship--4e6dc474-5fba-4789-8eaf-0c3989ff11dd", - "modified": "2021-01-06T18:30:55.314Z", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.579Z", "id": "relationship--b701008f-67ff-454f-ab67-eb4ae7e8d96d", - "modified": "2021-01-06T18:30:55.315Z", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5d4b74d8-a26f-4000-8c9a-79eec3850c5d", - "modified": "2021-01-06T18:30:55.315Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.579Z", "id": "relationship--edce872e-96b7-4192-9908-f7c3f89718ae", - "modified": "2021-01-06T18:30:55.315Z", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.316Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--5c7e5fd0-304f-48ae-970d-ce961fc10bfd", - "modified": "2021-01-06T18:30:55.316Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--fa198237-2385-4c8a-b490-863016d72f75", - "modified": "2021-01-06T18:30:55.317Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--83d88fc8-cbbb-4fd3-a25b-c78ab03b5753", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:55.317Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--7299a14c-54e2-479c-867a-810cfdaf765f", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.318Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.581Z", "id": "relationship--2ff823bb-c04a-4217-a429-f420733e0ec3", - "modified": "2021-01-06T18:30:55.318Z", + "modified": "2021-01-13T01:52:44.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", - "id": "relationship--8e395f09-2ca9-4de6-8013-31b49e0ab757", - "modified": "2021-01-06T18:30:55.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.581Z", "id": "relationship--6f930043-da30-4871-b6a6-2bd8fea0d930", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.582Z", "id": "relationship--8213a93a-7361-4b75-b184-3fddb6b11dba", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", - "id": "relationship--85378058-c0bb-4b1d-b373-47648dc12eb8", - "modified": "2021-01-06T18:30:55.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.582Z", "id": "relationship--93445f90-6fbb-4bb7-aa50-b88ec1f4e7ee", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.321Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.321Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--90a2a6b8-71af-4886-b1f2-36c914afbc3e", - "modified": "2021-01-06T18:30:55.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.322Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.322Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.323Z", - "description": "User Access Permissions", - "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:55.323Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.324Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:55.324Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.586Z", "id": "relationship--a640ac52-5e00-47f0-8e5b-199f116cbf3b", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.586Z", "id": "relationship--4f056248-8f91-43f2-9970-9b7778f7938e", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--108d7507-bb7b-4c1f-82bf-8a204a99d2f0", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:55.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--3672e42a-d702-4538-8d56-d6641892c81c", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--b824ff13-87af-48ea-93b5-7ec5bb04912b", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--3ddabcb1-15c1-4bfb-af10-1e685750f9c4", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:55.326Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--f040cee8-d1e3-4afe-be8c-c85757a12257", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--2a992511-14dd-4640-9345-5a2986f5cf67", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--168202fe-3487-4c95-98ec-b9addb432abf", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.326Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--d06f0c5d-dd11-46c9-a891-adbec527106d", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--951e308f-a84d-42da-9b3c-186a5e9ff092", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.327Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--ca6bc792-4bfc-47a6-aaaf-2993a946dcb0", - "modified": "2021-01-06T18:30:55.327Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.327Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--eab8de2b-e555-4794-b390-b94ff776a24b", - "modified": "2021-01-06T18:30:55.327Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--b5ea01d0-97bc-4b0c-8c2d-5a66e3862c36", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--7b4bf92e-8359-4326-8637-ae66e4ff6718", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--a18c9b26-3563-4c13-a175-44718351f9c8", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--1403d7fa-42c7-4e5b-a024-2ea7cefdd144", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--4492fad5-41a4-4d68-87e9-c96a4c0cbc62", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--bf898e4f-40c0-496c-b6e7-8b8d9051935a", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--a0fa3ccc-45f8-4fa5-9882-bdb416ecff73", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.329Z", - "description": "User Access Permissions", - "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:55.329Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.329Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--9be4aeba-d642-4076-923d-304171c4cc48", - "modified": "2021-01-06T18:30:55.329Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--57574ba2-9e26-4307-aac4-a969c9e42d38", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--b2869822-8fe2-4b88-8ebe-e5580c2f559c", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", - "id": "relationship--2a3748ca-7c23-4696-b455-91f4e3b9fc10", - "modified": "2021-01-06T18:30:55.330Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--6ec54cc9-c4fa-4a87-8321-dcc4a131dbc0", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--c04865ce-2192-4ea2-afff-a4e8776353be", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--233828c8-9056-4061-a9da-3f3c7130396b", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--b27855a6-cdb1-4a72-af5c-47de233949e5", - "modified": "2021-01-06T18:30:55.331Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--fb96de44-3862-4dac-a572-a72a1ed0a9e7", - "modified": "2021-01-06T18:30:55.331Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--b0ba6e41-edcb-41e7-a670-daf532e01e56", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--ebc7c5cc-398d-4221-a0e8-8549662b816b", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--91350eb0-0f10-4858-a034-7883008aab9e", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--5f0e565f-5779-4223-8cd1-ea5f06e50218", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--84a3724c-689a-4fd7-8272-664677deab0b", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--f43904ed-b2a4-4f89-ab7b-283c9ca4e2da", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--f4a05bc8-2e4b-4861-96c4-c4acf0716733", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--47f41e1d-67cb-479e-b198-fbadf06577d7", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--04eb29d7-f16e-426b-86e6-849e0db96d6f", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--8467aeb1-4bf4-4245-9d12-82e34ec35a91", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--99f94e44-c85b-4f6e-b203-7e6866ec49e1", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--c2eaf4a6-f60c-4f04-9af1-d1abd0aa7d19", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--27aa2137-c7a6-4543-afc4-d2bececabb93", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--d0a75b48-9934-416a-9d37-2db71175bd2a", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.594Z", "id": "relationship--b40e8d9a-f52a-475e-ab99-697aad35186d", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.594Z", "id": "relationship--19e5b477-0247-4b74-9646-bc47edf34bf4", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--20ef96d3-f782-4f2c-a1cd-e6846674eab6", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--6b413eb6-5bb7-4745-95ad-b2a29f719822", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--a9af1b8e-675c-46d4-a003-815a0750326f", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--c250c400-ea9a-48f0-9e0f-6548042c6f59", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.337Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--27899efc-c0b0-49a2-9b1d-8c96913c4e53", - "modified": "2021-01-06T18:30:55.337Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--0eca7005-51d0-429b-a7cd-3abfe4b7646c", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--664fb7d3-7276-4ae0-876f-b1ff6d45a53d", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--6f6ddabf-0cf2-444e-b763-5d90c3236145", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--1f8b9948-6c69-4004-a053-2e1163fe3ac2", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--61f57c5b-d4f0-44ca-b750-2db7a3a18b96", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--989e5b84-901b-462b-9bf2-5feb20ccae72", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd70f25c-ad40-4821-b50d-12e353397dbd", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5dc21a6c-637e-4c6d-b3be-5de36d7de602", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5c024ccc-e129-45c3-ae04-002e0af64850", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8b4eb980-4520-4ce9-a9c0-7c5e04753606", - "modified": "2021-01-06T18:30:55.339Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1f938f97-4bc9-4734-b63f-c52467b96f46", - "modified": "2021-01-06T18:30:55.340Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c0dc7c51-cd2d-4347-a51d-5e4418776e02", - "modified": "2021-01-06T18:30:55.340Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3955a747-c0fc-48c1-9aba-bcc2bd2e2c9b", - "modified": "2021-01-06T18:30:55.340Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b676b28f-037b-4f87-8cd8-7a0b428ba361", - "modified": "2021-01-06T18:30:55.340Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1691f338-5256-4b88-810b-770c003c8432", - "modified": "2021-01-06T18:30:55.341Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4d4f2395-0088-4864-a64d-c8a59bac70e7", - "modified": "2021-01-06T18:30:55.341Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c68fe43a-fbd7-4482-825b-ce3ef107e6e8", - "modified": "2021-01-06T18:30:55.341Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f5e8869e-359a-4094-83fd-150adcf7dae3", - "modified": "2021-01-06T18:30:55.341Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d1e5134a-38de-4967-9693-5e400f938c2a", - "modified": "2021-01-06T18:30:55.341Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.342Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fd7eacdf-a24d-4eaf-9c9a-cff9a047ec5b", - "modified": "2021-01-06T18:30:55.342Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3b16b2b9-3b1b-4439-a16e-c81fa29116ad", - "modified": "2021-01-06T18:30:55.343Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b53375f9-802c-4b6c-9309-fe9cce94a3bb", - "modified": "2021-01-06T18:30:55.343Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--cb8715b8-3213-4b6d-8184-c4402f53a70b", - "modified": "2021-01-06T18:30:55.343Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49cf2cf4-5e17-42f7-8543-dcc724797eb1", - "modified": "2021-01-06T18:30:55.343Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.600Z", "id": "relationship--28ec03b6-d6a9-4f3a-a722-845baafbab45", - "modified": "2021-01-06T18:30:55.343Z", + "modified": "2021-01-13T01:52:44.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.600Z", "id": "relationship--0d73620e-8c04-4f2c-a93d-572238673bfc", - "modified": "2021-01-06T18:30:55.344Z", + "modified": "2021-01-13T01:52:44.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.601Z", "id": "relationship--a37a3254-4339-4914-8926-04feabf2fb5f", - "modified": "2021-01-06T18:30:55.344Z", + "modified": "2021-01-13T01:52:44.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.601Z", "id": "relationship--70555c0f-9ba8-416c-b1e4-446810943827", - "modified": "2021-01-06T18:30:55.344Z", + "modified": "2021-01-13T01:52:44.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--63a905e5-d285-4a83-a418-5270d72e2418", - "modified": "2021-01-06T18:30:55.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--a8d4eea5-abcc-4624-a1ba-d574d6d22bf8", - "modified": "2021-01-06T18:30:55.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--f80124e7-2722-48db-be34-d025c9ab532f", - "modified": "2021-01-06T18:30:55.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--bb0eb289-260c-4149-92b0-dcffafe0176f", - "modified": "2021-01-06T18:30:55.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.603Z", "id": "relationship--ef19ffa9-68fa-498e-9c67-8d464a0aa084", - "modified": "2021-01-06T18:30:55.347Z", + "modified": "2021-01-13T01:52:44.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.603Z", "id": "relationship--b63d2d29-78b0-49d0-bc78-fc1271637d3a", - "modified": "2021-01-06T18:30:55.347Z", + "modified": "2021-01-13T01:52:44.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.603Z", "id": "relationship--5005b69c-c017-4d6a-bd6a-f65b71468856", - "modified": "2021-01-06T18:30:55.347Z", + "modified": "2021-01-13T01:52:44.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.603Z", "id": "relationship--08a6eadd-94a8-470d-8b71-d9b0522cc26b", - "modified": "2021-01-06T18:30:55.347Z", + "modified": "2021-01-13T01:52:44.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--ce978882-dd45-435b-b15e-6c7469bcf5c6", - "modified": "2021-01-06T18:30:55.347Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--e540a916-fc83-4f9c-8f48-8a40ec8182c8", - "modified": "2021-01-06T18:30:55.348Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--38200800-188e-4e29-a436-60195d3848d6", - "modified": "2021-01-06T18:30:55.348Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--e59a79b6-d89f-494f-a15f-a7d3f111d836", - "modified": "2021-01-06T18:30:55.348Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--557492a3-907e-49e8-ae24-dcaa7bba54d0", - "modified": "2021-01-06T18:30:55.348Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--9c1bc2ec-a73c-4c49-96c5-af3ce3cced53", - "modified": "2021-01-06T18:30:55.349Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--39d2b0bb-a673-4723-86cc-4412610b513b", - "modified": "2021-01-06T18:30:55.349Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--b5dff9e9-9966-4274-b0f6-e24468ce9ed3", - "modified": "2021-01-06T18:30:55.349Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.604Z", "id": "relationship--a8356d70-ed26-43ba-a583-90d2b51a1214", - "modified": "2021-01-06T18:30:55.350Z", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.605Z", "id": "relationship--75646472-325d-4002-a5d4-8aa27ebfb0c5", - "modified": "2021-01-06T18:30:55.350Z", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.605Z", "id": "relationship--101d889c-f56a-4df4-aa31-e7a86475a557", - "modified": "2021-01-06T18:30:55.350Z", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.605Z", "id": "relationship--13e0ccb9-06e6-4662-b197-85b701b2a7fc", - "modified": "2021-01-06T18:30:55.350Z", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.352Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.606Z", "id": "relationship--e1e6d895-1474-4397-a5d5-02b3929e7b17", - "modified": "2021-01-06T18:30:55.352Z", + "modified": "2021-01-13T01:52:44.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.352Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.606Z", "id": "relationship--8a559e5d-9d17-4740-8bae-51427ed0eab3", - "modified": "2021-01-06T18:30:55.352Z", + "modified": "2021-01-13T01:52:44.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.353Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.607Z", "id": "relationship--d8743e39-7729-4a4b-97b7-5b421d7b9409", - "modified": "2021-01-06T18:30:55.353Z", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.353Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.607Z", "id": "relationship--76626fc9-979d-4aa9-af8e-301abede4691", - "modified": "2021-01-06T18:30:55.353Z", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.607Z", "id": "relationship--67643fa8-d041-437b-92bf-bcd6298897e9", - "modified": "2021-01-06T18:30:55.354Z", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.607Z", "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.354Z", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.608Z", "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.354Z", + "modified": "2021-01-13T01:52:44.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.355Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.608Z", "id": "relationship--c657a311-65ce-4a9c-a524-9bf626021f18", - "modified": "2021-01-06T18:30:55.355Z", + "modified": "2021-01-13T01:52:44.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.356Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.609Z", "id": "relationship--8788fbac-7012-4684-9e17-527e98b9e806", - "modified": "2021-01-06T18:30:55.356Z", + "modified": "2021-01-13T01:52:44.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.610Z", "id": "relationship--e9179261-febf-4220-bf37-15af63ac70ac", - "modified": "2021-01-06T18:30:55.357Z", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.610Z", "id": "relationship--1d8fb7cc-57f1-4c72-b855-39dfa735b109", - "modified": "2021-01-06T18:30:55.357Z", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.610Z", "id": "relationship--acf42649-8e25-4e23-b90e-ccdd30905b2f", - "modified": "2021-01-06T18:30:55.357Z", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.613Z", "id": "relationship--e0086920-bc61-4803-9e4f-9806fdf76874", - "modified": "2021-01-06T18:30:55.358Z", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.613Z", "id": "relationship--b0fe1179-0d04-489e-9ced-38ce89d7b9e0", - "modified": "2021-01-06T18:30:55.358Z", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.613Z", "id": "relationship--6f043f8e-837f-4c42-8b80-8addeb0b2dc9", - "modified": "2021-01-06T18:30:55.358Z", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.613Z", "id": "relationship--e063d1d2-c197-4abd-b6bf-2439adada358", - "modified": "2021-01-06T18:30:55.358Z", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.359Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.615Z", "id": "relationship--ab9fb5e5-80df-438a-a093-df241d320d77", - "modified": "2021-01-06T18:30:55.359Z", + "modified": "2021-01-13T01:52:44.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.360Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.615Z", "id": "relationship--0000b531-6f8f-4719-bc53-4a015392d888", - "modified": "2021-01-06T18:30:55.360Z", + "modified": "2021-01-13T01:52:44.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.360Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.617Z", "id": "relationship--5e13fcfc-35cb-4e20-b3eb-c03627292e69", - "modified": "2021-01-06T18:30:55.360Z", + "modified": "2021-01-13T01:52:44.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.361Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.617Z", "id": "relationship--feda9c53-eed7-47e7-9cd6-c5a7f5a42cad", - "modified": "2021-01-06T18:30:55.361Z", + "modified": "2021-01-13T01:52:44.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.618Z", "id": "relationship--e5c5292e-bc09-4bec-a663-bdfa3360dce7", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--e204c139-ca51-4953-8d20-a3801400f4b0", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--0e05cf0c-67f8-488c-aea3-e7ae0fe935f1", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--5c2faa17-e51d-44ed-947e-3de1be3cfe72", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.363Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.620Z", "id": "relationship--73fe0e8c-7146-48f8-800b-66b906301d54", - "modified": "2021-01-06T18:30:55.363Z", + "modified": "2021-01-13T01:52:44.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.363Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.363Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.364Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.622Z", "id": "relationship--6d0bd723-6044-4406-8499-69197c1bd989", - "modified": "2021-01-06T18:30:55.364Z", + "modified": "2021-01-13T01:52:44.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.364Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.622Z", "id": "relationship--067478c0-1eaf-4066-b6af-23fa4fbe2476", - "modified": "2021-01-06T18:30:55.364Z", + "modified": "2021-01-13T01:52:44.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--cf7ef500-f778-4417-b3a3-214ffabf16f3", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--0639cc59-1e76-4c9c-b787-503cc1ea2261", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--8bfc2871-a203-4400-8b42-262621344cbd", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--69733bc8-914a-445b-b1cb-7ddfd1d532b0", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--b36fb705-cdcc-4627-a4c1-53e729cf1220", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--2d74b31a-859f-4a46-bf22-1916aebd6a3c", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--09706e8b-2975-4117-a787-925f52fcacf0", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--edd4ef70-8047-4174-9c09-02ab26aeb5de", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--ef87db28-85ee-46a0-b510-f63f3ae19ac8", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--cec75168-dafc-4e6e-a067-9d0fc64e1a7e", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--d8119553-5844-4a0e-a60d-71849d7fb30a", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.370Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.628Z", "id": "relationship--60491f96-4d07-418b-852e-894f7df36347", - "modified": "2021-01-06T18:30:55.370Z", + "modified": "2021-01-13T01:52:44.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.370Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.628Z", "id": "relationship--c3e46ad8-5006-481b-bfc4-d2d03db4fd95", - "modified": "2021-01-06T18:30:55.370Z", + "modified": "2021-01-13T01:52:44.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.371Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--2b1abaa6-6e4a-4776-b3b1-79fd53a81966", - "modified": "2021-01-06T18:30:55.371Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.371Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--20ad077e-9d42-4198-a8b7-bec939083b0c", - "modified": "2021-01-06T18:30:55.371Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--d1b454c7-fde3-45bf-ba7f-5e183cf3c0dd", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2c0a0a68-9cf2-4ef9-9952-3959f6fa21e8", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2f3118e2-e0f5-4ae2-b371-2d7b9b421b27", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e0f07491-ddb5-426e-8d67-dcb1608acafc", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--ba7da141-2e6c-4fc1-84cf-116da4c2188d", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--05495b19-ae4a-4f9d-b88f-6e4d8da3487a", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.631Z", "id": "relationship--87a7529d-3264-4adf-b765-a27a606be9d1", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--01ae6504-166b-41b8-b135-93818fe28478", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fad9dcc-b81f-4761-b42a-77ee7b474818", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c2dbe5a6-ce02-405b-95bc-d28e4407a7b6", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--7ad2de2e-5075-4f0d-a2b5-bcce230e5c05", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--d2642a83-8b78-45cf-9ca6-d76a88983af3", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--73d22c2a-4685-4e05-9dfb-b5224eb00bd1", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--4edb4f4c-b84b-4dcc-bf9e-869ab1b7f617", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--b5dc9951-1441-4b22-acd8-165ee66e33f2", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.375Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--e61efe98-837e-4738-82af-331307f0369c", - "modified": "2021-01-06T18:30:55.375Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.634Z", "id": "relationship--bbaff494-d11c-4121-a274-387d793dfae7", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.635Z", "id": "relationship--9368dc28-24d5-4f99-bcd6-a03b66817cc7", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.635Z", "id": "relationship--45c0e62b-daa4-43c1-92f2-f61076e217d0", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--75885c00-f123-4759-9a36-bd38359b342b", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--c3a9dafe-6dff-4417-a1a7-b3aba6510a7f", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--cb9ba27d-e01d-4e8f-8a06-500611272d7f", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--af8b29df-7a0b-41a3-8ba3-62a37468304c", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.378Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.638Z", "id": "relationship--2c7c472f-0da0-4a17-9e3c-f2c8980b170d", - "modified": "2021-01-06T18:30:55.378Z", + "modified": "2021-01-13T01:52:44.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.378Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.638Z", "id": "relationship--d73c8e72-871c-4446-bfce-fa1d7c844771", - "modified": "2021-01-06T18:30:55.378Z", + "modified": "2021-01-13T01:52:44.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.379Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.639Z", "id": "relationship--9fac1afb-f02a-4239-b9ed-0f7a30ce5625", - "modified": "2021-01-06T18:30:55.379Z", + "modified": "2021-01-13T01:52:44.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.380Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.640Z", "id": "relationship--51c2f15c-f34d-4f4a-8424-a06c375c47a8", - "modified": "2021-01-06T18:30:55.380Z", + "modified": "2021-01-13T01:52:44.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--eaf3f9f1-b0f2-47fe-92cb-5b1f1447050a", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--18de8f1f-e2a3-45ba-a31b-b9cd73e22d02", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--df1827b0-43c8-4268-9183-98e8198f4288", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--10d5c472-8536-4b55-b961-addabc6c7757", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--bdaa468a-eaa0-45ce-9d52-0279a78fcd42", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--43fdf25f-430e-420f-b830-f4864e667233", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--ae5a0505-6b8a-48b2-bdab-85e2861299da", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--3019e60c-4e89-4bd0-83f9-baea7a75747d", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--beab4162-dadc-4f05-a6e7-0687e8388cd2", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.642Z", "id": "relationship--62732ea2-7d24-43fd-af84-f2f0648b5242", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.642Z", "id": "relationship--a9cef76c-d20d-4ad5-b5b3-926d4be345dd", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.383Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--6f5b3bdc-9c10-4681-9236-809fe91baae1", - "modified": "2021-01-06T18:30:55.383Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--250f4c51-c71b-4eef-9b97-8a567d048e33", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--a6eb024f-7c48-4d74-8819-471694212ed0", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.644Z", "id": "relationship--97acdf71-6c48-4534-ad61-08310415f51c", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.645Z", "id": "relationship--d77273e2-7a41-46f7-8a61-63c9b9b06d0c", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.645Z", "id": "relationship--3138d4cb-1c71-4616-819c-13d50dbd7dde", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--b60b39a3-a3ae-4fea-83c0-8e078b05799e", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--045033a1-3168-48be-a77f-c39dafa1312e", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--1a9d1b98-74d7-44d0-878e-4c89bcabc956", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--fd8c9222-66ed-4f57-9f48-dcabc8467213", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.388Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.648Z", "id": "relationship--e8fda370-556a-41c4-b1c7-89b8e7d04142", - "modified": "2021-01-06T18:30:55.388Z", + "modified": "2021-01-13T01:52:44.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.389Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.648Z", "id": "relationship--08f4571c-1db8-4a19-8c63-3a9b15079429", - "modified": "2021-01-06T18:30:55.389Z", + "modified": "2021-01-13T01:52:44.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.390Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.649Z", "id": "relationship--71f28e38-1148-4460-a1c7-1c7fef47112d", - "modified": "2021-01-06T18:30:55.390Z", + "modified": "2021-01-13T01:52:44.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--c625ba43-9d57-4702-ac08-53721290adb8", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--b0f77c44-a1d8-44c7-be4f-99f19447456a", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--875c17eb-d891-47ee-a4d3-f12c85dba86c", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--ee1fcbc9-08eb-4cb7-89ce-003f79fb75e8", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--3222160c-6dd5-4090-a10d-967b377b8d42", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--8e4fe615-0002-46eb-aaf8-e6c570a5a62f", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--2b558a87-7570-4047-bba4-513ca5fde850", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--721ccddb-89d9-4070-9fc9-d7a6752e8a6b", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--885045b4-ad93-4b4f-a571-1b035dbb7914", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--287a9c1a-6ab7-4fd2-bd3a-58a027c51b7d", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--5ff08716-d6b8-477e-8b02-2611020b1065", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--96ef726a-e86b-4d8a-8732-16e601ad6bc5", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--57c20482-67dd-4fd7-920b-037bd1599b55", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--07096853-4efe-479f-b66a-d865e896e9d5", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--a9a116f0-b4ce-4150-bfa7-fac131e14db2", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--282768c3-7e20-4726-ab21-28f769bba3a2", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--e041a89b-fa44-4682-9247-b5c02205198a", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--d7775ed6-dc43-478c-99aa-c5ccc9ba1338", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--d64ae046-0a22-4466-b565-2e77363c373f", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--ee854e07-10c3-4142-9e6b-8c1e4c41fd62", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--1686c3b2-eb77-4382-a26a-1cc259e07ce6", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--ae8e7cfa-9e68-4a91-a904-acdc1d78a3f8", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--11253f07-a24b-44d2-b61e-f37523fb25e6", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--f5135ded-a490-49d1-a2b3-871a30c2682b", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--30441098-15cd-4b6c-aff8-46425bc5ac8a", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--c1bf02cb-b5fd-4e70-9f78-27bddf499fdc", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--7ba4ba88-5115-4926-8da8-475fd2eea977", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--03f6a0c3-f0bf-4c2f-bb2a-6de27f0cfebe", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--8f50fd33-e6d4-441a-94f8-1403dd0c9b48", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--5ae8bda4-f48d-4de0-a5d7-e3db1a32c7ea", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.397Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--33cc01f4-7780-4d2b-9753-d95fd8ec06f4", - "modified": "2021-01-06T18:30:55.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.397Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:55.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.398Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e934cab7-21fd-4380-b6ce-8c030978b943", - "modified": "2021-01-06T18:30:55.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.398Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:55.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.399Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:55.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.399Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--17dfbffa-eded-4149-bdfc-a9d15987cafb", - "modified": "2021-01-06T18:30:55.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.400Z", - "description": "User Access Permissions", - "id": "relationship--6d6bfa68-93e7-42bb-bcca-fbfb25522b40", - "modified": "2021-01-06T18:30:55.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.401Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c0b6a614-2967-482a-86f3-44a2768f0605", - "modified": "2021-01-06T18:30:55.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.401Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cabdc082-24d3-4463-8199-8f69a6d117a0", - "modified": "2021-01-06T18:30:55.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.402Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8cf8b41a-3371-43e2-babe-9ae3c9d8b5aa", - "modified": "2021-01-06T18:30:55.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.402Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a0bf5c27-0f3f-4f8e-bc81-78e5ecfe49a1", - "modified": "2021-01-06T18:30:55.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.403Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b2e53e9f-0c35-41b6-af37-774a277c774a", - "modified": "2021-01-06T18:30:55.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.403Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.661Z", "id": "relationship--577360bb-bfea-48da-8a68-52c916429f8a", - "modified": "2021-01-06T18:30:55.403Z", + "modified": "2021-01-13T01:52:44.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.404Z", - "description": "User Access Permissions", - "id": "relationship--bf76cdfd-963e-4b90-9bc8-61ab5c8eece3", - "modified": "2021-01-06T18:30:55.404Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.663Z", "id": "relationship--fa47d578-b0fb-47dc-b468-af079261f86f", - "modified": "2021-01-06T18:30:55.405Z", + "modified": "2021-01-13T01:52:44.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--abb1ddbd-bfbf-4bd1-9808-c9dbdadde963", - "modified": "2021-01-06T18:30:55.405Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--2ae6baea-476c-4dc5-a78a-ef1cccabec81", - "modified": "2021-01-06T18:30:55.406Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--d6c4169b-81c8-414c-adf8-f8fe9f9dc616", - "modified": "2021-01-06T18:30:55.406Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.407Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.665Z", "id": "relationship--50cc48a9-50b4-4baf-80bc-0261d6158b4a", - "modified": "2021-01-06T18:30:55.407Z", + "modified": "2021-01-13T01:52:44.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.407Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.665Z", "id": "relationship--35023be5-43b8-429d-bfec-367772b6d580", - "modified": "2021-01-06T18:30:55.407Z", + "modified": "2021-01-13T01:52:44.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.666Z", "id": "relationship--801f466b-01fa-4d04-aebb-4115a3c5119d", - "modified": "2021-01-06T18:30:55.408Z", + "modified": "2021-01-13T01:52:44.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:55.409Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.667Z", "id": "relationship--b41e5bb1-63b5-4db0-8360-441ba6fe76b6", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2adf7f8f-eeef-4049-a7d4-e0a41702633b", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--35f89b64-9acb-46bb-a6dc-25bd288fb198", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.667Z", "id": "relationship--b32936f7-f86c-4ea5-8b30-70a8bbaf821d", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1691dc9a-e74f-4389-9ba9-fd52a9b66c0b", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--f338d250-d31a-4310-abfe-dd05577d678a", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--f6aad6c8-92c4-4d4f-808d-9e610e6e2a06", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--d4d12b91-9e7d-44cd-b471-d0ed081aa894", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:55.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:55.411Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c78b1e76-3c3a-4bfa-a765-5e8e131260ae", - "modified": "2021-01-06T18:30:55.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--0be08f36-d362-45a0-aad7-65cb0aa64dff", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--e7e3ab08-e899-4f06-84c5-f70797263392", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--e2806e57-e4a6-4c53-8b2f-a18c4611315a", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--4094f098-eba5-4455-b429-5deca68b21b6", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.413Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.670Z", "id": "relationship--a8c61f82-c94f-4e0c-9726-5c79d6aa30f4", - "modified": "2021-01-06T18:30:55.413Z", + "modified": "2021-01-13T01:52:44.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.413Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.671Z", "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:55.413Z", + "modified": "2021-01-13T01:52:44.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.414Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.671Z", "id": "relationship--8a9bdbcd-295d-47c2-a618-557c9ad03a7c", - "modified": "2021-01-06T18:30:55.414Z", + "modified": "2021-01-13T01:52:44.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f113490d-3311-40ee-84c1-f496812ac9dd", - "modified": "2021-01-06T18:30:55.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c9cea2ca-3334-46f6-95e9-a1d4e2b759d4", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e4e5f368-0205-47bc-88a7-08de5870a16f", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4761155b-3b80-4560-b9af-8bc57304db06", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f8104ffc-986f-47c0-a1e9-cca551251278", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--163d3853-39d6-4c12-83e8-092a23c856f3", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--10d0ba5a-c1f3-4547-96a2-b4ae6202385e", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--6a12a192-5fe0-4662-b5ed-c8b558c1cea8", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b59dbace-1818-4bb0-b268-33de26463b15", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9d632723-ee46-42b9-bce5-bfb2d2bf618b", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.674Z", "id": "relationship--7f55ab7b-3570-4ae4-ad87-18317f5b9e27", - "modified": "2021-01-06T18:30:55.418Z", + "modified": "2021-01-13T01:52:44.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.419Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:55.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.419Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.674Z", "id": "relationship--f4c821af-dddb-4b24-ab3c-f7e2069e7771", - "modified": "2021-01-06T18:30:55.419Z", + "modified": "2021-01-13T01:52:44.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--44ca4399-cdb0-4edc-9bc8-d4fd9748224b", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--3f17dc10-22b5-472d-8d79-3cfc80765305", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.676Z", "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:55.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--3fac12c2-1cc9-41eb-b164-b3327a7ccabe", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--f715736d-c132-42c0-89db-84709531af08", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:55.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--faab7ee5-4cc1-4576-a91f-2d99a3bb1bde", - "modified": "2021-01-06T18:30:55.422Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:55.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--37ff5652-e9f1-4bfd-8d9a-4648b9a81ec5", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--d486e0ac-41d0-4a15-b363-d87e4c076379", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--717f27bf-6dfa-4715-9484-f124a1dfc232", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:55.423Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.424Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.680Z", "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:55.424Z", + "modified": "2021-01-13T01:52:44.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.424Z", - "description": "User Access Permissions", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:55.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7473bf38-7602-41a1-bb0a-b474d9708493", - "modified": "2021-01-06T18:30:55.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--96da6d5e-b976-43f6-9e29-b0fad262c218", - "modified": "2021-01-06T18:30:55.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.681Z", "id": "relationship--e08d0b6e-a002-4887-ac0a-a806fbd950e0", - "modified": "2021-01-06T18:30:55.425Z", + "modified": "2021-01-13T01:52:44.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.681Z", "id": "relationship--e2b02808-0802-4971-af34-2be58a38e829", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--3688cc2b-6321-42df-8a7a-6e14e8f371c8", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--22b98945-ac7b-4a5b-9b5c-e294d1c48047", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--eb077f76-7b8b-4d20-9e06-89460daebff6", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--bfc3baee-0a68-4347-a016-8f58f6f89449", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--b33e85dc-d55a-4463-9eb8-0d6c012916cf", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--e82a9e39-97f2-4db6-90ed-e7834777d752", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--9450c6f3-72cd-455c-b35b-7fc98991c6c1", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--97b6c61d-888f-4674-90a6-052fce323725", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--89559a30-90dc-4952-b341-cd80bcd25094", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.683Z", "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.683Z", "id": "relationship--1d303794-11bd-413a-b5d3-b6e1e75d7dc8", - "modified": "2021-01-06T18:30:55.428Z", + "modified": "2021-01-13T01:52:44.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--92b9c250-0f97-4a32-a437-78b198958b51", - "modified": "2021-01-06T18:30:55.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9e56f823-965a-4bbb-85ab-f091cfb9a1ee", - "modified": "2021-01-06T18:30:55.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--0bf59f3c-bbbe-4a17-9e15-8ea9cc38e182", - "modified": "2021-01-06T18:30:55.429Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--2b82f55b-2007-4993-a83b-949821e6b96b", - "modified": "2021-01-06T18:30:55.429Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--37743937-066a-4297-accf-999bb844c1bc", - "modified": "2021-01-06T18:30:55.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--a9e3ea5d-8d03-4ba6-8ce9-4312485e26f4", - "modified": "2021-01-06T18:30:55.430Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--ef0441d1-747a-45ad-8b7b-8f6c4f8ad297", - "modified": "2021-01-06T18:30:55.430Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.431Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.685Z", "id": "relationship--af5638ff-d2f9-492c-b1ce-5966e1999b05", - "modified": "2021-01-06T18:30:55.431Z", + "modified": "2021-01-13T01:52:44.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.685Z", "id": "relationship--383f7082-d770-4e7a-9b87-219d54bbb3ea", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.686Z", "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.686Z", "id": "relationship--ebea4a1f-4ce1-407c-9fbb-9221eeb22f1c", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0d1307da-4f68-4552-8fbe-67ccd889ba21", - "modified": "2021-01-06T18:30:55.434Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--457c36c9-a4bb-4306-b959-80c90dac9ed9", - "modified": "2021-01-06T18:30:55.434Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--ad357f53-e123-41bf-ac7c-3a3ac86b7205", - "modified": "2021-01-06T18:30:55.434Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:55.434Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--d0eeb07f-16ba-4919-8827-c6ba2f10c364", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--cd64a8a5-f8ab-4df5-b3d1-6a9a2f8026f7", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--0375056a-084e-4490-9c7b-1107c1b1951b", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--38c64374-b45c-4706-ace1-175d6ea03309", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c01591b9-5a7c-4ee0-bce5-4b0bb2bbc65e", - "modified": "2021-01-06T18:30:55.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--343b15c4-28f1-4eee-8a2e-ab18aa8262ed", - "modified": "2021-01-06T18:30:55.436Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--dc77c78a-f9b7-496d-9a21-f6470f898e29", - "modified": "2021-01-06T18:30:55.436Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e793f5d1-1d38-4ffe-b035-98e51ad462b2", - "modified": "2021-01-06T18:30:55.436Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--84cd81b3-d7cc-49e7-a2e2-dc0001cef7a3", - "modified": "2021-01-06T18:30:55.436Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--52baf997-94f4-47a6-97b2-0ca525993b6f", - "modified": "2021-01-06T18:30:55.437Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--44c5695c-ecf7-4d8c-9f1c-e8a7c78afb70", - "modified": "2021-01-06T18:30:55.437Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fc9ca50-d7c3-4796-983b-949f68bcecbf", - "modified": "2021-01-06T18:30:55.437Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.689Z", "id": "relationship--e767f66f-b27b-4134-bb91-5e781c0da514", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.689Z", "id": "relationship--f914b54e-79c3-4e4e-ad34-697ae9ae2b94", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--8d80ac3a-a7eb-47ff-beb1-7a64c212189c", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--4466699e-1162-49d3-b246-2d82b1f96821", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e6620622-c001-48b5-94d4-40a3385dbf2f", - "modified": "2021-01-06T18:30:55.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--d1fb6180-3455-43d2-a620-f10be54a9d46", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--8e99b55b-bb7d-48fc-9658-21dd2c06bd15", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:55.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.440Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--de830a6b-02b9-45db-8c92-ebc7beb0e388", - "modified": "2021-01-06T18:30:55.440Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--4a1a9566-9d6a-4b7d-afab-dbe0027b876b", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--449fffc9-50f3-45df-b0b8-7c7ebf7c8a67", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.692Z", "id": "relationship--87d82cc4-c5df-488e-87f5-61a4379caec4", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--6af13181-b4e4-4ab2-a5de-898271eebdc9", - "modified": "2021-01-06T18:30:55.442Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--e886f4fa-5b1a-4e4e-919d-0e6240a1c94d", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--45e6f27c-c00c-400f-817f-b3d98b2f8b0e", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--4b6ea033-58b7-4ed4-af69-51f8f2c9b0bc", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--be1ca806-609f-424e-b67d-06a49e99d9ec", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--d7ebea81-2f31-4aab-9edd-6c7447654275", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--65ba0724-10c3-405f-9ecc-1701bc3036a3", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.444Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:55.444Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--b3452bed-b4c9-4ca4-93ca-8a60dbfaf59a", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--18f4767f-589e-4b85-b7cc-ec967d809183", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--4c663817-68d4-4c9c-95f0-b9c2a26a37a5", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.446Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.696Z", "id": "relationship--3f3a7b36-b82d-4ca2-b485-b2b98b8dcea9", - "modified": "2021-01-06T18:30:55.446Z", + "modified": "2021-01-13T01:52:44.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.446Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.696Z", "id": "relationship--09379e67-0008-4f0d-9721-602cd317f55d", - "modified": "2021-01-06T18:30:55.446Z", + "modified": "2021-01-13T01:52:44.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.448Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--e7168f2a-7711-4dbd-a93c-7ff6680ef6d5", - "modified": "2021-01-06T18:30:55.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.448Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:55.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4f12d12c-c414-40f5-8279-6275ee38e213", - "modified": "2021-01-06T18:30:55.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--952e8b02-f68e-46c3-a7dd-182247b6a46c", - "modified": "2021-01-06T18:30:55.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3f9435dd-9b77-4136-9dc4-b4d8915255c0", - "modified": "2021-01-06T18:30:55.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--9332b25d-8538-454d-b001-e034f9976943", - "modified": "2021-01-06T18:30:55.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--fb809a9e-3945-4a0f-bb74-cdc0996568fb", - "modified": "2021-01-06T18:30:55.450Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--613ac41e-ae28-406b-8b8e-f287af930c36", - "modified": "2021-01-06T18:30:55.450Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.698Z", "id": "relationship--84e0f894-fac6-4ce8-8ed3-c17614d24e04", - "modified": "2021-01-06T18:30:55.450Z", + "modified": "2021-01-13T01:52:44.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--62e142ed-7eae-4548-aafd-43a9b4553b86", - "modified": "2021-01-06T18:30:55.450Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:55.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3daf04d3-c35c-457a-a9b5-69a5d62b9c70", - "modified": "2021-01-06T18:30:55.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0d2278e7-ae41-48ed-a784-209b736b36e9", - "modified": "2021-01-06T18:30:55.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:55.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.699Z", "id": "relationship--9fd4d561-a38f-47a4-a99f-2a7af10c75e6", - "modified": "2021-01-06T18:30:55.451Z", + "modified": "2021-01-13T01:52:44.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.453Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d4ec633a-e81a-493b-a94a-ce495110eb8f", - "modified": "2021-01-06T18:30:55.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.453Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0650f8a1-9ba2-4eef-acd7-55b5e6dbbfab", - "modified": "2021-01-06T18:30:55.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.700Z", "id": "relationship--2aa919ef-c6aa-4555-8625-6e30fc24a8fb", - "modified": "2021-01-06T18:30:55.454Z", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.700Z", "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.454Z", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.700Z", "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:55.454Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.454Z", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", - "id": "relationship--39c1ddf8-d933-437c-9cbc-b1d3ff95eb91", - "modified": "2021-01-06T18:30:55.456Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", - "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:55.456Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.702Z", "id": "relationship--597c5405-f448-4347-b9a5-57afe34dd36d", - "modified": "2021-01-06T18:30:55.456Z", + "modified": "2021-01-13T01:52:44.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--97e1c6e5-910a-408a-bdc2-4e9d1b2a1443", - "modified": "2021-01-06T18:30:55.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:55.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9e2ffac3-72a9-4fc7-b8d9-453329ba3335", - "modified": "2021-01-06T18:30:55.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:55.459Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.703Z", "id": "relationship--9c911c12-6347-461e-b897-be4ff7aa8029", - "modified": "2021-01-06T18:30:55.459Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c13daa0-e29a-447d-983a-4bb307ded65d", - "modified": "2021-01-06T18:30:55.459Z", + "modified": "2021-01-13T01:52:44.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fcfa1d00-709b-4983-9828-0bd3a2e8ce7b", - "modified": "2021-01-06T18:30:55.459Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.460Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:55.460Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.461Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.704Z", "id": "relationship--0f7c00ed-aa9f-4c2d-841a-e187e722e081", - "modified": "2021-01-06T18:30:55.461Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2fede993-15e0-4744-8a9a-6d59f4627ba7", - "modified": "2021-01-06T18:30:55.462Z", + "modified": "2021-01-13T01:52:44.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49541de1-713a-4694-9466-a6e735e9a82b", - "modified": "2021-01-06T18:30:55.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c1906084-8752-4576-8dba-d44031695bf2", - "modified": "2021-01-06T18:30:55.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.464Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.705Z", "id": "relationship--7f85a758-df7d-4e66-a4f5-c57ff65914f6", - "modified": "2021-01-06T18:30:55.464Z", + "modified": "2021-01-13T01:52:44.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.464Z", - "description": "User Access Permissions", - "id": "relationship--a0e1e7eb-43ef-4724-aa3b-333de3656730", - "modified": "2021-01-06T18:30:55.464Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.467Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.706Z", "id": "relationship--821f0af6-6620-41cb-8ab7-668e807fa2e5", - "modified": "2021-01-06T18:30:55.467Z", + "modified": "2021-01-13T01:52:44.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--f3b30724-42d7-4d11-b7f1-2b698cfc0c50", - "modified": "2021-01-06T18:30:55.468Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:55.468Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:55.468Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--b9d42f57-939b-4d8e-aa47-7f1d0bf2d396", - "modified": "2021-01-06T18:30:55.468Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--3368a140-3117-430e-837b-1127fe2d26f8", - "modified": "2021-01-06T18:30:55.469Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:55.469Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.707Z", "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:55.469Z", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.471Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.708Z", "id": "relationship--09f881be-6c0e-459b-bbe7-eda42fbcbb04", - "modified": "2021-01-06T18:30:55.471Z", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.708Z", "id": "relationship--b39bb32a-8efb-453f-a363-e605d842eadf", - "modified": "2021-01-06T18:30:55.472Z", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.708Z", "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:55.472Z", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.708Z", "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:55.472Z", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.475Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.709Z", "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:55.475Z", + "modified": "2021-01-13T01:52:44.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.475Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.709Z", "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:55.475Z", + "modified": "2021-01-13T01:52:44.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.476Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.710Z", "id": "relationship--ea856c27-b752-40b1-8b20-bf2cec8c5cf2", - "modified": "2021-01-06T18:30:55.476Z", + "modified": "2021-01-13T01:52:44.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.710Z", "id": "relationship--e4491539-43c1-46a4-8dad-9a4f083ccc80", - "modified": "2021-01-06T18:30:55.477Z", + "modified": "2021-01-13T01:52:44.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--082b0cc3-c099-45b7-8ea0-a970d3a9b221", - "modified": "2021-01-06T18:30:55.477Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:55.477Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:55.477Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:55.477Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--f96c0a63-e6c2-491a-9871-64aaed004469", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.711Z", "id": "relationship--abc4db02-5923-4028-960e-4cf20a8a5790", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.712Z", "id": "relationship--ab6f7dee-e57e-4cf9-92ca-1f0e2af04b58", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.712Z", "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.712Z", "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.712Z", "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:55.478Z", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:55.480Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:55.480Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:55.480Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.485Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.717Z", "id": "relationship--96457e88-0391-4c7d-b235-04ce81004909", - "modified": "2021-01-06T18:30:55.485Z", + "modified": "2021-01-13T01:52:44.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--7be00ab2-d7e9-4732-9c71-6eedd4bbbf44", - "modified": "2021-01-06T18:30:55.486Z", + "created": "2021-01-13T01:52:44.718Z", + "id": "relationship--ecd6c2df-2a15-44c5-9ca3-82bf7d10566c", + "modified": "2021-01-13T01:52:44.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--ecd6c2df-2a15-44c5-9ca3-82bf7d10566c", - "modified": "2021-01-06T18:30:55.486Z", + "created": "2021-01-13T01:52:44.718Z", + "id": "relationship--1b33e2af-a1d8-4a57-95ae-8956c99a4071", + "modified": "2021-01-13T01:52:44.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--3bd3e974-ae5a-41e2-9b0b-2353d92334d2", - "modified": "2021-01-06T18:30:55.486Z", + "created": "2021-01-13T01:52:44.719Z", + "id": "relationship--0d8de87a-d68e-4310-9034-16e8578d261c", + "modified": "2021-01-13T01:52:44.719Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:55.486Z", + "created": "2021-01-13T01:52:44.720Z", + "id": "relationship--a8402d2f-d8db-4f15-a7fb-b62e7942ecb3", + "modified": "2021-01-13T01:52:44.720Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--05081acb-f547-453f-bad1-002891ac22e7", - "modified": "2021-01-06T18:30:55.487Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--e6dbb362-7397-4456-86d1-6710f26b7111", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:55.487Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--ab2e9f69-d9fd-419b-ba4e-258e87190757", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--1b33e2af-a1d8-4a57-95ae-8956c99a4071", - "modified": "2021-01-06T18:30:55.487Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--a5ea6bdb-993f-48e4-a7d9-35994dfe3ccd", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--4981efd9-1791-492c-8757-74bce2bec610", - "modified": "2021-01-06T18:30:55.487Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--53ff1f65-0f9b-44e2-b945-4e846dfaa6f2", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.488Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0d8de87a-d68e-4310-9034-16e8578d261c", - "modified": "2021-01-06T18:30:55.488Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--d5dd2ae2-fd28-49e3-8514-e73f9ec29ab0", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.488Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:55.488Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--51ab6b7e-50c0-42fd-8769-7b13fd2e05c2", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f9275823-4ebd-4533-900c-958d31aaf240", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.724Z", + "id": "relationship--ef72208e-12ca-45d2-b132-f2d9295e7ae3", + "modified": "2021-01-13T01:52:44.724Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.724Z", + "id": "relationship--04a91f8a-d067-4101-9b92-29b09499b605", + "modified": "2021-01-13T01:52:44.724Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a055c63e-e4c1-4298-8068-fb3f5bc87b22", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--a06cc15a-68de-4710-bed8-aae8c4ecddcd", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--84a4027c-7039-436c-aa1f-151042db3f9e", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--51a5c9e3-93d8-4bc8-ac5f-3140135872bc", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--cfa9b2c8-20b3-4781-a33c-2a2a13ca61f8", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.726Z", + "id": "relationship--685dafcb-6537-4f16-86bc-7cc45d27e13a", + "modified": "2021-01-13T01:52:44.726Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a8402d2f-d8db-4f15-a7fb-b62e7942ecb3", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.728Z", + "id": "relationship--fefd14be-4f64-4889-87ae-da707153fa94", + "modified": "2021-01-13T01:52:44.728Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.729Z", + "id": "relationship--d9ce3394-0060-4320-8f50-8ae293260cb7", + "modified": "2021-01-13T01:52:44.729Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4bec2cea-959e-4e8f-9c4c-4191de7723b2", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.733Z", + "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", + "modified": "2021-01-13T01:52:44.733Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.734Z", + "id": "relationship--158f41c7-4ec4-4a53-a192-15a84b390b65", + "modified": "2021-01-13T01:52:44.734Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--31c401fb-0470-48d9-bdfb-a71e796556ca", - "modified": "2021-01-06T18:30:55.489Z", + "created": "2021-01-13T01:52:44.735Z", + "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", + "modified": "2021-01-13T01:52:44.735Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.736Z", + "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", + "modified": "2021-01-13T01:52:44.736Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.737Z", + "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", + "modified": "2021-01-13T01:52:44.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.738Z", + "id": "relationship--876c8180-287f-430e-ba0b-6913570d8be2", + "modified": "2021-01-13T01:52:44.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--2e4667c6-e981-49af-8d1b-deccecaa5d71", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--97b997f5-d123-494c-9e88-6c8f3a75ae1b", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--87663848-c530-4f61-968e-c48fe2d4d8b8", - "modified": "2021-01-06T18:30:55.490Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--519c06f6-13b6-4b8a-888e-77bccacd9b6f", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.491Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.491Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--462a2a87-71e2-46dc-966e-294680ff9c87", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e6dbb362-7397-4456-86d1-6710f26b7111", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--4bbaa3e5-3ae2-41ef-8ff0-ab09985ec239", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--f4fed9c8-f324-4871-b13b-dc799c5c607e", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--b576bad2-950a-40ef-aa7d-e2faad9197ff", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--ab2e9f69-d9fd-419b-ba4e-258e87190757", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--8499d3cd-fc46-4fbd-a3ec-0c05603f0c16", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--23b2bf27-97be-44ff-8ede-c0f02cce6237", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--c0c5f6f8-fb26-4151-b07e-f07817cbee3c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--9c748826-f917-41af-aa3b-5436c819e534", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--a9090825-c14f-4650-94e3-88fe861c61b1", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--0711396f-8746-454e-ae38-29a3bf04713c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:55.492Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--7b9d3036-c54b-4038-a8ac-2775c5fbb37c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--a5ea6bdb-993f-48e4-a7d9-35994dfe3ccd", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--962d2637-230a-45c5-b562-db3618c4e8b7", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bb23020c-486e-4ecd-b529-72b80853f1c5", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--eb344fce-ef44-4ad4-99b6-32f8202afeed", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--53ff1f65-0f9b-44e2-b945-4e846dfaa6f2", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--4b3b4525-49c0-405a-b95c-a08c24f797a6", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--834402f8-f070-4509-94c7-cfd5f43b7d15", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--f7f2a1d5-5602-4305-a67f-03caa9173032", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--d5dd2ae2-fd28-49e3-8514-e73f9ec29ab0", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--ff85dbc1-61ff-4fee-9204-baa8f3c7f8bb", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--f28dfcdd-0b23-4956-b8f7-fb7823a1d8f4", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--e6f75574-8aee-4d4a-9ca6-daaebb27da21", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:55.493Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--4902b4a4-3ed5-4324-83eb-dd60ace5a6ec", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--c9a0a962-532b-42d1-b3c3-12b73746a664", - "modified": "2021-01-06T18:30:55.494Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--dadbb1f9-b32c-458c-b760-573037fca786", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:55.494Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--ade67d29-281f-417d-b176-8789b931532f", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--51ab6b7e-50c0-42fd-8769-7b13fd2e05c2", - "modified": "2021-01-06T18:30:55.494Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--b8dd7f10-e9c7-491a-92b4-2505aea30e42", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--d348da1d-9a96-48c2-aae4-8cab44cd5f76", - "modified": "2021-01-06T18:30:55.494Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--03d9df1a-dca1-4263-9e8c-c306255ecc27", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ef72208e-12ca-45d2-b132-f2d9295e7ae3", - "modified": "2021-01-06T18:30:55.495Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--833db13a-a17c-4f70-96d0-984352bd9adc", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7464e95-df43-41df-aab2-945d6a4945eb", - "modified": "2021-01-06T18:30:55.495Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--4befa13d-c8a1-4971-8668-295f3e426c61", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--04a91f8a-d067-4101-9b92-29b09499b605", - "modified": "2021-01-06T18:30:55.495Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--82d019b5-4d23-4dc1-9827-87493f64c4b3", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fa5cb2bc-bc29-4b2f-8ad8-4c6b9259bdba", - "modified": "2021-01-06T18:30:55.495Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--1dd1c635-bc68-4e21-b4fe-f30b1eafc2f4", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:55.495Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--e04b76a7-b55d-443e-b80b-b7f64de287f3", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--446497f2-61b4-4ecc-8547-01cbf2f9ad4e", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--916dedf8-f5c5-4f82-9ebd-71bedc3a22d2", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--4dbb41d1-15f6-4265-b6bc-40081d6e1890", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a06cc15a-68de-4710-bed8-aae8c4ecddcd", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.750Z", + "id": "relationship--8d954dba-b324-4d89-a2a4-ea84104c37b7", + "modified": "2021-01-13T01:52:44.750Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--05a6a2b1-5472-4559-b323-d68325ad4e58", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.750Z", + "id": "relationship--48fe31d3-c594-40ea-9bde-8f318d55c476", + "modified": "2021-01-13T01:52:44.750Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--84a4027c-7039-436c-aa1f-151042db3f9e", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.751Z", + "id": "relationship--732f886b-a064-4841-86b7-bf884d4212ef", + "modified": "2021-01-13T01:52:44.751Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--02f94296-e603-4c4a-ba23-58c76de3d10f", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cfa9b2c8-20b3-4781-a33c-2a2a13ca61f8", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--e766de42-ac9a-438a-8e7e-7b0e6284893d", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ec883b32-681e-4355-9107-dadd4cd28a24", - "modified": "2021-01-06T18:30:55.496Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--6fa223b7-4d39-4b81-b47d-939453ad445c", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.497Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--0bed09ac-ed4a-4797-883f-ffb83bdd0d17", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:55.497Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.497Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--fb9ecaed-1980-4474-9a3f-0d6696216af7", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--685dafcb-6537-4f16-86bc-7cc45d27e13a", - "modified": "2021-01-06T18:30:55.497Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--a8c58466-3a32-4d33-9418-f30fbf2c0e4a", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:55.497Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--a6ab8d23-1afa-4339-8aa9-e750b363b71a", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--1381bb4d-1e81-422d-8495-e1527ee02f8d", - "modified": "2021-01-06T18:30:55.498Z", + "created": "2021-01-13T01:52:44.754Z", + "id": "relationship--7dc07117-84a7-4c99-aedb-1c66321c5cef", + "modified": "2021-01-13T01:52:44.754Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:55.498Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--77084b00-de9f-4407-825f-11ec2b8b006c", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:55.498Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--ec4ea374-a1e7-481a-bb5a-d8f7e7a79333", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:55.498Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--660670ed-503c-4bf4-b05f-c2a03c6057a2", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:55.499Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--ec40187d-b35e-4166-b323-62d9e2946c0f", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:55.499Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--64bc94fb-c89a-48cf-8654-29e487a25444", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--fefd14be-4f64-4889-87ae-da707153fa94", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--920c76c7-ed9b-4b0f-8de1-d20cd774fd6e", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71f3a6c8-774d-4247-8685-04cac7fcc1dd", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c617e38c-444b-4f55-8b6d-88907cf20bc8", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d9ce3394-0060-4320-8f50-8ae293260cb7", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--fe3aa1fa-370c-4d7d-a577-4cdb8e4e693f", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--580444d2-c717-4028-bac4-7002d3968a74", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--07c96bc7-fb23-4b28-886f-b7c95a734048", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--741a9be9-dd96-4304-b651-4f1061d6a8d5", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d0be160e-dbcb-4f99-9cd2-e0174aa05485", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.506Z", - "description": "Continuous Monitoring", - "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", - "modified": "2021-01-06T18:30:55.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.507Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--158f41c7-4ec4-4a53-a192-15a84b390b65", - "modified": "2021-01-06T18:30:55.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.507Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:55.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.508Z", - "description": "Information System Monitoring", - "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", - "modified": "2021-01-06T18:30:55.508Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.509Z", - "description": "Boundary Protection", - "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", - "modified": "2021-01-06T18:30:55.509Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--90a108ef-4ae5-45f6-97dd-3de7535f01f1", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.511Z", - "description": "Continuous Monitoring", - "id": "relationship--876c8180-287f-430e-ba0b-6913570d8be2", - "modified": "2021-01-06T18:30:55.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--db40f2f1-2a22-4ccf-97a7-dbfbc2de9378", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.513Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--2e4667c6-e981-49af-8d1b-deccecaa5d71", - "modified": "2021-01-06T18:30:55.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.513Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", - "modified": "2021-01-06T18:30:55.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.514Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--97b997f5-d123-494c-9e88-6c8f3a75ae1b", - "modified": "2021-01-06T18:30:55.514Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--519c06f6-13b6-4b8a-888e-77bccacd9b6f", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--462a2a87-71e2-46dc-966e-294680ff9c87", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4bbaa3e5-3ae2-41ef-8ff0-ab09985ec239", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2938c748-1ed5-4fe8-874e-2ba5746e4f48", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b576bad2-950a-40ef-aa7d-e2faad9197ff", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--8499d3cd-fc46-4fbd-a3ec-0c05603f0c16", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c0c5f6f8-fb26-4151-b07e-f07817cbee3c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--d5814d8a-fb01-46e9-b1bb-2366e8ccb89d", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--9c748826-f917-41af-aa3b-5436c819e534", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--0711396f-8746-454e-ae38-29a3bf04713c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--7b9d3036-c54b-4038-a8ac-2775c5fbb37c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--fbc08dc7-499d-4efc-ab09-3b0871289793", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--962d2637-230a-45c5-b562-db3618c4e8b7", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--eb344fce-ef44-4ad4-99b6-32f8202afeed", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4b3b4525-49c0-405a-b95c-a08c24f797a6", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b8ae63ec-1d64-4bda-8b67-bb4eb9e233eb", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--f7f2a1d5-5602-4305-a67f-03caa9173032", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--ff85dbc1-61ff-4fee-9204-baa8f3c7f8bb", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--e6f75574-8aee-4d4a-9ca6-daaebb27da21", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--57bb1c15-f067-4c93-bec7-f9546792ec11", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4902b4a4-3ed5-4324-83eb-dd60ace5a6ec", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--dadbb1f9-b32c-458c-b760-573037fca786", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--ade67d29-281f-417d-b176-8789b931532f", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2a9bac3c-9fe7-4a45-8fd7-10d1e207f130", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b8dd7f10-e9c7-491a-92b4-2505aea30e42", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--03d9df1a-dca1-4263-9e8c-c306255ecc27", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--833db13a-a17c-4f70-96d0-984352bd9adc", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--02f7cfd1-9b6a-4c63-af56-2fe7498e3737", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4befa13d-c8a1-4971-8668-295f3e426c61", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--82d019b5-4d23-4dc1-9827-87493f64c4b3", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1dd1c635-bc68-4e21-b4fe-f30b1eafc2f4", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1c533911-eb8e-4ef5-8dd5-ec73b2142c7d", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.522Z", - "description": "Protection of Information at Rest", - "id": "relationship--e04b76a7-b55d-443e-b80b-b7f64de287f3", - "modified": "2021-01-06T18:30:55.522Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--916dedf8-f5c5-4f82-9ebd-71bedc3a22d2", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--4dbb41d1-15f6-4265-b6bc-40081d6e1890", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--e8259d5d-bc0e-4fa4-8963-f51d9bbb744d", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--8d954dba-b324-4d89-a2a4-ea84104c37b7", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--4f056248-8f91-43f2-9970-9b7778f7938e", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--108d7507-bb7b-4c1f-82bf-8a204a99d2f0", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--48fe31d3-c594-40ea-9bde-8f318d55c476", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--2a992511-14dd-4640-9345-5a2986f5cf67", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--168202fe-3487-4c95-98ec-b9addb432abf", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--732f886b-a064-4841-86b7-bf884d4212ef", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.527Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--951e308f-a84d-42da-9b3c-186a5e9ff092", - "modified": "2021-01-06T18:30:55.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.527Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca6bc792-4bfc-47a6-aaaf-2993a946dcb0", - "modified": "2021-01-06T18:30:55.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--02f94296-e603-4c4a-ba23-58c76de3d10f", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--e766de42-ac9a-438a-8e7e-7b0e6284893d", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--6fa223b7-4d39-4b81-b47d-939453ad445c", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--0bed09ac-ed4a-4797-883f-ffb83bdd0d17", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--fb9ecaed-1980-4474-9a3f-0d6696216af7", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--a8c58466-3a32-4d33-9418-f30fbf2c0e4a", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.530Z", - "description": "Information System Monitoring", - "id": "relationship--a6ab8d23-1afa-4339-8aa9-e750b363b71a", - "modified": "2021-01-06T18:30:55.530Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--7dc07117-84a7-4c99-aedb-1c66321c5cef", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--77084b00-de9f-4407-825f-11ec2b8b006c", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--ec4ea374-a1e7-481a-bb5a-d8f7e7a79333", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--660670ed-503c-4bf4-b05f-c2a03c6057a2", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--ec40187d-b35e-4166-b323-62d9e2946c0f", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.755Z", "id": "relationship--8e3a2f42-ba76-4703-b9cd-fee2eaea4a0c", - "modified": "2021-01-06T18:30:55.532Z", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.755Z", "id": "relationship--446b6a68-a1fc-4170-950f-af7a4066aed9", - "modified": "2021-01-06T18:30:55.532Z", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.755Z", "id": "relationship--f6a668ac-6fe7-4a72-b85d-989dc38866f2", - "modified": "2021-01-06T18:30:55.533Z", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.755Z", "id": "relationship--3e46cf76-0a60-4128-b662-b9434c42c200", - "modified": "2021-01-06T18:30:55.533Z", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--b8e4ce24-2c11-4339-b5b2-8609533d6098", - "modified": "2021-01-06T18:30:55.533Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--bb996652-c96b-4110-8976-9020a4d7a6d8", - "modified": "2021-01-06T18:30:55.533Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--d3d58027-9786-4318-8437-1f95a95c353a", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--f707faca-73cc-4e70-85f4-81bc7945d948", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--26ab7bd2-2775-4174-a33f-fa4a9d51897c", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--6cecb992-1204-4f09-946d-e7e005175642", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--4e75bebe-f52c-46f3-b4c5-763dcd8da86f", - "modified": "2021-01-06T18:30:55.534Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.756Z", "id": "relationship--f6300e49-0277-45fe-9b4e-b881d2bb2e15", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.757Z", "id": "relationship--81ca3def-acc7-4c95-99d2-9d496a9afed6", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.757Z", "id": "relationship--9a6e4479-d15d-4035-a19a-2762090d661b", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.757Z", "id": "relationship--be57f24c-1fd5-409b-8610-778ea0990aad", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.757Z", "id": "relationship--2a4711c7-f788-426c-b75a-dde62c583536", - "modified": "2021-01-06T18:30:55.535Z", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.536Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", + "created": "2021-01-13T01:52:44.757Z", "id": "relationship--0019b0a8-7658-4104-8f89-bd975626036c", - "modified": "2021-01-06T18:30:55.536Z", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.758Z", "id": "relationship--ceab6250-1c09-41bf-84d0-6a806f4d870a", - "modified": "2021-01-06T18:30:55.537Z", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.758Z", "id": "relationship--cf5707c2-e440-4984-be82-72b5c46f6380", - "modified": "2021-01-06T18:30:55.537Z", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.758Z", "id": "relationship--546971a3-1a74-4dcd-ad4b-c1062ec941ba", - "modified": "2021-01-06T18:30:55.537Z", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.758Z", "id": "relationship--124f2ef9-c6c9-4b7e-b130-54ee31ae94ff", - "modified": "2021-01-06T18:30:55.537Z", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.758Z", "id": "relationship--5c03d8e1-5da6-4ff6-9aca-bc57b8c2ae80", - "modified": "2021-01-06T18:30:55.537Z", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.759Z", "id": "relationship--1a8be10f-54d5-48d7-b084-c3d95047ec55", - "modified": "2021-01-06T18:30:55.539Z", + "modified": "2021-01-13T01:52:44.759Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.759Z", "id": "relationship--019c65ba-0b16-407d-a561-1f9cc87a6d39", - "modified": "2021-01-06T18:30:55.539Z", + "modified": "2021-01-13T01:52:44.759Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.760Z", "id": "relationship--d8dce54f-3a0b-44ab-aa50-77f1da21af73", - "modified": "2021-01-06T18:30:55.539Z", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.760Z", "id": "relationship--3b34afe1-45be-4890-acf5-fd91efa085bc", - "modified": "2021-01-06T18:30:55.539Z", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.760Z", "id": "relationship--e98ea03a-daa1-49db-b7cf-c7f870e83815", - "modified": "2021-01-06T18:30:55.539Z", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.761Z", "id": "relationship--a70dd416-53f4-470b-969a-545a0a3f4d73", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.761Z", "id": "relationship--6796e2d4-e549-4363-bde0-2b3be1463bed", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.761Z", "id": "relationship--0227542d-3a5b-4f6f-9125-899cac6211bc", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.761Z", "id": "relationship--6de4b643-a899-450a-b2de-bf00f3a7a302", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.761Z", "id": "relationship--92dcb6a9-92f9-4d17-b9e4-569c8db728b1", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--7ea6ca54-9084-4b02-b685-8b24e7e11c5c", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.762Z", "id": "relationship--1c8b2866-0ec3-4ebe-bb95-ce55e0a91835", - "modified": "2021-01-06T18:30:55.541Z", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.762Z", "id": "relationship--81a29912-cc7a-48d2-af8d-7673e2420fed", - "modified": "2021-01-06T18:30:55.542Z", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.762Z", "id": "relationship--57e8f8f1-4992-494e-b3c7-08ab3c29c2cd", - "modified": "2021-01-06T18:30:55.542Z", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.762Z", "id": "relationship--781ed8c3-76ef-44ca-aa98-454892152d00", - "modified": "2021-01-06T18:30:55.542Z", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--24cebf34-24bb-4fc3-a327-66e5fa15dd2d", - "modified": "2021-01-06T18:30:55.542Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--2a07bd44-a33f-4f08-a2a6-a060c166fcfb", - "modified": "2021-01-06T18:30:55.542Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--f6de55e6-a492-45c5-ad95-f9a00b832a9d", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--b5e35ff6-2ea9-4d0f-b131-0f243f38bb6a", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--61ae1712-228b-4461-a417-5c9a0b42181e", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--7db3a587-173e-430e-88dd-1e7f343dde23", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--e1095415-de0c-4010-836d-3f1ece66ddf2", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.763Z", "id": "relationship--13d27254-e8ae-444a-803b-205cc838a988", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.764Z", "id": "relationship--511d2c5d-5d5c-4805-a238-6b7d3d33cd9a", - "modified": "2021-01-06T18:30:55.543Z", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.544Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.764Z", "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:55.544Z", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.544Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", + "created": "2021-01-13T01:52:44.764Z", "id": "relationship--d4de1719-a808-4723-b019-0d031c4a3711", - "modified": "2021-01-06T18:30:55.544Z", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--e7e1e85c-880e-477f-9e3c-0cf4f5471804", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--bd3c29ac-a4bf-41e6-be34-50322448241e", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--d222bbcf-a83d-441e-a064-b7d143019afa", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--98b1ff19-f102-4c28-9026-2c432f8307b9", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--a59ddd39-d885-4172-8002-a7f072be29db", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--4c657d3a-0e0b-4c53-8b03-a2e20398ae47", - "modified": "2021-01-06T18:30:55.545Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--01f7f211-e7f7-457a-9841-6ec6117c7649", - "modified": "2021-01-06T18:30:55.546Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.765Z", "id": "relationship--d9eea67f-f203-489d-a0a9-ec896314d16f", - "modified": "2021-01-06T18:30:55.546Z", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.766Z", "id": "relationship--ab8f4931-46a5-4b09-be1c-b08cecbde487", - "modified": "2021-01-06T18:30:55.546Z", + "modified": "2021-01-13T01:52:44.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.766Z", "id": "relationship--9c2756b7-4b83-4cef-9ee5-5081378925bb", - "modified": "2021-01-06T18:30:55.546Z", + "modified": "2021-01-13T01:52:44.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.547Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.767Z", "id": "relationship--63e7f8c0-33f2-47f6-a15d-8ae030f686e6", - "modified": "2021-01-06T18:30:55.547Z", + "modified": "2021-01-13T01:52:44.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.549Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.768Z", "id": "relationship--de586ce6-f005-4bd3-8add-49bed729a58a", - "modified": "2021-01-06T18:30:55.549Z", + "modified": "2021-01-13T01:52:44.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.550Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.769Z", "id": "relationship--657b3634-0536-4e0f-bbd7-2d6b5b717b5d", - "modified": "2021-01-06T18:30:55.550Z", + "modified": "2021-01-13T01:52:44.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.551Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.770Z", "id": "relationship--41383e6b-8a71-48a1-9b47-13692341fc90", - "modified": "2021-01-06T18:30:55.551Z", + "modified": "2021-01-13T01:52:44.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.551Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.770Z", "id": "relationship--e781835c-e298-40bb-bb47-57b484689db3", - "modified": "2021-01-06T18:30:55.551Z", + "modified": "2021-01-13T01:52:44.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.553Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.771Z", "id": "relationship--d2b833f6-4d9f-4160-979a-17dd60b9e415", - "modified": "2021-01-06T18:30:55.553Z", + "modified": "2021-01-13T01:52:44.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.554Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.772Z", "id": "relationship--1a9a0ca2-015d-4b96-bf97-931b8667c048", - "modified": "2021-01-06T18:30:55.554Z", + "modified": "2021-01-13T01:52:44.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.555Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.773Z", "id": "relationship--e886b5ad-8936-4351-8af7-2292cc9eebe7", - "modified": "2021-01-06T18:30:55.555Z", + "modified": "2021-01-13T01:52:44.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.555Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.773Z", "id": "relationship--00d9bb29-25ef-4ac9-9997-536df33491a1", - "modified": "2021-01-06T18:30:55.555Z", + "modified": "2021-01-13T01:52:44.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.556Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.774Z", "id": "relationship--44344df7-46f5-4938-8c22-999cdcebaeaf", - "modified": "2021-01-06T18:30:55.556Z", + "modified": "2021-01-13T01:52:44.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.557Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.774Z", "id": "relationship--d5cccbb1-96db-4e48-9c78-7aefa582398e", - "modified": "2021-01-06T18:30:55.557Z", + "modified": "2021-01-13T01:52:44.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.558Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.775Z", "id": "relationship--20c8b9ea-d8a4-40bb-afdc-db059fcc7d8f", - "modified": "2021-01-06T18:30:55.558Z", + "modified": "2021-01-13T01:52:44.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.559Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.776Z", "id": "relationship--dcafa7e3-bf91-481e-91f3-0a403208d438", - "modified": "2021-01-06T18:30:55.559Z", + "modified": "2021-01-13T01:52:44.776Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--1cf82f32-e00d-4677-af7b-5bc918a22aac", - "modified": "2021-01-06T18:30:55.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:55.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.777Z", "id": "relationship--8e3b1e5f-49a1-4df9-8b60-ee6ed7ffad51", - "modified": "2021-01-06T18:30:55.560Z", + "modified": "2021-01-13T01:52:44.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--5c72f17e-7ba2-4020-bd7e-4056c097de38", - "modified": "2021-01-06T18:30:55.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.778Z", "id": "relationship--a840dd6e-5a69-4a1d-be87-3be44ed59acd", - "modified": "2021-01-06T18:30:55.561Z", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.778Z", "id": "relationship--eaf1a302-9984-488b-bd09-86a46a15884e", - "modified": "2021-01-06T18:30:55.561Z", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.778Z", "id": "relationship--cf03827b-411f-4656-862c-e1696c04110c", - "modified": "2021-01-06T18:30:55.561Z", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.562Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ccf6b20d-404e-43b1-8f22-e1f7cf4e12bb", - "modified": "2021-01-06T18:30:55.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.562Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:55.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.563Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.780Z", "id": "relationship--88db226a-0e93-450b-af8f-18cb0c92ad3c", - "modified": "2021-01-06T18:30:55.563Z", + "modified": "2021-01-13T01:52:44.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.564Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.781Z", "id": "relationship--adb20c35-6fdd-468a-8cb1-67bd640ca676", - "modified": "2021-01-06T18:30:55.564Z", + "modified": "2021-01-13T01:52:44.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.566Z", - "description": "Authenticator Management", - "id": "relationship--071251a2-0d60-4cc9-90f5-2d46e6e37eed", - "modified": "2021-01-06T18:30:55.566Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.569Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--3d76d606-bbcc-48bb-986d-376fc9552032", - "modified": "2021-01-06T18:30:55.569Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--ffa7f32c-d8a5-4477-825f-e8fb3ae24ec8", - "modified": "2021-01-06T18:30:55.570Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--d9008ebe-1d09-4084-9e79-7516bd129de9", - "modified": "2021-01-06T18:30:55.570Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--2500b7a6-bdfd-4d30-bbb4-1607df46edab", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--76e1e539-538c-485b-bf62-5fcf527ac6e4", - "modified": "2021-01-06T18:30:55.570Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--e1dc4a7f-ed75-4ee6-a596-5c5f92f262ef", - "modified": "2021-01-06T18:30:55.570Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.786Z", "id": "relationship--08f3ca6b-278c-4fcf-8578-d0c2a66e8db6", - "modified": "2021-01-06T18:30:55.570Z", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.571Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:55.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", - "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:55.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.788Z", "id": "relationship--f5e6e311-25de-4411-a979-25fee80b117f", - "modified": "2021-01-06T18:30:55.572Z", + "modified": "2021-01-13T01:52:44.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:55.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", - "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:55.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.789Z", "id": "relationship--4c4d3b01-dcc7-4d83-9e36-36a787475b3e", - "modified": "2021-01-06T18:30:55.573Z", + "modified": "2021-01-13T01:52:44.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.789Z", "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:55.573Z", + "modified": "2021-01-13T01:52:44.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.574Z", - "description": "Development Process, Standards, and Tools", + "created": "2021-01-13T01:52:44.790Z", "id": "relationship--32955df9-6cc5-4e78-bf0a-d9828e23d344", - "modified": "2021-01-06T18:30:55.574Z", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.575Z", - "description": "Development Process, Standards, and Tools", + "created": "2021-01-13T01:52:44.790Z", "id": "relationship--62174f33-6221-430c-91e0-18881c10f648", - "modified": "2021-01-06T18:30:55.575Z", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.575Z", - "description": "Development Process, Standards, and Tools", + "created": "2021-01-13T01:52:44.790Z", "id": "relationship--514d7706-feb6-4c80-bec1-2ca9f5ea7919", - "modified": "2021-01-06T18:30:55.575Z", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.577Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.792Z", "id": "relationship--9dd7b879-5cd1-411e-b60c-9f67ff2a42a7", - "modified": "2021-01-06T18:30:55.577Z", + "modified": "2021-01-13T01:52:44.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.577Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:55.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.578Z", - "description": "Account Mangement", - "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:55.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.794Z", "id": "relationship--2f8440ce-f4da-41ba-a5d6-37992543a99c", - "modified": "2021-01-06T18:30:55.579Z", + "modified": "2021-01-13T01:52:44.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--f5aba3e4-a98e-4423-a28c-55cd13054a97", - "modified": "2021-01-06T18:30:55.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--b5616433-ca79-4ae8-bd41-9d8c44be649c", - "modified": "2021-01-06T18:30:55.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.580Z", - "description": "Continuous Monitoring", - "id": "relationship--b4b63a06-a527-4404-ad97-3136e5f99dba", - "modified": "2021-01-06T18:30:55.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.581Z", - "description": "Information System Monitoring", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:55.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.582Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:55.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.582Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:55.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.583Z", - "description": "Access Control Policy and Procedures", + "created": "2021-01-13T01:52:44.798Z", "id": "relationship--a6101bff-5269-4138-9eb0-ae06bc21b3bb", - "modified": "2021-01-06T18:30:55.583Z", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.584Z", - "description": "Access Control Policy and Procedures", + "created": "2021-01-13T01:52:44.798Z", "id": "relationship--534f4c49-12d9-45ba-afb0-7696c5eaee07", - "modified": "2021-01-06T18:30:55.584Z", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.584Z", - "description": "Access Control Policy and Procedures", + "created": "2021-01-13T01:52:44.798Z", "id": "relationship--d7f56c13-6c68-46fe-b0fa-a658fdaddcd7", - "modified": "2021-01-06T18:30:55.584Z", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.585Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.799Z", "id": "relationship--a5de5918-6eaa-4a8a-bb2d-75adb9c6f517", - "modified": "2021-01-06T18:30:55.585Z", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.586Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.799Z", "id": "relationship--61f226af-f878-4c13-ac89-ace930b20ad6", - "modified": "2021-01-06T18:30:55.586Z", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.586Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.799Z", "id": "relationship--5dc0841a-1ea6-43b5-9f6c-5b036516f595", - "modified": "2021-01-06T18:30:55.586Z", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.800Z", "id": "relationship--850f67e4-eceb-43c0-969d-eb9ae5c58801", - "modified": "2021-01-06T18:30:55.587Z", + "modified": "2021-01-13T01:52:44.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.800Z", "id": "relationship--28fedaa6-befc-4753-9755-f443a4c1f218", - "modified": "2021-01-06T18:30:55.587Z", + "modified": "2021-01-13T01:52:44.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.801Z", "id": "relationship--7c60d2b5-a4b2-4ff1-999a-0a20e4467f64", - "modified": "2021-01-06T18:30:55.587Z", + "modified": "2021-01-13T01:52:44.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", + "created": "2021-01-13T01:52:44.802Z", "id": "relationship--0805d89e-8b3e-455b-ac15-1236ebb9323f", - "modified": "2021-01-06T18:30:55.588Z", + "modified": "2021-01-13T01:52:44.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", + "created": "2021-01-13T01:52:44.813Z", "id": "relationship--e73da978-37ea-4e0d-af21-d1d80a698494", - "modified": "2021-01-06T18:30:55.588Z", + "modified": "2021-01-13T01:52:44.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", + "created": "2021-01-13T01:52:44.813Z", "id": "relationship--d57b106c-b809-4365-80e1-f1f6b37ca16a", - "modified": "2021-01-06T18:30:55.588Z", + "modified": "2021-01-13T01:52:44.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.814Z", "id": "relationship--0c93d061-43e0-407e-bf44-15f8ae345cf4", - "modified": "2021-01-06T18:30:55.589Z", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.814Z", "id": "relationship--f19df5b1-a0ad-4570-a996-18a03233f646", - "modified": "2021-01-06T18:30:55.589Z", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.814Z", "id": "relationship--7801cb95-fa03-43c9-9817-f53988e2a944", - "modified": "2021-01-06T18:30:55.589Z", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c38f05bb-49c6-419c-9e14-3755a3983255", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b7b94f3-27fa-4798-aa75-14cee788060a", - "modified": "2021-01-06T18:30:55.590Z", + "created": "2021-01-13T01:52:44.814Z", + "id": "relationship--8b7b94f3-27fa-4798-aa75-14cee788060a", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d1fb6180-3455-43d2-a620-f10be54a9d46", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8e99b55b-bb7d-48fc-9658-21dd2c06bd15", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.591Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.816Z", "id": "relationship--eac20450-8fa9-4d6f-a142-b46dca476f89", - "modified": "2021-01-06T18:30:55.591Z", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.816Z", "id": "relationship--186849df-68b4-486d-b123-2d946b58ae95", - "modified": "2021-01-06T18:30:55.592Z", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.816Z", "id": "relationship--219bb9fb-c1e7-484c-8edc-1bae0ee2330b", - "modified": "2021-01-06T18:30:55.592Z", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.816Z", "id": "relationship--f3512446-d754-4c3b-b663-b859184270ee", - "modified": "2021-01-06T18:30:55.592Z", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.817Z", "id": "relationship--2dce911e-892e-4b00-909a-f900ba8c3ac3", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.817Z", "id": "relationship--3cb42d40-33da-4e60-8ea9-81ad2d1af020", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.817Z", "id": "relationship--6401a018-cfa9-41e7-8e43-ae2fa9b91ca2", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.817Z", "id": "relationship--eba33dcd-b96e-4ff2-9d57-20482d48c6fc", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.817Z", "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.818Z", "id": "relationship--81d97f1f-556b-438c-b580-371db457ce8a", - "modified": "2021-01-06T18:30:55.593Z", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.594Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.818Z", "id": "relationship--a9a4bc11-aaf2-4b9a-bd7d-868a37fc652b", - "modified": "2021-01-06T18:30:55.594Z", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.594Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.818Z", "id": "relationship--2613da88-0ef7-4661-aebc-5dec9d776061", - "modified": "2021-01-06T18:30:55.594Z", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", + "created": "2021-01-13T01:52:44.819Z", "id": "relationship--651364df-6ef9-4d6e-a9a3-49fa2f14b513", - "modified": "2021-01-06T18:30:55.595Z", + "modified": "2021-01-13T01:52:44.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--457c36c9-a4bb-4306-b959-80c90dac9ed9", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--ad357f53-e123-41bf-ac7c-3a3ac86b7205", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", + "created": "2021-01-13T01:52:44.819Z", "id": "relationship--4e118dfd-6da9-4b02-9d87-68c93db121b7", - "modified": "2021-01-06T18:30:55.595Z", + "modified": "2021-01-13T01:52:44.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--cd64a8a5-f8ab-4df5-b3d1-6a9a2f8026f7", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--0375056a-084e-4490-9c7b-1107c1b1951b", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.596Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--38c64374-b45c-4706-ace1-175d6ea03309", - "modified": "2021-01-06T18:30:55.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.596Z", - "description": "Authenticator Management, ", + "created": "2021-01-13T01:52:44.820Z", "id": "relationship--a237da69-b656-4279-a5f8-0b2af22bc32a", - "modified": "2021-01-06T18:30:55.596Z", + "modified": "2021-01-13T01:52:44.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", + "created": "2021-01-13T01:52:44.820Z", "id": "relationship--98de23fb-caad-4e24-a6b4-762c16d12bf1", - "modified": "2021-01-06T18:30:55.597Z", + "modified": "2021-01-13T01:52:44.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", + "created": "2021-01-13T01:52:44.821Z", "id": "relationship--b020c338-3637-4543-96c7-5aa6572e6c0f", - "modified": "2021-01-06T18:30:55.597Z", + "modified": "2021-01-13T01:52:44.821Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", - "id": "relationship--db295f3f-c1ae-485f-a44b-5b97a8334776", - "modified": "2021-01-06T18:30:55.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.598Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:55.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.598Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.599Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--597c5405-f448-4347-b9a5-57afe34dd36d", - "modified": "2021-01-06T18:30:55.599Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.599Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.823Z", "id": "relationship--f53f01bf-47d6-4e52-ad2e-f4f5522a283f", - "modified": "2021-01-06T18:30:55.599Z", + "modified": "2021-01-13T01:52:44.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.601Z", - "description": "Remote Access", - "id": "relationship--9fd4d561-a38f-47a4-a99f-2a7af10c75e6", - "modified": "2021-01-06T18:30:55.601Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.602Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", + "created": "2021-01-13T01:52:44.824Z", "id": "relationship--bf10402a-9da0-4d94-9a9b-9817e95af199", - "modified": "2021-01-06T18:30:55.602Z", + "modified": "2021-01-13T01:52:44.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.602Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--2026f4a3-401c-4017-89ae-4a2ee866ff2a", - "modified": "2021-01-06T18:30:55.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.825Z", "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:55.603Z", + "modified": "2021-01-13T01:52:44.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.826Z", "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:55.603Z", + "modified": "2021-01-13T01:52:44.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.604Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.827Z", "id": "relationship--52ed4c6a-fc9e-48fd-9c8d-7a834a824742", - "modified": "2021-01-06T18:30:55.604Z", + "modified": "2021-01-13T01:52:44.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.605Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.827Z", "id": "relationship--e6a92422-115d-448f-98e7-55e4d0c9c194", - "modified": "2021-01-06T18:30:55.605Z", + "modified": "2021-01-13T01:52:44.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.606Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.828Z", "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:55.606Z", + "modified": "2021-01-13T01:52:44.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.606Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.828Z", "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:55.606Z", + "modified": "2021-01-13T01:52:44.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.608Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.829Z", "id": "relationship--538ebdad-5685-4a0f-9ed8-785d853b5e52", - "modified": "2021-01-06T18:30:55.608Z", + "modified": "2021-01-13T01:52:44.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.609Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.829Z", "id": "relationship--d7ff194b-c3c3-4706-8140-2eb382850d35", - "modified": "2021-01-06T18:30:55.609Z", + "modified": "2021-01-13T01:52:44.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.830Z", "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:55.610Z", + "modified": "2021-01-13T01:52:44.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.830Z", "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:55.610Z", + "modified": "2021-01-13T01:52:44.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.611Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.831Z", "id": "relationship--d11e1e64-3228-4162-921f-7820e53f6cbe", - "modified": "2021-01-06T18:30:55.611Z", + "modified": "2021-01-13T01:52:44.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.612Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.831Z", "id": "relationship--87065225-f919-47e0-be44-0f3f9837017e", - "modified": "2021-01-06T18:30:55.612Z", + "modified": "2021-01-13T01:52:44.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.613Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:55.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.613Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:55.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", + "created": "2021-01-13T01:52:44.833Z", "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:55.615Z", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", + "created": "2021-01-13T01:52:44.833Z", "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:55.615Z", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", + "created": "2021-01-13T01:52:44.833Z", "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:55.615Z", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.616Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:55.616Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.616Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:55.616Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.617Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:55.617Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.621Z", - "description": "Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.835Z", "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:55.621Z", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.622Z", - "description": "Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.835Z", "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:55.622Z", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.622Z", - "description": "Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.835Z", "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:55.622Z", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.624Z", - "description": "Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:55.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.624Z", - "description": "Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:55.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.625Z", - "description": "Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:55.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.626Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:55.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.626Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:55.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.627Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:55.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.628Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.628Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.839Z", "id": "relationship--a832c44f-53eb-410f-85c6-ea153a382a20", - "modified": "2021-01-06T18:30:55.629Z", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.839Z", "id": "relationship--4ce104ee-0a69-4298-b5a9-d6422f4a1012", - "modified": "2021-01-06T18:30:55.630Z", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.839Z", "id": "relationship--f1ce6924-6ffd-45dc-b1fc-6e5c06fe91a2", - "modified": "2021-01-06T18:30:55.630Z", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.839Z", "id": "relationship--ca139f91-dd06-4998-a21b-3b1ffc4a62d1", - "modified": "2021-01-06T18:30:55.630Z", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.631Z", - "description": "OS Monitoring", - "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:55.631Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.634Z", - "description": "Wireless Access", + "created": "2021-01-13T01:52:44.842Z", "id": "relationship--8dafdaae-0806-4273-8d74-c65c6b95a5a7", - "modified": "2021-01-06T18:30:55.634Z", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.635Z", - "description": "Wireless Access", + "created": "2021-01-13T01:52:44.842Z", "id": "relationship--c4c68d28-a8c7-4989-9c14-77d2a4d3dcd6", - "modified": "2021-01-06T18:30:55.635Z", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.842Z", "id": "relationship--73b5fba1-38ef-4d20-a908-ba9372e7ce04", - "modified": "2021-01-06T18:30:55.636Z", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.843Z", "id": "relationship--40ac0d82-1b9d-451c-bf77-729c05a1f07a", - "modified": "2021-01-06T18:30:55.636Z", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.843Z", "id": "relationship--55b134d2-9509-4734-bf3f-38ee0c533a99", - "modified": "2021-01-06T18:30:55.636Z", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.843Z", "id": "relationship--e6c87399-7580-4338-8e12-7459719deea3", - "modified": "2021-01-06T18:30:55.636Z", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.638Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.844Z", "id": "relationship--d19c0cb1-8365-4207-a0c2-10fea0da7ecb", - "modified": "2021-01-06T18:30:55.638Z", + "modified": "2021-01-13T01:52:44.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.638Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.844Z", "id": "relationship--2f183400-c518-4358-ba87-4b3ef6b44ab7", - "modified": "2021-01-06T18:30:55.638Z", + "modified": "2021-01-13T01:52:44.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.639Z", - "description": "Session Management", + "created": "2021-01-13T01:52:44.845Z", "id": "relationship--e545af9d-eff3-4969-97d0-2edfe1e3445a", - "modified": "2021-01-06T18:30:55.639Z", + "modified": "2021-01-13T01:52:44.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.639Z", - "description": "Session Management", + "created": "2021-01-13T01:52:44.845Z", "id": "relationship--23d2811b-707e-4f2f-a2f0-33c7947b1a2c", - "modified": "2021-01-06T18:30:55.639Z", + "modified": "2021-01-13T01:52:44.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.640Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.640Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.846Z", "id": "relationship--4ae5ddd8-b6db-488e-a829-5f879285c75a", - "modified": "2021-01-06T18:30:55.640Z", + "modified": "2021-01-13T01:52:44.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.641Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.847Z", "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:55.641Z", + "modified": "2021-01-13T01:52:44.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.642Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:55.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.848Z", "id": "relationship--9a06521d-0107-429e-892a-a6e78b746a6d", - "modified": "2021-01-06T18:30:55.643Z", + "modified": "2021-01-13T01:52:44.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.848Z", "id": "relationship--01986791-a78d-43f8-8b9c-08498414885d", - "modified": "2021-01-06T18:30:55.643Z", + "modified": "2021-01-13T01:52:44.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.849Z", "id": "relationship--fbe858c9-8509-44d3-b200-dcd8a50ca881", - "modified": "2021-01-06T18:30:55.643Z", + "modified": "2021-01-13T01:52:44.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.849Z", "id": "relationship--d9727fa6-ba00-4d77-b1c5-bc96f8c0920c", - "modified": "2021-01-06T18:30:55.644Z", + "modified": "2021-01-13T01:52:44.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.850Z", "id": "relationship--158b4fc1-2622-49e2-a135-2d088025e6fa", - "modified": "2021-01-06T18:30:55.644Z", + "modified": "2021-01-13T01:52:44.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.850Z", "id": "relationship--1c2e5c03-cff0-403d-a96c-434f85560a1c", - "modified": "2021-01-06T18:30:55.644Z", + "modified": "2021-01-13T01:52:44.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.645Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--2aa846ed-a6b9-4f45-8875-9c1eab58fa39", - "modified": "2021-01-06T18:30:55.645Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--bdc2d11a-1fe5-42e1-b616-1cba1c998190", - "modified": "2021-01-06T18:30:55.646Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--576ac52c-3904-42bc-b57e-99a4f9561a36", - "modified": "2021-01-06T18:30:55.646Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--0bdb4507-6620-4b72-92d7-26dacd43290c", - "modified": "2021-01-06T18:30:55.646Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--aef2e682-b12c-40fc-956e-b3145fb07917", - "modified": "2021-01-06T18:30:55.646Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.851Z", "id": "relationship--e4197679-9762-4a84-8fa1-885950315e06", - "modified": "2021-01-06T18:30:55.646Z", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.852Z", "id": "relationship--f2c240ab-173b-431a-b3c1-0ebf7c181cde", - "modified": "2021-01-06T18:30:55.647Z", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.852Z", "id": "relationship--b83ff363-d22a-4e7a-a29c-02b3dc79fe7c", - "modified": "2021-01-06T18:30:55.647Z", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.852Z", "id": "relationship--f299fb0e-bd84-4baa-9086-8587b9b28131", - "modified": "2021-01-06T18:30:55.647Z", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.649Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.853Z", "id": "relationship--fc241480-8869-40b0-975e-fd724ae56560", - "modified": "2021-01-06T18:30:55.649Z", + "modified": "2021-01-13T01:52:44.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.649Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.853Z", "id": "relationship--67a335c5-7c20-4ba3-8ac5-ed60b2a6610f", - "modified": "2021-01-06T18:30:55.649Z", + "modified": "2021-01-13T01:52:44.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.650Z", - "description": "Media Use", + "created": "2021-01-13T01:52:44.854Z", "id": "relationship--f2fd1cb5-45c7-4736-96fa-38105170a250", - "modified": "2021-01-06T18:30:55.650Z", + "modified": "2021-01-13T01:52:44.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.652Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.855Z", "id": "relationship--cc15a9b8-e9e7-4bc4-8f79-d1e005cb9958", - "modified": "2021-01-06T18:30:55.652Z", + "modified": "2021-01-13T01:52:44.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.653Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.653Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.856Z", "id": "relationship--39f5239f-d28b-4113-aaae-44101d44fcc7", - "modified": "2021-01-06T18:30:55.653Z", + "modified": "2021-01-13T01:52:44.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.654Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.857Z", "id": "relationship--7da75d69-fc0b-40b0-bc99-623d698a7113", - "modified": "2021-01-06T18:30:55.654Z", + "modified": "2021-01-13T01:52:44.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.655Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.858Z", "id": "relationship--a393dd6d-9a6b-456b-a351-f167efcb712b", - "modified": "2021-01-06T18:30:55.655Z", + "modified": "2021-01-13T01:52:44.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.655Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.858Z", "id": "relationship--6406890c-c40f-437d-a93a-eb201d40a074", - "modified": "2021-01-06T18:30:55.655Z", + "modified": "2021-01-13T01:52:44.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.656Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.860Z", "id": "relationship--143ea734-657a-402b-8045-883fff88ccb1", - "modified": "2021-01-06T18:30:55.656Z", + "modified": "2021-01-13T01:52:44.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.657Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.657Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.658Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.861Z", "id": "relationship--752fd115-c5b9-4ec1-80c7-ad673695e10e", - "modified": "2021-01-06T18:30:55.658Z", + "modified": "2021-01-13T01:52:44.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.658Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.861Z", "id": "relationship--4e9cb538-86d5-482c-827d-dcb3e2019867", - "modified": "2021-01-06T18:30:55.658Z", + "modified": "2021-01-13T01:52:44.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.659Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.862Z", "id": "relationship--50855def-4ee1-492a-8b26-567206f7868a", - "modified": "2021-01-06T18:30:55.659Z", + "modified": "2021-01-13T01:52:44.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.659Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.862Z", "id": "relationship--197945dd-67fa-4a30-91b7-c29ca49bd55d", - "modified": "2021-01-06T18:30:55.659Z", + "modified": "2021-01-13T01:52:44.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.660Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.863Z", "id": "relationship--4a6c7cb9-0797-4736-bb06-6d5ef7ade272", - "modified": "2021-01-06T18:30:55.660Z", + "modified": "2021-01-13T01:52:44.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.660Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.863Z", "id": "relationship--9c47fe7d-cd84-4f20-ad05-84d73f683aca", - "modified": "2021-01-06T18:30:55.660Z", + "modified": "2021-01-13T01:52:44.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.661Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.864Z", "id": "relationship--b34f6913-c617-4976-ad0c-cdd82b50d199", - "modified": "2021-01-06T18:30:55.661Z", + "modified": "2021-01-13T01:52:44.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.662Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.865Z", "id": "relationship--4ff00de4-192e-435d-937e-9eba29a30f60", - "modified": "2021-01-06T18:30:55.662Z", + "modified": "2021-01-13T01:52:44.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.662Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.865Z", "id": "relationship--b958d134-787a-42ee-945a-19b1265fd121", - "modified": "2021-01-06T18:30:55.662Z", + "modified": "2021-01-13T01:52:44.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.663Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.866Z", "id": "relationship--30135648-de30-4879-af1f-e02862359e9d", - "modified": "2021-01-06T18:30:55.663Z", + "modified": "2021-01-13T01:52:44.866Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.664Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.664Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.867Z", "id": "relationship--d23cfd21-3a6a-4b6b-a566-1b93c4f5c78c", - "modified": "2021-01-06T18:30:55.664Z", + "modified": "2021-01-13T01:52:44.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.665Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.868Z", "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:55.665Z", + "modified": "2021-01-13T01:52:44.868Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.666Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.869Z", "id": "relationship--9341deda-0818-4af1-8390-1d3175d7117b", - "modified": "2021-01-06T18:30:55.666Z", + "modified": "2021-01-13T01:52:44.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.667Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.869Z", "id": "relationship--469aed6b-d464-4aaf-a41f-2cf81cdcdb5f", - "modified": "2021-01-06T18:30:55.667Z", + "modified": "2021-01-13T01:52:44.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.668Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.870Z", "id": "relationship--86b898d2-239c-4208-8a40-17f480b52bf9", - "modified": "2021-01-06T18:30:55.668Z", + "modified": "2021-01-13T01:52:44.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.669Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.669Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.871Z", "id": "relationship--97e5ef9d-33a5-447a-98c6-0b387b5f699e", - "modified": "2021-01-06T18:30:55.669Z", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.871Z", "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:55.670Z", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.871Z", "id": "relationship--39971e26-d930-42ea-9bc5-0848f4f43b47", - "modified": "2021-01-06T18:30:55.670Z", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.872Z", "id": "relationship--7d83f67f-9584-4fa0-a80e-6941395b2890", - "modified": "2021-01-06T18:30:55.670Z", + "modified": "2021-01-13T01:52:44.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.671Z", - "description": "OS Monitoring", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:55.671Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.672Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.873Z", "id": "relationship--ed52f462-b9db-4e91-b77c-3a0f3417d6b2", - "modified": "2021-01-06T18:30:55.672Z", + "modified": "2021-01-13T01:52:44.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.672Z", - "description": "OS Monitoring", - "id": "relationship--8453db9c-6181-4946-9b7a-70d835bc1e60", - "modified": "2021-01-06T18:30:55.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.874Z", "id": "relationship--2c671f6b-94ea-43c6-804f-e290df41a74c", - "modified": "2021-01-06T18:30:55.673Z", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:55.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.874Z", "id": "relationship--7d16a9fe-46e3-48c1-a0f0-230771560409", - "modified": "2021-01-06T18:30:55.673Z", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.874Z", "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:55.673Z", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.675Z", - "description": "Information at Rest Protection", + "created": "2021-01-13T01:52:44.875Z", "id": "relationship--6ce0f9df-ded1-4475-ac0c-6bfffa151773", - "modified": "2021-01-06T18:30:55.675Z", + "modified": "2021-01-13T01:52:44.875Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.675Z", - "description": "Information at Rest Protection", - "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:55.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.676Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.876Z", "id": "relationship--19bc92c2-915b-4e0b-9059-40278e68b125", - "modified": "2021-01-06T18:30:55.676Z", + "modified": "2021-01-13T01:52:44.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.676Z", - "description": "OS Monitoring", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:55.676Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.877Z", "id": "relationship--9a929e83-edb6-4684-8ad3-973c49c515f0", - "modified": "2021-01-06T18:30:55.677Z", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.877Z", "id": "relationship--404ac666-65d7-43b8-bf9d-f999309ec164", - "modified": "2021-01-06T18:30:55.677Z", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.877Z", "id": "relationship--5e39bde1-36a3-4ce5-8364-60dcdaec71e6", - "modified": "2021-01-06T18:30:55.677Z", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.877Z", "id": "relationship--6064d190-3691-4828-bf84-c6aacc445a98", - "modified": "2021-01-06T18:30:55.677Z", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.678Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.878Z", "id": "relationship--ff69e895-8ae0-416d-9a2a-ac336efac6c7", - "modified": "2021-01-06T18:30:55.678Z", + "modified": "2021-01-13T01:52:44.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.678Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.878Z", "id": "relationship--2f6a5e3f-a3fa-4a7d-b344-ec1bc9cb6e88", - "modified": "2021-01-06T18:30:55.678Z", + "modified": "2021-01-13T01:52:44.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.679Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.679Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.879Z", "id": "relationship--9f74e402-1373-450c-b77c-b6a3f78e51b5", - "modified": "2021-01-06T18:30:55.680Z", + "modified": "2021-01-13T01:52:44.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.879Z", "id": "relationship--a9d2cfdc-a416-4eee-b1c1-982dd6bda10e", - "modified": "2021-01-06T18:30:55.680Z", + "modified": "2021-01-13T01:52:44.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.880Z", "id": "relationship--477d3b14-0cab-48c4-adb2-b39cc2c3317b", - "modified": "2021-01-06T18:30:55.680Z", + "modified": "2021-01-13T01:52:44.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.681Z", - "description": "OS Monitoring", - "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:55.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.681Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.881Z", "id": "relationship--8b147ba8-5f50-4bd3-9364-b8b3be2fffe2", - "modified": "2021-01-06T18:30:55.681Z", + "modified": "2021-01-13T01:52:44.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.682Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.882Z", "id": "relationship--acee6bd3-24a4-4fc0-961c-dca4e94b3df1", - "modified": "2021-01-06T18:30:55.682Z", + "modified": "2021-01-13T01:52:44.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.682Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.882Z", "id": "relationship--625957df-b139-4543-a6f6-b55e3caf1ac1", - "modified": "2021-01-06T18:30:55.682Z", + "modified": "2021-01-13T01:52:44.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.684Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.883Z", "id": "relationship--e5543133-a383-4f77-ae50-a1f0ae66a43e", - "modified": "2021-01-06T18:30:55.684Z", + "modified": "2021-01-13T01:52:44.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.685Z", - "description": "Session Management", + "created": "2021-01-13T01:52:44.884Z", "id": "relationship--c3658e2e-1308-4451-bfe2-0d4f5c201d29", - "modified": "2021-01-06T18:30:55.685Z", + "modified": "2021-01-13T01:52:44.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.686Z", - "description": "Session Management", + "created": "2021-01-13T01:52:44.884Z", "id": "relationship--336a4d09-48b5-439f-90c9-0e6cf472f6a4", - "modified": "2021-01-06T18:30:55.686Z", + "modified": "2021-01-13T01:52:44.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.687Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.687Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.885Z", "id": "relationship--195ffbec-4120-4b3f-9bc5-db73f77dc564", - "modified": "2021-01-06T18:30:55.687Z", + "modified": "2021-01-13T01:52:44.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.688Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.886Z", "id": "relationship--34515ff7-2ec4-435a-b8e1-a6c8cf9ac0f1", - "modified": "2021-01-06T18:30:55.688Z", + "modified": "2021-01-13T01:52:44.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.689Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.887Z", "id": "relationship--9927074b-0451-48d5-be7c-07ef333c92b2", - "modified": "2021-01-06T18:30:55.689Z", + "modified": "2021-01-13T01:52:44.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.689Z", - "description": "OS Configuration, Least Functionality", + "created": "2021-01-13T01:52:44.887Z", "id": "relationship--f3564029-0093-4361-a9f1-aef2e67f3c5b", - "modified": "2021-01-06T18:30:55.689Z", + "modified": "2021-01-13T01:52:44.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.690Z", - "description": "OS Monitoring", + "created": "2021-01-13T01:52:44.888Z", "id": "relationship--b0ac7c56-6db4-48fc-bd7b-8c61be44b013", - "modified": "2021-01-06T18:30:55.690Z", + "modified": "2021-01-13T01:52:44.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.691Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.889Z", "id": "relationship--9523230b-3e67-49a9-83d5-c54811b8b4b8", - "modified": "2021-01-06T18:30:55.691Z", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.889Z", "id": "relationship--eda4a8c4-2e31-4e55-9532-061d31fe2f3d", - "modified": "2021-01-06T18:30:55.692Z", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.889Z", "id": "relationship--205bb0c4-2cd9-4a6a-a38f-2826a366f068", - "modified": "2021-01-06T18:30:55.692Z", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.889Z", "id": "relationship--14b8eb4d-b915-4d5c-a86e-84b5a25cc70c", - "modified": "2021-01-06T18:30:55.692Z", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.890Z", "id": "relationship--e4d979f4-d4da-4364-b813-857c55ad015a", - "modified": "2021-01-06T18:30:55.692Z", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.890Z", "id": "relationship--1a8b4b2a-95e3-49b9-9796-0defc137d698", - "modified": "2021-01-06T18:30:55.692Z", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.890Z", "id": "relationship--f2c17964-4cc5-4b47-8241-0777fb73849b", - "modified": "2021-01-06T18:30:55.693Z", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.890Z", "id": "relationship--a00e0723-9fef-4d96-8fe3-bb6ef4236f8b", - "modified": "2021-01-06T18:30:55.693Z", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.890Z", "id": "relationship--548a3181-9bdc-459d-853b-3c84dcbb7894", - "modified": "2021-01-06T18:30:55.693Z", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", + "created": "2021-01-13T01:52:44.891Z", "id": "relationship--e253f31a-a682-43d8-b931-66b7ef7d4c70", - "modified": "2021-01-06T18:30:55.695Z", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", + "created": "2021-01-13T01:52:44.891Z", "id": "relationship--d13f9113-b8f3-413d-b60d-c9e07bd191af", - "modified": "2021-01-06T18:30:55.695Z", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", + "created": "2021-01-13T01:52:44.891Z", "id": "relationship--aeb227b6-13e9-40e0-8011-5a089e041b26", - "modified": "2021-01-06T18:30:55.695Z", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.892Z", "id": "relationship--e4c0ca75-cf7b-4069-929c-dbd584a9dcaa", - "modified": "2021-01-06T18:30:55.696Z", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.892Z", "id": "relationship--00725ce3-6aa2-4e9d-81b6-a235f03da7af", - "modified": "2021-01-06T18:30:55.696Z", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.892Z", "id": "relationship--08d3cbff-0232-4f6e-816b-16cc0a26cd4e", - "modified": "2021-01-06T18:30:55.696Z", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.697Z", - "description": "Remote Access Management", + "created": "2021-01-13T01:52:44.894Z", "id": "relationship--cf127856-ae24-46d0-812b-3efcc5c255fa", - "modified": "2021-01-06T18:30:55.697Z", + "modified": "2021-01-13T01:52:44.894Z", "relationship_type": "mitigates", "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.698Z", - "description": "Configuration Settings", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.700Z", - "description": "Certificate Management", + "created": "2021-01-13T01:52:44.896Z", "id": "relationship--3d0e00b7-2911-466e-a00b-e5bab5e65fd1", - "modified": "2021-01-06T18:30:55.700Z", + "modified": "2021-01-13T01:52:44.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.700Z", - "description": "Certificate Management", + "created": "2021-01-13T01:52:44.896Z", "id": "relationship--bb528a4c-1d0a-4e53-a5db-b8edd5cf032d", - "modified": "2021-01-06T18:30:55.700Z", + "modified": "2021-01-13T01:52:44.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6e561e80-7062-4695-ab3b-03e631acbfc1", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.701Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.897Z", "id": "relationship--6a73899d-4a49-4cb3-8c14-471673fb978f", - "modified": "2021-01-06T18:30:55.701Z", + "modified": "2021-01-13T01:52:44.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.898Z", "id": "relationship--e9e0a227-225f-4279-b46f-cd80c31d52d6", - "modified": "2021-01-06T18:30:55.703Z", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.898Z", "id": "relationship--72d758f5-8e18-4c83-b383-850a526e3c1d", - "modified": "2021-01-06T18:30:55.703Z", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", + "created": "2021-01-13T01:52:44.898Z", "id": "relationship--f963ef43-0761-4c9b-a10b-4a5beb0c24f7", - "modified": "2021-01-06T18:30:55.703Z", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.704Z", - "description": "Distributed Storage", + "created": "2021-01-13T01:52:44.899Z", "id": "relationship--62c5fe71-8ede-4640-a965-d5c242926fbd", - "modified": "2021-01-06T18:30:55.704Z", + "modified": "2021-01-13T01:52:44.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.705Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.900Z", "id": "relationship--adcc6eba-5fd3-4eb9-8c0f-c5f4bb5afcae", - "modified": "2021-01-06T18:30:55.705Z", + "modified": "2021-01-13T01:52:44.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", + "created": "2021-01-13T01:52:44.901Z", "id": "relationship--f45e1cb0-b478-4086-88fa-3410324dbd7c", - "modified": "2021-01-06T18:30:55.706Z", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", + "created": "2021-01-13T01:52:44.901Z", "id": "relationship--0bf3870a-c597-4bd0-aa22-305bc7af56bf", - "modified": "2021-01-06T18:30:55.706Z", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", + "created": "2021-01-13T01:52:44.901Z", "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:55.706Z", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", + "created": "2021-01-13T01:52:44.901Z", "id": "relationship--fa667e8a-500b-4fb8-8732-4ac2ddbafd4d", - "modified": "2021-01-06T18:30:55.706Z", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.707Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.902Z", "id": "relationship--483aaab3-bdca-4f9a-bb66-bc5084025940", - "modified": "2021-01-06T18:30:55.707Z", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.707Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.902Z", "id": "relationship--19e2ed75-dfd9-42f4-bb05-a1200891b673", - "modified": "2021-01-06T18:30:55.707Z", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.902Z", "id": "relationship--419c8945-5d67-4461-a076-c6e61f7e9548", - "modified": "2021-01-06T18:30:55.708Z", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.903Z", "id": "relationship--ff3ca4b7-e58d-4b86-91dc-1165f1cd0566", - "modified": "2021-01-06T18:30:55.708Z", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--aff69fe2-2611-47a3-96d0-da84d49f5001", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--c635a10b-6503-452a-a97d-ee74ebb8ce81", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.903Z", "id": "relationship--107b9e36-2de2-4528-9495-c7fee3f11da0", - "modified": "2021-01-06T18:30:55.708Z", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", + "created": "2021-01-13T01:52:44.903Z", "id": "relationship--5ab4874e-5ad7-448e-a9d6-b9b9e63b4214", - "modified": "2021-01-06T18:30:55.708Z", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.709Z", - "description": "Distributed Storage", + "created": "2021-01-13T01:52:44.904Z", "id": "relationship--6bc33803-59b6-41d3-9962-9fb408ab9e51", - "modified": "2021-01-06T18:30:55.709Z", + "modified": "2021-01-13T01:52:44.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.710Z", - "description": "Distributed Storage", + "created": "2021-01-13T01:52:44.904Z", "id": "relationship--e854ef3b-8a99-4aa8-a922-4f1b67573e60", - "modified": "2021-01-06T18:30:55.710Z", + "modified": "2021-01-13T01:52:44.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.711Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.905Z", "id": "relationship--ad15cecb-64ad-4c8b-b6e7-9b29d2e02ccd", - "modified": "2021-01-06T18:30:55.711Z", + "modified": "2021-01-13T01:52:44.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.711Z", - "description": "Information Fragmentation", + "created": "2021-01-13T01:52:44.905Z", "id": "relationship--9adb14da-d6ae-4953-8323-df9839ba237e", - "modified": "2021-01-06T18:30:55.711Z", + "modified": "2021-01-13T01:52:44.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.906Z", "id": "relationship--bcc994b0-b1cb-474f-8c05-4d284fb284d5", - "modified": "2021-01-06T18:30:55.712Z", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.906Z", "id": "relationship--190b1b8e-5564-4ee5-8c6f-b230763b9136", - "modified": "2021-01-06T18:30:55.712Z", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.906Z", "id": "relationship--20c5b01b-54ab-4889-b5ce-22072e38e6fb", - "modified": "2021-01-06T18:30:55.712Z", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.713Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:55.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.713Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.907Z", "id": "relationship--259ce454-0ab3-4f93-a553-d64d3ca583ef", - "modified": "2021-01-06T18:30:55.714Z", + "modified": "2021-01-13T01:52:44.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4ae5ddd8-b6db-488e-a829-5f879285c75a", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.908Z", "id": "relationship--432ac5cd-229c-457c-ac6e-2c03343d7771", - "modified": "2021-01-06T18:30:55.714Z", + "modified": "2021-01-13T01:52:44.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.908Z", "id": "relationship--92aeed10-428d-4da2-bef6-6c002a3fbefc", - "modified": "2021-01-06T18:30:55.715Z", + "modified": "2021-01-13T01:52:44.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.909Z", "id": "relationship--7d869253-d06e-40ee-8466-5da197e157ec", - "modified": "2021-01-06T18:30:55.715Z", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.909Z", "id": "relationship--17adbbfa-1728-4803-a8ab-09566adad8e2", - "modified": "2021-01-06T18:30:55.715Z", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.909Z", "id": "relationship--7c737d8a-38be-4d9b-bfe8-a81a28f3c38d", - "modified": "2021-01-06T18:30:55.715Z", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.716Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.909Z", "id": "relationship--994574d3-ba05-4150-8136-3c41bd10d7e7", - "modified": "2021-01-06T18:30:55.716Z", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.716Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.909Z", "id": "relationship--46bd17a7-5251-47dc-ad51-a9ee4f6b331b", - "modified": "2021-01-06T18:30:55.716Z", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.718Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.910Z", "id": "relationship--f3824fe4-c1f2-4704-b346-a43185f6d0ff", - "modified": "2021-01-06T18:30:55.718Z", + "modified": "2021-01-13T01:52:44.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.719Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.911Z", "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:55.719Z", + "modified": "2021-01-13T01:52:44.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.719Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.911Z", "id": "relationship--c5fc1e05-e455-4029-9199-f108cb4f0093", - "modified": "2021-01-06T18:30:55.719Z", + "modified": "2021-01-13T01:52:44.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.720Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.912Z", "id": "relationship--b72ff145-0b06-4c79-8019-28efc0623e3d", - "modified": "2021-01-06T18:30:55.720Z", + "modified": "2021-01-13T01:52:44.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.720Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.912Z", "id": "relationship--30353949-dbdd-4823-9164-e3df0ff16269", - "modified": "2021-01-06T18:30:55.720Z", + "modified": "2021-01-13T01:52:44.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.913Z", "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:55.722Z", + "modified": "2021-01-13T01:52:44.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.913Z", "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:55.722Z", + "modified": "2021-01-13T01:52:44.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.915Z", "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:55.722Z", + "modified": "2021-01-13T01:52:44.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.915Z", "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:55.722Z", + "modified": "2021-01-13T01:52:44.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:55.723Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:55.723Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:55.723Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:55.723Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:55.723Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:55.724Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:55.724Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.916Z", "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:55.724Z", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.917Z", "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.917Z", "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.917Z", "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.917Z", "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.918Z", "id": "relationship--0b7f31e8-ccc1-4bb6-b589-7a1183afaef6", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.918Z", "id": "relationship--21638697-6d6c-4825-bd71-f46f61a22076", - "modified": "2021-01-06T18:30:55.725Z", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.726Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.918Z", "id": "relationship--157187e5-1c4d-4698-a2d0-9455b5a7aa9e", - "modified": "2021-01-06T18:30:55.726Z", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.726Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.918Z", "id": "relationship--d98dc89f-2684-4da7-8be6-776f6a6d5e02", - "modified": "2021-01-06T18:30:55.726Z", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.727Z", - "description": "Information Flow Enforcement", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:55.727Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.728Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.728Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.920Z", "id": "relationship--227c3e79-14fa-4225-b21f-a204734deb33", - "modified": "2021-01-06T18:30:55.728Z", + "modified": "2021-01-13T01:52:44.920Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.729Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.921Z", "id": "relationship--3b70cebc-a699-41db-b063-f18d1b31e050", - "modified": "2021-01-06T18:30:55.729Z", + "modified": "2021-01-13T01:52:44.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.729Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.921Z", "id": "relationship--fc357a0f-dba2-4273-a45a-f00ab7152d9b", - "modified": "2021-01-06T18:30:55.729Z", + "modified": "2021-01-13T01:52:44.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.730Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.922Z", "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:55.730Z", + "modified": "2021-01-13T01:52:44.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.731Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.923Z", "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:55.731Z", + "modified": "2021-01-13T01:52:44.923Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.731Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.923Z", "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:55.731Z", + "modified": "2021-01-13T01:52:44.923Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.732Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.924Z", "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:55.732Z", + "modified": "2021-01-13T01:52:44.924Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.734Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.925Z", "id": "relationship--c78c6616-a1f6-4bd9-bbf5-caf26ddd1e4d", - "modified": "2021-01-06T18:30:55.734Z", + "modified": "2021-01-13T01:52:44.925Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.734Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.925Z", "id": "relationship--9af26252-d435-4a7b-b89e-eb54003b7996", - "modified": "2021-01-06T18:30:55.734Z", + "modified": "2021-01-13T01:52:44.925Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.735Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c250c400-ea9a-48f0-9e0f-6548042c6f59", - "modified": "2021-01-06T18:30:55.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--39f5239f-d28b-4113-aaae-44101d44fcc7", - "modified": "2021-01-06T18:30:55.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.926Z", "id": "relationship--502e08c1-0123-4393-b65b-c1ffc8a8b048", - "modified": "2021-01-06T18:30:55.736Z", + "modified": "2021-01-13T01:52:44.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.927Z", "id": "relationship--cecfbd84-d786-4c61-878b-05c731e2d581", - "modified": "2021-01-06T18:30:55.737Z", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.927Z", "id": "relationship--7c8d01bf-9326-4247-8195-0c957c6e6b3e", - "modified": "2021-01-06T18:30:55.737Z", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.927Z", "id": "relationship--310e3cc0-b732-4f91-bc37-6113c107dae0", - "modified": "2021-01-06T18:30:55.737Z", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.927Z", "id": "relationship--4519a14c-9578-4c77-a1ab-d04664392ed9", - "modified": "2021-01-06T18:30:55.737Z", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.738Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.928Z", "id": "relationship--42c3015d-ac55-4f84-bb0a-b77a98c6863b", - "modified": "2021-01-06T18:30:55.738Z", + "modified": "2021-01-13T01:52:44.928Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.739Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.929Z", "id": "relationship--b1c6f677-e100-47e1-9da7-bd5927c45ed1", - "modified": "2021-01-06T18:30:55.739Z", + "modified": "2021-01-13T01:52:44.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.739Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.929Z", "id": "relationship--bc57be28-9417-42a4-95e5-a2c062696649", - "modified": "2021-01-06T18:30:55.739Z", + "modified": "2021-01-13T01:52:44.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.740Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.930Z", "id": "relationship--82e13eb9-a107-414f-b3c8-c919e234e972", - "modified": "2021-01-06T18:30:55.740Z", + "modified": "2021-01-13T01:52:44.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.740Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.930Z", "id": "relationship--f1a6f368-a756-4c76-9bbe-a149ba5d7b48", - "modified": "2021-01-06T18:30:55.740Z", + "modified": "2021-01-13T01:52:44.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.741Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.931Z", "id": "relationship--5871402a-0874-4b06-a208-d047f112d67a", - "modified": "2021-01-06T18:30:55.741Z", + "modified": "2021-01-13T01:52:44.931Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.742Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.932Z", "id": "relationship--efa8a43d-6183-49ba-a751-bddb861b7c8c", - "modified": "2021-01-06T18:30:55.742Z", + "modified": "2021-01-13T01:52:44.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.742Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.932Z", "id": "relationship--c6ce0435-ceb1-417c-a287-b07322efac27", - "modified": "2021-01-06T18:30:55.742Z", + "modified": "2021-01-13T01:52:44.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--67643fa8-d041-437b-92bf-bcd6298897e9", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.933Z", "id": "relationship--3ecabc44-abe1-4d97-bf6a-59ca26da6259", - "modified": "2021-01-06T18:30:55.743Z", + "modified": "2021-01-13T01:52:44.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--752fd115-c5b9-4ec1-80c7-ad673695e10e", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4e9cb538-86d5-482c-827d-dcb3e2019867", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--3359f32d-4657-4d93-bc10-541c8dcd5aa1", - "modified": "2021-01-06T18:30:55.744Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--16f1a6d6-4270-4467-986a-888cd223bd64", - "modified": "2021-01-06T18:30:55.744Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--6c4c41aa-3354-484b-aae3-119cb2855383", - "modified": "2021-01-06T18:30:55.744Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--b0fea36e-9186-40dc-9f3a-ece9db5d0c75", - "modified": "2021-01-06T18:30:55.744Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.745Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--9a6901e6-91fc-42b2-a749-331fd664d39e", - "modified": "2021-01-06T18:30:55.745Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.745Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.934Z", "id": "relationship--d1914a6a-bcca-4e9f-81ab-6035cf746b01", - "modified": "2021-01-06T18:30:55.745Z", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.746Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.935Z", "id": "relationship--9c08577f-18c8-4ee4-b0d7-e118bbc193f2", - "modified": "2021-01-06T18:30:55.746Z", + "modified": "2021-01-13T01:52:44.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.747Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0000b531-6f8f-4719-bc53-4a015392d888", - "modified": "2021-01-06T18:30:55.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.747Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.936Z", "id": "relationship--87c61617-cda8-4dfd-94e0-ae5a751bb01a", - "modified": "2021-01-06T18:30:55.747Z", + "modified": "2021-01-13T01:52:44.936Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.748Z", - "description": "Subnetworks, Access Control, DMZ", + "created": "2021-01-13T01:52:44.937Z", "id": "relationship--9775284b-0ea3-4e35-bcca-5733771c110b", - "modified": "2021-01-06T18:30:55.748Z", + "modified": "2021-01-13T01:52:44.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.748Z", - "description": "Subnetworks, Access Control, DMZ", + "created": "2021-01-13T01:52:44.937Z", "id": "relationship--762a8bd9-6635-4415-bf3f-4ac668ed4e03", - "modified": "2021-01-06T18:30:55.748Z", + "modified": "2021-01-13T01:52:44.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.750Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.938Z", "id": "relationship--8c4cfb08-5f7d-44c0-a445-163745a832b4", - "modified": "2021-01-06T18:30:55.750Z", + "modified": "2021-01-13T01:52:44.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.751Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.939Z", "id": "relationship--1a32e9de-c57b-4a62-a7c9-fd16fa1492e8", - "modified": "2021-01-06T18:30:55.751Z", + "modified": "2021-01-13T01:52:44.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.751Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.939Z", "id": "relationship--8d3b8310-c3f5-4832-8155-b8fdf270b9f1", - "modified": "2021-01-06T18:30:55.751Z", + "modified": "2021-01-13T01:52:44.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.752Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.940Z", "id": "relationship--6eddc9f7-6042-48c1-86c7-1ec82ff88039", - "modified": "2021-01-06T18:30:55.752Z", + "modified": "2021-01-13T01:52:44.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.752Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.940Z", "id": "relationship--b249650a-ba70-48c6-b41e-3895a676c846", - "modified": "2021-01-06T18:30:55.752Z", + "modified": "2021-01-13T01:52:44.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.753Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.941Z", "id": "relationship--240a4ed4-ebb7-4ae3-ac41-e53261b7fbaf", - "modified": "2021-01-06T18:30:55.753Z", + "modified": "2021-01-13T01:52:44.941Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.754Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.755Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.942Z", "id": "relationship--a6b88af7-1d51-4234-afda-07b8618836de", - "modified": "2021-01-06T18:30:55.755Z", + "modified": "2021-01-13T01:52:44.942Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.755Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.943Z", "id": "relationship--52f70eaa-9b91-41b4-bda3-e4e63b1cc9dc", - "modified": "2021-01-06T18:30:55.755Z", + "modified": "2021-01-13T01:52:44.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.756Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.943Z", "id": "relationship--7d313c12-ac9e-49a9-b820-52d9bde30b0c", - "modified": "2021-01-06T18:30:55.756Z", + "modified": "2021-01-13T01:52:44.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.757Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.944Z", "id": "relationship--1e562bac-b904-4ba8-b9af-b1a97296707f", - "modified": "2021-01-06T18:30:55.757Z", + "modified": "2021-01-13T01:52:44.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.758Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.946Z", "id": "relationship--86c25708-12a6-4df1-9537-df84114c4bc5", - "modified": "2021-01-06T18:30:55.758Z", + "modified": "2021-01-13T01:52:44.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.758Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.946Z", "id": "relationship--cc5b3cf9-cd8c-433f-94bc-b0916f4b773d", - "modified": "2021-01-06T18:30:55.758Z", + "modified": "2021-01-13T01:52:44.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.759Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.947Z", "id": "relationship--39253d6e-dc79-4d14-ac78-0396cccc236b", - "modified": "2021-01-06T18:30:55.759Z", + "modified": "2021-01-13T01:52:44.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.759Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.947Z", "id": "relationship--9c06e8c3-643c-47e1-b251-7d3c6b327f9c", - "modified": "2021-01-06T18:30:55.759Z", + "modified": "2021-01-13T01:52:44.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.760Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.948Z", "id": "relationship--527bb098-02a9-4fea-b96b-52eb21260452", - "modified": "2021-01-06T18:30:55.760Z", + "modified": "2021-01-13T01:52:44.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.761Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.948Z", "id": "relationship--8a2a3fd4-0d59-43fe-8c95-226fa26a6a33", - "modified": "2021-01-06T18:30:55.761Z", + "modified": "2021-01-13T01:52:44.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.761Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.949Z", "id": "relationship--0c64b9e2-e914-438a-ba43-39a117568e3e", - "modified": "2021-01-06T18:30:55.761Z", + "modified": "2021-01-13T01:52:44.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.762Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.949Z", "id": "relationship--da8e2721-26b9-44f2-8376-66d55c81fcf6", - "modified": "2021-01-06T18:30:55.762Z", + "modified": "2021-01-13T01:52:44.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.762Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.950Z", "id": "relationship--73f4fd73-e880-4f0c-9958-8f494d088d4a", - "modified": "2021-01-06T18:30:55.762Z", + "modified": "2021-01-13T01:52:44.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.763Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.951Z", "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:55.763Z", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.763Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.951Z", "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:55.763Z", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.764Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.951Z", "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:55.764Z", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.952Z", "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:55.765Z", + "modified": "2021-01-13T01:52:44.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.952Z", "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:55.765Z", + "modified": "2021-01-13T01:52:44.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.952Z", "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:55.765Z", + "modified": "2021-01-13T01:52:44.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.953Z", "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:55.766Z", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.953Z", "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:55.766Z", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.953Z", "id": "relationship--caae0c38-5591-415f-88b8-d165bf61d38c", - "modified": "2021-01-06T18:30:55.766Z", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.767Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.953Z", "id": "relationship--1b912d8c-666e-49a2-9d2e-5ae457ead1dc", - "modified": "2021-01-06T18:30:55.767Z", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.768Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.954Z", "id": "relationship--806adc0f-d1bc-4fb7-ba60-f3e90a527bdf", - "modified": "2021-01-06T18:30:55.768Z", + "modified": "2021-01-13T01:52:44.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.768Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.954Z", "id": "relationship--889720b3-9d4b-488f-9de7-65679b573708", - "modified": "2021-01-06T18:30:55.768Z", + "modified": "2021-01-13T01:52:44.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--195ffbec-4120-4b3f-9bc5-db73f77dc564", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.955Z", "id": "relationship--63abd751-1e3a-44a7-b7db-19d41545fd8e", - "modified": "2021-01-06T18:30:55.769Z", + "modified": "2021-01-13T01:52:44.955Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.956Z", "id": "relationship--7c566ddf-2fea-4fa3-96d2-9dc27195b5aa", - "modified": "2021-01-06T18:30:55.770Z", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.956Z", "id": "relationship--b3fb06ef-27e1-4acc-a491-bd90675a7e42", - "modified": "2021-01-06T18:30:55.770Z", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.956Z", "id": "relationship--f6447be0-6f52-4e9e-9066-64aa053147d7", - "modified": "2021-01-06T18:30:55.770Z", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.771Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.956Z", "id": "relationship--ec340da3-79e2-4604-97ac-eee5fd2d2966", - "modified": "2021-01-06T18:30:55.771Z", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.772Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.957Z", "id": "relationship--f38e5958-4a3f-4f24-ab82-b80357fa6c50", - "modified": "2021-01-06T18:30:55.772Z", + "modified": "2021-01-13T01:52:44.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.772Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.957Z", "id": "relationship--89863229-e82e-4598-a602-3fe08df1864d", - "modified": "2021-01-06T18:30:55.772Z", + "modified": "2021-01-13T01:52:44.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:55.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.958Z", "id": "relationship--b020066a-c9b4-463e-912b-b5097f247d38", - "modified": "2021-01-06T18:30:55.773Z", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.958Z", "id": "relationship--cd0056bb-46f1-49e5-a657-a91564e89223", - "modified": "2021-01-06T18:30:55.773Z", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.958Z", "id": "relationship--428457c7-7ab8-4a9e-938b-a2122753f92c", - "modified": "2021-01-06T18:30:55.773Z", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--65f73811-182e-460e-a397-d5678cff8d14", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--58d66621-a5c3-4de3-b916-48296ef9d34e", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.959Z", "id": "relationship--8674ce8a-3f3c-4791-9264-b2feb132eb15", - "modified": "2021-01-06T18:30:55.774Z", + "modified": "2021-01-13T01:52:44.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.959Z", "id": "relationship--70f7e488-fec9-4123-be2f-ebc8aa9d75b4", - "modified": "2021-01-06T18:30:55.774Z", + "modified": "2021-01-13T01:52:44.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.776Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.960Z", "id": "relationship--72babca1-4c64-4450-848c-96a57909cd64", - "modified": "2021-01-06T18:30:55.776Z", + "modified": "2021-01-13T01:52:44.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.777Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.961Z", "id": "relationship--f2f927aa-09c0-4060-9d98-48312736759b", - "modified": "2021-01-06T18:30:55.777Z", + "modified": "2021-01-13T01:52:44.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.777Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.961Z", "id": "relationship--0c159dbe-46f5-4c1f-a357-95811374ec6c", - "modified": "2021-01-06T18:30:55.777Z", + "modified": "2021-01-13T01:52:44.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.778Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.962Z", "id": "relationship--53870ec5-03e4-455a-a07b-d2d95a398d6c", - "modified": "2021-01-06T18:30:55.778Z", + "modified": "2021-01-13T01:52:44.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.963Z", "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:55.779Z", + "modified": "2021-01-13T01:52:44.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.964Z", "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:55.779Z", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.964Z", "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:55.779Z", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.964Z", "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:55.780Z", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.965Z", "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:55.780Z", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.965Z", "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:55.780Z", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.965Z", "id": "relationship--d16e4336-1b38-4f40-9021-b6a9aab3fe12", - "modified": "2021-01-06T18:30:55.781Z", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.965Z", "id": "relationship--02fa8be7-9400-4fda-8b3c-a2f2adb9f588", - "modified": "2021-01-06T18:30:55.781Z", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", + "created": "2021-01-13T01:52:44.965Z", "id": "relationship--dd98f1ef-13be-4f30-97fc-889c92fb47ee", - "modified": "2021-01-06T18:30:55.781Z", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.966Z", "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:55.782Z", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.966Z", "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:55.782Z", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", + "created": "2021-01-13T01:52:44.966Z", "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:55.782Z", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.967Z", "id": "relationship--1b0b106b-a594-446d-8af7-999d2e790dd0", - "modified": "2021-01-06T18:30:55.784Z", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.967Z", "id": "relationship--35e3b378-300d-4f7b-a862-24c19a00c565", - "modified": "2021-01-06T18:30:55.784Z", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.967Z", "id": "relationship--b4a98aee-f4d0-4dc0-9a3d-3fdb927b2e35", - "modified": "2021-01-06T18:30:55.784Z", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.967Z", "id": "relationship--dfef2cfa-13d6-4346-abff-7fa97c163dd7", - "modified": "2021-01-06T18:30:55.784Z", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.785Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.968Z", "id": "relationship--659f7bb9-2f68-4498-86aa-74f8d42c0f38", - "modified": "2021-01-06T18:30:55.785Z", + "modified": "2021-01-13T01:52:44.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.786Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.968Z", "id": "relationship--b30e229d-763e-471d-b042-b2e35cba4c14", - "modified": "2021-01-06T18:30:55.786Z", + "modified": "2021-01-13T01:52:44.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.786Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.969Z", "id": "relationship--94096e4d-8e2b-4692-b48f-c0d46a3efce5", - "modified": "2021-01-06T18:30:55.786Z", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.787Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.969Z", "id": "relationship--17024b85-bf9d-492c-8792-8b781af76dbf", - "modified": "2021-01-06T18:30:55.787Z", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.787Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.969Z", "id": "relationship--facbd8b4-bd6b-4f65-85a5-13d7133185aa", - "modified": "2021-01-06T18:30:55.787Z", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.969Z", "id": "relationship--fb5d753f-7493-4061-b8e7-af6441af1433", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--597c8044-a417-44a8-b5d8-c08e9d151f91", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--e83ec626-054b-4bf3-8b05-42970aae4d97", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--68264c28-6497-4d3f-90df-7f7ac0319332", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--a6da952a-e995-4e4b-962a-203620b6577b", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--4c623b63-4959-4bd7-b762-64a146e60d98", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.970Z", "id": "relationship--360c46c7-3260-4771-b112-6e96a3de9f2d", - "modified": "2021-01-06T18:30:55.788Z", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--b9140fe5-e968-4a9b-a7e3-8f29cdf439df", - "modified": "2021-01-06T18:30:55.789Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--f92eca37-5c60-4264-9544-0f631a4da7e9", - "modified": "2021-01-06T18:30:55.789Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--fac22b6b-533a-4e70-8ca0-b33c20eb2ee2", - "modified": "2021-01-06T18:30:55.789Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--14f246fd-9df0-4784-8d75-b02162b87173", - "modified": "2021-01-06T18:30:55.790Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--78f45276-c8f4-4345-a0c0-c4d2d99a74ab", - "modified": "2021-01-06T18:30:55.790Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--7d510caf-8255-4a0b-969d-e9e1676d6d38", - "modified": "2021-01-06T18:30:55.790Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.971Z", "id": "relationship--0d37bef5-c370-4da1-aa15-26b502f2e3e9", - "modified": "2021-01-06T18:30:55.790Z", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.972Z", "id": "relationship--2dfb0bd1-5fad-4b92-b476-d8c104ae4081", - "modified": "2021-01-06T18:30:55.790Z", + "modified": "2021-01-13T01:52:44.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.972Z", "id": "relationship--47ade3ca-ff9d-43ad-a5a8-7bc743bff805", - "modified": "2021-01-06T18:30:55.791Z", + "modified": "2021-01-13T01:52:44.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.973Z", "id": "relationship--65e2c9ff-ad02-45fd-9058-1c26fc2b97a4", - "modified": "2021-01-06T18:30:55.791Z", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.973Z", "id": "relationship--4eb105c3-ea17-43ff-b509-4a4a045d9817", - "modified": "2021-01-06T18:30:55.791Z", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.792Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.973Z", "id": "relationship--30081747-f4f4-4c13-a3a0-5b4dee34c945", - "modified": "2021-01-06T18:30:55.792Z", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.974Z", "id": "relationship--ee2c5a2f-4e42-45de-997c-1ac69ce5cfd4", - "modified": "2021-01-06T18:30:55.793Z", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.974Z", "id": "relationship--b66df816-16b3-4453-a802-6eccbc7f363c", - "modified": "2021-01-06T18:30:55.793Z", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.974Z", "id": "relationship--05599454-f1c3-43aa-b622-bbca2a3f2c05", - "modified": "2021-01-06T18:30:55.793Z", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.794Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.975Z", "id": "relationship--f6964ec1-7f5d-4177-9532-ae8fca2eeb6e", - "modified": "2021-01-06T18:30:55.794Z", + "modified": "2021-01-13T01:52:44.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.795Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.976Z", "id": "relationship--6310f630-4f74-4852-80af-240e8f494633", - "modified": "2021-01-06T18:30:55.795Z", + "modified": "2021-01-13T01:52:44.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.796Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.977Z", "id": "relationship--09641de3-4d40-4b64-a31a-70a41392f9f6", - "modified": "2021-01-06T18:30:55.796Z", + "modified": "2021-01-13T01:52:44.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.796Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.977Z", "id": "relationship--eaa826b6-bfb6-43f2-aa28-8965f3eeb2b6", - "modified": "2021-01-06T18:30:55.796Z", + "modified": "2021-01-13T01:52:44.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.797Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.978Z", "id": "relationship--7216f8ae-27b5-433b-9b96-6bddfc82d068", - "modified": "2021-01-06T18:30:55.797Z", + "modified": "2021-01-13T01:52:44.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.979Z", "id": "relationship--f2f8bbcd-2809-4312-b738-f16beff4be10", - "modified": "2021-01-06T18:30:55.799Z", + "modified": "2021-01-13T01:52:44.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.979Z", "id": "relationship--3341e5d8-615c-40e0-8f43-274adbd1deeb", - "modified": "2021-01-06T18:30:55.799Z", + "modified": "2021-01-13T01:52:44.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.800Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.980Z", "id": "relationship--951c6dea-a7ab-4ed0-bd3f-ad19fd699978", - "modified": "2021-01-06T18:30:55.800Z", + "modified": "2021-01-13T01:52:44.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.802Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.981Z", "id": "relationship--f5b33313-4f98-4c12-8da7-5d5b910c2be8", - "modified": "2021-01-06T18:30:55.802Z", + "modified": "2021-01-13T01:52:44.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.803Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.982Z", "id": "relationship--b2dd65a4-8e8a-4f56-8829-d225770d918d", - "modified": "2021-01-06T18:30:55.803Z", + "modified": "2021-01-13T01:52:44.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.803Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.982Z", "id": "relationship--0e7aafd6-a1bb-4d6b-b6f1-1759a8874464", - "modified": "2021-01-06T18:30:55.803Z", + "modified": "2021-01-13T01:52:44.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.804Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.983Z", "id": "relationship--4acd3085-42b9-42cb-a7b8-e79195d7b810", - "modified": "2021-01-06T18:30:55.804Z", + "modified": "2021-01-13T01:52:44.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.805Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.984Z", "id": "relationship--ab25012b-9225-4491-accf-bd5da900b7bc", - "modified": "2021-01-06T18:30:55.805Z", + "modified": "2021-01-13T01:52:44.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.806Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.985Z", "id": "relationship--c32e8f17-96fa-4fa2-9bb3-6179b116ebe5", - "modified": "2021-01-06T18:30:55.806Z", + "modified": "2021-01-13T01:52:44.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.807Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.986Z", "id": "relationship--36d3f065-2e15-413f-be54-5fc93e7235c0", - "modified": "2021-01-06T18:30:55.807Z", + "modified": "2021-01-13T01:52:44.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.808Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.986Z", "id": "relationship--f09d4a58-9e02-4b65-8bc9-2ab8c5b86cbb", - "modified": "2021-01-06T18:30:55.808Z", + "modified": "2021-01-13T01:52:44.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.987Z", "id": "relationship--d27c7752-bd34-4bf0-855b-71fa615b1913", - "modified": "2021-01-06T18:30:55.809Z", + "modified": "2021-01-13T01:52:44.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.987Z", "id": "relationship--5b792e8d-92f3-49c7-ba65-7649151a0993", - "modified": "2021-01-06T18:30:55.809Z", + "modified": "2021-01-13T01:52:44.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.810Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.988Z", "id": "relationship--e5415d5c-ebb5-4aa9-880e-4431219d0aa7", - "modified": "2021-01-06T18:30:55.810Z", + "modified": "2021-01-13T01:52:44.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.811Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.989Z", "id": "relationship--3d652951-a9f5-485d-b3fb-c04d13bc31e6", - "modified": "2021-01-06T18:30:55.811Z", + "modified": "2021-01-13T01:52:44.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.812Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.990Z", "id": "relationship--e237054b-bab8-486b-b8a4-30d76e0fca40", - "modified": "2021-01-06T18:30:55.812Z", + "modified": "2021-01-13T01:52:44.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.813Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.990Z", "id": "relationship--6041cc25-f85a-4df7-8ab9-4d2e253330d3", - "modified": "2021-01-06T18:30:55.813Z", + "modified": "2021-01-13T01:52:44.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.814Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.991Z", "id": "relationship--506f72da-0941-49a0-92a0-17b33f3b4c2b", - "modified": "2021-01-06T18:30:55.814Z", + "modified": "2021-01-13T01:52:44.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.815Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.991Z", "id": "relationship--0d03bdf8-da5c-4208-86f3-aadc2c36747b", - "modified": "2021-01-06T18:30:55.815Z", + "modified": "2021-01-13T01:52:44.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.992Z", "id": "relationship--130d44ae-5874-48a3-9dc8-2389a24c5c9e", - "modified": "2021-01-06T18:30:55.816Z", + "modified": "2021-01-13T01:52:44.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:55.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c5fc1e05-e455-4029-9199-f108cb4f0093", - "modified": "2021-01-06T18:30:55.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.818Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.994Z", "id": "relationship--df090321-bce1-4818-b57f-08e5c1d76dea", - "modified": "2021-01-06T18:30:55.818Z", + "modified": "2021-01-13T01:52:44.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.819Z", - "description": "Information Flow Enforcement", - "id": "relationship--f3824fe4-c1f2-4704-b346-a43185f6d0ff", - "modified": "2021-01-06T18:30:55.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.820Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.995Z", "id": "relationship--39084257-41db-4704-a20d-fe19acab0f23", - "modified": "2021-01-06T18:30:55.820Z", + "modified": "2021-01-13T01:52:44.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.820Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.995Z", "id": "relationship--0393d88e-d968-4563-b2d1-39a9736d9683", - "modified": "2021-01-06T18:30:55.820Z", + "modified": "2021-01-13T01:52:44.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.821Z", - "description": "Boundary Protection", - "id": "relationship--b72ff145-0b06-4c79-8019-28efc0623e3d", - "modified": "2021-01-06T18:30:55.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.822Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.997Z", "id": "relationship--189b5da5-c0c8-4f26-a14f-ea3b11dedaed", - "modified": "2021-01-06T18:30:55.822Z", + "modified": "2021-01-13T01:52:44.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.998Z", "id": "relationship--2eb58f88-80ba-49d9-90da-39b2f2cb750b", - "modified": "2021-01-06T18:30:55.823Z", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.998Z", "id": "relationship--39047a07-e9c5-49c2-961c-8221c089bc05", - "modified": "2021-01-06T18:30:55.823Z", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.998Z", "id": "relationship--328a0692-fe35-4efc-ab86-82a388abfce9", - "modified": "2021-01-06T18:30:55.823Z", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--5f680503-3504-4f89-85b4-905764ed8de9", - "modified": "2021-01-06T18:30:55.826Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--3c3abba4-dec7-4146-a6f0-089e71063f19", - "modified": "2021-01-06T18:30:55.826Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--bfc2b93c-ae8a-402e-920d-2fffc4a65666", - "modified": "2021-01-06T18:30:55.826Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--98d29c43-dd96-44a4-aff2-bf36b20bf028", - "modified": "2021-01-06T18:30:55.826Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--4a6912c7-71be-4ce4-83dc-d5cc9c697062", - "modified": "2021-01-06T18:30:55.827Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--d31865b6-4e6b-429f-807e-51a61ab75807", - "modified": "2021-01-06T18:30:55.827Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.000Z", "id": "relationship--bae540cd-051e-4ef0-b4cf-68a1ca4f3056", - "modified": "2021-01-06T18:30:55.827Z", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.001Z", "id": "relationship--aed763cd-de48-4240-b11a-56728d3319d3", - "modified": "2021-01-06T18:30:55.827Z", + "modified": "2021-01-13T01:52:45.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.829Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.003Z", "id": "relationship--d50e44ed-5a0e-44fa-aedb-0285df427fb9", - "modified": "2021-01-06T18:30:55.829Z", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.829Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.003Z", "id": "relationship--e2d545bd-8c42-4a4f-896d-de9c7f3d06c1", - "modified": "2021-01-06T18:30:55.829Z", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.003Z", "id": "relationship--d3b4a866-dc80-4be7-9d93-4e0032645d96", - "modified": "2021-01-06T18:30:55.830Z", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.003Z", "id": "relationship--bf427f71-d7c0-4b95-b0bf-e9bede19caae", - "modified": "2021-01-06T18:30:55.830Z", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.832Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.004Z", "id": "relationship--9c421eff-bdb4-4370-96fa-dde762ddce3e", - "modified": "2021-01-06T18:30:55.832Z", + "modified": "2021-01-13T01:52:45.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--72725aaf-9c72-42db-bd3d-f9fdbfd2d520", - "modified": "2021-01-06T18:30:55.833Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--b8aec0b7-a1f2-46a4-956e-da39b529e6be", - "modified": "2021-01-06T18:30:55.833Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--5cacc238-7c66-4561-9be4-ef7503c30b90", - "modified": "2021-01-06T18:30:55.833Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--6f1cd448-ed68-487a-9a19-a52739cefb8f", - "modified": "2021-01-06T18:30:55.833Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--372b8c26-5d01-4bd2-96ab-c95eb7b263a3", - "modified": "2021-01-06T18:30:55.833Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--ef1ac5c5-885a-410e-ad19-e24e6ba1936c", - "modified": "2021-01-06T18:30:55.834Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--32086d6d-4933-462c-8ba0-1a9414acfae8", - "modified": "2021-01-06T18:30:55.834Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--93c9647f-a8ab-430a-8405-134814e4400a", - "modified": "2021-01-06T18:30:55.834Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.005Z", "id": "relationship--4a730cff-33bd-419c-a8e8-b8284b8e9c4e", - "modified": "2021-01-06T18:30:55.834Z", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.006Z", "id": "relationship--a6e37231-471c-44fe-a52c-89be1a2acf99", - "modified": "2021-01-06T18:30:55.834Z", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.006Z", "id": "relationship--fef4f90c-0d8b-49c7-bd94-e2954eb96955", - "modified": "2021-01-06T18:30:55.835Z", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.006Z", "id": "relationship--3f8a9de7-d3b6-4de1-9d6f-b9663a9efd04", - "modified": "2021-01-06T18:30:55.835Z", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.006Z", "id": "relationship--96958440-16ce-4932-b5b5-cc0ef42c36c0", - "modified": "2021-01-06T18:30:55.835Z", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.006Z", "id": "relationship--c130833e-b64c-457d-b048-38d550a39967", - "modified": "2021-01-06T18:30:55.835Z", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.836Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--62f2ebf2-bc28-4d76-aa5e-9d3fc55c3c47", - "modified": "2021-01-06T18:30:55.836Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--e13273a3-d15a-4d18-806c-30431b93c1db", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--6c19bbc4-7c04-4c37-a82f-73ed080c52f2", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--a678ecf1-72b4-40a9-9ee6-0cf6c3a74f37", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--597a50d1-82dd-4120-b304-c34bc1ccd1da", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.007Z", "id": "relationship--a719db2a-6199-437b-aaab-36bd0b804ff9", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--33ce2d0e-bd94-4a4c-aee2-93050596297f", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--7e84f6f1-ed85-4c47-81ff-0056b5ef96e3", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--813725d3-093a-456c-a3ea-9c6c255ab76a", - "modified": "2021-01-06T18:30:55.837Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--2e393a0d-b7c8-455f-9df1-2dd88ceec9fe", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--c97c3a59-a259-4ab1-8a4c-75b68363bbb1", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--0edea018-c09a-4292-bf79-13c95e94d44e", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--2f6e1ef8-ebbc-482b-a240-3a8f03c3e5b4", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--3c984102-11f3-4d81-83c1-1ad49755a5a8", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--6492fac5-346a-4940-b996-1315f215db86", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.008Z", "id": "relationship--70b69d4d-f208-4cbc-975d-c97e5ae47de8", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--d8c3ca33-5b97-4359-a2c7-dc9d711c0285", - "modified": "2021-01-06T18:30:55.838Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--0c341d3d-7dc2-4f78-8879-dd695bfd2fb6", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--eb64bc22-b892-447c-ade9-6ade63b57c5c", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--2329541c-9358-4150-bdad-2dbb2e4219dc", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--c11360fb-2616-46fd-95c3-e00e1ac5dbdb", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--815865be-2e57-48e8-b9a6-e2e6dc8856b9", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--92fb168c-ffa4-4743-8b2f-9108c988b73a", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--c3facc77-0a01-4817-a5fd-df4381613aea", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--98cfc4b6-ef89-431a-a21b-5170db3eb93a", - "modified": "2021-01-06T18:30:55.839Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--92c7951f-07ff-49ad-8650-b08ea64ed2fe", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.009Z", "id": "relationship--1c30c73b-d586-4b12-8bf9-359faded36ec", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--a70f2402-f1d5-4d24-b972-f58828c8d324", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--1a79c0d8-266b-4e0d-9d68-ce278cb9478f", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--8056a96c-bc6e-484c-8bf9-f567091b1990", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--d9fcf7b0-f8a9-4a36-a9c0-cacd26045bb9", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--78b4e92a-010c-440e-9a49-f0597923e272", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--189a2d3a-b288-49bf-94a3-352ac839e1ea", - "modified": "2021-01-06T18:30:55.840Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--af2179ad-f46c-4ad0-8aab-bb57a412468f", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--001e70aa-f93d-4fcc-908d-cd021ed9d95d", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--d643bf85-19c0-4b07-ab77-4497c545ab27", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.010Z", "id": "relationship--7ceb1245-c1ee-47f6-8e03-d4a1cfe93df8", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.011Z", "id": "relationship--253f2be9-7f46-4e8d-ba6a-21dc75cd1d2b", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.011Z", "id": "relationship--614100d5-0171-4589-b3af-f9b24ed3aa83", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", + "created": "2021-01-13T01:52:45.011Z", "id": "relationship--b0986871-4cd1-45c4-8bed-654f0fd473df", - "modified": "2021-01-06T18:30:55.841Z", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.842Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--ceb96f28-656c-4e36-8fea-a637ec7bf607", - "modified": "2021-01-06T18:30:55.842Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.842Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--f3749bb7-d0f8-4091-843c-d101a141e3d4", - "modified": "2021-01-06T18:30:55.842Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--978ce78d-3afc-4d9a-8f66-306a043b317d", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--11aed2a8-085d-4e03-808d-d4cabe2df0c4", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--d4506ced-1ebd-4074-92d9-ac3377e01f46", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--d77ddd9d-938a-4755-823f-d7557d210e7b", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--08383e79-e946-4793-b231-d9afc121f08c", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--15a42d6a-9852-440c-aa98-09f453fd0b41", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--96d61be5-4517-46cd-a894-6c085f5631b9", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.012Z", "id": "relationship--0928956e-2e24-4d12-93bd-44a3f5dc5fec", - "modified": "2021-01-06T18:30:55.843Z", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.844Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.013Z", "id": "relationship--3b14d2da-96d9-4692-a93d-0c7d22f4f9f8", - "modified": "2021-01-06T18:30:55.844Z", + "modified": "2021-01-13T01:52:45.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.844Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.013Z", "id": "relationship--99db5247-5897-4818-b796-bd49f56c5206", - "modified": "2021-01-06T18:30:55.844Z", + "modified": "2021-01-13T01:52:45.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.014Z", "id": "relationship--073cdd02-36e4-4fbd-9ba1-85a07747f23f", - "modified": "2021-01-06T18:30:55.845Z", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.014Z", "id": "relationship--32539bde-b54e-4c1e-bef5-8b11df014339", - "modified": "2021-01-06T18:30:55.845Z", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.014Z", "id": "relationship--77727e66-a11a-4954-9238-a9ef2eeacc23", - "modified": "2021-01-06T18:30:55.845Z", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.015Z", "id": "relationship--71953c4e-4aac-47f4-b592-bdb119876c87", - "modified": "2021-01-06T18:30:55.846Z", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.015Z", "id": "relationship--e3cc47d3-35e5-4125-96c8-595c02f98365", - "modified": "2021-01-06T18:30:55.846Z", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.015Z", "id": "relationship--1fb8ebaf-4328-4cdc-8229-ec79b09fb0c6", - "modified": "2021-01-06T18:30:55.846Z", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.015Z", "id": "relationship--f77e25fe-b367-4590-97a7-8ec510a69f51", - "modified": "2021-01-06T18:30:55.846Z", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.015Z", "id": "relationship--55943244-64d3-4b37-86f6-7e2db89ba028", - "modified": "2021-01-06T18:30:55.846Z", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.847Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--00cb409f-add8-44fe-99bd-fadffa4aa364", - "modified": "2021-01-06T18:30:55.847Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--8f08a865-6807-4ba5-9c1b-59b6e544a547", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--d693a5ad-fe56-4a3f-bf9a-e2e0029ae337", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--b3134421-8369-4319-a65a-483f8890968b", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--d8d93511-6b25-40ce-bdc6-6294b8fc0742", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--4b87601b-9070-4fad-be10-b4ad60da1345", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--518e6234-146d-42a5-bfb7-ecebab861412", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.017Z", "id": "relationship--5836e994-e48b-4458-818a-1b7add403d7f", - "modified": "2021-01-06T18:30:55.848Z", + "modified": "2021-01-13T01:52:45.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.849Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.017Z", "id": "relationship--c3af3f89-f381-4bab-92ff-11a81464137e", - "modified": "2021-01-06T18:30:55.849Z", + "modified": "2021-01-13T01:52:45.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.850Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.018Z", "id": "relationship--437b0034-6e2c-4f86-9b1a-5aed2e623078", - "modified": "2021-01-06T18:30:55.850Z", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.851Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.018Z", "id": "relationship--cacc2bc1-2990-439f-98c7-d590a918520d", - "modified": "2021-01-06T18:30:55.851Z", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.851Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.018Z", "id": "relationship--08292c83-03a9-4ccc-bd2b-2b269347aa53", - "modified": "2021-01-06T18:30:55.851Z", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.852Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.019Z", "id": "relationship--85adc084-effe-4f94-938c-be04c6ad503b", - "modified": "2021-01-06T18:30:55.852Z", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.852Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.019Z", "id": "relationship--8637e0ca-79d6-41f4-b1d6-8c8a3032323a", - "modified": "2021-01-06T18:30:55.852Z", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.853Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.019Z", "id": "relationship--fd5b9976-2616-4de7-a82b-055590b499d6", - "modified": "2021-01-06T18:30:55.853Z", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.854Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--7441e8d0-c286-4eaf-bde9-4d276d4136dc", - "modified": "2021-01-06T18:30:55.854Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.854Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--fa4478b1-f4b9-4048-971a-6764fe727b8d", - "modified": "2021-01-06T18:30:55.854Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--4bd81c36-96e4-4fca-8d52-870e980efe21", - "modified": "2021-01-06T18:30:55.855Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--70850735-a9ca-424b-a707-f3b85ec009c4", - "modified": "2021-01-06T18:30:55.855Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--d05a6070-4973-4ac7-8f0d-a5430f07e912", - "modified": "2021-01-06T18:30:55.855Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.020Z", "id": "relationship--127ea0a6-87bf-4749-bf48-d0d239e0cc20", - "modified": "2021-01-06T18:30:55.855Z", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.021Z", "id": "relationship--2372118d-dd30-4a65-8d1f-cb5114b00801", - "modified": "2021-01-06T18:30:55.856Z", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.021Z", "id": "relationship--cb5086df-987b-49e2-8b32-cdefd3a4b74d", - "modified": "2021-01-06T18:30:55.856Z", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.021Z", "id": "relationship--fa277757-0ef9-4bd4-934a-44370f01a784", - "modified": "2021-01-06T18:30:55.856Z", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.857Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.022Z", "id": "relationship--ea44de23-c95d-4392-81ee-b570fae7b645", - "modified": "2021-01-06T18:30:55.857Z", + "modified": "2021-01-13T01:52:45.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.858Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:55.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.858Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:55.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.859Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.023Z", "id": "relationship--7d4f8e6f-b8d4-4d6d-8bd4-a9a26425c784", - "modified": "2021-01-06T18:30:55.859Z", + "modified": "2021-01-13T01:52:45.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.861Z", - "description": "Information Flow Enforcement", - "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:55.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.862Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.025Z", "id": "relationship--ba0d0d8e-ff2b-4ae4-af11-ee516fbbbd0e", - "modified": "2021-01-06T18:30:55.862Z", + "modified": "2021-01-13T01:52:45.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.862Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.025Z", "id": "relationship--633e769e-8bd8-4127-9851-636c7012905c", - "modified": "2021-01-06T18:30:55.862Z", + "modified": "2021-01-13T01:52:45.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.863Z", - "description": "Boundary Protection", - "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:55.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--979bcbe0-0c94-4ac8-a0ec-8342ee743541", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0e155fdb-dab1-4d9e-94e5-48183342ca00", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8e84a5d9-9de8-4299-9fd6-450782544eeb", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8a7c9856-4268-452f-8dfb-371cee9058d7", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--01cdc438-eca4-425d-a2d6-ad52436a43b2", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--236aa49d-3ce6-40cd-a7d5-89e6f152a362", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--195dcbed-4af3-4d95-a5ed-3651a93210ee", - "modified": "2021-01-06T18:30:55.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--43d035ce-4f10-43ea-8f74-88b10116d1d4", - "modified": "2021-01-06T18:30:55.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.028Z", "id": "relationship--c4e57fce-10f8-49dd-ac76-babf848abcd2", - "modified": "2021-01-06T18:30:55.866Z", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.028Z", "id": "relationship--f2894a8b-3107-42ad-b92f-b00b015f24c8", - "modified": "2021-01-06T18:30:55.866Z", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.028Z", "id": "relationship--f0bada09-f155-4e05-9e61-33e94f8a009e", - "modified": "2021-01-06T18:30:55.866Z", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.028Z", "id": "relationship--f0ad1c09-2d7b-4536-a0bc-7478759cc434", - "modified": "2021-01-06T18:30:55.866Z", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.029Z", "id": "relationship--27524780-9859-484b-a317-3dd4615df14e", - "modified": "2021-01-06T18:30:55.868Z", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.029Z", "id": "relationship--41afc783-b203-436b-a6d4-d938c3cdfb87", - "modified": "2021-01-06T18:30:55.868Z", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.029Z", "id": "relationship--138839f2-9bee-4bf1-bf7b-8a42dd9bdc8a", - "modified": "2021-01-06T18:30:55.868Z", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.869Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.029Z", "id": "relationship--95de78f5-2cc2-4089-8ab7-d1de1f744f1a", - "modified": "2021-01-06T18:30:55.869Z", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--e884d6da-e879-498f-8e32-5f82193f0e19", - "modified": "2021-01-06T18:30:55.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--2647354e-e781-4b53-a4d4-557247d1cd63", - "modified": "2021-01-06T18:30:55.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--06522e57-0704-4d57-851e-43f52843a0aa", - "modified": "2021-01-06T18:30:55.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--dbcc8a0d-599d-4eb9-935f-a3e7ee08e4dc", - "modified": "2021-01-06T18:30:55.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.871Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c1a80479-f9f4-4cee-8ffb-28f9ea5e439b", - "modified": "2021-01-06T18:30:55.871Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--5b892111-c49a-49bc-8597-6fe4b31920e7", - "modified": "2021-01-06T18:30:55.872Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--afaab810-c13c-4aec-8328-cbaa87837219", - "modified": "2021-01-06T18:30:55.872Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--441f38b0-e66e-408c-aa34-79d8fae7ae67", - "modified": "2021-01-06T18:30:55.872Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.031Z", "id": "relationship--a0910186-188a-49a3-b217-f3260d783a53", - "modified": "2021-01-06T18:30:55.872Z", + "modified": "2021-01-13T01:52:45.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.032Z", "id": "relationship--bf974b61-d5b5-40f5-99b1-075c0c4cc784", - "modified": "2021-01-06T18:30:55.872Z", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.032Z", "id": "relationship--c1c3659e-9cb3-4949-a701-a08423038f21", - "modified": "2021-01-06T18:30:55.872Z", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.032Z", "id": "relationship--091c9447-1eb3-4083-93f0-47fc8609a744", - "modified": "2021-01-06T18:30:55.872Z", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--d3413c43-1731-4a3c-b99c-66986458d8a4", - "modified": "2021-01-06T18:30:55.873Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--56ab044c-f773-42a3-9b5b-e851df5d7e4f", - "modified": "2021-01-06T18:30:55.873Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--6e7d1cc8-b132-4c35-82dc-69c77c364568", - "modified": "2021-01-06T18:30:55.873Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.874Z", - "description": "Boundary Protection", - "id": "relationship--dd9e068b-fb86-47b8-b326-4dbc7734dcf3", - "modified": "2021-01-06T18:30:55.874Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.034Z", "id": "relationship--b323cb4c-2d8b-42cb-99ce-ed1565fb9971", - "modified": "2021-01-06T18:30:55.875Z", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.034Z", "id": "relationship--ddbe6c91-03bb-49c2-a631-c38f7ca7befc", - "modified": "2021-01-06T18:30:55.875Z", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.034Z", "id": "relationship--ba22a964-c334-4b7a-a737-fb16d21929c0", - "modified": "2021-01-06T18:30:55.875Z", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.876Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.035Z", "id": "relationship--fc8dd7bb-a99c-4d79-8e70-9cfcd609a2ba", - "modified": "2021-01-06T18:30:55.876Z", + "modified": "2021-01-13T01:52:45.035Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.877Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.036Z", "id": "relationship--8b2c664f-8477-4414-97cf-b232aef42c1d", - "modified": "2021-01-06T18:30:55.877Z", + "modified": "2021-01-13T01:52:45.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.879Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.037Z", "id": "relationship--9205d044-eb01-424f-af30-76383815f5c3", - "modified": "2021-01-06T18:30:55.879Z", + "modified": "2021-01-13T01:52:45.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.879Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.037Z", "id": "relationship--dab047db-55d9-442f-ae37-0ad0397ccca2", - "modified": "2021-01-06T18:30:55.879Z", + "modified": "2021-01-13T01:52:45.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.880Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.038Z", "id": "relationship--4caec892-2edb-44ac-a1e9-6a23a1c53f57", - "modified": "2021-01-06T18:30:55.880Z", + "modified": "2021-01-13T01:52:45.038Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.039Z", "id": "relationship--9e000fb6-7d8e-4b4c-aa08-d58a0f5f7cec", - "modified": "2021-01-06T18:30:55.881Z", + "modified": "2021-01-13T01:52:45.039Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.882Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.040Z", "id": "relationship--7c5418a8-04b7-4738-ad04-94459367d6cb", - "modified": "2021-01-06T18:30:55.882Z", + "modified": "2021-01-13T01:52:45.040Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.884Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.041Z", "id": "relationship--ca430e23-e8b8-4940-86d4-1a35e7944204", - "modified": "2021-01-06T18:30:55.884Z", + "modified": "2021-01-13T01:52:45.041Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.884Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.041Z", "id": "relationship--daa96836-dc68-47c8-94a6-9d3d92d8d7fc", - "modified": "2021-01-06T18:30:55.884Z", + "modified": "2021-01-13T01:52:45.041Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.885Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.042Z", "id": "relationship--609a8d11-80cc-4f36-a6d7-5357b8f2773e", - "modified": "2021-01-06T18:30:55.885Z", + "modified": "2021-01-13T01:52:45.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.043Z", "id": "relationship--59aa54a6-335b-487c-ac76-94ca99e4db75", - "modified": "2021-01-06T18:30:55.886Z", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.043Z", "id": "relationship--c016aba8-9132-4e47-af3e-3d8c7a457ca9", - "modified": "2021-01-06T18:30:55.886Z", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.043Z", "id": "relationship--4514b059-97d2-4f59-b5fa-5e58acaa4a3d", - "modified": "2021-01-06T18:30:55.886Z", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.887Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--4b91d828-bdae-4b6e-a49d-e66b2ab27dd0", - "modified": "2021-01-06T18:30:55.887Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--2d3ecff7-355b-4e9c-b254-0674e84c7fa0", - "modified": "2021-01-06T18:30:55.888Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--7604748e-93f8-470c-a8da-f914feff9927", - "modified": "2021-01-06T18:30:55.888Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--1723b5c2-0ace-40be-9533-c4d7c4fff3ab", - "modified": "2021-01-06T18:30:55.888Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--c4e77624-ab62-408e-a93a-25bb0cb1993e", - "modified": "2021-01-06T18:30:55.888Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.044Z", "id": "relationship--984057b7-db44-4789-a0ad-e8e450689856", - "modified": "2021-01-06T18:30:55.888Z", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.889Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.045Z", "id": "relationship--55bc726c-010d-43c7-ab61-8d7aa57b64bc", - "modified": "2021-01-06T18:30:55.889Z", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.889Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.045Z", "id": "relationship--33a3e84c-0ef5-4755-82e1-ae1b883d3e93", - "modified": "2021-01-06T18:30:55.889Z", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.890Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.045Z", "id": "relationship--dae85ca6-0a5c-45e5-a12a-3e8e67999ae8", - "modified": "2021-01-06T18:30:55.890Z", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.890Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.046Z", "id": "relationship--74a01ea9-c9d6-4c0f-b1ab-69e2725a2696", - "modified": "2021-01-06T18:30:55.890Z", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.046Z", "id": "relationship--7509655f-157e-4ed1-b8ea-c1d418941304", - "modified": "2021-01-06T18:30:55.891Z", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.046Z", "id": "relationship--fec157f7-5ddd-467d-ae2e-be3f2bde65bd", - "modified": "2021-01-06T18:30:55.891Z", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.046Z", "id": "relationship--e9bd4f1e-84f9-485a-aa95-5fa6a10e2ecb", - "modified": "2021-01-06T18:30:55.891Z", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.047Z", "id": "relationship--7e484388-3a2b-4603-977c-8177dfabb1e6", - "modified": "2021-01-06T18:30:55.891Z", + "modified": "2021-01-13T01:52:45.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.047Z", "id": "relationship--d797f35b-2057-489e-b19d-6f7eb6c9df07", - "modified": "2021-01-06T18:30:55.891Z", + "modified": "2021-01-13T01:52:45.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.892Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.048Z", "id": "relationship--f9c28e04-f3a7-42c9-8436-c5d656379df5", - "modified": "2021-01-06T18:30:55.892Z", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.893Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.048Z", "id": "relationship--da9ad881-7c04-4dac-82a3-c9337e20a02d", - "modified": "2021-01-06T18:30:55.893Z", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.893Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.048Z", "id": "relationship--41cf9ebe-7f68-4d4e-b46b-51e76c12aee7", - "modified": "2021-01-06T18:30:55.893Z", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.894Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.049Z", "id": "relationship--0934ac7d-24dc-4313-9fb3-f126d866a06c", - "modified": "2021-01-06T18:30:55.894Z", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.895Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.049Z", "id": "relationship--c2b104bc-6f77-428a-b3fd-5e521caae96d", - "modified": "2021-01-06T18:30:55.895Z", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.895Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.049Z", "id": "relationship--f4339002-abc4-4aa0-bed4-992366aa5329", - "modified": "2021-01-06T18:30:55.895Z", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:55.896Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:55.896Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:55.896Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:55.896Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.050Z", "id": "relationship--a5f86b3d-01d6-44da-b2c4-df3419825c39", - "modified": "2021-01-06T18:30:55.896Z", + "modified": "2021-01-13T01:52:45.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.050Z", "id": "relationship--771f6d26-e388-4d6e-a2ea-ad5765af7263", - "modified": "2021-01-06T18:30:55.896Z", + "modified": "2021-01-13T01:52:45.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.897Z", - "description": "Continuous Monitoring", - "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:55.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.897Z", - "description": "Continuous Monitoring", - "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:55.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.052Z", "id": "relationship--c85ecfa3-e756-48d2-99e2-0167f935e940", - "modified": "2021-01-06T18:30:55.899Z", + "modified": "2021-01-13T01:52:45.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.052Z", "id": "relationship--b6e8470d-8ae7-465c-aa11-8eb3fc94b140", - "modified": "2021-01-06T18:30:55.899Z", + "modified": "2021-01-13T01:52:45.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:55.899Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:55.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:55.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:55.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.902Z", - "description": "Information Flow Enforcement", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:55.902Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.902Z", - "description": "Information Flow Enforcement", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:55.902Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.903Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.054Z", "id": "relationship--53743617-0471-44e8-a9df-e8db2dd76ee0", - "modified": "2021-01-06T18:30:55.903Z", + "modified": "2021-01-13T01:52:45.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.904Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.055Z", "id": "relationship--19c81411-09a6-40b9-9761-5c9e8f5b4059", - "modified": "2021-01-06T18:30:55.904Z", + "modified": "2021-01-13T01:52:45.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.904Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.055Z", "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:55.904Z", + "modified": "2021-01-13T01:52:45.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.905Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.056Z", "id": "relationship--56ee2214-dd32-4867-9da8-b38013c35dcb", - "modified": "2021-01-06T18:30:55.905Z", + "modified": "2021-01-13T01:52:45.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.906Z", - "description": "Information Flow Enforcement, Remote Access", + "created": "2021-01-13T01:52:45.057Z", "id": "relationship--5b5b5c21-43ec-4bf1-a2db-728c2922d596", - "modified": "2021-01-06T18:30:55.906Z", + "modified": "2021-01-13T01:52:45.057Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.906Z", - "description": "Information Flow Enforcement, Remote Access", + "created": "2021-01-13T01:52:45.057Z", "id": "relationship--69a2b36d-b382-4849-bea5-a375fd2d110d", - "modified": "2021-01-06T18:30:55.906Z", + "modified": "2021-01-13T01:52:45.057Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.907Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.058Z", "id": "relationship--48b77967-1aa3-409f-9888-ca92b1108d5a", - "modified": "2021-01-06T18:30:55.907Z", + "modified": "2021-01-13T01:52:45.058Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.907Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.058Z", "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:55.907Z", + "modified": "2021-01-13T01:52:45.058Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.908Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.059Z", "id": "relationship--61023e1e-9ac5-4ee8-9a68-723ae071d315", - "modified": "2021-01-06T18:30:55.908Z", + "modified": "2021-01-13T01:52:45.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:55.909Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:55.909Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.060Z", "id": "relationship--2d3329c9-f2c4-4c3c-bc9c-df4135741cf1", - "modified": "2021-01-06T18:30:55.909Z", + "modified": "2021-01-13T01:52:45.060Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.910Z", - "description": "Continuous Monitoring", - "id": "relationship--8e9ddc17-dc67-41cb-8f14-0281d9995542", - "modified": "2021-01-06T18:30:55.910Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:55.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:55.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--b8ad08b1-de3e-44e2-8f19-247ee694ee27", - "modified": "2021-01-06T18:30:55.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.913Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:55.913Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.913Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--6387f37c-50f8-4955-b895-ebae75e435d8", - "modified": "2021-01-06T18:30:55.913Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.064Z", "id": "relationship--1cbdc079-9f5b-42d4-bcaf-8b906c217e69", - "modified": "2021-01-06T18:30:55.914Z", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.064Z", "id": "relationship--0d038216-9c72-4d49-a8aa-efb209629e2b", - "modified": "2021-01-06T18:30:55.914Z", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.064Z", "id": "relationship--8471bdb3-90ba-4994-8198-d732dbce18ee", - "modified": "2021-01-06T18:30:55.914Z", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:55.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.064Z", "id": "relationship--e59623db-2a68-4010-a9f2-3810d2485386", - "modified": "2021-01-06T18:30:55.915Z", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.064Z", "id": "relationship--57c93a7e-294b-4e0c-a05b-2c200c6b18ca", - "modified": "2021-01-06T18:30:55.915Z", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.916Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--d23cfd21-3a6a-4b6b-a566-1b93c4f5c78c", - "modified": "2021-01-06T18:30:55.916Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.917Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.065Z", "id": "relationship--696a55bf-4b4f-4e87-88ef-956d45656350", - "modified": "2021-01-06T18:30:55.917Z", + "modified": "2021-01-13T01:52:45.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.917Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.065Z", "id": "relationship--5fcf0827-22bb-4559-ac02-90e25f62d691", - "modified": "2021-01-06T18:30:55.917Z", + "modified": "2021-01-13T01:52:45.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.066Z", "id": "relationship--870e43c2-7a35-4205-8431-c3ae90d35ab1", - "modified": "2021-01-06T18:30:55.918Z", + "modified": "2021-01-13T01:52:45.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:55.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.066Z", "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:55.918Z", + "modified": "2021-01-13T01:52:45.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.919Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.067Z", "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:55.919Z", + "modified": "2021-01-13T01:52:45.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.919Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:45.067Z", "id": "relationship--5d8c575a-6333-427b-8426-13c9acbcc366", - "modified": "2021-01-06T18:30:55.919Z", + "modified": "2021-01-13T01:52:45.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--721ccddb-89d9-4070-9fc9-d7a6752e8a6b", - "modified": "2021-01-06T18:30:55.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:45.068Z", "id": "relationship--aabd92a1-d294-4b32-97c9-883c5f05122e", - "modified": "2021-01-06T18:30:55.920Z", + "modified": "2021-01-13T01:52:45.068Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--282768c3-7e20-4726-ab21-28f769bba3a2", - "modified": "2021-01-06T18:30:55.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.069Z", "id": "relationship--c356d850-4a9e-47b0-a4f7-e324881aed1b", - "modified": "2021-01-06T18:30:55.921Z", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.069Z", "id": "relationship--ac1a7f1f-d13d-4bf9-8847-613bb3ef1c04", - "modified": "2021-01-06T18:30:55.921Z", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.069Z", "id": "relationship--91e926da-692e-4b08-83bb-ec5e091c4996", - "modified": "2021-01-06T18:30:55.921Z", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.070Z", "id": "relationship--501cd653-f951-4aba-a92a-b4ec25707e85", - "modified": "2021-01-06T18:30:55.922Z", + "modified": "2021-01-13T01:52:45.070Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", - "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:55.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", - "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:55.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--3c74c586-54f0-470f-8b56-477d4c92cbd5", - "modified": "2021-01-06T18:30:55.923Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--40a9d6d0-ac62-41d8-8b52-02a508e20f71", - "modified": "2021-01-06T18:30:55.923Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--a98cd07c-7f86-4b1f-b963-751cf9c57b11", - "modified": "2021-01-06T18:30:55.923Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:55.924Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:55.924Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.071Z", "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:55.924Z", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", + "created": "2021-01-13T01:52:45.072Z", "id": "relationship--35b6de72-f853-4bb5-87f5-786c8705c4c6", - "modified": "2021-01-06T18:30:55.925Z", + "modified": "2021-01-13T01:52:45.072Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:55.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:55.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", + "created": "2021-01-13T01:52:45.072Z", "id": "relationship--a836bd2e-13c9-4460-9dc5-37580aa7f5e0", - "modified": "2021-01-06T18:30:55.925Z", + "modified": "2021-01-13T01:52:45.072Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", + "created": "2021-01-13T01:52:45.073Z", "id": "relationship--a48fe1a3-ae5f-43e4-818b-4a61174179f6", - "modified": "2021-01-06T18:30:55.926Z", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", + "created": "2021-01-13T01:52:45.073Z", "id": "relationship--d40d8d8c-f1a8-4199-893c-c4113b4a472d", - "modified": "2021-01-06T18:30:55.926Z", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--97e195f0-e5c8-48b0-99f4-edbff224b608", - "modified": "2021-01-06T18:30:55.926Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", + "created": "2021-01-13T01:52:45.073Z", "id": "relationship--6a20f6aa-cfeb-4d2f-8a70-b4569ccc0646", - "modified": "2021-01-06T18:30:55.926Z", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--ca85cc5a-c42d-43a2-8126-db82cc54187a", - "modified": "2021-01-06T18:30:55.926Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.927Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.074Z", "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:55.927Z", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.074Z", "id": "relationship--70138a09-23fc-4eb4-8b00-9c69d120e517", - "modified": "2021-01-06T18:30:55.928Z", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.074Z", "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:55.928Z", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.074Z", "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:55.928Z", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:55.928Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:55.928Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.074Z", "id": "relationship--a129cf5e-d35b-4719-aeee-c0e394b1ff34", - "modified": "2021-01-06T18:30:55.928Z", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:55.928Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.929Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:55.929Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.930Z", - "description": "Continuous Monitoring", - "id": "relationship--c975038b-a5f0-4787-85fc-05f46864c127", - "modified": "2021-01-06T18:30:55.930Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.930Z", - "description": "Continuous Monitoring", - "id": "relationship--e011f9c9-ec87-43e3-b1b0-fedfb161f41d", - "modified": "2021-01-06T18:30:55.930Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.931Z", - "description": "Information Flow Enforcement", - "id": "relationship--44d5846f-d804-4f79-b0a7-c747be7c86ea", - "modified": "2021-01-06T18:30:55.931Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.931Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6acbd57-fa4e-4238-8f1b-abd0f4732f20", - "modified": "2021-01-06T18:30:55.931Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.932Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:55.932Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.933Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:55.933Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.933Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:55.933Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:55.934Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:55.934Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:55.934Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.935Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:55.935Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.935Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:55.935Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.936Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:55.936Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.936Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:55.936Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.937Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.080Z", "id": "relationship--d9f86872-1fa9-4e0d-b7f5-aee41d30d280", - "modified": "2021-01-06T18:30:55.937Z", + "modified": "2021-01-13T01:52:45.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.937Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.080Z", "id": "relationship--72ee9363-0c29-4a88-98df-d1cddbb781c8", - "modified": "2021-01-06T18:30:55.937Z", + "modified": "2021-01-13T01:52:45.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.938Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.081Z", "id": "relationship--d8e22451-3c97-4920-92c5-9a6c2cfa2832", - "modified": "2021-01-06T18:30:55.938Z", + "modified": "2021-01-13T01:52:45.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.938Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.081Z", "id": "relationship--8c01d866-9405-4aee-836c-ce80501e9f67", - "modified": "2021-01-06T18:30:55.938Z", + "modified": "2021-01-13T01:52:45.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.939Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.082Z", "id": "relationship--778d0905-c099-43d7-83cd-4172c0ec69ff", - "modified": "2021-01-06T18:30:55.939Z", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.939Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.082Z", "id": "relationship--fcba7cfc-4a47-446f-8b22-79fe939f4071", - "modified": "2021-01-06T18:30:55.939Z", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.940Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.082Z", "id": "relationship--a24be6a4-699c-403d-ba39-486e849e66d5", - "modified": "2021-01-06T18:30:55.940Z", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.940Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.082Z", "id": "relationship--4efe4af9-8917-4b1b-b40b-c17cb6dbdb3e", - "modified": "2021-01-06T18:30:55.940Z", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.941Z", - "description": "Boundary Protection", - "id": "relationship--a0350100-3212-40d2-a194-83550d5cf6b1", - "modified": "2021-01-06T18:30:55.941Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.942Z", - "description": "Boundary Protection", - "id": "relationship--2251136a-cb32-4dce-ac99-36db0198b18b", - "modified": "2021-01-06T18:30:55.942Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.944Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.084Z", "id": "relationship--7ed97ff6-18ac-40e3-ac4c-f1288bd6f427", - "modified": "2021-01-06T18:30:55.944Z", + "modified": "2021-01-13T01:52:45.084Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.945Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.085Z", "id": "relationship--b84716f1-7821-4395-bab3-ebd3f17fcff0", - "modified": "2021-01-06T18:30:55.945Z", + "modified": "2021-01-13T01:52:45.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.946Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.086Z", "id": "relationship--26a56ab4-bbba-4bcf-b303-4f85fa6083c4", - "modified": "2021-01-06T18:30:55.946Z", + "modified": "2021-01-13T01:52:45.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.947Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.086Z", "id": "relationship--3b9fba86-2583-4fe9-916f-85a2ed1eb7a6", - "modified": "2021-01-06T18:30:55.947Z", + "modified": "2021-01-13T01:52:45.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.948Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.087Z", "id": "relationship--0f01ef2b-ac8e-4389-bd22-9edf7b6450d6", - "modified": "2021-01-06T18:30:55.948Z", + "modified": "2021-01-13T01:52:45.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.949Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.088Z", "id": "relationship--28922cc3-fa83-4f07-8ee1-c076b3ddf8da", - "modified": "2021-01-06T18:30:55.949Z", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.950Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.088Z", "id": "relationship--18ab8f41-d709-4a6d-a47f-317309092e9a", - "modified": "2021-01-06T18:30:55.950Z", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.950Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.088Z", "id": "relationship--08624c17-1bf1-48c8-98eb-8537b92ef398", - "modified": "2021-01-06T18:30:55.950Z", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.089Z", "id": "relationship--557bbba8-b503-4c5a-8537-955030e37f13", - "modified": "2021-01-06T18:30:55.952Z", + "modified": "2021-01-13T01:52:45.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f2f927aa-09c0-4060-9d98-48312736759b", - "modified": "2021-01-06T18:30:55.952Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0c159dbe-46f5-4c1f-a357-95811374ec6c", - "modified": "2021-01-06T18:30:55.952Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.953Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.090Z", "id": "relationship--b4ec8adf-3ade-4cf8-8e90-918f6f97ac49", - "modified": "2021-01-06T18:30:55.953Z", + "modified": "2021-01-13T01:52:45.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.955Z", - "description": "Information Flow Enforcement", - "id": "relationship--72babca1-4c64-4450-848c-96a57909cd64", - "modified": "2021-01-06T18:30:55.955Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.956Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.092Z", "id": "relationship--4302d4a5-317b-4227-8691-d3c19fd52920", - "modified": "2021-01-06T18:30:55.956Z", + "modified": "2021-01-13T01:52:45.092Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.956Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.092Z", "id": "relationship--c482fb86-5806-46e8-aa89-24bed4b2d193", - "modified": "2021-01-06T18:30:55.956Z", + "modified": "2021-01-13T01:52:45.092Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.957Z", - "description": "Boundary Protection", - "id": "relationship--53870ec5-03e4-455a-a07b-d2d95a398d6c", - "modified": "2021-01-06T18:30:55.957Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.094Z", "id": "relationship--f1869fa0-7cfb-4b59-b4b2-d31ae7bceafa", - "modified": "2021-01-06T18:30:55.959Z", + "modified": "2021-01-13T01:52:45.094Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.095Z", "id": "relationship--845b5763-2f76-412a-99b7-ab95856b954b", - "modified": "2021-01-06T18:30:55.959Z", + "modified": "2021-01-13T01:52:45.095Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.095Z", "id": "relationship--be6a7394-6b5b-46ee-92d3-33d26ece03ea", - "modified": "2021-01-06T18:30:55.959Z", + "modified": "2021-01-13T01:52:45.095Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.961Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.096Z", "id": "relationship--542adb5c-ee88-4e32-8b4a-13412d0ce66c", - "modified": "2021-01-06T18:30:55.961Z", + "modified": "2021-01-13T01:52:45.096Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.963Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.097Z", "id": "relationship--bb33f797-f5d6-483a-a5ca-927920e29ea7", - "modified": "2021-01-06T18:30:55.963Z", + "modified": "2021-01-13T01:52:45.097Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.965Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.098Z", "id": "relationship--d55ed387-98f8-49a1-b2b4-63207c0eea14", - "modified": "2021-01-06T18:30:55.965Z", + "modified": "2021-01-13T01:52:45.098Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.965Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.098Z", "id": "relationship--6bde435b-ab3a-46f6-8b4d-2e246c7b5227", - "modified": "2021-01-06T18:30:55.965Z", + "modified": "2021-01-13T01:52:45.098Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.967Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.099Z", "id": "relationship--aa2264c1-53e8-4216-9341-d0359b1bb319", - "modified": "2021-01-06T18:30:55.967Z", + "modified": "2021-01-13T01:52:45.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.969Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.099Z", "id": "relationship--c93759b6-67ce-4547-b704-3e3fad5a18e7", - "modified": "2021-01-06T18:30:55.969Z", + "modified": "2021-01-13T01:52:45.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.100Z", "id": "relationship--62138324-415c-4c9c-b1c3-4dc563bcabb9", - "modified": "2021-01-06T18:30:55.970Z", + "modified": "2021-01-13T01:52:45.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:45.100Z", "id": "relationship--35d65108-1646-40f2-a834-134738cc5b34", - "modified": "2021-01-06T18:30:55.970Z", + "modified": "2021-01-13T01:52:45.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:55.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.971Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:55.971Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.971Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:55.971Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.973Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.101Z", "id": "relationship--4a7b435e-5e2a-4b91-ac4c-7ad800db62c1", - "modified": "2021-01-06T18:30:55.973Z", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.101Z", "id": "relationship--f940ca1b-1424-4f9d-9b2f-974f41b5da01", - "modified": "2021-01-06T18:30:55.974Z", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.101Z", "id": "relationship--fbd85a57-5523-43cc-a3f0-e1737ca9e55e", - "modified": "2021-01-06T18:30:55.974Z", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:55.974Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.975Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:55.975Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.975Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:55.975Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.976Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--cc21441f-57c9-4bf0-af10-228cbcc40d7e", - "modified": "2021-01-06T18:30:55.976Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--8ae9f4cd-ad5b-4064-bca0-6ef5c8a5169b", - "modified": "2021-01-06T18:30:55.977Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--29a9f9ad-52da-402f-b41a-61735e54307e", - "modified": "2021-01-06T18:30:55.977Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--3c5d64ee-850b-41eb-90a3-49fdcc5ef0cf", - "modified": "2021-01-06T18:30:55.977Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.978Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--3c181cfd-e544-4774-8172-b43dbf7124ea", - "modified": "2021-01-06T18:30:55.978Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.978Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:45.102Z", "id": "relationship--50146c8e-4bea-4652-b6d4-b81b382bc33a", - "modified": "2021-01-06T18:30:55.978Z", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--509817e6-b915-47a5-ae82-8b1c937d0577", - "modified": "2021-01-06T18:30:55.979Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--c9f0cc18-6a31-4138-9cbc-fef9d6acdc10", - "modified": "2021-01-06T18:30:55.979Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--c8ef0af3-4b84-4120-9a73-a0753511b14f", - "modified": "2021-01-06T18:30:55.979Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:55.980Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:55.980Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.103Z", "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:55.980Z", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:55.981Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:55.981Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:55.981Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.105Z", "id": "relationship--9fe45e33-cca6-4138-814e-8211c06132ef", - "modified": "2021-01-06T18:30:55.983Z", + "modified": "2021-01-13T01:52:45.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.105Z", "id": "relationship--0f04b09e-4ddd-46cf-95ac-85a08f764a21", - "modified": "2021-01-06T18:30:55.983Z", + "modified": "2021-01-13T01:52:45.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.106Z", "id": "relationship--af1f597d-8e68-4004-8133-4b6746bc0e4a", - "modified": "2021-01-06T18:30:55.983Z", + "modified": "2021-01-13T01:52:45.106Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:55.985Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:55.985Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2c88f31f-1d5f-4728-9405-c262d059fe97", - "modified": "2021-01-06T18:30:55.985Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:55.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:55.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8de42003-1150-4f7f-b910-8c9a11b86178", - "modified": "2021-01-06T18:30:55.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.107Z", "id": "relationship--9e792752-7757-4cc4-8113-937b3f42a502", - "modified": "2021-01-06T18:30:55.986Z", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.107Z", "id": "relationship--fb90da55-17ca-40f4-ab75-31851b47c1f9", - "modified": "2021-01-06T18:30:55.986Z", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.107Z", "id": "relationship--a4a2e87b-f713-41d8-8b4f-e32dae6d41e6", - "modified": "2021-01-06T18:30:55.987Z", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.107Z", "id": "relationship--0f6dd4ca-9839-4b0f-a2a8-67070c0d394e", - "modified": "2021-01-06T18:30:55.987Z", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.107Z", "id": "relationship--a7d948d6-676c-4caf-a20b-760ab77899e8", - "modified": "2021-01-06T18:30:55.987Z", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.108Z", "id": "relationship--3216f2fc-74eb-4c55-8def-a8552d6a9ae1", - "modified": "2021-01-06T18:30:55.987Z", + "modified": "2021-01-13T01:52:45.108Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:55.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:55.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c7181a87-03ff-4afa-8bf6-cbf6770d3803", - "modified": "2021-01-06T18:30:55.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.109Z", "id": "relationship--f966fe2b-b911-447d-ae97-b1106e81f31a", - "modified": "2021-01-06T18:30:55.988Z", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.109Z", "id": "relationship--e957c78e-e256-4fa0-ab42-d4d553f23223", - "modified": "2021-01-06T18:30:55.988Z", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.989Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.109Z", "id": "relationship--b780ed8d-8478-4a1d-ba99-7a1775c54570", - "modified": "2021-01-06T18:30:55.989Z", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:55.990Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.110Z", "id": "relationship--0a904469-4ccf-434b-a544-105aa1442dbb", - "modified": "2021-01-06T18:30:55.990Z", + "modified": "2021-01-13T01:52:45.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.110Z", "id": "relationship--0d212d1d-2d64-41f2-bf43-e91b04838a3b", - "modified": "2021-01-06T18:30:55.990Z", + "modified": "2021-01-13T01:52:45.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.991Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.111Z", "id": "relationship--a9cb3c42-533b-413e-97f6-d3103a2e5d79", - "modified": "2021-01-06T18:30:55.991Z", + "modified": "2021-01-13T01:52:45.111Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.991Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.111Z", "id": "relationship--fa1242a7-e4ae-4c41-9e82-10c814511e8f", - "modified": "2021-01-06T18:30:55.991Z", + "modified": "2021-01-13T01:52:45.111Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.992Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.112Z", "id": "relationship--f783e732-6328-408b-9383-b7adcb9b89d7", - "modified": "2021-01-06T18:30:55.992Z", + "modified": "2021-01-13T01:52:45.112Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.993Z", - "description": "Transmission Confidentiality and Integrity ", + "created": "2021-01-13T01:52:45.113Z", "id": "relationship--86f46710-bafc-4bf3-b63d-2a7812ac4439", - "modified": "2021-01-06T18:30:55.993Z", + "modified": "2021-01-13T01:52:45.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.994Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.994Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.114Z", "id": "relationship--c3bbccbf-29af-49b3-b6ec-3202edda962e", - "modified": "2021-01-06T18:30:55.994Z", + "modified": "2021-01-13T01:52:45.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.995Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:55.995Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.996Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.115Z", "id": "relationship--799bc13f-f4d9-4435-bd00-c0850eb0afb6", - "modified": "2021-01-06T18:30:55.996Z", + "modified": "2021-01-13T01:52:45.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.997Z", - "description": "Information System Monitoring", - "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", - "modified": "2021-01-06T18:30:55.997Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:55.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3672e42a-d702-4538-8d56-d6641892c81c", - "modified": "2021-01-06T18:30:55.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d06f0c5d-dd11-46c9-a891-adbec527106d", - "modified": "2021-01-06T18:30:55.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.117Z", "id": "relationship--6f8012ff-7848-4d5a-9f27-b7727276c789", - "modified": "2021-01-06T18:30:55.998Z", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.117Z", "id": "relationship--d2e8085d-19ce-4f2c-83c1-817f037691ef", - "modified": "2021-01-06T18:30:55.998Z", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.117Z", "id": "relationship--4d70516a-b330-45da-8d01-b20593b27571", - "modified": "2021-01-06T18:30:55.998Z", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.999Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.117Z", "id": "relationship--63711891-bb66-477f-915f-7459f288eb5d", - "modified": "2021-01-06T18:30:55.999Z", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:56.000Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--9be4aeba-d642-4076-923d-304171c4cc48", - "modified": "2021-01-06T18:30:56.000Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.118Z", "id": "relationship--5a7104bb-8391-4592-9f61-7a4f80bf8544", - "modified": "2021-01-06T18:30:56.000Z", + "modified": "2021-01-13T01:52:45.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.118Z", "id": "relationship--9d4e7787-0136-4249-a155-e1e83bddac1b", - "modified": "2021-01-06T18:30:56.000Z", + "modified": "2021-01-13T01:52:45.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.001Z", - "description": "Information System Monitoring", - "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", - "modified": "2021-01-06T18:30:56.001Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.002Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.119Z", "id": "relationship--f0600d91-6cc3-4e2a-87d9-5f7ca14cf7dc", - "modified": "2021-01-06T18:30:56.002Z", + "modified": "2021-01-13T01:52:45.119Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--5f0e565f-5779-4223-8cd1-ea5f06e50218", - "modified": "2021-01-06T18:30:56.003Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--84a3724c-689a-4fd7-8272-664677deab0b", - "modified": "2021-01-06T18:30:56.003Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--f43904ed-b2a4-4f89-ab7b-283c9ca4e2da", - "modified": "2021-01-06T18:30:56.003Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c2eaf4a6-f60c-4f04-9af1-d1abd0aa7d19", - "modified": "2021-01-06T18:30:56.003Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--27aa2137-c7a6-4543-afc4-d2bececabb93", - "modified": "2021-01-06T18:30:56.003Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d0a75b48-9934-416a-9d37-2db71175bd2a", - "modified": "2021-01-06T18:30:56.004Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.121Z", "id": "relationship--833f5af4-e2cd-4b1e-9c73-369c3325e486", - "modified": "2021-01-06T18:30:56.004Z", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.121Z", "id": "relationship--c7ebb3ce-45f3-4130-983c-770e815e249c", - "modified": "2021-01-06T18:30:56.004Z", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.121Z", "id": "relationship--5173c088-4c96-4064-86a8-4a1cba7c688e", - "modified": "2021-01-06T18:30:56.004Z", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--664fb7d3-7276-4ae0-876f-b1ff6d45a53d", - "modified": "2021-01-06T18:30:56.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6f6ddabf-0cf2-444e-b763-5d90c3236145", - "modified": "2021-01-06T18:30:56.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1f8b9948-6c69-4004-a053-2e1163fe3ac2", - "modified": "2021-01-06T18:30:56.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.122Z", "id": "relationship--18ade7d5-2b9c-479a-af07-51709938c257", - "modified": "2021-01-06T18:30:56.005Z", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.122Z", "id": "relationship--6f2885de-226c-4d84-888b-3987cc8fa066", - "modified": "2021-01-06T18:30:56.005Z", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.122Z", "id": "relationship--31700cbc-6045-408e-b41c-2c95f9867ef4", - "modified": "2021-01-06T18:30:56.005Z", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.006Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.123Z", "id": "relationship--29f84893-994a-4ae6-b7bc-0c63c2eb1c5e", - "modified": "2021-01-06T18:30:56.006Z", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.123Z", "id": "relationship--77b26044-b2f1-4a52-b923-eb0f748b8e98", - "modified": "2021-01-06T18:30:56.007Z", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.123Z", "id": "relationship--265d70da-6b4b-48e7-8058-ceedd8656711", - "modified": "2021-01-06T18:30:56.007Z", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.123Z", "id": "relationship--ba948745-14c4-4787-a098-1c358ea7426d", - "modified": "2021-01-06T18:30:56.007Z", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.124Z", "id": "relationship--80a1cb12-16d7-413c-80dc-ab40e764f7fa", - "modified": "2021-01-06T18:30:56.007Z", + "modified": "2021-01-13T01:52:45.124Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.124Z", "id": "relationship--1a8e9f84-f614-4893-be25-edd777f7d81c", - "modified": "2021-01-06T18:30:56.007Z", + "modified": "2021-01-13T01:52:45.124Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:56.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:56.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--781ed8c3-76ef-44ca-aa98-454892152d00", - "modified": "2021-01-06T18:30:56.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--24cebf34-24bb-4fc3-a327-66e5fa15dd2d", - "modified": "2021-01-06T18:30:56.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2a07bd44-a33f-4f08-a2a6-a060c166fcfb", - "modified": "2021-01-06T18:30:56.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--00e91bee-faf6-4906-b891-a94129353157", - "modified": "2021-01-06T18:30:56.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--84806b18-2d8c-4211-86ff-4176633b037c", - "modified": "2021-01-06T18:30:56.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.125Z", "id": "relationship--8406d0de-89c1-4a4c-bbf7-ba4d2f16fd8a", - "modified": "2021-01-06T18:30:56.009Z", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.125Z", "id": "relationship--7164def6-e9a9-4b50-8ead-e4ba78217556", - "modified": "2021-01-06T18:30:56.009Z", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.125Z", "id": "relationship--c356be45-b706-44f2-83d2-2db312a412b1", - "modified": "2021-01-06T18:30:56.009Z", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:56.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--13d27254-e8ae-444a-803b-205cc838a988", - "modified": "2021-01-06T18:30:56.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--511d2c5d-5d5c-4805-a238-6b7d3d33cd9a", - "modified": "2021-01-06T18:30:56.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:56.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d4de1719-a808-4723-b019-0d031c4a3711", - "modified": "2021-01-06T18:30:56.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.126Z", "id": "relationship--1aa4221b-2d10-45f8-93e9-0016e9982952", - "modified": "2021-01-06T18:30:56.010Z", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.126Z", "id": "relationship--eb017b1c-3824-44c5-9e1e-ab4141d1c4f1", - "modified": "2021-01-06T18:30:56.010Z", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.126Z", "id": "relationship--4108871c-fe11-4810-8c2d-cd632564dcff", - "modified": "2021-01-06T18:30:56.010Z", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.126Z", "id": "relationship--a05f561d-d3b2-40fa-8cb4-d7b0a277697f", - "modified": "2021-01-06T18:30:56.010Z", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.011Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.126Z", "id": "relationship--4dc17019-3bbb-425b-a941-5403f375295f", - "modified": "2021-01-06T18:30:56.011Z", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.011Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", - "modified": "2021-01-06T18:30:56.011Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8e3a2f42-ba76-4703-b9cd-fee2eaea4a0c", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--446b6a68-a1fc-4170-950f-af7a4066aed9", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f6a668ac-6fe7-4a72-b85d-989dc38866f2", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3e46cf76-0a60-4128-b662-b9434c42c200", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6cecb992-1204-4f09-946d-e7e005175642", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4e75bebe-f52c-46f3-b4c5-763dcd8da86f", - "modified": "2021-01-06T18:30:56.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.013Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:56.013Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.013Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f6300e49-0277-45fe-9b4e-b881d2bb2e15", - "modified": "2021-01-06T18:30:56.013Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--1a8be10f-54d5-48d7-b084-c3d95047ec55", - "modified": "2021-01-06T18:30:56.014Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--019c65ba-0b16-407d-a561-1f9cc87a6d39", - "modified": "2021-01-06T18:30:56.014Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--d8dce54f-3a0b-44ab-aa50-77f1da21af73", - "modified": "2021-01-06T18:30:56.014Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.015Z", - "description": "Information System Monitoring", - "id": "relationship--3b34afe1-45be-4890-acf5-fd91efa085bc", - "modified": "2021-01-06T18:30:56.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.015Z", - "description": "Information System Monitoring", - "id": "relationship--e98ea03a-daa1-49db-b7cf-c7f870e83815", - "modified": "2021-01-06T18:30:56.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.016Z", - "description": "Access Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:45.130Z", "id": "relationship--be91b94b-6b17-408e-883f-404b7e34a4b0", - "modified": "2021-01-06T18:30:56.016Z", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.016Z", - "description": "Access Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:45.130Z", "id": "relationship--141ca8a7-b84a-4dec-8874-9420c6752b3c", - "modified": "2021-01-06T18:30:56.016Z", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.017Z", - "description": "Access Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:45.130Z", "id": "relationship--2ca75c45-6725-4564-9710-04ab699e2192", - "modified": "2021-01-06T18:30:56.017Z", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.017Z", - "description": "Access Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:45.131Z", "id": "relationship--0c557e10-209f-47b4-9416-05e65376fff3", - "modified": "2021-01-06T18:30:56.017Z", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.018Z", - "description": "Configuration Management, Configuration Settings", + "created": "2021-01-13T01:52:45.131Z", "id": "relationship--09fa589a-1fec-4f03-9b69-c51a11c07313", - "modified": "2021-01-06T18:30:56.018Z", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", + "created": "2021-01-13T01:52:45.131Z", "id": "relationship--595e2ff7-1f0e-4ed9-a5d4-c505ac9d235c", - "modified": "2021-01-06T18:30:56.019Z", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", + "created": "2021-01-13T01:52:45.132Z", "id": "relationship--6d23ebbf-9015-48bd-a154-62ac14d51f41", - "modified": "2021-01-06T18:30:56.019Z", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", + "created": "2021-01-13T01:52:45.132Z", "id": "relationship--9f53fb73-e8a5-4af4-b879-9ce0bfdbc87c", - "modified": "2021-01-06T18:30:56.019Z", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.132Z", "id": "relationship--2c54bc89-0b38-440e-951e-1afa90dae626", - "modified": "2021-01-06T18:30:56.020Z", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.132Z", "id": "relationship--b2dce946-5e31-4f1f-9cba-e00a35bef136", - "modified": "2021-01-06T18:30:56.020Z", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.133Z", "id": "relationship--a81f5ac6-1220-4555-bc73-f94cf7b43629", - "modified": "2021-01-06T18:30:56.020Z", + "modified": "2021-01-13T01:52:45.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.133Z", "id": "relationship--d266a1ad-91f7-4f72-aa64-503d7238d641", - "modified": "2021-01-06T18:30:56.020Z", + "modified": "2021-01-13T01:52:45.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.021Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.134Z", "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.021Z", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.022Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.134Z", "id": "relationship--bd29622d-4705-44f6-b44b-3cfa4f8eec81", - "modified": "2021-01-06T18:30:56.022Z", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.022Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.134Z", "id": "relationship--0fb60404-9453-4f86-a882-de2a4e79e203", - "modified": "2021-01-06T18:30:56.022Z", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.135Z", "id": "relationship--330442e2-43fc-4bd9-a32b-db4792083f6b", - "modified": "2021-01-06T18:30:56.023Z", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.135Z", "id": "relationship--1cf67c0d-3a01-49b9-b4bc-20e962b6fe7f", - "modified": "2021-01-06T18:30:56.023Z", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.135Z", "id": "relationship--77d076e8-5dc6-458e-824a-103749af5f03", - "modified": "2021-01-06T18:30:56.023Z", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.024Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.136Z", "id": "relationship--30a2e61d-da9e-466d-a5f6-e4f8534a09fe", - "modified": "2021-01-06T18:30:56.024Z", + "modified": "2021-01-13T01:52:45.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.024Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.136Z", "id": "relationship--5da4e539-17bd-462a-a087-b811aefd62c2", - "modified": "2021-01-06T18:30:56.024Z", + "modified": "2021-01-13T01:52:45.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.025Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.137Z", "id": "relationship--b65ebc45-6d0b-48fe-bd38-654fac4924b2", - "modified": "2021-01-06T18:30:56.025Z", + "modified": "2021-01-13T01:52:45.137Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.025Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.137Z", "id": "relationship--3fae1271-81ac-4082-8b31-dda2515aaf09", - "modified": "2021-01-06T18:30:56.025Z", + "modified": "2021-01-13T01:52:45.137Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.026Z", - "description": "Least Functionality", - "id": "relationship--bc57be28-9417-42a4-95e5-a2c062696649", - "modified": "2021-01-06T18:30:56.026Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.027Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ce978882-dd45-435b-b15e-6c7469bcf5c6", - "modified": "2021-01-06T18:30:56.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.027Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--e540a916-fc83-4f9c-8f48-8a40ec8182c8", - "modified": "2021-01-06T18:30:56.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--38200800-188e-4e29-a436-60195d3848d6", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--e59a79b6-d89f-494f-a15f-a7d3f111d836", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a8356d70-ed26-43ba-a583-90d2b51a1214", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--75646472-325d-4002-a5d4-8aa27ebfb0c5", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--101d889c-f56a-4df4-aa31-e7a86475a557", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--13e0ccb9-06e6-4662-b197-85b701b2a7fc", - "modified": "2021-01-06T18:30:56.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.139Z", "id": "relationship--937f318b-d5f6-4f6c-8054-db958aade8cf", - "modified": "2021-01-06T18:30:56.028Z", + "modified": "2021-01-13T01:52:45.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.139Z", "id": "relationship--14e511bb-8726-45ca-8839-34ba8c30430c", - "modified": "2021-01-06T18:30:56.029Z", + "modified": "2021-01-13T01:52:45.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.140Z", "id": "relationship--57596e1b-1a50-40c1-b392-61230c5b9dcf", - "modified": "2021-01-06T18:30:56.029Z", + "modified": "2021-01-13T01:52:45.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.140Z", "id": "relationship--ecdd331e-f02e-41ac-b396-365987076d4a", - "modified": "2021-01-06T18:30:56.029Z", + "modified": "2021-01-13T01:52:45.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8788fbac-7012-4684-9e17-527e98b9e806", - "modified": "2021-01-06T18:30:56.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e9179261-febf-4220-bf37-15af63ac70ac", - "modified": "2021-01-06T18:30:56.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1d8fb7cc-57f1-4c72-b855-39dfa735b109", - "modified": "2021-01-06T18:30:56.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--acf42649-8e25-4e23-b90e-ccdd30905b2f", - "modified": "2021-01-06T18:30:56.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.141Z", "id": "relationship--8017b080-dfa6-4e62-8fb6-7a3c9a803ecb", - "modified": "2021-01-06T18:30:56.030Z", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.141Z", "id": "relationship--7e7e336f-3382-46a8-a03e-d6027ff241c4", - "modified": "2021-01-06T18:30:56.030Z", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.141Z", "id": "relationship--52b451b2-d732-44a9-8dbe-137790e82c81", - "modified": "2021-01-06T18:30:56.030Z", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.031Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.141Z", "id": "relationship--7bf26e5c-85f9-4285-ba15-9095d56e8f44", - "modified": "2021-01-06T18:30:56.031Z", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.142Z", "id": "relationship--2d1d7769-9544-4bed-995d-8866d8794362", - "modified": "2021-01-06T18:30:56.032Z", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--50855def-4ee1-492a-8b26-567206f7868a", - "modified": "2021-01-06T18:30:56.032Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--197945dd-67fa-4a30-91b7-c29ca49bd55d", - "modified": "2021-01-06T18:30:56.032Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.142Z", "id": "relationship--63ed3b05-d5b1-46a4-93f8-ec2aa89761f8", - "modified": "2021-01-06T18:30:56.032Z", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.142Z", "id": "relationship--f6f72510-6131-4166-8d23-71b451cc125b", - "modified": "2021-01-06T18:30:56.032Z", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.142Z", "id": "relationship--0e9d2cb8-24ae-465c-abcd-251eced00122", - "modified": "2021-01-06T18:30:56.032Z", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.033Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.142Z", "id": "relationship--872234a7-17f5-4f6d-bbc1-18b6e1bd21a5", - "modified": "2021-01-06T18:30:56.033Z", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.033Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.143Z", "id": "relationship--5e911ef8-1fa4-4bf1-b5a8-883e792012e6", - "modified": "2021-01-06T18:30:56.033Z", + "modified": "2021-01-13T01:52:45.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:56.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:56.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.144Z", "id": "relationship--43da4a83-4ae9-4cc2-8e3a-a2cc85f14a1e", - "modified": "2021-01-06T18:30:56.034Z", + "modified": "2021-01-13T01:52:45.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.035Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:56.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.035Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.036Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:56.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.036Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.146Z", "id": "relationship--34ac4d6c-075e-4249-9919-526cc4e0747b", - "modified": "2021-01-06T18:30:56.036Z", + "modified": "2021-01-13T01:52:45.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.037Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:45.146Z", "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.037Z", + "modified": "2021-01-13T01:52:45.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.038Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.147Z", "id": "relationship--981fa85d-228e-4dd4-abe5-32e0edc334e4", - "modified": "2021-01-06T18:30:56.038Z", + "modified": "2021-01-13T01:52:45.147Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.039Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.147Z", "id": "relationship--003a2333-6ac5-4571-8077-ff0b3ee42dbe", - "modified": "2021-01-06T18:30:56.039Z", + "modified": "2021-01-13T01:52:45.147Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.039Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", + "created": "2021-01-13T01:52:45.148Z", "id": "relationship--8cc6ae7b-c68b-4554-906f-b265dd911c9f", - "modified": "2021-01-06T18:30:56.039Z", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.040Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.148Z", "id": "relationship--26baf2e1-3691-4e5f-82ff-a51e287602ea", - "modified": "2021-01-06T18:30:56.040Z", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.040Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.148Z", "id": "relationship--b685a999-45b4-4b97-856a-69676aa5e23c", - "modified": "2021-01-06T18:30:56.040Z", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.041Z", - "description": "Information System Monitoring", - "id": "relationship--0a61242d-1466-48db-a236-bbdbed2df501", - "modified": "2021-01-06T18:30:56.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.042Z", - "description": "Configuration Settings", - "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:56.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.044Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3688cc2b-6321-42df-8a7a-6e14e8f371c8", - "modified": "2021-01-06T18:30:56.044Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.044Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--22b98945-ac7b-4a5b-9b5c-e294d1c48047", - "modified": "2021-01-06T18:30:56.044Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:56.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--eb077f76-7b8b-4d20-9e06-89460daebff6", - "modified": "2021-01-06T18:30:56.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--97b6c61d-888f-4674-90a6-052fce323725", - "modified": "2021-01-06T18:30:56.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--89559a30-90dc-4952-b341-cd80bcd25094", - "modified": "2021-01-06T18:30:56.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:56.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1d303794-11bd-413a-b5d3-b6e1e75d7dc8", - "modified": "2021-01-06T18:30:56.046Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--0fe72e9b-2b75-45c5-aaa2-2d1473529071", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--517b83f8-9ec9-44c4-9bad-e73a8bd7e10c", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--4cf3c398-b282-4089-ae74-4fab7d02f153", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--80fd5af6-859e-4924-ab2c-a0e556116871", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--f719de8d-20d6-450e-a3e6-84c0217988c6", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.152Z", "id": "relationship--d2606819-40aa-4ffb-a502-9ba403707e90", - "modified": "2021-01-06T18:30:56.046Z", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.047Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.153Z", "id": "relationship--68907d7d-291d-4a10-a3e7-8304f24acc4e", - "modified": "2021-01-06T18:30:56.047Z", + "modified": "2021-01-13T01:52:45.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.047Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", + "created": "2021-01-13T01:52:45.153Z", "id": "relationship--53634d79-3fa5-4fee-8039-35bd0eb21737", - "modified": "2021-01-06T18:30:56.047Z", + "modified": "2021-01-13T01:52:45.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--af5638ff-d2f9-492c-b1ce-5966e1999b05", - "modified": "2021-01-06T18:30:56.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--383f7082-d770-4e7a-9b87-219d54bbb3ea", - "modified": "2021-01-06T18:30:56.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:56.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ebea4a1f-4ce1-407c-9fbb-9221eeb22f1c", - "modified": "2021-01-06T18:30:56.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.154Z", "id": "relationship--fa65e2d7-a0d4-43aa-9da8-9811c55dccfa", - "modified": "2021-01-06T18:30:56.048Z", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.154Z", "id": "relationship--d6e6e6a2-e88f-4e9a-8a81-e7e05171dae2", - "modified": "2021-01-06T18:30:56.048Z", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.154Z", "id": "relationship--74c91f33-db73-4df6-8d32-09c0b55931d3", - "modified": "2021-01-06T18:30:56.048Z", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.049Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.154Z", "id": "relationship--75d3278b-4e75-404a-beac-2e3c1637aaf6", - "modified": "2021-01-06T18:30:56.049Z", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6c1f92fb-e9e9-4345-b1e8-26d656e30bbe", - "modified": "2021-01-06T18:30:56.050Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:56.050Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--9851210c-73c3-4417-991d-ada611ec272b", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", - "modified": "2021-01-06T18:30:56.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--9851210c-73c3-4417-991d-ada611ec272b", - "modified": "2021-01-06T18:30:56.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.155Z", "id": "relationship--f4fb1f11-8614-4659-80f5-37f1b415fda3", - "modified": "2021-01-06T18:30:56.051Z", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.155Z", "id": "relationship--b521803d-1c88-4019-8993-2d19e6d9c30a", - "modified": "2021-01-06T18:30:56.051Z", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.155Z", "id": "relationship--ca7d1eb0-75a7-4dbe-8464-6086dde89809", - "modified": "2021-01-06T18:30:56.051Z", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.052Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.156Z", "id": "relationship--8d85c127-0d07-4f39-8867-3e917e3bebd7", - "modified": "2021-01-06T18:30:56.052Z", + "modified": "2021-01-13T01:52:45.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.053Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:56.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.054Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:56.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.055Z", - "description": "Configuration Management, Configuration Settings", + "created": "2021-01-13T01:52:45.157Z", "id": "relationship--0a27bd8e-08e0-4d48-b251-f10fb3d132eb", - "modified": "2021-01-06T18:30:56.055Z", + "modified": "2021-01-13T01:52:45.157Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.055Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--a9e3ea5d-8d03-4ba6-8ce9-4312485e26f4", - "modified": "2021-01-06T18:30:56.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.056Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:56.056Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.056Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--74c91f33-db73-4df6-8d32-09c0b55931d3", - "modified": "2021-01-06T18:30:56.056Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.058Z", - "description": "Information System Monitoring", - "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", - "modified": "2021-01-06T18:30:56.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.060Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.060Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:56.060Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:56.060Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:56.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:56.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.063Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:56.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:56.064Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.162Z", "id": "relationship--cc9d790e-e34a-43f9-b1ce-2b8f40d9d368", - "modified": "2021-01-06T18:30:56.064Z", + "modified": "2021-01-13T01:52:45.162Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.163Z", "id": "relationship--c588e4d5-31fa-4582-a370-718aee43d34c", - "modified": "2021-01-06T18:30:56.064Z", + "modified": "2021-01-13T01:52:45.163Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.066Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.066Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.164Z", "id": "relationship--f8dce936-9898-43c1-b9ab-7d21103f21bf", - "modified": "2021-01-06T18:30:56.066Z", + "modified": "2021-01-13T01:52:45.164Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.067Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.164Z", "id": "relationship--16084466-d0cd-469f-980f-09954eb4e011", - "modified": "2021-01-06T18:30:56.067Z", + "modified": "2021-01-13T01:52:45.164Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.069Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.069Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.069Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:56.069Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.070Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:56.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.070Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:56.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.071Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:56.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:56.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:56.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6c3f1270-0832-48b8-8494-ad7cf37811e8", - "modified": "2021-01-06T18:30:56.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--073bb6f3-a593-482c-8b82-f4b51cc844a5", - "modified": "2021-01-06T18:30:56.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.075Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c46573aa-2390-4cf2-8769-565f01d7ebf6", - "modified": "2021-01-06T18:30:56.075Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.076Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:56.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:56.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:56.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:56.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.167Z", "id": "relationship--6c3f1270-0832-48b8-8494-ad7cf37811e8", - "modified": "2021-01-06T18:30:56.080Z", + "modified": "2021-01-13T01:52:45.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.167Z", "id": "relationship--073bb6f3-a593-482c-8b82-f4b51cc844a5", - "modified": "2021-01-06T18:30:56.080Z", + "modified": "2021-01-13T01:52:45.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", + "created": "2021-01-13T01:52:45.168Z", "id": "relationship--c46573aa-2390-4cf2-8769-565f01d7ebf6", - "modified": "2021-01-06T18:30:56.080Z", + "modified": "2021-01-13T01:52:45.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.081Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.169Z", "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.081Z", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.081Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.169Z", "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.081Z", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:45.169Z", "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.082Z", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.082Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.082Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.082Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.174Z", "id": "relationship--ddeac0fd-6a52-4e3f-957c-1b1e0b8c252d", - "modified": "2021-01-06T18:30:56.084Z", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.174Z", "id": "relationship--ce9c49ce-e720-4950-ab7b-aae8daea1bce", - "modified": "2021-01-06T18:30:56.084Z", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.174Z", "id": "relationship--aa978bf2-1224-4764-b99a-b0bc83457555", - "modified": "2021-01-06T18:30:56.084Z", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.175Z", "id": "relationship--89aef7c6-e58e-44a6-b41d-cd8191374241", - "modified": "2021-01-06T18:30:56.086Z", + "modified": "2021-01-13T01:52:45.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.175Z", "id": "relationship--af198bb2-60ac-40c1-9405-375a4f7f798d", - "modified": "2021-01-06T18:30:56.086Z", + "modified": "2021-01-13T01:52:45.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.176Z", "id": "relationship--d53d840b-db17-4464-bb64-8836fb8d0d6a", - "modified": "2021-01-06T18:30:56.086Z", + "modified": "2021-01-13T01:52:45.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.087Z", - "description": "Limit Software Installation", + "created": "2021-01-13T01:52:45.176Z", "id": "relationship--d590fb85-caf2-4cfe-aa55-50bac6d69afd", - "modified": "2021-01-06T18:30:56.087Z", + "modified": "2021-01-13T01:52:45.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.088Z", - "description": "Least Privilege", + "created": "2021-01-13T01:52:45.177Z", "id": "relationship--f9434b07-6c5d-40e7-8825-97d90157fc05", - "modified": "2021-01-06T18:30:56.088Z", + "modified": "2021-01-13T01:52:45.177Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.089Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--18f8d5e6-c364-46d7-8366-034a6412d75a", - "modified": "2021-01-06T18:30:56.089Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.089Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--937fc5d2-18a6-4c44-bb76-1b7500b51e5a", - "modified": "2021-01-06T18:30:56.089Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.090Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--9742abb6-4165-407b-a302-4d8ff8db6c45", - "modified": "2021-01-06T18:30:56.090Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.091Z", - "description": "Least Privilege", + "created": "2021-01-13T01:52:45.180Z", "id": "relationship--b8113293-6d2f-475b-a0b7-6b777691ac95", - "modified": "2021-01-06T18:30:56.091Z", + "modified": "2021-01-13T01:52:45.180Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.092Z", - "description": "Limit Software Installation", - "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:56.092Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.093Z", - "description": "Least Privilege", + "created": "2021-01-13T01:52:45.182Z", "id": "relationship--fdd2b8b4-93d8-42a6-b710-7f1e7ac8007d", - "modified": "2021-01-06T18:30:56.093Z", + "modified": "2021-01-13T01:52:45.182Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.094Z", - "description": "Limit Software Installation", + "created": "2021-01-13T01:52:45.183Z", "id": "relationship--09682215-261a-42ad-a0d0-afe115387060", - "modified": "2021-01-06T18:30:56.094Z", + "modified": "2021-01-13T01:52:45.183Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.184Z", "id": "relationship--b894e895-08f5-43ce-81b8-bf45858c579a", - "modified": "2021-01-06T18:30:56.095Z", + "modified": "2021-01-13T01:52:45.184Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", + "created": "2021-01-13T01:52:45.184Z", "id": "relationship--579f8566-644a-4e8f-a08e-54e918da220d", - "modified": "2021-01-06T18:30:56.095Z", + "modified": "2021-01-13T01:52:45.184Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--91bfda43-bafd-4c19-bc75-02c7184b863c", - "modified": "2021-01-06T18:30:56.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:56.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:56.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.096Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:56.096Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.096Z", - "description": "Least Privilege", - "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:56.096Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.097Z", - "description": "Least Privilege", - "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:56.097Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.098Z", - "description": "Limit Software Installation", - "id": "relationship--e8727265-b854-495b-a9ed-a6afd19d1e89", - "modified": "2021-01-06T18:30:56.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.098Z", - "description": "Limit Software Installation", - "id": "relationship--aca33b31-d548-4a53-9697-e4ac426a3aa0", - "modified": "2021-01-06T18:30:56.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.099Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.187Z", "id": "relationship--c80b5ff7-7f98-4daa-a631-9075a4ebd441", - "modified": "2021-01-06T18:30:56.099Z", + "modified": "2021-01-13T01:52:45.187Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.099Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.187Z", "id": "relationship--69ebf5a9-ac65-4095-9ebf-974b2226a4f3", - "modified": "2021-01-06T18:30:56.099Z", + "modified": "2021-01-13T01:52:45.187Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.101Z", + "created": "2021-01-13T01:52:45.188Z", "id": "relationship--67677ba5-6116-47cc-8961-863653d85746", - "modified": "2021-01-06T18:30:56.101Z", + "modified": "2021-01-13T01:52:45.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.101Z", + "created": "2021-01-13T01:52:45.188Z", "id": "relationship--d261c225-7fe8-4772-bf1b-e694dbf00f42", - "modified": "2021-01-06T18:30:56.101Z", + "modified": "2021-01-13T01:52:45.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.102Z", + "created": "2021-01-13T01:52:45.189Z", "id": "relationship--6e1f5ad6-15d1-40a2-ba74-9f80af06d7dd", - "modified": "2021-01-06T18:30:56.102Z", + "modified": "2021-01-13T01:52:45.189Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.102Z", + "created": "2021-01-13T01:52:45.189Z", "id": "relationship--65198c8b-d8f9-4b3f-87aa-e339d1fbc953", - "modified": "2021-01-06T18:30:56.102Z", + "modified": "2021-01-13T01:52:45.189Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.103Z", + "created": "2021-01-13T01:52:45.190Z", "id": "relationship--07ca3ef2-45da-4272-94f0-3b0c72a6ce6c", - "modified": "2021-01-06T18:30:56.103Z", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.103Z", + "created": "2021-01-13T01:52:45.190Z", "id": "relationship--35f0da0f-7883-4901-8248-f37d7bfea9ac", - "modified": "2021-01-06T18:30:56.103Z", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.104Z", + "created": "2021-01-13T01:52:45.190Z", "id": "relationship--2043fab5-b89b-4d40-9f05-f3c1988ee9dc", - "modified": "2021-01-06T18:30:56.104Z", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.104Z", + "created": "2021-01-13T01:52:45.190Z", "id": "relationship--3187347a-e792-4541-a277-b94ae97c23fb", - "modified": "2021-01-06T18:30:56.104Z", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.105Z", + "created": "2021-01-13T01:52:45.191Z", "id": "relationship--53befb4a-fdec-48e8-92ff-7164102773ef", - "modified": "2021-01-06T18:30:56.105Z", + "modified": "2021-01-13T01:52:45.191Z", "relationship_type": "mitigates", "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.106Z", + "created": "2021-01-13T01:52:45.192Z", "id": "relationship--a3b9c5c0-d478-4eaf-a430-f5b8b2db8389", - "modified": "2021-01-06T18:30:56.106Z", + "modified": "2021-01-13T01:52:45.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.107Z", + "created": "2021-01-13T01:52:45.193Z", "id": "relationship--4b7aa09f-b00b-4328-b7ec-aca29763938f", - "modified": "2021-01-06T18:30:56.107Z", + "modified": "2021-01-13T01:52:45.193Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.107Z", + "created": "2021-01-13T01:52:45.193Z", "id": "relationship--8bcfcb87-e677-49ea-ae46-d2149d646933", - "modified": "2021-01-06T18:30:56.107Z", + "modified": "2021-01-13T01:52:45.193Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.108Z", + "created": "2021-01-13T01:52:45.195Z", "id": "relationship--c4bc8591-33c2-4714-9abe-8135bdfcef06", - "modified": "2021-01-06T18:30:56.108Z", + "modified": "2021-01-13T01:52:45.195Z", "relationship_type": "mitigates", "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.110Z", + "created": "2021-01-13T01:52:45.196Z", "id": "relationship--4797b600-c6bc-4eed-81f3-eaadedf6aac2", - "modified": "2021-01-06T18:30:56.110Z", + "modified": "2021-01-13T01:52:45.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.111Z", + "created": "2021-01-13T01:52:45.197Z", "id": "relationship--80a6748b-d344-4418-8b1a-b995472ef37a", - "modified": "2021-01-06T18:30:56.111Z", + "modified": "2021-01-13T01:52:45.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.111Z", + "created": "2021-01-13T01:52:45.197Z", "id": "relationship--f5d731eb-b7dc-4747-8e09-f2d9acfcecf1", - "modified": "2021-01-06T18:30:56.111Z", + "modified": "2021-01-13T01:52:45.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.112Z", - "description": "Remote access", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:56.112Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.113Z", - "description": "Least privilege", - "id": "relationship--b5b03526-b5ff-4a93-bfc1-5234de14ff86", - "modified": "2021-01-06T18:30:56.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.114Z", - "description": "Remote access, data mining protection", - "id": "relationship--ba804d1b-5ed0-4fb2-9d34-6e9b8add5c7b", - "modified": "2021-01-06T18:30:56.114Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.116Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:52:45.201Z", "id": "relationship--7c646628-ccf9-42fc-ab54-b881f519e549", - "modified": "2021-01-06T18:30:56.116Z", + "modified": "2021-01-13T01:52:45.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.116Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:52:45.201Z", "id": "relationship--68ff41bf-5b7b-48df-a5f4-def8c055e0e8", - "modified": "2021-01-06T18:30:56.116Z", + "modified": "2021-01-13T01:52:45.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.118Z", - "description": "Use of external information systems", + "created": "2021-01-13T01:52:45.202Z", "id": "relationship--384554b7-f695-4337-a873-4f43d3bb1089", - "modified": "2021-01-06T18:30:56.118Z", + "modified": "2021-01-13T01:52:45.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.120Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.203Z", "id": "relationship--e9928b11-0bc8-469f-bb37-fb83f7af16e3", - "modified": "2021-01-06T18:30:56.120Z", + "modified": "2021-01-13T01:52:45.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.122Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:52:45.204Z", "id": "relationship--186aa2d1-13a9-4503-87ed-21f1591e3d44", - "modified": "2021-01-06T18:30:56.122Z", + "modified": "2021-01-13T01:52:45.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.124Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--d40d8d8c-f1a8-4199-893c-c4113b4a472d", - "modified": "2021-01-06T18:30:56.124Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.126Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--a836bd2e-13c9-4460-9dc5-37580aa7f5e0", - "modified": "2021-01-06T18:30:56.126Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.128Z", - "description": "Remote access", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:56.128Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:56.130Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--81a29912-cc7a-48d2-af8d-7673e2420fed", - "modified": "2021-01-06T18:30:56.130Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:56.130Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:56.130Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--e7e1e85c-880e-477f-9e3c-0cf4f5471804", - "modified": "2021-01-06T18:30:56.131Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--98b1ff19-f102-4c28-9026-2c432f8307b9", - "modified": "2021-01-06T18:30:56.131Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:56.131Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:56.131Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.133Z", - "description": "Protect and prevent credential access", - "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:56.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.133Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.210Z", "id": "relationship--69fc1919-6f18-469b-b14e-72ebab358475", - "modified": "2021-01-06T18:30:56.133Z", + "modified": "2021-01-13T01:52:45.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.134Z", - "description": "Protect and prevent credential access", - "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", - "modified": "2021-01-06T18:30:56.134Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.134Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.210Z", "id": "relationship--275958d9-916f-479d-a896-8bc31bacd9e6", - "modified": "2021-01-06T18:30:56.134Z", + "modified": "2021-01-13T01:52:45.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.135Z", - "description": "Continuous Monitoring", - "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", - "modified": "2021-01-06T18:30:56.135Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.136Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.212Z", "id": "relationship--53f3b0bf-ed2c-4f9a-97a9-7b15753a8e70", - "modified": "2021-01-06T18:30:56.136Z", + "modified": "2021-01-13T01:52:45.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:56.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.213Z", "id": "relationship--3e5b904e-7530-4e59-b876-b93ecaa62988", - "modified": "2021-01-06T18:30:56.137Z", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.213Z", "id": "relationship--f69ec120-bda9-425f-85dc-a770f2e1de48", - "modified": "2021-01-06T18:30:56.137Z", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.213Z", "id": "relationship--88f8885d-4d82-4785-a0e8-dca26d95197e", - "modified": "2021-01-06T18:30:56.137Z", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.139Z", - "description": "Boundary Protection", - "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", - "modified": "2021-01-06T18:30:56.139Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.139Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.215Z", "id": "relationship--c85514bb-7fc2-445b-9651-5184ab07748f", - "modified": "2021-01-06T18:30:56.139Z", + "modified": "2021-01-13T01:52:45.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", - "modified": "2021-01-06T18:30:56.140Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.216Z", "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.140Z", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.216Z", "id": "relationship--6fe7fb75-ede2-477c-be3f-516bbf9c83ed", - "modified": "2021-01-06T18:30:56.140Z", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.216Z", "id": "relationship--750c5af0-4476-475f-92cb-f713a171d968", - "modified": "2021-01-06T18:30:56.140Z", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.141Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.216Z", "id": "relationship--656af0af-082c-41ff-b679-7b7a871b92a0", - "modified": "2021-01-06T18:30:56.141Z", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.141Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.216Z", "id": "relationship--bf752acc-9ea7-44dd-b6eb-7b9a1147c3a3", - "modified": "2021-01-06T18:30:56.141Z", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.217Z", "id": "relationship--48502913-0055-4166-814d-aaf5bdaf15b0", - "modified": "2021-01-06T18:30:56.142Z", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.217Z", "id": "relationship--b8ff84bf-f61d-4ebd-b3be-81d5dd6fb236", - "modified": "2021-01-06T18:30:56.142Z", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.217Z", "id": "relationship--791a68b4-b02b-4b83-a347-1b665530f70c", - "modified": "2021-01-06T18:30:56.142Z", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.217Z", "id": "relationship--508f5fee-5f31-4176-a5ad-145f59cf9437", - "modified": "2021-01-06T18:30:56.142Z", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:56.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:56.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:56.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.143Z", - "description": "Protect and prevent credential access", - "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:56.143Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--189b5da5-c0c8-4f26-a14f-ea3b11dedaed", - "modified": "2021-01-06T18:30:56.144Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--2eb58f88-80ba-49d9-90da-39b2f2cb750b", - "modified": "2021-01-06T18:30:56.144Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--39047a07-e9c5-49c2-961c-8221c089bc05", - "modified": "2021-01-06T18:30:56.144Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--328a0692-fe35-4efc-ab86-82a388abfce9", - "modified": "2021-01-06T18:30:56.144Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:56.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.146Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:56.146Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.146Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:56.146Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:56.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:56.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:56.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:56.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4a6912c7-71be-4ce4-83dc-d5cc9c697062", - "modified": "2021-01-06T18:30:56.148Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d31865b6-4e6b-429f-807e-51a61ab75807", - "modified": "2021-01-06T18:30:56.148Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--bae540cd-051e-4ef0-b4cf-68a1ca4f3056", - "modified": "2021-01-06T18:30:56.148Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--aed763cd-de48-4240-b11a-56728d3319d3", - "modified": "2021-01-06T18:30:56.149Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--25c14d81-bd62-448a-990f-a0d4c0edc9fa", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--95b03dea-c631-4ae4-9b21-8e73890be36c", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--749349ca-9e12-4e30-9f41-3cb6680c88ef", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--6268ca3a-72cb-468e-ace0-4324448d1cf8", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--11319cff-83f8-4fa6-827b-009d4b1726c4", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--b7ed51a7-4c3e-46f9-9480-87c9fedc74b0", - "modified": "2021-01-06T18:30:56.149Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.150Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--58f66609-39b7-4663-a81a-57dcb2afc3b7", - "modified": "2021-01-06T18:30:56.150Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.150Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.223Z", "id": "relationship--662c4bef-7cc5-4b00-8cbe-db1e132de58a", - "modified": "2021-01-06T18:30:56.150Z", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.151Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.224Z", "id": "relationship--3baaede1-7aca-4cc7-a3b2-665bb89059c9", - "modified": "2021-01-06T18:30:56.151Z", + "modified": "2021-01-13T01:52:45.224Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.152Z", - "description": "Protect and prevent credential access", - "id": "relationship--e3cc47d3-35e5-4125-96c8-595c02f98365", - "modified": "2021-01-06T18:30:56.152Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.153Z", - "description": "Continuous Monitoring", - "id": "relationship--99db5247-5897-4818-b796-bd49f56c5206", - "modified": "2021-01-06T18:30:56.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.154Z", - "description": "Configuring system settings", - "id": "relationship--ef1ac5c5-885a-410e-ad19-e24e6ba1936c", - "modified": "2021-01-06T18:30:56.154Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--e13273a3-d15a-4d18-806c-30431b93c1db", - "modified": "2021-01-06T18:30:56.155Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--0edea018-c09a-4292-bf79-13c95e94d44e", - "modified": "2021-01-06T18:30:56.155Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--d8c3ca33-5b97-4359-a2c7-dc9d711c0285", - "modified": "2021-01-06T18:30:56.155Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.156Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.229Z", "id": "relationship--f32178ac-68e0-4d91-89e9-2bc1c591a7ac", - "modified": "2021-01-06T18:30:56.156Z", + "modified": "2021-01-13T01:52:45.229Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.156Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.229Z", "id": "relationship--9b804aa6-175e-4b5c-9db8-b36cb6ac97fa", - "modified": "2021-01-06T18:30:56.156Z", + "modified": "2021-01-13T01:52:45.229Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.158Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.230Z", "id": "relationship--09f18566-b196-4a40-80a0-6884e3ac0731", - "modified": "2021-01-06T18:30:56.158Z", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.158Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.230Z", "id": "relationship--facf4bd8-d72d-43f8-918b-3585f1c560f6", - "modified": "2021-01-06T18:30:56.158Z", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.159Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.230Z", "id": "relationship--74c3d629-d0dd-46ee-adbd-f063b3aa435c", - "modified": "2021-01-06T18:30:56.159Z", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.159Z", - "description": "Protect and prevent credential access", - "id": "relationship--fd5b9976-2616-4de7-a82b-055590b499d6", - "modified": "2021-01-06T18:30:56.159Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.160Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.232Z", "id": "relationship--2dfcdf14-1e75-4e77-83b7-38d74d9797cc", - "modified": "2021-01-06T18:30:56.160Z", + "modified": "2021-01-13T01:52:45.232Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.160Z", - "description": "Continuous Monitoring", - "id": "relationship--08292c83-03a9-4ccc-bd2b-2b269347aa53", - "modified": "2021-01-06T18:30:56.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.161Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.233Z", "id": "relationship--241d1954-0de8-4846-b2b6-a01ae10c80fd", - "modified": "2021-01-06T18:30:56.161Z", + "modified": "2021-01-13T01:52:45.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.161Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--4b87601b-9070-4fad-be10-b4ad60da1345", - "modified": "2021-01-06T18:30:56.161Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.162Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.233Z", "id": "relationship--0aa7b0cb-383e-4bcd-ab89-9f08e93fa0fb", - "modified": "2021-01-06T18:30:56.162Z", + "modified": "2021-01-13T01:52:45.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.162Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c3af3f89-f381-4bab-92ff-11a81464137e", - "modified": "2021-01-06T18:30:56.162Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.163Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.234Z", "id": "relationship--390d5a5c-ca8a-4a1c-9a16-a27c09b0314d", - "modified": "2021-01-06T18:30:56.163Z", + "modified": "2021-01-13T01:52:45.234Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.163Z", - "description": "Boundary Protection", - "id": "relationship--fa277757-0ef9-4bd4-934a-44370f01a784", - "modified": "2021-01-06T18:30:56.163Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.235Z", "id": "relationship--af1cc805-7843-4164-83ac-47b13ab80ab4", - "modified": "2021-01-06T18:30:56.164Z", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.235Z", "id": "relationship--ad7eeaa8-b959-43d6-ad68-84c8d71f0d1f", - "modified": "2021-01-06T18:30:56.164Z", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.235Z", "id": "relationship--1fd5cbb3-c5e8-4f94-8933-b0da5f5a8080", - "modified": "2021-01-06T18:30:56.164Z", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.165Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.235Z", "id": "relationship--374009f0-8d28-4dd5-b74c-f059b0b1cc42", - "modified": "2021-01-06T18:30:56.165Z", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.168Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.236Z", "id": "relationship--e2f83466-fc6e-4c05-b55b-e25af95de178", - "modified": "2021-01-06T18:30:56.168Z", + "modified": "2021-01-13T01:52:45.236Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.168Z", - "description": "Protect and prevent credential access", - "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:56.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.170Z", - "description": "Continuous Monitoring", - "id": "relationship--7d4f8e6f-b8d4-4d6d-8bd4-a9a26425c784", - "modified": "2021-01-06T18:30:56.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.171Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:56.171Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.171Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:56.171Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.173Z", - "description": "Boundary Protection", - "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:56.173Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.174Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.240Z", "id": "relationship--50c86b83-316b-4c11-b933-a5799682dead", - "modified": "2021-01-06T18:30:56.174Z", + "modified": "2021-01-13T01:52:45.240Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.175Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.240Z", "id": "relationship--716807b0-b205-48d2-a319-d7987944e641", - "modified": "2021-01-06T18:30:56.175Z", + "modified": "2021-01-13T01:52:45.240Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.176Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.241Z", "id": "relationship--905c0ba2-e82b-4d12-b97e-11db1a7dc56b", - "modified": "2021-01-06T18:30:56.176Z", + "modified": "2021-01-13T01:52:45.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.176Z", - "description": "Protect and prevent credential access", - "id": "relationship--d2b833f6-4d9f-4160-979a-17dd60b9e415", - "modified": "2021-01-06T18:30:56.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.177Z", - "description": "Continuous Monitoring", - "id": "relationship--de586ce6-f005-4bd3-8add-49bed729a58a", - "modified": "2021-01-06T18:30:56.177Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.178Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e781835c-e298-40bb-bb47-57b484689db3", - "modified": "2021-01-06T18:30:56.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.178Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.243Z", "id": "relationship--02f75466-7a4a-4e8d-8037-34085c91f61a", - "modified": "2021-01-06T18:30:56.178Z", + "modified": "2021-01-13T01:52:45.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.179Z", - "description": "Boundary Protection", - "id": "relationship--63e7f8c0-33f2-47f6-a15d-8ae030f686e6", - "modified": "2021-01-06T18:30:56.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--657b3634-0536-4e0f-bbd7-2d6b5b717b5d", - "modified": "2021-01-06T18:30:56.180Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.246Z", "id": "relationship--3992cf47-10c3-4c2b-8185-b36956eb27c3", - "modified": "2021-01-06T18:30:56.180Z", + "modified": "2021-01-13T01:52:45.246Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.246Z", "id": "relationship--290cbce3-8001-4bc3-a412-fa5bcb7b1a69", - "modified": "2021-01-06T18:30:56.180Z", + "modified": "2021-01-13T01:52:45.246Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.182Z", - "description": "Protect and prevent credential access", - "id": "relationship--4327176e-7aab-4c8c-85e4-2445d121fbad", - "modified": "2021-01-06T18:30:56.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.182Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.247Z", "id": "relationship--9a088157-16a4-4573-8d96-32d9f9ffd087", - "modified": "2021-01-06T18:30:56.182Z", + "modified": "2021-01-13T01:52:45.247Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.183Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.248Z", "id": "relationship--2a74667c-f88b-4af9-a463-66072ffa382c", - "modified": "2021-01-06T18:30:56.183Z", + "modified": "2021-01-13T01:52:45.248Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.184Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--4a6c7cb9-0797-4736-bb06-6d5ef7ade272", - "modified": "2021-01-06T18:30:56.184Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.185Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9c47fe7d-cd84-4f20-ad05-84d73f683aca", - "modified": "2021-01-06T18:30:56.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.186Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.250Z", "id": "relationship--1affa735-c92f-4830-8528-8103695ad246", - "modified": "2021-01-06T18:30:56.186Z", + "modified": "2021-01-13T01:52:45.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.187Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b34f6913-c617-4976-ad0c-cdd82b50d199", - "modified": "2021-01-06T18:30:56.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.187Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.250Z", "id": "relationship--eabfd271-bebb-4e83-b046-72bb49cc503d", - "modified": "2021-01-06T18:30:56.187Z", + "modified": "2021-01-13T01:52:45.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.188Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.251Z", "id": "relationship--7ee3105e-4280-48aa-9bba-70ca5ce649ee", - "modified": "2021-01-06T18:30:56.188Z", + "modified": "2021-01-13T01:52:45.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.188Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.251Z", "id": "relationship--cd997a6c-a6d2-4e9d-8102-1f0d00ba1f9a", - "modified": "2021-01-06T18:30:56.188Z", + "modified": "2021-01-13T01:52:45.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.252Z", "id": "relationship--22056059-5348-4d2a-bf87-3f9e2081fa96", - "modified": "2021-01-06T18:30:56.189Z", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.252Z", "id": "relationship--fe9b14f4-cd19-4d75-89cc-ff3c97c188ac", - "modified": "2021-01-06T18:30:56.189Z", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.252Z", "id": "relationship--4588c060-9035-4785-b439-5a1e558dc0b8", - "modified": "2021-01-06T18:30:56.189Z", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.190Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.253Z", "id": "relationship--4f2b0678-5c73-4547-bc05-d88bb630fc47", - "modified": "2021-01-06T18:30:56.190Z", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.190Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.253Z", "id": "relationship--342815de-7647-495b-8426-15385bea690b", - "modified": "2021-01-06T18:30:56.190Z", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.253Z", "id": "relationship--0a83abb4-1198-423b-b101-226337dfcdc3", - "modified": "2021-01-06T18:30:56.191Z", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.254Z", "id": "relationship--740d015b-472b-4004-a26b-3bae2d561d76", - "modified": "2021-01-06T18:30:56.191Z", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.254Z", "id": "relationship--c0eafced-2b5f-412e-b268-2bb46a1c2268", - "modified": "2021-01-06T18:30:56.191Z", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.192Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.254Z", "id": "relationship--cedea28c-a762-47a8-8402-cae5adad9a56", - "modified": "2021-01-06T18:30:56.192Z", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.193Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.255Z", "id": "relationship--f11fef81-78d1-4662-9fab-0b918ea4fc4e", - "modified": "2021-01-06T18:30:56.193Z", + "modified": "2021-01-13T01:52:45.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.193Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.255Z", "id": "relationship--c487bf25-c4ba-4631-b383-1cbe74c44f7a", - "modified": "2021-01-06T18:30:56.193Z", + "modified": "2021-01-13T01:52:45.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:52:45.256Z", "id": "relationship--b154124b-4112-432a-a59e-e6cc09118a2a", - "modified": "2021-01-06T18:30:56.194Z", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:52:45.256Z", "id": "relationship--58df78f1-17a9-47b2-8c4d-dde3a361a45e", - "modified": "2021-01-06T18:30:56.194Z", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:52:45.256Z", "id": "relationship--290b569e-30ab-402a-b14d-8dd89d85fc2b", - "modified": "2021-01-06T18:30:56.194Z", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:52:45.256Z", "id": "relationship--0606cdcb-6016-4fa7-a7ee-6386e8f02c75", - "modified": "2021-01-06T18:30:56.194Z", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.195Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.257Z", "id": "relationship--ac77f9ab-8b8b-40d1-8282-120506256ce0", - "modified": "2021-01-06T18:30:56.195Z", + "modified": "2021-01-13T01:52:45.257Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.196Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.257Z", "id": "relationship--73814f34-1a5f-404b-a384-c757cfc2c56c", - "modified": "2021-01-06T18:30:56.196Z", + "modified": "2021-01-13T01:52:45.257Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.197Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.258Z", "id": "relationship--67905462-62df-46fb-8e1d-68d97a77d772", - "modified": "2021-01-06T18:30:56.197Z", + "modified": "2021-01-13T01:52:45.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.198Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.259Z", "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.198Z", + "modified": "2021-01-13T01:52:45.259Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.198Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.259Z", "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.198Z", + "modified": "2021-01-13T01:52:45.259Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.200Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.260Z", "id": "relationship--8c79a193-dc38-41ee-8837-bb4734dddaed", - "modified": "2021-01-06T18:30:56.200Z", + "modified": "2021-01-13T01:52:45.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.202Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.261Z", "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.202Z", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.202Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.261Z", "id": "relationship--335b369a-d65d-4847-86ae-47e8ac0b5a4b", - "modified": "2021-01-06T18:30:56.202Z", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.203Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.261Z", "id": "relationship--8a19562b-f4aa-4305-8694-81ccfca1cba6", - "modified": "2021-01-06T18:30:56.203Z", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.204Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.263Z", "id": "relationship--5712d0a7-afbb-48b6-a971-ab4d637883d6", - "modified": "2021-01-06T18:30:56.204Z", + "modified": "2021-01-13T01:52:45.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.204Z", - "description": "Protect and prevent credential access", - "id": "relationship--5b5b5c21-43ec-4bf1-a2db-728c2922d596", - "modified": "2021-01-06T18:30:56.204Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.206Z", - "description": "Continuous Monitoring", - "id": "relationship--56ee2214-dd32-4867-9da8-b38013c35dcb", - "modified": "2021-01-06T18:30:56.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.208Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--19c81411-09a6-40b9-9761-5c9e8f5b4059", - "modified": "2021-01-06T18:30:56.208Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.208Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:56.208Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.211Z", - "description": "Boundary Protection", - "id": "relationship--61023e1e-9ac5-4ee8-9a68-723ae071d315", - "modified": "2021-01-06T18:30:56.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:56.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.268Z", "id": "relationship--d5758186-cb9c-42df-9e39-d6a7dc997b18", - "modified": "2021-01-06T18:30:56.213Z", + "modified": "2021-01-13T01:52:45.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.268Z", "id": "relationship--f5fb50d6-14d8-4337-b1ef-0dd1543d4d44", - "modified": "2021-01-06T18:30:56.213Z", + "modified": "2021-01-13T01:52:45.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.215Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.269Z", "id": "relationship--55430831-4cf1-4311-8030-099ae3f6616b", - "modified": "2021-01-06T18:30:56.215Z", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.269Z", "id": "relationship--6c5dd7fc-bccb-4504-a80e-f572bf3cbf3d", - "modified": "2021-01-06T18:30:56.216Z", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.269Z", "id": "relationship--2ec6a654-731e-4d10-a867-34cbc8eb68b2", - "modified": "2021-01-06T18:30:56.216Z", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.270Z", "id": "relationship--22870727-5c6e-4401-9ce5-fc768a809e9e", - "modified": "2021-01-06T18:30:56.216Z", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.270Z", "id": "relationship--3d3f4519-4157-43dc-826c-240d5da53206", - "modified": "2021-01-06T18:30:56.216Z", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.217Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.270Z", "id": "relationship--492d8db0-b626-42f4-bc57-ad05c1fab2cf", - "modified": "2021-01-06T18:30:56.217Z", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.271Z", "id": "relationship--1d985a66-3d1e-47fc-80b9-77a62a959dfd", - "modified": "2021-01-06T18:30:56.219Z", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.271Z", "id": "relationship--1b97c235-a906-4961-a2d8-719ede07c8cd", - "modified": "2021-01-06T18:30:56.219Z", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.271Z", "id": "relationship--46d4e416-0093-4e7d-a6bd-45e0838b6873", - "modified": "2021-01-06T18:30:56.219Z", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.221Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--afc5b329-fcd1-4405-a851-23664853164a", - "modified": "2021-01-06T18:30:56.221Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--5e0e7ec5-35b1-4e4d-a3dc-f514575e0a59", - "modified": "2021-01-06T18:30:56.222Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--fc12c35d-c134-4dff-8824-16fbe129cf4d", - "modified": "2021-01-06T18:30:56.222Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--3660b321-ead1-4e2a-96ed-ceda0fbc1e8b", - "modified": "2021-01-06T18:30:56.222Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.223Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--37e54c11-492a-46c2-aa58-e5963a23bb70", - "modified": "2021-01-06T18:30:56.223Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.223Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.272Z", "id": "relationship--15de80fc-389c-4fda-97cb-c009140be5e1", - "modified": "2021-01-06T18:30:56.223Z", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.273Z", "id": "relationship--3ada8a50-6f2a-4f99-ac92-8b01763b0e5f", - "modified": "2021-01-06T18:30:56.225Z", + "modified": "2021-01-13T01:52:45.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.273Z", "id": "relationship--1bc7995b-8366-421f-9dc7-0b930a86f7ff", - "modified": "2021-01-06T18:30:56.225Z", + "modified": "2021-01-13T01:52:45.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.274Z", "id": "relationship--299c08cf-3eb7-466b-8921-df7573d610f7", - "modified": "2021-01-06T18:30:56.225Z", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.226Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.274Z", "id": "relationship--de79e416-5518-494e-ba4b-78ecafae465f", - "modified": "2021-01-06T18:30:56.226Z", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.226Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.274Z", "id": "relationship--38f1b973-3a94-44ac-8d2c-32c10a934d3b", - "modified": "2021-01-06T18:30:56.226Z", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.275Z", "id": "relationship--aeff7d2a-785e-4cd3-a9aa-df8324654ba9", - "modified": "2021-01-06T18:30:56.227Z", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.275Z", "id": "relationship--0bcd13b7-c4d6-40b5-b9d1-7403e2eb6300", - "modified": "2021-01-06T18:30:56.227Z", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.275Z", "id": "relationship--2547a3ab-ada2-43d1-8c84-6cf899425c86", - "modified": "2021-01-06T18:30:56.227Z", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.275Z", "id": "relationship--7df71792-2440-4234-bbb5-bf9b8396d478", - "modified": "2021-01-06T18:30:56.227Z", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.228Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.276Z", "id": "relationship--f7867605-cfa0-40c4-ade4-dbbfc37dd75b", - "modified": "2021-01-06T18:30:56.228Z", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.276Z", "id": "relationship--4e2e6223-6c57-406c-b067-01fc519b3f07", - "modified": "2021-01-06T18:30:56.229Z", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.276Z", "id": "relationship--c35b48c5-8ecc-4308-b4c6-5191dd6ff50f", - "modified": "2021-01-06T18:30:56.229Z", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.276Z", "id": "relationship--c3ff51c3-dc2f-405c-910b-3425ad6981e4", - "modified": "2021-01-06T18:30:56.229Z", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.276Z", "id": "relationship--895eae60-d5de-47d6-b448-7c11349460d4", - "modified": "2021-01-06T18:30:56.229Z", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.277Z", "id": "relationship--b16b6160-37c2-45a1-be70-9672158af7ea", - "modified": "2021-01-06T18:30:56.229Z", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.277Z", "id": "relationship--53bd6dc4-9583-4988-9970-a3214339093f", - "modified": "2021-01-06T18:30:56.230Z", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.277Z", "id": "relationship--bdf648b6-06c4-4f51-9397-a1ff326e4e19", - "modified": "2021-01-06T18:30:56.230Z", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.277Z", "id": "relationship--e790eb5f-dd11-49c2-ae64-b5f993284c86", - "modified": "2021-01-06T18:30:56.230Z", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.277Z", "id": "relationship--d97cf3d8-173a-4459-8fb8-68774f7b85a2", - "modified": "2021-01-06T18:30:56.230Z", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.278Z", "id": "relationship--03932d93-088c-40ad-adc2-13a091de376f", - "modified": "2021-01-06T18:30:56.232Z", + "modified": "2021-01-13T01:52:45.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.278Z", "id": "relationship--d0d5ce30-a02c-4291-9091-b2ff8aa97518", - "modified": "2021-01-06T18:30:56.232Z", + "modified": "2021-01-13T01:52:45.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.279Z", "id": "relationship--8d7c1452-d021-4109-9db8-f3e6fcd8b037", - "modified": "2021-01-06T18:30:56.232Z", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.233Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.279Z", "id": "relationship--18f0842c-779a-4be3-a6e5-c22163338d3a", - "modified": "2021-01-06T18:30:56.233Z", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.233Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.279Z", "id": "relationship--6745ce31-8b48-4e92-ab63-67f038fb911b", - "modified": "2021-01-06T18:30:56.233Z", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--6e5507ca-c8ef-454f-9991-9b7d23e2464b", - "modified": "2021-01-06T18:30:56.235Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--cad97dc0-c15f-441b-99de-f9f56dbe63ed", - "modified": "2021-01-06T18:30:56.235Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--df3b3169-9ac8-46b2-9961-60e7c0c8d534", - "modified": "2021-01-06T18:30:56.235Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--b4173709-4d55-4eb4-94f3-365af13aa0fd", - "modified": "2021-01-06T18:30:56.235Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--6a8ced40-8e50-4423-9277-3bb9df1d0df8", - "modified": "2021-01-06T18:30:56.235Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--f9e2e042-52d0-4085-a592-3a35acc9772a", - "modified": "2021-01-06T18:30:56.236Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--daa28f4f-a2ae-423c-8374-96f36d3a1085", - "modified": "2021-01-06T18:30:56.236Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--1ac8ac96-d96d-44c6-afe7-874f6bcd51d5", - "modified": "2021-01-06T18:30:56.236Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.280Z", "id": "relationship--6e7c5c1c-892f-4e64-8c98-ef5bfaff5ee6", - "modified": "2021-01-06T18:30:56.236Z", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.281Z", "id": "relationship--09930b2d-5b89-44c2-b249-1af929eec54d", - "modified": "2021-01-06T18:30:56.236Z", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.237Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.281Z", "id": "relationship--f4565898-2ef7-4a4d-a870-e6c39f3924ff", - "modified": "2021-01-06T18:30:56.237Z", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.237Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.281Z", "id": "relationship--e74d57de-f1c3-4e29-80a4-ccfb6aa8e38d", - "modified": "2021-01-06T18:30:56.237Z", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.282Z", "id": "relationship--19a6246f-ce75-4c4d-9320-ebb3b7944f71", - "modified": "2021-01-06T18:30:56.238Z", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.282Z", "id": "relationship--8bc71b60-4d8e-4280-b091-fe648734e6b3", - "modified": "2021-01-06T18:30:56.238Z", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.282Z", "id": "relationship--174abdb9-c3bb-4140-b9f9-274972b63ca2", - "modified": "2021-01-06T18:30:56.238Z", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.283Z", "id": "relationship--2efd12d4-586c-47e7-8ee1-bb74a3a6672c", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.283Z", "id": "relationship--e6163f97-4e90-47c1-9f0f-801327d1ba90", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.283Z", "id": "relationship--d62ec3df-71fc-47e9-a807-87b083e72a9e", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.283Z", "id": "relationship--46bf7820-4aa7-46a5-aa9f-7df37b7e9f2f", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.283Z", "id": "relationship--70355dac-0b67-4b67-8473-be03c8b1a40b", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--5294d7bc-7107-4ece-b074-cbac2c21fda6", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--580cedfb-c6cf-4c43-9ba3-0530e62981c1", - "modified": "2021-01-06T18:30:56.239Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--e1604494-b31f-43d9-bb8b-90f3cc58cd85", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--cca83a1f-45bf-4434-8473-45f373559340", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--7ba1f329-3378-492a-88e3-7aeba5420e47", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--90bc4e55-0a01-4b53-a75e-19820dde1ad7", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--11051d9b-1713-4164-a6e5-6b98ce0da75f", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--9873d4bc-b8a9-4d5a-8779-8338b742d2cf", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--c47584c8-43be-4ff1-9132-b973485504dd", - "modified": "2021-01-06T18:30:56.240Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.241Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.284Z", "id": "relationship--7e495803-d344-453b-903e-2fb885d1d974", - "modified": "2021-01-06T18:30:56.241Z", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.242Z", - "description": "Access Control, External Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:56.242Z", + "created": "2021-01-13T01:52:45.286Z", + "id": "relationship--5b2ed4ce-cb84-4e6d-87f5-23a8873c0fa4", + "modified": "2021-01-13T01:52:45.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.242Z", - "description": "Access Control, External Systems", - "id": "relationship--5b2ed4ce-cb84-4e6d-87f5-23a8873c0fa4", - "modified": "2021-01-06T18:30:56.242Z", + "created": "2021-01-13T01:52:45.288Z", + "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", + "modified": "2021-01-13T01:52:45.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.243Z", - "description": "Access Control, External Systems", - "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:56.243Z", + "created": "2021-01-13T01:52:45.289Z", + "id": "relationship--8449c02a-ea2a-4e5a-b2f7-e590494d7b0a", + "modified": "2021-01-13T01:52:45.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.243Z", - "description": "Access Control, External Systems", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.243Z", + "created": "2021-01-13T01:52:45.289Z", + "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", + "modified": "2021-01-13T01:52:45.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.244Z", - "description": "Continuous Monitoring", - "id": "relationship--2791cb53-48ad-4c2e-929a-1319bc17d381", - "modified": "2021-01-06T18:30:56.244Z", + "created": "2021-01-13T01:52:45.291Z", + "id": "relationship--5e0d485a-1272-4d30-a63e-d4d4d6b649ae", + "modified": "2021-01-13T01:52:45.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.245Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.245Z", + "created": "2021-01-13T01:52:45.291Z", + "id": "relationship--0aad8adb-af23-4f6a-a928-dae5362b6ae9", + "modified": "2021-01-13T01:52:45.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.245Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", - "modified": "2021-01-06T18:30:56.245Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.246Z", - "description": "Identification", - "id": "relationship--8449c02a-ea2a-4e5a-b2f7-e590494d7b0a", - "modified": "2021-01-06T18:30:56.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.246Z", - "description": "Identification", - "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", - "modified": "2021-01-06T18:30:56.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.247Z", - "description": "Boundary Protection", - "id": "relationship--0ed497fe-1155-4185-8ba3-d0f7e5ff8a22", - "modified": "2021-01-06T18:30:56.247Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.248Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.248Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.249Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5e0d485a-1272-4d30-a63e-d4d4d6b649ae", - "modified": "2021-01-06T18:30:56.249Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.249Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0aad8adb-af23-4f6a-a928-dae5362b6ae9", - "modified": "2021-01-06T18:30:56.249Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:56.250Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--8e3b1e5f-49a1-4df9-8b60-ee6ed7ffad51", - "modified": "2021-01-06T18:30:56.250Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--a840dd6e-5a69-4a1d-be87-3be44ed59acd", - "modified": "2021-01-06T18:30:56.250Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.251Z", - "description": "Access Control, External Systems", - "id": "relationship--cf03827b-411f-4656-862c-e1696c04110c", - "modified": "2021-01-06T18:30:56.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.252Z", - "description": "Continuous Monitoring", - "id": "relationship--20c8b9ea-d8a4-40bb-afdc-db059fcc7d8f", - "modified": "2021-01-06T18:30:56.252Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.253Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.295Z", "id": "relationship--2434b6ac-7112-45c0-a295-cdacd75120d9", - "modified": "2021-01-06T18:30:56.253Z", + "modified": "2021-01-13T01:52:45.295Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.253Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.295Z", "id": "relationship--b8e9e642-b607-474d-98a8-935660d0f72f", - "modified": "2021-01-06T18:30:56.253Z", + "modified": "2021-01-13T01:52:45.295Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.254Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.296Z", "id": "relationship--3026bc3b-d8a7-4aae-b9f6-823e26e1a0c3", - "modified": "2021-01-06T18:30:56.254Z", + "modified": "2021-01-13T01:52:45.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.254Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.296Z", "id": "relationship--546b010b-f278-442a-b07d-db1c31e8bcf5", - "modified": "2021-01-06T18:30:56.254Z", + "modified": "2021-01-13T01:52:45.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.255Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.298Z", "id": "relationship--a84f59c7-dd13-4bd4-aef8-830f975e6d6f", - "modified": "2021-01-06T18:30:56.255Z", + "modified": "2021-01-13T01:52:45.298Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.256Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dcafa7e3-bf91-481e-91f3-0a403208d438", - "modified": "2021-01-06T18:30:56.256Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.257Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.299Z", "id": "relationship--7e874496-dd6a-4876-bfad-11d3fbac1562", - "modified": "2021-01-06T18:30:56.257Z", + "modified": "2021-01-13T01:52:45.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.257Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.299Z", "id": "relationship--28548263-d7a9-48ca-a799-770359722559", - "modified": "2021-01-06T18:30:56.257Z", + "modified": "2021-01-13T01:52:45.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.300Z", "id": "relationship--5486d6a2-8659-4a26-91d3-309e8ba5f97f", - "modified": "2021-01-06T18:30:56.259Z", + "modified": "2021-01-13T01:52:45.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:56.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.300Z", "id": "relationship--3df3ca2d-50c1-4e70-a8c1-e636d1abe5d0", - "modified": "2021-01-06T18:30:56.259Z", + "modified": "2021-01-13T01:52:45.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:56.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.301Z", "id": "relationship--1c5c389d-227d-4ef6-a1b8-9759a3e49fc4", - "modified": "2021-01-06T18:30:56.260Z", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.301Z", "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:56.260Z", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.301Z", "id": "relationship--3ec8ecac-678b-48ec-bf58-645017597063", - "modified": "2021-01-06T18:30:56.260Z", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.301Z", "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:56.260Z", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.262Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.302Z", "id": "relationship--88072258-a79c-4604-b4a4-feb5e064f6ec", - "modified": "2021-01-06T18:30:56.262Z", + "modified": "2021-01-13T01:52:45.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.262Z", - "description": "Continuous Monitoring", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:56.262Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.303Z", "id": "relationship--ae6e9f5b-f284-47dc-a299-b288220a74bf", - "modified": "2021-01-06T18:30:56.263Z", + "modified": "2021-01-13T01:52:45.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:56.263Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.303Z", "id": "relationship--1fd01a47-be61-4670-83c9-c9a21c705936", - "modified": "2021-01-06T18:30:56.263Z", + "modified": "2021-01-13T01:52:45.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:56.263Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.264Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.304Z", "id": "relationship--6308a156-907e-48eb-aab6-12d96467c08b", - "modified": "2021-01-06T18:30:56.264Z", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.304Z", "id": "relationship--30e69d35-64dc-4d7a-8259-221e4751d1f7", - "modified": "2021-01-06T18:30:56.265Z", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.304Z", "id": "relationship--d44c5a9c-b51d-4890-8d70-1e8cf780a9ed", - "modified": "2021-01-06T18:30:56.265Z", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.304Z", "id": "relationship--2f0d1fc9-5040-44c1-9d08-13a8be7a37a7", - "modified": "2021-01-06T18:30:56.265Z", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.266Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:45.305Z", "id": "relationship--3ccdc9d2-e7f0-4b6e-a478-f10e1eeeb224", - "modified": "2021-01-06T18:30:56.266Z", + "modified": "2021-01-13T01:52:45.305Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.266Z", - "description": "Boundary Protection", - "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:56.266Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.267Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.306Z", "id": "relationship--fae08fb7-396c-4bd2-89e1-02a76ab14f1a", - "modified": "2021-01-06T18:30:56.267Z", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.268Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.306Z", "id": "relationship--30b7242b-e4f0-4716-b01c-47f6233d87a4", - "modified": "2021-01-06T18:30:56.268Z", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.306Z", "id": "relationship--f710dc38-80ca-4b5a-ba19-34275f3758bc", - "modified": "2021-01-06T18:30:56.268Z", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.306Z", "id": "relationship--32ac7886-68c0-43b3-9cf2-b8441d9fe599", - "modified": "2021-01-06T18:30:56.268Z", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.307Z", "id": "relationship--7281fec3-4089-496a-9e30-244dd8bf7abe", - "modified": "2021-01-06T18:30:56.268Z", + "modified": "2021-01-13T01:52:45.307Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.269Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.307Z", "id": "relationship--bdfc6f00-d070-4230-a846-126af9e0a49a", - "modified": "2021-01-06T18:30:56.269Z", + "modified": "2021-01-13T01:52:45.307Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.308Z", "id": "relationship--9100052a-fec2-4d11-9014-52ccd20d2912", - "modified": "2021-01-06T18:30:56.270Z", + "modified": "2021-01-13T01:52:45.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.308Z", "id": "relationship--762ff753-dc21-459f-b132-8d27c5ff2c5a", - "modified": "2021-01-06T18:30:56.270Z", + "modified": "2021-01-13T01:52:45.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--501cd653-f951-4aba-a92a-b4ec25707e85", - "modified": "2021-01-06T18:30:56.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:56.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:56.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--c356d850-4a9e-47b0-a4f7-e324881aed1b", - "modified": "2021-01-06T18:30:56.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--ac1a7f1f-d13d-4bf9-8847-613bb3ef1c04", - "modified": "2021-01-06T18:30:56.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--91e926da-692e-4b08-83bb-ec5e091c4996", - "modified": "2021-01-06T18:30:56.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.272Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:56.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a129cf5e-d35b-4719-aeee-c0e394b1ff34", - "modified": "2021-01-06T18:30:56.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:56.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:56.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.274Z", - "description": "Boundary Protection", - "id": "relationship--35b6de72-f853-4bb5-87f5-786c8705c4c6", - "modified": "2021-01-06T18:30:56.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.275Z", - "description": "Boundary Protection", - "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:56.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.275Z", - "description": "Boundary Protection", - "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:56.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.276Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:56.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.276Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:56.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:56.277Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.314Z", "id": "relationship--c703dc1b-8b58-4f4a-9730-e6e5b2992d64", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.314Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.314Z", "id": "relationship--b51458ee-a0b8-4112-ab81-a118cac07a49", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.314Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.315Z", "id": "relationship--558c5424-e412-439d-b2a3-f0642a00b086", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.315Z", "id": "relationship--0e02ce95-f3f9-42f5-9b51-e4d572f722c7", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.315Z", "id": "relationship--38ce3d85-22df-411e-af2f-2d51b76e9f1a", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.315Z", "id": "relationship--7534d947-0e04-4c61-9ded-5e1567f9d507", - "modified": "2021-01-06T18:30:56.277Z", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.278Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.316Z", "id": "relationship--90487cc7-cd9d-494a-af77-8a0771b1d869", - "modified": "2021-01-06T18:30:56.278Z", + "modified": "2021-01-13T01:52:45.316Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.279Z", - "description": "Protect and prevent credential access", - "id": "relationship--b84716f1-7821-4395-bab3-ebd3f17fcff0", - "modified": "2021-01-06T18:30:56.279Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.280Z", - "description": "Continuous Monitoring", - "id": "relationship--7ed97ff6-18ac-40e3-ac4c-f1288bd6f427", - "modified": "2021-01-06T18:30:56.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.281Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--18ab8f41-d709-4a6d-a47f-317309092e9a", - "modified": "2021-01-06T18:30:56.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.281Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--08624c17-1bf1-48c8-98eb-8537b92ef398", - "modified": "2021-01-06T18:30:56.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.282Z", - "description": "Boundary Protection", - "id": "relationship--0f01ef2b-ac8e-4389-bd22-9edf7b6450d6", - "modified": "2021-01-06T18:30:56.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.283Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3b9fba86-2583-4fe9-916f-85a2ed1eb7a6", - "modified": "2021-01-06T18:30:56.283Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.284Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.320Z", "id": "relationship--7c68775e-468b-4513-a29f-c656fcc5c032", - "modified": "2021-01-06T18:30:56.284Z", + "modified": "2021-01-13T01:52:45.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.284Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.320Z", "id": "relationship--da87e3b9-0d43-459c-8354-aab5f169e71f", - "modified": "2021-01-06T18:30:56.284Z", + "modified": "2021-01-13T01:52:45.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.286Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:52:45.321Z", "id": "relationship--798f961c-17c9-416a-91a2-d6f1796465e5", - "modified": "2021-01-06T18:30:56.286Z", + "modified": "2021-01-13T01:52:45.321Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.286Z", - "description": "Protect and prevent credential access", - "id": "relationship--bb33f797-f5d6-483a-a5ca-927920e29ea7", - "modified": "2021-01-06T18:30:56.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.287Z", - "description": "Continuous Monitoring", - "id": "relationship--542adb5c-ee88-4e32-8b4a-13412d0ce66c", - "modified": "2021-01-06T18:30:56.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.288Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--845b5763-2f76-412a-99b7-ab95856b954b", - "modified": "2021-01-06T18:30:56.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.288Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--be6a7394-6b5b-46ee-92d3-33d26ece03ea", - "modified": "2021-01-06T18:30:56.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.289Z", - "description": "Boundary Protection", - "id": "relationship--aa2264c1-53e8-4216-9341-d0359b1bb319", - "modified": "2021-01-06T18:30:56.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.290Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.325Z", "id": "relationship--20ed8d59-8717-4e8d-acfb-3497ce5211ea", - "modified": "2021-01-06T18:30:56.290Z", + "modified": "2021-01-13T01:52:45.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.290Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:52:45.325Z", "id": "relationship--4e267c2a-68cb-46cb-9178-b0dc23a65407", - "modified": "2021-01-06T18:30:56.290Z", + "modified": "2021-01-13T01:52:45.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:56.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:56.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.293Z", - "description": "Continuous Monitoring", - "id": "relationship--52ed4c6a-fc9e-48fd-9c8d-7a834a824742", - "modified": "2021-01-06T18:30:56.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.293Z", - "description": "Continuous Monitoring", - "id": "relationship--e6a92422-115d-448f-98e7-55e4d0c9c194", - "modified": "2021-01-06T18:30:56.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.329Z", "id": "relationship--77d9ba53-0e53-48bb-8ae7-fe09f531211b", - "modified": "2021-01-06T18:30:56.295Z", + "modified": "2021-01-13T01:52:45.329Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.329Z", "id": "relationship--9abfd93e-09be-4a3d-90c8-f5a536d591b5", - "modified": "2021-01-06T18:30:56.295Z", + "modified": "2021-01-13T01:52:45.329Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.296Z", - "description": "Boundary Protection", - "id": "relationship--538ebdad-5685-4a0f-9ed8-785d853b5e52", - "modified": "2021-01-06T18:30:56.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.296Z", - "description": "Boundary Protection", - "id": "relationship--d7ff194b-c3c3-4706-8140-2eb382850d35", - "modified": "2021-01-06T18:30:56.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.331Z", "id": "relationship--b924e704-3e95-4726-b50d-8d6bda24698e", - "modified": "2021-01-06T18:30:56.297Z", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.331Z", "id": "relationship--17aad9b2-f2c9-4763-8389-33736a58f859", - "modified": "2021-01-06T18:30:56.297Z", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.298Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.331Z", "id": "relationship--1428fb4e-2983-4fc5-8b1e-5233dd054bd7", - "modified": "2021-01-06T18:30:56.298Z", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.298Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.331Z", "id": "relationship--d31d7c42-68d0-48e8-8ab1-fde354458d8c", - "modified": "2021-01-06T18:30:56.298Z", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.332Z", "id": "relationship--02c76463-77b1-4f47-837f-62a104bcda2a", - "modified": "2021-01-06T18:30:56.299Z", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.332Z", "id": "relationship--ce0b936c-0430-4bba-ae2d-f388414cc7cc", - "modified": "2021-01-06T18:30:56.299Z", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.332Z", "id": "relationship--72e4d2ed-3d49-458e-bcaa-fa1bcf8fabcf", - "modified": "2021-01-06T18:30:56.299Z", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:56.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:56.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:56.300Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--165b25ce-067c-4ee2-a917-c99ee6a1d2a3", - "modified": "2021-01-06T18:30:56.300Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--41ab505e-dfaa-4385-a894-2c488121dbe5", - "modified": "2021-01-06T18:30:56.300Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--0ca3207c-dba3-4947-9ce4-d0bfd8b39370", - "modified": "2021-01-06T18:30:56.301Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--c25474fa-c040-4c0a-9e59-57e426a006f1", - "modified": "2021-01-06T18:30:56.301Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--995319d4-6b90-4cd3-bf7e-6accf162576d", - "modified": "2021-01-06T18:30:56.301Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:52:45.333Z", "id": "relationship--7c814acc-ffc7-49b9-bd40-0ce26ee85f0f", - "modified": "2021-01-06T18:30:56.301Z", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--9fe45e33-cca6-4138-814e-8211c06132ef", - "modified": "2021-01-06T18:30:56.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--0f04b09e-4ddd-46cf-95ac-85a08f764a21", - "modified": "2021-01-06T18:30:56.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--af1f597d-8e68-4004-8133-4b6746bc0e4a", - "modified": "2021-01-06T18:30:56.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:56.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:56.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:56.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--d16e4336-1b38-4f40-9021-b6a9aab3fe12", - "modified": "2021-01-06T18:30:56.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--02fa8be7-9400-4fda-8b3c-a2f2adb9f588", - "modified": "2021-01-06T18:30:56.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.305Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dd98f1ef-13be-4f30-97fc-889c92fb47ee", - "modified": "2021-01-06T18:30:56.305Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.305Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.336Z", "id": "relationship--04395271-fa6c-4040-b9d6-dcef167516c3", - "modified": "2021-01-06T18:30:56.305Z", + "modified": "2021-01-13T01:52:45.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.305Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.337Z", "id": "relationship--08658b5c-357f-4749-8f74-7d843fdd994b", - "modified": "2021-01-06T18:30:56.305Z", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.337Z", "id": "relationship--5fbf3699-6700-44c6-b51d-9e0ad1fa8e5b", - "modified": "2021-01-06T18:30:56.306Z", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.337Z", "id": "relationship--2adb4841-d12f-4729-83f8-6df206ca3dac", - "modified": "2021-01-06T18:30:56.306Z", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.337Z", "id": "relationship--adf2edac-cb4b-4c6a-a4d6-aa9df23de552", - "modified": "2021-01-06T18:30:56.306Z", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", + "created": "2021-01-13T01:52:45.337Z", "id": "relationship--1c3caad2-3a99-4196-bdb5-dc66cc066220", - "modified": "2021-01-06T18:30:56.306Z", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:56.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:56.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:56.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.308Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:56.308Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:56.309Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:56.309Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.339Z", "id": "relationship--1de56d53-a41b-4c24-94d9-ae3ac20d69aa", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.339Z", "id": "relationship--8b1f0241-cb24-4eef-a649-aada36e2fcdf", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.339Z", "id": "relationship--e8864db1-3013-4d01-8344-4d5b6a0b6a80", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.339Z", "id": "relationship--5750b9fa-296a-45b2-a451-e57cacbab771", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.340Z", "id": "relationship--29350344-d9a2-4745-a5f6-88e9c4ccefba", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:52:45.340Z", "id": "relationship--996eb3bf-5ba8-455e-a4fb-9a4f36c8e226", - "modified": "2021-01-06T18:30:56.309Z", + "modified": "2021-01-13T01:52:45.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7663bac6-98dd-44e7-a32a-9b2ea76f2b75", - "modified": "2021-01-06T18:30:56.311Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--dc427dad-1e7c-4be7-8c3e-de6cd6d1c256", - "modified": "2021-01-06T18:30:56.311Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.341Z", "id": "relationship--bdc6613f-d798-4c59-9f42-779336570969", - "modified": "2021-01-06T18:30:56.311Z", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.341Z", "id": "relationship--74039f49-a98e-4684-bb5f-3dd9412104ed", - "modified": "2021-01-06T18:30:56.311Z", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.341Z", "id": "relationship--618e8ff1-d4e4-4a72-a70a-200fa2d42c84", - "modified": "2021-01-06T18:30:56.311Z", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.341Z", "id": "relationship--de857f2e-83d5-40ad-b1b3-9f0a5f2d3335", - "modified": "2021-01-06T18:30:56.311Z", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.312Z", - "description": "Configuration Management, Application Control", - "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:56.312Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.312Z", - "description": "Configuration Management, Application Control", - "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:56.312Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.313Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.342Z", "id": "relationship--1a09f671-7b20-4931-a2f9-91c7dab16c49", - "modified": "2021-01-06T18:30:56.313Z", + "modified": "2021-01-13T01:52:45.342Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.313Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.342Z", "id": "relationship--b9bdf9ca-777a-4f8c-9888-0b9be8140841", - "modified": "2021-01-06T18:30:56.313Z", + "modified": "2021-01-13T01:52:45.342Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.343Z", "id": "relationship--8f2f5466-48e6-41f5-82d2-e2138f22fd2c", - "modified": "2021-01-06T18:30:56.314Z", + "modified": "2021-01-13T01:52:45.343Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:56.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--96f70fc0-f020-4dd4-8082-00cb31bb3639", - "modified": "2021-01-06T18:30:56.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.344Z", "id": "relationship--26b30c62-feec-4504-87e5-072efa37ce73", - "modified": "2021-01-06T18:30:56.314Z", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.344Z", "id": "relationship--29f7214f-3f32-49d5-9712-a09273fe0a05", - "modified": "2021-01-06T18:30:56.314Z", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.315Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d5b7e8cf-1ead-4215-ac35-229e8eb6144f", - "modified": "2021-01-06T18:30:56.315Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.315Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.344Z", "id": "relationship--bd36633d-aaca-45b1-b7b1-8e19b0691077", - "modified": "2021-01-06T18:30:56.315Z", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.316Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.345Z", "id": "relationship--8b446bfa-9e53-4e7e-af38-00ce50adc9af", - "modified": "2021-01-06T18:30:56.316Z", + "modified": "2021-01-13T01:52:45.345Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--a0f7d223-078e-4aec-bb7e-dfda5b1d0046", - "modified": "2021-01-06T18:30:56.317Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--7ee5bc45-ae12-4946-8f0a-08a8c74e2993", - "modified": "2021-01-06T18:30:56.317Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--98f44ee4-f624-4c7e-8e7b-d7cda027b7ce", - "modified": "2021-01-06T18:30:56.317Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--f9e49164-3317-4f5a-baf6-8b32d4314e3c", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--1cc0139a-fa4a-42b1-83d5-48180230c488", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--a38bff23-6c77-4316-a04c-409a7af1342c", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--64b0d228-0c42-4808-a581-2eac32334a63", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.346Z", "id": "relationship--6ea636ef-e123-4d93-a10e-7be7703cd6b0", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--2d323269-0581-4914-96fe-769bfa5c84b6", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--cc3bb91d-8c73-47da-adf4-33a447ddc71f", - "modified": "2021-01-06T18:30:56.318Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--68027927-fcc9-486e-8830-7f79a13ed950", - "modified": "2021-01-06T18:30:56.319Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--68e33edb-ae4d-44dd-a551-770d32d2b3a3", - "modified": "2021-01-06T18:30:56.319Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--7c0c7a1f-87f6-4bd0-a336-bfa7cd06a7a6", - "modified": "2021-01-06T18:30:56.319Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--2a91da8d-72b2-4b64-bbed-7be2cbede505", - "modified": "2021-01-06T18:30:56.319Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.347Z", "id": "relationship--3280928f-365c-4e36-aa98-3debc56d480f", - "modified": "2021-01-06T18:30:56.319Z", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.348Z", "id": "relationship--63e77486-01d0-42f7-8bea-855deb83b65b", - "modified": "2021-01-06T18:30:56.321Z", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.348Z", "id": "relationship--fa273daa-f23b-4954-bd50-8c11a2a5d54a", - "modified": "2021-01-06T18:30:56.321Z", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.348Z", "id": "relationship--be1e98c1-082f-4032-a859-700c6f167406", - "modified": "2021-01-06T18:30:56.321Z", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.322Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.349Z", "id": "relationship--f30e46ef-2881-4c37-9f66-39e66e0e34b6", - "modified": "2021-01-06T18:30:56.322Z", + "modified": "2021-01-13T01:52:45.349Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.323Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.349Z", "id": "relationship--3b9d0094-7818-441e-9bcc-6e7e91920994", - "modified": "2021-01-06T18:30:56.323Z", + "modified": "2021-01-13T01:52:45.349Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.350Z", "id": "relationship--35fe996d-18ee-400c-b04e-b1f809ef92f8", - "modified": "2021-01-06T18:30:56.324Z", + "modified": "2021-01-13T01:52:45.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.351Z", "id": "relationship--357b33f6-a6e6-45de-8450-50639009d3a6", - "modified": "2021-01-06T18:30:56.324Z", + "modified": "2021-01-13T01:52:45.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.351Z", "id": "relationship--4ded17fe-4bda-4841-98e1-385a050fbff8", - "modified": "2021-01-06T18:30:56.324Z", + "modified": "2021-01-13T01:52:45.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.352Z", "id": "relationship--c8f3448b-06cd-4ed5-a261-04f9c0f3a23c", - "modified": "2021-01-06T18:30:56.326Z", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.352Z", "id": "relationship--a9845af0-72ad-43c4-8a72-935ce733e0be", - "modified": "2021-01-06T18:30:56.326Z", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.352Z", "id": "relationship--5b316899-c768-4a2d-8006-6cc035b5c8a8", - "modified": "2021-01-06T18:30:56.326Z", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.327Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.353Z", "id": "relationship--a89a9a41-2c22-4275-bf3c-3bb4f16c5a88", - "modified": "2021-01-06T18:30:56.327Z", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.328Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.353Z", "id": "relationship--be3775a0-c574-48b0-8a52-1bb70612b3d8", - "modified": "2021-01-06T18:30:56.328Z", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.328Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.353Z", "id": "relationship--d1d8f4b4-69da-4f6c-ac17-decc3d664194", - "modified": "2021-01-06T18:30:56.328Z", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.329Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.354Z", "id": "relationship--83153651-3c19-4586-9576-f117c3fe7f21", - "modified": "2021-01-06T18:30:56.329Z", + "modified": "2021-01-13T01:52:45.354Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.329Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.354Z", "id": "relationship--ec67274e-9514-4dc9-9875-e6fc6c074409", - "modified": "2021-01-06T18:30:56.329Z", + "modified": "2021-01-13T01:52:45.354Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.330Z", - "description": "Information Validation", - "id": "relationship--28ff0106-4725-4e61-9d30-f258eeb784fb", - "modified": "2021-01-06T18:30:56.330Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.330Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.355Z", "id": "relationship--810641d3-ba6d-451a-9679-5921f0b0c27d", - "modified": "2021-01-06T18:30:56.330Z", + "modified": "2021-01-13T01:52:45.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.331Z", - "description": "Configuration Management, Application Control", - "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:56.331Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.331Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.356Z", "id": "relationship--62b27f2f-5b69-4e0e-8d8a-c19767f335cf", - "modified": "2021-01-06T18:30:56.331Z", + "modified": "2021-01-13T01:52:45.356Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.332Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:56.332Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:56.333Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--c83feed4-2c0f-4dbd-89e6-b8886846a8b2", - "modified": "2021-01-06T18:30:56.333Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--15439cf4-7965-41e7-877f-55fcb83222ae", - "modified": "2021-01-06T18:30:56.333Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.334Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.358Z", "id": "relationship--a92dd4ec-ea21-423e-954b-37f98f3c74bd", - "modified": "2021-01-06T18:30:56.334Z", + "modified": "2021-01-13T01:52:45.358Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.334Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.358Z", "id": "relationship--7b52b17a-8269-43db-91a3-75b3e17a3b41", - "modified": "2021-01-06T18:30:56.334Z", + "modified": "2021-01-13T01:52:45.358Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.335Z", - "description": "Configuration Management, Application Control", - "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:56.335Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:56.336Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.359Z", "id": "relationship--7c5d4a44-0ac7-49c7-82cc-dc3cbd3ff298", - "modified": "2021-01-06T18:30:56.336Z", + "modified": "2021-01-13T01:52:45.359Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", - "id": "relationship--771f6d26-e388-4d6e-a2ea-ad5765af7263", - "modified": "2021-01-06T18:30:56.336Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.337Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--d3b51433-362b-493f-9359-cc2c44f8042b", - "modified": "2021-01-06T18:30:56.337Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--2bc0ea3e-aaf7-4b5d-9fae-492d08d42ed3", - "modified": "2021-01-06T18:30:56.338Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--5c2432ce-e9a0-46e7-a77f-0cf19be75b24", - "modified": "2021-01-06T18:30:56.338Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--74d02f6c-09bd-423e-95e1-56853eaf9896", - "modified": "2021-01-06T18:30:56.338Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--5ef91915-b646-4aeb-b894-7a19b2806fc1", - "modified": "2021-01-06T18:30:56.338Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.360Z", "id": "relationship--6e4f05b6-7b87-4885-b902-be8d406e8abf", - "modified": "2021-01-06T18:30:56.338Z", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.339Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.361Z", "id": "relationship--98085f35-47fa-495f-87cf-f3e39067cbaa", - "modified": "2021-01-06T18:30:56.339Z", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.361Z", "id": "relationship--1a37c130-f40c-4d81-8f80-a106a7919e41", - "modified": "2021-01-06T18:30:56.340Z", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.361Z", "id": "relationship--71e8e6ba-519b-47e1-ac7b-57a67c5865f0", - "modified": "2021-01-06T18:30:56.340Z", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.362Z", "id": "relationship--cfb0878b-c32e-4ddb-8c61-eccea60a1596", - "modified": "2021-01-06T18:30:56.340Z", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.362Z", "id": "relationship--f6eddb39-bc1b-4b3a-9974-fe61cb48af91", - "modified": "2021-01-06T18:30:56.340Z", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.362Z", "id": "relationship--3beebb5c-c004-4234-8372-359ab0980337", - "modified": "2021-01-06T18:30:56.340Z", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.363Z", "id": "relationship--89416b14-7d23-41b1-9cfb-4dd4c3df731f", - "modified": "2021-01-06T18:30:56.342Z", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.363Z", "id": "relationship--762bc2db-43bb-4907-941d-f71f3efdfa1c", - "modified": "2021-01-06T18:30:56.342Z", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cc313add-0c43-4880-8e3c-8b4c983089a6", - "modified": "2021-01-06T18:30:56.342Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.363Z", "id": "relationship--b5e786c7-be49-4551-af1c-639dba2d98c9", - "modified": "2021-01-06T18:30:56.343Z", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.363Z", "id": "relationship--3be410ae-06f7-48fe-834d-6ff2ff9a0fae", - "modified": "2021-01-06T18:30:56.343Z", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--1f526480-a787-496d-aae0-19e655e44aa7", - "modified": "2021-01-06T18:30:56.343Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--6f2c9e25-211e-47f5-91aa-335a5b58ae97", - "modified": "2021-01-06T18:30:56.343Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.343Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.343Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--372dcba7-d1c0-4596-9ed6-c1a86fa97740", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--af26c829-2abf-4da2-a1e9-ba541abec075", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--e34fc174-4055-4dbd-b206-080fbfa948f8", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--a108f5db-e04f-4ec0-8c9b-56276eb7b668", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--9f00b58b-13d2-40f6-8570-dd34a9397af4", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.364Z", "id": "relationship--2ee8b70b-62d5-45f4-b6e2-01a33cbb7782", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--cead2dd0-73e8-49b2-b0e8-098714e4570d", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--faf481c5-5baf-4f1f-ac5b-2ddb00b154a6", - "modified": "2021-01-06T18:30:56.344Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--df48fe4b-36d3-4a81-8ccf-323d9e5de063", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--6851aeff-b083-497f-b2c9-37b35270d8cf", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--873a28fc-89b5-4f7b-9232-05107179e6be", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--2bcf10ef-d780-406b-b21a-20fcd3b4f26e", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--812028fe-5ae4-4d65-8be4-e2b7392ce40e", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--b49cfdda-a947-4d17-84b9-a6b3a6c7d5af", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.365Z", "id": "relationship--2b2f72ea-bfd2-4d26-ab29-e3b994c63373", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.366Z", "id": "relationship--d09a9829-3ec8-4cd3-874d-8007f62e4f3b", - "modified": "2021-01-06T18:30:56.345Z", + "modified": "2021-01-13T01:52:45.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.346Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.366Z", "id": "relationship--bef76ab1-465f-446b-9f42-78d4f3ae0dbc", - "modified": "2021-01-06T18:30:56.346Z", + "modified": "2021-01-13T01:52:45.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.346Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--335b369a-d65d-4847-86ae-47e8ac0b5a4b", - "modified": "2021-01-06T18:30:56.346Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--f7823657-c3fe-45f9-b6bf-20c918ccd5ba", - "modified": "2021-01-06T18:30:56.347Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--05db586a-1aa0-4c0a-bdb5-44be3b2ea765", - "modified": "2021-01-06T18:30:56.347Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0320f1c4-971f-40f1-9d1e-187bc81429f7", - "modified": "2021-01-06T18:30:56.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--62a70342-8ba5-4798-98cb-1e9fe0316dd9", - "modified": "2021-01-06T18:30:56.347Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--b7b3a21f-0e81-449b-a39a-de5e4e9b85f1", - "modified": "2021-01-06T18:30:56.347Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--3fdc475d-4a3c-439d-9195-7dad9d82c70b", - "modified": "2021-01-06T18:30:56.347Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--7fedce4e-5030-488d-9e7d-8ac40a34f98a", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--be8cb30b-c7cd-4728-9549-15fe8b7b13ea", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--6f57e407-a57e-4ebb-948e-2a089f147ae9", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.367Z", "id": "relationship--0f264e7b-e188-42c3-9ed9-11081e3269ff", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--087c9259-99eb-4260-b007-600c3acb8302", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--018091e7-a8df-4fb9-938f-af79f5d8da8a", - "modified": "2021-01-06T18:30:56.348Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--44c0061f-cf28-43c6-a89a-3cf801f23024", - "modified": "2021-01-06T18:30:56.348Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--a680271d-6c69-41be-82d6-7ceed6ada01e", - "modified": "2021-01-06T18:30:56.349Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--d008227c-6b9f-4ad0-8250-63dbf8450dc4", - "modified": "2021-01-06T18:30:56.349Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--83303163-97c2-4025-9062-e4719cb5d168", - "modified": "2021-01-06T18:30:56.349Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:56.349Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.349Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--598f54bf-7bee-424c-a3f1-2b87e00eaa4d", - "modified": "2021-01-06T18:30:56.349Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.368Z", "id": "relationship--7f6a1752-2d67-470b-be36-fa11e07c8617", - "modified": "2021-01-06T18:30:56.350Z", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--418314a0-0d57-4c7b-9bc1-875b43836bbb", - "modified": "2021-01-06T18:30:56.350Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--dbedc551-2dc1-4d7d-a902-5b80db9a30f3", - "modified": "2021-01-06T18:30:56.350Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--3c0334ff-505b-4738-83b1-91b7541f8a2d", - "modified": "2021-01-06T18:30:56.350Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--01f687f7-5314-4016-9148-831f92ce792d", - "modified": "2021-01-06T18:30:56.351Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--755f36d8-dfc7-4979-8560-0bba32d13759", - "modified": "2021-01-06T18:30:56.351Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.369Z", "id": "relationship--a0ed3af8-0654-4a93-a415-e077b299da91", - "modified": "2021-01-06T18:30:56.351Z", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.351Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:56.353Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.370Z", "id": "relationship--dbeb2038-1083-475d-8235-768056c04a4f", - "modified": "2021-01-06T18:30:56.353Z", + "modified": "2021-01-13T01:52:45.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d5758186-cb9c-42df-9e39-d6a7dc997b18", - "modified": "2021-01-06T18:30:56.353Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.354Z", - "description": "Configuration Management, Application Control", - "id": "relationship--53743617-0471-44e8-a9df-e8db2dd76ee0", - "modified": "2021-01-06T18:30:56.354Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.354Z", - "description": "Configuration Management, Application Control", - "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:56.354Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.372Z", "id": "relationship--0609c960-0443-42bb-a611-f5ff1551f026", - "modified": "2021-01-06T18:30:56.356Z", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.372Z", "id": "relationship--046698b6-ecd8-47a9-9f2a-1d3919ab34d5", - "modified": "2021-01-06T18:30:56.356Z", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.372Z", "id": "relationship--d605907b-de29-4e1f-a854-73decf8d23aa", - "modified": "2021-01-06T18:30:56.356Z", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.373Z", "id": "relationship--e4648ee0-facc-46da-b595-6b2985016908", - "modified": "2021-01-06T18:30:56.357Z", + "modified": "2021-01-13T01:52:45.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.373Z", "id": "relationship--9fdc6e9d-772f-4256-9027-a0a7976e5cba", - "modified": "2021-01-06T18:30:56.357Z", + "modified": "2021-01-13T01:52:45.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.374Z", "id": "relationship--7159e180-05df-4bda-b66b-6553130eebd9", - "modified": "2021-01-06T18:30:56.357Z", + "modified": "2021-01-13T01:52:45.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.374Z", "id": "relationship--ad2e5b48-0269-4ced-ac22-4a49db61a977", - "modified": "2021-01-06T18:30:56.358Z", + "modified": "2021-01-13T01:52:45.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--7ed822a6-9ba2-4bf7-b122-5a33e304a3c3", - "modified": "2021-01-06T18:30:56.358Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--36c180aa-e929-41af-9990-e5f8ff92069f", - "modified": "2021-01-06T18:30:56.358Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--40aba28e-cab9-4570-8907-de0c751afca4", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--bfa1cd26-5c12-4b7e-a232-8bf686654cc9", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--6f8ed074-6afe-46e5-b4ed-0976857edc31", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--7d990798-d5d7-4cb1-9e63-7dd3c5c5b63c", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--357f3eaa-7bf8-4ad7-975b-e7885b0f7f81", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--c6416ed4-1d80-4614-9db0-7a23b4076147", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.375Z", "id": "relationship--fc9ab7dd-cb25-466c-b866-efa521fc39ed", - "modified": "2021-01-06T18:30:56.359Z", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", - "id": "relationship--469aed6b-d464-4aaf-a41f-2cf81cdcdb5f", - "modified": "2021-01-06T18:30:56.360Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.376Z", "id": "relationship--94f39230-83e9-4c09-a989-acd1a30f9757", - "modified": "2021-01-06T18:30:56.360Z", + "modified": "2021-01-13T01:52:45.376Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.377Z", "id": "relationship--8f8c749c-63ff-4eaf-acd5-3a65261916f2", - "modified": "2021-01-06T18:30:56.360Z", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.361Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.377Z", "id": "relationship--5866d81f-5ec8-47d8-82c9-17b8f9fee6a5", - "modified": "2021-01-06T18:30:56.361Z", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.361Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.377Z", "id": "relationship--c734e120-01d8-4ca2-a076-dd93f16faa36", - "modified": "2021-01-06T18:30:56.361Z", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.378Z", "id": "relationship--7d9113c6-4604-44d8-a4cb-dafbabda429a", - "modified": "2021-01-06T18:30:56.362Z", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.378Z", "id": "relationship--613d0e0b-c1c6-4d96-8188-07c11e83310d", - "modified": "2021-01-06T18:30:56.362Z", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.378Z", "id": "relationship--8acff36d-4217-4807-8c5f-a6c99421e76d", - "modified": "2021-01-06T18:30:56.362Z", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.378Z", "id": "relationship--b2c0287c-2e4a-4394-8834-05f4e3fadf84", - "modified": "2021-01-06T18:30:56.362Z", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.363Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.379Z", "id": "relationship--4ff7c944-53b1-47ad-9dfe-9cd57bd51a5c", - "modified": "2021-01-06T18:30:56.363Z", + "modified": "2021-01-13T01:52:45.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.363Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.379Z", "id": "relationship--0cbf3e05-427d-4c67-a3c4-39bb2534668c", - "modified": "2021-01-06T18:30:56.363Z", + "modified": "2021-01-13T01:52:45.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.364Z", - "description": "Code execution", + "created": "2021-01-13T01:52:45.380Z", "id": "relationship--a53940b0-6b26-451e-bc54-4c4de7c4b69a", - "modified": "2021-01-06T18:30:56.364Z", + "modified": "2021-01-13T01:52:45.380Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", + "created": "2021-01-13T01:52:45.381Z", "id": "relationship--db659b6c-102f-4124-8cb5-44117ff30e38", - "modified": "2021-01-06T18:30:56.365Z", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", + "created": "2021-01-13T01:52:45.381Z", "id": "relationship--171eb4c9-9ebb-4c7b-ad38-8eb2aafea64f", - "modified": "2021-01-06T18:30:56.365Z", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", + "created": "2021-01-13T01:52:45.381Z", "id": "relationship--d15c21b9-e27e-4c96-b6cc-131dcc98552c", - "modified": "2021-01-06T18:30:56.365Z", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.366Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.382Z", "id": "relationship--aa5988e6-3209-4c09-b4f1-2b8e7a361a8b", - "modified": "2021-01-06T18:30:56.366Z", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.366Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.382Z", "id": "relationship--d73ec201-a9a4-4ec7-959b-5b0c7b93d4b6", - "modified": "2021-01-06T18:30:56.366Z", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:56.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.382Z", "id": "relationship--571376a4-7638-42b7-b7fa-f61cc497b364", - "modified": "2021-01-06T18:30:56.367Z", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.382Z", "id": "relationship--89d14bbe-b8e5-4b1a-9397-a9a8cf6b2990", - "modified": "2021-01-06T18:30:56.367Z", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.383Z", "id": "relationship--136f82cd-e69d-4de0-856b-2325e3bb1ac6", - "modified": "2021-01-06T18:30:56.367Z", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.383Z", "id": "relationship--e1efa447-fdaa-4a43-aaf2-e647492b5106", - "modified": "2021-01-06T18:30:56.367Z", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.383Z", "id": "relationship--16194e6d-881c-444d-a960-787125bc2387", - "modified": "2021-01-06T18:30:56.367Z", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.368Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.383Z", "id": "relationship--408d76f1-6807-4906-8626-2b36e2b0fa9a", - "modified": "2021-01-06T18:30:56.368Z", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.368Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.383Z", "id": "relationship--5b36caf7-7fce-4885-be2f-93457922293a", - "modified": "2021-01-06T18:30:56.368Z", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:56.369Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.384Z", "id": "relationship--21c961be-138c-41d2-86fa-d4adaaa571c2", - "modified": "2021-01-06T18:30:56.369Z", + "modified": "2021-01-13T01:52:45.384Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:56.369Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.384Z", "id": "relationship--394c088a-821f-46c4-a0c3-12eb3ce6382e", - "modified": "2021-01-06T18:30:56.369Z", + "modified": "2021-01-13T01:52:45.384Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:56.369Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.385Z", "id": "relationship--ad524fb4-080d-4f94-90c6-39c6d79b181f", - "modified": "2021-01-06T18:30:56.369Z", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.370Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.385Z", "id": "relationship--e8ac1833-ada4-43a8-8c84-d28bdf9d355a", - "modified": "2021-01-06T18:30:56.370Z", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.370Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.385Z", "id": "relationship--9d4ae80d-a0a2-45be-9f6f-0cdb0d6e3c69", - "modified": "2021-01-06T18:30:56.370Z", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.386Z", "id": "relationship--6dc858b0-2035-47c5-ba8d-2266e3ac227a", - "modified": "2021-01-06T18:30:56.371Z", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7c7ab027-f054-4302-bee3-6d286c6c2c99", - "modified": "2021-01-06T18:30:56.371Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2f6a5e3f-a3fa-4a7d-b344-ec1bc9cb6e88", - "modified": "2021-01-06T18:30:56.371Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.386Z", "id": "relationship--d1f7a765-d2c5-4393-b27d-d781e1d7fdf0", - "modified": "2021-01-06T18:30:56.371Z", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8b638a03-6cfe-4809-bd64-0153e490dece", - "modified": "2021-01-06T18:30:56.371Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2577bf5b-b021-40af-b320-038e4d1b86bc", - "modified": "2021-01-06T18:30:56.371Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.386Z", "id": "relationship--5a999ec9-282d-41be-9de5-ec80ffde7d26", - "modified": "2021-01-06T18:30:56.372Z", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.386Z", "id": "relationship--77bf60af-cd0c-4534-9e2e-77d607e6684c", - "modified": "2021-01-06T18:30:56.372Z", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.387Z", "id": "relationship--ce2c018c-0daf-4f72-b6f4-882dd14a449d", - "modified": "2021-01-06T18:30:56.372Z", + "modified": "2021-01-13T01:52:45.387Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.387Z", "id": "relationship--410685a2-9de1-4f82-aac9-f6d5bb82c4e5", - "modified": "2021-01-06T18:30:56.373Z", + "modified": "2021-01-13T01:52:45.387Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--03fc936f-42f7-4c08-9c8e-48dc5306cdf5", - "modified": "2021-01-06T18:30:56.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.388Z", "id": "relationship--ac658d22-4128-4337-8560-39cbcb67fa06", - "modified": "2021-01-06T18:30:56.373Z", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.388Z", "id": "relationship--afa55fc8-8555-445c-bc63-f5239c32f469", - "modified": "2021-01-06T18:30:56.373Z", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--33e127c8-b4fa-42b4-b441-91497647d20e", - "modified": "2021-01-06T18:30:56.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--404ac666-65d7-43b8-bf9d-f999309ec164", - "modified": "2021-01-06T18:30:56.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.388Z", "id": "relationship--d46d125f-5d88-403e-b34c-9e9b16021676", - "modified": "2021-01-06T18:30:56.373Z", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.374Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.388Z", "id": "relationship--7dc50a99-3d6f-42ea-aa91-d2f694a83f80", - "modified": "2021-01-06T18:30:56.374Z", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.374Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--6064d190-3691-4828-bf84-c6aacc445a98", - "modified": "2021-01-06T18:30:56.374Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.389Z", "id": "relationship--c984cfd4-9476-4549-acd3-247f9239b0af", - "modified": "2021-01-06T18:30:56.375Z", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.389Z", "id": "relationship--b96087d6-3142-4b47-9598-8683aa8f1c26", - "modified": "2021-01-06T18:30:56.375Z", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.389Z", "id": "relationship--04ab7c1a-78d5-42e5-a47f-da30b3b72072", - "modified": "2021-01-06T18:30:56.375Z", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.390Z", "id": "relationship--54d49f4e-3ebb-44df-95e2-bd4899a74ba0", - "modified": "2021-01-06T18:30:56.375Z", + "modified": "2021-01-13T01:52:45.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.377Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.390Z", "id": "relationship--b843ab7a-f56b-4d5f-95cd-a9962b28a4f0", - "modified": "2021-01-06T18:30:56.377Z", + "modified": "2021-01-13T01:52:45.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.377Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.391Z", "id": "relationship--91b8d329-b76a-4bfb-aeb7-b9ccbb8a5e10", - "modified": "2021-01-06T18:30:56.377Z", + "modified": "2021-01-13T01:52:45.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.392Z", "id": "relationship--ae31276f-e704-4a0c-a67b-a9f51c980bee", - "modified": "2021-01-06T18:30:56.378Z", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.392Z", "id": "relationship--a3eea86c-8ef1-4a37-8237-9dff5eb1eaa1", - "modified": "2021-01-06T18:30:56.378Z", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", - "id": "relationship--3d3d3237-2c2e-4e39-8236-b9fa8007e914", - "modified": "2021-01-06T18:30:56.378Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.392Z", "id": "relationship--be56abaa-6624-48e8-bbeb-f83e1606fb59", - "modified": "2021-01-06T18:30:56.378Z", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--dbac2ec4-1f53-4bd8-b388-42d434bfacef", - "modified": "2021-01-06T18:30:56.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--d723a848-eab1-4121-a129-335adeb781a9", - "modified": "2021-01-06T18:30:56.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--a9ba865a-7e26-453f-9409-9869a1225240", - "modified": "2021-01-06T18:30:56.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.392Z", "id": "relationship--e906b8e2-fbf9-4aa0-89cb-9575d7d3a17a", - "modified": "2021-01-06T18:30:56.379Z", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.392Z", "id": "relationship--048a3ec5-01a4-4ed9-8f57-d67ebdeee086", - "modified": "2021-01-06T18:30:56.379Z", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.393Z", "id": "relationship--ebabacd6-38a1-472d-b82d-54df55c88ec4", - "modified": "2021-01-06T18:30:56.379Z", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.393Z", "id": "relationship--0587de72-2c3f-4dc2-ba17-3da8dd8f8092", - "modified": "2021-01-06T18:30:56.379Z", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.393Z", "id": "relationship--251b4b89-80f2-4573-9af6-3dd0d7a6e622", - "modified": "2021-01-06T18:30:56.379Z", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.380Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.393Z", "id": "relationship--e4e0eef8-25f9-4876-8a15-2adf778a2c10", - "modified": "2021-01-06T18:30:56.380Z", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.380Z", - "description": "Information Validation", + "created": "2021-01-13T01:52:45.393Z", "id": "relationship--93f1238d-18c0-47c9-b6c3-1cd91f8001fa", - "modified": "2021-01-06T18:30:56.380Z", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.394Z", "id": "relationship--b4c4b47c-8063-4951-a4d5-cc97db938e62", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.394Z", "id": "relationship--ab8e3f61-ffcd-4660-a209-843fcf441e09", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.394Z", "id": "relationship--2b217435-4d0d-49c8-bb47-5906ad9bbe26", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.394Z", "id": "relationship--77db8899-9202-4060-8665-040bea1ef927", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.394Z", "id": "relationship--12aa590b-bd7b-4b33-8aec-3c17ca450755", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.395Z", "id": "relationship--a70254d9-f382-4db2-9797-3eb887f24426", - "modified": "2021-01-06T18:30:56.381Z", + "modified": "2021-01-13T01:52:45.395Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.382Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:52:45.395Z", "id": "relationship--0be23497-b6b6-4734-a60b-626b8f886062", - "modified": "2021-01-06T18:30:56.382Z", + "modified": "2021-01-13T01:52:45.395Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.383Z", - "description": "System Monitoring", - "id": "relationship--f78bb02e-ecf3-4144-86f0-fea70ebfd1e8", - "modified": "2021-01-06T18:30:56.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.385Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9c3946ce-71e3-4340-8978-36c1114585bc", - "modified": "2021-01-06T18:30:56.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.385Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--25088766-9277-4bc3-88b4-c85fa5a29f8a", - "modified": "2021-01-06T18:30:56.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.387Z", - "description": "System Monitoring", - "id": "relationship--e5543133-a383-4f77-ae50-a1f0ae66a43e", - "modified": "2021-01-06T18:30:56.387Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.388Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.400Z", "id": "relationship--39947ae9-f989-4770-8776-cc8baa246124", - "modified": "2021-01-06T18:30:56.388Z", + "modified": "2021-01-13T01:52:45.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.388Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--acee6bd3-24a4-4fc0-961c-dca4e94b3df1", - "modified": "2021-01-06T18:30:56.388Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.389Z", + "created": "2021-01-13T01:52:45.401Z", "id": "relationship--0f0c22c1-c6a1-4266-9466-d243d7414653", - "modified": "2021-01-06T18:30:56.389Z", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.389Z", + "created": "2021-01-13T01:52:45.401Z", "id": "relationship--30addf35-1299-46a2-8419-934db6a5a569", - "modified": "2021-01-06T18:30:56.389Z", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.401Z", "id": "relationship--c26b4cb1-1d93-44d4-88a7-0754d91c8549", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--74571d93-7ea3-4efc-ba72-77d49f560454", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--3885dd1c-c612-4c19-a39c-005ca3f98a69", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--97a507af-4d50-4e91-932d-0057bc86f6d2", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--ae490078-010a-4a75-b3e4-112492a975e6", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--793c452d-a8de-468f-9077-fd3d047f061e", - "modified": "2021-01-06T18:30:56.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--0f377664-4f70-4597-bfa8-a27815c10070", - "modified": "2021-01-06T18:30:56.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--9f4355ff-decd-4e1f-9674-c64e6b19b17c", - "modified": "2021-01-06T18:30:56.390Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--22c33db5-c95b-44fc-b065-da7d866d2221", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.402Z", "id": "relationship--42d7257f-1944-40a0-bcae-2b9cad9577c6", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--35e10857-70ab-4ac2-9d2c-895c0aea1bfc", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--ed8738e8-c7c5-4ff9-8feb-45abcc63c8dd", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--6dbe62f0-9e09-4e19-a29c-20601bfe941e", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--27e7e8f2-272d-4538-9261-d1e3ab0938ed", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--17350850-05e2-4d79-bc36-a16e6c5ba097", - "modified": "2021-01-06T18:30:56.391Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--5acbbcfa-0457-4f6f-9d33-ed12d3c84593", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--1040f35e-298e-49fc-85c9-69073bae9772", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--5936661b-382a-4ac5-9128-e132700819fa", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--b8ab594f-8976-40b1-9b59-e739a7f15fce", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--dca76800-9dbf-477d-8f38-6937e984c633", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.403Z", "id": "relationship--1afcadc3-6f8d-4f0c-b1f5-f9fd30046ae4", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--b03357ba-192f-4f70-9b8a-e28ee4e7db2c", - "modified": "2021-01-06T18:30:56.392Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--accb4b8b-6ec4-4aab-867f-6a6ab27a847c", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--f9ef903e-d5d4-435e-a11a-d9b341fe64a6", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--85088f7f-dd54-4814-9e04-02aca3b62613", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--10a8699a-3fec-45df-8950-3f73b846cb75", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--20be4f93-b285-4081-9d55-d0c0303d7a75", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--9e52c247-c8a7-46f0-bcfd-ed0c7705d7fb", - "modified": "2021-01-06T18:30:56.393Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--d9ae35ce-2f97-4496-8076-d3c0949f2862", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--037e46ef-32c3-4960-a883-6e79eb8c4775", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.404Z", "id": "relationship--b5505c6e-ade4-4a8d-add2-825d4bfb3712", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--e1f3bc5b-c075-4917-97c6-05c8291df267", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--c708134a-78e2-420d-9b97-53c9e5074b1a", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--76ac8b37-fa19-45ea-b585-1d8d892ac276", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--00fda3aa-986c-465e-9f31-5285bbb68aa2", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--2b9fa82b-ea39-4328-832e-4643506b8a0a", - "modified": "2021-01-06T18:30:56.394Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--5e346e60-2e42-49b3-ad42-347f02b8c6f0", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--caf8ae44-6e6b-495c-98ee-907654480167", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--0bb668bc-4927-41d9-bf9c-2050088cf804", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--f272cf9f-14a2-4c5c-8964-6056b4ed8be0", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.405Z", "id": "relationship--2c21b0f6-c4bd-4453-abfc-1d570496aa81", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--b1b5014f-79aa-4ae5-af04-448870bdabef", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--a260d9a1-018d-4906-9a80-6d594049a6e3", - "modified": "2021-01-06T18:30:56.395Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--2c13497d-76a1-4a9b-bebe-bb4618ca88af", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--e0e8f1e7-f8d9-4f88-bec9-8cdd2a420233", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--1a179a81-b211-4b8d-8197-51f175d1a1fc", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--d963d62b-27a4-48e2-a45b-a2cb7f0a78df", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--8642bfb0-cda1-4576-ad4f-3028a6e60101", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--2047a61a-0ecf-4bc8-a9e6-0dafc35cadf3", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.406Z", "id": "relationship--c1e104f3-b67e-4f11-abd6-9a3f7802123d", - "modified": "2021-01-06T18:30:56.396Z", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--77fc00ac-0163-406a-bbd3-bad73885fb50", - "modified": "2021-01-06T18:30:56.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--26b8a551-76ee-43f8-be73-613d019de596", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--0f304710-4e59-4ce1-85ce-b52abc3ff0ef", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--2e31153e-36a8-497b-8206-be82cf95438f", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--f86aedcf-2118-4f9a-8677-0c4cd8704250", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--cca5a298-4290-417d-b551-df940b0a7006", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--113d97b2-6721-4f6c-b58e-9998d113c824", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--5a5cf3e0-f7a4-4818-a646-b58e52f15443", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--bbae2f68-45d6-4dc6-a16b-e4aae9b36895", - "modified": "2021-01-06T18:30:56.397Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.407Z", "id": "relationship--9d8acc74-bee5-4f3e-8702-e176a629a7b4", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--2aaeb178-060b-4dff-b75c-073793835862", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--71fabdda-ce27-4bd1-891c-d878485d3d32", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--ecfdc133-0b10-4851-89ed-7d41ddf70cf7", - "modified": "2021-01-06T18:30:56.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--87507d90-d5a5-44eb-84e0-474022c12f06", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--9ec75ba6-2877-46fb-a19e-6ebe33f933a6", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--e9538e86-4bcd-443b-859b-3098c152b368", - "modified": "2021-01-06T18:30:56.398Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--85348f7a-6ff8-4584-bde3-07e36a672ee9", - "modified": "2021-01-06T18:30:56.399Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--99442ea0-18e0-49b8-b3b1-0155d4046175", - "modified": "2021-01-06T18:30:56.399Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--0f4e9811-fe11-45e1-a3fe-f898689d20c1", - "modified": "2021-01-06T18:30:56.399Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.408Z", "id": "relationship--b715dd1b-8897-4050-bd9e-dacdd54fb623", - "modified": "2021-01-06T18:30:56.399Z", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.401Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--8d4b93a2-1eb1-4811-8a23-c05d745d9b30", - "modified": "2021-01-06T18:30:56.401Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.401Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--ee8717b5-c71c-477b-b0f7-e7e37046dff7", - "modified": "2021-01-06T18:30:56.401Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:56.402Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", - "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:56.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.402Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.402Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.410Z", "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.411Z", "id": "relationship--b0621221-b5bf-4ad7-bd47-1ddda820959c", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.411Z", "id": "relationship--61a2ac9b-d469-4ad5-bc44-8989bc3759e3", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.411Z", "id": "relationship--e4bc1f7d-af80-4660-81bf-2438a3d7c52a", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.411Z", "id": "relationship--58c8ddc4-e265-4e75-812d-23a9f1fb3b3d", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.411Z", "id": "relationship--ca963566-ba0e-425f-9dfe-04a73e6ca7e0", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.412Z", "id": "relationship--29300980-a708-4d55-8b65-779aee7f8b95", - "modified": "2021-01-06T18:30:56.403Z", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.412Z", "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.404Z", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.412Z", "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.404Z", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.412Z", "id": "relationship--4f08b45f-84e4-4dbc-b89f-219fa052f4c1", - "modified": "2021-01-06T18:30:56.404Z", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.412Z", "id": "relationship--088ce763-0f0d-4598-b62a-8fa1ded10579", - "modified": "2021-01-06T18:30:56.404Z", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.405Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.413Z", "id": "relationship--5c775fce-6e6d-4b2d-bedf-121cfd37b328", - "modified": "2021-01-06T18:30:56.405Z", + "modified": "2021-01-13T01:52:45.413Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.405Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.414Z", "id": "relationship--dd57600b-3d60-4242-8231-8c632716e447", - "modified": "2021-01-06T18:30:56.405Z", + "modified": "2021-01-13T01:52:45.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.406Z", - "description": "Data backup", + "created": "2021-01-13T01:52:45.414Z", "id": "relationship--3580dc9b-6e72-471c-8813-5d625e3c16d9", - "modified": "2021-01-06T18:30:56.406Z", + "modified": "2021-01-13T01:52:45.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.407Z", - "description": "Data backup", + "created": "2021-01-13T01:52:45.415Z", "id": "relationship--f29c4014-fa4d-421d-aacc-5376e101a530", - "modified": "2021-01-06T18:30:56.407Z", + "modified": "2021-01-13T01:52:45.415Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.407Z", - "description": "System Monitoring", - "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:56.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:56.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.416Z", "id": "relationship--3c0c772b-dde2-4c12-ae42-3e2a10ee5e29", - "modified": "2021-01-06T18:30:56.408Z", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.416Z", "id": "relationship--74fc468b-ac23-4535-b5f0-d5e1f518965a", - "modified": "2021-01-06T18:30:56.408Z", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.416Z", "id": "relationship--3c47ae90-982f-4fe6-a231-fd43a7ee5fa0", - "modified": "2021-01-06T18:30:56.408Z", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.416Z", "id": "relationship--be38e7d0-9683-4d48-82f1-9bdb178f8ce5", - "modified": "2021-01-06T18:30:56.408Z", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.417Z", "id": "relationship--54d5f9ab-d3f0-4998-a268-fd1531362780", - "modified": "2021-01-06T18:30:56.410Z", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.417Z", "id": "relationship--0a82276f-653c-4cbd-b261-8a3f6cb4ec3e", - "modified": "2021-01-06T18:30:56.410Z", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.417Z", "id": "relationship--7104144d-e44b-44b1-9622-997a67a698c2", - "modified": "2021-01-06T18:30:56.410Z", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.417Z", "id": "relationship--4486956b-a534-4f02-b536-c50e5fcb8799", - "modified": "2021-01-06T18:30:56.410Z", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.418Z", "id": "relationship--967ee566-5c7a-4a4c-bf83-6bdcf4847e89", - "modified": "2021-01-06T18:30:56.410Z", + "modified": "2021-01-13T01:52:45.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.411Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.418Z", "id": "relationship--78fe9649-4a65-43d8-8974-7e609aa74963", - "modified": "2021-01-06T18:30:56.411Z", + "modified": "2021-01-13T01:52:45.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.411Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.419Z", "id": "relationship--caf1a193-8b12-4fa0-b55d-8525e5d04abb", - "modified": "2021-01-06T18:30:56.411Z", + "modified": "2021-01-13T01:52:45.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.412Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.419Z", "id": "relationship--21646ac1-0ef3-459c-8855-de1f9088d1e3", - "modified": "2021-01-06T18:30:56.412Z", + "modified": "2021-01-13T01:52:45.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.413Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.420Z", "id": "relationship--92433b50-a734-4b0e-bd07-668ee53efbe8", - "modified": "2021-01-06T18:30:56.413Z", + "modified": "2021-01-13T01:52:45.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.421Z", "id": "relationship--749fc3ce-f422-4c99-bbe6-9a0c3f5e2182", - "modified": "2021-01-06T18:30:56.414Z", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.421Z", "id": "relationship--7e3ef815-3838-4fe1-839d-8b64b9cb8b48", - "modified": "2021-01-06T18:30:56.414Z", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.421Z", "id": "relationship--d2c5f412-f5f2-4d54-a0b9-c12e64e646ce", - "modified": "2021-01-06T18:30:56.414Z", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.415Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.422Z", "id": "relationship--217a999d-c7f9-4c77-b179-9c6808968a6a", - "modified": "2021-01-06T18:30:56.415Z", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.415Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.422Z", "id": "relationship--ba946ed9-3776-4c98-9f67-e65a55e7afc6", - "modified": "2021-01-06T18:30:56.415Z", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.416Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.422Z", "id": "relationship--b56eed4c-75fb-4da6-990a-2345b75d985c", - "modified": "2021-01-06T18:30:56.416Z", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.416Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.422Z", "id": "relationship--4a703c03-399d-4399-9241-2794ca4e5a85", - "modified": "2021-01-06T18:30:56.416Z", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.417Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.423Z", "id": "relationship--070a00ab-faff-46d7-9480-32a5cd6e8e9d", - "modified": "2021-01-06T18:30:56.417Z", + "modified": "2021-01-13T01:52:45.423Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", - "id": "relationship--f783e732-6328-408b-9383-b7adcb9b89d7", - "modified": "2021-01-06T18:30:56.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.424Z", "id": "relationship--73591f90-4872-47c7-8990-f3cce3cc31ca", - "modified": "2021-01-06T18:30:56.419Z", + "modified": "2021-01-13T01:52:45.424Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.424Z", "id": "relationship--13be9ca3-0e64-427b-a9e4-a54016d9c76b", - "modified": "2021-01-06T18:30:56.419Z", + "modified": "2021-01-13T01:52:45.424Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.425Z", "id": "relationship--093fdc19-0556-47d0-9572-8ed2896bde75", - "modified": "2021-01-06T18:30:56.420Z", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.425Z", "id": "relationship--453d29d8-0c4a-4a19-a3f2-658ec7fb52c8", - "modified": "2021-01-06T18:30:56.420Z", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.425Z", "id": "relationship--713d7e08-655d-4ce5-a54b-7fac69816924", - "modified": "2021-01-06T18:30:56.420Z", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--4519e230-6236-4af3-b20c-09e0192190f9", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--29a56d4b-6f62-418c-8e19-fbe27c1ead91", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--cabf66b4-02df-4061-acef-041cffb37a76", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--89dfcd90-2678-4815-b0fe-96cd3a8a928f", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--10c4e330-4f26-4794-b9ad-7543135e4100", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--6c1d4ffc-ff47-4fc8-967a-fcffcdf8beaf", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--cdbb7e2e-4e1a-493b-8ea5-db537ef638ca", - "modified": "2021-01-06T18:30:56.421Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.422Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--95a623b1-cbd4-4e35-adbc-a8d405bb264f", - "modified": "2021-01-06T18:30:56.422Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.422Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.426Z", "id": "relationship--cf0ab28a-6c4b-4fc0-8897-586a0b399930", - "modified": "2021-01-06T18:30:56.422Z", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.427Z", "id": "relationship--baee1989-d350-4f12-b90a-5a3def450647", - "modified": "2021-01-06T18:30:56.423Z", + "modified": "2021-01-13T01:52:45.427Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.428Z", "id": "relationship--a59c11a4-91b4-49ef-b03b-79b8f06cc7dc", - "modified": "2021-01-06T18:30:56.423Z", + "modified": "2021-01-13T01:52:45.428Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.428Z", "id": "relationship--912e6c7d-7690-4f58-a1a7-b1747f0cbee8", - "modified": "2021-01-06T18:30:56.423Z", + "modified": "2021-01-13T01:52:45.428Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--09cee9f4-7e95-43bf-901f-6ce75126a0af", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--809807da-e8a6-4fa0-9d2c-87b55634cd31", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--7db1ffb2-fe29-4cca-921a-b6254b4c8227", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--babc2467-4763-4a1c-8047-23377550d2cc", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--ea0bf4b5-a220-4c81-8e14-0b1d3d9258b9", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--886b546c-1916-43cc-8e52-6568c2587ef5", - "modified": "2021-01-06T18:30:56.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.429Z", "id": "relationship--8e9bdcff-4a4f-40ed-bbbd-17eb9c5a96a0", - "modified": "2021-01-06T18:30:56.425Z", + "modified": "2021-01-13T01:52:45.429Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.429Z", "id": "relationship--1f970d68-a6ac-4ec4-9c25-911fa7db6be6", - "modified": "2021-01-06T18:30:56.425Z", + "modified": "2021-01-13T01:52:45.429Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.430Z", "id": "relationship--9156ed06-d04a-4d28-ab2c-21b73df2d6a6", - "modified": "2021-01-06T18:30:56.425Z", + "modified": "2021-01-13T01:52:45.430Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--569f4c94-3e3a-4926-961f-ab15d5ccc208", - "modified": "2021-01-06T18:30:56.426Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--24d71586-2bf4-4f59-b8aa-48d796b357ce", - "modified": "2021-01-06T18:30:56.426Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--a8de1bc7-9f2f-4dc7-8514-5337092b90ab", - "modified": "2021-01-06T18:30:56.426Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--0626028c-7969-4f79-aab9-b353aa2d023d", - "modified": "2021-01-06T18:30:56.426Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--a34c7caa-e683-4032-849d-bf458997e842", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--5a2e4c5f-ff70-4370-a6c4-d18dffa43101", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--06cc3392-6ea8-447f-b7a3-af1801148bce", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.431Z", "id": "relationship--61b74ed9-b1eb-472f-ad1b-f8105191d245", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--e051e1d2-4742-421d-bc61-2d7c5c97ee79", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--e3f38c82-29f4-4944-bda5-e8eafaa30de4", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--e4299005-1f3b-4b00-806b-11289f6126e1", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--3f180961-0274-498b-94a4-7fbcad5e09d1", - "modified": "2021-01-06T18:30:56.427Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--568897ee-b2ce-4ebc-8b68-ddbe8a031ecc", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--6687102d-7540-45f6-8fc8-8a785d439b7a", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--6926741a-5818-4f32-ab08-8c3317859e24", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--2d10bbde-4d8a-4892-b9ca-6b80b8be1936", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--2ca75c45-6725-4564-9710-04ab699e2192", - "modified": "2021-01-06T18:30:56.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.432Z", "id": "relationship--68b16108-a33b-4607-8b22-b48c60526031", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.433Z", "id": "relationship--0f4cd677-9594-4cce-a6e5-23c791fd986f", - "modified": "2021-01-06T18:30:56.428Z", + "modified": "2021-01-13T01:52:45.433Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--0c557e10-209f-47b4-9416-05e65376fff3", - "modified": "2021-01-06T18:30:56.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", - "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--14fd1c29-8975-4930-934c-c3c78d953c59", - "modified": "2021-01-06T18:30:56.429Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--6db50ff3-65ac-43d0-8024-8ff145f81247", - "modified": "2021-01-06T18:30:56.429Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--bd29622d-4705-44f6-b44b-3cfa4f8eec81", - "modified": "2021-01-06T18:30:56.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--f33e17d9-521e-42e8-b0f6-5b41e02ff9e1", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--f336af14-8c36-4b61-8dfb-78c0850311f2", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--265e2ea4-ac48-48f9-a36c-d4c4c3c8ef24", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--b25fd2a8-c903-4a86-bb42-47cec6f8ee8e", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--56dd699d-833b-4973-9a5f-865194025550", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--c8ba4fcb-a494-4a46-ae27-62dda1c05e13", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.434Z", "id": "relationship--1cc6a318-f470-4b32-a82e-754e02b22689", - "modified": "2021-01-06T18:30:56.430Z", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.431Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.435Z", "id": "relationship--f7fb0ee7-600e-4c0d-af6c-eb3be4bd9cd8", - "modified": "2021-01-06T18:30:56.431Z", + "modified": "2021-01-13T01:52:45.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.435Z", "id": "relationship--3260f1bb-7ffa-4064-9b94-445f3bc1ddf5", - "modified": "2021-01-06T18:30:56.432Z", + "modified": "2021-01-13T01:52:45.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.436Z", "id": "relationship--6530bb53-1a39-44c1-b470-6b6ce8ce7958", - "modified": "2021-01-06T18:30:56.432Z", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.436Z", "id": "relationship--cc7cbe59-6b2a-4e69-843f-cc3797738960", - "modified": "2021-01-06T18:30:56.432Z", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.436Z", "id": "relationship--a76f5f82-0f67-40e1-99b1-67e9ef44364a", - "modified": "2021-01-06T18:30:56.432Z", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.436Z", "id": "relationship--40f48352-2c66-42b5-8558-a8794717ba6c", - "modified": "2021-01-06T18:30:56.432Z", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.434Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.437Z", "id": "relationship--752f7f72-5e28-4f23-b114-3f63c5bdc196", - "modified": "2021-01-06T18:30:56.434Z", + "modified": "2021-01-13T01:52:45.437Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.438Z", "id": "relationship--716fbfd2-ea9b-4b3a-8132-8869cfd304f1", - "modified": "2021-01-06T18:30:56.435Z", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.438Z", "id": "relationship--d0fb566b-27f7-4d38-a882-e833521e8930", - "modified": "2021-01-06T18:30:56.435Z", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.438Z", "id": "relationship--108e49cd-d4a3-409c-b318-4afd080d1399", - "modified": "2021-01-06T18:30:56.435Z", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.439Z", "id": "relationship--f6916a4e-c7b9-4ce7-8acf-42c5372cc48f", - "modified": "2021-01-06T18:30:56.436Z", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.439Z", "id": "relationship--19745ae9-28e7-499c-ad46-82b70827271b", - "modified": "2021-01-06T18:30:56.436Z", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.439Z", "id": "relationship--2570874d-57bc-472c-abde-a2524ed3f44d", - "modified": "2021-01-06T18:30:56.436Z", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.437Z", - "description": "Access Control", - "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:56.437Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.437Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.440Z", "id": "relationship--9c3f58c9-6bd5-44ba-80c1-0521baea5db1", - "modified": "2021-01-06T18:30:56.437Z", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.440Z", "id": "relationship--35d41a48-ec1a-4291-9d7a-d8198ae5a53a", - "modified": "2021-01-06T18:30:56.438Z", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.440Z", "id": "relationship--4094a6ec-39c5-4846-939c-389ef950964c", - "modified": "2021-01-06T18:30:56.438Z", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.439Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.442Z", "id": "relationship--c56a2968-8b13-4e26-b64e-348046f7df5e", - "modified": "2021-01-06T18:30:56.439Z", + "modified": "2021-01-13T01:52:45.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.443Z", "id": "relationship--aaac06a7-2560-46ec-9205-898195167985", - "modified": "2021-01-06T18:30:56.440Z", + "modified": "2021-01-13T01:52:45.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.443Z", "id": "relationship--0f0ce8c6-c73d-48aa-b489-af4dc805081f", - "modified": "2021-01-06T18:30:56.440Z", + "modified": "2021-01-13T01:52:45.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:56.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.444Z", "id": "relationship--bddafb3e-28a1-406b-b9b1-054256f8b687", - "modified": "2021-01-06T18:30:56.441Z", + "modified": "2021-01-13T01:52:45.444Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.442Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.445Z", "id": "relationship--9bbfdd90-7cfb-4b72-a8ee-f5be35269d3a", - "modified": "2021-01-06T18:30:56.442Z", + "modified": "2021-01-13T01:52:45.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.445Z", "id": "relationship--138938a0-a416-4af5-b04a-5086fc26e354", - "modified": "2021-01-06T18:30:56.443Z", + "modified": "2021-01-13T01:52:45.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.446Z", "id": "relationship--29104165-7b6f-4cff-9a9d-c067d7863586", - "modified": "2021-01-06T18:30:56.443Z", + "modified": "2021-01-13T01:52:45.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.446Z", "id": "relationship--464f7e4a-a9b9-4188-bc5a-2c17b3ebbb7f", - "modified": "2021-01-06T18:30:56.443Z", + "modified": "2021-01-13T01:52:45.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.447Z", "id": "relationship--4d994123-ea72-4500-bd5e-b09f8f7bb0ac", - "modified": "2021-01-06T18:30:56.444Z", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.447Z", "id": "relationship--45e70888-e8be-44ab-9d75-6ba5cf5da365", - "modified": "2021-01-06T18:30:56.444Z", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.447Z", "id": "relationship--9fb5ab10-65b2-46ff-9ae3-ee794c645630", - "modified": "2021-01-06T18:30:56.444Z", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--5a68ebe2-2ddc-42ae-a5c3-ec160976ed9a", - "modified": "2021-01-06T18:30:56.445Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:56.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--4df225f6-da31-4541-b375-9af7151ccf4a", - "modified": "2021-01-06T18:30:56.445Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--85d63979-4385-47cf-93f2-270190c40942", - "modified": "2021-01-06T18:30:56.445Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--365ecb2f-b3bd-44c9-9832-4107388936c8", - "modified": "2021-01-06T18:30:56.445Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--bded4057-1785-48ee-b247-29ec8a398b4e", - "modified": "2021-01-06T18:30:56.446Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.448Z", "id": "relationship--2a9f714f-adbf-4a35-a1c7-d135633626af", - "modified": "2021-01-06T18:30:56.446Z", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.449Z", "id": "relationship--ffe1aea1-5cc4-442a-b2ac-9688a788b2a1", - "modified": "2021-01-06T18:30:56.446Z", + "modified": "2021-01-13T01:52:45.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.449Z", "id": "relationship--b16a3731-ace3-428d-a601-8d93b4813d78", - "modified": "2021-01-06T18:30:56.446Z", + "modified": "2021-01-13T01:52:45.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:56.446Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.447Z", - "description": "Off-system Storage", - "id": "relationship--2f8440ce-f4da-41ba-a5d6-37992543a99c", - "modified": "2021-01-06T18:30:56.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.447Z", - "description": "Off-system Storage", - "id": "relationship--d9008ebe-1d09-4084-9e79-7516bd129de9", - "modified": "2021-01-06T18:30:56.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.448Z", - "description": "System Monitoring", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:56.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.448Z", - "description": "System Monitoring", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.451Z", "id": "relationship--ba525261-bcf1-40fd-9c04-b410d660a841", - "modified": "2021-01-06T18:30:56.449Z", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.451Z", "id": "relationship--dd73362f-ad3f-4d65-9b5f-f0641425182b", - "modified": "2021-01-06T18:30:56.449Z", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.451Z", "id": "relationship--25c1ad95-cded-4226-aa0c-c01958e7f3f7", - "modified": "2021-01-06T18:30:56.449Z", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.451Z", "id": "relationship--2523a7fe-3231-4bf7-9a43-1ad9bc79deaa", - "modified": "2021-01-06T18:30:56.449Z", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.452Z", "id": "relationship--f3ca5cc9-4fe5-4178-b5a7-aa3c8842d878", - "modified": "2021-01-06T18:30:56.450Z", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.452Z", "id": "relationship--a2bf768d-e2b3-435d-9cc5-5d5b4dcde3dc", - "modified": "2021-01-06T18:30:56.450Z", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.452Z", "id": "relationship--5e647685-572f-4a33-a01b-3da4eac86e0b", - "modified": "2021-01-06T18:30:56.450Z", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.452Z", "id": "relationship--750a85b2-fa9e-45e6-b473-2b1633a06640", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.452Z", "id": "relationship--d2c87eb7-a5b6-4f95-bf7f-bd1c85bf6f17", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.453Z", "id": "relationship--bf9a4e49-325c-48fd-8023-cbf82b4a4621", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.453Z", "id": "relationship--b3c51977-f969-47d8-957a-26584146293e", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.453Z", "id": "relationship--c1732566-eb73-4068-a16f-1b91136fcce0", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.453Z", "id": "relationship--7fbb9020-2192-4125-8d9b-d47164b30239", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.453Z", "id": "relationship--923dd04a-7258-4468-9eb9-5db7e1c9c484", - "modified": "2021-01-06T18:30:56.451Z", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:56.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:56.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.454Z", "id": "relationship--5208563a-7fa3-422e-8232-d6b49c765960", - "modified": "2021-01-06T18:30:56.453Z", + "modified": "2021-01-13T01:52:45.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.454Z", "id": "relationship--543d7d3b-9602-4dbb-9ecf-694db81cbd9e", - "modified": "2021-01-06T18:30:56.453Z", + "modified": "2021-01-13T01:52:45.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.454Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.455Z", "id": "relationship--a3a55799-4432-44ff-9053-cd8df74cf678", - "modified": "2021-01-06T18:30:56.454Z", + "modified": "2021-01-13T01:52:45.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.455Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.455Z", "id": "relationship--ad0e963d-a61e-4790-9d67-e36eca5f50d5", - "modified": "2021-01-06T18:30:56.455Z", + "modified": "2021-01-13T01:52:45.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.455Z", - "description": "System Monitoring", - "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:56.455Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:56.456Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.456Z", "id": "relationship--590bd43a-3db2-4b26-be2f-a25f7d34870f", - "modified": "2021-01-06T18:30:56.456Z", + "modified": "2021-01-13T01:52:45.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.456Z", "id": "relationship--35d6295f-5a8e-4590-9346-54edaa61a5c3", - "modified": "2021-01-06T18:30:56.456Z", + "modified": "2021-01-13T01:52:45.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.457Z", "id": "relationship--dc159790-3b04-4293-b5cf-f3a76e44a25f", - "modified": "2021-01-06T18:30:56.456Z", + "modified": "2021-01-13T01:52:45.457Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.457Z", "id": "relationship--adf1fa73-c554-4a26-a63b-81ac05375d7b", - "modified": "2021-01-06T18:30:56.456Z", + "modified": "2021-01-13T01:52:45.457Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--19b1f7c3-adef-4af4-a5d4-d19eb78e3fbd", - "modified": "2021-01-06T18:30:56.457Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--bcf75064-479a-41aa-a781-671dc4b4adfe", - "modified": "2021-01-06T18:30:56.457Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--0052f531-9485-47d1-bddf-3efe40e1bf43", - "modified": "2021-01-06T18:30:56.457Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--0bb347b3-c9e1-451d-8377-964053239c46", - "modified": "2021-01-06T18:30:56.457Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--348045f1-8b9e-40e2-8701-97548d758065", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--da57f819-9921-419c-a3c6-ea57f38e16d7", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--253fee3b-d6cd-40e5-b0b1-8bf64f5b2c54", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--230babce-d95d-468f-be23-3bacefe6235f", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--dba98cef-3b0c-4ccd-9947-62748f71b79c", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.458Z", "id": "relationship--d041668f-1104-4e71-b514-ab473b4e7719", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--16229662-020c-476f-926f-efcbb4ba24e1", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--fc283048-4a96-42e4-8af1-de3542186416", - "modified": "2021-01-06T18:30:56.458Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--59f63cfc-00b5-42ed-860f-1d6182693bf9", - "modified": "2021-01-06T18:30:56.459Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--fdfb746b-37f4-4ded-9148-60df33066979", - "modified": "2021-01-06T18:30:56.459Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--a0d23741-2d58-4b75-b464-3ca116df28a8", - "modified": "2021-01-06T18:30:56.459Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.459Z", "id": "relationship--c6b97d22-acf9-44c8-816c-03d09ebefa62", - "modified": "2021-01-06T18:30:56.459Z", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.460Z", "id": "relationship--74e0ad2f-8e37-4a13-9985-17bbf71f1edb", - "modified": "2021-01-06T18:30:56.461Z", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.460Z", "id": "relationship--6eb85146-92bc-4500-9a2f-543745809b14", - "modified": "2021-01-06T18:30:56.461Z", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.460Z", "id": "relationship--f7be8368-a511-40cf-8c38-6a864d73bf09", - "modified": "2021-01-06T18:30:56.461Z", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.462Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.460Z", "id": "relationship--b4ece322-92ba-41f0-bbdd-a18921a57328", - "modified": "2021-01-06T18:30:56.462Z", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:56.463Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--81d97f1f-556b-438c-b580-371db457ce8a", - "modified": "2021-01-06T18:30:56.463Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--a9a4bc11-aaf2-4b9a-bd7d-868a37fc652b", - "modified": "2021-01-06T18:30:56.463Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--2613da88-0ef7-4661-aebc-5dec9d776061", - "modified": "2021-01-06T18:30:56.463Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--b60dd8bc-7967-48e9-a8e6-c9af54068389", - "modified": "2021-01-06T18:30:56.463Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--f9a7234c-0492-4b8f-ab58-899df120ab08", - "modified": "2021-01-06T18:30:56.463Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--4b1c19a8-cb0c-426f-86ae-9a50a36689dd", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--3c0e40c0-223b-4323-a49f-d8e35bb15638", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--2b4513dc-7f28-41e9-a09d-536e107909a4", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.462Z", "id": "relationship--c856f016-9bfa-4b0e-a6d3-5a709c07ad33", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.463Z", "id": "relationship--d72a1918-7e4a-4525-9c51-4e45824c6ae2", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.463Z", "id": "relationship--4edab164-70bb-48d3-951c-becfa7bfb6fa", - "modified": "2021-01-06T18:30:56.464Z", + "modified": "2021-01-13T01:52:45.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.466Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--39489750-7b89-4ea1-89c3-a80c5f233e15", - "modified": "2021-01-06T18:30:56.466Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--771dceb3-3310-49e7-902f-31d19534cdd9", - "modified": "2021-01-06T18:30:56.467Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--3d1dd40b-61a7-42f6-8838-a5e752db27c9", - "modified": "2021-01-06T18:30:56.467Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--43fe02ea-2b1f-40c6-8b35-dbbd23056628", - "modified": "2021-01-06T18:30:56.467Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--29d9ae53-220c-498e-a7ac-0abbe59e1fa0", - "modified": "2021-01-06T18:30:56.467Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--1c453bd0-a306-4ae5-afb4-e4f4b28507a8", - "modified": "2021-01-06T18:30:56.468Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--7f36acc3-b52f-4b91-b7a3-81677affcda0", - "modified": "2021-01-06T18:30:56.468Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.464Z", "id": "relationship--bff8757c-65cc-47d3-98f4-c77d4855506a", - "modified": "2021-01-06T18:30:56.468Z", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--f0488a8f-861d-4351-af4c-51f1388db73e", - "modified": "2021-01-06T18:30:56.468Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--9a05438e-8e5d-4356-849c-833dff2a4f0d", - "modified": "2021-01-06T18:30:56.468Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--262fe55d-4296-4f29-8566-e72e58fc4bc8", - "modified": "2021-01-06T18:30:56.469Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--78bc69fd-8291-4024-a0ac-56a39cac78e5", - "modified": "2021-01-06T18:30:56.469Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--b9953c27-d82e-4aea-a7bd-ebcf2dfab8df", - "modified": "2021-01-06T18:30:56.469Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--4a0d952d-3563-413c-a8a9-f5a337905fb7", - "modified": "2021-01-06T18:30:56.469Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.465Z", "id": "relationship--15f62c7c-0764-4e21-a655-2fd38ae80f32", - "modified": "2021-01-06T18:30:56.469Z", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", - "id": "relationship--d6dfc9a8-cb31-4fd2-bf7c-9c14b8707b94", - "modified": "2021-01-06T18:30:56.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", - "id": "relationship--928dc754-a444-418d-ab2d-b57872506a9d", - "modified": "2021-01-06T18:30:56.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.466Z", "id": "relationship--4f6b460a-b751-477e-b9f8-2061928c73cc", - "modified": "2021-01-06T18:30:56.471Z", + "modified": "2021-01-13T01:52:45.466Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--16b337da-055d-4798-82e1-7a23b395097e", - "modified": "2021-01-06T18:30:56.472Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--637a12a6-25ce-445b-afd3-07734403aee8", - "modified": "2021-01-06T18:30:56.472Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.467Z", "id": "relationship--9514e2bc-d8c3-4e07-87ca-42a39bca2a4c", - "modified": "2021-01-06T18:30:56.472Z", + "modified": "2021-01-13T01:52:45.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.467Z", "id": "relationship--b828d10d-9dab-47a9-94ca-2e32369d5c12", - "modified": "2021-01-06T18:30:56.472Z", + "modified": "2021-01-13T01:52:45.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.468Z", "id": "relationship--d7d01c22-88af-4470-a05f-60d271ff6de6", - "modified": "2021-01-06T18:30:56.472Z", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.468Z", "id": "relationship--b811ce68-4bb3-4509-8129-777bc0d762c0", - "modified": "2021-01-06T18:30:56.473Z", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.468Z", "id": "relationship--b594d686-e1a8-4fc9-a96a-6f6414f92901", - "modified": "2021-01-06T18:30:56.473Z", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.468Z", "id": "relationship--7bb4c143-c83e-488e-8fb6-571ba12e0a4a", - "modified": "2021-01-06T18:30:56.473Z", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.468Z", "id": "relationship--634f8936-be00-4dae-864d-70cfc4f8b3c5", - "modified": "2021-01-06T18:30:56.473Z", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f45e1cb0-b478-4086-88fa-3410324dbd7c", - "modified": "2021-01-06T18:30:56.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0bf3870a-c597-4bd0-aa22-305bc7af56bf", - "modified": "2021-01-06T18:30:56.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.469Z", "id": "relationship--165b79ab-f0c1-4819-9491-6a2e2d30a6b4", - "modified": "2021-01-06T18:30:56.474Z", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:56.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fa667e8a-500b-4fb8-8732-4ac2ddbafd4d", - "modified": "2021-01-06T18:30:56.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.469Z", "id": "relationship--25b26a30-3301-4568-8877-b4929c4e0d8c", - "modified": "2021-01-06T18:30:56.474Z", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.469Z", "id": "relationship--ba114fe9-1556-41d3-96f9-8f6c53871805", - "modified": "2021-01-06T18:30:56.475Z", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.469Z", "id": "relationship--e1260cbc-ed12-45d6-9e1e-6215fb51764b", - "modified": "2021-01-06T18:30:56.475Z", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.470Z", "id": "relationship--813c624a-65c4-47e5-a9fd-be3c558ba272", - "modified": "2021-01-06T18:30:56.475Z", + "modified": "2021-01-13T01:52:45.470Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.476Z", - "description": "Access Control", - "id": "relationship--165b25ce-067c-4ee2-a917-c99ee6a1d2a3", - "modified": "2021-01-06T18:30:56.476Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.476Z", - "description": "Access Control", - "id": "relationship--41ab505e-dfaa-4385-a894-2c488121dbe5", - "modified": "2021-01-06T18:30:56.476Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--0ca3207c-dba3-4947-9ce4-d0bfd8b39370", - "modified": "2021-01-06T18:30:56.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--ac906b4a-a5c4-4a9e-ab8d-0dc3e2fd93f0", - "modified": "2021-01-06T18:30:56.477Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--0e04c7f1-ae69-436e-b627-f87972abd204", - "modified": "2021-01-06T18:30:56.477Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--2b88f4ce-2cb1-450e-aaf2-f88a87a3691a", - "modified": "2021-01-06T18:30:56.477Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--9c230a8d-f7b5-4c16-b8af-32c4645e9aa3", - "modified": "2021-01-06T18:30:56.477Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--67d7e1c0-c8f4-44ae-8aff-711c39d64166", - "modified": "2021-01-06T18:30:56.477Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--e71820a4-8b46-4e81-b68d-6683c917efd4", - "modified": "2021-01-06T18:30:56.478Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--d2865066-1f0d-4988-aaf3-9b0974481e86", - "modified": "2021-01-06T18:30:56.478Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.471Z", "id": "relationship--1521ceb7-8f0d-4a97-bfe3-52cd9ca5b7f7", - "modified": "2021-01-06T18:30:56.478Z", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", + "created": "2021-01-13T01:52:45.472Z", "id": "relationship--8a87421e-9483-41fc-a43e-10a070e1776d", - "modified": "2021-01-06T18:30:56.478Z", + "modified": "2021-01-13T01:52:45.472Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--c25474fa-c040-4c0a-9e59-57e426a006f1", - "modified": "2021-01-06T18:30:56.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--995319d4-6b90-4cd3-bf7e-6accf162576d", - "modified": "2021-01-06T18:30:56.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--7c814acc-ffc7-49b9-bd40-0ce26ee85f0f", - "modified": "2021-01-06T18:30:56.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c93759b6-67ce-4547-b704-3e3fad5a18e7", - "modified": "2021-01-06T18:30:56.479Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62138324-415c-4c9c-b1c3-4dc563bcabb9", - "modified": "2021-01-06T18:30:56.479Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--35d65108-1646-40f2-a834-134738cc5b34", - "modified": "2021-01-06T18:30:56.479Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:56.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:56.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:56.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.473Z", "id": "relationship--b6f1ed1b-4973-4bfe-87b0-cff48ced0d98", - "modified": "2021-01-06T18:30:56.480Z", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.473Z", "id": "relationship--6ac5679f-53e4-4a2f-ad9c-ff5d973cf9bf", - "modified": "2021-01-06T18:30:56.480Z", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.473Z", "id": "relationship--bba4dc73-5c01-459b-ac8c-e5006ca96202", - "modified": "2021-01-06T18:30:56.480Z", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.481Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.474Z", "id": "relationship--e4542e5a-e3cc-4cfb-bcdb-27ac6dcef253", - "modified": "2021-01-06T18:30:56.481Z", + "modified": "2021-01-13T01:52:45.474Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.482Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.474Z", "id": "relationship--c25e4e0f-fb24-44f9-848d-4020d4c09e29", - "modified": "2021-01-06T18:30:56.482Z", + "modified": "2021-01-13T01:52:45.474Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.482Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:52:45.475Z", "id": "relationship--f3f0fcb3-6196-48cf-bf2c-293178fa9866", - "modified": "2021-01-06T18:30:56.482Z", + "modified": "2021-01-13T01:52:45.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:56.483Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:56.483Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:56.483Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--4582e133-2aa5-44b5-9311-1b860ebcdfdd", - "modified": "2021-01-06T18:30:56.484Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--f9e5d6aa-595c-4178-af68-87904f541e95", - "modified": "2021-01-06T18:30:56.484Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--b7cfb689-2a29-468f-929b-0c150ebd4ed5", - "modified": "2021-01-06T18:30:56.484Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--3ae7d028-56f0-404f-92cc-f7ccfe2fbb6b", - "modified": "2021-01-06T18:30:56.484Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.485Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--e733ecd3-782e-41ef-a416-77b65cc04b21", - "modified": "2021-01-06T18:30:56.485Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.485Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.476Z", "id": "relationship--f6812fab-9a2f-4698-af49-2bcbc38618b1", - "modified": "2021-01-06T18:30:56.485Z", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.486Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.477Z", "id": "relationship--b6a04f93-5973-4d92-bf75-be3601e24421", - "modified": "2021-01-06T18:30:56.486Z", + "modified": "2021-01-13T01:52:45.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.487Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.479Z", "id": "relationship--f08ab16a-345a-4a0a-9a1a-8fec2f6f3eaf", - "modified": "2021-01-06T18:30:56.487Z", + "modified": "2021-01-13T01:52:45.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.487Z", - "description": "System Monitoring, malware", - "id": "relationship--d19c0cb1-8365-4207-a0c2-10fea0da7ecb", - "modified": "2021-01-06T18:30:56.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.488Z", - "description": "Wireless access", - "id": "relationship--8dafdaae-0806-4273-8d74-c65c6b95a5a7", - "modified": "2021-01-06T18:30:56.488Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.489Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.482Z", "id": "relationship--bd9ab687-4130-492e-b4e9-01ed7b42464e", - "modified": "2021-01-06T18:30:56.489Z", + "modified": "2021-01-13T01:52:45.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.490Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--73b5fba1-38ef-4d20-a908-ba9372e7ce04", - "modified": "2021-01-06T18:30:56.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.490Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:52:45.482Z", "id": "relationship--2c6f7c82-c27e-4d5b-b257-42e78d8496c9", - "modified": "2021-01-06T18:30:56.490Z", + "modified": "2021-01-13T01:52:45.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.483Z", "id": "relationship--66e10b78-4b93-41c1-bee2-976b4b68520f", - "modified": "2021-01-06T18:30:56.491Z", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.483Z", "id": "relationship--aac556ed-8dcf-41d2-9832-b8eacf9babc7", - "modified": "2021-01-06T18:30:56.491Z", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.483Z", "id": "relationship--1812650e-4c8d-4656-8614-4254f484015d", - "modified": "2021-01-06T18:30:56.491Z", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.483Z", "id": "relationship--d3ad2767-7956-4cc5-83f7-874aad722d62", - "modified": "2021-01-06T18:30:56.491Z", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.492Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.483Z", "id": "relationship--21c42020-da6b-45c0-95c6-d6b33dac0c0e", - "modified": "2021-01-06T18:30:56.492Z", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.484Z", "id": "relationship--5c1279f7-1329-4b49-8dcb-213c8f81693d", - "modified": "2021-01-06T18:30:56.493Z", + "modified": "2021-01-13T01:52:45.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:56.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--0d212d1d-2d64-41f2-bf43-e91b04838a3b", - "modified": "2021-01-06T18:30:56.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.494Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.485Z", "id": "relationship--40cc1719-dcf3-4656-817f-2c721dbab985", - "modified": "2021-01-06T18:30:56.494Z", + "modified": "2021-01-13T01:52:45.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.494Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", - "modified": "2021-01-06T18:30:56.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8928b18c-6671-4f79-af2f-f513e98639e7", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ef034d9f-5b42-45f9-b089-5b5fc40d42f5", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e219e8c0-8453-4b11-812b-fb48ebd434b0", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b2a73c79-fd42-4393-bc28-be742054dd13", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--df0dfd1d-3d54-4d9b-af7a-116bcbfdfea9", - "modified": "2021-01-06T18:30:56.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3e5b904e-7530-4e59-b876-b93ecaa62988", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eba90e10-e74e-4506-b731-ca8fc0382855", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3e7a3834-3c23-4398-bb06-476b81752075", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5ced7dfa-fb2a-4578-9d81-6354c11fb287", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--04a72d0b-d7c4-4d79-bd86-523aa37b96a6", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e06d35ef-480b-4f3b-b634-6d87bfe3b24a", - "modified": "2021-01-06T18:30:56.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.497Z", - "description": "Vulnerability Scanning", - "id": "relationship--71cb480b-57ac-49eb-afd1-dd65a5487973", - "modified": "2021-01-06T18:30:56.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.498Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--130d44ae-5874-48a3-9dc8-2389a24c5c9e", - "modified": "2021-01-06T18:30:56.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.499Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:56.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.499Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--54673fac-37e2-4748-b8fe-db66f8542a6b", - "modified": "2021-01-06T18:30:56.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.545Z", - "description": "Vulnerability Scanning", - "id": "relationship--db7ce1a9-3718-4601-b482-087885d5ea6d", - "modified": "2021-01-06T18:30:56.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.546Z", - "description": "Vulnerability Scanning", - "id": "relationship--fbb47f08-2127-4aae-8b94-8d9f0f2ff3d3", - "modified": "2021-01-06T18:30:56.546Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--4b3fd220-5c8d-418c-9feb-2b5ca20d1c68", - "modified": "2021-01-06T18:30:56.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--5924ad2a-f6bd-44b4-8d1d-fd50c81e8b86", - "modified": "2021-01-06T18:30:56.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--34b91f18-8698-44a2-a617-f42ee9610c7e", - "modified": "2021-01-06T18:30:56.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--40cac653-54f1-447d-bc23-d647c1bacb82", - "modified": "2021-01-06T18:30:56.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--db0fb040-072e-435b-9c54-107e78051974", - "modified": "2021-01-06T18:30:56.548Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f31c1ed5-d255-4007-84e7-459091de3be4", - "modified": "2021-01-06T18:30:56.548Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7e06e2b4-feb1-43fa-abec-e012b0c8d0c8", - "modified": "2021-01-06T18:30:56.548Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4870d7aa-6f0e-433d-bb56-7ed0369af4d5", - "modified": "2021-01-06T18:30:56.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2706dee4-800c-461e-be58-38e0ddb633a0", - "modified": "2021-01-06T18:30:56.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c3e703a5-0ea1-488c-8e56-312856cdd64c", - "modified": "2021-01-06T18:30:56.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", - "modified": "2021-01-06T18:30:56.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--e33aa098-8c63-4af3-9784-92216b745cf1", - "modified": "2021-01-06T18:30:56.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--fef019d0-fda3-498f-b020-07bcedcfb70c", - "modified": "2021-01-06T18:30:56.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--a07e9554-9a9a-4948-a647-b76f17fcb7d8", - "modified": "2021-01-06T18:30:56.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--46494d26-7be5-4600-afac-c199bf220e67", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--92574ca4-a5b9-475f-be7a-42b0c5ec0788", - "modified": "2021-01-06T18:30:56.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.554Z", - "description": "System Monitoring, malware", - "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", - "modified": "2021-01-06T18:30:56.554Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.554Z", - "description": "System Monitoring, malware", - "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", - "modified": "2021-01-06T18:30:56.554Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.555Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--20be92ca-88c6-419b-9727-b4c85303a2b9", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--50c4ed6a-0278-406b-8a27-f4f45fc8506d", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--72deedcb-dd22-4539-bbb8-97dc788a1d19", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:56.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e359ef99-5e72-49c4-b998-d1c38f74fc22", - "modified": "2021-01-06T18:30:56.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", - "modified": "2021-01-06T18:30:56.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d46ec5a8-dd1f-471c-a049-5d465a925bec", - "modified": "2021-01-06T18:30:56.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--384a41ac-87f3-4a0a-84ba-93d5d32a54f3", - "modified": "2021-01-06T18:30:56.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e4e366a-3cd7-4475-89b2-db85231543cf", - "modified": "2021-01-06T18:30:56.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.559Z", - "description": "Vulnerability Scanning", - "id": "relationship--357796f0-0106-42d0-8851-94e7daa4a250", - "modified": "2021-01-06T18:30:56.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.560Z", - "description": "System Monitoring, malware", - "id": "relationship--529de5e8-53e6-40fb-85fe-0689f162319d", - "modified": "2021-01-06T18:30:56.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.560Z", - "description": "System Monitoring, malware", - "id": "relationship--0b192afd-683a-4148-b475-99f461e8bce5", - "modified": "2021-01-06T18:30:56.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.561Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e3d84ab-9028-4a50-9295-ae0aafdbbb55", - "modified": "2021-01-06T18:30:56.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.561Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09457fcc-9d34-4d29-b332-c02785f13892", - "modified": "2021-01-06T18:30:56.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.562Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8fed2646-ebbb-4569-bbe2-c68a57eaf614", - "modified": "2021-01-06T18:30:56.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.563Z", - "description": "Vulnerability Scanning", - "id": "relationship--107aa2f4-3adb-40a9-9b8a-d58120076675", - "modified": "2021-01-06T18:30:56.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.564Z", - "description": "System Monitoring, malware", - "id": "relationship--16d65fa4-a2c8-450e-83c9-144a81364593", - "modified": "2021-01-06T18:30:56.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.564Z", - "description": "System Monitoring, malware", - "id": "relationship--cc15a9b8-e9e7-4bc4-8f79-d1e005cb9958", - "modified": "2021-01-06T18:30:56.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.565Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--79f90c80-2e8c-416f-bfed-4f4f13383d0a", - "modified": "2021-01-06T18:30:56.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.565Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fc241480-8869-40b0-975e-fd724ae56560", - "modified": "2021-01-06T18:30:56.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.566Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--16d63ab0-f60c-427e-a967-23a1eb20685e", - "modified": "2021-01-06T18:30:56.566Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.567Z", - "description": "Vulnerability Scanning", - "id": "relationship--b0906a53-9969-42e9-8f34-bc7cda596df3", - "modified": "2021-01-06T18:30:56.567Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.569Z", - "description": "System Monitoring, malware", - "id": "relationship--edf5c6aa-acda-460b-a456-b8d08ab18ed4", - "modified": "2021-01-06T18:30:56.569Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.569Z", - "description": "System Monitoring, malware", - "id": "relationship--03d9f196-9cb4-4f0a-ac7d-805620caf842", - "modified": "2021-01-06T18:30:56.569Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--87453f4a-48d3-4fed-9aad-245115266f96", - "modified": "2021-01-06T18:30:56.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--07a9ac50-7a50-49c6-a9d8-7e8e9f77fae6", - "modified": "2021-01-06T18:30:56.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--be83bf38-e9f3-4b88-b786-73384190fa12", - "modified": "2021-01-06T18:30:56.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.572Z", - "description": "Vulnerability Scanning", - "id": "relationship--ac1ea655-2437-40d7-bd29-d4a82934cce9", - "modified": "2021-01-06T18:30:56.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.572Z", - "description": "Vulnerability Scanning", - "id": "relationship--ce4aea19-3ac2-40fd-bd0b-2114a306f716", - "modified": "2021-01-06T18:30:56.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.573Z", - "description": "System Monitoring", - "id": "relationship--1a7b1f47-eae2-4a92-9993-14b416c826b9", - "modified": "2021-01-06T18:30:56.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.573Z", - "description": "System Monitoring", - "id": "relationship--35fe996d-18ee-400c-b04e-b1f809ef92f8", - "modified": "2021-01-06T18:30:56.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.574Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da9a27f0-f2a7-4dd7-beec-63454c161935", - "modified": "2021-01-06T18:30:56.574Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c8f3448b-06cd-4ed5-a261-04f9c0f3a23c", - "modified": "2021-01-06T18:30:56.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b2fa051d-60b7-4ade-be6b-b4a70f02b77b", - "modified": "2021-01-06T18:30:56.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a9845af0-72ad-43c4-8a72-935ce733e0be", - "modified": "2021-01-06T18:30:56.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ca98eb49-69cd-4c6b-9824-04d37b9dff76", - "modified": "2021-01-06T18:30:56.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e307bd9-05e6-461f-9b78-f3ff7c216be9", - "modified": "2021-01-06T18:30:56.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.576Z", - "description": "Protect credential access", - "id": "relationship--0fb60404-9453-4f86-a882-de2a4e79e203", - "modified": "2021-01-06T18:30:56.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.578Z", - "description": "Vulnerability Scanning", - "id": "relationship--82d06315-c7b3-4b75-9f4c-76d4fa66a08a", - "modified": "2021-01-06T18:30:56.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.579Z", - "description": "System Monitoring", - "id": "relationship--b65ebc45-6d0b-48fe-bd38-654fac4924b2", - "modified": "2021-01-06T18:30:56.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--bc95d187-2002-4668-89f0-f343d8afc1f0", - "modified": "2021-01-06T18:30:56.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b1c6f677-e100-47e1-9da7-bd5927c45ed1", - "modified": "2021-01-06T18:30:56.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--755003d1-fb4d-42c2-b3d6-f0a0f35d7145", - "modified": "2021-01-06T18:30:56.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.581Z", - "description": "Vulnerability Scanning", - "id": "relationship--3e3faf3a-1aa0-4de3-a90f-8f0dfe78902f", - "modified": "2021-01-06T18:30:56.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.581Z", - "description": "Vulnerability Scanning", - "id": "relationship--1151a110-6d5d-4562-b6b8-45882628c84a", - "modified": "2021-01-06T18:30:56.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.582Z", - "description": "System Monitoring, malware", - "id": "relationship--56497b38-8e8b-4fd2-a46c-cae75f55519b", - "modified": "2021-01-06T18:30:56.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.582Z", - "description": "System Monitoring, malware", - "id": "relationship--9ff4741a-e665-4dba-a5e7-2b09e2023261", - "modified": "2021-01-06T18:30:56.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.583Z", - "description": "System Monitoring, malware", - "id": "relationship--3b153895-1c78-4f64-b214-2baf4b5e23b3", - "modified": "2021-01-06T18:30:56.583Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.583Z", - "description": "System Monitoring, malware", - "id": "relationship--566ef983-d932-4011-97c6-ebf6b2f3861d", - "modified": "2021-01-06T18:30:56.583Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.584Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9dd189c7-1481-4b22-9f17-5d55f1035fe9", - "modified": "2021-01-06T18:30:56.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--32f2f8af-b0ac-4c68-a33d-39cfcb38a564", - "modified": "2021-01-06T18:30:56.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ec7e7310-6d59-4614-b0e7-1eb5414de739", - "modified": "2021-01-06T18:30:56.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0792d056-b33f-4267-856b-71c77ac84559", - "modified": "2021-01-06T18:30:56.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d167408c-46b5-4737-bfc1-de81c5fece29", - "modified": "2021-01-06T18:30:56.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.587Z", - "description": "Vulnerability Scanning", - "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:56.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.588Z", - "description": "System Monitoring", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.588Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0a1c1f63-ead8-43b6-9709-557a74e8170f", - "modified": "2021-01-06T18:30:56.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:56.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", - "modified": "2021-01-06T18:30:56.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.590Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f7823657-c3fe-45f9-b6bf-20c918ccd5ba", - "modified": "2021-01-06T18:30:56.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.590Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--62a70342-8ba5-4798-98cb-1e9fe0316dd9", - "modified": "2021-01-06T18:30:56.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--b7b3a21f-0e81-449b-a39a-de5e4e9b85f1", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3fdc475d-4a3c-439d-9195-7dad9d82c70b", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7fedce4e-5030-488d-9e7d-8ac40a34f98a", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--be8cb30b-c7cd-4728-9549-15fe8b7b13ea", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--6f57e407-a57e-4ebb-948e-2a089f147ae9", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0f264e7b-e188-42c3-9ed9-11081e3269ff", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--44c0061f-cf28-43c6-a89a-3cf801f23024", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a680271d-6c69-41be-82d6-7ceed6ada01e", - "modified": "2021-01-06T18:30:56.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d008227c-6b9f-4ad0-8250-63dbf8450dc4", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--83303163-97c2-4025-9062-e4719cb5d168", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--598f54bf-7bee-424c-a3f1-2b87e00eaa4d", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--dbedc551-2dc1-4d7d-a902-5b80db9a30f3", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c0334ff-505b-4738-83b1-91b7541f8a2d", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--01f687f7-5314-4016-9148-831f92ce792d", - "modified": "2021-01-06T18:30:56.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--755f36d8-dfc7-4979-8560-0bba32d13759", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a0ed3af8-0654-4a93-a415-e077b299da91", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--8928b18c-6671-4f79-af2f-f513e98639e7", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--ef034d9f-5b42-45f9-b089-5b5fc40d42f5", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f560021d-d762-4348-8557-047c17c3a329", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--e219e8c0-8453-4b11-812b-fb48ebd434b0", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--fc181e30-ab7f-4aae-9555-484af30c2e39", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--b2a73c79-fd42-4393-bc28-be742054dd13", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--31613717-8675-4520-9188-11807555b387", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--df0dfd1d-3d54-4d9b-af7a-116bcbfdfea9", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7a4bd192-61b3-4197-abb0-5541490c519f", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--eba90e10-e74e-4506-b731-ca8fc0382855", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--019deaf1-f88c-4e31-b0a0-fe9c9b1fc71e", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--3e7a3834-3c23-4398-bb06-476b81752075", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.594Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a027ca98-811a-443b-8f0c-fd965bd6aa53", - "modified": "2021-01-06T18:30:56.594Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--5ced7dfa-fb2a-4578-9d81-6354c11fb287", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.594Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2cd67251-3808-47a4-a914-77d41571f183", - "modified": "2021-01-06T18:30:56.594Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--04a72d0b-d7c4-4d79-bd86-523aa37b96a6", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--37b50eaf-d0b7-47c7-9737-77af4684f298", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--e06d35ef-480b-4f3b-b634-6d87bfe3b24a", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--9cedab84-00a9-4997-99e2-00df8d91003b", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.488Z", + "id": "relationship--71cb480b-57ac-49eb-afd1-dd65a5487973", + "modified": "2021-01-13T01:52:45.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--89e8afb5-e45e-434a-8d76-ff40db5fba10", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.489Z", + "id": "relationship--54673fac-37e2-4748-b8fe-db66f8542a6b", + "modified": "2021-01-13T01:52:45.489Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--0ddf75d3-96c9-4151-a359-13d45dc0192c", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.490Z", + "id": "relationship--db7ce1a9-3718-4601-b482-087885d5ea6d", + "modified": "2021-01-13T01:52:45.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--956ea867-d4f6-4f1f-a79c-f224179a1a31", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.490Z", + "id": "relationship--fbb47f08-2127-4aae-8b94-8d9f0f2ff3d3", + "modified": "2021-01-13T01:52:45.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--59240062-f371-4aec-b02d-64504f38ef0d", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--4b3fd220-5c8d-418c-9feb-2b5ca20d1c68", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--7ef5c260-43af-4358-a739-8a779f624b34", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--5924ad2a-f6bd-44b4-8d1d-fd50c81e8b86", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.596Z", - "description": "System Monitoring", - "id": "relationship--89416b14-7d23-41b1-9cfb-4dd4c3df731f", - "modified": "2021-01-06T18:30:56.596Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--34b91f18-8698-44a2-a617-f42ee9610c7e", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.596Z", - "description": "System Monitoring", - "id": "relationship--b5e786c7-be49-4551-af1c-639dba2d98c9", - "modified": "2021-01-06T18:30:56.596Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--40cac653-54f1-447d-bc23-d647c1bacb82", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--3be410ae-06f7-48fe-834d-6ff2ff9a0fae", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--db0fb040-072e-435b-9c54-107e78051974", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--1f526480-a787-496d-aae0-19e655e44aa7", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--f31c1ed5-d255-4007-84e7-459091de3be4", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--6f2c9e25-211e-47f5-91aa-335a5b58ae97", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--7e06e2b4-feb1-43fa-abec-e012b0c8d0c8", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--4870d7aa-6f0e-433d-bb56-7ed0369af4d5", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--2706dee4-800c-461e-be58-38e0ddb633a0", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.598Z", - "description": "Vulnerability Scanning", - "id": "relationship--2782bc8e-ef5f-48cd-ba50-9addc3f83353", - "modified": "2021-01-06T18:30:56.598Z", + "created": "2021-01-13T01:52:45.493Z", + "id": "relationship--c3e703a5-0ea1-488c-8e56-312856cdd64c", + "modified": "2021-01-13T01:52:45.493Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.599Z", - "description": "System Monitoring, malware", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:56.599Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.600Z", - "description": "System Monitoring, malware", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:56.600Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--e33aa098-8c63-4af3-9784-92216b745cf1", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--fef019d0-fda3-498f-b020-07bcedcfb70c", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--a07e9554-9a9a-4948-a647-b76f17fcb7d8", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0306a9b1-8dd9-4891-ab0e-8aaca125a096", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.495Z", + "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", + "modified": "2021-01-13T01:52:45.495Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.602Z", - "description": "Vulnerability Scanning", - "id": "relationship--6326e819-5f11-404f-ac4e-887fc4acf7bb", - "modified": "2021-01-06T18:30:56.602Z", + "created": "2021-01-13T01:52:45.495Z", + "id": "relationship--46494d26-7be5-4600-afac-c199bf220e67", + "modified": "2021-01-13T01:52:45.495Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.602Z", - "description": "Vulnerability Scanning", - "id": "relationship--64ac37d8-7a96-4e11-a3f5-003b013559bd", - "modified": "2021-01-06T18:30:56.602Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.603Z", - "description": "System Monitoring, malware", - "id": "relationship--ba40bfcd-c27e-4c46-9b8e-6cc2a67bb86a", - "modified": "2021-01-06T18:30:56.603Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.603Z", - "description": "System Monitoring, malware", - "id": "relationship--606636a3-5dc2-4dc5-82a8-2e2070657c01", - "modified": "2021-01-06T18:30:56.603Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "System Monitoring, malware", - "id": "relationship--d07c006a-3504-4a7f-8cc1-f9fae9785a27", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--92574ca4-a5b9-475f-be7a-42b0c5ec0788", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "System Monitoring, malware", - "id": "relationship--3d4f0596-bccb-4bb2-a0a1-8d89e3e1e834", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--956b9a89-c5a0-4eef-aaa2-87afcd0c1002", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--30358369-1fe6-44aa-90e8-a54bebbbdbc3", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.497Z", + "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", + "modified": "2021-01-13T01:52:45.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8628d366-a47e-4feb-92c3-2f558fec73bb", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1740aa98-05ea-4830-9443-34e06f6ae002", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--d46ec5a8-dd1f-471c-a049-5d465a925bec", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d3770bd9-52e2-4627-bbde-5f64b69a4a43", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--384a41ac-87f3-4a0a-84ba-93d5d32a54f3", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8480cd69-0ea7-4ebd-8b9f-40b12edaa2a9", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--9e4e366a-3cd7-4475-89b2-db85231543cf", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.607Z", - "description": "Vulnerability Scanning", - "id": "relationship--7b2c359b-963f-4fd9-80ed-9269bbce9e2f", - "modified": "2021-01-06T18:30:56.607Z", + "created": "2021-01-13T01:52:45.499Z", + "id": "relationship--357796f0-0106-42d0-8851-94e7daa4a250", + "modified": "2021-01-13T01:52:45.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.608Z", - "description": "System Monitoring, malware", - "id": "relationship--18136224-1a59-4f21-995a-893f2a5a1f53", - "modified": "2021-01-06T18:30:56.608Z", + "created": "2021-01-13T01:52:45.500Z", + "id": "relationship--529de5e8-53e6-40fb-85fe-0689f162319d", + "modified": "2021-01-13T01:52:45.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.608Z", - "description": "System Monitoring, malware", - "id": "relationship--ff5b6fa3-4249-4ed4-9379-7676c8d77ee1", - "modified": "2021-01-06T18:30:56.608Z", + "created": "2021-01-13T01:52:45.500Z", + "id": "relationship--0b192afd-683a-4148-b475-99f461e8bce5", + "modified": "2021-01-13T01:52:45.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.609Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fce982aa-f07c-4009-ba42-ced161078798", - "modified": "2021-01-06T18:30:56.609Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--9e3d84ab-9028-4a50-9295-ae0aafdbbb55", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.609Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--534d31a0-0ba0-4625-a46f-1f569656aeda", - "modified": "2021-01-06T18:30:56.609Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--09457fcc-9d34-4d29-b332-c02785f13892", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.610Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--17caf850-8dc2-4525-97b4-c9ebdd8f231b", - "modified": "2021-01-06T18:30:56.610Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--8fed2646-ebbb-4569-bbe2-c68a57eaf614", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.502Z", + "id": "relationship--107aa2f4-3adb-40a9-9b8a-d58120076675", + "modified": "2021-01-13T01:52:45.502Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--70138a09-23fc-4eb4-8b00-9c69d120e517", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.503Z", + "id": "relationship--16d65fa4-a2c8-450e-83c9-144a81364593", + "modified": "2021-01-13T01:52:45.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.504Z", + "id": "relationship--79f90c80-2e8c-416f-bfed-4f4f13383d0a", + "modified": "2021-01-13T01:52:45.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.505Z", + "id": "relationship--16d63ab0-f60c-427e-a967-23a1eb20685e", + "modified": "2021-01-13T01:52:45.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.506Z", + "id": "relationship--b0906a53-9969-42e9-8f34-bc7cda596df3", + "modified": "2021-01-13T01:52:45.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.506Z", + "id": "relationship--edf5c6aa-acda-460b-a456-b8d08ab18ed4", + "modified": "2021-01-13T01:52:45.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5208563a-7fa3-422e-8232-d6b49c765960", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.507Z", + "id": "relationship--03d9f196-9cb4-4f0a-ac7d-805620caf842", + "modified": "2021-01-13T01:52:45.507Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--279acd3e-451b-49d9-9a4c-018751c4d860", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.508Z", + "id": "relationship--be83bf38-e9f3-4b88-b786-73384190fa12", + "modified": "2021-01-13T01:52:45.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.612Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--543d7d3b-9602-4dbb-9ecf-694db81cbd9e", - "modified": "2021-01-06T18:30:56.612Z", + "created": "2021-01-13T01:52:45.509Z", + "id": "relationship--ac1ea655-2437-40d7-bd29-d4a82934cce9", + "modified": "2021-01-13T01:52:45.509Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.613Z", - "description": "Vulnerability Scanning", - "id": "relationship--52861771-486c-4a29-a40d-f0327b25581a", - "modified": "2021-01-06T18:30:56.613Z", + "created": "2021-01-13T01:52:45.509Z", + "id": "relationship--ce4aea19-3ac2-40fd-bd0b-2114a306f716", + "modified": "2021-01-13T01:52:45.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.614Z", - "description": "System Monitoring", - "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:56.614Z", + "created": "2021-01-13T01:52:45.510Z", + "id": "relationship--1a7b1f47-eae2-4a92-9993-14b416c826b9", + "modified": "2021-01-13T01:52:45.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.615Z", - "description": "Vulnerability Scanning", - "id": "relationship--e0b1792b-0273-404f-af20-42cf5cf00738", - "modified": "2021-01-06T18:30:56.615Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--da9a27f0-f2a7-4dd7-beec-63454c161935", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.615Z", - "description": "Vulnerability Scanning", - "id": "relationship--88768920-f459-40cb-bc91-ec2438d76a37", - "modified": "2021-01-06T18:30:56.615Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--b2fa051d-60b7-4ade-be6b-b4a70f02b77b", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.616Z", - "description": "System Monitoring, malware", - "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.616Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--ca98eb49-69cd-4c6b-9824-04d37b9dff76", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.512Z", + "id": "relationship--9e307bd9-05e6-461f-9b78-f3ff7c216be9", + "modified": "2021-01-13T01:52:45.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--4f08b45f-84e4-4dbc-b89f-219fa052f4c1", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.514Z", + "id": "relationship--82d06315-c7b3-4b75-9f4c-76d4fa66a08a", + "modified": "2021-01-13T01:52:45.514Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--088ce763-0f0d-4598-b62a-8fa1ded10579", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.516Z", + "id": "relationship--bc95d187-2002-4668-89f0-f343d8afc1f0", + "modified": "2021-01-13T01:52:45.516Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.516Z", + "id": "relationship--755003d1-fb4d-42c2-b3d6-f0a0f35d7145", + "modified": "2021-01-13T01:52:45.516Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.517Z", + "id": "relationship--3e3faf3a-1aa0-4de3-a90f-8f0dfe78902f", + "modified": "2021-01-13T01:52:45.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.517Z", + "id": "relationship--1151a110-6d5d-4562-b6b8-45882628c84a", + "modified": "2021-01-13T01:52:45.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--56497b38-8e8b-4fd2-a46c-cae75f55519b", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.620Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c04b10e9-c4e9-4d98-975e-2c2899260300", - "modified": "2021-01-06T18:30:56.620Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--9ff4741a-e665-4dba-a5e7-2b09e2023261", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.620Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--88d23987-b86f-481d-a942-28511dc404a1", - "modified": "2021-01-06T18:30:56.620Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--3b153895-1c78-4f64-b214-2baf4b5e23b3", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--976e5873-a402-4c66-8307-4e0efacfeb05", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--566ef983-d932-4011-97c6-ebf6b2f3861d", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--23c2b201-0cc8-4e59-bea6-3095b9921b43", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--9dd189c7-1481-4b22-9f17-5d55f1035fe9", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--34515ff7-2ec4-435a-b8e1-a6c8cf9ac0f1", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--32f2f8af-b0ac-4c68-a33d-39cfcb38a564", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--ec7e7310-6d59-4614-b0e7-1eb5414de739", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--f6b4063d-cf73-4527-9d2d-a20824e9a049", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.520Z", + "id": "relationship--0792d056-b33f-4267-856b-71c77ac84559", + "modified": "2021-01-13T01:52:45.520Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.623Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0deb73e8-756e-4ca7-b7cf-40f0a200c7ea", - "modified": "2021-01-06T18:30:56.623Z", + "created": "2021-01-13T01:52:45.520Z", + "id": "relationship--d167408c-46b5-4737-bfc1-de81c5fece29", + "modified": "2021-01-13T01:52:45.520Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.623Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1abeb6f6-5d6c-49b6-8ec7-e7ad7c9bd497", - "modified": "2021-01-06T18:30:56.623Z", + "created": "2021-01-13T01:52:45.523Z", + "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", + "modified": "2021-01-13T01:52:45.523Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--f560021d-d762-4348-8557-047c17c3a329", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--fc181e30-ab7f-4aae-9555-484af30c2e39", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--31613717-8675-4520-9188-11807555b387", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--7a4bd192-61b3-4197-abb0-5541490c519f", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a49d146e-8131-4782-af3c-b0e83eef5809", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--019deaf1-f88c-4e31-b0a0-fe9c9b1fc71e", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fa5f65ca-befe-4f38-8ba3-0a20d517408d", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--a027ca98-811a-443b-8f0c-fd965bd6aa53", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--27037849-fb5d-4b7b-b53a-994e4df62704", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.527Z", + "id": "relationship--2cd67251-3808-47a4-a914-77d41571f183", + "modified": "2021-01-13T01:52:45.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8f87262c-a37d-409b-a05e-e44fb0e3bc4e", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.527Z", + "id": "relationship--37b50eaf-d0b7-47c7-9737-77af4684f298", + "modified": "2021-01-13T01:52:45.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2958a3b6-ba81-47a0-910e-9a0c5f46a5b9", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--9cedab84-00a9-4997-99e2-00df8d91003b", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8f913e59-ba60-476c-a279-76bfdb8fc480", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--89e8afb5-e45e-434a-8d76-ff40db5fba10", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0c40d78f-934b-4c1e-8b9c-d685d1247720", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--0ddf75d3-96c9-4151-a359-13d45dc0192c", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--93463dc4-7fd4-4da8-a89a-44b7c5f3a7d4", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--956ea867-d4f6-4f1f-a79c-f224179a1a31", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f795beac-8ce9-4109-86f0-97ae2c760709", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--59240062-f371-4aec-b02d-64504f38ef0d", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.627Z", - "description": "System Monitoring", - "id": "relationship--704d39a9-0aab-4c61-8acd-663951eaaa77", - "modified": "2021-01-06T18:30:56.627Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--7ef5c260-43af-4358-a739-8a779f624b34", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.628Z", - "description": "System Monitoring", - "id": "relationship--2f0f0dc3-620a-423d-b79f-c04346a0e343", - "modified": "2021-01-06T18:30:56.628Z", + "created": "2021-01-13T01:52:45.531Z", + "id": "relationship--2782bc8e-ef5f-48cd-ba50-9addc3f83353", + "modified": "2021-01-13T01:52:45.531Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--04edbec4-1260-4273-a5d8-2eb136286402", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.533Z", + "id": "relationship--0306a9b1-8dd9-4891-ab0e-8aaca125a096", + "modified": "2021-01-13T01:52:45.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--14813b51-9bf8-4eb5-9891-0982566401b5", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.534Z", + "id": "relationship--6326e819-5f11-404f-ac4e-887fc4acf7bb", + "modified": "2021-01-13T01:52:45.534Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--7f879153-7239-483e-a8a5-3d6368997a2c", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.534Z", + "id": "relationship--64ac37d8-7a96-4e11-a3f5-003b013559bd", + "modified": "2021-01-13T01:52:45.534Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--45fffc48-4756-48ae-959f-5e59de2b602b", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--ba40bfcd-c27e-4c46-9b8e-6cc2a67bb86a", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.631Z", - "description": "System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:56.631Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--606636a3-5dc2-4dc5-82a8-2e2070657c01", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.631Z", - "description": "System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:56.631Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--d07c006a-3504-4a7f-8cc1-f9fae9785a27", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--3d4f0596-bccb-4bb2-a0a1-8d89e3e1e834", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--956b9a89-c5a0-4eef-aaa2-87afcd0c1002", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--30358369-1fe6-44aa-90e8-a54bebbbdbc3", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.634Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:56.634Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--8628d366-a47e-4feb-92c3-2f558fec73bb", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.636Z", - "description": "System Monitoring", - "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:56.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.637Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--0585bafa-b17d-45db-be4b-82f34f55b4ed", - "modified": "2021-01-06T18:30:56.637Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--1740aa98-05ea-4830-9443-34e06f6ae002", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.638Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:56.638Z", + "created": "2021-01-13T01:52:45.537Z", + "id": "relationship--d3770bd9-52e2-4627-bbde-5f64b69a4a43", + "modified": "2021-01-13T01:52:45.537Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.537Z", + "id": "relationship--8480cd69-0ea7-4ebd-8b9f-40b12edaa2a9", + "modified": "2021-01-13T01:52:45.537Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.538Z", + "id": "relationship--7b2c359b-963f-4fd9-80ed-9269bbce9e2f", + "modified": "2021-01-13T01:52:45.538Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.539Z", + "id": "relationship--18136224-1a59-4f21-995a-893f2a5a1f53", + "modified": "2021-01-13T01:52:45.539Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.641Z", - "description": "Protect and prevent credential access", - "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:56.641Z", + "created": "2021-01-13T01:52:45.540Z", + "id": "relationship--17caf850-8dc2-4525-97b4-c9ebdd8f231b", + "modified": "2021-01-13T01:52:45.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.541Z", + "id": "relationship--279acd3e-451b-49d9-9a4c-018751c4d860", + "modified": "2021-01-13T01:52:45.541Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.543Z", + "id": "relationship--52861771-486c-4a29-a40d-f0327b25581a", + "modified": "2021-01-13T01:52:45.543Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.545Z", + "id": "relationship--e0b1792b-0273-404f-af20-42cf5cf00738", + "modified": "2021-01-13T01:52:45.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.643Z", - "description": "Configuring system settings, Registry", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.643Z", + "created": "2021-01-13T01:52:45.545Z", + "id": "relationship--88768920-f459-40cb-bc91-ec2438d76a37", + "modified": "2021-01-13T01:52:45.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.547Z", + "id": "relationship--c04b10e9-c4e9-4d98-975e-2c2899260300", + "modified": "2021-01-13T01:52:45.547Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.547Z", + "id": "relationship--88d23987-b86f-481d-a942-28511dc404a1", + "modified": "2021-01-13T01:52:45.547Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f8dce936-9898-43c1-b9ab-7d21103f21bf", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.548Z", + "id": "relationship--976e5873-a402-4c66-8307-4e0efacfeb05", + "modified": "2021-01-13T01:52:45.548Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--16084466-d0cd-469f-980f-09954eb4e011", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.549Z", + "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", + "modified": "2021-01-13T01:52:45.549Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.549Z", + "id": "relationship--23c2b201-0cc8-4e59-bea6-3095b9921b43", + "modified": "2021-01-13T01:52:45.549Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.550Z", + "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", + "modified": "2021-01-13T01:52:45.550Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--0deb73e8-756e-4ca7-b7cf-40f0a200c7ea", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--4fc1fa24-6031-477f-bd02-870af1ae5b65", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--1abeb6f6-5d6c-49b6-8ec7-e7ad7c9bd497", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--b3d2c7e8-c405-4902-85d1-f33c8d623753", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--a49d146e-8131-4782-af3c-b0e83eef5809", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.647Z", - "description": "Protect and prevent credential access", - "id": "relationship--0464e5f4-050a-4ba2-acc2-6819911a9c77", - "modified": "2021-01-06T18:30:56.647Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--fa5f65ca-befe-4f38-8ba3-0a20d517408d", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.552Z", + "id": "relationship--27037849-fb5d-4b7b-b53a-994e4df62704", + "modified": "2021-01-13T01:52:45.552Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.552Z", + "id": "relationship--8f87262c-a37d-409b-a05e-e44fb0e3bc4e", + "modified": "2021-01-13T01:52:45.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--2958a3b6-ba81-47a0-910e-9a0c5f46a5b9", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--8f913e59-ba60-476c-a279-76bfdb8fc480", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--0c40d78f-934b-4c1e-8b9c-d685d1247720", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--93463dc4-7fd4-4da8-a89a-44b7c5f3a7d4", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--f795beac-8ce9-4109-86f0-97ae2c760709", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.554Z", + "id": "relationship--704d39a9-0aab-4c61-8acd-663951eaaa77", + "modified": "2021-01-13T01:52:45.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.554Z", + "id": "relationship--2f0f0dc3-620a-423d-b79f-c04346a0e343", + "modified": "2021-01-13T01:52:45.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.651Z", + "created": "2021-01-13T01:52:45.555Z", + "id": "relationship--7f879153-7239-483e-a8a5-3d6368997a2c", + "modified": "2021-01-13T01:52:45.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.653Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.559Z", "id": "relationship--0585bafa-b17d-45db-be4b-82f34f55b4ed", - "modified": "2021-01-06T18:30:56.653Z", + "modified": "2021-01-13T01:52:45.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.653Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:56.653Z", + "created": "2021-01-13T01:52:45.564Z", + "id": "relationship--4fc1fa24-6031-477f-bd02-870af1ae5b65", + "modified": "2021-01-13T01:52:45.564Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.655Z", - "description": "Vulnerability Scanning", - "id": "relationship--72485256-d44d-472b-ab5b-50602cd7e570", - "modified": "2021-01-06T18:30:56.655Z", + "created": "2021-01-13T01:52:45.564Z", + "id": "relationship--b3d2c7e8-c405-4902-85d1-f33c8d623753", + "modified": "2021-01-13T01:52:45.564Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.656Z", - "description": "System Monitoring, Malware", - "id": "relationship--520c85ee-8070-44af-b1a5-39149dfc8d74", - "modified": "2021-01-06T18:30:56.656Z", + "created": "2021-01-13T01:52:45.565Z", + "id": "relationship--0464e5f4-050a-4ba2-acc2-6819911a9c77", + "modified": "2021-01-13T01:52:45.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.656Z", - "description": "System Monitoring, Malware", - "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:56.656Z", + "created": "2021-01-13T01:52:45.569Z", + "id": "relationship--72485256-d44d-472b-ab5b-50602cd7e570", + "modified": "2021-01-13T01:52:45.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.571Z", "id": "relationship--bcc6868a-ec43-40e1-afa1-2d7975a16c59", - "modified": "2021-01-06T18:30:56.658Z", + "modified": "2021-01-13T01:52:45.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:56.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.572Z", "id": "relationship--8f657b3f-cd9d-43ce-83c9-9f43ba7eaba9", - "modified": "2021-01-06T18:30:56.658Z", + "modified": "2021-01-13T01:52:45.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:56.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.660Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.573Z", "id": "relationship--c4cb70ac-2165-4ad5-bc55-852aff08f0f8", - "modified": "2021-01-06T18:30:56.660Z", + "modified": "2021-01-13T01:52:45.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.660Z", - "description": "Vulnerability Scanning", - "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:56.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.661Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:52:45.574Z", "id": "relationship--4de64868-9b2d-4c94-a07d-d4e461f688e9", - "modified": "2021-01-06T18:30:56.661Z", + "modified": "2021-01-13T01:52:45.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", - "id": "relationship--6da36d28-f82d-4e30-9ec5-5e71cd56ce6b", - "modified": "2021-01-06T18:30:56.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:52:45.574Z", "id": "relationship--56836170-0fa0-4cda-8e35-bcda6b4952f4", - "modified": "2021-01-06T18:30:56.662Z", + "modified": "2021-01-13T01:52:45.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", - "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:56.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", + "created": "2021-01-13T01:52:45.575Z", "id": "relationship--63b1f966-7ac2-4f67-9857-238432aac5df", - "modified": "2021-01-06T18:30:56.663Z", + "modified": "2021-01-13T01:52:45.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.663Z", - "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:56.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", - "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:56.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", + "created": "2021-01-13T01:52:45.575Z", "id": "relationship--5abae17b-ffff-4ec0-8551-f76c4d514035", - "modified": "2021-01-06T18:30:56.663Z", + "modified": "2021-01-13T01:52:45.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", - "id": "relationship--213a392b-3809-4d28-8ff0-8cdaf641e408", - "modified": "2021-01-06T18:30:56.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.664Z", - "id": "relationship--15e1b556-e190-4305-8bee-1dd674303a1f", - "modified": "2021-01-06T18:30:56.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--1145a047-0857-4347-9efa-7e506982d050", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--2461364b-762f-4b23-a249-a852bece025f", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--7595432a-863b-478d-83cf-76310ddd2058", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--9c53563d-23b3-474b-92ca-75860d1da309", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.665Z", - "id": "relationship--bdc6613f-d798-4c59-9f42-779336570969", - "modified": "2021-01-06T18:30:56.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.665Z", - "id": "relationship--74039f49-a98e-4684-bb5f-3dd9412104ed", - "modified": "2021-01-06T18:30:56.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.666Z", + "created": "2021-01-13T01:52:45.577Z", "id": "relationship--89bb2a0d-1583-44c9-ac27-8341ce6a7fa9", - "modified": "2021-01-06T18:30:56.666Z", + "modified": "2021-01-13T01:52:45.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.666Z", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.666Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--f2065ae5-7329-4d83-8a36-fbac79982527", - "modified": "2021-01-06T18:30:56.667Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--6004f4af-2045-4c61-99c0-bade17beab2a", - "modified": "2021-01-06T18:30:56.667Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--79e48713-38d9-4f18-9a2b-90fccc8405b9", - "modified": "2021-01-06T18:30:56.668Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--2e2d8028-5d65-4f1d-9900-f79f13c09e05", - "modified": "2021-01-06T18:30:56.668Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", - "id": "relationship--8b446bfa-9e53-4e7e-af38-00ce50adc9af", - "modified": "2021-01-06T18:30:56.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.668Z", - "id": "relationship--a0f7d223-078e-4aec-bb7e-dfda5b1d0046", - "modified": "2021-01-06T18:30:56.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.669Z", + "created": "2021-01-13T01:52:45.579Z", "id": "relationship--d39539bf-4599-43b2-8610-0bbf37dbcdce", - "modified": "2021-01-06T18:30:56.669Z", + "modified": "2021-01-13T01:52:45.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.670Z", + "created": "2021-01-13T01:52:45.580Z", "id": "relationship--8ec685b4-f0bd-45b0-85e4-c64df3b6a3a0", - "modified": "2021-01-06T18:30:56.670Z", + "modified": "2021-01-13T01:52:45.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.671Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--82bcac92-86b2-42cc-be9a-b0109820d155", - "modified": "2021-01-06T18:30:56.671Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.671Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--71438390-ffeb-4ecd-a1f4-bef43e8170cf", - "modified": "2021-01-06T18:30:56.671Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--896aef95-898b-4f1c-a480-310f905d39f3", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--71ac2039-23a6-415b-97e8-488083b94221", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--4428c1fb-9ea6-4b61-9cbe-82bfb201b383", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--10ab349d-89e3-4443-aa22-34ecad405a21", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--40cd2c95-42b4-4cd7-b595-55fc37f71d79", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--32d05d2e-841c-4021-9439-54d08727a595", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--7febf0c4-bae8-4de2-8ec7-3f242b075eae", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--40934b2f-b149-41f2-bb7c-28fd764161d4", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--41af5a6a-3e0b-4c5b-a332-4707b669b7b4", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--20d62ad8-ab6f-4125-b4f0-b682894feffe", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.674Z", + "created": "2021-01-13T01:52:45.584Z", "id": "relationship--05482533-5564-4c7b-ba1e-a20a2cc9691d", - "modified": "2021-01-06T18:30:56.674Z", + "modified": "2021-01-13T01:52:45.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.675Z", + "created": "2021-01-13T01:52:45.584Z", "id": "relationship--c9218528-93cd-41ba-8843-cc9885b1116d", - "modified": "2021-01-06T18:30:56.675Z", + "modified": "2021-01-13T01:52:45.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.676Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--1e623b8b-f6c3-4f3b-acb4-7ac26541c425", - "modified": "2021-01-06T18:30:56.676Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.676Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--0ce114b5-6364-4c18-828e-e2e495e844b0", - "modified": "2021-01-06T18:30:56.676Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", - "id": "relationship--5e63eca5-99a3-4eda-8949-dde20a592888", - "modified": "2021-01-06T18:30:56.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--11339df1-e0ec-4def-8f2a-3c353493d8bd", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--67cabb90-3a63-4b9c-8eeb-18fb54192271", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", - "id": "relationship--0b5fc684-7237-43b1-9378-26d068b40335", - "modified": "2021-01-06T18:30:56.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--82c5a199-6c57-4ca9-ad92-c98547297a24", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--d10475b5-37a1-4f6e-9f26-5996784ec038", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--d16648d4-5783-4e0d-bedc-4af8371c97ff", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.678Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--00291c44-118d-406b-8414-4857597f142d", - "modified": "2021-01-06T18:30:56.678Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.678Z", - "id": "relationship--40aba28e-cab9-4570-8907-de0c751afca4", - "modified": "2021-01-06T18:30:56.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.678Z", - "id": "relationship--50726a53-a93b-4b1c-921f-0244f2522278", - "modified": "2021-01-06T18:30:56.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.679Z", + "created": "2021-01-13T01:52:45.587Z", "id": "relationship--79bc63cf-aed6-468b-b89c-0c487925122f", - "modified": "2021-01-06T18:30:56.679Z", + "modified": "2021-01-13T01:52:45.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.680Z", + "created": "2021-01-13T01:52:45.588Z", "id": "relationship--11a68e17-17cd-42aa-b45f-9329a5ae1b86", - "modified": "2021-01-06T18:30:56.680Z", + "modified": "2021-01-13T01:52:45.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e9dd8eb3-b1fe-4da3-b168-c433499401d4", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e2612cd9-e799-440a-a9eb-7b46d99b718e", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--93b57fda-57a1-436b-b5a8-678b2e83c3a3", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e7f9aaf7-da70-4ec7-a86e-f5256762842e", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--65968e8e-ce65-4021-a84e-f044ed7f032b", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f62a7d56-7929-4570-bd16-18d2d3ca83eb", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--833d4571-0466-4693-bb0d-f4fe64869c67", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.682Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.682Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.590Z", "id": "relationship--dedbfeab-1944-4f9f-b354-1264422ac89c", - "modified": "2021-01-06T18:30:56.684Z", + "modified": "2021-01-13T01:52:45.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.591Z", "id": "relationship--dcf2f5de-e5de-42c3-b1a2-acae5fe8f506", - "modified": "2021-01-06T18:30:56.684Z", + "modified": "2021-01-13T01:52:45.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.685Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.591Z", "id": "relationship--3c46c8fa-e690-4774-8a08-438c790e79b3", - "modified": "2021-01-06T18:30:56.685Z", + "modified": "2021-01-13T01:52:45.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--072229d3-4c58-4b3f-afd4-120c30df86a8", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--2377bc36-6768-4c6b-b2fc-fa1d2d408edc", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--40fa008a-f65d-4306-9823-d48552201599", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.687Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.687Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.594Z", "id": "relationship--19222649-4206-441a-bec2-b45a005028b1", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--4e3848fc-cd55-4084-aeb7-040af7a2fa27", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--2d878c13-5ce0-4ce7-b5cb-d776bc4e5608", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--59d7f858-cadd-4d69-83f4-c13dfdded1e5", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--f9634c3e-0326-4308-9ca7-0e3a7c6d238e", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--28b410ea-736d-4a8e-b723-e936fdb07cf5", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--a57462e1-447e-41d3-b699-357fcd3f344a", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--ebc9cfd0-0076-4aad-8111-0328a2db98df", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--bfdb13f3-534c-448e-a088-81210c6729c0", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.596Z", "id": "relationship--465b62ee-4cc4-41d5-98e7-af7c8ba79775", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.596Z", "id": "relationship--26e57a97-b657-4c33-9594-2d1c55a5b01e", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", + "created": "2021-01-13T01:52:45.597Z", "id": "relationship--b1390bc0-e956-4f12-922f-5111aeda1887", - "modified": "2021-01-06T18:30:56.693Z", + "modified": "2021-01-13T01:52:45.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--9ccb91e3-8fa3-4ef3-8e2b-73078053b545", - "modified": "2021-01-06T18:30:56.693Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", - "id": "relationship--2c7c472f-0da0-4a17-9e3c-f2c8980b170d", - "modified": "2021-01-06T18:30:56.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--ceca1e74-10f5-4975-a863-06532d98aa40", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--4070e9b8-bb73-4b23-a5d3-a216ac8ae28e", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--210e72e8-ac5a-472c-9a03-469f2963b2cc", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--97830dcc-f815-468b-9ad7-2d0ef46dd88c", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--ff758ea5-3f96-454e-9c47-fb1d1ef817d0", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--1023e63c-417e-4372-8617-8cff4bb2e6c4", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.599Z", "id": "relationship--a69caa92-c6ca-415c-9b4c-5111938a0e40", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--bc5c9d26-5177-4cca-b1e0-06cc987e37d2", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--b09d7471-abd0-4643-8476-48674ca15cc6", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--0ac63a3e-6a51-4805-ade8-3e340e137456", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--6a135db2-fda1-451c-83f9-fdf0a37cda32", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--ddbf3c41-ea20-4ff7-9d12-344f319c6e7b", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--43056426-218c-48f3-8701-6395347bbaa6", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--70ba8cef-d36f-4f64-a9cc-15be0794331c", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--03ce0ca0-f56c-4502-a62b-169771d0b66e", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--a2980edb-5f8b-4186-8417-1548f50f3a23", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--a5c9feba-19c3-42f2-a9d9-b2174d99c9d9", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", - "id": "relationship--e041a89b-fa44-4682-9247-b5c02205198a", - "modified": "2021-01-06T18:30:56.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--d7775ed6-dc43-478c-99aa-c5ccc9ba1338", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--8471bdb3-90ba-4994-8198-d732dbce18ee", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--d64ae046-0a22-4466-b565-2e77363c373f", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--503068ac-d7d4-4a94-bfd0-4789eec4c77e", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--ce09eeff-7728-4d43-870f-9d36b766409c", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--2b8ac715-8cc7-451f-a580-7b5f6c1e860c", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--43a96d8f-edd7-4c7f-8c66-7369fa727da5", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--b794c8a1-b26a-48fb-9298-bc41f1fc634e", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--23cf131e-492b-443d-926d-8dc6c487db54", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--81f4edb6-453f-4e6e-be11-3ba6a9bc8dc7", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--9a8b3623-8f62-4dab-b6cc-91f87eba6e28", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--be2a493e-6d4a-469e-8600-041efe6f33f3", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--07311917-0a7f-445b-a2b9-a066a957c6d8", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--2519a6cd-354a-4a25-9656-7410291cf2ee", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--718f0336-86c3-4c11-913a-8bd136d06c94", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--d921a666-f220-4674-beb6-501471ea6555", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--7a023940-ffaf-41ee-9ad5-094965afc215", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--b099f0c1-6efd-4ce8-9f7c-a7af3eb0850b", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--a4f7a185-8f1b-4b94-9b61-a029d6053a07", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--2cd9dcc3-35ea-4eaa-ac32-adad9324206e", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--a0717fea-4bdb-491f-a0ea-26992bbf1818", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--5efec826-ead6-4ae2-aff6-66921842dd4d", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--e40a751c-1183-4b93-8b7d-d6acdb184db6", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--3fad7ec0-b4e5-4cfe-99a3-c40c8909a569", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--818ae4c6-b599-4169-9d94-8bb07cf090aa", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--1c016e60-96c8-4a04-8034-d8608979e844", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--1dc46ef2-f4b6-4440-bc60-d9aa647e1cb1", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--6b8f3ac2-e1a8-4b0e-82c6-06eb11b01183", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--b1c393a1-10ca-403c-8942-04b0100f944a", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--22d33aa1-45a5-4097-b398-3c49d54aaf4f", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--c0b0a3ba-84e1-4d54-bbb8-9d5ea91fc1c1", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--dc5da85d-44df-4aaf-be11-278690ae7e99", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--e33fd916-0db7-4e6b-a334-f675bcb7c3d9", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--7aea415d-f2c0-4fd7-ab0c-c680dedc654f", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--b5a16153-be26-43d9-abb8-54e0f69bb33e", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--6f7ba395-42cd-4ae1-bf8e-c03fe8ca65df", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--09efc3dd-53c3-46ce-b28b-9be67934887c", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--9262aaba-39ba-4069-bfb0-b05eeafe3635", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--ee19ec88-7ea1-4501-95e0-a99a24b65f6d", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--c1e562fc-f067-4428-8f5f-537427a2a4c8", - "modified": "2021-01-06T18:30:56.705Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", - "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:56.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.705Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--5292d2ed-c26b-42de-b05f-b4bfdc3f6936", - "modified": "2021-01-06T18:30:56.705Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", - "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:56.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--34877e3f-0323-481b-ae6c-885bcf5b04b4", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--30b533f6-567a-4bde-a053-88a4d3a0aab6", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--de2a72e6-1bba-4e7d-9408-96fd4124225a", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--dde0a12f-3e8c-4524-ad3b-07d20e67c59b", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--7f9d15b0-2f4e-4a41-8e75-16d1579a4bf4", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--f802c1a1-170b-4abb-a8bc-c00bbe75e3c1", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--704c88ff-4038-4623-a4c4-73585e57a694", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--5a507ac6-9d69-462b-9f47-7deee7aecafb", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--204c072d-08ea-4189-b2e0-322375abdee4", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--209e259a-123b-4d70-974f-abf684c0f3e6", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--bd33725c-dbd0-438f-9323-46fa15556aad", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--8e5be5d4-6cf9-4e43-9e17-fe3a34deedcc", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--db61319a-8156-484f-9445-373d7046b36a", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--dbb50e86-cba8-4941-882d-81538f77d2e1", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e356bc84-b0d6-47e8-9aa2-c64d38360273", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--aa47cdb0-e2af-4715-aa71-fa086fe005c5", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e54cdc1e-f680-43f9-8b86-f0609bfec0bf", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--3aeeb2ac-2d2f-4ea4-bc23-08316d6e02e8", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--6dbadcd3-da83-4d67-b954-216b0450ecd7", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e81c8b95-7534-4dd1-82a6-b7c9ffe7fa42", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--83f23fd9-acf3-4b43-a673-b0a26a6f75b8", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--c1d80f1b-0257-4efd-9555-84f9e8b4b00c", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--52face79-9931-44e2-a1c2-c9cac8919db5", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--91978b21-796b-499e-af50-6b4e310471ba", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--2fd257b4-8e8f-4cfc-bee4-e9cde9078143", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--18c9741f-7439-4c2d-af1e-7e068ca2b813", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.710Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--cd6e930d-b250-48b0-8804-a2ac30e3a1de", - "modified": "2021-01-06T18:30:56.710Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.711Z", - "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:56.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.611Z", "id": "relationship--66f62cf0-d497-4873-b70b-f2b087e8162c", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--fdd2b8b4-93d8-42a6-b710-7f1e7ac8007d", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.611Z", "id": "relationship--33cf5bdc-7d1c-4c49-8bc9-6bcde064651d", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--b0d7a0c8-c29d-4b5f-a29b-ed4752925245", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--7fb66359-7283-4b9a-ae66-a19a7c7df88b", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:56.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--67cabd06-f79b-46ad-a26c-fcf5763e4ae4", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--0093a6a0-2175-4dea-8853-6f0246e828f1", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--eb5ec789-b099-4062-8ef9-d19eda7e4db7", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--1c187836-a97e-49f1-bc30-a521eb972955", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--49150d45-f262-4e51-8963-b252c45ca436", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--aac556ed-8dcf-41d2-9832-b8eacf9babc7", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--d3ad2767-7956-4cc5-83f7-874aad722d62", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--e1f59d4d-a269-42b7-9725-0a2bcf4a2e93", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--2ea88976-9bb6-408f-ac02-79ef75d76e4c", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--8b2daf42-8930-41bb-9024-3392744f80cf", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--4621e1ec-2661-40a9-ab4c-625bc4eb77ce", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--f814a3e1-50d7-4fee-8f82-98341ff6a709", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--94856801-857d-4d4f-b208-1062c2fe041d", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--d3e80377-d580-4da2-b9a6-145ed809ea28", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--feae3aa0-9047-4a93-b49b-ef4d9806346d", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--26b98d1d-d56a-4622-b56b-c4eb4b8af1b5", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--f5027019-5c0e-4355-a065-595375327d06", - "modified": "2021-01-06T18:30:56.719Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--94238de3-8cff-442c-a3a8-1384f3af4e4d", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--6aa325b4-f9bf-4a9d-9a05-17e3633f2377", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--729b46e0-ff2a-457e-b8dc-4e9c3203a7b5", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--079f928d-0151-4f7a-b51e-935a30830e65", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--ba2601bf-24dc-4eea-ae90-9bcff0931ca4", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", - "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:56.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.720Z", - "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:56.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--9a06521d-0107-429e-892a-a6e78b746a6d", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--01986791-a78d-43f8-8b9c-08498414885d", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--fbe858c9-8509-44d3-b200-dcd8a50ca881", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", + "created": "2021-01-13T01:52:45.619Z", "id": "relationship--aa944857-6940-435b-a6ba-b24b95bd538a", - "modified": "2021-01-06T18:30:56.721Z", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.721Z", + "created": "2021-01-13T01:52:45.619Z", "id": "relationship--cf0b15bf-ec6f-422d-a2b7-606238c4bb84", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--44704bbe-2de4-4507-86e7-056ea08d4dfa", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--f394f0ac-767c-4218-a93a-bfd21ad95865", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--064d5ef0-5a55-4dff-b787-0ea6c0ff303e", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--f0c4f2dd-5d3e-4e02-bb11-d62424cdf2c6", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--fdf37b46-ca4a-4ee4-9fdf-be8e6c485f1f", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--716d4e36-a34d-4671-838b-e3555387c0d1", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--9bb3eefa-5d34-43f3-9c07-71d71767d7cc", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--d9727fa6-ba00-4d77-b1c5-bc96f8c0920c", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--158b4fc1-2622-49e2-a135-2d088025e6fa", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--1c2e5c03-cff0-403d-a96c-434f85560a1c", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.724Z", - "id": "relationship--d460c7eb-169e-47b7-b754-b55a57b23257", - "modified": "2021-01-06T18:30:56.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--4ef0c6cb-7d33-41d3-85b1-f1ec5c4911b2", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.726Z", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--569f4c94-3e3a-4926-961f-ab15d5ccc208", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--24d71586-2bf4-4f59-b8aa-48d796b357ce", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--d0355edd-acf7-4abe-a4b6-629633f47d0c", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--394000d5-200c-4ad0-8bbb-25f10e131737", - "modified": "2021-01-06T18:30:56.728Z", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.728Z", + "created": "2021-01-13T01:52:45.619Z", + "id": "relationship--44704bbe-2de4-4507-86e7-056ea08d4dfa", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.729Z", - "id": "relationship--14fd1c29-8975-4930-934c-c3c78d953c59", - "modified": "2021-01-06T18:30:56.729Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--f394f0ac-767c-4218-a93a-bfd21ad95865", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", - "id": "relationship--3eef95ec-1b69-4e1d-8fd6-242e308ffc81", - "modified": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--064d5ef0-5a55-4dff-b787-0ea6c0ff303e", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", - "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--f0c4f2dd-5d3e-4e02-bb11-d62424cdf2c6", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", - "id": "relationship--0bd99c8a-3b95-436c-b72d-a3e85b9c5f7e", - "modified": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--fdf37b46-ca4a-4ee4-9fdf-be8e6c485f1f", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", - "id": "relationship--139fdf87-65d6-40c9-879d-ae6c7a4a8e24", - "modified": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--716d4e36-a34d-4671-838b-e3555387c0d1", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.731Z", - "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:56.731Z", + "created": "2021-01-13T01:52:45.620Z", + "id": "relationship--9bb3eefa-5d34-43f3-9c07-71d71767d7cc", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.731Z", - "id": "relationship--ba24e9be-9c3e-41d2-81cb-1371466f4c7f", - "modified": "2021-01-06T18:30:56.731Z", + "created": "2021-01-13T01:52:45.622Z", + "id": "relationship--d460c7eb-169e-47b7-b754-b55a57b23257", + "modified": "2021-01-13T01:52:45.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.732Z", - "id": "relationship--1947b4f9-9c60-4229-be88-d348e642c16e", - "modified": "2021-01-06T18:30:56.732Z", + "created": "2021-01-13T01:52:45.622Z", + "id": "relationship--4ef0c6cb-7d33-41d3-85b1-f1ec5c4911b2", + "modified": "2021-01-13T01:52:45.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", + "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.732Z", - "id": "relationship--731881a6-cb2d-4b5c-8d9a-f29e9be6aa7d", - "modified": "2021-01-06T18:30:56.732Z", + "created": "2021-01-13T01:52:45.624Z", + "id": "relationship--d0355edd-acf7-4abe-a4b6-629633f47d0c", + "modified": "2021-01-13T01:52:45.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--719e851b-9cd4-4275-8455-bde428b3dd2f", - "modified": "2021-01-06T18:30:56.733Z", + "created": "2021-01-13T01:52:45.624Z", + "id": "relationship--394000d5-200c-4ad0-8bbb-25f10e131737", + "modified": "2021-01-13T01:52:45.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--5e511ca7-6fe1-4a90-8625-d215ea4fc2ec", - "modified": "2021-01-06T18:30:56.733Z", + "created": "2021-01-13T01:52:45.625Z", + "id": "relationship--3eef95ec-1b69-4e1d-8fd6-242e308ffc81", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--2e715486-7008-4158-8b1f-c98d02958a0d", - "modified": "2021-01-06T18:30:56.733Z", + "created": "2021-01-13T01:52:45.625Z", + "id": "relationship--0bd99c8a-3b95-436c-b72d-a3e85b9c5f7e", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", - "id": "relationship--8bfb502b-0262-40fa-b999-8550b136dab9", - "modified": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.625Z", + "id": "relationship--139fdf87-65d6-40c9-879d-ae6c7a4a8e24", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--7a5ff61a-5818-4325-86e2-cd4b2e12ddf9", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--3c610a81-7e10-4ca8-8c73-5c9030a1f11a", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--cf8a095d-0cfd-4c22-b59e-1e628f0a6ec2", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--6675f095-8e3b-4055-8890-754bf1b9391f", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--19a5bd5e-f1d5-4254-8529-4080041e1519", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--bb217d4b-2574-4c6a-bf1d-064bbe713038", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.629Z", "id": "relationship--7a7ec642-018b-4708-858f-a886ac930234", - "modified": "2021-01-06T18:30:56.735Z", + "modified": "2021-01-13T01:52:45.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.629Z", "id": "relationship--ec0da576-8481-4f25-af06-f078b75197b3", - "modified": "2021-01-06T18:30:56.735Z", + "modified": "2021-01-13T01:52:45.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.630Z", "id": "relationship--fd7ec173-30db-4faf-a6af-cc093116e657", - "modified": "2021-01-06T18:30:56.735Z", + "modified": "2021-01-13T01:52:45.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--a3eeb116-7324-4814-8362-1236195ce859", - "modified": "2021-01-06T18:30:56.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--b6e6bf4c-81e9-448f-8304-4707a84c17dc", - "modified": "2021-01-06T18:30:56.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.736Z", - "id": "relationship--7f7790be-a5bb-4387-8180-e7b4c3bc3172", - "modified": "2021-01-06T18:30:56.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--89d1d0f5-c7cf-442e-aa5f-79bafde53513", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--bab7c58c-c012-4d87-b4ba-227adc2f9a91", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--cbc649e1-a79c-4db4-a417-f311798d0ad9", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--ba4586ff-f28e-4de9-9cba-bfce0cdbf461", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--1b786ea6-a3b8-4461-8b84-e6edc36f06bf", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--20d72993-be83-4724-be3b-584624d3e023", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--486cb63a-9bbc-4907-9fab-eec96ce5939c", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--531f6130-b86b-4741-ab12-247093549a06", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--b0f7d0e2-81e7-4082-b018-6aa11d278334", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.738Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--7d1a7c5e-cc86-49a1-940d-e4c182bb3de1", - "modified": "2021-01-06T18:30:56.738Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.738Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--f0c203a2-f20c-4dd3-a425-3b6e1fc67354", - "modified": "2021-01-06T18:30:56.738Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--bf888a37-ec21-4d69-93cd-34fb8447851a", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--5f5244b2-7ff5-4ca0-8273-5a1fc0eb7faf", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--554aaeb0-0fbc-4b90-9082-76d00585c07b", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--168f13a3-f5a7-43d7-b4c4-c9e6af5c711e", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--27712803-c77b-4450-b705-837f2843001e", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.740Z", - "id": "relationship--0b9c121c-bb1e-49c0-a5fc-31433300ea31", - "modified": "2021-01-06T18:30:56.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.740Z", - "id": "relationship--27c0ac7e-877b-419e-a462-578eec401a54", - "modified": "2021-01-06T18:30:56.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--5229c7b0-f419-4f38-9121-030c92901ed7", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", - "id": "relationship--2be8aab8-b779-431a-bcb4-0aad51cc6a34", - "modified": "2021-01-06T18:30:56.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--9f3e14c3-660b-4523-bb3b-9e67fb5ff978", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--94c24e55-49fa-4963-a0e7-bb59978d33a5", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", - "id": "relationship--bbb01564-cd3b-4d39-b6a4-76a16ca3cf7c", - "modified": "2021-01-06T18:30:56.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--8088c536-a11d-4ae8-8512-c81121b9e462", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--e52cab00-b47e-4896-ae7c-e9adf01db954", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--6f01be70-b5f2-4bf2-8d46-4b9622ba123c", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.742Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--244b3e18-de4b-475d-ab18-e7383e795fdb", - "modified": "2021-01-06T18:30:56.742Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--ce1223e2-8bf3-4175-9fdb-d008c0326537", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--8d5447b5-c458-413f-8c66-0075437e9300", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--96477d0a-384d-42c2-a569-9df7b50e0230", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", - "id": "relationship--82bcac92-86b2-42cc-be9a-b0109820d155", - "modified": "2021-01-06T18:30:56.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.743Z", - "id": "relationship--71438390-ffeb-4ecd-a1f4-bef43e8170cf", - "modified": "2021-01-06T18:30:56.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--896aef95-898b-4f1c-a480-310f905d39f3", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--0a19ab15-7031-48e2-87b5-f5441571cd26", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--6fef1bdd-b413-4817-971f-f463ed8a7237", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--99b9d824-4793-4150-ab84-0dbd794534c0", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--1310dbc6-eb9e-4725-823d-a51e31b8bfe6", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--69bd2646-8bb1-41f8-a5ed-60adbb2e74d4", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--c7daed7d-d85e-47d6-8264-7d5988f3ea03", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--e0ef37a4-2bed-447d-ad97-8403f53093e2", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--d2bb2f20-9645-4002-90c7-d128d3120a50", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--4aa591e1-26a9-477f-9bdb-9c936bc37a1c", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--b1ae8d86-b2fa-4862-9d3a-de442be6de5c", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--89e75667-8af2-4cac-ad42-f12b71cd1f2e", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--32348e0c-f0af-4dc8-aaed-f792f81c2bf3", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--7989a141-9c5e-42ce-bdee-5b954f6d835c", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--f02cdc90-3773-486b-a698-cce5d5021c07", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--5e266b59-09b1-472b-ada6-156933dbbc65", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--ffea5c7f-4061-43c7-9b65-2d09c0f60dc3", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--78a8853e-fb7b-47a3-9c7a-fd79a1e3ad89", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--50c5faac-06c3-4c5d-aaaf-42e07300a212", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--7bf274a7-42d2-458d-95c8-a81dc876db79", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--5d4195d8-fde1-45e5-8bf6-d688210445d6", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", - "id": "relationship--08f4571c-1db8-4a19-8c63-3a9b15079429", - "modified": "2021-01-06T18:30:56.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--145cfc68-41fd-4ef4-b2b9-482d2739b3ac", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--a3245a4c-9424-4048-b700-9e1db32b64b0", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--c3818d8d-3245-43a3-9241-e0a623f4e13a", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.642Z", "id": "relationship--176aa5a5-4421-4be6-a752-299205114c38", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.642Z", "id": "relationship--344ed24a-51d8-41e3-9f5e-af394a0e880a", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", + "created": "2021-01-13T01:52:45.643Z", "id": "relationship--8c42374c-c9d8-45c5-9e1b-3ba868a16f94", - "modified": "2021-01-06T18:30:56.751Z", + "modified": "2021-01-13T01:52:45.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--2dbb76c5-b536-45ec-bd06-122094f383dd", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--381d2525-a52f-4abe-86ad-2c0fe67829d1", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--442c0439-070b-4ef3-bced-e0c00c8a7975", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--4d54c6a9-281e-4c60-a169-9ccc8e7a20fa", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", + "created": "2021-01-13T01:52:45.647Z", "id": "relationship--8ca3b2a1-922d-4c4d-b8fd-7327b77bea8c", - "modified": "2021-01-06T18:30:56.754Z", + "modified": "2021-01-13T01:52:45.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.755Z", - "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", - "modified": "2021-01-06T18:30:56.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.755Z", + "created": "2021-01-13T01:52:45.648Z", "id": "relationship--fe4ca4ea-548c-4796-b01a-b46b1ed22a9c", - "modified": "2021-01-06T18:30:56.755Z", + "modified": "2021-01-13T01:52:45.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.755Z", + "created": "2021-01-13T01:52:45.648Z", "id": "relationship--3909fa69-06b1-4321-8601-f4b9758ed3ee", - "modified": "2021-01-06T18:30:56.755Z", + "modified": "2021-01-13T01:52:45.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.755Z", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", - "id": "relationship--0ac63a3e-6a51-4805-ade8-3e340e137456", - "modified": "2021-01-06T18:30:56.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", - "id": "relationship--ddbf3c41-ea20-4ff7-9d12-344f319c6e7b", - "modified": "2021-01-06T18:30:56.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--3c56684c-4016-4532-a78a-19c1028f887a", - "modified": "2021-01-06T18:30:56.756Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--2fbb2c0c-8117-4a01-9fa4-5cbbca1c4120", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--422b49a4-590d-4d6d-b32e-f30ed75f020d", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--211ea139-c17e-4b1e-abf3-82b15ba42939", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--870e43c2-7a35-4205-8431-c3ae90d35ab1", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--3b9c407f-7d24-4922-bb6d-6002430d3c6a", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--19e83368-e496-4ae3-bfaf-a34081c96d36", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--a411ba43-9eee-4bd7-8bfa-2c5c3dd2283f", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--43dd5789-774b-47f0-99f1-19d467e9098e", - "modified": "2021-01-06T18:30:56.759Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--9694bb3b-fe3c-4ef9-8128-46e4201f659d", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--28e22e4a-2208-4290-a9d0-7e0e1edb3c79", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--0670f988-a350-41cc-a98c-846ad4202a0d", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", - "id": "relationship--0c628903-1d0b-4413-a6bc-0f601592058e", - "modified": "2021-01-06T18:30:56.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--3dd6291e-a761-4e7e-afcb-a4e0aaabcc02", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", - "id": "relationship--82c9706f-339e-4856-941e-e4901ee1e85d", - "modified": "2021-01-06T18:30:56.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--92292a8b-ceba-4504-b8aa-8ea83ce67229", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--eed5263d-b7ef-4333-bec0-257f29bb145c", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--d3722233-a775-46a0-b779-486599a8d7ce", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", - "id": "relationship--39006bc1-cb58-4372-b22b-39e2bdb97114", - "modified": "2021-01-06T18:30:56.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.761Z", - "id": "relationship--702977fd-2631-4bb5-ab8a-a89d9f6496d4", - "modified": "2021-01-06T18:30:56.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--69f594c4-f9a8-42aa-8b53-3265cf532f11", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--3245eaf1-47e8-4213-a17d-6ed4157e433e", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--30f1169d-f3f5-4c11-acf0-1b64deb42fb0", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--70e41dd8-0906-4854-9487-354d8f016cc3", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.762Z", - "id": "relationship--6f14af0e-2040-4de1-bab7-91b53ebd1c82", - "modified": "2021-01-06T18:30:56.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.762Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--4f98fbf1-cd5c-4039-80b2-d2668ab1ec8d", - "modified": "2021-01-06T18:30:56.762Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", - "id": "relationship--0ce114b5-6364-4c18-828e-e2e495e844b0", - "modified": "2021-01-06T18:30:56.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.763Z", - "id": "relationship--5866d81f-5ec8-47d8-82c9-17b8f9fee6a5", - "modified": "2021-01-06T18:30:56.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--daf5134e-4548-4884-91ce-55f057d9bfb8", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--af90c61d-de61-4266-bf67-eee18a02e79b", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--cfa5060c-1fa6-434d-9768-901768814d2c", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--fb4c27ea-7a94-498d-8aba-74220d2df9fd", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--b41e5bb1-63b5-4db0-8360-441ba6fe76b6", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--50172ffd-d6ce-44cc-b445-65b1e0a20bb3", - "modified": "2021-01-06T18:30:56.765Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.765Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--e140d071-a9da-4f8f-be73-8eab1e7aa9c2", - "modified": "2021-01-06T18:30:56.765Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--0bf4bdad-f638-487b-9fc9-058651805703", - "modified": "2021-01-06T18:30:56.766Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--a8c61f82-c94f-4e0c-9726-5c79d6aa30f4", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--ec881934-bb8d-4d2f-b702-7b6fd5c86a09", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.767Z", + "created": "2021-01-13T01:52:45.658Z", "id": "relationship--9f0f3bdb-0349-497b-8154-7c40c31e9060", - "modified": "2021-01-06T18:30:56.767Z", + "modified": "2021-01-13T01:52:45.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.767Z", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:56.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.767Z", + "created": "2021-01-13T01:52:45.658Z", "id": "relationship--c267b033-8390-417c-b726-6b08615775f4", - "modified": "2021-01-06T18:30:56.767Z", + "modified": "2021-01-13T01:52:45.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--f2e09003-21c1-4985-9faa-7e7ee2b2be3b", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--836ce798-5dc8-4ba9-8f32-f2f2527d5786", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--f4c821af-dddb-4b24-ab3c-f7e2069e7771", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--e70dfd62-dcb1-4f00-a28f-127b35bb617c", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--90dd96be-7b38-4955-83a9-1e2cf00415d7", - "modified": "2021-01-06T18:30:56.770Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--97c5d825-3bab-42bc-a3c8-9dd3c66d5c0b", - "modified": "2021-01-06T18:30:56.770Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--3188f5e3-27c3-46bc-852a-0b4cc36b96aa", - "modified": "2021-01-06T18:30:56.770Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--c849f173-b3ca-4aed-816c-46f2458d3d01", - "modified": "2021-01-06T18:30:56.770Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.771Z", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:56.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.771Z", - "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:56.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--78f6eea0-78fc-4628-845e-6ee09c54daa1", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", + "created": "2021-01-13T01:52:45.663Z", "id": "relationship--7fe628bd-653a-4ee6-a48d-154809ac990f", - "modified": "2021-01-06T18:30:56.772Z", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.772Z", + "created": "2021-01-13T01:52:45.663Z", "id": "relationship--c896cc2e-5cdc-45ac-8d82-f9cc16e09e8b", - "modified": "2021-01-06T18:30:56.772Z", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.772Z", + "created": "2021-01-13T01:52:45.663Z", "id": "relationship--fe2391db-54db-493f-8ecf-012ae68f9ce1", - "modified": "2021-01-06T18:30:56.772Z", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.773Z", + "created": "2021-01-13T01:52:45.663Z", "id": "relationship--436ed7c9-90d5-49bd-a00a-003f1f416d22", - "modified": "2021-01-06T18:30:56.773Z", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.773Z", + "created": "2021-01-13T01:52:45.663Z", "id": "relationship--4064f48d-2215-42ac-8974-6ab68ba8a77f", - "modified": "2021-01-06T18:30:56.773Z", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", + "created": "2021-01-13T01:52:45.664Z", "id": "relationship--24197f5a-3a3d-42b1-8095-5be46f060534", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:56.773Z", + "modified": "2021-01-13T01:52:45.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:56.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--9dd7b879-5cd1-411e-b60c-9f67ff2a42a7", - "modified": "2021-01-06T18:30:56.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--b583ec41-8c6e-499c-b991-caee330f10d5", - "modified": "2021-01-06T18:30:56.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:56.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:56.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--e960f961-79fc-46a9-9524-257bb2cc728a", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--4f851df1-b853-4e2b-97a6-a902225f0693", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--9d291795-eb5b-43b7-8fde-dd779e2b5400", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--a0caff2a-3906-47a6-9f74-2cfb31896021", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--6348b7ad-5524-4bb7-b722-d09114678576", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--ed8bf38e-c7fe-4176-bdde-bf5552ad1882", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--93a9a2db-b976-4862-b4b6-ddb727e92448", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--9ddad2de-a39c-4aa9-8950-e1af6b807562", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--704651eb-a69f-431b-a4b5-32ea1cc8392c", - "modified": "2021-01-06T18:30:56.776Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--6ff115b1-1f88-47b6-b530-ffba285b7679", - "modified": "2021-01-06T18:30:56.776Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", - "id": "relationship--32955df9-6cc5-4e78-bf0a-d9828e23d344", - "modified": "2021-01-06T18:30:56.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--62174f33-6221-430c-91e0-18881c10f648", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--843d6e37-e74b-47bd-b2e2-7428c6703041", - "modified": "2021-01-06T18:30:56.777Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.777Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--ae296517-14c1-4594-9fe6-7533e3012070", - "modified": "2021-01-06T18:30:56.777Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--514d7706-feb6-4c80-bec1-2ca9f5ea7919", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--4c4d3b01-dcc7-4d83-9e36-36a787475b3e", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", + "created": "2021-01-13T01:52:45.667Z", "id": "relationship--22a7779c-372e-40d9-be36-ca19d19bfdd2", - "modified": "2021-01-06T18:30:56.778Z", + "modified": "2021-01-13T01:52:45.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.779Z", - "id": "relationship--651364df-6ef9-4d6e-a9a3-49fa2f14b513", - "modified": "2021-01-06T18:30:56.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--86fc1386-aeb4-4b06-abb7-6ae38c400463", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--7aa165fa-5b11-402d-be6b-93a55739a186", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", - "id": "relationship--a237da69-b656-4279-a5f8-0b2af22bc32a", - "modified": "2021-01-06T18:30:56.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--5b320557-189e-47f9-a617-2180f9d13ad3", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--8858f181-63d6-45d1-82b1-932614480a34", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.669Z", "id": "relationship--624edbf5-9300-4dd3-b3a7-121822286988", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", - "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:56.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--860c3e47-8282-4563-a994-3d7b865c024b", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--996a0c59-f278-45b2-b90d-11e0881b2070", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--4da7f98b-94fe-43b7-9ec3-01d376d978b8", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--af7d6f1c-0925-4104-8f20-480d34619a28", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--50f08703-35d7-460d-a32b-b3a4cc7f1495", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--417b0f54-827b-4c9f-b4b5-c6a6d8e10669", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--b25127c6-edc5-4f7a-ba77-3a8dd88f82ac", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--09ef4032-4220-4866-9ea3-883cb242a1c8", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--bbeeb7eb-e782-459d-8f2d-a860cc7cbd97", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--63cd5795-aa6e-4dab-b49b-1e02d0d3ff21", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.786Z", + "created": "2021-01-13T01:52:45.672Z", "id": "relationship--1dc6fc61-00b6-4e62-82b6-16d37c27373f", - "modified": "2021-01-06T18:30:56.786Z", + "modified": "2021-01-13T01:52:45.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--1c1ff14f-906b-4391-a607-88ca9b78b2e2", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.787Z", - "id": "relationship--3b7675b5-470e-466f-af19-d8de449cd336", - "modified": "2021-01-06T18:30:56.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.787Z", + "created": "2021-01-13T01:52:45.673Z", "id": "relationship--1fabd42a-fff2-4c09-9bdc-66827dc75293", - "modified": "2021-01-06T18:30:56.787Z", + "modified": "2021-01-13T01:52:45.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.787Z", + "created": "2021-01-13T01:52:45.673Z", "id": "relationship--b25a5bac-fc97-40bb-978c-3df82a37edc1", - "modified": "2021-01-06T18:30:56.787Z", + "modified": "2021-01-13T01:52:45.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.787Z", - "id": "relationship--75d0d317-dbbe-46f6-9dc4-24a297599ab9", - "modified": "2021-01-06T18:30:56.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.788Z", - "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:56.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.788Z", - "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:56.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--14aee21c-c385-4e1d-ad67-4618edc1fe55", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--6cce9b1e-42e6-478b-9f04-fc9987dc34e0", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--30a9189b-9e79-4200-9da0-2f06bfe48e48", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.676Z", "id": "relationship--652c6152-09dc-4977-b0e9-e428b53a71a4", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.676Z", "id": "relationship--23571a16-d9af-4ff0-b750-2b01db781620", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--ba58f6f2-3153-4f2b-8b53-407973c8adc5", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--3160574f-9c57-46da-986b-d4d3534b7ae1", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--e2398a61-fe65-4fad-8191-4ca122a947f3", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--48b20f40-e078-4365-9f16-ce3119a42d5d", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--af383c0f-8cf7-4a6e-b6ac-1d5182c878c5", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--2e142522-b0c0-4d0d-80f9-13b50458fb9c", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--bcc6868a-ec43-40e1-afa1-2d7975a16c59", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--90902a5e-8493-4c20-8a25-858cfea2e168", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--acb42d64-8dd6-4962-97a9-c6cd3bcb88b4", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--8b6bac93-8799-4689-a0d8-94276c520427", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--f40dcbc1-9ecf-479e-9f63-a474dd016690", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--3775ff58-eff3-4279-b941-a87456428f79", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", + "created": "2021-01-13T01:52:45.678Z", "id": "relationship--f49c95d3-3c17-4d5d-b430-a96fe7b090e5", - "modified": "2021-01-06T18:30:56.793Z", + "modified": "2021-01-13T01:52:45.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--8f657b3f-cd9d-43ce-83c9-9f43ba7eaba9", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--2aab9a5c-3f2a-462e-9b87-0ebed329d58d", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", + "created": "2021-01-13T01:52:45.678Z", "id": "relationship--491400f9-3017-427e-9d78-e1444222519a", - "modified": "2021-01-06T18:30:56.793Z", + "modified": "2021-01-13T01:52:45.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--fc6cd7a1-7199-4937-bcf0-b339f3a3b94a", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--82056438-d444-4376-bcdb-f38f25c4e5ef", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--20489337-33ec-4fde-bdb7-76c0164b96ea", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", + "created": "2021-01-13T01:52:45.679Z", "id": "relationship--13b31aef-ecd3-4e1d-8e6e-499267269941", - "modified": "2021-01-06T18:30:56.794Z", + "modified": "2021-01-13T01:52:45.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--c4cb70ac-2165-4ad5-bc55-852aff08f0f8", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--4bb52f81-869b-4f08-9f44-5c3fee38eb2a", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", + "created": "2021-01-13T01:52:45.679Z", "id": "relationship--4caac18b-7a04-40e1-adf6-c3ad8152055f", - "modified": "2021-01-06T18:30:56.794Z", + "modified": "2021-01-13T01:52:45.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--306f2c5d-dcc7-4d3d-a50e-9c3e3c4f18d5", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--fd709396-7f95-477a-aeb4-75d2c7664699", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--28142779-69e8-4663-9640-48433e51d5a5", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", + "created": "2021-01-13T01:52:45.680Z", "id": "relationship--ff009bde-91e2-47a9-b872-db3c71ab469f", - "modified": "2021-01-06T18:30:56.795Z", + "modified": "2021-01-13T01:52:45.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--56836170-0fa0-4cda-8e35-bcda6b4952f4", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--5f1951f3-c918-435e-a9a5-8f92bbc87f32", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", + "created": "2021-01-13T01:52:45.681Z", "id": "relationship--15620d63-cb43-4849-82dc-9cf13ea50412", - "modified": "2021-01-06T18:30:56.795Z", + "modified": "2021-01-13T01:52:45.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--a4c8e26e-18d5-44c9-9cc6-e9f51337e106", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--8674efa9-79a1-4b41-82d9-ca3689b49919", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--3fc0ca7b-a631-4e16-91ea-1f7097560a96", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", + "created": "2021-01-13T01:52:45.681Z", "id": "relationship--3472da28-4145-48ba-b0f9-bd8fcd29b196", - "modified": "2021-01-06T18:30:56.796Z", + "modified": "2021-01-13T01:52:45.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.797Z", - "id": "relationship--bd2826a1-6be8-49af-ad9f-cf945189c61b", - "modified": "2021-01-06T18:30:56.797Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--a9c6a077-187d-49f0-9847-7d629246c29d", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--d384fb4d-95b0-4b64-9e6c-c23d40e486f9", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--b59e646a-3b00-413e-9ce7-b97fde82365b", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--ec704b12-7088-46c6-a8af-9e7a5115e0f2", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--0bb2413f-d436-45eb-b13d-d2885c1bca92", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--04fb248f-6479-4aa1-a128-a5cbde269523", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--dd2ac1ea-362f-4468-b326-e4f2cbeac8c8", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--e41ed91e-c094-4afe-9a20-159285f9290c", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--ead140f2-aba9-4e4f-a3c3-4b1de5b2f8c9", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--ba0f8eda-7710-4a07-a992-3e07c1c204fb", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--b8bf3f8f-dba8-4c70-8a1a-2852caf85036", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", - "id": "relationship--0f987b5b-8175-4d35-8d0f-69f80af19013", - "modified": "2021-01-06T18:30:56.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.800Z", - "id": "relationship--922d7bce-6a3d-4d67-b909-df8c91f7e85c", - "modified": "2021-01-06T18:30:56.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", - "id": "relationship--158fcbd7-426d-49c3-95b5-069d4da94d11", - "modified": "2021-01-06T18:30:56.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", - "id": "relationship--c36910ad-5157-40e0-addf-9af1e7abcf75", - "modified": "2021-01-06T18:30:56.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--9baa00ca-896f-4900-b00b-bed3255ebaf6", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--a7e653eb-a7ff-43a0-be41-545867f5bfa8", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--9c14216e-42f6-4031-8af3-c5e6aa77e1fc", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--80cbb550-91df-4d79-8e7a-4e80ad8531f0", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--aa6959ab-8f9f-4bcf-855f-99097d41956f", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--bd3873a5-5f10-46e2-bb59-63adccb47965", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--20bd68a7-d4b2-4e78-9ec7-b482663a5a8c", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--fd14451e-64ac-4377-bd04-e78bbb7202c3", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--ae722e58-0f97-4d18-b76b-2ef6b67ea4dc", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--61743c56-b9d7-4c77-a640-5e48985a47a0", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--5a22c73b-ebcb-49b1-9cd2-e425196c9bb5", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--f47401a9-eb5e-47ee-ad8f-b659c84b04bc", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--6f5b5550-755e-446b-bf6d-300b6bd6cfb9", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--93856b85-cff6-4678-976f-b314dc4d515d", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--dd7b7223-d047-4147-9f6c-2eb200d20f62", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.687Z", "id": "relationship--9acd8b67-2fd1-4f98-9f35-70fb1d0798f5", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--bcc994b0-b1cb-474f-8c05-4d284fb284d5", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--c3bc0e04-cc63-4b44-9d2c-ce5193f2b0b1", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", + "created": "2021-01-13T01:52:45.688Z", "id": "relationship--de8598c6-e85e-4efc-a040-a453901a5d1b", - "modified": "2021-01-06T18:30:56.805Z", + "modified": "2021-01-13T01:52:45.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--92aeed10-428d-4da2-bef6-6c002a3fbefc", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.806Z", + "created": "2021-01-13T01:52:45.689Z", "id": "relationship--641c41f9-7004-4da2-9ffc-52dc32213a5d", - "modified": "2021-01-06T18:30:56.806Z", + "modified": "2021-01-13T01:52:45.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.806Z", + "created": "2021-01-13T01:52:45.689Z", "id": "relationship--4e2ce44e-7cfa-49b2-b8c9-8e73c0d575a3", - "modified": "2021-01-06T18:30:56.806Z", + "modified": "2021-01-13T01:52:45.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--1e8ddd69-755b-41d6-b81c-b911db71a414", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--81b488e1-7c07-4a4b-bd68-47fccd56a66b", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--da55c2e6-5978-47f6-9c20-9f328a576947", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--cf3ee7f1-9d01-4df1-80af-f74d165230a4", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--6f9b333f-0347-4908-a171-81c710de090d", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--f42c48a9-ec0a-4fa4-a3e4-78e432e6de44", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--8f6efb77-c959-4c1a-89e9-00bcf3ddbfaf", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--347660cf-1490-498a-84c5-e45337d4de80", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--8740a03c-4ef3-4879-86db-3e8f6f964be5", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--df043e2d-980b-42ff-b8ad-c768fc13a6be", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--aae7b879-21d5-4575-bd69-bc6dc6bbb5c1", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.809Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--42f7e2bf-8602-4a82-be9b-8512ba3611b6", - "modified": "2021-01-06T18:30:56.809Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.809Z", - "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:56.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.810Z", + "created": "2021-01-13T01:52:45.692Z", "id": "relationship--bb9f0365-dad9-4671-8d98-26b124e00e48", - "modified": "2021-01-06T18:30:56.810Z", + "modified": "2021-01-13T01:52:45.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.810Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--00052a6f-7b5e-4f9d-9809-7b1827fd24ee", - "modified": "2021-01-06T18:30:56.810Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--2da03a06-0e2f-46b0-bb5d-40aba346e38b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--8ede081e-97b7-4ace-b1b4-6ce8d8b326f0", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--35724757-5003-4357-8971-13f9024191be", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--60d446bc-8fd6-4c97-b6d7-921914264246", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", - "id": "relationship--203a087b-7a81-4e3a-a279-d499c5fbd20d", - "modified": "2021-01-06T18:30:56.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--40df831c-d484-4f97-9752-3e2525efc001", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--14f5f657-fb6e-4ad3-99d0-5447c570fa5b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--65fb543f-551e-4a43-b035-08a68792918b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.812Z", + "created": "2021-01-13T01:52:45.694Z", "id": "relationship--834eac3c-301d-4a6f-a7cc-b3d489306018", - "modified": "2021-01-06T18:30:56.812Z", + "modified": "2021-01-13T01:52:45.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.812Z", + "created": "2021-01-13T01:52:45.694Z", "id": "relationship--37703560-0593-4da0-84b7-05f6330c1e9a", - "modified": "2021-01-06T18:30:56.812Z", + "modified": "2021-01-13T01:52:45.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.813Z", - "id": "relationship--9c08577f-18c8-4ee4-b0d7-e118bbc193f2", - "modified": "2021-01-06T18:30:56.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.813Z", - "id": "relationship--e063d1d2-c197-4abd-b6bf-2439adada358", - "modified": "2021-01-06T18:30:56.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.813Z", + "created": "2021-01-13T01:52:45.696Z", "id": "relationship--2266474e-b356-4a9e-9ddd-bbdbb1270423", - "modified": "2021-01-06T18:30:56.813Z", + "modified": "2021-01-13T01:52:45.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.696Z", "id": "relationship--df0aa635-6d4d-4e86-9660-e3e1816d973c", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--ebac7630-05e2-4bce-be69-76f9af4d53e8", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--9d8fe4db-0e55-4110-96aa-a1830d281d04", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", - "id": "relationship--9775284b-0ea3-4e35-bcca-5733771c110b", - "modified": "2021-01-06T18:30:56.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--b5e127e2-4e24-49cd-86d5-bcf9b5608e69", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--bd3e4cc4-4cef-4969-a3ea-f6f1990976c0", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--578ced75-685c-4c5c-9909-8fb83b2dd2f5", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--0840c413-e8d6-4c73-a9e3-38c91c5b6182", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--9c26f639-a67f-4506-913e-8977074d4b54", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--3bdbdc08-37eb-4565-afd9-46b0190ebb84", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.698Z", "id": "relationship--fc50004a-9bc8-4c86-b765-f1807d4a35f1", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--c7d497ab-2e5c-4a46-9a8e-8e8263bb23e2", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--f7d8b9c8-9335-41c8-9101-0df156dfba2d", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--1a8d94cd-3f13-4762-b522-4d447a5d4ddd", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--13c49aee-1362-42c0-8456-a688d9a8f166", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--0d7b8c55-6ea4-463f-948f-212f4689de7b", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--eda453b2-7c91-4424-ad8f-94c46491d565", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--50341bfb-5a43-40ff-b9f1-93d88ba1d755", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--effc07b3-90a6-4555-8cde-43fa7b2ff792", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--86c51465-be9a-4db1-a629-5458c21bbf39", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--955c353f-42e8-4041-a364-d30f44843a5e", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--5e52e234-bd2d-4998-aa3a-8233bff2a62e", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--b31dec2e-4996-4531-b81b-cffa438fd28f", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.820Z", - "id": "relationship--240a4ed4-ebb7-4ae3-ac41-e53261b7fbaf", - "modified": "2021-01-06T18:30:56.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.820Z", - "id": "relationship--5c2faa17-e51d-44ed-947e-3de1be3cfe72", - "modified": "2021-01-06T18:30:56.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", - "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", - "modified": "2021-01-06T18:30:56.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.701Z", "id": "relationship--60750c58-dda5-43ac-93c4-113418d6d9a9", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.701Z", "id": "relationship--f04c6f3b-6670-47a1-83c5-371514e62732", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", - "id": "relationship--52f70eaa-9b91-41b4-bda3-e4e63b1cc9dc", - "modified": "2021-01-06T18:30:56.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--7773d57c-9fbd-4003-a657-c1645f835883", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--691e76ee-5178-463c-89d4-9a1f0c21aaf1", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--37326877-f9c8-4eaf-b7bc-aebdd90e2cb4", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--7728c165-90d3-4d9c-9751-8779fd2f6498", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--1392f893-c3d4-4b78-8ea5-fa5a78a30cd2", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--23f92a32-728a-4e92-ba60-7d3e60561c62", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--da50bfd6-f360-4f1d-b835-0d8ddcee1f76", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--8cc480aa-aed9-4ab1-91e6-054b9fba1bc4", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--f88e9580-c8bb-47ab-8121-64a11c1af9f5", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--9178c71d-f943-4404-b76d-4a14a89d2533", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--324ac354-511b-4de8-a32e-4cbd2be60d7c", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--3dfebf6b-658a-414b-bf78-a728a338c6b0", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--9a844f69-749c-444d-9e8f-b4d6bdf7cda7", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--f221f0c6-7228-4075-aa16-3b4a15fd981a", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--8f79b738-97c5-4124-baa8-8cf3d64f9045", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--b696f0f1-df97-482f-98e1-ac8b7f2395fc", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--eb30ca30-e6be-4f4f-8299-f4cf6f6fa66a", - "modified": "2021-01-06T18:30:56.825Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--baac8c82-644a-493b-a732-b0e5ee657085", - "modified": "2021-01-06T18:30:56.825Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", - "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:56.825Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.826Z", + "created": "2021-01-13T01:52:45.705Z", "id": "relationship--7a8d2e7f-9ad8-45df-8c90-a00517f37379", - "modified": "2021-01-06T18:30:56.826Z", + "modified": "2021-01-13T01:52:45.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.705Z", "id": "relationship--4d312b4d-25a8-4246-a369-e44a6d88f882", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--c4bf134c-78ee-46fc-900b-c618a7f09c6c", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--fb73a7e8-b6f6-43f1-9a69-e7ec9d7eab8d", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--df19c458-4c84-46f3-abed-63ba01de1fdb", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--ca8413e5-5629-438a-a857-d3532ad27bc9", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--110848df-2aab-4026-a8f1-a5f221f27011", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--1d23a625-a7ff-4e1c-9b99-f289fe933f41", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--b5dd2f7c-c1fa-47f7-b514-572ce57b47a7", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--cfdee44c-3e45-4ef3-bbf9-3fe4c7340f81", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--8fdc4e97-9986-4d0d-af34-a4615a6e8131", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--9b663dde-5413-4c35-aa5d-d907ec5ed591", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", - "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:56.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.829Z", + "created": "2021-01-13T01:52:45.708Z", "id": "relationship--38ac7a25-fbc0-49d3-805c-6df7cd977d6a", - "modified": "2021-01-06T18:30:56.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--8d4b93a2-1eb1-4811-8a23-c05d745d9b30", - "modified": "2021-01-06T18:30:56.830Z", + "modified": "2021-01-13T01:52:45.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--ee8717b5-c71c-477b-b0f7-e7e37046dff7", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--65ba0724-10c3-405f-9ecc-1701bc3036a3", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", + "created": "2021-01-13T01:52:45.708Z", "id": "relationship--b44a12ef-1d5d-4404-bf96-82ea05fef807", - "modified": "2021-01-06T18:30:56.830Z", + "modified": "2021-01-13T01:52:45.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--4c663817-68d4-4c9c-95f0-b9c2a26a37a5", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--714a8bdd-3ebf-4ded-8620-27b0b2b3709f", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--9c5e5c55-2b72-4740-b69a-0da5f02df4be", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--fa77fb41-f476-4ec8-9ea6-09977e322964", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--1f964a18-8254-4e9b-a610-f1a454d369ff", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--b0621221-b5bf-4ad7-bd47-1ddda820959c", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--61a2ac9b-d469-4ad5-bc44-8989bc3759e3", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--9860495c-0a1e-4baf-b333-254b924ea68a", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--e4bc1f7d-af80-4660-81bf-2438a3d7c52a", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--58c8ddc4-e265-4e75-812d-23a9f1fb3b3d", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.710Z", "id": "relationship--d5954a58-1105-429a-8d03-ed3c00dda8b6", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.833Z", - "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.833Z", - "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.835Z", + "created": "2021-01-13T01:52:45.711Z", "id": "relationship--f4549a89-9bfd-44c4-99b0-f54f00cd0082", - "modified": "2021-01-06T18:30:56.835Z", + "modified": "2021-01-13T01:52:45.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.711Z", "id": "relationship--33aac7fc-5bb9-4a92-ba24-63449855467a", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--fdd9f99a-feaf-46d6-a495-6d9e9bbd03ad", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--a53d9c02-ce3c-475d-99ef-8fe59c677452", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--68e41a68-9ec2-410f-9372-e3292331cd84", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--d9e79a24-712e-4191-b525-22aeab9d7790", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.838Z", + "created": "2021-01-13T01:52:45.714Z", "id": "relationship--fcae3393-4516-4822-a512-1c94199a67d1", - "modified": "2021-01-06T18:30:56.838Z", + "modified": "2021-01-13T01:52:45.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.838Z", + "created": "2021-01-13T01:52:45.714Z", "id": "relationship--1099c427-5ad4-4bbc-a7e7-a0ec36436383", - "modified": "2021-01-06T18:30:56.838Z", + "modified": "2021-01-13T01:52:45.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--6e912249-b7a8-4198-8161-b0e3bfebed24", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--333bc28a-12df-44c5-a794-1173c4f1bdc0", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--8fc7feed-bd36-4afa-8f8e-495c8d2f9a34", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--56d4b4e1-dd52-4d8f-a557-ec84c84b674d", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--d590fb85-caf2-4cfe-aa55-50bac6d69afd", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", + "created": "2021-01-13T01:52:45.716Z", "id": "relationship--1dd8663a-5a11-4d45-b0f6-51d008890a32", - "modified": "2021-01-06T18:30:56.840Z", + "modified": "2021-01-13T01:52:45.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", + "created": "2021-01-13T01:52:45.717Z", "id": "relationship--492da6a5-5354-4ff4-b9b3-82dfe1a60fb9", - "modified": "2021-01-06T18:30:56.842Z", + "modified": "2021-01-13T01:52:45.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.843Z", + "created": "2021-01-13T01:52:45.718Z", "id": "relationship--a1cc4ac2-df0b-474e-8e0a-db97ac2e53b0", - "modified": "2021-01-06T18:30:56.843Z", + "modified": "2021-01-13T01:52:45.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.843Z", + "created": "2021-01-13T01:52:45.718Z", "id": "relationship--9ffed294-f596-4925-b53a-5a33184e38f0", - "modified": "2021-01-06T18:30:56.843Z", + "modified": "2021-01-13T01:52:45.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--941b5343-c3fd-4abd-88d9-ed0e9c1408cc", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--b200c624-32b3-42a3-9509-5026b0031b2e", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--afea85eb-76e6-4e6e-a7f2-fed7e75c0ab6", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.846Z", - "id": "relationship--7d9113c6-4604-44d8-a4cb-dafbabda429a", - "modified": "2021-01-06T18:30:56.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.846Z", - "id": "relationship--8acff36d-4217-4807-8c5f-a6c99421e76d", - "modified": "2021-01-06T18:30:56.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.847Z", + "created": "2021-01-13T01:52:45.720Z", "id": "relationship--0eec9fe1-bc81-4c23-aae9-f6584cd5aa9c", - "modified": "2021-01-06T18:30:56.847Z", + "modified": "2021-01-13T01:52:45.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", + "created": "2021-01-13T01:52:45.721Z", "id": "relationship--ac34f175-151a-43a9-8c0f-810b175cd167", - "modified": "2021-01-06T18:30:56.848Z", + "modified": "2021-01-13T01:52:45.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", + "created": "2021-01-13T01:52:45.721Z", "id": "relationship--152e36f3-104f-4bf1-a846-774032dba0f3", - "modified": "2021-01-06T18:30:56.848Z", + "modified": "2021-01-13T01:52:45.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:56.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.848Z", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:56.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--e4d010ba-de5d-4d62-a61b-80e67a53cbcd", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.852Z", - "description": "Continuous Monitoring", - "id": "relationship--f1119991-bb3c-454b-b2ed-d7837bb09946", - "modified": "2021-01-06T18:30:56.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.854Z", - "description": "System Monitoring", - "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:56.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.854Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.723Z", "id": "relationship--c7dafb2d-afac-4776-be91-c1ee89368c25", - "modified": "2021-01-06T18:30:56.854Z", + "modified": "2021-01-13T01:52:45.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.856Z", - "description": "Continuous Monitoring", - "id": "relationship--06b33ad1-70c6-4d63-8ecc-8c1bf1a3cee4", - "modified": "2021-01-06T18:30:56.856Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.857Z", - "description": "System Monitoring", - "id": "relationship--63e77486-01d0-42f7-8bea-855deb83b65b", - "modified": "2021-01-06T18:30:56.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.857Z", - "description": "System Monitoring", - "id": "relationship--fa273daa-f23b-4954-bd50-8c11a2a5d54a", - "modified": "2021-01-06T18:30:56.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.859Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.726Z", "id": "relationship--abed5a24-d643-43be-906a-24f748661f08", - "modified": "2021-01-06T18:30:56.859Z", + "modified": "2021-01-13T01:52:45.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.860Z", - "description": "System Monitoring", - "id": "relationship--37703560-0593-4da0-84b7-05f6330c1e9a", - "modified": "2021-01-06T18:30:56.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.860Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.728Z", "id": "relationship--fd32e680-b86f-4e80-8fae-de85e9ddc28c", - "modified": "2021-01-06T18:30:56.860Z", + "modified": "2021-01-13T01:52:45.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.862Z", - "description": "Continuous Monitoring", - "id": "relationship--298f45ac-e5ae-4a87-be10-efecfaded690", - "modified": "2021-01-06T18:30:56.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.864Z", - "description": "System Monitoring", - "id": "relationship--3bdbdc08-37eb-4565-afd9-46b0190ebb84", - "modified": "2021-01-06T18:30:56.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.864Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.731Z", "id": "relationship--8e7053ce-ae62-48b8-93ab-afb713646ecc", - "modified": "2021-01-06T18:30:56.864Z", + "modified": "2021-01-13T01:52:45.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.866Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.732Z", "id": "relationship--483331ef-251a-4543-8af8-9d1b6c4ebaa2", - "modified": "2021-01-06T18:30:56.866Z", + "modified": "2021-01-13T01:52:45.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.868Z", - "description": "System Monitoring", - "id": "relationship--b31dec2e-4996-4531-b81b-cffa438fd28f", - "modified": "2021-01-06T18:30:56.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.869Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.733Z", "id": "relationship--12b9af92-5522-4811-8ff1-7689dcbf2c9f", - "modified": "2021-01-06T18:30:56.869Z", + "modified": "2021-01-13T01:52:45.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.870Z", - "description": "Continuous Monitoring", - "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:56.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.872Z", - "description": "System Monitoring", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.872Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.872Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.735Z", "id": "relationship--9bcf318b-c085-44fc-929c-3e0d50d97499", - "modified": "2021-01-06T18:30:56.872Z", + "modified": "2021-01-13T01:52:45.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.874Z", - "description": "Continuous Monitoring", - "id": "relationship--ad8b6fc9-d63d-42b1-a64b-0ff61997d6b0", - "modified": "2021-01-06T18:30:56.874Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.876Z", - "description": "System Monitoring", - "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:56.876Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.876Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.737Z", "id": "relationship--ee801d10-6a8a-492f-82ac-df3c013a473a", - "modified": "2021-01-06T18:30:56.876Z", + "modified": "2021-01-13T01:52:45.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.878Z", - "description": "Continuous Monitoring", - "id": "relationship--3c7eb290-48cf-4be7-91ee-ce18bac74f2d", - "modified": "2021-01-06T18:30:56.878Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.879Z", - "description": "System Monitoring", - "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:56.879Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.879Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.739Z", "id": "relationship--4bcd67cb-b38b-41a1-8312-5b8ff83ac022", - "modified": "2021-01-06T18:30:56.879Z", + "modified": "2021-01-13T01:52:45.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--018a308c-fce8-496d-ae6a-cd3ac01277fd", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--eddcf992-62b5-46b7-90c6-866c484bb1be", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--72f2ac30-6c66-411a-82dd-76861b16581a", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.882Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--7ef5ae87-66ef-4aeb-ba10-5a4ad5a3331c", - "modified": "2021-01-06T18:30:56.882Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--548ad602-7337-48ee-a6e8-2d1a028807e1", - "modified": "2021-01-06T18:30:56.883Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.883Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--57b42754-6462-4d63-9a5c-0756ec7e495a", - "modified": "2021-01-06T18:30:56.883Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--85b7a213-17f0-4060-9435-b9471ad37753", - "modified": "2021-01-06T18:30:56.884Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--faf481c5-5baf-4f1f-ac5b-2ddb00b154a6", - "modified": "2021-01-06T18:30:56.884Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--93f83c94-04a6-44af-9436-0435d9875b1c", - "modified": "2021-01-06T18:30:56.884Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.885Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--7b9206af-de50-43d3-b418-a0edee35569f", - "modified": "2021-01-06T18:30:56.885Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.885Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--bef76ab1-465f-446b-9f42-78d4f3ae0dbc", - "modified": "2021-01-06T18:30:56.885Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.887Z", - "description": "Flaw Remediation", - "id": "relationship--aae7b879-21d5-4575-bd69-bc6dc6bbb5c1", - "modified": "2021-01-06T18:30:56.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.889Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.744Z", "id": "relationship--dabb2954-da6b-463f-afe8-b0de92e39502", - "modified": "2021-01-06T18:30:56.889Z", + "modified": "2021-01-13T01:52:45.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--50fd277a-af39-4950-b186-57c4a8542361", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--f07a1014-848e-45fa-bdea-6ac40ad82570", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--f5f9dbe4-aaf9-4572-a6cc-bca82ad55e79", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--d3354d50-a5dc-4e50-8ad8-2343a4b64d7f", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.893Z", - "description": "Baseline Configuration", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.893Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.893Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--5ca6082e-3d01-4750-839b-3a37cb720e98", - "modified": "2021-01-06T18:30:56.893Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.894Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--188aee4b-eadd-43cd-850e-4265043b9259", - "modified": "2021-01-06T18:30:56.894Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.894Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--42676682-9dfb-4830-99fd-c94d546415b8", - "modified": "2021-01-06T18:30:56.894Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.895Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.750Z", "id": "relationship--27eb81b2-3a3f-4f2f-a033-0a39bcf6a66d", - "modified": "2021-01-06T18:30:56.895Z", + "modified": "2021-01-13T01:52:45.750Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.896Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.751Z", "id": "relationship--99b9c7c0-0687-4e0a-88cb-719a1e96559d", - "modified": "2021-01-06T18:30:56.896Z", + "modified": "2021-01-13T01:52:45.751Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.898Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.752Z", "id": "relationship--a1133d08-6060-4602-a836-67af96ca2fcb", - "modified": "2021-01-06T18:30:56.898Z", + "modified": "2021-01-13T01:52:45.752Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.900Z", - "description": "Vulnerability Scanning", - "id": "relationship--9dae6268-83d9-41bf-87eb-1b10f5cb15b9", - "modified": "2021-01-06T18:30:56.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.902Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--b668c0b1-dbd2-4f9b-bed9-198f5cf8c9ab", - "modified": "2021-01-06T18:30:56.902Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.902Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--63ea419c-c06f-4b0f-9808-9c35ca413468", - "modified": "2021-01-06T18:30:56.902Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.903Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--c9ade789-3b7a-48a9-936c-c08210139966", - "modified": "2021-01-06T18:30:56.903Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.904Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--80eeb6b6-4aac-4400-be78-da04581eaa0d", - "modified": "2021-01-06T18:30:56.904Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.904Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--bda3d811-2107-4dfb-9a72-79f2f6a84544", - "modified": "2021-01-06T18:30:56.904Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.905Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--833852ac-450b-46c1-a4ff-61715d547b10", - "modified": "2021-01-06T18:30:56.905Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--c4fc19f2-5952-4ff4-a0b3-f7cada0d3cab", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--7b4ec88f-31cb-4154-a40e-843dccbf068b", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--b98f20bf-110e-48c4-8023-8a72026b9879", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.907Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--179fdb4d-d730-4810-9c0b-fe6c524ea458", - "modified": "2021-01-06T18:30:56.907Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--4b7aa4e4-55e4-45bc-9c9f-26826f03ffbb", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--b43f66a4-3efc-499a-84b6-c127a713c70a", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--de2a8b87-08d3-4c01-9e8e-a8e1bb6c61a3", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--bb2d7a81-802d-4e67-8b8a-f2c99f3896ec", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--d7cc0477-2f3d-40ae-9292-dc1e56b50b82", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.909Z", - "description": "Flaw Remediation", - "id": "relationship--1392f893-c3d4-4b78-8ea5-fa5a78a30cd2", - "modified": "2021-01-06T18:30:56.909Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.911Z", - "description": "Flaw Remediation", - "id": "relationship--eb30ca30-e6be-4f4f-8299-f4cf6f6fa66a", - "modified": "2021-01-06T18:30:56.911Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.912Z", - "description": "Flaw Remediation", - "id": "relationship--8fdc4e97-9986-4d0d-af34-a4615a6e8131", - "modified": "2021-01-06T18:30:56.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.914Z", - "description": "Flaw Remediation", - "id": "relationship--1023e63c-417e-4372-8617-8cff4bb2e6c4", - "modified": "2021-01-06T18:30:56.914Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.915Z", - "description": "Flaw Remediation", - "id": "relationship--b5a16153-be26-43d9-abb8-54e0f69bb33e", - "modified": "2021-01-06T18:30:56.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.915Z", - "description": "Flaw Remediation", - "id": "relationship--09efc3dd-53c3-46ce-b28b-9be67934887c", - "modified": "2021-01-06T18:30:56.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.918Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.766Z", "id": "relationship--a62858b9-3a70-4ade-ae71-79a5981a0d81", - "modified": "2021-01-06T18:30:56.918Z", + "modified": "2021-01-13T01:52:45.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.919Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--36c180aa-e929-41af-9990-e5f8ff92069f", - "modified": "2021-01-06T18:30:56.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.922Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.768Z", "id": "relationship--aa2089e9-f3dd-4ff7-a686-e1654bace028", - "modified": "2021-01-06T18:30:56.922Z", + "modified": "2021-01-13T01:52:45.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.924Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.769Z", "id": "relationship--8794f8b1-b35f-44b4-ac1f-b7334c441235", - "modified": "2021-01-06T18:30:56.924Z", + "modified": "2021-01-13T01:52:45.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.926Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.770Z", "id": "relationship--ae54d4e5-5dc9-4e06-ae29-234477c5f60c", - "modified": "2021-01-06T18:30:56.926Z", + "modified": "2021-01-13T01:52:45.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.928Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.771Z", "id": "relationship--03d9080b-39b9-4c0e-8efd-d7c61a4e9eeb", - "modified": "2021-01-06T18:30:56.928Z", + "modified": "2021-01-13T01:52:45.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.930Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.772Z", "id": "relationship--f77c1bb1-c4f9-448c-89c9-7abf3e82e0c2", - "modified": "2021-01-06T18:30:56.930Z", + "modified": "2021-01-13T01:52:45.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.931Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.772Z", "id": "relationship--d422190a-2c57-43c4-87a2-2a2051657a13", - "modified": "2021-01-06T18:30:56.931Z", + "modified": "2021-01-13T01:52:45.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.933Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.773Z", "id": "relationship--0cee3abf-3996-4b45-92d1-264a9f2d6f9a", - "modified": "2021-01-06T18:30:56.933Z", + "modified": "2021-01-13T01:52:45.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.934Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.773Z", "id": "relationship--c077dd02-afef-4f0b-a35e-90c5b477bd73", - "modified": "2021-01-06T18:30:56.934Z", + "modified": "2021-01-13T01:52:45.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.937Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.774Z", "id": "relationship--b35e5b83-b24e-432d-b2bc-a8b407ff6163", - "modified": "2021-01-06T18:30:56.937Z", + "modified": "2021-01-13T01:52:45.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.937Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", - "id": "relationship--8c4cfb08-5f7d-44c0-a445-163745a832b4", - "modified": "2021-01-06T18:30:56.937Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.938Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.774Z", "id": "relationship--ea243d72-091e-487b-9d02-6eb9a2160c99", - "modified": "2021-01-06T18:30:56.938Z", + "modified": "2021-01-13T01:52:45.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.938Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.775Z", "id": "relationship--b838144d-1df7-4c8f-8ee8-22829e8760f0", - "modified": "2021-01-06T18:30:56.938Z", + "modified": "2021-01-13T01:52:45.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cbce7f45-69d6-4543-b33e-be0d0a7a43d6", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.941Z", - "description": "least privilege", + "created": "2021-01-13T01:52:45.776Z", "id": "relationship--3211ea4b-18ef-4f1d-9b9b-55b8968e5655", - "modified": "2021-01-06T18:30:56.941Z", + "modified": "2021-01-13T01:52:45.776Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.943Z", - "description": "Configuration settings, least functionality", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:56.943Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.944Z", - "description": "Configuration settings, least functionality", - "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:56.944Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.946Z", - "description": "Least privilege", - "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:56.946Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.948Z", - "description": "Identification and authentication (organizational users)", - "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:56.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.951Z", - "description": "Configuration settings", - "id": "relationship--7f55ab7b-3570-4ae4-ad87-18317f5b9e27", - "modified": "2021-01-06T18:30:56.951Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.953Z", - "description": "Information flow enforcement", - "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:56.953Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.955Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:52:45.783Z", "id": "relationship--cec98f90-7a84-45ca-abbe-94a892d1fe5d", - "modified": "2021-01-06T18:30:56.955Z", + "modified": "2021-01-13T01:52:45.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.955Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--acb42d64-8dd6-4962-97a9-c6cd3bcb88b4", - "modified": "2021-01-06T18:30:56.955Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.956Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:52:45.784Z", "id": "relationship--f64787b5-cc1b-4a04-90c4-555d64aabc64", - "modified": "2021-01-06T18:30:56.956Z", + "modified": "2021-01-13T01:52:45.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.956Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--f49c95d3-3c17-4d5d-b430-a96fe7b090e5", - "modified": "2021-01-06T18:30:56.956Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.958Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.786Z", "id": "relationship--c001cfad-be9b-4427-b6ab-a3c39b182aa1", - "modified": "2021-01-06T18:30:56.958Z", + "modified": "2021-01-13T01:52:45.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--02bb69a3-1c0d-4b5f-915d-79d0d86cad6e", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--74cdb913-36e0-4bab-8b29-3f590853a4d7", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--8989fe20-3f17-4960-8382-cd14d56a2ca1", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.960Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--b9c9b04a-2e9e-490b-ab32-916ce6fd3633", - "modified": "2021-01-06T18:30:56.960Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--271506e8-a93e-4644-b6f4-48d68e99585c", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--c18cb75e-5a7e-4b1f-a443-c9341ca82b96", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--a6a53648-2862-408e-9e0a-fd887195916d", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.962Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.789Z", "id": "relationship--db0747c3-d67a-4d4b-871a-a6baa356db4c", - "modified": "2021-01-06T18:30:56.962Z", + "modified": "2021-01-13T01:52:45.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.962Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.789Z", "id": "relationship--fd473f5a-f308-4352-a36b-b0a397f4eb42", - "modified": "2021-01-06T18:30:56.962Z", + "modified": "2021-01-13T01:52:45.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.963Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.790Z", "id": "relationship--3a159692-eaea-45de-bb5a-e5d816aff575", - "modified": "2021-01-06T18:30:56.963Z", + "modified": "2021-01-13T01:52:45.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.964Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.791Z", "id": "relationship--d2610289-e209-4f02-8a45-c3193c4c0467", - "modified": "2021-01-06T18:30:56.964Z", + "modified": "2021-01-13T01:52:45.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.791Z", "id": "relationship--51b22451-e332-43ec-9365-b12e994a303a", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--e7e95e62-6b3b-4730-a197-75efb4c3e5ed", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--26b1a301-fe54-48f7-8fcb-e6a8710ae2e7", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--31d59c19-5e18-48ec-b393-07b47ea2a2b2", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.966Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--5c160b3b-32c3-4062-94bd-639b96809373", - "modified": "2021-01-06T18:30:56.966Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.966Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--1c6cc3c6-1387-4649-a573-67f251021234", - "modified": "2021-01-06T18:30:56.966Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.967Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--59d4121e-7720-46fd-b574-e699b55203fc", - "modified": "2021-01-06T18:30:56.967Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.968Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.794Z", "id": "relationship--3871a9a7-c41e-4953-84cd-597eeb1f57b9", - "modified": "2021-01-06T18:30:56.968Z", + "modified": "2021-01-13T01:52:45.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.968Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.794Z", "id": "relationship--e9ef82e7-5bde-47b8-ac99-42ae0480d8f9", - "modified": "2021-01-06T18:30:56.968Z", + "modified": "2021-01-13T01:52:45.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.796Z", "id": "relationship--5a86d698-46f8-4977-8488-90fa9faf48b1", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.796Z", "id": "relationship--996d9a45-9541-4b4b-970f-b3039c93cf83", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.797Z", "id": "relationship--e5977c44-34f6-4bfd-b492-001d691dc69f", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.797Z", "id": "relationship--2fa3c645-383b-4f6a-af38-6c9d77ccd39f", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.970Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.798Z", "id": "relationship--ab5551f1-55f9-420d-aa28-d077e084d547", - "modified": "2021-01-06T18:30:56.970Z", + "modified": "2021-01-13T01:52:45.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.970Z", - "description": "System Monitoring, malware", - "id": "relationship--30135648-de30-4879-af1f-e02862359e9d", - "modified": "2021-01-06T18:30:56.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.971Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.798Z", "id": "relationship--51613e31-c245-4122-b3d9-0a7b14c416ba", - "modified": "2021-01-06T18:30:56.971Z", + "modified": "2021-01-13T01:52:45.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.972Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.799Z", "id": "relationship--ff1d2592-2ea8-45dc-ac64-5b37cda3b68a", - "modified": "2021-01-06T18:30:56.972Z", + "modified": "2021-01-13T01:52:45.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.972Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.799Z", "id": "relationship--f3577919-fae1-4fb5-bffc-1cf254ab17fa", - "modified": "2021-01-06T18:30:56.972Z", + "modified": "2021-01-13T01:52:45.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.973Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.800Z", "id": "relationship--731855c9-df46-4f7c-aebb-eca2d1871c0a", - "modified": "2021-01-06T18:30:56.973Z", + "modified": "2021-01-13T01:52:45.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.973Z", - "description": "Configuring system settings", - "id": "relationship--4ff00de4-192e-435d-937e-9eba29a30f60", - "modified": "2021-01-06T18:30:56.973Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.801Z", "id": "relationship--8baea121-20c1-464d-9ce3-de3f62126b71", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.801Z", "id": "relationship--9c77f4e0-63c5-4a5e-82bd-0b2922f05856", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--9d6b365b-657a-434e-9356-f90499c4e0af", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--c75c3749-f72f-47e3-b583-30887da4b214", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--1970e7a5-8981-4f6f-adfa-f27fd24b6956", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--88212897-5765-41a8-acaf-3ffd1d8656bd", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--b5fd0765-2b29-40d3-a49f-e5627d0eba29", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--1ac1f00f-2b4c-45ad-a824-53373ae847fc", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--0c843b43-25fe-4a81-a72a-da7491b7683e", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--69ad114e-efad-47ad-8d89-d07a9fe585da", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--9db86c68-442e-473b-ba3b-b49325773a1c", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--a1873993-4b44-443c-918f-f6802c4f9ec6", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--340a3d96-0271-4755-b8dc-c7af9b1afd57", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--3635872c-b28e-4350-9eb1-57430997c930", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--b6b34cac-f848-4ea7-aa57-5f21559c25c0", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--1cbfb031-840d-4b83-893c-78b2a6792986", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--bc3c1786-2d91-4c71-bccb-c91931f4cb5e", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--a69ce45e-0b14-4633-9bf2-cd41d574afce", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--a123ba15-d955-44e8-ba4f-7395de847155", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--b86e2590-233a-4a0e-9e39-b2366f0d812e", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--f265ce20-92de-40db-b46e-011bbddf0f0c", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--96b7ef41-8fd5-4068-a743-861795730dbb", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--1cb6cfc4-6931-4462-a6c3-87e943f46255", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--aaf1e2ee-cbc3-481c-bb36-4db283af452a", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--aab07d01-645a-4bb5-bdfb-b51dfed55ae9", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--6b86f374-d3bb-4ffa-83c5-2e181b632503", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--1a30a556-61e8-4fa9-9027-24421679093f", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--b84283b4-5d1b-4d00-abfb-a3851823daca", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.982Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--a57123ee-9fa3-49c9-92d2-0e397e99ea32", - "modified": "2021-01-06T18:30:56.982Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.982Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.807Z", "id": "relationship--0a2fd5c6-4c48-44f3-9724-dd388de65276", - "modified": "2021-01-06T18:30:56.982Z", + "modified": "2021-01-13T01:52:45.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.983Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--4764ac47-59d3-4659-bd66-5568a85bd0c2", - "modified": "2021-01-06T18:30:56.983Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.984Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--d0602cdb-ff8e-4942-afc4-1bdff05e58ee", - "modified": "2021-01-06T18:30:56.984Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.984Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--f9a7fb55-e261-41e6-aacb-3491e7041431", - "modified": "2021-01-06T18:30:56.984Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--c81caeb8-b4f9-4eef-abb0-08ef466c61fa", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--ccec7363-a7d3-47ee-86b9-23430175c839", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--b052ca1b-d933-420e-9218-0defcd9c9a34", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--e488c265-d993-4ead-b39c-652d62bd1e20", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--00377d89-d7e9-4c43-88e4-1a959c5b04f0", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--11a71f35-440b-4df2-9e46-1673690599f1", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--2f6a7735-c685-4ecf-9767-e1e045840bbc", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--437b792b-efb5-4bb2-9bc5-c2481a3b4fbc", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--7ba14eda-1137-45dd-ade1-5b300da57c50", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--35a74383-ceaa-4f2e-8ac5-72b507a49e3e", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--3a6b2083-ed23-4f15-bcc0-e6255dc7122f", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--b7d105bd-e78e-4e50-8a79-aad1d18e33a3", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--f5b4821e-eb77-4bdf-9d75-ceffbbf4df1b", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--1983e284-6804-4c72-a3d9-96e84897676d", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--d9b5c7c6-9af9-45e1-896f-782f64eb9d8f", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--1b583693-9766-44df-bea6-bfd3021c123b", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--55efda52-b977-4494-b266-91fbbe0260e6", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--0f106e15-daf1-494e-93c5-bc60b7a65824", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.813Z", "id": "relationship--37ff872d-1be2-42a7-89d0-d0ca0c275d42", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.813Z", "id": "relationship--f4be5281-b603-44d4-84b6-5255cf1a9df1", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--b0463c30-d991-41e2-a885-3568f3cf8ac9", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--f05c3c74-8d6c-46f3-9628-3ccbfcf8539c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--bf88d1ff-7ccf-401f-a625-775e50b17d44", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--2c5e0341-d98c-4a9e-803f-e08edbb38bcb", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--96106cb3-c6c4-4778-a766-2a24785a7e0c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--1dbf37da-4b74-4147-b5d8-c029d8fbde5f", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--1319be0e-1d13-44ab-a576-4cce5237402c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.991Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:52:45.816Z", "id": "relationship--4982f038-718c-4234-a8fb-d9ad2c574b12", - "modified": "2021-01-06T18:30:56.991Z", + "modified": "2021-01-13T01:52:45.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.992Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:52:45.816Z", "id": "relationship--c51f5b7e-912c-41fd-a62a-893c5c516149", - "modified": "2021-01-06T18:30:56.992Z", + "modified": "2021-01-13T01:52:45.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.993Z", - "description": "baseline configuration", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.993Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--13074299-ac45-4924-8318-8a59d4f4baaa", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--3c7df7d4-4612-4b15-bdc6-011f86725bb4", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--a2dd2078-8190-4418-830a-ebccb9ee13c2", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--211c4deb-da02-46df-a20c-48599e4bd050", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--1a75bab9-ece5-427e-b9b8-f21136f394bd", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.996Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:52:45.819Z", "id": "relationship--878f8972-779e-474b-a856-d3e493dd69b8", - "modified": "2021-01-06T18:30:56.996Z", + "modified": "2021-01-13T01:52:45.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.996Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:52:45.819Z", "id": "relationship--b59a87ee-dd96-46f1-b2e0-9dde1ae8979b", - "modified": "2021-01-06T18:30:56.996Z", + "modified": "2021-01-13T01:52:45.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.997Z", - "description": "session authenticity", + "created": "2021-01-13T01:52:45.820Z", "id": "relationship--11a23f90-3656-4705-aae4-41c7d596990b", - "modified": "2021-01-06T18:30:56.997Z", + "modified": "2021-01-13T01:52:45.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--59bd0dec-f8b2-4b9a-9141-37a1e6899761", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.999Z", - "description": "configuration settings", - "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:56.999Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.001Z", - "description": "User-installed software", + "created": "2021-01-13T01:52:45.822Z", "id": "relationship--ff5e8a47-7b9a-40ed-9f22-6ce485d5afd9", - "modified": "2021-01-06T18:30:57.001Z", + "modified": "2021-01-13T01:52:45.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.823Z", "id": "relationship--460392c7-0b19-4d2e-9a56-84e35409cc1d", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.823Z", "id": "relationship--493af70f-4c90-4fcd-afcb-b332cc25626c", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.824Z", "id": "relationship--648025e7-e904-449b-847c-7dc093073d51", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.004Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:52:45.824Z", "id": "relationship--6479119a-cc59-4b3e-8144-3d97fdde9427", - "modified": "2021-01-06T18:30:57.004Z", + "modified": "2021-01-13T01:52:45.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.006Z", - "description": "Service identification and authentication", + "created": "2021-01-13T01:52:45.826Z", "id": "relationship--533491fc-4e04-4175-a60c-5fcb6592aae0", - "modified": "2021-01-06T18:30:57.006Z", + "modified": "2021-01-13T01:52:45.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--2941056e-838a-406f-ab19-894d53278575", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--b0f88df3-ca51-45ef-9d1f-41181318e904", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--cc23fb9f-562b-4141-a717-fda5d5638789", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.010Z", - "description": "Configuration settings, least functionality, software usage restrictions", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:57.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.011Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.828Z", "id": "relationship--24504c58-4627-49d8-8661-1847bbc4f530", - "modified": "2021-01-06T18:30:57.011Z", + "modified": "2021-01-13T01:52:45.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.011Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.828Z", "id": "relationship--28333925-ae4a-4f0a-b6e1-758f8887c047", - "modified": "2021-01-06T18:30:57.011Z", + "modified": "2021-01-13T01:52:45.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:57.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:57.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.831Z", "id": "relationship--94688c50-e753-49b9-b0cd-0a3bdce79427", - "modified": "2021-01-06T18:30:57.012Z", + "modified": "2021-01-13T01:52:45.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.013Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.831Z", "id": "relationship--7bf1680b-2de2-4ee0-887a-bcec3952d75c", - "modified": "2021-01-06T18:30:57.013Z", + "modified": "2021-01-13T01:52:45.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.014Z", - "description": "Transmission Confidentiality and Integrity", + "created": "2021-01-13T01:52:45.832Z", "id": "relationship--a928fc13-5338-431f-b036-cab4210b0cad", - "modified": "2021-01-06T18:30:57.014Z", + "modified": "2021-01-13T01:52:45.832Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.015Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--153779e9-644e-4cb9-bd11-574002301aa7", - "modified": "2021-01-06T18:30:57.015Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.016Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--2e9efa6c-9dd2-4a1f-9b22-4f9d082a2591", - "modified": "2021-01-06T18:30:57.016Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.016Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--fed5ecc1-13fd-4d47-9068-8d01a16cbe74", - "modified": "2021-01-06T18:30:57.016Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--2f2cf4da-ebb3-4cf2-8084-9cb97a14b7e2", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--3b51da8e-b86f-438f-9d61-152a4e8435ba", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--865af8a0-4938-4561-a956-9cc9f73349c4", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--bd97be7e-2687-4c64-986f-60aa29ab301d", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--a8464aee-a789-4178-8810-4c70bc66c354", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--b79f53c5-75da-4d69-a36d-1ca85cf82492", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--a21ff8b5-2dd0-46b9-8620-8d8ffb478d30", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--de930fa7-9234-410a-93c7-02d473285933", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--0547d55e-5020-4432-98eb-5fe3a685f59d", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.836Z", "id": "relationship--65e69abc-9157-42a6-9416-be2dc6821460", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--09a23af3-1f15-4eea-bc5c-09c195e5d8c3", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--1e9ebcc8-7a69-4ff2-baef-22ea455a56db", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--700fe7f0-cc4d-4c19-8741-0f18cbf73b6d", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--71578f6e-3b0a-4b74-a811-0ab442642b5c", - "modified": "2021-01-06T18:30:57.023Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--7c16e52b-e15b-47bd-a569-55da1dd813ac", - "modified": "2021-01-06T18:30:57.023Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f13b8659-a64a-40be-a276-f5a4fa320040", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--612e41e8-03bd-48fa-abb8-45fee4c4ff9c", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--51338335-e001-4a15-8ad9-ed037f10d155", - "modified": "2021-01-06T18:30:57.024Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--ee368629-1044-4cd2-baf5-ca835f5c0c91", - "modified": "2021-01-06T18:30:57.024Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--8ad867db-7b9a-4652-ac4e-5b3668d9bee5", - "modified": "2021-01-06T18:30:57.024Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--50f5fb69-4078-483a-a426-f59996ebf152", - "modified": "2021-01-06T18:30:57.024Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--284c6f6e-3141-437e-977b-11f25cca4226", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--e276041d-67e0-45ba-8f9b-428d4bc445bb", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--c6855074-369a-4c42-bb2b-b8f5afe34097", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--9d9776ef-0da2-4b7c-a815-197b77b4f414", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--3ad4cb9f-4744-4073-8e93-5a496f84c347", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--8011c141-45ad-4a98-bad5-6fdc26c2222d", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--5bb45909-5641-4da1-90cc-7753c639dfc0", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--a90ae1f7-9196-46c9-890b-701e75c804a2", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--1ffd10cd-dfe2-421b-9b97-fef59ccb719a", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.028Z", - "id": "relationship--5486d6a2-8659-4a26-91d3-309e8ba5f97f", - "modified": "2021-01-06T18:30:57.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--3df3ca2d-50c1-4e70-a8c1-e636d1abe5d0", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--1c5c389d-227d-4ef6-a1b8-9759a3e49fc4", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--3ec8ecac-678b-48ec-bf58-645017597063", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.031Z", - "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:57.031Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.032Z", - "id": "relationship--88072258-a79c-4604-b4a4-feb5e064f6ec", - "modified": "2021-01-06T18:30:57.032Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.033Z", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:57.033Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.034Z", - "id": "relationship--ae6e9f5b-f284-47dc-a299-b288220a74bf", - "modified": "2021-01-06T18:30:57.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.034Z", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:57.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.035Z", - "id": "relationship--1fd01a47-be61-4670-83c9-c9a21c705936", - "modified": "2021-01-06T18:30:57.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.035Z", - "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:57.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--6308a156-907e-48eb-aab6-12d96467c08b", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--30e69d35-64dc-4d7a-8259-221e4751d1f7", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--d44c5a9c-b51d-4890-8d70-1e8cf780a9ed", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.037Z", - "id": "relationship--2f0d1fc9-5040-44c1-9d08-13a8be7a37a7", - "modified": "2021-01-06T18:30:57.037Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.038Z", - "id": "relationship--3ccdc9d2-e7f0-4b6e-a478-f10e1eeeb224", - "modified": "2021-01-06T18:30:57.038Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.038Z", - "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:57.038Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.040Z", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:57.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.042Z", + "created": "2021-01-13T01:52:45.847Z", "id": "relationship--27ee44ca-7c39-4566-9467-b530b7f86200", - "modified": "2021-01-06T18:30:57.042Z", + "modified": "2021-01-13T01:52:45.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--391d824f-0ef1-47a0-b0ee-c59a75e27670", diff --git a/frameworks/nist800-53-r5/stix/nist800-53-r5-mappings.json b/frameworks/nist800-53-r5/stix/nist800-53-r5-mappings.json index ce2564ba..f8d26f3f 100644 --- a/frameworks/nist800-53-r5/stix/nist800-53-r5-mappings.json +++ b/frameworks/nist800-53-r5/stix/nist800-53-r5-mappings.json @@ -1,57149 +1,37612 @@ { - "id": "bundle--a90b8a64-636f-4491-b45d-0d33f0409dc5", + "id": "bundle--3ea22c46-3c7e-49f2-bcbd-3e55779966a2", "objects": [ { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.973Z", "id": "relationship--01d02a4b-73be-424f-87ab-b96392f21348", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--9b4cd333-8d9d-4080-935f-85b6c662299e", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--7f78bb9d-d98d-4dcc-9c3f-4fe6633d95ab", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--c7ce7dbb-fd72-4ba8-8c31-6a335d0070cb", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.711Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--2938c748-1ed5-4fe8-874e-2ba5746e4f48", - "modified": "2021-01-06T18:30:54.711Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.974Z", "id": "relationship--d5814d8a-fb01-46e9-b1bb-2366e8ccb89d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--fbc08dc7-499d-4efc-ab09-3b0871289793", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--b8ae63ec-1d64-4bda-8b67-bb4eb9e233eb", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--57bb1c15-f067-4c93-bec7-f9546792ec11", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--d411d872-5549-4d4f-8815-ea3930aa9aad", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--2a9bac3c-9fe7-4a45-8fd7-10d1e207f130", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.975Z", "id": "relationship--02f7cfd1-9b6a-4c63-af56-2fe7498e3737", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.976Z", "id": "relationship--1c533911-eb8e-4ef5-8dd5-ec73b2142c7d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.712Z", + "created": "2021-01-13T01:52:43.976Z", "id": "relationship--e8259d5d-bc0e-4fa4-8963-f51d9bbb744d", - "modified": "2021-01-06T18:30:54.712Z", + "modified": "2021-01-13T01:52:43.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.977Z", "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.714Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--cc08b477-5e41-4b05-8ea6-87cbc81808ee", - "modified": "2021-01-06T18:30:54.714Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--768c9663-daff-481c-8f35-76296cd88b2f", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--45fffc48-4756-48ae-959f-5e59de2b602b", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--f1e29608-01a1-464b-801a-9c196586b00a", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.978Z", "id": "relationship--dd16b9e7-2367-4749-b124-5cabe00bad78", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--09a55636-cbe9-4e05-bafb-d258c8efe0bd", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.715Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:54.715Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.979Z", "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--f9275823-4ebd-4533-900c-958d31aaf240", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.716Z", + "created": "2021-01-13T01:52:43.980Z", "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:54.716Z", + "modified": "2021-01-13T01:52:43.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.981Z", "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--3e4bdba4-f0fe-48dc-a263-251ce8f7cffa", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--6e3c3489-9396-48fe-816a-761ec17b0e49", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--ff6f86c0-c93f-4f52-9b64-995f19f8a013", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.717Z", + "created": "2021-01-13T01:52:43.982Z", "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:54.717Z", + "modified": "2021-01-13T01:52:43.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.718Z", + "created": "2021-01-13T01:52:43.983Z", "id": "relationship--920c76c7-ed9b-4b0f-8de1-d20cd774fd6e", - "modified": "2021-01-06T18:30:54.718Z", + "modified": "2021-01-13T01:52:43.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.718Z", + "created": "2021-01-13T01:52:43.983Z", "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:54.718Z", + "modified": "2021-01-13T01:52:43.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.719Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.719Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.985Z", "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.986Z", "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.720Z", + "created": "2021-01-13T01:52:43.986Z", "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:54.720Z", + "modified": "2021-01-13T01:52:43.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.987Z", "id": "relationship--048b028e-1a0c-4059-b09b-a244d705448f", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.987Z", "id": "relationship--87eff696-c0d4-41c9-a39f-a5fad38eb7ac", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--8b137a81-c7ec-4e62-b659-417d6759e9dd", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--b19c4e56-93bd-4143-b47b-e84d39edf0b4", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--307bbb1a-aa96-44ad-aec1-c8a61979a758", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.721Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--a9faf1de-512b-406b-81e7-9e4037675804", - "modified": "2021-01-06T18:30:54.721Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--3af75b39-6c1d-4263-ad51-0cb0093e1534", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--12179f09-6ae5-4654-a873-7dd74baf49ad", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.988Z", "id": "relationship--c182cdd9-b637-4c5d-8f4e-587a3a044682", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--d9c85aef-6b1f-4929-a5f7-bf470b99af8c", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--3381620a-4dd8-4c19-9205-33aa1186ca19", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.722Z", + "created": "2021-01-13T01:52:43.989Z", "id": "relationship--e4e4b88d-ce9e-4585-83dd-2ecb58d2dcb2", - "modified": "2021-01-06T18:30:54.722Z", + "modified": "2021-01-13T01:52:43.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.723Z", + "created": "2021-01-13T01:52:43.990Z", "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:54.723Z", + "modified": "2021-01-13T01:52:43.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.990Z", "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--ccf6b20d-404e-43b1-8f22-e1f7cf4e12bb", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.724Z", + "created": "2021-01-13T01:52:43.991Z", "id": "relationship--071251a2-0d60-4cc9-90f5-2d46e6e37eed", - "modified": "2021-01-06T18:30:54.724Z", + "modified": "2021-01-13T01:52:43.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.992Z", "id": "relationship--78f6eea0-78fc-4628-845e-6ee09c54daa1", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.992Z", "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--b87298e7-35fc-4cae-a034-981115046b83", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.725Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:54.725Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--86707c80-dd6b-4998-8067-cd17c1a978a5", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--bb6f985d-5e1d-4d1e-ab57-a9f41dd10163", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--76a7cac0-6fd7-4b9f-8038-f1dab00f2064", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--6cc88dde-75bb-4066-b5b1-9766aa8229e4", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.993Z", "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.994Z", "id": "relationship--b583ec41-8c6e-499c-b991-caee330f10d5", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.726Z", + "created": "2021-01-13T01:52:43.994Z", "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:54.726Z", + "modified": "2021-01-13T01:52:43.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.727Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--0d1307da-4f68-4552-8fbe-67ccd889ba21", - "modified": "2021-01-06T18:30:54.727Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.727Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:54.727Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--c01591b9-5a7c-4ee0-bce5-4b0bb2bbc65e", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--e793f5d1-1d38-4ffe-b035-98e51ad462b2", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--84cd81b3-d7cc-49e7-a2e2-dc0001cef7a3", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.995Z", "id": "relationship--0fc9ca50-d7c3-4796-983b-949f68bcecbf", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--351e968c-5cbb-4026-bbcd-7130260b7e57", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--c38f05bb-49c6-419c-9e14-3755a3983255", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--e6620622-c001-48b5-94d4-40a3385dbf2f", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.728Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--c63f1f3f-6389-412e-b339-8260c08f0f61", - "modified": "2021-01-06T18:30:54.728Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.729Z", + "created": "2021-01-13T01:52:43.996Z", "id": "relationship--db295f3f-c1ae-485f-a44b-5b97a8334776", - "modified": "2021-01-06T18:30:54.729Z", + "modified": "2021-01-13T01:52:43.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.730Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:43.998Z", "id": "relationship--93a29b01-bb3f-4e17-90e1-7cc30991ae6c", - "modified": "2021-01-06T18:30:54.730Z", + "modified": "2021-01-13T01:52:43.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.730Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:43.998Z", "id": "relationship--298f45ac-e5ae-4a87-be10-efecfaded690", - "modified": "2021-01-06T18:30:54.730Z", + "modified": "2021-01-13T01:52:43.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.731Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:43.999Z", "id": "relationship--9dae6268-83d9-41bf-87eb-1b10f5cb15b9", - "modified": "2021-01-06T18:30:54.731Z", + "modified": "2021-01-13T01:52:43.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.731Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:43.999Z", "id": "relationship--bfb8efb7-2a01-4ee9-977c-b7edb4edadda", - "modified": "2021-01-06T18:30:54.731Z", + "modified": "2021-01-13T01:52:43.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--f6fedb30-34e5-4a5b-beb9-dee330c54bd7", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--0ff39bf4-66d5-4511-aeee-6d8cf4f77c06", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--84690366-24e8-4157-b9fe-854d0bd2ff57", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.000Z", "id": "relationship--182c236e-90a4-4490-bdff-d8e8252e790f", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.732Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.001Z", "id": "relationship--4bbddcfd-de49-4232-a1b2-6207ae5eed6a", - "modified": "2021-01-06T18:30:54.732Z", + "modified": "2021-01-13T01:52:44.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.733Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.001Z", "id": "relationship--9dd394f9-f09b-4936-8a3c-ddc8230427f2", - "modified": "2021-01-06T18:30:54.733Z", + "modified": "2021-01-13T01:52:44.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--c4fc19f2-5952-4ff4-a0b3-f7cada0d3cab", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--7b4ec88f-31cb-4154-a40e-843dccbf068b", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--b98f20bf-110e-48c4-8023-8a72026b9879", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.734Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--b719241b-e0fa-47e8-95d2-334b65b1d862", - "modified": "2021-01-06T18:30:54.734Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.735Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--ddfd4b3d-2542-42f0-882f-4a9098a2fe8a", - "modified": "2021-01-06T18:30:54.735Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.735Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.002Z", "id": "relationship--8b48a325-c1c8-4c1d-aa6b-70095466173f", - "modified": "2021-01-06T18:30:54.735Z", + "modified": "2021-01-13T01:52:44.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.736Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.004Z", "id": "relationship--ef909396-5b2b-4cf4-8860-a9b14bf14042", - "modified": "2021-01-06T18:30:54.736Z", + "modified": "2021-01-13T01:52:44.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--133ade8d-ed7e-49df-98be-74d074b49d1c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.736Z", - "description": "Security Assessment", + "created": "2021-01-13T01:52:44.005Z", "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:54.736Z", + "modified": "2021-01-13T01:52:44.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.737Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.011Z", "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:54.737Z", + "modified": "2021-01-13T01:52:44.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.737Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.012Z", "id": "relationship--f476af09-ed64-4b8d-8478-658d7b826bed", - "modified": "2021-01-06T18:30:54.737Z", + "modified": "2021-01-13T01:52:44.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--7be00ab2-d7e9-4732-9c71-6eedd4bbbf44", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--3bd3e974-ae5a-41e2-9b0b-2353d92334d2", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.738Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.014Z", "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:54.738Z", + "modified": "2021-01-13T01:52:44.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--05081acb-f547-453f-bad1-002891ac22e7", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.739Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.015Z", "id": "relationship--4981efd9-1791-492c-8757-74bce2bec610", - "modified": "2021-01-06T18:30:54.739Z", + "modified": "2021-01-13T01:52:44.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:54.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--a055c63e-e4c1-4298-8068-fb3f5bc87b22", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.017Z", "id": "relationship--51a5c9e3-93d8-4bc8-ac5f-3140135872bc", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:54.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.740Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--4bec2cea-959e-4e8f-9c4c-4191de7723b2", - "modified": "2021-01-06T18:30:54.740Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:54.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.018Z", "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.018Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:54.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.741Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.019Z", "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:54.741Z", + "modified": "2021-01-13T01:52:44.019Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--f4fed9c8-f324-4871-b13b-dc799c5c607e", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--23b2bf27-97be-44ff-8ede-c0f02cce6237", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.021Z", "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.021Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.742Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--a9090825-c14f-4650-94e3-88fe861c61b1", - "modified": "2021-01-06T18:30:54.742Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--bb23020c-486e-4ecd-b529-72b80853f1c5", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--834402f8-f070-4509-94c7-cfd5f43b7d15", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--f28dfcdd-0b23-4956-b8f7-fb7823a1d8f4", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.022Z", "id": "relationship--c9a0a962-532b-42d1-b3c3-12b73746a664", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.022Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.023Z", "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.743Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:52:44.023Z", "id": "relationship--d348da1d-9a96-48c2-aae4-8cab44cd5f76", - "modified": "2021-01-06T18:30:54.743Z", + "modified": "2021-01-13T01:52:44.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.024Z", "id": "relationship--f7464e95-df43-41df-aab2-945d6a4945eb", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--fa5cb2bc-bc29-4b2f-8ad8-4c6b9259bdba", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.744Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:54.744Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--446497f2-61b4-4ecc-8547-01cbf2f9ad4e", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.025Z", "id": "relationship--05a6a2b1-5472-4559-b323-d68325ad4e58", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--ec883b32-681e-4355-9107-dadd4cd28a24", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.745Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.026Z", "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:54.745Z", + "modified": "2021-01-13T01:52:44.026Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:54.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.029Z", "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:54.746Z", + "modified": "2021-01-13T01:52:44.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.746Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.029Z", "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:54.746Z", + "modified": "2021-01-13T01:52:44.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--71f3a6c8-774d-4247-8685-04cac7fcc1dd", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.030Z", "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.030Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.031Z", "id": "relationship--c617e38c-444b-4f55-8b6d-88907cf20bc8", - "modified": "2021-01-06T18:30:54.747Z", + "modified": "2021-01-13T01:52:44.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.747Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:54.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.748Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.031Z", "id": "relationship--fe3aa1fa-370c-4d7d-a577-4cdb8e4e693f", - "modified": "2021-01-06T18:30:54.748Z", + "modified": "2021-01-13T01:52:44.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:54.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.032Z", "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.032Z", "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:54.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.749Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:54.749Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:54.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.033Z", "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.033Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:54.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.750Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:52:44.034Z", "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:54.750Z", + "modified": "2021-01-13T01:52:44.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.751Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.036Z", "id": "relationship--78070826-5fb9-4630-82cf-c9ce52743e73", - "modified": "2021-01-06T18:30:54.751Z", + "modified": "2021-01-13T01:52:44.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.751Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.036Z", "id": "relationship--9e1de270-04c8-4de3-8e6b-75ca7c9f4d80", - "modified": "2021-01-06T18:30:54.751Z", + "modified": "2021-01-13T01:52:44.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.752Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.037Z", "id": "relationship--50852282-b549-4cf8-8ff1-8085a5cc0551", - "modified": "2021-01-06T18:30:54.752Z", + "modified": "2021-01-13T01:52:44.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.753Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.039Z", "id": "relationship--a288cd47-50b2-4ea8-8a93-42cb87f91bb5", - "modified": "2021-01-06T18:30:54.753Z", + "modified": "2021-01-13T01:52:44.039Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.754Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:54.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:54.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.755Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", + "created": "2021-01-13T01:52:44.042Z", "id": "relationship--db40f2f1-2a22-4ccf-97a7-dbfbc2de9378", - "modified": "2021-01-06T18:30:54.755Z", + "modified": "2021-01-13T01:52:44.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.756Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.043Z", "id": "relationship--5a60b941-48be-480a-bb61-f5de803cfd16", - "modified": "2021-01-06T18:30:54.756Z", + "modified": "2021-01-13T01:52:44.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.756Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.043Z", "id": "relationship--06dbc710-32d7-4e1e-a777-580592851b28", - "modified": "2021-01-06T18:30:54.756Z", + "modified": "2021-01-13T01:52:44.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.758Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.045Z", "id": "relationship--a8eecaa9-03a0-434d-8259-b8a678939084", - "modified": "2021-01-06T18:30:54.758Z", + "modified": "2021-01-13T01:52:44.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.759Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.047Z", "id": "relationship--87e34a24-bdb6-451b-80b0-093cbfeeedf0", - "modified": "2021-01-06T18:30:54.759Z", + "modified": "2021-01-13T01:52:44.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.759Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.047Z", "id": "relationship--b44c32eb-a243-402f-b907-fb5cef1536a1", - "modified": "2021-01-06T18:30:54.759Z", + "modified": "2021-01-13T01:52:44.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.760Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.049Z", "id": "relationship--307a7292-e8a2-45c3-83f1-68918fca62f8", - "modified": "2021-01-06T18:30:54.760Z", + "modified": "2021-01-13T01:52:44.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.760Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:52:44.050Z", "id": "relationship--015bebb9-f68e-4f3f-958c-8a1b5a4d5280", - "modified": "2021-01-06T18:30:54.760Z", + "modified": "2021-01-13T01:52:44.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.761Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.051Z", "id": "relationship--ed81fac6-c9e5-44ab-9a58-cbc4991373d7", - "modified": "2021-01-06T18:30:54.761Z", + "modified": "2021-01-13T01:52:44.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.052Z", "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--18f8d5e6-c364-46d7-8366-034a6412d75a", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--937fc5d2-18a6-4c44-bb76-1b7500b51e5a", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--4d538de5-2144-415a-b381-34f0a53d5c19", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.762Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:52:44.053Z", "id": "relationship--9742abb6-4165-407b-a302-4d8ff8db6c45", - "modified": "2021-01-06T18:30:54.762Z", + "modified": "2021-01-13T01:52:44.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--ba24e9be-9c3e-41d2-81cb-1371466f4c7f", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.763Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.054Z", "id": "relationship--28ff0106-4725-4e61-9d30-f258eeb784fb", - "modified": "2021-01-06T18:30:54.763Z", + "modified": "2021-01-13T01:52:44.054Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.764Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.055Z", "id": "relationship--b0f09191-e6ef-47cf-9dc4-e42006357419", - "modified": "2021-01-06T18:30:54.764Z", + "modified": "2021-01-13T01:52:44.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.765Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.056Z", "id": "relationship--6a12a01c-6861-4fcb-a172-3a96a00069ff", - "modified": "2021-01-06T18:30:54.765Z", + "modified": "2021-01-13T01:52:44.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.765Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.056Z", "id": "relationship--a7a4463b-a3fd-485c-8ea5-a5e2d55eec97", - "modified": "2021-01-06T18:30:54.765Z", + "modified": "2021-01-13T01:52:44.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.057Z", "id": "relationship--4ab1b628-3854-472a-b688-03c93268b815", - "modified": "2021-01-06T18:30:54.766Z", + "modified": "2021-01-13T01:52:44.057Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.767Z", - "description": "Account Management, ", + "created": "2021-01-13T01:52:44.059Z", "id": "relationship--202a16de-092a-4d04-aeb9-d7fe7a1799ac", - "modified": "2021-01-06T18:30:54.767Z", + "modified": "2021-01-13T01:52:44.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.768Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:44.061Z", "id": "relationship--d2612625-bc28-4c8d-9c8f-7c058c3c68c0", - "modified": "2021-01-06T18:30:54.768Z", + "modified": "2021-01-13T01:52:44.061Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--ac63e351-cf2b-4a9a-8e20-8c68f9ce3cc6", - "modified": "2021-01-06T18:30:54.769Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:54.769Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.062Z", "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--a383f267-4d7e-4fb8-8e01-34c8b24f216a", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--fa9efe06-0728-4ff6-b1aa-86c01e209055", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.770Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.063Z", "id": "relationship--09fd6b45-3c84-4e0b-8ba8-533292d3f6df", - "modified": "2021-01-06T18:30:54.770Z", + "modified": "2021-01-13T01:52:44.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--679fb900-b3a9-45fd-9dab-3c467bb3e4ac", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.771Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.065Z", "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:54.771Z", + "modified": "2021-01-13T01:52:44.065Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--ae7d154f-7ac6-4cd6-bbb5-f05e9907bc09", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--36681363-4476-4a2c-8442-2efb3e9593e3", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.772Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.066Z", "id": "relationship--0896a18c-2df1-4b1b-81fb-d21d5dc16acb", - "modified": "2021-01-06T18:30:54.772Z", + "modified": "2021-01-13T01:52:44.066Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--6f59c746-2722-4ac8-801e-9c56e79c9404", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--c16da334-18e6-4282-a9f3-7b523ca1640f", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.773Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.067Z", "id": "relationship--c372e451-7655-41f2-a9d6-d847a5f2bd72", - "modified": "2021-01-06T18:30:54.773Z", + "modified": "2021-01-13T01:52:44.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--442e2f58-5b40-4d20-98f1-66db4994b279", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.774Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.076Z", "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:54.774Z", + "modified": "2021-01-13T01:52:44.076Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.775Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:54.775Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.775Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:54.775Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.077Z", "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.077Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--2e649cbd-e520-407e-a870-02926bf90326", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.776Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.078Z", "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:54.776Z", + "modified": "2021-01-13T01:52:44.078Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--aadb1e86-b398-4314-9012-d91900bb6ec3", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--70eac0d9-8cf5-4364-8682-06787f7e2516", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.079Z", "id": "relationship--a431d2de-6825-4918-9ab3-cfa14e7b39ed", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.079Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--e58dc1e1-d12d-4385-9382-6f24263b1593", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.777Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--2d1b8563-a343-46a4-8da9-9cc37474c619", - "modified": "2021-01-06T18:30:54.777Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--e33f2867-1289-4ef6-ba3c-bc8dadfe5961", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--442e2f58-5b40-4d20-98f1-66db4994b279", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:54.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--b50e9b86-9a9b-47db-975c-13524f0fa6ea", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.080Z", "id": "relationship--3813dc56-e0d8-458e-b1ef-ae95b2b20e6f", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.080Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--5b252a1e-792e-4d21-9a3c-983e6ec040a9", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--7bb8fb1a-029b-49c9-b918-4c3c91ce1d44", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.778Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--d6e38d89-705a-466a-8b66-0fad5594afbb", - "modified": "2021-01-06T18:30:54.778Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--3cbebc72-3f85-409a-ac5c-49ab20fa227a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--86cb2d9c-dad3-45ea-90b5-b3ae1119cd3a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--e1faa8b0-f214-4863-843e-b3007638f61d", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--8524aa68-f4bf-4c99-b603-31dca596bdb8", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.081Z", "id": "relationship--15f5deb7-eced-49ef-9c65-f2a8ff165cd3", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.081Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--1c4f15ce-810c-4e3d-b4fd-941362e68668", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--e15c1ca8-d481-48b9-9724-65b315c1af16", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--96e0bfaa-d614-42ed-af6a-01e75a9a748d", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--3aff963c-88a0-4c64-b0a7-b542c19fc32a", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.779Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--7dd88c28-f18e-4696-9916-2a3e28d12203", - "modified": "2021-01-06T18:30:54.779Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.780Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:52:44.082Z", "id": "relationship--7932f8d4-e273-48dc-adde-7fa558bc1263", - "modified": "2021-01-06T18:30:54.780Z", + "modified": "2021-01-13T01:52:44.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.780Z", - "description": "Continuous Monitoring", - "id": "relationship--679fb900-b3a9-45fd-9dab-3c467bb3e4ac", - "modified": "2021-01-06T18:30:54.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.781Z", - "description": "Continuous Monitoring", - "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:54.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.781Z", - "description": "Continuous Monitoring", - "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:54.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:54.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--0b6fd0a2-ebc3-43e0-b3fb-f969edf0a27d", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--a0b1cadc-a49f-4992-b0f4-140ad9b754ee", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.085Z", "id": "relationship--44b8c28d-3bba-4b8a-8742-30ec430ea408", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.782Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--8575b5a1-6310-4313-bba8-dce2ae9c0eb8", - "modified": "2021-01-06T18:30:54.782Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--02712b85-d388-47bb-bad5-079456dc1b0a", - "modified": "2021-01-06T18:30:54.783Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.086Z", "id": "relationship--7abc4f96-4b99-4998-ad1b-e1b69be286da", - "modified": "2021-01-06T18:30:54.783Z", + "modified": "2021-01-13T01:52:44.086Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--2e649cbd-e520-407e-a870-02926bf90326", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.783Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:54.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--dc7ac4f5-4650-445f-96d1-7270631c3224", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--14ca501a-f37a-462b-8a79-f0f9b91a3fac", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.784Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:52:44.087Z", "id": "relationship--4acb4e12-ec65-4383-8d06-25666b0c9485", - "modified": "2021-01-06T18:30:54.784Z", + "modified": "2021-01-13T01:52:44.087Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--d0c26eb8-ef28-4b49-afe1-30dfe3c8266a", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--729e7a61-1c08-49f6-89b4-947b9677a646", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.785Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:52:44.088Z", "id": "relationship--9c668461-cf06-4722-83af-e742e84a086c", - "modified": "2021-01-06T18:30:54.785Z", + "modified": "2021-01-13T01:52:44.088Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.786Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:54.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--c83feed4-2c0f-4dbd-89e6-b8886846a8b2", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--ae1a8c8d-d85a-4272-aa99-480a69ffca8c", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.787Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.090Z", "id": "relationship--15439cf4-7965-41e7-877f-55fcb83222ae", - "modified": "2021-01-06T18:30:54.787Z", + "modified": "2021-01-13T01:52:44.090Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.091Z", "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.091Z", "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.788Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.092Z", "id": "relationship--b8ad08b1-de3e-44e2-8f19-247ee694ee27", - "modified": "2021-01-06T18:30:54.788Z", + "modified": "2021-01-13T01:52:44.092Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.789Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.093Z", "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:54.789Z", + "modified": "2021-01-13T01:52:44.093Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.789Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.093Z", "id": "relationship--6387f37c-50f8-4955-b895-ebae75e435d8", - "modified": "2021-01-06T18:30:54.789Z", + "modified": "2021-01-13T01:52:44.093Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.790Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.095Z", "id": "relationship--8e9ddc17-dc67-41cb-8f14-0281d9995542", - "modified": "2021-01-06T18:30:54.790Z", + "modified": "2021-01-13T01:52:44.095Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.791Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.097Z", "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:54.791Z", + "modified": "2021-01-13T01:52:44.097Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.792Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.097Z", "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:54.792Z", + "modified": "2021-01-13T01:52:44.097Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.099Z", "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.099Z", "id": "relationship--6d1d8177-09f1-4d90-9ffa-3d9fbb4710dd", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.099Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--574aaea7-088d-4615-be3d-051795465d34", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--5fac53ef-2b87-48bb-94e7-c74f4d8aca8f", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.793Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.100Z", "id": "relationship--ae4df92c-5daa-4cd0-932b-bbca1b2d83be", - "modified": "2021-01-06T18:30:54.793Z", + "modified": "2021-01-13T01:52:44.100Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.794Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.102Z", "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:54.794Z", + "modified": "2021-01-13T01:52:44.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.795Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.102Z", "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:54.795Z", + "modified": "2021-01-13T01:52:44.102Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.795Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.103Z", "id": "relationship--ee3019f6-77dd-4841-be9c-31eafe0483c8", - "modified": "2021-01-06T18:30:54.795Z", + "modified": "2021-01-13T01:52:44.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.796Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.104Z", "id": "relationship--4d54c6a9-281e-4c60-a169-9ccc8e7a20fa", - "modified": "2021-01-06T18:30:54.796Z", + "modified": "2021-01-13T01:52:44.104Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.798Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:52:44.105Z", "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:54.798Z", + "modified": "2021-01-13T01:52:44.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.798Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:52:44.105Z", "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:54.798Z", + "modified": "2021-01-13T01:52:44.105Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.106Z", "id": "relationship--94977699-c6c5-4546-9cf3-4cc25f8fe934", - "modified": "2021-01-06T18:30:54.799Z", + "modified": "2021-01-13T01:52:44.106Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.799Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.106Z", "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:54.799Z", + "modified": "2021-01-13T01:52:44.106Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.801Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.108Z", "id": "relationship--8cd74b70-6610-4a01-9097-e457d96ebf08", - "modified": "2021-01-06T18:30:54.801Z", + "modified": "2021-01-13T01:52:44.108Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.802Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.110Z", "id": "relationship--53817e6d-141b-4dd6-b341-aec8c99e327b", - "modified": "2021-01-06T18:30:54.802Z", + "modified": "2021-01-13T01:52:44.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.802Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.110Z", "id": "relationship--0a61242d-1466-48db-a236-bbdbed2df501", - "modified": "2021-01-06T18:30:54.802Z", + "modified": "2021-01-13T01:52:44.110Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.803Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--f2a8cdbc-7a12-4057-bdf1-97f44358e5f9", - "modified": "2021-01-06T18:30:54.803Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--fce982aa-f07c-4009-ba42-ced161078798", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--49a65080-b396-4b22-b0e1-29702214f459", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.113Z", "id": "relationship--615c0da1-68f5-4577-8948-9ae006264e20", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.113Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--4976e57e-4ac9-4daf-b193-74dd99eead1f", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.804Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--c78cf4c7-4463-4c1f-b6dd-db05113b6351", - "modified": "2021-01-06T18:30:54.804Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--6e6cc63c-6242-4562-9587-0d5166ce4374", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--534d31a0-0ba0-4625-a46f-1f569656aeda", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.114Z", "id": "relationship--a46023bf-3ae4-428f-be04-f3b9fb465478", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.114Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.805Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.115Z", "id": "relationship--53375273-4561-4c48-90bc-f039d2031d99", - "modified": "2021-01-06T18:30:54.805Z", + "modified": "2021-01-13T01:52:44.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.116Z", "id": "relationship--fab02c4b-680d-4865-90f1-68e7ae975578", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.116Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--6bfa35fc-e275-4c96-976c-fded254578d6", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--1b2a0bb4-69c9-4e1e-9b52-50f5f9beb90b", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.806Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.117Z", "id": "relationship--cf46fba0-d7e8-43dc-8ba1-b157c00657bc", - "modified": "2021-01-06T18:30:54.806Z", + "modified": "2021-01-13T01:52:44.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.808Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.118Z", "id": "relationship--7666cef8-6443-41a5-8f0c-bda91876f671", - "modified": "2021-01-06T18:30:54.808Z", + "modified": "2021-01-13T01:52:44.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.808Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.118Z", "id": "relationship--ff5b6fa3-4249-4ed4-9379-7676c8d77ee1", - "modified": "2021-01-06T18:30:54.808Z", + "modified": "2021-01-13T01:52:44.118Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.119Z", "id": "relationship--83852c8b-e079-4834-8314-8bdc5b4ebc15", - "modified": "2021-01-06T18:30:54.809Z", + "modified": "2021-01-13T01:52:44.119Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--76a7cac0-6fd7-4b9f-8038-f1dab00f2064", - "modified": "2021-01-06T18:30:54.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.809Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.119Z", "id": "relationship--61eb5772-2be6-4e74-a2a3-1a6ba17e2e08", - "modified": "2021-01-06T18:30:54.809Z", + "modified": "2021-01-13T01:52:44.119Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.810Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:54.810Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.811Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:52:44.121Z", "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:54.811Z", + "modified": "2021-01-13T01:52:44.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.811Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:52:44.121Z", "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:54.811Z", + "modified": "2021-01-13T01:52:44.121Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:54.812Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--1a9b8cf5-fc36-4aac-aa1d-92d171c4a138", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.812Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.123Z", "id": "relationship--4b1e61b9-2091-422d-bc0a-deab6b72ed35", - "modified": "2021-01-06T18:30:54.812Z", + "modified": "2021-01-13T01:52:44.123Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:54.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.124Z", "id": "relationship--8055b0de-9f63-4ead-bc73-d78f36ad76b8", - "modified": "2021-01-06T18:30:54.813Z", + "modified": "2021-01-13T01:52:44.124Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.813Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:54.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.814Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.125Z", "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:54.814Z", + "modified": "2021-01-13T01:52:44.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.814Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.125Z", "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:54.814Z", + "modified": "2021-01-13T01:52:44.125Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--7729812e-6e2c-4532-9359-ea8b0f3543b9", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.126Z", "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.815Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.127Z", "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:54.815Z", + "modified": "2021-01-13T01:52:44.127Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.817Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.128Z", "id": "relationship--97e195f0-e5c8-48b0-99f4-edbff224b608", - "modified": "2021-01-06T18:30:54.817Z", + "modified": "2021-01-13T01:52:44.128Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.817Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.128Z", "id": "relationship--ca85cc5a-c42d-43a2-8126-db82cc54187a", - "modified": "2021-01-06T18:30:54.817Z", + "modified": "2021-01-13T01:52:44.128Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.129Z", "id": "relationship--0af5acc3-cfcb-4764-bb9e-a7d2508aa1dc", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.129Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.819Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:54.819Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--b3567a0b-7998-4554-96a4-0e0b15eb2116", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--e4d010ba-de5d-4d62-a61b-80e67a53cbcd", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.820Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.130Z", "id": "relationship--f0afce7e-48d1-4db5-b29b-b26133e2f65d", - "modified": "2021-01-06T18:30:54.820Z", + "modified": "2021-01-13T01:52:44.130Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.131Z", "id": "relationship--00361e78-882b-4439-876e-9ff380aa793d", - "modified": "2021-01-06T18:30:54.821Z", + "modified": "2021-01-13T01:52:44.131Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--c975038b-a5f0-4787-85fc-05f46864c127", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--e011f9c9-ec87-43e3-b1b0-fedfb161f41d", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--d90b36cc-9f58-43e6-b72d-11321b1cece3", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.822Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.132Z", "id": "relationship--a1846487-c90c-4077-bbee-1f4931f9425a", - "modified": "2021-01-06T18:30:54.822Z", + "modified": "2021-01-13T01:52:44.132Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.823Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:54.823Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.823Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:54.823Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--9f8eb690-94d2-4494-bcb7-87af99035dfa", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--8fe35e6a-f81e-4861-a5a5-0d483b728f85", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.133Z", "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.133Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--feeaf489-71af-43df-8ca5-5827908fab77", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.824Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.134Z", "id": "relationship--42c9e7db-8505-48b8-9338-dc1370ff97af", - "modified": "2021-01-06T18:30:54.824Z", + "modified": "2021-01-13T01:52:44.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.135Z", "id": "relationship--44d5846f-d804-4f79-b0a7-c747be7c86ea", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.135Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--c6acbd57-fa4e-4238-8f1b-abd0f4732f20", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--4f370686-2f9c-4803-8cd5-ce48f7f98ffc", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.825Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.136Z", "id": "relationship--0c572a17-1369-4083-a913-fdfed2625e83", - "modified": "2021-01-06T18:30:54.825Z", + "modified": "2021-01-13T01:52:44.136Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.826Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.137Z", "id": "relationship--990dd13c-2276-4171-9770-89f524987c3b", - "modified": "2021-01-06T18:30:54.826Z", + "modified": "2021-01-13T01:52:44.137Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--05843b9c-4ba0-41e9-bba2-8e57b708faba", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--29963aa0-6b58-4f13-bcee-68ecc6b3a0cb", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.138Z", "id": "relationship--078d32a1-aa30-4a76-a473-90a67650102b", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.138Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--34b30139-dd84-4e5b-ae1a-abecdfd94b34", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--1f48f25a-e154-4ff7-9928-fc180520f450", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--9a5c48b3-3481-4a79-8324-e3848ed59d29", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.827Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.139Z", "id": "relationship--1f05cb7a-2ead-4410-bbdc-44b0343cfc06", - "modified": "2021-01-06T18:30:54.827Z", + "modified": "2021-01-13T01:52:44.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--cb99f70a-8d0f-4a51-a57a-38f828a0424b", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--d3b46ad3-6691-4862-beaa-720aac063f04", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--5ed29154-612b-4cc1-b983-27b7d2e40acc", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.828Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:52:44.140Z", "id": "relationship--2d99ddcd-3aab-47e1-8658-a3f0d872051e", - "modified": "2021-01-06T18:30:54.828Z", + "modified": "2021-01-13T01:52:44.140Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.141Z", "id": "relationship--76e7565e-02a9-4eec-b38d-61513ba87f89", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.141Z", "id": "relationship--1ef1fe2d-4e6c-4f0a-a030-6c7f132d5e9e", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.142Z", "id": "relationship--6e8a422e-6c6d-4880-a381-8382802eb37a", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.829Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:52:44.142Z", "id": "relationship--981b9f39-886c-4533-9d61-79c91d7cb0eb", - "modified": "2021-01-06T18:30:54.829Z", + "modified": "2021-01-13T01:52:44.142Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--e28cd530-7e29-4915-85c8-1508f50952b0", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--f1e31ef5-4692-49a3-b1c8-0b7b36da082d", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--c1658e38-d9a0-45de-b8b2-41208fa19a5d", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--4a0045ef-64c1-4eb5-b662-3e598665300f", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.143Z", "id": "relationship--2511f506-3add-45e4-a76e-1527f268c71a", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.143Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.830Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--aa735d70-c58e-44be-b486-0944c3492fa0", - "modified": "2021-01-06T18:30:54.830Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.831Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--28296063-011d-4c1b-9732-55eb7c22107b", - "modified": "2021-01-06T18:30:54.831Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.831Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:52:44.144Z", "id": "relationship--38f017ac-fa08-4caa-9c8f-d4344be80399", - "modified": "2021-01-06T18:30:54.831Z", + "modified": "2021-01-13T01:52:44.144Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--2bfeb0a9-2764-40cf-921d-d1561d7b2b4e", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--5a883ed0-ddf3-4bc7-8f41-2fcbafcfc4d9", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.146Z", "id": "relationship--63e43ec0-4836-444c-a847-dd35f8b3bff9", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.146Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.832Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.147Z", "id": "relationship--0e1a221e-2d0e-4148-8814-b916e1ee5114", - "modified": "2021-01-06T18:30:54.832Z", + "modified": "2021-01-13T01:52:44.147Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.149Z", "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.149Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--fe73d6df-f941-4372-be62-31d6b6926017", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--d5f09d51-04c9-4d8a-abc3-e3190410716a", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.150Z", "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.150Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--2c88f31f-1d5f-4728-9405-c262d059fe97", - "modified": "2021-01-06T18:30:54.834Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.151Z", "id": "relationship--c2589497-5ab6-4427-879f-654f8a4353df", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.151Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--c70e90ff-a08f-4bd3-8cfc-d8b0179a1784", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--9d2b8c1d-4272-4f6f-b563-27aeb2c80652", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.152Z", "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.152Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--8de42003-1150-4f7f-b910-8c9a11b86178", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:54.835Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.153Z", "id": "relationship--f9e7d410-31dc-48f6-9299-69bebd02ab9c", - "modified": "2021-01-06T18:30:54.836Z", + "modified": "2021-01-13T01:52:44.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.154Z", "id": "relationship--1a95a010-09b0-47d2-acf9-fa9ea1595ab5", - "modified": "2021-01-06T18:30:54.836Z", + "modified": "2021-01-13T01:52:44.154Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.837Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--649cc28c-e6a7-4d82-ac2b-304cb5fbda4f", - "modified": "2021-01-06T18:30:54.837Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.837Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--1f5d2629-74c2-4ac6-93bf-05321c1da3f9", - "modified": "2021-01-06T18:30:54.837Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.838Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.156Z", "id": "relationship--037c31b9-c3d3-4a44-be59-b348cb58d4a4", - "modified": "2021-01-06T18:30:54.838Z", + "modified": "2021-01-13T01:52:44.156Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.839Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:54.839Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.839Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:54.839Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.840Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.158Z", "id": "relationship--c7181a87-03ff-4afa-8bf6-cbf6770d3803", - "modified": "2021-01-06T18:30:54.840Z", + "modified": "2021-01-13T01:52:44.158Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.841Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--fa10d7ab-a9c8-45b5-b85d-4243423c40f3", - "modified": "2021-01-06T18:30:54.841Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--b6aeea4d-8136-46e1-bdce-751909e0fd22", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.159Z", "id": "relationship--97b96aa3-bd15-4c54-8906-fddb5ac225f0", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.159Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.160Z", "id": "relationship--12e1c66f-f959-45a6-a2bb-9a7a7bd8be61", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.160Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.842Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.160Z", "id": "relationship--f3a49bce-aee6-49a5-a0b9-a9058ed3c912", - "modified": "2021-01-06T18:30:54.842Z", + "modified": "2021-01-13T01:52:44.160Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.843Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.161Z", "id": "relationship--856aec98-1e48-4f2d-85f0-081fea4ace3b", - "modified": "2021-01-06T18:30:54.843Z", + "modified": "2021-01-13T01:52:44.161Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.845Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.162Z", "id": "relationship--55678820-c564-4a2a-b3b5-1e82d990e68c", - "modified": "2021-01-06T18:30:54.845Z", + "modified": "2021-01-13T01:52:44.162Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--8db20810-b90f-42dd-9803-f8bb7d7ae0a5", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--fffae109-6b64-4862-a5e5-7607c5a505d9", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.165Z", "id": "relationship--f95ba53c-22b9-45c2-a12a-b714dc45ad32", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.165Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:54.846Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.166Z", "id": "relationship--2ff37c5e-3fab-446b-8bc9-d331a607032a", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.166Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--334a0098-86ef-4921-8fd1-d0b68fa2fcd2", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--4164cf5f-d33e-46d3-a456-63a95bc84b38", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--e6ad0c84-99c1-4ff1-9f43-31fe90ed2825", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.167Z", "id": "relationship--2cbb3009-e4f8-4014-a358-52762bce79d0", - "modified": "2021-01-06T18:30:54.847Z", + "modified": "2021-01-13T01:52:44.167Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--b38126c5-9102-4c21-a1bb-ab11c9b018cf", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--7371524d-98ac-46f1-91c7-170f17b12a60", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--bbdca9f7-7787-47cc-9948-af8bc63b700b", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--251d3332-f281-4b3c-8f43-90a19623c42b", - "modified": "2021-01-06T18:30:54.848Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--0bf0496e-6d5c-4dea-83b6-24491c1d6bc9", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.168Z", "id": "relationship--806a2ee5-97b4-4791-8dde-11779be1d24d", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.168Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--79d2707c-b744-4900-94a4-3adeea9c3fc5", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--06dd97d1-2af2-4047-b779-e6f18f42749c", - "modified": "2021-01-06T18:30:54.849Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--3101536e-cbe4-4b48-b460-76813e93a71c", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--3c44418b-9305-442f-8d41-29b567ccbf26", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.169Z", "id": "relationship--bae1899f-1349-4428-b50d-136527828ac3", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:54.850Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.851Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:54.851Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.851Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.170Z", "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:54.851Z", + "modified": "2021-01-13T01:52:44.170Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.852Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--d55f1854-db31-4e89-9ba4-6480c6d2d84e", - "modified": "2021-01-06T18:30:54.852Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--5c368894-17fc-4d7c-832b-186b71e48840", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--dcd2515f-a17d-47b8-885a-53517adcc83d", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.171Z", "id": "relationship--dbb2a4c1-c382-4542-8254-f377438ee1fc", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.171Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--49e9f55a-c174-4912-b62e-f00cd0ddffd9", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--eb8d40f8-1034-4fc1-8b44-0a34efd6765b", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.853Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.172Z", "id": "relationship--8fbaf565-0fbc-4f31-891a-c1500a16ed80", - "modified": "2021-01-06T18:30:54.853Z", + "modified": "2021-01-13T01:52:44.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.855Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--d363cfce-25ec-4769-afec-a8c408486e7d", - "modified": "2021-01-06T18:30:54.855Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.855Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:54.855Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--d2f2a28c-a666-4e85-ac40-0e6d8a2ac171", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--34b8a8fc-42d9-4d12-9d77-8c97a2a35e39", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.173Z", "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.174Z", "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.856Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.174Z", "id": "relationship--89fe1aae-f98c-4836-9ef6-443cf461fdd4", - "modified": "2021-01-06T18:30:54.856Z", + "modified": "2021-01-13T01:52:44.174Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.858Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.175Z", "id": "relationship--fd953a90-3f27-4efa-b138-614187d120da", - "modified": "2021-01-06T18:30:54.858Z", + "modified": "2021-01-13T01:52:44.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.858Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.175Z", "id": "relationship--f9a0091f-520a-4e71-90a0-ecb0cacc96fb", - "modified": "2021-01-06T18:30:54.858Z", + "modified": "2021-01-13T01:52:44.175Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.859Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.176Z", "id": "relationship--1bb32a65-843a-4f8f-98c2-fde3c66433e8", - "modified": "2021-01-06T18:30:54.859Z", + "modified": "2021-01-13T01:52:44.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.859Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.176Z", "id": "relationship--5d4b74d8-a26f-4000-8c9a-79eec3850c5d", - "modified": "2021-01-06T18:30:54.859Z", + "modified": "2021-01-13T01:52:44.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.860Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.177Z", "id": "relationship--fa198237-2385-4c8a-b490-863016d72f75", - "modified": "2021-01-06T18:30:54.860Z", + "modified": "2021-01-13T01:52:44.177Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.862Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.179Z", "id": "relationship--8e395f09-2ca9-4de6-8013-31b49e0ab757", - "modified": "2021-01-06T18:30:54.862Z", + "modified": "2021-01-13T01:52:44.179Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.862Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.180Z", "id": "relationship--85378058-c0bb-4b1d-b373-47648dc12eb8", - "modified": "2021-01-06T18:30:54.862Z", + "modified": "2021-01-13T01:52:44.180Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:54.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:54.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:54.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:54.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.865Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.183Z", "id": "relationship--90a2a6b8-71af-4886-b1f2-36c914afbc3e", - "modified": "2021-01-06T18:30:54.865Z", + "modified": "2021-01-13T01:52:44.183Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.867Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.184Z", "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:54.867Z", + "modified": "2021-01-13T01:52:44.184Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.868Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:54.868Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.869Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.186Z", "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:54.869Z", + "modified": "2021-01-13T01:52:44.186Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.870Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.187Z", "id": "relationship--eab8de2b-e555-4794-b390-b94ff776a24b", - "modified": "2021-01-06T18:30:54.870Z", + "modified": "2021-01-13T01:52:44.187Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.871Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.188Z", "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:54.871Z", + "modified": "2021-01-13T01:52:44.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.872Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.188Z", "id": "relationship--2a3748ca-7c23-4696-b455-91f4e3b9fc10", - "modified": "2021-01-06T18:30:54.872Z", + "modified": "2021-01-13T01:52:44.188Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--345cceb6-b865-4d8e-b650-40b758df1101", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--754d7f6b-c829-43a1-b754-86288cad6c3b", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--43167aa3-0b33-48c4-91b2-3f7013044348", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.873Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.190Z", "id": "relationship--70dcd442-5409-4ab9-8e89-bfe8f64f5503", - "modified": "2021-01-06T18:30:54.873Z", + "modified": "2021-01-13T01:52:44.190Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.191Z", "id": "relationship--1b346713-fbfc-4de4-a21a-da0b0c13b293", - "modified": "2021-01-06T18:30:54.874Z", + "modified": "2021-01-13T01:52:44.191Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.875Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.191Z", "id": "relationship--ac64218a-e028-473e-adf5-bb54b94e0635", - "modified": "2021-01-06T18:30:54.875Z", + "modified": "2021-01-13T01:52:44.191Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.193Z", "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.193Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--7ea6ca54-9084-4b02-b685-8b24e7e11c5c", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.876Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:54.876Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.194Z", "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.194Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.195Z", "id": "relationship--00e91bee-faf6-4906-b891-a94129353157", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.195Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.877Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.195Z", "id": "relationship--84806b18-2d8c-4211-86ff-4176633b037c", - "modified": "2021-01-06T18:30:54.877Z", + "modified": "2021-01-13T01:52:44.195Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--61f57c5b-d4f0-44ca-b750-2db7a3a18b96", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--989e5b84-901b-462b-9bf2-5feb20ccae72", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.196Z", "id": "relationship--bd70f25c-ad40-4821-b50d-12e353397dbd", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.196Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--5dc21a6c-637e-4c6d-b3be-5de36d7de602", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.878Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--5c024ccc-e129-45c3-ae04-002e0af64850", - "modified": "2021-01-06T18:30:54.878Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--8b4eb980-4520-4ce9-a9c0-7c5e04753606", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--1f938f97-4bc9-4734-b63f-c52467b96f46", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--c0dc7c51-cd2d-4347-a51d-5e4418776e02", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.879Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--3955a747-c0fc-48c1-9aba-bcc2bd2e2c9b", - "modified": "2021-01-06T18:30:54.879Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--b676b28f-037b-4f87-8cd8-7a0b428ba361", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.197Z", "id": "relationship--1691f338-5256-4b88-810b-770c003c8432", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--4d4f2395-0088-4864-a64d-c8a59bac70e7", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--c68fe43a-fbd7-4482-825b-ce3ef107e6e8", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--f5e8869e-359a-4094-83fd-150adcf7dae3", - "modified": "2021-01-06T18:30:54.880Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--d1e5134a-38de-4967-9693-5e400f938c2a", - "modified": "2021-01-06T18:30:54.881Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.198Z", "id": "relationship--fd7eacdf-a24d-4eaf-9c9a-cff9a047ec5b", - "modified": "2021-01-06T18:30:54.881Z", + "modified": "2021-01-13T01:52:44.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.882Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--3b16b2b9-3b1b-4439-a16e-c81fa29116ad", - "modified": "2021-01-06T18:30:54.882Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--b53375f9-802c-4b6c-9309-fe9cce94a3bb", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--cb8715b8-3213-4b6d-8184-c4402f53a70b", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.883Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.199Z", "id": "relationship--49cf2cf4-5e17-42f7-8543-dcc724797eb1", - "modified": "2021-01-06T18:30:54.883Z", + "modified": "2021-01-13T01:52:44.199Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.200Z", "id": "relationship--63a905e5-d285-4a83-a418-5270d72e2418", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.200Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--a8d4eea5-abcc-4624-a1ba-d574d6d22bf8", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.885Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--f80124e7-2722-48db-be34-d025c9ab532f", - "modified": "2021-01-06T18:30:54.885Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.886Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.201Z", "id": "relationship--bb0eb289-260c-4149-92b0-dcffafe0176f", - "modified": "2021-01-06T18:30:54.886Z", + "modified": "2021-01-13T01:52:44.201Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--202a16de-092a-4d04-aeb9-d7fe7a1799ac", - "modified": "2021-01-06T18:30:54.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--9294183e-b5e1-4af6-acd1-9e79c9027839", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--d68818b2-12d1-42e0-99a0-0afbc7104143", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.887Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.202Z", "id": "relationship--84252169-2e44-4fb8-8f39-3e59b044c9a7", - "modified": "2021-01-06T18:30:54.887Z", + "modified": "2021-01-13T01:52:44.202Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.888Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.204Z", "id": "relationship--8e84efc8-6b21-414a-8ba8-20108b01d597", - "modified": "2021-01-06T18:30:54.888Z", + "modified": "2021-01-13T01:52:44.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.890Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.206Z", "id": "relationship--74b8710d-9c25-4e2d-9060-3e04f5014e23", - "modified": "2021-01-06T18:30:54.890Z", + "modified": "2021-01-13T01:52:44.206Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.891Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--fed5f115-ee0a-4db8-9e4b-010d7be6f71d", - "modified": "2021-01-06T18:30:54.891Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.891Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--4327176e-7aab-4c8c-85e4-2445d121fbad", - "modified": "2021-01-06T18:30:54.891Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--f32d016e-1a37-4208-a656-b420118e6a29", - "modified": "2021-01-06T18:30:54.892Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.207Z", "id": "relationship--ae8a6693-32df-44ac-8e8c-fb0242b41116", - "modified": "2021-01-06T18:30:54.892Z", + "modified": "2021-01-13T01:52:44.207Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.893Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.208Z", "id": "relationship--d343515d-8061-4806-83b9-a6c23c04713b", - "modified": "2021-01-06T18:30:54.893Z", + "modified": "2021-01-13T01:52:44.208Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.894Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.209Z", "id": "relationship--68ad63de-7ec8-47fc-afe7-07c74bedd546", - "modified": "2021-01-06T18:30:54.894Z", + "modified": "2021-01-13T01:52:44.209Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.210Z", "id": "relationship--1947b4f9-9c60-4229-be88-d348e642c16e", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.210Z", "id": "relationship--731881a6-cb2d-4b5c-8d9a-f29e9be6aa7d", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--719e851b-9cd4-4275-8455-bde428b3dd2f", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.895Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--f0d3d3c5-322f-4247-a8be-5c3e4144651e", - "modified": "2021-01-06T18:30:54.895Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--a6be64f7-a2e0-4238-9db8-46e7b84266a9", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--12270fb5-d942-464b-88d2-6c79b818d24f", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--0a2798f0-1e62-4687-9554-2ac7d9862f00", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.211Z", "id": "relationship--888f53d8-1c05-409b-b177-7727fcdfab61", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.211Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--b7feade7-58ae-482b-a4f8-9b4f8911117d", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--5e511ca7-6fe1-4a90-8625-d215ea4fc2ec", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--2e715486-7008-4158-8b1f-c98d02958a0d", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.896Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.212Z", "id": "relationship--8bfb502b-0262-40fa-b999-8550b136dab9", - "modified": "2021-01-06T18:30:54.896Z", + "modified": "2021-01-13T01:52:44.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.897Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--18a79461-1446-4f11-8caa-63671cf8bd09", - "modified": "2021-01-06T18:30:54.897Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.898Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--3635e5a5-4c2c-4b50-9fa9-c7800e17bdf9", - "modified": "2021-01-06T18:30:54.898Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.898Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.213Z", "id": "relationship--21898240-3dc4-43b3-a5c4-aff7be41c9e3", - "modified": "2021-01-06T18:30:54.898Z", + "modified": "2021-01-13T01:52:44.213Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--a3eeb116-7324-4814-8362-1236195ce859", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--b6e6bf4c-81e9-448f-8304-4707a84c17dc", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.899Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.214Z", "id": "relationship--7f7790be-a5bb-4387-8180-e7b4c3bc3172", - "modified": "2021-01-06T18:30:54.899Z", + "modified": "2021-01-13T01:52:44.214Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--e59b2dbd-3c4f-4e02-9e20-9f43ba6d7041", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--80d54e83-a883-4bf8-99fc-45ed11903a09", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.900Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.215Z", "id": "relationship--ec6b25ae-f191-4d0a-a2ca-da0849b72431", - "modified": "2021-01-06T18:30:54.900Z", + "modified": "2021-01-13T01:52:44.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.902Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--0b9c121c-bb1e-49c0-a5fc-31433300ea31", - "modified": "2021-01-06T18:30:54.902Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--27c0ac7e-877b-419e-a462-578eec401a54", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--2c53b770-1f8e-4af1-bf95-495a589577e6", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.903Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.216Z", "id": "relationship--2be8aab8-b779-431a-bcb4-0aad51cc6a34", - "modified": "2021-01-06T18:30:54.903Z", + "modified": "2021-01-13T01:52:44.216Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.905Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.217Z", "id": "relationship--bbb01564-cd3b-4d39-b6a4-76a16ca3cf7c", - "modified": "2021-01-06T18:30:54.905Z", + "modified": "2021-01-13T01:52:44.217Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.907Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.219Z", "id": "relationship--0a50c499-bc21-4973-84a7-1e0dc03583b6", - "modified": "2021-01-06T18:30:54.907Z", + "modified": "2021-01-13T01:52:44.219Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--602f4ff5-2f6f-4db6-9b7a-13902b5fe496", - "modified": "2021-01-06T18:30:54.909Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--1df8f733-db51-4809-81ab-8802c9e8e49b", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--df922bee-af95-46aa-a720-b4736b2ba0fe", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.220Z", "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:54.910Z", + "modified": "2021-01-13T01:52:44.220Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.913Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.221Z", "id": "relationship--db429883-1122-4585-8c9f-fbf9dc121408", - "modified": "2021-01-06T18:30:54.913Z", + "modified": "2021-01-13T01:52:44.221Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.222Z", "id": "relationship--37ee3790-fdb2-492b-bd49-98a4de985164", - "modified": "2021-01-06T18:30:54.915Z", + "modified": "2021-01-13T01:52:44.222Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6d1d8177-09f1-4d90-9ffa-3d9fbb4710dd", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fac53ef-2b87-48bb-94e7-c74f4d8aca8f", - "modified": "2021-01-06T18:30:54.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:54.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.919Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.225Z", "id": "relationship--2676eef0-f89b-4991-8693-0e37d328018a", - "modified": "2021-01-06T18:30:54.919Z", + "modified": "2021-01-13T01:52:44.225Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.921Z", - "description": "User Access Permissions", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:54.921Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.922Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.226Z", "id": "relationship--f5e7ab4b-9145-47c7-a6f6-2ba4e25d8e38", - "modified": "2021-01-06T18:30:54.922Z", + "modified": "2021-01-13T01:52:44.226Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.923Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--83882629-5cf5-4866-9b9d-35a6320123cb", - "modified": "2021-01-06T18:30:54.923Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.924Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.227Z", "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:54.924Z", + "modified": "2021-01-13T01:52:44.227Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.925Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.228Z", "id": "relationship--a1da3766-b6a4-480a-9e1a-3ff01eecae65", - "modified": "2021-01-06T18:30:54.925Z", + "modified": "2021-01-13T01:52:44.228Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.926Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.229Z", "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:54.926Z", + "modified": "2021-01-13T01:52:44.229Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.926Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.230Z", "id": "relationship--03459033-9bbc-487a-bf12-884d332a752e", - "modified": "2021-01-06T18:30:54.926Z", + "modified": "2021-01-13T01:52:44.230Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--1cf82f32-e00d-4677-af7b-5bc918a22aac", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--11d175d9-8796-474e-8c79-d38fbeacea21", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.231Z", "id": "relationship--5c72f17e-7ba2-4020-bd7e-4056c097de38", - "modified": "2021-01-06T18:30:54.927Z", + "modified": "2021-01-13T01:52:44.231Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.928Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.232Z", "id": "relationship--11238f37-4028-4b70-a1e5-fd19b1196101", - "modified": "2021-01-06T18:30:54.928Z", + "modified": "2021-01-13T01:52:44.232Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.929Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.233Z", "id": "relationship--f4428437-13f0-471b-8d9c-40e6929bac86", - "modified": "2021-01-06T18:30:54.929Z", + "modified": "2021-01-13T01:52:44.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.929Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.233Z", "id": "relationship--526b6455-7090-4845-b043-fa0d835a2c4d", - "modified": "2021-01-06T18:30:54.929Z", + "modified": "2021-01-13T01:52:44.233Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.234Z", "id": "relationship--909cca25-0cdc-4a33-9f78-277fa31b50f6", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.234Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--452d18a6-3fbc-4092-a44d-09b156d2d229", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--e3aef98e-1a55-4395-b903-ab6b0498aa9a", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.930Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.235Z", "id": "relationship--371af803-cd05-4f07-b302-74d4b07c693f", - "modified": "2021-01-06T18:30:54.930Z", + "modified": "2021-01-13T01:52:44.235Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.931Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.236Z", "id": "relationship--5347cbfa-3afd-4827-94ff-1dca3f7e4404", - "modified": "2021-01-06T18:30:54.931Z", + "modified": "2021-01-13T01:52:44.236Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.236Z", "id": "relationship--2414a830-a70b-418e-8666-ffaa19cd5525", - "modified": "2021-01-06T18:30:54.932Z", + "modified": "2021-01-13T01:52:44.236Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--3b9c407f-7d24-4922-bb6d-6002430d3c6a", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--fc5134e4-8273-45ac-9d13-98895cfde9bf", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.933Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--534a75e1-4b09-40d0-b545-1dbf1b79ac23", - "modified": "2021-01-06T18:30:54.933Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.237Z", "id": "relationship--33cc01f4-7780-4d2b-9753-d95fd8ec06f4", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--19e83368-e496-4ae3-bfaf-a34081c96d36", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--76210c82-5f4e-41b7-b93c-51c64f29c313", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--4c8cf8df-9874-4202-9fd3-6606c3d3312e", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--c22e8843-d57d-4f62-b0c9-625cc61600a1", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:54.934Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--e42a6c26-5d6c-4bc7-86ee-4fd395678368", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--ca640360-e0d3-42cb-8677-f897a3620c3c", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.238Z", "id": "relationship--8240e297-281e-4f03-8bc4-81e4369652ae", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.238Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--702cf900-5ede-4889-be20-4e8f10fe7c6d", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.935Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--e934cab7-21fd-4380-b6ce-8c030978b943", - "modified": "2021-01-06T18:30:54.935Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--5264d814-71b0-418d-9449-63acda1ebb15", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--fb3856a0-37ba-4107-8582-a3fbb2a6de40", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--c1649d14-7399-49e2-aa2c-8b8a6090037c", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.936Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.239Z", "id": "relationship--a411ba43-9eee-4bd7-8bfa-2c5c3dd2283f", - "modified": "2021-01-06T18:30:54.936Z", + "modified": "2021-01-13T01:52:44.239Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.937Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.240Z", "id": "relationship--91bfda43-bafd-4c19-bc75-02c7184b863c", - "modified": "2021-01-06T18:30:54.937Z", + "modified": "2021-01-13T01:52:44.240Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.937Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--162f929e-ea3e-465d-bac1-fcb8c379a237", - "modified": "2021-01-06T18:30:54.937Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--15a503a4-5d74-4704-9546-0193453c21dd", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--7f1368b8-520d-43f8-8da9-e24a596002e2", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--8e61d444-b717-4ad3-b025-c53dc1eecdd0", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--0ef3a1dd-8337-4e0c-9dec-a622d6c3b593", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.241Z", "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.241Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.938Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.242Z", "id": "relationship--1eb6b45d-a172-4d4f-9ecc-353bf7b233a0", - "modified": "2021-01-06T18:30:54.938Z", + "modified": "2021-01-13T01:52:44.242Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--39006bc1-cb58-4372-b22b-39e2bdb97114", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--d1e1069c-8419-4e17-a3d4-9aeaaada028c", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.939Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--8130a450-9d6e-4b14-8577-a97a19b2cc62", - "modified": "2021-01-06T18:30:54.939Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.940Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--6d6bfa68-93e7-42bb-bcca-fbfb25522b40", - "modified": "2021-01-06T18:30:54.940Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.940Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.243Z", "id": "relationship--702977fd-2631-4bb5-ab8a-a89d9f6496d4", - "modified": "2021-01-06T18:30:54.940Z", + "modified": "2021-01-13T01:52:44.243Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.244Z", "id": "relationship--c0b6a614-2967-482a-86f3-44a2768f0605", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.244Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--cabdc082-24d3-4463-8199-8f69a6d117a0", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--8cf8b41a-3371-43e2-babe-9ae3c9d8b5aa", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.941Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.245Z", "id": "relationship--a0bf5c27-0f3f-4f8e-bc81-78e5ecfe49a1", - "modified": "2021-01-06T18:30:54.941Z", + "modified": "2021-01-13T01:52:44.245Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.942Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.246Z", "id": "relationship--b2e53e9f-0c35-41b6-af37-774a277c774a", - "modified": "2021-01-06T18:30:54.942Z", + "modified": "2021-01-13T01:52:44.246Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.943Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.247Z", "id": "relationship--bf76cdfd-963e-4b90-9bc8-61ab5c8eece3", - "modified": "2021-01-06T18:30:54.943Z", + "modified": "2021-01-13T01:52:44.247Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.248Z", "id": "relationship--853b4d47-b22f-47cc-9659-19f9a502502c", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.248Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.248Z", "id": "relationship--eb8c90fe-4ed0-4fac-8f28-9a6d1bd180be", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.248Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.944Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--326f49a6-1880-45a5-a62e-bbf37b8873df", - "modified": "2021-01-06T18:30:54.944Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--5a988f58-c926-4491-9afe-9f33eed4b539", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--ba331fcc-9d28-4a88-9997-5ab60bcdfdc0", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--fddf4caf-5f37-42de-842a-918f7c890dda", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--1cd35eb0-0398-44c5-beee-9f21305af73e", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--8d517e6d-f5f0-4345-85fc-c1a3e74d7b52", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--e6112f28-f3f9-4fea-a205-0ad0d16d4441", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.249Z", "id": "relationship--24fd1cb0-6058-4366-b2a4-7b3df51fccc9", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.249Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.250Z", "id": "relationship--46042ab4-3bb6-46b5-9e71-03ea80b7749f", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.945Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.250Z", "id": "relationship--8d37024e-6110-40a2-a866-3303ae39a936", - "modified": "2021-01-06T18:30:54.945Z", + "modified": "2021-01-13T01:52:44.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.946Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--b71e4fa6-917c-49fd-8795-920484b73e0e", - "modified": "2021-01-06T18:30:54.946Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.946Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--bb4da27b-e20b-433c-9fe9-9098e99a18d0", - "modified": "2021-01-06T18:30:54.946Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.947Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.251Z", "id": "relationship--0b75fafa-e4ee-4a80-8d11-2e3461601a75", - "modified": "2021-01-06T18:30:54.947Z", + "modified": "2021-01-13T01:52:44.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--192a7558-523e-4a42-99bc-260f49344cb5", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--d65bbc30-1f33-4bce-ba8b-495fd21ac2cb", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.948Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.252Z", "id": "relationship--9c0d54f6-7f33-4bee-8d32-e5ff8e2b9ade", - "modified": "2021-01-06T18:30:54.948Z", + "modified": "2021-01-13T01:52:44.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.253Z", "id": "relationship--f113490d-3311-40ee-84c1-f496812ac9dd", - "modified": "2021-01-06T18:30:54.949Z", + "modified": "2021-01-13T01:52:44.253Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:54.949Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:54.949Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--c9cea2ca-3334-46f6-95e9-a1d4e2b759d4", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--e4e5f368-0205-47bc-88a7-08de5870a16f", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--4761155b-3b80-4560-b9af-8bc57304db06", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--f8104ffc-986f-47c0-a1e9-cca551251278", - "modified": "2021-01-06T18:30:54.950Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:54.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.254Z", "id": "relationship--163d3853-39d6-4c12-83e8-092a23c856f3", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.254Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.255Z", "id": "relationship--10d0ba5a-c1f3-4547-96a2-b4ae6202385e", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:54.951Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:54.951Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.255Z", "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:54.951Z", + "modified": "2021-01-13T01:52:44.255Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--6a12a192-5fe0-4662-b5ed-c8b558c1cea8", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--b59dbace-1818-4bb0-b268-33de26463b15", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.952Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.256Z", "id": "relationship--9d632723-ee46-42b9-bce5-bfb2d2bf618b", - "modified": "2021-01-06T18:30:54.952Z", + "modified": "2021-01-13T01:52:44.256Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--44ca4399-cdb0-4edc-9bc8-d4fd9748224b", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--3f17dc10-22b5-472d-8d79-3cfc80765305", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.953Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.258Z", "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:54.953Z", + "modified": "2021-01-13T01:52:44.258Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--75708a83-476e-4787-adf5-931ef8ed078f", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--ebf1daa5-744c-4d7c-9e2b-d68a52cd085f", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.954Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--3df91b26-19ba-42b6-bb86-f680bd017087", - "modified": "2021-01-06T18:30:54.954Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--819292a1-5a6b-4e6f-8718-e5195720e5de", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--25aa606f-a020-43b6-8de5-2c7341b51f4f", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--46d543f1-6ee7-4e32-b259-d597fe441949", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.260Z", "id": "relationship--6efa0541-ff03-47f4-afab-b47293a31b97", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--efdd24de-7bbb-43d6-bd21-024a67ebe5ec", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--b11b7c79-fabc-4051-bfad-7a41cb73c79a", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--2b792009-4473-47e0-b338-0d8d2635228e", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.955Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--d0f29dc1-7975-4229-a38a-a65bfbc4e91b", - "modified": "2021-01-06T18:30:54.955Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--bfead51b-aa3b-43c8-b646-f412eddd142c", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--9ccb2ee8-eb20-4b66-8b1e-8d0d4e627753", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.261Z", "id": "relationship--073dfaf7-839e-4239-9ec2-43c770bbc375", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--a189354a-a19e-4196-ab16-00fd008ef921", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--230b13fb-1a95-4790-ae7e-2604e4f9c7cf", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--ae882bdc-808e-484f-aaa8-cf91e76152a5", - "modified": "2021-01-06T18:30:54.956Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--213bd900-1808-421c-88f3-a2d50145b51d", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--5dfdb723-54a5-415a-9845-1e583c7abce6", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--3bb043f9-b4f6-407e-84a0-0f6d5d435f54", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.262Z", "id": "relationship--b8d45d62-3ea5-4141-ac0c-bbd43021e2eb", - "modified": "2021-01-06T18:30:54.957Z", + "modified": "2021-01-13T01:52:44.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--7fc366b4-d49d-470e-9c80-6d9cdf395ffc", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.958Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:54.958Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.959Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.263Z", "id": "relationship--387cd12d-78ed-4f79-9cbb-6dc9e2142395", - "modified": "2021-01-06T18:30:54.959Z", + "modified": "2021-01-13T01:52:44.263Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.264Z", "id": "relationship--858bcd41-df79-456a-bf21-e9d334ef4da5", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.264Z", "id": "relationship--24ea89a8-b943-4a1e-ab09-df3bd32feeb3", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--38710920-ebca-4e2b-ad6f-93a29596f0de", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--1a782800-facc-4dfb-831f-1ae7b97f2e3b", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--51405937-d1dc-46cc-8a57-e3a686e9b348", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--9e684054-daf2-4db3-908b-4d90dba47dd2", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.960Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.265Z", "id": "relationship--02ca523c-8a90-432f-8d16-b94dbea515ae", - "modified": "2021-01-06T18:30:54.960Z", + "modified": "2021-01-13T01:52:44.265Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.961Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--fb21bc19-ac5c-4426-8608-dc1b194acec8", - "modified": "2021-01-06T18:30:54.961Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.961Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--33690dae-eefd-42e8-bd9e-31e30619c8d5", - "modified": "2021-01-06T18:30:54.961Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.266Z", "id": "relationship--0c1a2749-b687-4fb6-bec4-eff39e8f1423", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--1dbff2c3-339d-4e14-9f63-08ebdaae3299", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--a9c65b0c-bd4b-4597-b7d4-7e322fae5542", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--3b7675b5-470e-466f-af19-d8de449cd336", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.962Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.267Z", "id": "relationship--36c939ca-8387-4bd4-aead-16f44bdd6e11", - "modified": "2021-01-06T18:30:54.962Z", + "modified": "2021-01-13T01:52:44.267Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--e7168f2a-7711-4dbd-a93c-7ff6680ef6d5", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.268Z", "id": "relationship--952e8b02-f68e-46c3-a7dd-182247b6a46c", - "modified": "2021-01-06T18:30:54.963Z", + "modified": "2021-01-13T01:52:44.268Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--3f9435dd-9b77-4136-9dc4-b4d8915255c0", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--fb809a9e-3945-4a0f-bb74-cdc0996568fb", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--613ac41e-ae28-406b-8b8e-f287af930c36", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--62e142ed-7eae-4548-aafd-43a9b4553b86", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--0d2278e7-ae41-48ed-a784-209b736b36e9", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.269Z", "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:54.964Z", + "modified": "2021-01-13T01:52:44.269Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.965Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.270Z", "id": "relationship--d4ec633a-e81a-493b-a94a-ce495110eb8f", - "modified": "2021-01-06T18:30:54.965Z", + "modified": "2021-01-13T01:52:44.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.966Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.270Z", "id": "relationship--0650f8a1-9ba2-4eef-acd7-55b5e6dbbfab", - "modified": "2021-01-06T18:30:54.966Z", + "modified": "2021-01-13T01:52:44.270Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.967Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.272Z", "id": "relationship--39c1ddf8-d933-437c-9cbc-b1d3ff95eb91", - "modified": "2021-01-06T18:30:54.967Z", + "modified": "2021-01-13T01:52:44.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.967Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.272Z", "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:54.967Z", + "modified": "2021-01-13T01:52:44.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--f34fd691-0ecc-4ec6-a2a2-4b55ab10b92a", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--e288d2d5-8d5a-43a6-996a-337c7858c2d8", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.969Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--3ce822f8-80d5-43d7-81fd-de7e8be71b66", - "modified": "2021-01-06T18:30:54.969Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.273Z", "id": "relationship--1c13daa0-e29a-447d-983a-4bb307ded65d", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.273Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.274Z", "id": "relationship--c1633d02-37f6-4a9a-81c6-fe7de85896ec", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.970Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.274Z", "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:54.970Z", + "modified": "2021-01-13T01:52:44.274Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--7b49c644-ca00-451a-8fa1-593aa86ca0a6", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--2fede993-15e0-4744-8a9a-6d59f4627ba7", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--51fb904d-20bb-4fea-b507-6175dd990921", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.971Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.275Z", "id": "relationship--3bcd97b1-aef0-4433-8b86-8659d928f951", - "modified": "2021-01-06T18:30:54.971Z", + "modified": "2021-01-13T01:52:44.275Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.972Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.276Z", "id": "relationship--85680721-9104-4110-9920-626b1673a9a5", - "modified": "2021-01-06T18:30:54.972Z", + "modified": "2021-01-13T01:52:44.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.973Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.276Z", "id": "relationship--a0e1e7eb-43ef-4724-aa3b-333de3656730", - "modified": "2021-01-06T18:30:54.973Z", + "modified": "2021-01-13T01:52:44.276Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.974Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.277Z", "id": "relationship--6d14bba6-dd95-4bb9-a182-674375aa3718", - "modified": "2021-01-06T18:30:54.974Z", + "modified": "2021-01-13T01:52:44.277Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.974Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--2ec3b4b8-72b1-488b-aa53-ebf8e980a32f", - "modified": "2021-01-06T18:30:54.974Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--102989d0-4ad1-4794-a042-174d38595a77", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--67f8817a-efcc-492f-808f-c74d97521722", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--abccb607-d683-4413-bf11-b5188bd52472", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--3f371577-9e2b-403c-b0ed-ce37dabf645e", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--6a8b1e8d-082f-4e74-8a1a-3b52932155bd", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.975Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--b4b95c73-f3f4-457b-9794-c992e6c1359d", - "modified": "2021-01-06T18:30:54.975Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.278Z", "id": "relationship--aa28f037-9410-45b1-b45e-2388f06cdc8c", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--b43d6d16-b6e5-4dd5-905d-c1c8c9597d0e", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--b92e435e-a939-4f9f-8636-b4b7bf69007f", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--90d11eb6-7bba-404c-bd76-896b8287b279", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--cdd76d80-bcc9-41a6-8181-140168e903c3", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--f14a1ef2-6dc6-45ec-8ae5-71b89c94108c", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.279Z", "id": "relationship--ac3fc14d-0efc-4683-9c01-6d500514b694", - "modified": "2021-01-06T18:30:54.976Z", + "modified": "2021-01-13T01:52:44.279Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.977Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--f813062a-4cc6-44bc-ac8d-3ca751877fc7", - "modified": "2021-01-06T18:30:54.977Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--6fcc4fdb-db17-44de-92cc-4c9bb1f8c521", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--ed7910a7-da1b-42cd-99cd-ffd7efb668c5", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.978Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.281Z", "id": "relationship--f162143d-c766-4042-9bd4-6a73dcddf8f5", - "modified": "2021-01-06T18:30:54.978Z", + "modified": "2021-01-13T01:52:44.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.282Z", "id": "relationship--56a8be0b-8f6c-404a-90a0-8dde978b6ed0", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.282Z", "id": "relationship--70446905-8e0d-42c3-8b35-5e3fbe6ed7a1", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.282Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.283Z", "id": "relationship--72bbec30-03ff-4de5-bae0-bb43b7c8f521", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.979Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.283Z", "id": "relationship--66beb3b8-87d2-4e09-abc6-994251de0fcb", - "modified": "2021-01-06T18:30:54.979Z", + "modified": "2021-01-13T01:52:44.283Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.980Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--bd2826a1-6be8-49af-ad9f-cf945189c61b", - "modified": "2021-01-06T18:30:54.980Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--a9c6a077-187d-49f0-9847-7d629246c29d", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.284Z", "id": "relationship--d384fb4d-95b0-4b64-9e6c-c23d40e486f9", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.284Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--b59e646a-3b00-413e-9ce7-b97fde82365b", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--b0539dc6-1194-4f01-8fc1-839862828af2", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.981Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--90d86b48-ec1c-4af8-939c-d86556ce880c", - "modified": "2021-01-06T18:30:54.981Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--ff60090f-0ac5-4b75-be33-e9d287e79eba", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--07943d79-a540-4210-9df3-e4222889eb29", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--a5bb25db-0767-4566-b6e3-979438a2c92c", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--5efca001-f9bf-4d2a-b3ed-0a523d87b372", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.982Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--1ac636ce-b9a6-49f4-90b3-07f702edb6d0", - "modified": "2021-01-06T18:30:54.982Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.285Z", "id": "relationship--9e0065d0-7a7c-408c-af96-54882358a506", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--ec704b12-7088-46c6-a8af-9e7a5115e0f2", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--0bb2413f-d436-45eb-b13d-d2885c1bca92", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--04fb248f-6479-4aa1-a128-a5cbde269523", - "modified": "2021-01-06T18:30:54.983Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.984Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.286Z", "id": "relationship--dd2ac1ea-362f-4468-b326-e4f2cbeac8c8", - "modified": "2021-01-06T18:30:54.984Z", + "modified": "2021-01-13T01:52:44.286Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.985Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.287Z", "id": "relationship--b1e540cf-8e30-4684-8472-4a1ac556d4ca", - "modified": "2021-01-06T18:30:54.985Z", + "modified": "2021-01-13T01:52:44.287Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.985Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--3424d304-fbea-45b5-8cf0-a4aedbd3aec0", - "modified": "2021-01-06T18:30:54.985Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.986Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--b874c1c9-4d77-4fb2-9d8f-ff24adbf233a", - "modified": "2021-01-06T18:30:54.986Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.986Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:52:44.288Z", "id": "relationship--684c5613-f79f-4830-8a00-736baf69995c", - "modified": "2021-01-06T18:30:54.986Z", + "modified": "2021-01-13T01:52:44.288Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--0f987b5b-8175-4d35-8d0f-69f80af19013", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--922d7bce-6a3d-4d67-b909-df8c91f7e85c", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.987Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--158fcbd7-426d-49c3-95b5-069d4da94d11", - "modified": "2021-01-06T18:30:54.987Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.988Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.289Z", "id": "relationship--c36910ad-5157-40e0-addf-9af1e7abcf75", - "modified": "2021-01-06T18:30:54.988Z", + "modified": "2021-01-13T01:52:44.289Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.290Z", "id": "relationship--fc850a3a-ef59-4c9e-967e-10d1416ad1ec", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--b3eaff2b-21f2-4b20-8c4b-e34531b8b1c4", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.989Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--79cf0982-ee38-4921-9900-5b293da4ede3", - "modified": "2021-01-06T18:30:54.989Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.990Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.291Z", "id": "relationship--5520a3c9-8627-483d-a8ff-6e18e78fd5c5", - "modified": "2021-01-06T18:30:54.990Z", + "modified": "2021-01-13T01:52:44.291Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.992Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.292Z", "id": "relationship--73ed7360-cc2b-4a96-bc35-3b0b77c9993c", - "modified": "2021-01-06T18:30:54.992Z", + "modified": "2021-01-13T01:52:44.292Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.993Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:52:44.293Z", "id": "relationship--7ac15110-827a-4c79-a7a4-aafdba4d65d3", - "modified": "2021-01-06T18:30:54.993Z", + "modified": "2021-01-13T01:52:44.293Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.994Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.294Z", "id": "relationship--f1119991-bb3c-454b-b2ed-d7837bb09946", - "modified": "2021-01-06T18:30:54.994Z", + "modified": "2021-01-13T01:52:44.294Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.995Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.295Z", "id": "relationship--ff04a238-a5db-4ebe-b032-b4084b23b39a", - "modified": "2021-01-06T18:30:54.995Z", + "modified": "2021-01-13T01:52:44.295Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.996Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.296Z", "id": "relationship--8fe9d2b1-731f-4ec0-a940-44eac6117ba7", - "modified": "2021-01-06T18:30:54.996Z", + "modified": "2021-01-13T01:52:44.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.996Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.296Z", "id": "relationship--d692461d-6c5d-41cb-86cf-cce8d43559be", - "modified": "2021-01-06T18:30:54.996Z", + "modified": "2021-01-13T01:52:44.296Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.997Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.297Z", "id": "relationship--b35597aa-550a-4864-892a-80d37c8e51e0", - "modified": "2021-01-06T18:30:54.997Z", + "modified": "2021-01-13T01:52:44.297Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.997Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.297Z", "id": "relationship--6652b1e9-3da8-42e3-8339-64e70728c222", - "modified": "2021-01-06T18:30:54.997Z", + "modified": "2021-01-13T01:52:44.297Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.999Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.299Z", "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:54.999Z", + "modified": "2021-01-13T01:52:44.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:54.999Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.299Z", "id": "relationship--a25b4651-3571-4c95-a1b5-eb0af88e6f59", - "modified": "2021-01-06T18:30:54.999Z", + "modified": "2021-01-13T01:52:44.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.000Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.300Z", "id": "relationship--7bdf9c0e-d6ee-4cf9-bdfc-97d0b6afa978", - "modified": "2021-01-06T18:30:55.000Z", + "modified": "2021-01-13T01:52:44.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.001Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.300Z", "id": "relationship--a2b9cbaa-b711-4375-b512-7bc13a871432", - "modified": "2021-01-06T18:30:55.001Z", + "modified": "2021-01-13T01:52:44.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.002Z", - "description": "Continuous Monitoring, Penetration Testing", - "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:55.002Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.002Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.301Z", "id": "relationship--4de1933d-0056-48f1-86d6-286fde478652", - "modified": "2021-01-06T18:30:55.002Z", + "modified": "2021-01-13T01:52:44.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.003Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.302Z", "id": "relationship--0a1c1f63-ead8-43b6-9709-557a74e8170f", - "modified": "2021-01-06T18:30:55.003Z", + "modified": "2021-01-13T01:52:44.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.003Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.302Z", "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.003Z", + "modified": "2021-01-13T01:52:44.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.004Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.303Z", "id": "relationship--cc7b46d4-747e-4b2c-a1c5-f07e9668424b", - "modified": "2021-01-06T18:30:55.004Z", + "modified": "2021-01-13T01:52:44.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.005Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.303Z", "id": "relationship--adc6aa57-6dba-42b5-a5f5-1e68068e620f", - "modified": "2021-01-06T18:30:55.005Z", + "modified": "2021-01-13T01:52:44.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.006Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.304Z", "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:55.006Z", + "modified": "2021-01-13T01:52:44.304Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.007Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.305Z", "id": "relationship--c3793146-b071-4c6e-a0ca-afa9f2e25502", - "modified": "2021-01-06T18:30:55.007Z", + "modified": "2021-01-13T01:52:44.305Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.008Z", - "description": "Vulnerability Scanning, Threat Hunting", - "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:55.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.009Z", - "description": "Vulnerability Scanning, Threat Hunting", - "id": "relationship--f476af09-ed64-4b8d-8478-658d7b826bed", - "modified": "2021-01-06T18:30:55.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.010Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.308Z", "id": "relationship--ad8b6fc9-d63d-42b1-a64b-0ff61997d6b0", - "modified": "2021-01-06T18:30:55.010Z", + "modified": "2021-01-13T01:52:44.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.011Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.308Z", "id": "relationship--10b40f06-b899-4177-b655-b8d4fa7af5af", - "modified": "2021-01-06T18:30:55.011Z", + "modified": "2021-01-13T01:52:44.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.011Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.309Z", "id": "relationship--7642e31b-42bc-48ce-8fb3-498a338f5030", - "modified": "2021-01-06T18:30:55.011Z", + "modified": "2021-01-13T01:52:44.309Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.012Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.309Z", "id": "relationship--6b535300-446a-4af7-b27f-89d7c485cbda", - "modified": "2021-01-06T18:30:55.012Z", + "modified": "2021-01-13T01:52:44.309Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.013Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.310Z", "id": "relationship--43ab80fc-81e6-4947-a479-7c4f761aafd2", - "modified": "2021-01-06T18:30:55.013Z", + "modified": "2021-01-13T01:52:44.310Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.013Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.311Z", "id": "relationship--3b309cf6-2043-4df0-b249-23ff1d54dbf0", - "modified": "2021-01-06T18:30:55.013Z", + "modified": "2021-01-13T01:52:44.311Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.015Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.312Z", "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:55.015Z", + "modified": "2021-01-13T01:52:44.312Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.015Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.312Z", "id": "relationship--cb818310-bac5-4afc-b5db-954828f480ae", - "modified": "2021-01-06T18:30:55.015Z", + "modified": "2021-01-13T01:52:44.312Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.017Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.313Z", "id": "relationship--29e1cc95-a981-4cbf-a817-5aad433f7c25", - "modified": "2021-01-06T18:30:55.017Z", + "modified": "2021-01-13T01:52:44.313Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.017Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.313Z", "id": "relationship--4dbb9921-ba08-4df2-8d0d-f60ec70284ad", - "modified": "2021-01-06T18:30:55.017Z", + "modified": "2021-01-13T01:52:44.313Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.020Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:52:44.315Z", "id": "relationship--bf476995-126e-405f-86af-6f0197e20e27", - "modified": "2021-01-06T18:30:55.020Z", + "modified": "2021-01-13T01:52:44.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.021Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.316Z", "id": "relationship--3c7eb290-48cf-4be7-91ee-ce18bac74f2d", - "modified": "2021-01-06T18:30:55.021Z", + "modified": "2021-01-13T01:52:44.316Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.022Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:52:44.316Z", "id": "relationship--c7604f20-16f7-462f-8ea1-f4687e8343c0", - "modified": "2021-01-06T18:30:55.022Z", + "modified": "2021-01-13T01:52:44.316Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.023Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.317Z", "id": "relationship--c26fee28-c2cb-4926-a887-56256fc42ec5", - "modified": "2021-01-06T18:30:55.023Z", + "modified": "2021-01-13T01:52:44.317Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.023Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:52:44.317Z", "id": "relationship--e7e2b204-d0b1-4e29-828e-6ef8599a58d0", - "modified": "2021-01-06T18:30:55.023Z", + "modified": "2021-01-13T01:52:44.317Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.025Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.318Z", "id": "relationship--6f1ef72c-386d-4fd3-8b63-f22196b6d6b9", - "modified": "2021-01-06T18:30:55.025Z", + "modified": "2021-01-13T01:52:44.318Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c3c5801b-4b7d-4f51-8ebd-5d65e203918a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.025Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:52:44.318Z", "id": "relationship--120e595b-0508-455c-a5a2-977cab87a5b9", - "modified": "2021-01-06T18:30:55.025Z", + "modified": "2021-01-13T01:52:44.318Z", "relationship_type": "mitigates", "source_ref": "course-of-action--4f60ff14-6ee9-4416-9301-4c44b7112db9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.027Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.319Z", "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:55.027Z", + "modified": "2021-01-13T01:52:44.319Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.028Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.319Z", "id": "relationship--659ef6b8-c7eb-4746-9dbe-fed131335d03", - "modified": "2021-01-06T18:30:55.028Z", + "modified": "2021-01-13T01:52:44.319Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8d51eb13-0be9-4580-a232-c24d216e98e7", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.029Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.320Z", "id": "relationship--a8bb18bd-e21a-47ea-93ef-f6e6a9c5a196", - "modified": "2021-01-06T18:30:55.029Z", + "modified": "2021-01-13T01:52:44.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.030Z", - "description": "Vulnerability Scanning, Threat Hunting", + "created": "2021-01-13T01:52:44.320Z", "id": "relationship--60ea3538-0289-4703-a5c0-a5c1f53ab00b", - "modified": "2021-01-06T18:30:55.030Z", + "modified": "2021-01-13T01:52:44.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7e61b894-e9d9-4958-a240-c0ca528593b9", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.031Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:52:44.322Z", "id": "relationship--d58ce704-24f1-4f28-8b9a-a6e48e4e60e3", - "modified": "2021-01-06T18:30:55.031Z", + "modified": "2021-01-13T01:52:44.322Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.033Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:52:44.323Z", "id": "relationship--e7b7c14b-f771-4409-b01f-a4ff97f5b0ee", - "modified": "2021-01-06T18:30:55.033Z", + "modified": "2021-01-13T01:52:44.323Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--ca9d3402-ada3-484d-876a-d717bd6e05f2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.035Z", - "description": "Transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.324Z", "id": "relationship--612e41e8-03bd-48fa-abb8-45fee4c4ff9c", - "modified": "2021-01-06T18:30:55.035Z", + "modified": "2021-01-13T01:52:44.324Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.035Z", - "description": "Transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.324Z", "id": "relationship--8ad867db-7b9a-4652-ac4e-5b3668d9bee5", - "modified": "2021-01-06T18:30:55.035Z", + "modified": "2021-01-13T01:52:44.324Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--700fe7f0-cc4d-4c19-8741-0f18cbf73b6d", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--f13b8659-a64a-40be-a276-f5a4fa320040", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.037Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:44.326Z", "id": "relationship--ee368629-1044-4cd2-baf5-ca835f5c0c91", - "modified": "2021-01-06T18:30:55.037Z", + "modified": "2021-01-13T01:52:44.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.039Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:55.039Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.039Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--20be92ca-88c6-419b-9727-b4c85303a2b9", - "modified": "2021-01-06T18:30:55.039Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.327Z", "id": "relationship--50c4ed6a-0278-406b-8a27-f4f45fc8506d", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.327Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--72deedcb-dd22-4539-bbb8-97dc788a1d19", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--e359ef99-5e72-49c4-b998-d1c38f74fc22", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--96f70fc0-f020-4dd4-8082-00cb31bb3639", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.040Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.328Z", "id": "relationship--d5b7e8cf-1ead-4215-ac35-229e8eb6144f", - "modified": "2021-01-06T18:30:55.040Z", + "modified": "2021-01-13T01:52:44.328Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--93e070a7-814b-4774-80d0-0c1f64cb9667", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--49c42282-0861-43ae-9a36-5929ba451847", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.042Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.330Z", "id": "relationship--47a0cf56-0685-419f-ada2-976eacbbbccb", - "modified": "2021-01-06T18:30:55.042Z", + "modified": "2021-01-13T01:52:44.330Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.332Z", "id": "relationship--979bcbe0-0c94-4ac8-a0ec-8342ee743541", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.332Z", "id": "relationship--0e155fdb-dab1-4d9e-94e5-48183342ca00", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.332Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.043Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--8e84a5d9-9de8-4299-9fd6-450782544eeb", - "modified": "2021-01-06T18:30:55.043Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--8a7c9856-4268-452f-8dfb-371cee9058d7", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--01cdc438-eca4-425d-a2d6-ad52436a43b2", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.333Z", "id": "relationship--236aa49d-3ce6-40cd-a7d5-89e6f152a362", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.333Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.334Z", "id": "relationship--195dcbed-4af3-4d95-a5ed-3651a93210ee", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.334Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.044Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.334Z", "id": "relationship--43d035ce-4f10-43ea-8f74-88b10116d1d4", - "modified": "2021-01-06T18:30:55.044Z", + "modified": "2021-01-13T01:52:44.334Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.045Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--d3413c43-1731-4a3c-b99c-66986458d8a4", - "modified": "2021-01-06T18:30:55.045Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--56ab044c-f773-42a3-9b5b-e851df5d7e4f", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--6e7d1cc8-b132-4c35-82dc-69c77c364568", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.046Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.336Z", "id": "relationship--dd9e068b-fb86-47b8-b326-4dbc7734dcf3", - "modified": "2021-01-06T18:30:55.046Z", + "modified": "2021-01-13T01:52:44.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.047Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--e884d6da-e879-498f-8e32-5f82193f0e19", - "modified": "2021-01-06T18:30:55.047Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.047Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--2647354e-e781-4b53-a4d4-557247d1cd63", - "modified": "2021-01-06T18:30:55.047Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.048Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--06522e57-0704-4d57-851e-43f52843a0aa", - "modified": "2021-01-06T18:30:55.048Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.048Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:44.337Z", "id": "relationship--dbcc8a0d-599d-4eb9-935f-a3e7ee08e4dc", - "modified": "2021-01-06T18:30:55.048Z", + "modified": "2021-01-13T01:52:44.337Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--c1a80479-f9f4-4cee-8ffb-28f9ea5e439b", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--5b892111-c49a-49bc-8597-6fe4b31920e7", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.049Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--afaab810-c13c-4aec-8328-cbaa87837219", - "modified": "2021-01-06T18:30:55.049Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.050Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.339Z", "id": "relationship--441f38b0-e66e-408c-aa34-79d8fae7ae67", - "modified": "2021-01-06T18:30:55.050Z", + "modified": "2021-01-13T01:52:44.339Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.051Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.340Z", "id": "relationship--30346d2e-798d-4cb4-9d31-e4e16d62f0be", - "modified": "2021-01-06T18:30:55.051Z", + "modified": "2021-01-13T01:52:44.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.052Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.340Z", "id": "relationship--cf7c1688-7646-4559-b0c5-ba0d8281e6c1", - "modified": "2021-01-06T18:30:55.052Z", + "modified": "2021-01-13T01:52:44.340Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.053Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.341Z", "id": "relationship--203a087b-7a81-4e3a-a279-d499c5fbd20d", - "modified": "2021-01-06T18:30:55.053Z", + "modified": "2021-01-13T01:52:44.341Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.054Z", - "description": "Information Flow Enforcement", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:55.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.054Z", - "description": "Information Flow Enforcement", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:55.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.055Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:55.055Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.057Z", - "description": "Malicious Code Protection", - "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:55.057Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.057Z", - "description": "Malicious Code Protection", - "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:55.057Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.058Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--36681363-4476-4a2c-8442-2efb3e9593e3", - "modified": "2021-01-06T18:30:55.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--0896a18c-2df1-4b1b-81fb-d21d5dc16acb", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c16da334-18e6-4282-a9f3-7b523ca1640f", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.059Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c372e451-7655-41f2-a9d6-d847a5f2bd72", - "modified": "2021-01-06T18:30:55.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.060Z", - "description": "Mobile Code", + "created": "2021-01-13T01:52:44.348Z", "id": "relationship--ae969af9-d1cc-4657-9e48-020c391e86fe", - "modified": "2021-01-06T18:30:55.060Z", + "modified": "2021-01-13T01:52:44.348Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.061Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:55.061Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.061Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:55.061Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--574aaea7-088d-4615-be3d-051795465d34", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.062Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:55.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:55.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:55.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.063Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", + "created": "2021-01-13T01:52:44.352Z", "id": "relationship--6895b337-72cf-498c-893f-1d3371d8e01f", - "modified": "2021-01-06T18:30:55.063Z", + "modified": "2021-01-13T01:52:44.352Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.064Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.353Z", "id": "relationship--befc3c7f-84e2-4845-93ae-2ffdbaedf133", - "modified": "2021-01-06T18:30:55.064Z", + "modified": "2021-01-13T01:52:44.353Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.064Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.354Z", "id": "relationship--c4357546-407d-4b48-886f-a28d309dcdce", - "modified": "2021-01-06T18:30:55.064Z", + "modified": "2021-01-13T01:52:44.354Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.065Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--662f0fae-5c5b-4c1c-84e9-4b523741045a", - "modified": "2021-01-06T18:30:55.065Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--1582b155-e4c5-40c4-84d9-7c8ce977afc0", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--583cdb9e-e961-4374-b860-e26702f5a506", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.066Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:52:44.355Z", "id": "relationship--a4abf736-6d0e-4df2-b61b-1f81d80871b7", - "modified": "2021-01-06T18:30:55.066Z", + "modified": "2021-01-13T01:52:44.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.067Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:55.067Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--9f8eb690-94d2-4494-bcb7-87af99035dfa", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--8fe35e6a-f81e-4861-a5a5-0d483b728f85", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--feeaf489-71af-43df-8ca5-5827908fab77", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.068Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--42c9e7db-8505-48b8-9338-dc1370ff97af", - "modified": "2021-01-06T18:30:55.068Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--0af5acc3-cfcb-4764-bb9e-a7d2508aa1dc", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.070Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:55.070Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--f0afce7e-48d1-4db5-b29b-b26133e2f65d", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.071Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--00361e78-882b-4439-876e-9ff380aa793d", - "modified": "2021-01-06T18:30:55.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--9532d456-8e9d-465e-807a-28220cf25173", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--e244d524-88a0-4e33-b22d-96ad24db1f9a", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.072Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.360Z", "id": "relationship--36a4927f-ac3c-4a45-a5b4-423606fc6823", - "modified": "2021-01-06T18:30:55.072Z", + "modified": "2021-01-13T01:52:44.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.073Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--3e556474-eb4a-467a-ba8f-6fc795d7b738", - "modified": "2021-01-06T18:30:55.073Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--e8d8df01-60e5-4425-aa1a-20bff7ecb405", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--43fecfb6-21a0-4826-ae02-7ef7c4910295", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.361Z", "id": "relationship--f7fac494-dbb9-48cc-90f8-786e277dd463", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.361Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.362Z", "id": "relationship--ba48926b-5bf1-44f6-9543-f9ad0c884359", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.074Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:52:44.362Z", "id": "relationship--ffce886c-3cbf-4bed-979f-3a6606a0926f", - "modified": "2021-01-06T18:30:55.074Z", + "modified": "2021-01-13T01:52:44.362Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.075Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.363Z", "id": "relationship--a0350100-3212-40d2-a194-83550d5cf6b1", - "modified": "2021-01-06T18:30:55.075Z", + "modified": "2021-01-13T01:52:44.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.076Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:52:44.363Z", "id": "relationship--2251136a-cb32-4dce-ac99-36db0198b18b", - "modified": "2021-01-06T18:30:55.076Z", + "modified": "2021-01-13T01:52:44.363Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--7c9fa533-6e75-4b44-95bc-c6a44a725fd2", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--39877479-ee07-4f74-b322-7421c74c36cd", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--275ab5fe-67b6-43c5-bfea-0860f32934d3", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--932e1baa-aa00-4a19-9e93-2d1fb6ebb34b", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.364Z", "id": "relationship--77e39e51-b112-4525-b2c3-689585059c26", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.364Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.077Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:52:44.365Z", "id": "relationship--cc1f915a-9a8c-4c49-b5b0-cfe910f5f68a", - "modified": "2021-01-06T18:30:55.077Z", + "modified": "2021-01-13T01:52:44.365Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.078Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:55.078Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.078Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:55.078Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--8f81c837-feda-4c51-be0b-6b5c02eab2ca", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--213a392b-3809-4d28-8ff0-8cdaf641e408", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--15e1b556-e190-4305-8bee-1dd674303a1f", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.079Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.366Z", "id": "relationship--516d6d8a-04ba-4464-832a-35f2147a6d4b", - "modified": "2021-01-06T18:30:55.079Z", + "modified": "2021-01-13T01:52:44.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.367Z", "id": "relationship--2e90ce89-e206-45e1-8d8d-aeef09dbb730", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.367Z", "id": "relationship--1df42dbe-575e-40d9-9b3d-a3b4d506b833", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.080Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.368Z", "id": "relationship--10849a88-8bed-4da1-80e6-437af5e2f7e3", - "modified": "2021-01-06T18:30:55.080Z", + "modified": "2021-01-13T01:52:44.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--81c7a503-4e83-44f2-a661-a823b3ac3900", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--dad621f2-3d27-465e-9e4b-e4f2979d5cf9", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--d69a6f60-aeef-4045-87a7-c45357a05e2d", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--7663bac6-98dd-44e7-a32a-9b2ea76f2b75", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--dc427dad-1e7c-4be7-8c3e-de6cd6d1c256", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.081Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.369Z", "id": "relationship--c53c7202-6b05-4c42-94ba-0a4489fa5b84", - "modified": "2021-01-06T18:30:55.081Z", + "modified": "2021-01-13T01:52:44.369Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.082Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--32ce3845-ba4b-4979-a34f-33ad764eabb5", - "modified": "2021-01-06T18:30:55.082Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--d4cf2dea-5055-49f0-b383-da186e37e4cd", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.370Z", "id": "relationship--f66b561e-85a7-4216-b8cd-5479c302ff74", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--607ad419-dd8b-414e-9c7d-d0a5feac499d", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--dc82c825-4d88-4d3e-82af-d78d65b6d64d", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--a6462bea-a7aa-408e-84b6-2c18a37ca57f", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.083Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--97c78c2b-56c9-470d-8414-184c41be5439", - "modified": "2021-01-06T18:30:55.083Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.084Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--5515a4b0-4756-47fe-8d46-c4d968c6c956", - "modified": "2021-01-06T18:30:55.084Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.084Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.371Z", "id": "relationship--58acffc7-7b4d-4f7d-84c0-fdd212cb6980", - "modified": "2021-01-06T18:30:55.084Z", + "modified": "2021-01-13T01:52:44.371Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.085Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.372Z", "id": "relationship--898c2439-0d20-46ca-8ee8-6536cf8ebf4b", - "modified": "2021-01-06T18:30:55.085Z", + "modified": "2021-01-13T01:52:44.372Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--0cc607ad-9cfa-42ac-aa77-0d9fbab9d10a", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--4fc9485e-e320-49ae-8e19-5625436b6b51", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--fd9f02a1-90b9-4eda-aab0-22f73eaeed21", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.086Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.373Z", "id": "relationship--45c8c626-e082-4d8b-947d-54ac41dd0ef2", - "modified": "2021-01-06T18:30:55.086Z", + "modified": "2021-01-13T01:52:44.373Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--5bda8ed3-729e-4d5e-b9b0-fb0b53deded9", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--4d4114e9-391f-4f7f-be0f-83903599b02f", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--ca0a316e-09c8-43f8-9a39-17961c9f6c13", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--935a71f6-41a2-4dca-847d-4411be91301e", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.087Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--7601c4c4-8e1b-47a1-868a-57c552f340ec", - "modified": "2021-01-06T18:30:55.087Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.374Z", "id": "relationship--e5f53d5f-21c3-49ab-80bf-755a7af7ccd4", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.374Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--c86d8c74-615b-4e3a-a973-83b363e07e60", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--5f4f0c13-32b5-42ba-9d80-1fa330859776", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--7720395e-d4bd-4052-9e1d-7cfc7cf13d3f", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--853dd129-1430-4fbf-aa02-e3d46a0e0450", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--30678c37-e30a-4130-b7ee-1d3802c8ac11", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--ee77dfa1-5053-4ae0-acb8-0859bdf335bc", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--3d8a3654-2dad-4cfb-b170-6d384fdd6133", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.088Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.375Z", "id": "relationship--9cd70b0b-331d-4f1d-917d-a9c9e5370478", - "modified": "2021-01-06T18:30:55.088Z", + "modified": "2021-01-13T01:52:44.375Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.089Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.376Z", "id": "relationship--d59d7404-175a-412d-800f-7c64def1ecd1", - "modified": "2021-01-06T18:30:55.089Z", + "modified": "2021-01-13T01:52:44.376Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--e720212e-c29a-4bc2-9a42-2cdd8538070e", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--424c457c-e786-46de-8bb8-34e47fd3afe2", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--c5dde3e5-25ff-4949-8e73-28890e43b302", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--711c1fe3-d6dc-4d1a-9cc5-9faff17b44be", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.090Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.377Z", "id": "relationship--90a0fbcc-32e3-4cbb-9db6-c51a875e5043", - "modified": "2021-01-06T18:30:55.090Z", + "modified": "2021-01-13T01:52:44.377Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.091Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--1f844ef8-2811-4388-9aa5-8543216b3fc6", - "modified": "2021-01-06T18:30:55.091Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--f3c6a449-5445-48da-9fc6-a2618908885b", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.378Z", "id": "relationship--52593e1c-aec1-4546-8be2-5ccc4f8ce35a", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--67b53abe-2187-4fe6-a53d-9aab32d4a843", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--92c14ba0-0322-455a-818a-cb1779c7b4a4", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--8308bbeb-b568-4f73-9a57-eb8c93f604ac", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--cf9c5e19-bd25-4f69-8c85-05f60d2a07e6", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--a4e46121-a57c-45f3-88cf-b0a95a008047", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.092Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--73622ab7-1557-4e0b-9bb6-e1f487b9704b", - "modified": "2021-01-06T18:30:55.092Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.093Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.379Z", "id": "relationship--1a8a850f-cbd6-4b64-933e-46307ea55a20", - "modified": "2021-01-06T18:30:55.093Z", + "modified": "2021-01-13T01:52:44.379Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.093Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:55.093Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.094Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:55.094Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.094Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:55.094Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.095Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.382Z", "id": "relationship--02cc53dc-ee23-4bb9-8ae2-34c7d225692c", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.382Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.095Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.383Z", "id": "relationship--a4ffadeb-08b3-4252-812f-a4c9d55e4eda", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.095Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.383Z", "id": "relationship--4dd7326b-3e53-4ad0-8946-33f1f6fa19cc", - "modified": "2021-01-06T18:30:55.095Z", + "modified": "2021-01-13T01:52:44.383Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.096Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.384Z", "id": "relationship--3f797f0b-6add-4208-8c20-9d3ec01c5913", - "modified": "2021-01-06T18:30:55.096Z", + "modified": "2021-01-13T01:52:44.384Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.097Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.385Z", "id": "relationship--b05caa48-ecee-40fb-8b48-5bf0b3af1e3d", - "modified": "2021-01-06T18:30:55.097Z", + "modified": "2021-01-13T01:52:44.385Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.387Z", "id": "relationship--77fc00ac-0163-406a-bbd3-bad73885fb50", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.387Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.388Z", "id": "relationship--ecfdc133-0b10-4851-89ed-7d41ddf70cf7", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.388Z", "id": "relationship--e2fc690e-8c45-4427-9f87-9d0dd5c63162", - "modified": "2021-01-06T18:30:55.098Z", + "modified": "2021-01-13T01:52:44.388Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.390Z", "id": "relationship--62f8b90f-64c2-45c9-9e7c-1efa67c93665", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.390Z", "id": "relationship--7291410f-701d-43a9-a954-086776b41f53", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.390Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.100Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--c91071fc-cf70-4523-9d94-37281fd263c1", - "modified": "2021-01-06T18:30:55.100Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--5e4c21c4-d311-4993-9731-025478d6cc5d", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.391Z", "id": "relationship--757b1ead-7f14-46c7-b688-9c7dbea2c09e", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.391Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--ffdc64c2-4aa1-4242-a534-cdf72fee0661", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--e34849db-64ed-44b9-8d5f-cb21b9aa1c4c", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--3a744b99-767e-4e7d-9ff3-4e151a75bbe2", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.101Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.392Z", "id": "relationship--b45a61a9-f3e5-4988-a7d0-461712f50731", - "modified": "2021-01-06T18:30:55.101Z", + "modified": "2021-01-13T01:52:44.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--f974a0d9-603a-4340-b49c-929d1e9efbbf", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--4b17797f-fce7-4ee6-a7cc-68cacff96ab1", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--2bce1c46-b49f-4629-ac6b-7781ac5dfab6", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.393Z", "id": "relationship--3000a547-6ae9-45aa-aa27-24d3aae54b9a", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.393Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--87556c1b-6038-476c-823c-2bdf76f6af42", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--37e502b0-7d28-4917-bb35-c9584923d04c", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.102Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.394Z", "id": "relationship--2018b205-fc17-40f6-ad76-dc51f03ee522", - "modified": "2021-01-06T18:30:55.102Z", + "modified": "2021-01-13T01:52:44.394Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.103Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.396Z", "id": "relationship--9c3946ce-71e3-4340-8978-36c1114585bc", - "modified": "2021-01-06T18:30:55.103Z", + "modified": "2021-01-13T01:52:44.396Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.396Z", "id": "relationship--f17840cf-98b0-4f1e-aac9-888c03fb745f", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.396Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--b4d55f34-1f33-408c-a521-6b3bd6638f0e", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--a6912992-7165-4812-98e4-178c0ba328ec", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--25088766-9277-4bc3-88b4-c85fa5a29f8a", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.397Z", "id": "relationship--dcdb164b-875d-4752-86cf-c5730ae3370d", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.397Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.398Z", "id": "relationship--4bd99689-f0fa-4412-8e92-5b81deae4383", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.398Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.104Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.398Z", "id": "relationship--9b8784f1-223d-4dde-88b7-26902bccf447", - "modified": "2021-01-06T18:30:55.104Z", + "modified": "2021-01-13T01:52:44.398Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.105Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--08dc231b-5361-4494-b411-146a8f4e3417", - "modified": "2021-01-06T18:30:55.105Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.105Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--cc563625-86d3-424d-9fe2-cc743cfba128", - "modified": "2021-01-06T18:30:55.105Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.106Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--b8c7d080-6b98-40cb-a6bf-a7bfe3977795", - "modified": "2021-01-06T18:30:55.106Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.106Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.399Z", "id": "relationship--f75b00b6-e199-43ff-a215-092b02dc7835", - "modified": "2021-01-06T18:30:55.106Z", + "modified": "2021-01-13T01:52:44.399Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.107Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--5bb5f3f9-efb9-4af6-b1e8-9f0e32bb3b21", - "modified": "2021-01-06T18:30:55.107Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--9651892b-4334-4849-ace0-983cf018d3b5", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.400Z", "id": "relationship--c744b24f-cd32-41d3-af23-2ea27b2c01a9", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.400Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--138931c4-97ac-4971-bfae-485188cc6522", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--f78bb02e-ecf3-4144-86f0-fea70ebfd1e8", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.108Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--09cee9f4-7e95-43bf-901f-6ce75126a0af", - "modified": "2021-01-06T18:30:55.108Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--809807da-e8a6-4fa0-9d2c-87b55634cd31", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--7db1ffb2-fe29-4cca-921a-b6254b4c8227", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--6f27f0e3-216b-446e-9bb2-3e52ddcd5000", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--babc2467-4763-4a1c-8047-23377550d2cc", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--ea0bf4b5-a220-4c81-8e14-0b1d3d9258b9", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.109Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.401Z", "id": "relationship--886b546c-1916-43cc-8e52-6568c2587ef5", - "modified": "2021-01-06T18:30:55.109Z", + "modified": "2021-01-13T01:52:44.401Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.111Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.403Z", "id": "relationship--c0c6e3ef-c506-4661-9187-6cb07df0d8ed", - "modified": "2021-01-06T18:30:55.111Z", + "modified": "2021-01-13T01:52:44.403Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.112Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.404Z", "id": "relationship--06b33ad1-70c6-4d63-8ecc-8c1bf1a3cee4", - "modified": "2021-01-06T18:30:55.112Z", + "modified": "2021-01-13T01:52:44.404Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.114Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:52:44.405Z", "id": "relationship--cbf2adf4-eaa9-42ae-b8cf-f6ea8723d65f", - "modified": "2021-01-06T18:30:55.114Z", + "modified": "2021-01-13T01:52:44.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.114Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:52:44.405Z", "id": "relationship--dd98f251-4dc5-4150-a953-efcafc4e1b28", - "modified": "2021-01-06T18:30:55.114Z", + "modified": "2021-01-13T01:52:44.405Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.116Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.406Z", "id": "relationship--bf5c70e4-cb20-4538-abcc-24ec5016bc79", - "modified": "2021-01-06T18:30:55.116Z", + "modified": "2021-01-13T01:52:44.406Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.407Z", "id": "relationship--87453f4a-48d3-4fed-9aad-245115266f96", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.407Z", "id": "relationship--07a9ac50-7a50-49c6-a9d8-7e8e9f77fae6", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.407Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.118Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.408Z", "id": "relationship--72d425f7-1fd1-4ccc-94af-b749ce6f227d", - "modified": "2021-01-06T18:30:55.118Z", + "modified": "2021-01-13T01:52:44.408Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.120Z", - "description": "Cryptographic Key Establishment and Management", + "created": "2021-01-13T01:52:44.409Z", "id": "relationship--779d48ca-7507-43ad-ba3f-dfcde1306356", - "modified": "2021-01-06T18:30:55.120Z", + "modified": "2021-01-13T01:52:44.409Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.121Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.410Z", "id": "relationship--e41cfecb-efd6-4a42-ab39-071abce0d4ae", - "modified": "2021-01-06T18:30:55.121Z", + "modified": "2021-01-13T01:52:44.410Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.123Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.411Z", "id": "relationship--1bf3190d-aec1-476c-85c7-9985a9551c23", - "modified": "2021-01-06T18:30:55.123Z", + "modified": "2021-01-13T01:52:44.411Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.125Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.412Z", "id": "relationship--0698ba20-393d-44b0-b8a8-41eb04ff4ee8", - "modified": "2021-01-06T18:30:55.125Z", + "modified": "2021-01-13T01:52:44.412Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.413Z", "id": "relationship--8fe4448d-5ddf-4739-937f-fd826f0a4624", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.413Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.414Z", "id": "relationship--cc313add-0c43-4880-8e3c-8b4c983089a6", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.126Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.415Z", "id": "relationship--0320f1c4-971f-40f1-9d1e-187bc81429f7", - "modified": "2021-01-06T18:30:55.126Z", + "modified": "2021-01-13T01:52:44.415Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.127Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.415Z", "id": "relationship--018091e7-a8df-4fb9-938f-af79f5d8da8a", - "modified": "2021-01-06T18:30:55.127Z", + "modified": "2021-01-13T01:52:44.415Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--2c0a0a68-9cf2-4ef9-9952-3959f6fa21e8", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--2f3118e2-e0f5-4ae2-b371-2d7b9b421b27", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--e0f07491-ddb5-426e-8d67-dcb1608acafc", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.416Z", "id": "relationship--01ae6504-166b-41b8-b135-93818fe28478", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.416Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--0fad9dcc-b81f-4761-b42a-77ee7b474818", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--c2dbe5a6-ce02-405b-95bc-d28e4407a7b6", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--02e55fcf-3caf-4138-b53a-39b3b813094c", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.128Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--065e1b7b-b97f-4f7e-bbdb-ee459864ebe7", - "modified": "2021-01-06T18:30:55.128Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.417Z", "id": "relationship--2be0f372-d16e-4f7a-80d4-5542579fc51a", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--beac8dd9-106d-4dcd-a64c-e63e8f94c7c3", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.129Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--dd3e53a7-a424-49c9-8732-5148ad8e422d", - "modified": "2021-01-06T18:30:55.129Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.418Z", "id": "relationship--7287aedc-b43a-4315-bc04-219c4ecad0c1", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.419Z", "id": "relationship--a77a662f-7753-4b37-a310-e0a9dfc7386d", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.419Z", "id": "relationship--d887f3ab-2c0b-4578-ab58-1d01c2a2e473", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.419Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.130Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--32f1a462-9b8d-4775-a49b-165413b01158", - "modified": "2021-01-06T18:30:55.130Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--0e69f25c-1d51-42ca-9f35-619c533e33a8", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--06a2c04f-3c5d-4a9c-b188-48d3ad59bf92", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.131Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.420Z", "id": "relationship--0ce5c934-db38-401a-98b1-cb4281010724", - "modified": "2021-01-06T18:30:55.131Z", + "modified": "2021-01-13T01:52:44.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--602f4ff5-2f6f-4db6-9b7a-13902b5fe496", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--1df8f733-db51-4809-81ab-8802c9e8e49b", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.132Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:55.132Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.133Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.422Z", "id": "relationship--af552122-570a-4617-b0f0-3f5509d0ece0", - "modified": "2021-01-06T18:30:55.133Z", + "modified": "2021-01-13T01:52:44.422Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.135Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.424Z", "id": "relationship--e559f9e2-0bd7-458f-9ac6-5227d944d0a3", - "modified": "2021-01-06T18:30:55.135Z", + "modified": "2021-01-13T01:52:44.424Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.136Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.425Z", "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:55.136Z", + "modified": "2021-01-13T01:52:44.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.136Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.425Z", "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:55.136Z", + "modified": "2021-01-13T01:52:44.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.137Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:55.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:55.138Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:52:44.426Z", "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:55.138Z", + "modified": "2021-01-13T01:52:44.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.138Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:52:44.426Z", "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:55.138Z", + "modified": "2021-01-13T01:52:44.426Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.139Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.428Z", "id": "relationship--2791cb53-48ad-4c2e-929a-1319bc17d381", - "modified": "2021-01-06T18:30:55.139Z", + "modified": "2021-01-13T01:52:44.428Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.140Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.430Z", "id": "relationship--0ed497fe-1155-4185-8ba3-d0f7e5ff8a22", - "modified": "2021-01-06T18:30:55.140Z", + "modified": "2021-01-13T01:52:44.430Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.140Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.430Z", "id": "relationship--3a1c3d15-c77c-4aa8-b2e7-27e5078919c1", - "modified": "2021-01-06T18:30:55.140Z", + "modified": "2021-01-13T01:52:44.430Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.142Z", - "description": "Access Enforcement", - "id": "relationship--76210c82-5f4e-41b7-b93c-51c64f29c313", - "modified": "2021-01-06T18:30:55.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.142Z", - "description": "Access Enforcement", - "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:55.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--e8727265-b854-495b-a9ed-a6afd19d1e89", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--aca33b31-d548-4a53-9697-e4ac426a3aa0", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.435Z", "id": "relationship--6f14af0e-2040-4de1-bab7-91b53ebd1c82", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.435Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--8cf260a2-9c6f-4e86-820a-ab8f60f3dfee", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.143Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--99ff8904-2c8d-4473-9974-3dbfe05c3ae2", - "modified": "2021-01-06T18:30:55.143Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--27d2715a-9ce6-4d55-a048-7c6058412509", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.436Z", "id": "relationship--04db3310-4d5d-4001-8579-18027f01a408", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.144Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:52:44.437Z", "id": "relationship--aa260139-ed38-4c83-8d21-9e035cfc02e3", - "modified": "2021-01-06T18:30:55.144Z", + "modified": "2021-01-13T01:52:44.437Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.145Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.438Z", "id": "relationship--b26569df-c31c-4654-8c1c-378cea85b941", - "modified": "2021-01-06T18:30:55.145Z", + "modified": "2021-01-13T01:52:44.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.145Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.438Z", "id": "relationship--7dd86180-1d53-496a-ae29-fab2e282ff29", - "modified": "2021-01-06T18:30:55.145Z", + "modified": "2021-01-13T01:52:44.438Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--0c628903-1d0b-4413-a6bc-0f601592058e", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--611c8687-8595-4faf-9fdd-a1c292dc5caf", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--82c9706f-339e-4856-941e-e4901ee1e85d", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:52:44.440Z", "id": "relationship--17dfbffa-eded-4149-bdfc-a9d15987cafb", - "modified": "2021-01-06T18:30:55.146Z", + "modified": "2021-01-13T01:52:44.440Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.146Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:55.146Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.147Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:55.147Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--e180696a-95ed-4fcd-aa04-01fab724c7c8", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--5e63eca5-99a3-4eda-8949-dde20a592888", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--4b4e2d0c-8d89-4d3c-8bf2-d2e3022d19ac", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.148Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.442Z", "id": "relationship--0b5fc684-7237-43b1-9378-26d068b40335", - "modified": "2021-01-06T18:30:55.148Z", + "modified": "2021-01-13T01:52:44.442Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.150Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.443Z", "id": "relationship--a68d18fa-ca56-4a2c-b318-10ecb97c2702", - "modified": "2021-01-06T18:30:55.150Z", + "modified": "2021-01-13T01:52:44.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.150Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.443Z", "id": "relationship--a174705a-82a1-4a51-a271-0a06af61db8b", - "modified": "2021-01-06T18:30:55.150Z", + "modified": "2021-01-13T01:52:44.443Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.151Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.444Z", "id": "relationship--3dfd8757-64bf-47ae-b566-f379b3ddd6e4", - "modified": "2021-01-06T18:30:55.151Z", + "modified": "2021-01-13T01:52:44.444Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--e1ff7e51-4111-43d2-82d9-7ca37b4e61bf", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--854b5859-8e13-4c76-935a-04d39d18594d", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--efdb25ba-d2bf-4ae1-91f2-b4b0ef3b5fc2", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--b29dba07-c552-4631-9c60-7bc4cfa22a55", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.152Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.445Z", "id": "relationship--50726a53-a93b-4b1c-921f-0244f2522278", - "modified": "2021-01-06T18:30:55.152Z", + "modified": "2021-01-13T01:52:44.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.153Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--9822a27a-442a-48fb-88db-c64623d2ff1a", - "modified": "2021-01-06T18:30:55.153Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--5ae5466f-ba70-49d2-869a-60b9e1c7fd37", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--cf14b805-a167-418a-bdc3-c952fb411e12", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.154Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.446Z", "id": "relationship--e5435fb5-6e55-45d1-b9a3-9d732cdeba6f", - "modified": "2021-01-06T18:30:55.154Z", + "modified": "2021-01-13T01:52:44.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.156Z", - "description": "Access Enforcement", - "id": "relationship--fab02c4b-680d-4865-90f1-68e7ae975578", - "modified": "2021-01-06T18:30:55.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.156Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.448Z", "id": "relationship--53fc53ca-cf66-456f-9156-b1d065f5a3cd", - "modified": "2021-01-06T18:30:55.156Z", + "modified": "2021-01-13T01:52:44.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.157Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7666cef8-6443-41a5-8f0c-bda91876f671", - "modified": "2021-01-06T18:30:55.157Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--4c4c196c-c184-4268-b083-981eccfd0ea9", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--660c7e9b-88a0-46dd-84ce-f7bd7ca82003", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.158Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.449Z", "id": "relationship--9a01ae0d-e033-43c7-92c4-3f6057715ac4", - "modified": "2021-01-06T18:30:55.158Z", + "modified": "2021-01-13T01:52:44.449Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.159Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.450Z", "id": "relationship--96d02e31-4af8-4aca-8dd9-95bfff90da2e", - "modified": "2021-01-06T18:30:55.159Z", + "modified": "2021-01-13T01:52:44.450Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.159Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.450Z", "id": "relationship--275740f0-6809-4ddc-b3e3-374d86486540", - "modified": "2021-01-06T18:30:55.159Z", + "modified": "2021-01-13T01:52:44.450Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f2a8cdbc-7a12-4057-bdf1-97f44358e5f9", - "modified": "2021-01-06T18:30:55.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.451Z", "id": "relationship--1944b61f-33f0-4458-8d14-448ca79a85bd", - "modified": "2021-01-06T18:30:55.160Z", + "modified": "2021-01-13T01:52:44.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6e6cc63c-6242-4562-9587-0d5166ce4374", - "modified": "2021-01-06T18:30:55.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.160Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.451Z", "id": "relationship--2dca39e5-a7a0-438a-8ec7-f3e8411a9523", - "modified": "2021-01-06T18:30:55.160Z", + "modified": "2021-01-13T01:52:44.451Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.161Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.452Z", "id": "relationship--ec881934-bb8d-4d2f-b702-7b6fd5c86a09", - "modified": "2021-01-06T18:30:55.161Z", + "modified": "2021-01-13T01:52:44.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.162Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.452Z", "id": "relationship--3288c3fc-f460-44f5-9dc4-9364375a2e2b", - "modified": "2021-01-06T18:30:55.162Z", + "modified": "2021-01-13T01:52:44.452Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.162Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.453Z", "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:55.162Z", + "modified": "2021-01-13T01:52:44.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.453Z", "id": "relationship--c002722c-5938-4ebb-b95d-233ad0ff52b4", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.453Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.454Z", "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.163Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.454Z", "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.163Z", + "modified": "2021-01-13T01:52:44.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--2adf7f8f-eeef-4049-a7d4-e0a41702633b", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--35f89b64-9acb-46bb-a6dc-25bd288fb198", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--1691dc9a-e74f-4389-9ba9-fd52a9b66c0b", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.164Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:55.164Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--c78b1e76-3c3a-4bfa-a765-5e8e131260ae", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.455Z", "id": "relationship--0335c34f-800d-4174-bd5a-ca24e2ce3d8d", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.165Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:52:44.456Z", "id": "relationship--ec801380-23cf-43e3-a4e4-dbdfd029a126", - "modified": "2021-01-06T18:30:55.165Z", + "modified": "2021-01-13T01:52:44.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.166Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.456Z", "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:55.166Z", + "modified": "2021-01-13T01:52:44.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.166Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.457Z", "id": "relationship--8453db9c-6181-4946-9b7a-70d835bc1e60", - "modified": "2021-01-06T18:30:55.166Z", + "modified": "2021-01-13T01:52:44.457Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.167Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.458Z", "id": "relationship--e4955da0-473e-46e8-8629-d7951f1479e5", - "modified": "2021-01-06T18:30:55.167Z", + "modified": "2021-01-13T01:52:44.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.168Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.458Z", "id": "relationship--02fe0334-5917-4d33-9fc3-61d521fd3839", - "modified": "2021-01-06T18:30:55.168Z", + "modified": "2021-01-13T01:52:44.458Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.169Z", - "description": "Continuous Monitoring", - "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:55.169Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.169Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.459Z", "id": "relationship--b4b63a06-a527-4404-ad97-3136e5f99dba", - "modified": "2021-01-06T18:30:55.169Z", + "modified": "2021-01-13T01:52:44.459Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.170Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.460Z", "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:55.170Z", + "modified": "2021-01-13T01:52:44.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.170Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.460Z", "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:55.170Z", + "modified": "2021-01-13T01:52:44.460Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.171Z", - "description": "Account Managment", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:55.171Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.172Z", - "description": "Account Managment", + "created": "2021-01-13T01:52:44.461Z", "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:55.172Z", + "modified": "2021-01-13T01:52:44.461Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.172Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:55.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.462Z", "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.463Z", "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.173Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:52:44.463Z", "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:55.173Z", + "modified": "2021-01-13T01:52:44.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--83852c8b-e079-4834-8314-8bdc5b4ebc15", - "modified": "2021-01-06T18:30:55.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.464Z", "id": "relationship--cd371467-4fae-4801-9def-e21e3c20403e", - "modified": "2021-01-06T18:30:55.174Z", + "modified": "2021-01-13T01:52:44.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--61eb5772-2be6-4e74-a2a3-1a6ba17e2e08", - "modified": "2021-01-06T18:30:55.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.174Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.464Z", "id": "relationship--fcfcb851-f57e-4b03-9025-cc37393f55c0", - "modified": "2021-01-06T18:30:55.174Z", + "modified": "2021-01-13T01:52:44.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7729812e-6e2c-4532-9359-ea8b0f3543b9", - "modified": "2021-01-06T18:30:55.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--99fb808a-293b-40ba-94c5-f167b42ebc25", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--2500b7a6-bdfd-4d30-bbb4-1607df46edab", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--f5aba3e4-a98e-4423-a28c-55cd13054a97", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:55.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.176Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.465Z", "id": "relationship--b5616433-ca79-4ae8-bd41-9d8c44be649c", - "modified": "2021-01-06T18:30:55.176Z", + "modified": "2021-01-13T01:52:44.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.177Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.467Z", "id": "relationship--810a04e7-cab2-418f-a0d4-37bfb167497e", - "modified": "2021-01-06T18:30:55.177Z", + "modified": "2021-01-13T01:52:44.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.178Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.467Z", "id": "relationship--b2c10bb7-dd86-4cc4-87c9-284d7a3207f4", - "modified": "2021-01-06T18:30:55.178Z", + "modified": "2021-01-13T01:52:44.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.179Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.468Z", "id": "relationship--d02bf12d-d2e1-42fc-8b7c-f5c9d7880773", - "modified": "2021-01-06T18:30:55.179Z", + "modified": "2021-01-13T01:52:44.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.179Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:44.469Z", "id": "relationship--7c7ab027-f054-4302-bee3-6d286c6c2c99", - "modified": "2021-01-06T18:30:55.179Z", + "modified": "2021-01-13T01:52:44.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.180Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.469Z", "id": "relationship--03fc936f-42f7-4c08-9c8e-48dc5306cdf5", - "modified": "2021-01-06T18:30:55.180Z", + "modified": "2021-01-13T01:52:44.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.180Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.470Z", "id": "relationship--33e127c8-b4fa-42b4-b441-91497647d20e", - "modified": "2021-01-06T18:30:55.180Z", + "modified": "2021-01-13T01:52:44.470Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.181Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--4d3c0c73-fdc6-4cbd-ad6b-e9499944c62a", - "modified": "2021-01-06T18:30:55.181Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--4e703ca0-2a08-4c6a-a6e0-22a23b4a195a", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--f0a3ea37-ea8f-419e-ae84-cc6b9b56b6e9", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--1c1ff14f-906b-4391-a607-88ca9b78b2e2", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--8423d534-2a68-4802-afa5-02c5103bd9ae", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--f8883872-fc06-40ec-b82c-0c4cd6fc6baa", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.182Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--9e659494-78e6-4ccf-be5c-b3f43e3bbbf6", - "modified": "2021-01-06T18:30:55.182Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--51deb3b9-f7e7-402c-a6b1-7e84efb8e994", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.471Z", "id": "relationship--dc58d0fa-d892-4fae-8ebb-1a4292ead3a2", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.471Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.183Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:52:44.472Z", "id": "relationship--f995e3f1-d761-4731-8793-83ed51bb4240", - "modified": "2021-01-06T18:30:55.183Z", + "modified": "2021-01-13T01:52:44.472Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ebf1daa5-744c-4d7c-9e2b-d68a52cd085f", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--819292a1-5a6b-4e6f-8718-e5195720e5de", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--25aa606f-a020-43b6-8de5-2c7341b51f4f", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.185Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:55.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--46d543f1-6ee7-4e32-b259-d597fe441949", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--efdd24de-7bbb-43d6-bd21-024a67ebe5ec", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2b792009-4473-47e0-b338-0d8d2635228e", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d0f29dc1-7975-4229-a38a-a65bfbc4e91b", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bfead51b-aa3b-43c8-b646-f412eddd142c", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9ccb2ee8-eb20-4b66-8b1e-8d0d4e627753", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.186Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a189354a-a19e-4196-ab16-00fd008ef921", - "modified": "2021-01-06T18:30:55.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ae882bdc-808e-484f-aaa8-cf91e76152a5", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--213bd900-1808-421c-88f3-a2d50145b51d", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5dfdb723-54a5-415a-9845-1e583c7abce6", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3bb043f9-b4f6-407e-84a0-0f6d5d435f54", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.187Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:55.187Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.188Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:55.188Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.188Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--387cd12d-78ed-4f79-9cbb-6dc9e2142395", - "modified": "2021-01-06T18:30:55.188Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.475Z", "id": "relationship--09254ccf-87ba-4bc9-ba13-a869f3910589", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.475Z", "id": "relationship--648db36e-1f3d-4093-9159-d8e18a2ab06f", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--363b700e-ffb4-49d5-b753-e60a293bd5f1", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--139bf74d-3159-42b4-b8d5-185bbdd619db", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.189Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.476Z", "id": "relationship--db37fa4c-a3e4-4835-ad77-283bb1c5ce84", - "modified": "2021-01-06T18:30:55.189Z", + "modified": "2021-01-13T01:52:44.476Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.190Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--057967ad-0f67-45ea-b0ba-43a70fca2df4", - "modified": "2021-01-06T18:30:55.190Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--a1903398-679b-4e01-9d0b-8908690fc692", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--3eebf9a8-9db9-448a-8484-07f92f83b130", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--31223575-2eb6-47bb-a0b3-e17a1d03716c", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--e46c9e44-81d7-4c6a-8003-fffb39fd6e8e", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--3b97d6bf-3eb6-4700-9557-f42c3d573c78", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--8470a73d-e5fb-4e82-9fc8-2292321c6805", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--18999cf5-200f-4deb-ba87-49c8f22cd4df", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.191Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.477Z", "id": "relationship--75d0d317-dbbe-46f6-9dc4-24a297599ab9", - "modified": "2021-01-06T18:30:55.191Z", + "modified": "2021-01-13T01:52:44.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--c83759f5-c665-49b4-b740-da956a28d905", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--8831a675-8349-49ad-ab54-f45af8624684", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--deeaaadb-08af-470d-b9a9-c6e017c8d576", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--1886bb6a-f966-468e-83f6-90bdb2d4da1c", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--2dcaae0c-f1df-4211-8de3-4b4a05533387", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.192Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.478Z", "id": "relationship--d0201fdd-96cb-40a1-8660-f0d1938de285", - "modified": "2021-01-06T18:30:55.192Z", + "modified": "2021-01-13T01:52:44.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.193Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.479Z", "id": "relationship--34c87547-289a-45af-82cf-a2f0ef72b4e6", - "modified": "2021-01-06T18:30:55.193Z", + "modified": "2021-01-13T01:52:44.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.194Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--4f12d12c-c414-40f5-8279-6275ee38e213", - "modified": "2021-01-06T18:30:55.194Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.195Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--9332b25d-8538-454d-b001-e034f9976943", - "modified": "2021-01-06T18:30:55.195Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.195Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.480Z", "id": "relationship--3daf04d3-c35c-457a-a9b5-69a5d62b9c70", - "modified": "2021-01-06T18:30:55.195Z", + "modified": "2021-01-13T01:52:44.480Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.196Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.481Z", "id": "relationship--8cec1785-83ab-4b68-a71d-d56c5fed3c41", - "modified": "2021-01-06T18:30:55.196Z", + "modified": "2021-01-13T01:52:44.481Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.197Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.482Z", "id": "relationship--f6b4063d-cf73-4527-9d2d-a20824e9a049", - "modified": "2021-01-06T18:30:55.197Z", + "modified": "2021-01-13T01:52:44.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.198Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:52:44.483Z", "id": "relationship--2026f4a3-401c-4017-89ae-4a2ee866ff2a", - "modified": "2021-01-06T18:30:55.198Z", + "modified": "2021-01-13T01:52:44.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.200Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.484Z", "id": "relationship--c6210619-447e-45e5-ba9a-fad67fa8a6e9", - "modified": "2021-01-06T18:30:55.200Z", + "modified": "2021-01-13T01:52:44.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.200Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:52:44.484Z", "id": "relationship--997e3aaa-ecbf-488e-a7c0-12cb8e2a5555", - "modified": "2021-01-06T18:30:55.200Z", + "modified": "2021-01-13T01:52:44.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.201Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.485Z", "id": "relationship--d5a4fd02-9855-4e23-ba17-400314ae3b6e", - "modified": "2021-01-06T18:30:55.201Z", + "modified": "2021-01-13T01:52:44.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--4ca0db45-19c1-4206-a5b8-9624e0d03949", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--7919e5b7-68ac-4a66-b6e7-667e24aaf172", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.202Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.486Z", "id": "relationship--1500fda6-117e-4146-973d-02176ca222ca", - "modified": "2021-01-06T18:30:55.202Z", + "modified": "2021-01-13T01:52:44.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.487Z", "id": "relationship--d6dfc9a8-cb31-4fd2-bf7c-9c14b8707b94", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.487Z", "id": "relationship--372f0638-803f-4d74-a431-e6b4af85b561", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--928dc754-a444-418d-ab2d-b57872506a9d", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--65f73811-182e-460e-a397-d5678cff8d14", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--58d66621-a5c3-4de3-b916-48296ef9d34e", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--215602c0-756f-40b2-a766-9d01e2a9356e", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--07fe24b4-0444-4521-a96c-0934bbfb0e5a", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.204Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--b53741e9-40d0-4df5-9d2f-2d39979332e7", - "modified": "2021-01-06T18:30:55.204Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.205Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:52:44.488Z", "id": "relationship--eabdad1c-0999-467d-b229-507c6f9f942b", - "modified": "2021-01-06T18:30:55.205Z", + "modified": "2021-01-13T01:52:44.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.205Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.489Z", "id": "relationship--ca5975f9-e8a4-42ca-beab-80ef3349e325", - "modified": "2021-01-06T18:30:55.205Z", + "modified": "2021-01-13T01:52:44.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.206Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.489Z", "id": "relationship--0e1b1388-3e16-47ca-ac5c-4f9595d7640b", - "modified": "2021-01-06T18:30:55.206Z", + "modified": "2021-01-13T01:52:44.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.206Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.490Z", "id": "relationship--bf156322-7499-4f86-ab7b-d3b2749cc498", - "modified": "2021-01-06T18:30:55.206Z", + "modified": "2021-01-13T01:52:44.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--16b337da-055d-4798-82e1-7a23b395097e", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--eb883a4a-0b13-4000-9500-debe2e32f76c", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--637a12a6-25ce-445b-afd3-07734403aee8", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--47f170f1-7541-4b24-93f2-f4e905bd7208", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.207Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--1143536e-94d1-4939-aece-363d4e761027", - "modified": "2021-01-06T18:30:55.207Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.208Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:52:44.491Z", "id": "relationship--744e115c-0097-452d-be16-eab3b8f8a541", - "modified": "2021-01-06T18:30:55.208Z", + "modified": "2021-01-13T01:52:44.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--aff69fe2-2611-47a3-96d0-da84d49f5001", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--32944b19-6f01-4774-9063-21eaa1c73ba9", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.209Z", - "description": "Information System Backup", + "created": "2021-01-13T01:52:44.492Z", "id": "relationship--c635a10b-6503-452a-a97d-ee74ebb8ce81", - "modified": "2021-01-06T18:30:55.209Z", + "modified": "2021-01-13T01:52:44.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.210Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--5cb3ab46-2d8e-413b-80d4-8783c465f1c2", - "modified": "2021-01-06T18:30:55.210Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.211Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--98ea863b-d699-4481-867c-4e86e1b86025", - "modified": "2021-01-06T18:30:55.211Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.211Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:52:44.493Z", "id": "relationship--482c4864-27ea-4d19-b605-c283d9dd0471", - "modified": "2021-01-06T18:30:55.211Z", + "modified": "2021-01-13T01:52:44.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.494Z", "id": "relationship--97e1c6e5-910a-408a-bdc2-4e9d1b2a1443", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.494Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.495Z", "id": "relationship--9e2ffac3-72a9-4fc7-b8d9-453329ba3335", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.495Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:52:44.495Z", "id": "relationship--fcfa1d00-709b-4983-9828-0bd3a2e8ce7b", - "modified": "2021-01-06T18:30:55.212Z", + "modified": "2021-01-13T01:52:44.495Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.212Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:55.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.213Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.496Z", "id": "relationship--47f749e1-1aab-4f9e-ba3d-6ad65758a089", - "modified": "2021-01-06T18:30:55.213Z", + "modified": "2021-01-13T01:52:44.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.213Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.496Z", "id": "relationship--ebb64e0f-f090-4ad1-9b6c-aa9c2996e289", - "modified": "2021-01-06T18:30:55.213Z", + "modified": "2021-01-13T01:52:44.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.214Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--afc90615-7f35-49f3-a537-d4a9db1ee81a", - "modified": "2021-01-06T18:30:55.214Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--89e9ae29-66e4-4001-b961-47e363ebd1c7", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--8a8d79de-8aee-46f4-a90e-40d0fce7f92d", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--316e42ee-22b4-4b6f-b6b6-e62dbc5b1cce", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.497Z", "id": "relationship--fe72851a-fc64-4234-a1ac-b196599d9685", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.215Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.498Z", "id": "relationship--4e5985a9-02cc-4057-bc6e-d8842d87b331", - "modified": "2021-01-06T18:30:55.215Z", + "modified": "2021-01-13T01:52:44.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.216Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.498Z", "id": "relationship--e664ba6b-f171-4187-ab82-1a95b8446068", - "modified": "2021-01-06T18:30:55.216Z", + "modified": "2021-01-13T01:52:44.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--16436c96-67ec-4be7-a898-48232ce5cfb9", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--49541de1-713a-4694-9466-a6e735e9a82b", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--c1906084-8752-4576-8dba-d44031695bf2", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.217Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--664aa16b-a549-454d-8537-1f9aa050e34f", - "modified": "2021-01-06T18:30:55.217Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.218Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:44.499Z", "id": "relationship--83c7e575-8ca7-486f-bff7-c83e1542018b", - "modified": "2021-01-06T18:30:55.218Z", + "modified": "2021-01-13T01:52:44.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--90902a5e-8493-4c20-8a25-858cfea2e168", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--ec0acde1-7a87-4c88-8527-867177b83946", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.219Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:55.219Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--8b6bac93-8799-4689-a0d8-94276c520427", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.500Z", "id": "relationship--f40dcbc1-9ecf-479e-9f63-a474dd016690", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--3775ff58-eff3-4279-b941-a87456428f79", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--2aab9a5c-3f2a-462e-9b87-0ebed329d58d", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--b321f786-80e3-4b31-85b8-5806ca39df24", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.220Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:55.220Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--fc6cd7a1-7199-4937-bcf0-b339f3a3b94a", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--82056438-d444-4376-bcdb-f38f25c4e5ef", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--20489337-33ec-4fde-bdb7-76c0164b96ea", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--73090a74-e9aa-4173-a455-71a648cd88b9", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.501Z", "id": "relationship--b38a117c-6de9-4570-a099-c7f42f96eafe", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--b30738b5-0e84-451d-8eae-53fda6b6aa3b", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--34e824fd-541a-4b79-985a-905be6b5a9ce", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.221Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--b5beb26f-ebb7-4b8a-a524-77ad1959b80c", - "modified": "2021-01-06T18:30:55.221Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.222Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:52:44.502Z", "id": "relationship--ec8f644a-dbca-4bd3-8c23-182b3a67a8a5", - "modified": "2021-01-06T18:30:55.222Z", + "modified": "2021-01-13T01:52:44.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--14710b99-cbc7-4c46-874c-0c05bc96a0b1", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--770a15d2-d9a5-4dc9-ad67-b0e4c810d5ff", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--102989d0-4ad1-4794-a042-174d38595a77", - "modified": "2021-01-06T18:30:55.223Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--c6d0de6f-06b5-43c5-96b9-f3ce493ad421", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--ebf77616-257f-4860-b5dc-03388d08b3ca", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--50700990-2bf8-4102-8ebd-dd90a4ca8dc0", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.223Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--ed06eb5a-dd83-43e2-88b7-4349aa44fa7f", - "modified": "2021-01-06T18:30:55.223Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.503Z", "id": "relationship--dcb71cc7-243d-46bf-9310-d0df2783bb5a", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6a8b1e8d-082f-4e74-8a1a-3b52932155bd", - "modified": "2021-01-06T18:30:55.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--39453f96-78b0-4b41-8b70-86879931cde0", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--0a50c9d7-fa7b-46a0-93e9-2b1cd2bd132b", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--170a941e-1263-443b-a030-aa1b6bb6381a", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--139bffb9-f89d-4648-8733-29bed5199c9f", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.224Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--a07d01b8-f162-4f21-abb5-a85f1c905079", - "modified": "2021-01-06T18:30:55.224Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--70e5ef7b-9ffe-46f5-a99e-9f45c6d8a847", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--6a81fa14-6840-44a4-88b6-8d993242f6dc", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.504Z", "id": "relationship--9444daf2-324d-4cca-b78f-684d066340fc", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--96285394-4e6d-471a-ab7a-8f021da389cb", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--d1fb4656-1c55-47db-bef9-943feb2390b4", - "modified": "2021-01-06T18:30:55.225Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.225Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b92e435e-a939-4f9f-8636-b4b7bf69007f", - "modified": "2021-01-06T18:30:55.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--dff97696-4db4-43fe-960f-18e2795dfc12", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--56f7546a-70e6-40e2-a6f6-96ce3dfe3357", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--2e13870c-58d8-4539-863d-c7943e3a4f87", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--a5b38c65-3152-4b57-b498-7952a0ef3939", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.505Z", "id": "relationship--c4ef1159-8416-4b73-bcd6-80a896cede5f", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:55.226Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--72f7bafc-d74d-4d70-9b52-38ef242fed80", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.226Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--bd7a34d8-27bb-4dd9-943c-6056c7606536", - "modified": "2021-01-06T18:30:55.226Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.227Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.506Z", "id": "relationship--8c913107-f1f2-4d0a-9a73-4343f847c84d", - "modified": "2021-01-06T18:30:55.227Z", + "modified": "2021-01-13T01:52:44.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--a4fda13c-2e52-4f9f-b2f8-99be4e8d32cb", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--11314e1e-31a6-4517-8504-e3440a257c7c", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--98612f1d-6cdf-4e23-80a4-2b3b7d5b1a46", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--7216f815-f25f-48c6-a2de-01b46508b0f6", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--d3af2d3a-723b-495a-af64-bd0362394dff", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.228Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.507Z", "id": "relationship--9ee4f8da-67fa-441f-ac0a-308a207746c9", - "modified": "2021-01-06T18:30:55.228Z", + "modified": "2021-01-13T01:52:44.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--31753c77-d151-447c-9d6d-819912acb2e6", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--df9a748a-c57d-4f41-a5a4-9acbbddd2d1c", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.229Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--6da36d28-f82d-4e30-9ec5-5e71cd56ce6b", - "modified": "2021-01-06T18:30:55.229Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.508Z", "id": "relationship--b825a7d2-02bd-43bf-a2e4-2ca203e27aad", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--d2220990-554d-47fa-90ad-e61954c0f3a4", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--dad396ff-809d-49a3-aaac-562ed0e46fd8", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--5f1951f3-c918-435e-a9a5-8f92bbc87f32", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--012cd8b9-8db3-4049-8b95-11995eeda2a1", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--a4c8e26e-18d5-44c9-9cc6-e9f51337e106", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.230Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--8674efa9-79a1-4b41-82d9-ca3689b49919", - "modified": "2021-01-06T18:30:55.230Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--3fc0ca7b-a631-4e16-91ea-1f7097560a96", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--c43f8199-f8a8-4400-9da7-5da7a2d34102", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.509Z", "id": "relationship--90ecf3e1-573c-4021-ae48-300ace66ef4e", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--3d3d3237-2c2e-4e39-8236-b9fa8007e914", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--dbac2ec4-1f53-4bd8-b388-42d434bfacef", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.231Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--d723a848-eab1-4121-a129-335adeb781a9", - "modified": "2021-01-06T18:30:55.231Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.232Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.510Z", "id": "relationship--a9ba865a-7e26-453f-9409-9869a1225240", - "modified": "2021-01-06T18:30:55.232Z", + "modified": "2021-01-13T01:52:44.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--4bb52f81-869b-4f08-9f44-5c3fee38eb2a", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--257178a5-ad29-4ce1-a4ca-ed4485c48736", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--306f2c5d-dcc7-4d3d-a50e-9c3e3c4f18d5", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.233Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--fd709396-7f95-477a-aeb4-75d2c7664699", - "modified": "2021-01-06T18:30:55.233Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.234Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:44.511Z", "id": "relationship--28142779-69e8-4663-9640-48433e51d5a5", - "modified": "2021-01-06T18:30:55.234Z", + "modified": "2021-01-13T01:52:44.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.235Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.513Z", "id": "relationship--45977344-88e7-472e-b017-4d864980b2bb", - "modified": "2021-01-06T18:30:55.235Z", + "modified": "2021-01-13T01:52:44.513Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.236Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.513Z", "id": "relationship--f9dc4f5c-fdab-4932-9bfa-44cdfdfe7084", - "modified": "2021-01-06T18:30:55.236Z", + "modified": "2021-01-13T01:52:44.513Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.237Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.514Z", "id": "relationship--f373ce58-95b5-4014-8ea1-fa8a3540ff2c", - "modified": "2021-01-06T18:30:55.237Z", + "modified": "2021-01-13T01:52:44.514Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.237Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:52:44.514Z", "id": "relationship--4091b1c5-d4e0-4719-8dbd-b5fa4e978079", - "modified": "2021-01-06T18:30:55.237Z", + "modified": "2021-01-13T01:52:44.514Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.238Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:52:44.515Z", "id": "relationship--6f0426d3-2c1d-43fe-9b3f-a0442769f3d2", - "modified": "2021-01-06T18:30:55.238Z", + "modified": "2021-01-13T01:52:44.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.238Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:52:44.515Z", "id": "relationship--1f7b8772-3e5f-4c43-950e-b923478f1426", - "modified": "2021-01-06T18:30:55.238Z", + "modified": "2021-01-13T01:52:44.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.239Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.516Z", "id": "relationship--c2403f4c-9bdc-423f-bd2f-ad6944e52bd1", - "modified": "2021-01-06T18:30:55.239Z", + "modified": "2021-01-13T01:52:44.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.240Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.516Z", "id": "relationship--8b638a03-6cfe-4809-bd64-0153e490dece", - "modified": "2021-01-06T18:30:55.240Z", + "modified": "2021-01-13T01:52:44.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.241Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--cfe20c13-c54f-4b09-96a4-20e1de1a3847", - "modified": "2021-01-06T18:30:55.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.241Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--db429883-1122-4585-8c9f-fbf9dc121408", - "modified": "2021-01-06T18:30:55.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.242Z", - "id": "relationship--53fc53ca-cf66-456f-9156-b1d065f5a3cd", - "modified": "2021-01-06T18:30:55.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.242Z", + "created": "2021-01-13T01:52:44.519Z", "id": "relationship--63dd5687-537b-4205-99d7-f649627b2f84", - "modified": "2021-01-06T18:30:55.242Z", + "modified": "2021-01-13T01:52:44.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.242Z", + "created": "2021-01-13T01:52:44.519Z", "id": "relationship--bfc433a7-9cae-4520-bc3d-ee679e66f90c", - "modified": "2021-01-06T18:30:55.242Z", + "modified": "2021-01-13T01:52:44.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.243Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.520Z", "id": "relationship--1ae66313-7fe2-46cf-ae2d-6c6936d2e304", - "modified": "2021-01-06T18:30:55.243Z", + "modified": "2021-01-13T01:52:44.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.243Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:52:44.520Z", "id": "relationship--2577bf5b-b021-40af-b320-038e4d1b86bc", - "modified": "2021-01-06T18:30:55.243Z", + "modified": "2021-01-13T01:52:44.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.244Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:55.244Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.245Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--9e684054-daf2-4db3-908b-4d90dba47dd2", - "modified": "2021-01-06T18:30:55.245Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.245Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.521Z", "id": "relationship--fd3a71d8-77e0-4b07-9275-56d105369210", - "modified": "2021-01-06T18:30:55.245Z", + "modified": "2021-01-13T01:52:44.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--da130d92-2d5a-4307-8f3b-d43483349ad3", - "modified": "2021-01-06T18:30:55.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--51405937-d1dc-46cc-8a57-e3a686e9b348", - "modified": "2021-01-06T18:30:55.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.246Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.523Z", "id": "relationship--72a9e2a7-5dd3-47b3-a5c3-b7f1030dc978", - "modified": "2021-01-06T18:30:55.246Z", + "modified": "2021-01-13T01:52:44.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--699085f9-ea2f-4a78-b75f-235fed72c32e", - "modified": "2021-01-06T18:30:55.247Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--24ea89a8-b943-4a1e-ab09-df3bd32feeb3", - "modified": "2021-01-06T18:30:55.247Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.247Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.524Z", "id": "relationship--a33812b3-ae78-4dd3-a7cc-878e96306260", - "modified": "2021-01-06T18:30:55.247Z", + "modified": "2021-01-13T01:52:44.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.248Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--98912175-fb6d-4e54-b7cd-0a987bc7e89c", - "modified": "2021-01-06T18:30:55.248Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.249Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--1a782800-facc-4dfb-831f-1ae7b97f2e3b", - "modified": "2021-01-06T18:30:55.249Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.249Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:52:44.525Z", "id": "relationship--ed6964ed-6ea0-40bf-bafb-589bca06432f", - "modified": "2021-01-06T18:30:55.249Z", + "modified": "2021-01-13T01:52:44.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.251Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:55.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.251Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--afd66a7b-26b0-4119-83c8-fa54fa1e19f3", - "modified": "2021-01-06T18:30:55.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.252Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:52:44.527Z", "id": "relationship--6ff166b2-70e5-49e1-9086-9213f8174886", - "modified": "2021-01-06T18:30:55.252Z", + "modified": "2021-01-13T01:52:44.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.252Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:52:44.527Z", "id": "relationship--8d20b7d3-9a1e-4137-80ff-f4bca54e55b5", - "modified": "2021-01-06T18:30:55.252Z", + "modified": "2021-01-13T01:52:44.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.253Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--cdd76d80-bcc9-41a6-8181-140168e903c3", - "modified": "2021-01-06T18:30:55.253Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.253Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--f813062a-4cc6-44bc-ac8d-3ca751877fc7", - "modified": "2021-01-06T18:30:55.253Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.254Z", - "description": "Continuous Monitoring", - "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:55.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.254Z", - "description": "Continuous Monitoring", - "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:55.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.255Z", - "description": "Configuration Setting", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.255Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.255Z", - "description": "Configuration Setting", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.255Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.256Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:55.256Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.256Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:55.256Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.257Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:55.257Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.257Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:55.257Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.258Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:55.258Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.258Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:55.258Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.259Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.259Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.259Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.260Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:55.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.260Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:55.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--0fc478f0-da4a-4f23-b1de-5ec54be857eb", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--520c85ee-8070-44af-b1a5-39149dfc8d74", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.261Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--bc245a18-8993-4b90-bcd2-e1eb74229948", - "modified": "2021-01-06T18:30:55.261Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--3630090a-4ac5-4f48-9fea-552bb08f51f1", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--38dce282-9fb4-4f14-a9da-07540e68e1fd", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--4fe60c93-fcb4-49a0-850f-736a0950568c", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--91f62c6c-c752-4e2e-bb87-192ee2d1c8c7", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.262Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:52:44.536Z", "id": "relationship--438a5ca9-11e8-490f-9bab-07105f76ef97", - "modified": "2021-01-06T18:30:55.262Z", + "modified": "2021-01-13T01:52:44.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.263Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.537Z", "id": "relationship--dfd9b070-a530-41ad-bda3-dc512d5a9077", - "modified": "2021-01-06T18:30:55.263Z", + "modified": "2021-01-13T01:52:44.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.264Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.538Z", "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:55.264Z", + "modified": "2021-01-13T01:52:44.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.264Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:52:44.538Z", "id": "relationship--bef24453-bffc-4c30-bb65-efb2323c3c75", - "modified": "2021-01-06T18:30:55.264Z", + "modified": "2021-01-13T01:52:44.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--2627f684-311b-4b0c-b667-621d4fce7243", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--85dfd41a-f0fc-4c8b-9113-b8293dc2360e", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.265Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.539Z", "id": "relationship--e60bfd51-6cf2-41a3-8b09-d4d96a0be7af", - "modified": "2021-01-06T18:30:55.265Z", + "modified": "2021-01-13T01:52:44.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.266Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--92b9c250-0f97-4a32-a437-78b198958b51", - "modified": "2021-01-06T18:30:55.266Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--9e56f823-965a-4bbb-85ab-f091cfb9a1ee", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--37743937-066a-4297-accf-999bb844c1bc", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.267Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:52:44.540Z", "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.267Z", + "modified": "2021-01-13T01:52:44.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.268Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.541Z", "id": "relationship--6c1f92fb-e9e9-4345-b1e8-26d656e30bbe", - "modified": "2021-01-06T18:30:55.268Z", + "modified": "2021-01-13T01:52:44.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.269Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:52:44.541Z", "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:55.269Z", + "modified": "2021-01-13T01:52:44.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.270Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.542Z", "id": "relationship--7473bf38-7602-41a1-bb0a-b474d9708493", - "modified": "2021-01-06T18:30:55.270Z", + "modified": "2021-01-13T01:52:44.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.270Z", - "description": "Account Management", + "created": "2021-01-13T01:52:44.542Z", "id": "relationship--96da6d5e-b976-43f6-9e29-b0fad262c218", - "modified": "2021-01-06T18:30:55.270Z", + "modified": "2021-01-13T01:52:44.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.271Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.543Z", "id": "relationship--cb5a63cd-09ce-4989-911a-eec190fb76fe", - "modified": "2021-01-06T18:30:55.271Z", + "modified": "2021-01-13T01:52:44.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.271Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.543Z", "id": "relationship--8646d967-4818-4504-b1ff-b4355ec511f4", - "modified": "2021-01-06T18:30:55.271Z", + "modified": "2021-01-13T01:52:44.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.272Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.544Z", "id": "relationship--bf9efd7c-5db4-461c-aade-74a152ff04b8", - "modified": "2021-01-06T18:30:55.272Z", + "modified": "2021-01-13T01:52:44.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.273Z", - "description": "Process Isolation", + "created": "2021-01-13T01:52:44.544Z", "id": "relationship--c7a9a4fe-ca3c-4e44-9833-65b2f5d574ed", - "modified": "2021-01-06T18:30:55.273Z", + "modified": "2021-01-13T01:52:44.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.546Z", "id": "relationship--580444d2-c717-4028-bac4-7002d3968a74", - "modified": "2021-01-06T18:30:55.274Z", + "modified": "2021-01-13T01:52:44.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.274Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:55.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.546Z", "id": "relationship--07c96bc7-fb23-4b28-886f-b7c95a734048", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:55.275Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--595fc2f3-aa98-4c33-96ac-36a504645eef", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--f5ef2011-0cb1-453a-9e20-7568e67ad9de", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--419c4902-7f2b-4bfd-aaaf-ac9b17029c07", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.275Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--c5a78b67-6b3d-4c74-a36a-1e6b71cfbe08", - "modified": "2021-01-06T18:30:55.275Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--04edbec4-1260-4273-a5d8-2eb136286402", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--5befc642-3a9a-41ea-8835-82f7cc341d13", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--14813b51-9bf8-4eb5-9891-0982566401b5", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--e072ea3b-7c26-43a7-bec7-80ad8807b82c", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--14f22310-07ef-405e-977b-5ab759d225d6", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.547Z", "id": "relationship--c807c669-3346-49d7-b2da-9d25d7c8e85d", - "modified": "2021-01-06T18:30:55.276Z", + "modified": "2021-01-13T01:52:44.547Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f1e29608-01a1-464b-801a-9c196586b00a", - "modified": "2021-01-06T18:30:55.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.276Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd16b9e7-2367-4749-b124-5cabe00bad78", - "modified": "2021-01-06T18:30:55.276Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--3a85c945-2d74-4c91-970c-0ef2a9bd6176", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--d1f67af3-11b7-4a81-ad8a-f3fa53de0dd6", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--b0484a1e-3288-45e0-baa5-0bb313a3fae0", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--09a55636-cbe9-4e05-bafb-d258c8efe0bd", - "modified": "2021-01-06T18:30:55.277Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--00063127-10b5-4b87-95ea-a74641125292", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--37da7f1a-fd0a-477b-b4ac-1869c9c758df", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.277Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.548Z", "id": "relationship--741a9be9-dd96-4304-b651-4f1061d6a8d5", - "modified": "2021-01-06T18:30:55.277Z", + "modified": "2021-01-13T01:52:44.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.549Z", "id": "relationship--d0be160e-dbcb-4f99-9cd2-e0174aa05485", - "modified": "2021-01-06T18:30:55.278Z", + "modified": "2021-01-13T01:52:44.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.278Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:55.278Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.279Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--16c284ce-c238-48da-a927-59203ba5a321", - "modified": "2021-01-06T18:30:55.279Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.279Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--4e34baf7-ce32-4fb8-a5ad-77df2e49b14a", - "modified": "2021-01-06T18:30:55.279Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--04fd5b03-56c9-4b41-b556-97db52865c12", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.550Z", "id": "relationship--515fe32e-f403-4d94-b95d-0e9d782e4061", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--20480dac-f76a-465a-bcc7-ac3ae5da403c", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--0308728a-d212-46be-b8f1-ae1a7dbba1bc", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--cc7a7d2b-2e1a-4df2-94ce-dda7b368a48e", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--f618084e-439c-4e2a-b57b-69ae6a4e66e2", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--5035a65e-e3bd-4e8e-bd49-e123f8ee358b", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.280Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.551Z", "id": "relationship--31c401fb-0470-48d9-bdfb-a71e796556ca", - "modified": "2021-01-06T18:30:55.280Z", + "modified": "2021-01-13T01:52:44.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.281Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.282Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.552Z", "id": "relationship--87663848-c530-4f61-968e-c48fe2d4d8b8", - "modified": "2021-01-06T18:30:55.282Z", + "modified": "2021-01-13T01:52:44.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.282Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.283Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.553Z", "id": "relationship--1381bb4d-1e81-422d-8495-e1527ee02f8d", - "modified": "2021-01-06T18:30:55.283Z", + "modified": "2021-01-13T01:52:44.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.283Z", - "description": "User Access Permissions", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:55.283Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.554Z", "id": "relationship--64bc94fb-c89a-48cf-8654-29e487a25444", - "modified": "2021-01-06T18:30:55.284Z", + "modified": "2021-01-13T01:52:44.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.284Z", - "description": "User Access Permissions", - "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:55.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--4d638038-21bf-4858-a98c-c56ecde2fbd1", - "modified": "2021-01-06T18:30:55.286Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:55.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--fe73d6df-f941-4372-be62-31d6b6926017", - "modified": "2021-01-06T18:30:55.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.286Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--90a108ef-4ae5-45f6-97dd-3de7535f01f1", - "modified": "2021-01-06T18:30:55.286Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--8b56193b-7dc8-43c7-9214-067a683e802a", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.555Z", "id": "relationship--49ceffd7-db63-490d-a951-55d16db99047", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--976b0b02-df50-4c09-aaad-4795a4fa86ec", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--f95aca0f-e882-48b6-86a9-bd573fd91530", - "modified": "2021-01-06T18:30:55.287Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.287Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c2589497-5ab6-4427-879f-654f8a4353df", - "modified": "2021-01-06T18:30:55.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c70e90ff-a08f-4bd3-8cfc-d8b0179a1784", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--5f4d4931-246a-40de-a16d-948c9c24a4a0", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--b7a36a18-6867-4f54-b5e4-04f052e166d4", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.556Z", "id": "relationship--c3bc0e04-cc63-4b44-9d2c-ce5193f2b0b1", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:55.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--b5b03526-b5ff-4a93-bfc1-5234de14ff86", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.288Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--c52a8ad2-ce4e-4611-b81c-c9e3ce99b390", - "modified": "2021-01-06T18:30:55.288Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--578fe349-d0ca-4620-a42f-06b8bdbe034b", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:55.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--f9e7d410-31dc-48f6-9299-69bebd02ab9c", - "modified": "2021-01-06T18:30:55.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--ba804d1b-5ed0-4fb2-9d34-6e9b8add5c7b", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.289Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:52:44.557Z", "id": "relationship--e293ccd0-a2dd-4c1b-8b7e-dee891c83591", - "modified": "2021-01-06T18:30:55.289Z", + "modified": "2021-01-13T01:52:44.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.558Z", "id": "relationship--d63005cf-aa5f-47f2-9826-5054e42fb615", - "modified": "2021-01-06T18:30:55.290Z", + "modified": "2021-01-13T01:52:44.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--649cc28c-e6a7-4d82-ac2b-304cb5fbda4f", - "modified": "2021-01-06T18:30:55.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.290Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--1f5d2629-74c2-4ac6-93bf-05321c1da3f9", - "modified": "2021-01-06T18:30:55.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--06521771-2f6c-4451-9f5d-9f225259be0f", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--74b4ef98-d608-4099-aef1-7788be1f1d2d", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--1a24a10d-082b-461e-9959-f6aa6da02302", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.291Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.559Z", "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:55.291Z", + "modified": "2021-01-13T01:52:44.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--506ceec0-b873-48aa-ad88-3d06d473fd26", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:55.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", - "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:55.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--b8371754-c54b-4f8e-98b4-920c34ffd390", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.293Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.560Z", "id": "relationship--7f20d0bb-9f58-4388-9cac-8a1b051ca0fc", - "modified": "2021-01-06T18:30:55.293Z", + "modified": "2021-01-13T01:52:44.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.294Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fa10d7ab-a9c8-45b5-b85d-4243423c40f3", - "modified": "2021-01-06T18:30:55.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.294Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b6aeea4d-8136-46e1-bdce-751909e0fd22", - "modified": "2021-01-06T18:30:55.294Z", + "created": "2021-01-13T01:52:44.563Z", + "id": "relationship--71a62659-f76e-4eb5-9a5b-51a1cc72874e", + "modified": "2021-01-13T01:52:44.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.295Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--97b96aa3-bd15-4c54-8906-fddb5ac225f0", - "modified": "2021-01-06T18:30:55.295Z", + "created": "2021-01-13T01:52:44.568Z", + "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.295Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--12e1c66f-f959-45a6-a2bb-9a7a7bd8be61", - "modified": "2021-01-06T18:30:55.295Z", + "created": "2021-01-13T01:52:44.568Z", + "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.296Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--856aec98-1e48-4f2d-85f0-081fea4ace3b", - "modified": "2021-01-06T18:30:55.296Z", + "created": "2021-01-13T01:52:44.568Z", + "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.296Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--71a62659-f76e-4eb5-9a5b-51a1cc72874e", - "modified": "2021-01-06T18:30:55.296Z", + "created": "2021-01-13T01:52:44.568Z", + "id": "relationship--92b07d99-c8cc-4545-aafd-ca05405eab9a", + "modified": "2021-01-13T01:52:44.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", + "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.297Z", - "description": "User Access Permissions", - "id": "relationship--55678820-c564-4a2a-b3b5-1e82d990e68c", - "modified": "2021-01-06T18:30:55.297Z", + "created": "2021-01-13T01:52:44.570Z", + "id": "relationship--377ce984-c848-4455-8091-e995c7bd145d", + "modified": "2021-01-13T01:52:44.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:55.298Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--cbe6fca0-0b08-43e2-a239-e6ad66762387", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:55.298Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--2bda06f7-1cea-4e4e-9c8e-c46a08b11d80", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:55.298Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--9b80f503-bafc-406e-89cd-8a3f3eedd271", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--42bd1c2a-ae52-44ca-b580-186964894ebf", - "modified": "2021-01-06T18:30:55.298Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--470b134b-9dab-4305-a86f-ad2b6f648265", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.298Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--334a0098-86ef-4921-8fd1-d0b68fa2fcd2", - "modified": "2021-01-06T18:30:55.298Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--5d7f97b3-fcc1-4c80-9354-9537eb2c70c7", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2cbb3009-e4f8-4014-a358-52762bce79d0", - "modified": "2021-01-06T18:30:55.299Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--793c452d-a8de-468f-9077-fd3d047f061e", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b38126c5-9102-4c21-a1bb-ab11c9b018cf", - "modified": "2021-01-06T18:30:55.299Z", + "created": "2021-01-13T01:52:44.571Z", + "id": "relationship--0f377664-4f70-4597-bfa8-a27815c10070", + "modified": "2021-01-13T01:52:44.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77d17b2c-1bfd-478a-a704-e47a4a54d91a", - "modified": "2021-01-06T18:30:55.299Z", + "created": "2021-01-13T01:52:44.572Z", + "id": "relationship--a6745291-8aec-4970-b8e6-62fd3b658814", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bbdca9f7-7787-47cc-9948-af8bc63b700b", - "modified": "2021-01-06T18:30:55.299Z", + "created": "2021-01-13T01:52:44.572Z", + "id": "relationship--288bb34c-b7ca-4daf-b9ec-08b6514e1568", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.299Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--806a2ee5-97b4-4791-8dde-11779be1d24d", - "modified": "2021-01-06T18:30:55.299Z", + "created": "2021-01-13T01:52:44.572Z", + "id": "relationship--396d24a0-ac1c-42fc-a6fe-00736b2df23c", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--79d2707c-b744-4900-94a4-3adeea9c3fc5", - "modified": "2021-01-06T18:30:55.300Z", + "created": "2021-01-13T01:52:44.572Z", + "id": "relationship--9931912a-2377-4946-899a-f64fe0fdfb66", + "modified": "2021-01-13T01:52:44.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--06dd97d1-2af2-4047-b779-e6f18f42749c", - "modified": "2021-01-06T18:30:55.300Z", + "created": "2021-01-13T01:52:44.573Z", + "id": "relationship--cfe559d2-47f7-4a9e-bd05-c97dba2b5a56", + "modified": "2021-01-13T01:52:44.573Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:55.300Z", + "created": "2021-01-13T01:52:44.573Z", + "id": "relationship--8c10ca4a-3812-41ca-988c-2d30c02fb2a3", + "modified": "2021-01-13T01:52:44.573Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.300Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:55.300Z", + "created": "2021-01-13T01:52:44.574Z", + "id": "relationship--5c0b99d0-85ce-4bc9-9ed5-78affa2e425e", + "modified": "2021-01-13T01:52:44.574Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.301Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:55.301Z", + "created": "2021-01-13T01:52:44.575Z", + "id": "relationship--6750e5b7-8665-487f-a20e-eb43b7c87d24", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.301Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7482882f-7206-48ce-a299-c3b622312619", - "modified": "2021-01-06T18:30:55.301Z", + "created": "2021-01-13T01:52:44.575Z", + "id": "relationship--713e5a08-aee9-4916-9cef-261bd2b3d70f", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--5c368894-17fc-4d7c-832b-186b71e48840", - "modified": "2021-01-06T18:30:55.302Z", + "created": "2021-01-13T01:52:44.575Z", + "id": "relationship--2d12b370-d908-439d-99a9-8dd99e71f99e", + "modified": "2021-01-13T01:52:44.575Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49e9f55a-c174-4912-b62e-f00cd0ddffd9", - "modified": "2021-01-06T18:30:55.302Z", + "created": "2021-01-13T01:52:44.576Z", + "id": "relationship--3b2d3780-4976-49e1-bcaa-4fb7c0a775b9", + "modified": "2021-01-13T01:52:44.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--eb8d40f8-1034-4fc1-8b44-0a34efd6765b", - "modified": "2021-01-06T18:30:55.302Z", + "created": "2021-01-13T01:52:44.576Z", + "id": "relationship--b95e5d65-463f-4df7-b794-a4398bb8ba1d", + "modified": "2021-01-13T01:52:44.576Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.302Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8fbaf565-0fbc-4f31-891a-c1500a16ed80", - "modified": "2021-01-06T18:30:55.302Z", + "created": "2021-01-13T01:52:44.577Z", + "id": "relationship--9cad4928-0740-43f8-ae93-9f9cff5317fc", + "modified": "2021-01-13T01:52:44.577Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:55.303Z", + "created": "2021-01-13T01:52:44.578Z", + "id": "relationship--c6974952-5bc6-4a8a-b715-91e7007754d4", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:55.303Z", + "created": "2021-01-13T01:52:44.578Z", + "id": "relationship--ee6c37e1-271c-4241-843e-31a6dfa1e94f", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:55.303Z", + "created": "2021-01-13T01:52:44.578Z", + "id": "relationship--cb9cb31a-b01c-449a-b25c-1d16a6552774", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.303Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--92b07d99-c8cc-4545-aafd-ca05405eab9a", - "modified": "2021-01-06T18:30:55.303Z", + "created": "2021-01-13T01:52:44.578Z", + "id": "relationship--7e8fbe99-1123-4b86-b95c-fd7d005454c4", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:55.304Z", + "created": "2021-01-13T01:52:44.578Z", + "id": "relationship--1e8daf73-c4b3-48da-a116-37ab1813a92f", + "modified": "2021-01-13T01:52:44.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:55.304Z", + "created": "2021-01-13T01:52:44.579Z", + "id": "relationship--4e6dc474-5fba-4789-8eaf-0c3989ff11dd", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.304Z", - "description": "User Access Permissions", - "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:55.304Z", + "created": "2021-01-13T01:52:44.579Z", + "id": "relationship--b701008f-67ff-454f-ab67-eb4ae7e8d96d", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.305Z", - "description": "User Access Permissions", - "id": "relationship--89fe1aae-f98c-4836-9ef6-443cf461fdd4", - "modified": "2021-01-06T18:30:55.305Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--377ce984-c848-4455-8091-e995c7bd145d", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cbe6fca0-0b08-43e2-a239-e6ad66762387", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2bda06f7-1cea-4e4e-9c8e-c46a08b11d80", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9b80f503-bafc-406e-89cd-8a3f3eedd271", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--470b134b-9dab-4305-a86f-ad2b6f648265", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5d7f97b3-fcc1-4c80-9354-9537eb2c70c7", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.306Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--793c452d-a8de-468f-9077-fd3d047f061e", - "modified": "2021-01-06T18:30:55.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.307Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0f377664-4f70-4597-bfa8-a27815c10070", - "modified": "2021-01-06T18:30:55.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.307Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a6745291-8aec-4970-b8e6-62fd3b658814", - "modified": "2021-01-06T18:30:55.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.307Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--288bb34c-b7ca-4daf-b9ec-08b6514e1568", - "modified": "2021-01-06T18:30:55.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.308Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--396d24a0-ac1c-42fc-a6fe-00736b2df23c", - "modified": "2021-01-06T18:30:55.308Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.308Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9931912a-2377-4946-899a-f64fe0fdfb66", - "modified": "2021-01-06T18:30:55.308Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.309Z", - "description": "User Access Permissions", - "id": "relationship--cfe559d2-47f7-4a9e-bd05-c97dba2b5a56", - "modified": "2021-01-06T18:30:55.309Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.309Z", - "description": "User Access Permissions", - "id": "relationship--8c10ca4a-3812-41ca-988c-2d30c02fb2a3", - "modified": "2021-01-06T18:30:55.309Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5c0b99d0-85ce-4bc9-9ed5-78affa2e425e", - "modified": "2021-01-06T18:30:55.310Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6750e5b7-8665-487f-a20e-eb43b7c87d24", - "modified": "2021-01-06T18:30:55.310Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--713e5a08-aee9-4916-9cef-261bd2b3d70f", - "modified": "2021-01-06T18:30:55.310Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.310Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2d12b370-d908-439d-99a9-8dd99e71f99e", - "modified": "2021-01-06T18:30:55.310Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.311Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3b2d3780-4976-49e1-bcaa-4fb7c0a775b9", - "modified": "2021-01-06T18:30:55.311Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.311Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b95e5d65-463f-4df7-b794-a4398bb8ba1d", - "modified": "2021-01-06T18:30:55.311Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.312Z", - "description": "User Access Permissions", - "id": "relationship--9cad4928-0740-43f8-ae93-9f9cff5317fc", - "modified": "2021-01-06T18:30:55.312Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c6974952-5bc6-4a8a-b715-91e7007754d4", - "modified": "2021-01-06T18:30:55.313Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fd953a90-3f27-4efa-b138-614187d120da", - "modified": "2021-01-06T18:30:55.313Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.313Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ee6c37e1-271c-4241-843e-31a6dfa1e94f", - "modified": "2021-01-06T18:30:55.313Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cb9cb31a-b01c-449a-b25c-1d16a6552774", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f9a0091f-520a-4e71-90a0-ecb0cacc96fb", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7e8fbe99-1123-4b86-b95c-fd7d005454c4", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1e8daf73-c4b3-48da-a116-37ab1813a92f", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1bb32a65-843a-4f8f-98c2-fde3c66433e8", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.314Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e6dc474-5fba-4789-8eaf-0c3989ff11dd", - "modified": "2021-01-06T18:30:55.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b701008f-67ff-454f-ab67-eb4ae7e8d96d", - "modified": "2021-01-06T18:30:55.315Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5d4b74d8-a26f-4000-8c9a-79eec3850c5d", - "modified": "2021-01-06T18:30:55.315Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.315Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.579Z", "id": "relationship--edce872e-96b7-4192-9908-f7c3f89718ae", - "modified": "2021-01-06T18:30:55.315Z", + "modified": "2021-01-13T01:52:44.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.316Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--5c7e5fd0-304f-48ae-970d-ce961fc10bfd", - "modified": "2021-01-06T18:30:55.316Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--fa198237-2385-4c8a-b490-863016d72f75", - "modified": "2021-01-06T18:30:55.317Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--83d88fc8-cbbb-4fd3-a25b-c78ab03b5753", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:55.317Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--7299a14c-54e2-479c-867a-810cfdaf765f", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.317Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.580Z", "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:55.317Z", + "modified": "2021-01-13T01:52:44.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.318Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.581Z", "id": "relationship--2ff823bb-c04a-4217-a429-f420733e0ec3", - "modified": "2021-01-06T18:30:55.318Z", + "modified": "2021-01-13T01:52:44.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", - "id": "relationship--8e395f09-2ca9-4de6-8013-31b49e0ab757", - "modified": "2021-01-06T18:30:55.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.581Z", "id": "relationship--6f930043-da30-4871-b6a6-2bd8fea0d930", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.582Z", "id": "relationship--8213a93a-7361-4b75-b184-3fddb6b11dba", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", - "id": "relationship--85378058-c0bb-4b1d-b373-47648dc12eb8", - "modified": "2021-01-06T18:30:55.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.319Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.582Z", "id": "relationship--93445f90-6fbb-4bb7-aa50-b88ec1f4e7ee", - "modified": "2021-01-06T18:30:55.319Z", + "modified": "2021-01-13T01:52:44.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.320Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:55.320Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.321Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.321Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--90a2a6b8-71af-4886-b1f2-36c914afbc3e", - "modified": "2021-01-06T18:30:55.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.322Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.322Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.323Z", - "description": "User Access Permissions", - "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:55.323Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.324Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:55.324Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.586Z", "id": "relationship--a640ac52-5e00-47f0-8e5b-199f116cbf3b", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.586Z", "id": "relationship--4f056248-8f91-43f2-9970-9b7778f7938e", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--108d7507-bb7b-4c1f-82bf-8a204a99d2f0", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:55.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--3672e42a-d702-4538-8d56-d6641892c81c", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--b824ff13-87af-48ea-93b5-7ec5bb04912b", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.325Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--3ddabcb1-15c1-4bfb-af10-1e685750f9c4", - "modified": "2021-01-06T18:30:55.325Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:55.326Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--f040cee8-d1e3-4afe-be8c-c85757a12257", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--2a992511-14dd-4640-9345-5a2986f5cf67", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.587Z", "id": "relationship--168202fe-3487-4c95-98ec-b9addb432abf", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.326Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--d06f0c5d-dd11-46c9-a891-adbec527106d", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.326Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--951e308f-a84d-42da-9b3c-186a5e9ff092", - "modified": "2021-01-06T18:30:55.326Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.327Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.588Z", "id": "relationship--ca6bc792-4bfc-47a6-aaaf-2993a946dcb0", - "modified": "2021-01-06T18:30:55.327Z", + "modified": "2021-01-13T01:52:44.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.327Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--eab8de2b-e555-4794-b390-b94ff776a24b", - "modified": "2021-01-06T18:30:55.327Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--b5ea01d0-97bc-4b0c-8c2d-5a66e3862c36", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--7b4bf92e-8359-4326-8637-ae66e4ff6718", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--a18c9b26-3563-4c13-a175-44718351f9c8", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--1403d7fa-42c7-4e5b-a024-2ea7cefdd144", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--4492fad5-41a4-4d68-87e9-c96a4c0cbc62", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--bf898e4f-40c0-496c-b6e7-8b8d9051935a", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.328Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.589Z", "id": "relationship--a0fa3ccc-45f8-4fa5-9882-bdb416ecff73", - "modified": "2021-01-06T18:30:55.328Z", + "modified": "2021-01-13T01:52:44.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.329Z", - "description": "User Access Permissions", - "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:55.329Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.329Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--9be4aeba-d642-4076-923d-304171c4cc48", - "modified": "2021-01-06T18:30:55.329Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--57574ba2-9e26-4307-aac4-a969c9e42d38", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.590Z", "id": "relationship--b2869822-8fe2-4b88-8ebe-e5580c2f559c", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", - "id": "relationship--2a3748ca-7c23-4696-b455-91f4e3b9fc10", - "modified": "2021-01-06T18:30:55.330Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--6ec54cc9-c4fa-4a87-8321-dcc4a131dbc0", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--c04865ce-2192-4ea2-afff-a4e8776353be", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.330Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.591Z", "id": "relationship--233828c8-9056-4061-a9da-3f3c7130396b", - "modified": "2021-01-06T18:30:55.330Z", + "modified": "2021-01-13T01:52:44.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f066643-d3f3-4a0a-82a6-71b7afb78fc3", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--b27855a6-cdb1-4a72-af5c-47de233949e5", - "modified": "2021-01-06T18:30:55.331Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--fb96de44-3862-4dac-a572-a72a1ed0a9e7", - "modified": "2021-01-06T18:30:55.331Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--b0ba6e41-edcb-41e7-a670-daf532e01e56", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--ebc7c5cc-398d-4221-a0e8-8549662b816b", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--91350eb0-0f10-4858-a034-7883008aab9e", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--5f0e565f-5779-4223-8cd1-ea5f06e50218", - "modified": "2021-01-06T18:30:55.332Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.592Z", "id": "relationship--84a3724c-689a-4fd7-8272-664677deab0b", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--f43904ed-b2a4-4f89-ab7b-283c9ca4e2da", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--f4a05bc8-2e4b-4861-96c4-c4acf0716733", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--47f41e1d-67cb-479e-b198-fbadf06577d7", - "modified": "2021-01-06T18:30:55.333Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--04eb29d7-f16e-426b-86e6-849e0db96d6f", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--8467aeb1-4bf4-4245-9d12-82e34ec35a91", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--99f94e44-c85b-4f6e-b203-7e6866ec49e1", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--c2eaf4a6-f60c-4f04-9af1-d1abd0aa7d19", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--27aa2137-c7a6-4543-afc4-d2bececabb93", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.593Z", "id": "relationship--d0a75b48-9934-416a-9d37-2db71175bd2a", - "modified": "2021-01-06T18:30:55.334Z", + "modified": "2021-01-13T01:52:44.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.594Z", "id": "relationship--b40e8d9a-f52a-475e-ab99-697aad35186d", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.594Z", "id": "relationship--19e5b477-0247-4b74-9646-bc47edf34bf4", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--20ef96d3-f782-4f2c-a1cd-e6846674eab6", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--6b413eb6-5bb7-4745-95ad-b2a29f719822", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--a9af1b8e-675c-46d4-a003-815a0750326f", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.336Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--c250c400-ea9a-48f0-9e0f-6548042c6f59", - "modified": "2021-01-06T18:30:55.336Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.337Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.595Z", "id": "relationship--27899efc-c0b0-49a2-9b1d-8c96913c4e53", - "modified": "2021-01-06T18:30:55.337Z", + "modified": "2021-01-13T01:52:44.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--0eca7005-51d0-429b-a7cd-3abfe4b7646c", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--664fb7d3-7276-4ae0-876f-b1ff6d45a53d", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--6f6ddabf-0cf2-444e-b763-5d90c3236145", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.338Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.596Z", "id": "relationship--1f8b9948-6c69-4004-a053-2e1163fe3ac2", - "modified": "2021-01-06T18:30:55.338Z", + "modified": "2021-01-13T01:52:44.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--61f57c5b-d4f0-44ca-b750-2db7a3a18b96", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.600Z", + "id": "relationship--28ec03b6-d6a9-4f3a-a722-845baafbab45", + "modified": "2021-01-13T01:52:44.600Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--989e5b84-901b-462b-9bf2-5feb20ccae72", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.600Z", + "id": "relationship--0d73620e-8c04-4f2c-a93d-572238673bfc", + "modified": "2021-01-13T01:52:44.600Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd70f25c-ad40-4821-b50d-12e353397dbd", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.601Z", + "id": "relationship--a37a3254-4339-4914-8926-04feabf2fb5f", + "modified": "2021-01-13T01:52:44.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5dc21a6c-637e-4c6d-b3be-5de36d7de602", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.601Z", + "id": "relationship--70555c0f-9ba8-416c-b1e4-446810943827", + "modified": "2021-01-13T01:52:44.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5c024ccc-e129-45c3-ae04-002e0af64850", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.603Z", + "id": "relationship--ef19ffa9-68fa-498e-9c67-8d464a0aa084", + "modified": "2021-01-13T01:52:44.603Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.603Z", + "id": "relationship--b63d2d29-78b0-49d0-bc78-fc1271637d3a", + "modified": "2021-01-13T01:52:44.603Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.603Z", + "id": "relationship--5005b69c-c017-4d6a-bd6a-f65b71468856", + "modified": "2021-01-13T01:52:44.603Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.603Z", + "id": "relationship--08a6eadd-94a8-470d-8b71-d9b0522cc26b", + "modified": "2021-01-13T01:52:44.603Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--ce978882-dd45-435b-b15e-6c7469bcf5c6", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.339Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8b4eb980-4520-4ce9-a9c0-7c5e04753606", - "modified": "2021-01-06T18:30:55.339Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--e540a916-fc83-4f9c-8f48-8a40ec8182c8", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1f938f97-4bc9-4734-b63f-c52467b96f46", - "modified": "2021-01-06T18:30:55.340Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--38200800-188e-4e29-a436-60195d3848d6", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c0dc7c51-cd2d-4347-a51d-5e4418776e02", - "modified": "2021-01-06T18:30:55.340Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--e59a79b6-d89f-494f-a15f-a7d3f111d836", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3955a747-c0fc-48c1-9aba-bcc2bd2e2c9b", - "modified": "2021-01-06T18:30:55.340Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--557492a3-907e-49e8-ae24-dcaa7bba54d0", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.340Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b676b28f-037b-4f87-8cd8-7a0b428ba361", - "modified": "2021-01-06T18:30:55.340Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--9c1bc2ec-a73c-4c49-96c5-af3ce3cced53", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1691f338-5256-4b88-810b-770c003c8432", - "modified": "2021-01-06T18:30:55.341Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--39d2b0bb-a673-4723-86cc-4412610b513b", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4d4f2395-0088-4864-a64d-c8a59bac70e7", - "modified": "2021-01-06T18:30:55.341Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--b5dff9e9-9966-4274-b0f6-e24468ce9ed3", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c68fe43a-fbd7-4482-825b-ce3ef107e6e8", - "modified": "2021-01-06T18:30:55.341Z", + "created": "2021-01-13T01:52:44.604Z", + "id": "relationship--a8356d70-ed26-43ba-a583-90d2b51a1214", + "modified": "2021-01-13T01:52:44.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f5e8869e-359a-4094-83fd-150adcf7dae3", - "modified": "2021-01-06T18:30:55.341Z", + "created": "2021-01-13T01:52:44.605Z", + "id": "relationship--75646472-325d-4002-a5d4-8aa27ebfb0c5", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.341Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d1e5134a-38de-4967-9693-5e400f938c2a", - "modified": "2021-01-06T18:30:55.341Z", + "created": "2021-01-13T01:52:44.605Z", + "id": "relationship--101d889c-f56a-4df4-aa31-e7a86475a557", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.342Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fd7eacdf-a24d-4eaf-9c9a-cff9a047ec5b", - "modified": "2021-01-06T18:30:55.342Z", + "created": "2021-01-13T01:52:44.605Z", + "id": "relationship--13e0ccb9-06e6-4662-b197-85b701b2a7fc", + "modified": "2021-01-13T01:52:44.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3b16b2b9-3b1b-4439-a16e-c81fa29116ad", - "modified": "2021-01-06T18:30:55.343Z", + "created": "2021-01-13T01:52:44.606Z", + "id": "relationship--e1e6d895-1474-4397-a5d5-02b3929e7b17", + "modified": "2021-01-13T01:52:44.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b53375f9-802c-4b6c-9309-fe9cce94a3bb", - "modified": "2021-01-06T18:30:55.343Z", + "created": "2021-01-13T01:52:44.606Z", + "id": "relationship--8a559e5d-9d17-4740-8bae-51427ed0eab3", + "modified": "2021-01-13T01:52:44.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--cb8715b8-3213-4b6d-8184-c4402f53a70b", - "modified": "2021-01-06T18:30:55.343Z", + "created": "2021-01-13T01:52:44.607Z", + "id": "relationship--d8743e39-7729-4a4b-97b7-5b421d7b9409", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49cf2cf4-5e17-42f7-8543-dcc724797eb1", - "modified": "2021-01-06T18:30:55.343Z", + "created": "2021-01-13T01:52:44.607Z", + "id": "relationship--76626fc9-979d-4aa9-af8e-301abede4691", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.343Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--28ec03b6-d6a9-4f3a-a722-845baafbab45", - "modified": "2021-01-06T18:30:55.343Z", + "created": "2021-01-13T01:52:44.607Z", + "id": "relationship--67643fa8-d041-437b-92bf-bcd6298897e9", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0d73620e-8c04-4f2c-a93d-572238673bfc", - "modified": "2021-01-06T18:30:55.344Z", + "created": "2021-01-13T01:52:44.607Z", + "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", + "modified": "2021-01-13T01:52:44.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a37a3254-4339-4914-8926-04feabf2fb5f", - "modified": "2021-01-06T18:30:55.344Z", + "created": "2021-01-13T01:52:44.608Z", + "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", + "modified": "2021-01-13T01:52:44.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.344Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--70555c0f-9ba8-416c-b1e4-446810943827", - "modified": "2021-01-06T18:30:55.344Z", + "created": "2021-01-13T01:52:44.608Z", + "id": "relationship--c657a311-65ce-4a9c-a524-9bf626021f18", + "modified": "2021-01-13T01:52:44.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--63a905e5-d285-4a83-a418-5270d72e2418", - "modified": "2021-01-06T18:30:55.345Z", + "created": "2021-01-13T01:52:44.609Z", + "id": "relationship--8788fbac-7012-4684-9e17-527e98b9e806", + "modified": "2021-01-13T01:52:44.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--a8d4eea5-abcc-4624-a1ba-d574d6d22bf8", - "modified": "2021-01-06T18:30:55.345Z", + "created": "2021-01-13T01:52:44.610Z", + "id": "relationship--e9179261-febf-4220-bf37-15af63ac70ac", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--f80124e7-2722-48db-be34-d025c9ab532f", - "modified": "2021-01-06T18:30:55.345Z", + "created": "2021-01-13T01:52:44.610Z", + "id": "relationship--1d8fb7cc-57f1-4c72-b855-39dfa735b109", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.345Z", - "description": "User Access Permissions", - "id": "relationship--bb0eb289-260c-4149-92b0-dcffafe0176f", - "modified": "2021-01-06T18:30:55.345Z", + "created": "2021-01-13T01:52:44.610Z", + "id": "relationship--acf42649-8e25-4e23-b90e-ccdd30905b2f", + "modified": "2021-01-13T01:52:44.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ef19ffa9-68fa-498e-9c67-8d464a0aa084", - "modified": "2021-01-06T18:30:55.347Z", + "created": "2021-01-13T01:52:44.613Z", + "id": "relationship--e0086920-bc61-4803-9e4f-9806fdf76874", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b63d2d29-78b0-49d0-bc78-fc1271637d3a", - "modified": "2021-01-06T18:30:55.347Z", + "created": "2021-01-13T01:52:44.613Z", + "id": "relationship--b0fe1179-0d04-489e-9ced-38ce89d7b9e0", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5005b69c-c017-4d6a-bd6a-f65b71468856", - "modified": "2021-01-06T18:30:55.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--08a6eadd-94a8-470d-8b71-d9b0522cc26b", - "modified": "2021-01-06T18:30:55.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.347Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ce978882-dd45-435b-b15e-6c7469bcf5c6", - "modified": "2021-01-06T18:30:55.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e540a916-fc83-4f9c-8f48-8a40ec8182c8", - "modified": "2021-01-06T18:30:55.348Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--38200800-188e-4e29-a436-60195d3848d6", - "modified": "2021-01-06T18:30:55.348Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e59a79b6-d89f-494f-a15f-a7d3f111d836", - "modified": "2021-01-06T18:30:55.348Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.348Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--557492a3-907e-49e8-ae24-dcaa7bba54d0", - "modified": "2021-01-06T18:30:55.348Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9c1bc2ec-a73c-4c49-96c5-af3ce3cced53", - "modified": "2021-01-06T18:30:55.349Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--39d2b0bb-a673-4723-86cc-4412610b513b", - "modified": "2021-01-06T18:30:55.349Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.349Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b5dff9e9-9966-4274-b0f6-e24468ce9ed3", - "modified": "2021-01-06T18:30:55.349Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a8356d70-ed26-43ba-a583-90d2b51a1214", - "modified": "2021-01-06T18:30:55.350Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--75646472-325d-4002-a5d4-8aa27ebfb0c5", - "modified": "2021-01-06T18:30:55.350Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--101d889c-f56a-4df4-aa31-e7a86475a557", - "modified": "2021-01-06T18:30:55.350Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.350Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--13e0ccb9-06e6-4662-b197-85b701b2a7fc", - "modified": "2021-01-06T18:30:55.350Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.352Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e1e6d895-1474-4397-a5d5-02b3929e7b17", - "modified": "2021-01-06T18:30:55.352Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.352Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8a559e5d-9d17-4740-8bae-51427ed0eab3", - "modified": "2021-01-06T18:30:55.352Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.353Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d8743e39-7729-4a4b-97b7-5b421d7b9409", - "modified": "2021-01-06T18:30:55.353Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.353Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--76626fc9-979d-4aa9-af8e-301abede4691", - "modified": "2021-01-06T18:30:55.353Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--67643fa8-d041-437b-92bf-bcd6298897e9", - "modified": "2021-01-06T18:30:55.354Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.354Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.354Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.354Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.355Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c657a311-65ce-4a9c-a524-9bf626021f18", - "modified": "2021-01-06T18:30:55.355Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.356Z", - "description": "User Access Permissions", - "id": "relationship--8788fbac-7012-4684-9e17-527e98b9e806", - "modified": "2021-01-06T18:30:55.356Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", - "id": "relationship--e9179261-febf-4220-bf37-15af63ac70ac", - "modified": "2021-01-06T18:30:55.357Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", - "id": "relationship--1d8fb7cc-57f1-4c72-b855-39dfa735b109", - "modified": "2021-01-06T18:30:55.357Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.357Z", - "description": "User Access Permissions", - "id": "relationship--acf42649-8e25-4e23-b90e-ccdd30905b2f", - "modified": "2021-01-06T18:30:55.357Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e0086920-bc61-4803-9e4f-9806fdf76874", - "modified": "2021-01-06T18:30:55.358Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0fe1179-0d04-489e-9ced-38ce89d7b9e0", - "modified": "2021-01-06T18:30:55.358Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6f043f8e-837f-4c42-8b80-8addeb0b2dc9", - "modified": "2021-01-06T18:30:55.358Z", + "created": "2021-01-13T01:52:44.613Z", + "id": "relationship--6f043f8e-837f-4c42-8b80-8addeb0b2dc9", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.358Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.613Z", "id": "relationship--e063d1d2-c197-4abd-b6bf-2439adada358", - "modified": "2021-01-06T18:30:55.358Z", + "modified": "2021-01-13T01:52:44.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.359Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.615Z", "id": "relationship--ab9fb5e5-80df-438a-a093-df241d320d77", - "modified": "2021-01-06T18:30:55.359Z", + "modified": "2021-01-13T01:52:44.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.360Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.615Z", "id": "relationship--0000b531-6f8f-4719-bc53-4a015392d888", - "modified": "2021-01-06T18:30:55.360Z", + "modified": "2021-01-13T01:52:44.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.360Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.617Z", "id": "relationship--5e13fcfc-35cb-4e20-b3eb-c03627292e69", - "modified": "2021-01-06T18:30:55.360Z", + "modified": "2021-01-13T01:52:44.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.361Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.617Z", "id": "relationship--feda9c53-eed7-47e7-9cd6-c5a7f5a42cad", - "modified": "2021-01-06T18:30:55.361Z", + "modified": "2021-01-13T01:52:44.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.618Z", "id": "relationship--e5c5292e-bc09-4bec-a663-bdfa3360dce7", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--e204c139-ca51-4953-8d20-a3801400f4b0", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--0e05cf0c-67f8-488c-aea3-e7ae0fe935f1", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.362Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.619Z", "id": "relationship--5c2faa17-e51d-44ed-947e-3de1be3cfe72", - "modified": "2021-01-06T18:30:55.362Z", + "modified": "2021-01-13T01:52:44.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.363Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.620Z", "id": "relationship--73fe0e8c-7146-48f8-800b-66b906301d54", - "modified": "2021-01-06T18:30:55.363Z", + "modified": "2021-01-13T01:52:44.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.363Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.363Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.364Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.622Z", "id": "relationship--6d0bd723-6044-4406-8499-69197c1bd989", - "modified": "2021-01-06T18:30:55.364Z", + "modified": "2021-01-13T01:52:44.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.364Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.622Z", "id": "relationship--067478c0-1eaf-4066-b6af-23fa4fbe2476", - "modified": "2021-01-06T18:30:55.364Z", + "modified": "2021-01-13T01:52:44.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--cf7ef500-f778-4417-b3a3-214ffabf16f3", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--0639cc59-1e76-4c9c-b787-503cc1ea2261", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.623Z", "id": "relationship--8bfc2871-a203-4400-8b42-262621344cbd", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.366Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--69733bc8-914a-445b-b1cb-7ddfd1d532b0", - "modified": "2021-01-06T18:30:55.366Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--b36fb705-cdcc-4627-a4c1-53e729cf1220", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--2d74b31a-859f-4a46-bf22-1916aebd6a3c", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--09706e8b-2975-4117-a787-925f52fcacf0", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.367Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.624Z", "id": "relationship--edd4ef70-8047-4174-9c09-02ab26aeb5de", - "modified": "2021-01-06T18:30:55.367Z", + "modified": "2021-01-13T01:52:44.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--ef87db28-85ee-46a0-b510-f63f3ae19ac8", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--cec75168-dafc-4e6e-a067-9d0fc64e1a7e", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--d8119553-5844-4a0e-a60d-71849d7fb30a", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.369Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.626Z", "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:55.369Z", + "modified": "2021-01-13T01:52:44.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.370Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.628Z", "id": "relationship--60491f96-4d07-418b-852e-894f7df36347", - "modified": "2021-01-06T18:30:55.370Z", + "modified": "2021-01-13T01:52:44.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.370Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.628Z", "id": "relationship--c3e46ad8-5006-481b-bfc4-d2d03db4fd95", - "modified": "2021-01-06T18:30:55.370Z", + "modified": "2021-01-13T01:52:44.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.371Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--2b1abaa6-6e4a-4776-b3b1-79fd53a81966", - "modified": "2021-01-06T18:30:55.371Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.371Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--20ad077e-9d42-4198-a8b7-bec939083b0c", - "modified": "2021-01-06T18:30:55.371Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--d1b454c7-fde3-45bf-ba7f-5e183cf3c0dd", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2c0a0a68-9cf2-4ef9-9952-3959f6fa21e8", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2f3118e2-e0f5-4ae2-b371-2d7b9b421b27", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e0f07491-ddb5-426e-8d67-dcb1608acafc", - "modified": "2021-01-06T18:30:55.372Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--ba7da141-2e6c-4fc1-84cf-116da4c2188d", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.630Z", "id": "relationship--05495b19-ae4a-4f9d-b88f-6e4d8da3487a", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.372Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.631Z", "id": "relationship--87a7529d-3264-4adf-b765-a27a606be9d1", - "modified": "2021-01-06T18:30:55.372Z", + "modified": "2021-01-13T01:52:44.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--01ae6504-166b-41b8-b135-93818fe28478", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fad9dcc-b81f-4761-b42a-77ee7b474818", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.373Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c2dbe5a6-ce02-405b-95bc-d28e4407a7b6", - "modified": "2021-01-06T18:30:55.373Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--7ad2de2e-5075-4f0d-a2b5-bcce230e5c05", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--d2642a83-8b78-45cf-9ca6-d76a88983af3", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.632Z", "id": "relationship--73d22c2a-4685-4e05-9dfb-b5224eb00bd1", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--4edb4f4c-b84b-4dcc-bf9e-869ab1b7f617", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.374Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--b5dc9951-1441-4b22-acd8-165ee66e33f2", - "modified": "2021-01-06T18:30:55.374Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.375Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.633Z", "id": "relationship--e61efe98-837e-4738-82af-331307f0369c", - "modified": "2021-01-06T18:30:55.375Z", + "modified": "2021-01-13T01:52:44.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.634Z", "id": "relationship--bbaff494-d11c-4121-a274-387d793dfae7", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.635Z", "id": "relationship--9368dc28-24d5-4f99-bcd6-a03b66817cc7", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.376Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.635Z", "id": "relationship--45c0e62b-daa4-43c1-92f2-f61076e217d0", - "modified": "2021-01-06T18:30:55.376Z", + "modified": "2021-01-13T01:52:44.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--75885c00-f123-4759-9a36-bd38359b342b", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--c3a9dafe-6dff-4417-a1a7-b3aba6510a7f", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--cb9ba27d-e01d-4e8f-8a06-500611272d7f", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.377Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.637Z", "id": "relationship--af8b29df-7a0b-41a3-8ba3-62a37468304c", - "modified": "2021-01-06T18:30:55.377Z", + "modified": "2021-01-13T01:52:44.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.378Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.638Z", "id": "relationship--2c7c472f-0da0-4a17-9e3c-f2c8980b170d", - "modified": "2021-01-06T18:30:55.378Z", + "modified": "2021-01-13T01:52:44.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.378Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.638Z", "id": "relationship--d73c8e72-871c-4446-bfce-fa1d7c844771", - "modified": "2021-01-06T18:30:55.378Z", + "modified": "2021-01-13T01:52:44.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.379Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.639Z", "id": "relationship--9fac1afb-f02a-4239-b9ed-0f7a30ce5625", - "modified": "2021-01-06T18:30:55.379Z", + "modified": "2021-01-13T01:52:44.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.380Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.640Z", "id": "relationship--51c2f15c-f34d-4f4a-8424-a06c375c47a8", - "modified": "2021-01-06T18:30:55.380Z", + "modified": "2021-01-13T01:52:44.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--eaf3f9f1-b0f2-47fe-92cb-5b1f1447050a", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--18de8f1f-e2a3-45ba-a31b-b9cd73e22d02", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--df1827b0-43c8-4268-9183-98e8198f4288", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--10d5c472-8536-4b55-b961-addabc6c7757", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--bdaa468a-eaa0-45ce-9d52-0279a78fcd42", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--43fdf25f-430e-420f-b830-f4864e667233", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.381Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--ae5a0505-6b8a-48b2-bdab-85e2861299da", - "modified": "2021-01-06T18:30:55.381Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--3019e60c-4e89-4bd0-83f9-baea7a75747d", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.641Z", "id": "relationship--beab4162-dadc-4f05-a6e7-0687e8388cd2", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.642Z", "id": "relationship--62732ea2-7d24-43fd-af84-f2f0648b5242", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.382Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.642Z", "id": "relationship--a9cef76c-d20d-4ad5-b5b3-926d4be345dd", - "modified": "2021-01-06T18:30:55.382Z", + "modified": "2021-01-13T01:52:44.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.383Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--6f5b3bdc-9c10-4681-9236-809fe91baae1", - "modified": "2021-01-06T18:30:55.383Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--250f4c51-c71b-4eef-9b97-8a567d048e33", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--a6eb024f-7c48-4d74-8819-471694212ed0", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.384Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.643Z", "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:55.384Z", + "modified": "2021-01-13T01:52:44.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.644Z", "id": "relationship--97acdf71-6c48-4534-ad61-08310415f51c", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.645Z", "id": "relationship--d77273e2-7a41-46f7-8a61-63c9b9b06d0c", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.386Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.645Z", "id": "relationship--3138d4cb-1c71-4616-819c-13d50dbd7dde", - "modified": "2021-01-06T18:30:55.386Z", + "modified": "2021-01-13T01:52:44.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--b60b39a3-a3ae-4fea-83c0-8e078b05799e", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--045033a1-3168-48be-a77f-c39dafa1312e", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--1a9d1b98-74d7-44d0-878e-4c89bcabc956", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.387Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.647Z", "id": "relationship--fd8c9222-66ed-4f57-9f48-dcabc8467213", - "modified": "2021-01-06T18:30:55.387Z", + "modified": "2021-01-13T01:52:44.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.388Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.648Z", "id": "relationship--e8fda370-556a-41c4-b1c7-89b8e7d04142", - "modified": "2021-01-06T18:30:55.388Z", + "modified": "2021-01-13T01:52:44.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.389Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.648Z", "id": "relationship--08f4571c-1db8-4a19-8c63-3a9b15079429", - "modified": "2021-01-06T18:30:55.389Z", + "modified": "2021-01-13T01:52:44.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.390Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.649Z", "id": "relationship--71f28e38-1148-4460-a1c7-1c7fef47112d", - "modified": "2021-01-06T18:30:55.390Z", + "modified": "2021-01-13T01:52:44.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--c625ba43-9d57-4702-ac08-53721290adb8", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--b0f77c44-a1d8-44c7-be4f-99f19447456a", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.650Z", "id": "relationship--875c17eb-d891-47ee-a4d3-f12c85dba86c", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--ee1fcbc9-08eb-4cb7-89ce-003f79fb75e8", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--3222160c-6dd5-4090-a10d-967b377b8d42", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.391Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--8e4fe615-0002-46eb-aaf8-e6c570a5a62f", - "modified": "2021-01-06T18:30:55.391Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--2b558a87-7570-4047-bba4-513ca5fde850", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--721ccddb-89d9-4070-9fc9-d7a6752e8a6b", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--885045b4-ad93-4b4f-a571-1b035dbb7914", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--287a9c1a-6ab7-4fd2-bd3a-58a027c51b7d", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--5ff08716-d6b8-477e-8b02-2611020b1065", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.651Z", "id": "relationship--96ef726a-e86b-4d8a-8732-16e601ad6bc5", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--57c20482-67dd-4fd7-920b-037bd1599b55", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.392Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--07096853-4efe-479f-b66a-d865e896e9d5", - "modified": "2021-01-06T18:30:55.392Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--a9a116f0-b4ce-4150-bfa7-fac131e14db2", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.652Z", "id": "relationship--282768c3-7e20-4726-ab21-28f769bba3a2", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.393Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--e041a89b-fa44-4682-9247-b5c02205198a", - "modified": "2021-01-06T18:30:55.393Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--d7775ed6-dc43-478c-99aa-c5ccc9ba1338", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--d64ae046-0a22-4466-b565-2e77363c373f", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--ee854e07-10c3-4142-9e6b-8c1e4c41fd62", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--1686c3b2-eb77-4382-a26a-1cc259e07ce6", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--ae8e7cfa-9e68-4a91-a904-acdc1d78a3f8", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.394Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.653Z", "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.394Z", + "modified": "2021-01-13T01:52:44.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--11253f07-a24b-44d2-b61e-f37523fb25e6", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--f5135ded-a490-49d1-a2b3-871a30c2682b", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.395Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.654Z", "id": "relationship--30441098-15cd-4b6c-aff8-46425bc5ac8a", - "modified": "2021-01-06T18:30:55.395Z", + "modified": "2021-01-13T01:52:44.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--c1bf02cb-b5fd-4e70-9f78-27bddf499fdc", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--7ba4ba88-5115-4926-8da8-475fd2eea977", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--03f6a0c3-f0bf-4c2f-bb2a-6de27f0cfebe", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--8f50fd33-e6d4-441a-94f8-1403dd0c9b48", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.396Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.655Z", "id": "relationship--5ae8bda4-f48d-4de0-a5d7-e3db1a32c7ea", - "modified": "2021-01-06T18:30:55.396Z", + "modified": "2021-01-13T01:52:44.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f2570f6-8bd4-4061-bb2f-4076fba6fb04", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.397Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--33cc01f4-7780-4d2b-9753-d95fd8ec06f4", - "modified": "2021-01-06T18:30:55.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.397Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e85c16be-5a24-4f15-8c77-4b6c60fb3178", - "modified": "2021-01-06T18:30:55.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.398Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e934cab7-21fd-4380-b6ce-8c030978b943", - "modified": "2021-01-06T18:30:55.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.398Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:55.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.399Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:55.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.399Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--17dfbffa-eded-4149-bdfc-a9d15987cafb", - "modified": "2021-01-06T18:30:55.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.400Z", - "description": "User Access Permissions", - "id": "relationship--6d6bfa68-93e7-42bb-bcca-fbfb25522b40", - "modified": "2021-01-06T18:30:55.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.401Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c0b6a614-2967-482a-86f3-44a2768f0605", - "modified": "2021-01-06T18:30:55.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.401Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cabdc082-24d3-4463-8199-8f69a6d117a0", - "modified": "2021-01-06T18:30:55.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.402Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8cf8b41a-3371-43e2-babe-9ae3c9d8b5aa", - "modified": "2021-01-06T18:30:55.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.402Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a0bf5c27-0f3f-4f8e-bc81-78e5ecfe49a1", - "modified": "2021-01-06T18:30:55.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.403Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b2e53e9f-0c35-41b6-af37-774a277c774a", - "modified": "2021-01-06T18:30:55.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.403Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.661Z", "id": "relationship--577360bb-bfea-48da-8a68-52c916429f8a", - "modified": "2021-01-06T18:30:55.403Z", + "modified": "2021-01-13T01:52:44.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.404Z", - "description": "User Access Permissions", - "id": "relationship--bf76cdfd-963e-4b90-9bc8-61ab5c8eece3", - "modified": "2021-01-06T18:30:55.404Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.663Z", "id": "relationship--fa47d578-b0fb-47dc-b468-af079261f86f", - "modified": "2021-01-06T18:30:55.405Z", + "modified": "2021-01-13T01:52:44.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--abb1ddbd-bfbf-4bd1-9808-c9dbdadde963", - "modified": "2021-01-06T18:30:55.405Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--2ae6baea-476c-4dc5-a78a-ef1cccabec81", - "modified": "2021-01-06T18:30:55.406Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.664Z", "id": "relationship--d6c4169b-81c8-414c-adf8-f8fe9f9dc616", - "modified": "2021-01-06T18:30:55.406Z", + "modified": "2021-01-13T01:52:44.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.407Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.665Z", "id": "relationship--50cc48a9-50b4-4baf-80bc-0261d6158b4a", - "modified": "2021-01-06T18:30:55.407Z", + "modified": "2021-01-13T01:52:44.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.407Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.665Z", "id": "relationship--35023be5-43b8-429d-bfec-367772b6d580", - "modified": "2021-01-06T18:30:55.407Z", + "modified": "2021-01-13T01:52:44.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.666Z", "id": "relationship--801f466b-01fa-4d04-aebb-4115a3c5119d", - "modified": "2021-01-06T18:30:55.408Z", + "modified": "2021-01-13T01:52:44.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:55.409Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.667Z", "id": "relationship--b41e5bb1-63b5-4db0-8360-441ba6fe76b6", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2adf7f8f-eeef-4049-a7d4-e0a41702633b", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--35f89b64-9acb-46bb-a6dc-25bd288fb198", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.667Z", "id": "relationship--b32936f7-f86c-4ea5-8b30-70a8bbaf821d", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1691dc9a-e74f-4389-9ba9-fd52a9b66c0b", - "modified": "2021-01-06T18:30:55.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--f338d250-d31a-4310-abfe-dd05577d678a", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--f6aad6c8-92c4-4d4f-808d-9e610e6e2a06", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--d4d12b91-9e7d-44cd-b471-d0ed081aa894", - "modified": "2021-01-06T18:30:55.410Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:55.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.668Z", "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:55.411Z", + "modified": "2021-01-13T01:52:44.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.411Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c78b1e76-3c3a-4bfa-a765-5e8e131260ae", - "modified": "2021-01-06T18:30:55.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--0be08f36-d362-45a0-aad7-65cb0aa64dff", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--e7e3ab08-e899-4f06-84c5-f70797263392", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--e2806e57-e4a6-4c53-8b2f-a18c4611315a", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.669Z", "id": "relationship--4094f098-eba5-4455-b429-5deca68b21b6", - "modified": "2021-01-06T18:30:55.412Z", + "modified": "2021-01-13T01:52:44.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.412Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.413Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.670Z", "id": "relationship--a8c61f82-c94f-4e0c-9726-5c79d6aa30f4", - "modified": "2021-01-06T18:30:55.413Z", + "modified": "2021-01-13T01:52:44.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.413Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.671Z", "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:55.413Z", + "modified": "2021-01-13T01:52:44.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.414Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.671Z", "id": "relationship--8a9bdbcd-295d-47c2-a618-557c9ad03a7c", - "modified": "2021-01-06T18:30:55.414Z", + "modified": "2021-01-13T01:52:44.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f113490d-3311-40ee-84c1-f496812ac9dd", - "modified": "2021-01-06T18:30:55.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c9cea2ca-3334-46f6-95e9-a1d4e2b759d4", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e4e5f368-0205-47bc-88a7-08de5870a16f", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4761155b-3b80-4560-b9af-8bc57304db06", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f8104ffc-986f-47c0-a1e9-cca551251278", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:55.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--163d3853-39d6-4c12-83e8-092a23c856f3", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--10d0ba5a-c1f3-4547-96a2-b4ae6202385e", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:55.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--6a12a192-5fe0-4662-b5ed-c8b558c1cea8", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b59dbace-1818-4bb0-b268-33de26463b15", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9d632723-ee46-42b9-bce5-bfb2d2bf618b", - "modified": "2021-01-06T18:30:55.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.418Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.674Z", "id": "relationship--7f55ab7b-3570-4ae4-ad87-18317f5b9e27", - "modified": "2021-01-06T18:30:55.418Z", + "modified": "2021-01-13T01:52:44.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.419Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:55.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.419Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.674Z", "id": "relationship--f4c821af-dddb-4b24-ab3c-f7e2069e7771", - "modified": "2021-01-06T18:30:55.419Z", + "modified": "2021-01-13T01:52:44.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--44ca4399-cdb0-4edc-9bc8-d4fd9748224b", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--3f17dc10-22b5-472d-8d79-3cfc80765305", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.420Z", - "description": "User Access Permissions", - "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:55.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.676Z", "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:55.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--3fac12c2-1cc9-41eb-b164-b3327a7ccabe", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.421Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--f715736d-c132-42c0-89db-84709531af08", - "modified": "2021-01-06T18:30:55.421Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5fe81f98-87af-4981-8eb9-9f13fc71028a", - "modified": "2021-01-06T18:30:55.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.677Z", "id": "relationship--faab7ee5-4cc1-4576-a91f-2d99a3bb1bde", - "modified": "2021-01-06T18:30:55.422Z", + "modified": "2021-01-13T01:52:44.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.422Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5816ca40-c197-4875-828d-7bd3c0b4c291", - "modified": "2021-01-06T18:30:55.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--37ff5652-e9f1-4bfd-8d9a-4648b9a81ec5", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--d486e0ac-41d0-4a15-b363-d87e4c076379", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.678Z", "id": "relationship--717f27bf-6dfa-4715-9484-f124a1dfc232", - "modified": "2021-01-06T18:30:55.423Z", + "modified": "2021-01-13T01:52:44.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.423Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:55.423Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.424Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.680Z", "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:55.424Z", + "modified": "2021-01-13T01:52:44.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.424Z", - "description": "User Access Permissions", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:55.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7473bf38-7602-41a1-bb0a-b474d9708493", - "modified": "2021-01-06T18:30:55.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--96da6d5e-b976-43f6-9e29-b0fad262c218", - "modified": "2021-01-06T18:30:55.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.425Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.681Z", "id": "relationship--e08d0b6e-a002-4887-ac0a-a806fbd950e0", - "modified": "2021-01-06T18:30:55.425Z", + "modified": "2021-01-13T01:52:44.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.681Z", "id": "relationship--e2b02808-0802-4971-af34-2be58a38e829", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--3688cc2b-6321-42df-8a7a-6e14e8f371c8", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--22b98945-ac7b-4a5b-9b5c-e294d1c48047", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--eb077f76-7b8b-4d20-9e06-89460daebff6", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--bfc3baee-0a68-4347-a016-8f58f6f89449", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--b33e85dc-d55a-4463-9eb8-0d6c012916cf", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.426Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--e82a9e39-97f2-4db6-90ed-e7834777d752", - "modified": "2021-01-06T18:30:55.426Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--9450c6f3-72cd-455c-b35b-7fc98991c6c1", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--97b6c61d-888f-4674-90a6-052fce323725", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.682Z", "id": "relationship--89559a30-90dc-4952-b341-cd80bcd25094", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.427Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.683Z", "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:55.427Z", + "modified": "2021-01-13T01:52:44.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.683Z", "id": "relationship--1d303794-11bd-413a-b5d3-b6e1e75d7dc8", - "modified": "2021-01-06T18:30:55.428Z", + "modified": "2021-01-13T01:52:44.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--92b9c250-0f97-4a32-a437-78b198958b51", - "modified": "2021-01-06T18:30:55.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9e56f823-965a-4bbb-85ab-f091cfb9a1ee", - "modified": "2021-01-06T18:30:55.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--0bf59f3c-bbbe-4a17-9e15-8ea9cc38e182", - "modified": "2021-01-06T18:30:55.429Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.429Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--2b82f55b-2007-4993-a83b-949821e6b96b", - "modified": "2021-01-06T18:30:55.429Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--37743937-066a-4297-accf-999bb844c1bc", - "modified": "2021-01-06T18:30:55.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--a9e3ea5d-8d03-4ba6-8ce9-4312485e26f4", - "modified": "2021-01-06T18:30:55.430Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.430Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.684Z", "id": "relationship--ef0441d1-747a-45ad-8b7b-8f6c4f8ad297", - "modified": "2021-01-06T18:30:55.430Z", + "modified": "2021-01-13T01:52:44.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.431Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.685Z", "id": "relationship--af5638ff-d2f9-492c-b1ce-5966e1999b05", - "modified": "2021-01-06T18:30:55.431Z", + "modified": "2021-01-13T01:52:44.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.685Z", "id": "relationship--383f7082-d770-4e7a-9b87-219d54bbb3ea", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.686Z", "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.432Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.686Z", "id": "relationship--ebea4a1f-4ce1-407c-9fbb-9221eeb22f1c", - "modified": "2021-01-06T18:30:55.432Z", + "modified": "2021-01-13T01:52:44.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0d1307da-4f68-4552-8fbe-67ccd889ba21", - "modified": "2021-01-06T18:30:55.434Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--457c36c9-a4bb-4306-b959-80c90dac9ed9", - "modified": "2021-01-06T18:30:55.434Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--ad357f53-e123-41bf-ac7c-3a3ac86b7205", - "modified": "2021-01-06T18:30:55.434Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.434Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:55.434Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--d0eeb07f-16ba-4919-8827-c6ba2f10c364", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--cd64a8a5-f8ab-4df5-b3d1-6a9a2f8026f7", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--0375056a-084e-4490-9c7b-1107c1b1951b", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.687Z", "id": "relationship--38c64374-b45c-4706-ace1-175d6ea03309", - "modified": "2021-01-06T18:30:55.435Z", + "modified": "2021-01-13T01:52:44.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.435Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c01591b9-5a7c-4ee0-bce5-4b0bb2bbc65e", - "modified": "2021-01-06T18:30:55.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--343b15c4-28f1-4eee-8a2e-ab18aa8262ed", - "modified": "2021-01-06T18:30:55.436Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--dc77c78a-f9b7-496d-9a21-f6470f898e29", - "modified": "2021-01-06T18:30:55.436Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e793f5d1-1d38-4ffe-b035-98e51ad462b2", - "modified": "2021-01-06T18:30:55.436Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.436Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--84cd81b3-d7cc-49e7-a2e2-dc0001cef7a3", - "modified": "2021-01-06T18:30:55.436Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--52baf997-94f4-47a6-97b2-0ca525993b6f", - "modified": "2021-01-06T18:30:55.437Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.688Z", "id": "relationship--44c5695c-ecf7-4d8c-9f1c-e8a7c78afb70", - "modified": "2021-01-06T18:30:55.437Z", + "modified": "2021-01-13T01:52:44.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fc9ca50-d7c3-4796-983b-949f68bcecbf", - "modified": "2021-01-06T18:30:55.437Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.689Z", "id": "relationship--e767f66f-b27b-4134-bb91-5e781c0da514", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.689Z", "id": "relationship--f914b54e-79c3-4e4e-ad34-697ae9ae2b94", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.438Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--8d80ac3a-a7eb-47ff-beb1-7a64c212189c", - "modified": "2021-01-06T18:30:55.438Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--4466699e-1162-49d3-b246-2d82b1f96821", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e6620622-c001-48b5-94d4-40a3385dbf2f", - "modified": "2021-01-06T18:30:55.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--d1fb6180-3455-43d2-a620-f10be54a9d46", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.690Z", "id": "relationship--8e99b55b-bb7d-48fc-9658-21dd2c06bd15", - "modified": "2021-01-06T18:30:55.439Z", + "modified": "2021-01-13T01:52:44.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.439Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:55.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.440Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--de830a6b-02b9-45db-8c92-ebc7beb0e388", - "modified": "2021-01-06T18:30:55.440Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--4a1a9566-9d6a-4b7d-afab-dbe0027b876b", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.691Z", "id": "relationship--449fffc9-50f3-45df-b0b8-7c7ebf7c8a67", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.441Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.692Z", "id": "relationship--87d82cc4-c5df-488e-87f5-61a4379caec4", - "modified": "2021-01-06T18:30:55.441Z", + "modified": "2021-01-13T01:52:44.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--6af13181-b4e4-4ab2-a5de-898271eebdc9", - "modified": "2021-01-06T18:30:55.442Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--e886f4fa-5b1a-4e4e-919d-0e6240a1c94d", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--45e6f27c-c00c-400f-817f-b3d98b2f8b0e", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--4b6ea033-58b7-4ed4-af69-51f8f2c9b0bc", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--be1ca806-609f-424e-b67d-06a49e99d9ec", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--d7ebea81-2f31-4aab-9edd-6c7447654275", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.443Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--65ba0724-10c3-405f-9ecc-1701bc3036a3", - "modified": "2021-01-06T18:30:55.443Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.444Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:52:44.693Z", "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:55.444Z", + "modified": "2021-01-13T01:52:44.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--b3452bed-b4c9-4ca4-93ca-8a60dbfaf59a", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--18f4767f-589e-4b85-b7cc-ec967d809183", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--4c663817-68d4-4c9c-95f0-b9c2a26a37a5", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.445Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.695Z", "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:55.445Z", + "modified": "2021-01-13T01:52:44.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.446Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.696Z", "id": "relationship--3f3a7b36-b82d-4ca2-b485-b2b98b8dcea9", - "modified": "2021-01-06T18:30:55.446Z", + "modified": "2021-01-13T01:52:44.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.446Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.696Z", "id": "relationship--09379e67-0008-4f0d-9721-602cd317f55d", - "modified": "2021-01-06T18:30:55.446Z", + "modified": "2021-01-13T01:52:44.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.448Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--e7168f2a-7711-4dbd-a93c-7ff6680ef6d5", - "modified": "2021-01-06T18:30:55.448Z", + "created": "2021-01-13T01:52:44.698Z", + "id": "relationship--84e0f894-fac6-4ce8-8ed3-c17614d24e04", + "modified": "2021-01-13T01:52:44.698Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.448Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:55.448Z", + "created": "2021-01-13T01:52:44.699Z", + "id": "relationship--9fd4d561-a38f-47a4-a99f-2a7af10c75e6", + "modified": "2021-01-13T01:52:44.699Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4f12d12c-c414-40f5-8279-6275ee38e213", - "modified": "2021-01-06T18:30:55.449Z", + "created": "2021-01-13T01:52:44.700Z", + "id": "relationship--2aa919ef-c6aa-4555-8625-6e30fc24a8fb", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--952e8b02-f68e-46c3-a7dd-182247b6a46c", - "modified": "2021-01-06T18:30:55.449Z", + "created": "2021-01-13T01:52:44.700Z", + "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3f9435dd-9b77-4136-9dc4-b4d8915255c0", - "modified": "2021-01-06T18:30:55.449Z", + "created": "2021-01-13T01:52:44.700Z", + "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", + "modified": "2021-01-13T01:52:44.700Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.449Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--9332b25d-8538-454d-b001-e034f9976943", - "modified": "2021-01-06T18:30:55.449Z", + "created": "2021-01-13T01:52:44.702Z", + "id": "relationship--597c5405-f448-4347-b9a5-57afe34dd36d", + "modified": "2021-01-13T01:52:44.702Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--fb809a9e-3945-4a0f-bb74-cdc0996568fb", - "modified": "2021-01-06T18:30:55.450Z", + "created": "2021-01-13T01:52:44.703Z", + "id": "relationship--9c911c12-6347-461e-b897-be4ff7aa8029", + "modified": "2021-01-13T01:52:44.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--613ac41e-ae28-406b-8b8e-f287af930c36", - "modified": "2021-01-06T18:30:55.450Z", + "created": "2021-01-13T01:52:44.704Z", + "id": "relationship--0f7c00ed-aa9f-4c2d-841a-e187e722e081", + "modified": "2021-01-13T01:52:44.704Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--84e0f894-fac6-4ce8-8ed3-c17614d24e04", - "modified": "2021-01-06T18:30:55.450Z", + "created": "2021-01-13T01:52:44.705Z", + "id": "relationship--7f85a758-df7d-4e66-a4f5-c57ff65914f6", + "modified": "2021-01-13T01:52:44.705Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.450Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--62e142ed-7eae-4548-aafd-43a9b4553b86", - "modified": "2021-01-06T18:30:55.450Z", + "created": "2021-01-13T01:52:44.706Z", + "id": "relationship--821f0af6-6620-41cb-8ab7-668e807fa2e5", + "modified": "2021-01-13T01:52:44.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:55.451Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--f3b30724-42d7-4d11-b7f1-2b698cfc0c50", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3daf04d3-c35c-457a-a9b5-69a5d62b9c70", - "modified": "2021-01-06T18:30:55.451Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0d2278e7-ae41-48ed-a784-209b736b36e9", - "modified": "2021-01-06T18:30:55.451Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:55.451Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--b9d42f57-939b-4d8e-aa47-7f1d0bf2d396", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.451Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--9fd4d561-a38f-47a4-a99f-2a7af10c75e6", - "modified": "2021-01-06T18:30:55.451Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--3368a140-3117-430e-837b-1127fe2d26f8", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.453Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d4ec633a-e81a-493b-a94a-ce495110eb8f", - "modified": "2021-01-06T18:30:55.453Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.453Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0650f8a1-9ba2-4eef-acd7-55b5e6dbbfab", - "modified": "2021-01-06T18:30:55.453Z", + "created": "2021-01-13T01:52:44.707Z", + "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", + "modified": "2021-01-13T01:52:44.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2aa919ef-c6aa-4555-8625-6e30fc24a8fb", - "modified": "2021-01-06T18:30:55.454Z", + "created": "2021-01-13T01:52:44.708Z", + "id": "relationship--09f881be-6c0e-459b-bbe7-eda42fbcbb04", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.454Z", + "created": "2021-01-13T01:52:44.708Z", + "id": "relationship--b39bb32a-8efb-453f-a363-e605d842eadf", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:55.454Z", + "created": "2021-01-13T01:52:44.708Z", + "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.454Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.454Z", + "created": "2021-01-13T01:52:44.708Z", + "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", + "modified": "2021-01-13T01:52:44.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", - "id": "relationship--39c1ddf8-d933-437c-9cbc-b1d3ff95eb91", - "modified": "2021-01-06T18:30:55.456Z", + "created": "2021-01-13T01:52:44.709Z", + "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", + "modified": "2021-01-13T01:52:44.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", - "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:55.456Z", + "created": "2021-01-13T01:52:44.709Z", + "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", + "modified": "2021-01-13T01:52:44.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.456Z", - "description": "User Access Permissions", - "id": "relationship--597c5405-f448-4347-b9a5-57afe34dd36d", - "modified": "2021-01-06T18:30:55.456Z", + "created": "2021-01-13T01:52:44.710Z", + "id": "relationship--ea856c27-b752-40b1-8b20-bf2cec8c5cf2", + "modified": "2021-01-13T01:52:44.710Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--97e1c6e5-910a-408a-bdc2-4e9d1b2a1443", - "modified": "2021-01-06T18:30:55.458Z", + "created": "2021-01-13T01:52:44.710Z", + "id": "relationship--e4491539-43c1-46a4-8dad-9a4f083ccc80", + "modified": "2021-01-13T01:52:44.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a434ecd9-5892-4f63-bdcd-48c3fd39502e", - "modified": "2021-01-06T18:30:55.458Z", + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--082b0cc3-c099-45b7-8ea0-a970d3a9b221", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.458Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9e2ffac3-72a9-4fc7-b8d9-453329ba3335", - "modified": "2021-01-06T18:30:55.458Z", + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--18e0862d-4950-4b8b-9923-55daa75786ad", - "modified": "2021-01-06T18:30:55.459Z", + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9c911c12-6347-461e-b897-be4ff7aa8029", - "modified": "2021-01-06T18:30:55.459Z", + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", + "modified": "2021-01-13T01:52:44.711Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--f96c0a63-e6c2-491a-9871-64aaed004469", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c13daa0-e29a-447d-983a-4bb307ded65d", - "modified": "2021-01-06T18:30:55.459Z", + "created": "2021-01-13T01:52:44.711Z", + "id": "relationship--abc4db02-5923-4028-960e-4cf20a8a5790", + "modified": "2021-01-13T01:52:44.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.459Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fcfa1d00-709b-4983-9828-0bd3a2e8ce7b", - "modified": "2021-01-06T18:30:55.459Z", + "created": "2021-01-13T01:52:44.712Z", + "id": "relationship--ab6f7dee-e57e-4cf9-92ca-1f0e2af04b58", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.460Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd6ebbbd-4ece-4d04-9cee-29e24308c84b", - "modified": "2021-01-06T18:30:55.460Z", + "created": "2021-01-13T01:52:44.712Z", + "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.461Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0f7c00ed-aa9f-4c2d-841a-e187e722e081", - "modified": "2021-01-06T18:30:55.461Z", + "created": "2021-01-13T01:52:44.712Z", + "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2fede993-15e0-4744-8a9a-6d59f4627ba7", - "modified": "2021-01-06T18:30:55.462Z", + "created": "2021-01-13T01:52:44.712Z", + "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", + "modified": "2021-01-13T01:52:44.712Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--49541de1-713a-4694-9466-a6e735e9a82b", - "modified": "2021-01-06T18:30:55.462Z", + "created": "2021-01-13T01:52:44.714Z", + "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.462Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c1906084-8752-4576-8dba-d44031695bf2", - "modified": "2021-01-06T18:30:55.462Z", + "created": "2021-01-13T01:52:44.714Z", + "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.464Z", - "description": "User Access Permissions", - "id": "relationship--7f85a758-df7d-4e66-a4f5-c57ff65914f6", - "modified": "2021-01-06T18:30:55.464Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.464Z", - "description": "User Access Permissions", - "id": "relationship--a0e1e7eb-43ef-4724-aa3b-333de3656730", - "modified": "2021-01-06T18:30:55.464Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.467Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--821f0af6-6620-41cb-8ab7-668e807fa2e5", - "modified": "2021-01-06T18:30:55.467Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f3b30724-42d7-4d11-b7f1-2b698cfc0c50", - "modified": "2021-01-06T18:30:55.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:55.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:55.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.468Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b9d42f57-939b-4d8e-aa47-7f1d0bf2d396", - "modified": "2021-01-06T18:30:55.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3368a140-3117-430e-837b-1127fe2d26f8", - "modified": "2021-01-06T18:30:55.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:55.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.469Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:55.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.471Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--09f881be-6c0e-459b-bbe7-eda42fbcbb04", - "modified": "2021-01-06T18:30:55.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b39bb32a-8efb-453f-a363-e605d842eadf", - "modified": "2021-01-06T18:30:55.472Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:55.472Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.472Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:55.472Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.475Z", - "description": "User Access Permissions", - "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:55.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.475Z", - "description": "User Access Permissions", - "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:55.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.476Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ea856c27-b752-40b1-8b20-bf2cec8c5cf2", - "modified": "2021-01-06T18:30:55.476Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e4491539-43c1-46a4-8dad-9a4f083ccc80", - "modified": "2021-01-06T18:30:55.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--082b0cc3-c099-45b7-8ea0-a970d3a9b221", - "modified": "2021-01-06T18:30:55.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:55.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:55.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.477Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:55.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f96c0a63-e6c2-491a-9871-64aaed004469", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--abc4db02-5923-4028-960e-4cf20a8a5790", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ab6f7dee-e57e-4cf9-92ca-1f0e2af04b58", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.478Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:55.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:55.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:55.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.480Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:55.480Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.481Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:52:44.714Z", "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:55.481Z", + "modified": "2021-01-13T01:52:44.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.483Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:52:44.716Z", "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:55.483Z", + "modified": "2021-01-13T01:52:44.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.485Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:44.717Z", "id": "relationship--96457e88-0391-4c7d-b235-04ce81004909", - "modified": "2021-01-06T18:30:55.485Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--7be00ab2-d7e9-4732-9c71-6eedd4bbbf44", - "modified": "2021-01-06T18:30:55.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--ecd6c2df-2a15-44c5-9ca3-82bf7d10566c", - "modified": "2021-01-06T18:30:55.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--3bd3e974-ae5a-41e2-9b0b-2353d92334d2", - "modified": "2021-01-06T18:30:55.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.486Z", - "description": "Continuous Monitoring", - "id": "relationship--fb6b0c63-bc92-4db2-86ad-46e8bca647fb", - "modified": "2021-01-06T18:30:55.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--05081acb-f547-453f-bad1-002891ac22e7", - "modified": "2021-01-06T18:30:55.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--0c15267f-dca7-467d-82a3-5e3b675463b2", - "modified": "2021-01-06T18:30:55.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--1b33e2af-a1d8-4a57-95ae-8956c99a4071", - "modified": "2021-01-06T18:30:55.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.487Z", - "description": "Continuous Monitoring", - "id": "relationship--4981efd9-1791-492c-8757-74bce2bec610", - "modified": "2021-01-06T18:30:55.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.488Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0d8de87a-d68e-4310-9034-16e8578d261c", - "modified": "2021-01-06T18:30:55.488Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.488Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--061d0ecc-ce25-4cb3-9d98-f8453b9973d4", - "modified": "2021-01-06T18:30:55.488Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f9275823-4ebd-4533-900c-958d31aaf240", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a055c63e-e4c1-4298-8068-fb3f5bc87b22", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--51a5c9e3-93d8-4bc8-ac5f-3140135872bc", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a8402d2f-d8db-4f15-a7fb-b62e7942ecb3", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4bec2cea-959e-4e8f-9c4c-4191de7723b2", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.489Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--31c401fb-0470-48d9-bdfb-a71e796556ca", - "modified": "2021-01-06T18:30:55.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ce29240a-1416-47ec-8bd5-a7a127d035ca", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--186d20bd-ef93-45c1-ad96-64f34f383750", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8ba5854f-0613-463c-a37a-516d0fe7ea24", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.490Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--87663848-c530-4f61-968e-c48fe2d4d8b8", - "modified": "2021-01-06T18:30:55.490Z", + "modified": "2021-01-13T01:52:44.717Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.491Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.491Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e6dbb362-7397-4456-86d1-6710f26b7111", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--f4fed9c8-f324-4871-b13b-dc799c5c607e", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--ab2e9f69-d9fd-419b-ba4e-258e87190757", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--23b2bf27-97be-44ff-8ede-c0f02cce6237", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--48a87b5e-ed65-4d5b-8dd5-557c53ff946a", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--a9090825-c14f-4650-94e3-88fe861c61b1", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.492Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--18e39c9d-e3a1-44e2-9366-70424a22665e", - "modified": "2021-01-06T18:30:55.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--a5ea6bdb-993f-48e4-a7d9-35994dfe3ccd", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bb23020c-486e-4ecd-b529-72b80853f1c5", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--53ff1f65-0f9b-44e2-b945-4e846dfaa6f2", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--834402f8-f070-4509-94c7-cfd5f43b7d15", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--d5dd2ae2-fd28-49e3-8514-e73f9ec29ab0", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--f28dfcdd-0b23-4956-b8f7-fb7823a1d8f4", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.493Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9f634a56-dba2-40a4-a58d-ca584cd97785", - "modified": "2021-01-06T18:30:55.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--c9a0a962-532b-42d1-b3c3-12b73746a664", - "modified": "2021-01-06T18:30:55.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--698f86b3-d88f-4429-9fc8-d5500f24c081", - "modified": "2021-01-06T18:30:55.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--51ab6b7e-50c0-42fd-8769-7b13fd2e05c2", - "modified": "2021-01-06T18:30:55.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.494Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--d348da1d-9a96-48c2-aae4-8cab44cd5f76", - "modified": "2021-01-06T18:30:55.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ef72208e-12ca-45d2-b132-f2d9295e7ae3", - "modified": "2021-01-06T18:30:55.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7464e95-df43-41df-aab2-945d6a4945eb", - "modified": "2021-01-06T18:30:55.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--04a91f8a-d067-4101-9b92-29b09499b605", - "modified": "2021-01-06T18:30:55.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fa5cb2bc-bc29-4b2f-8ad8-4c6b9259bdba", - "modified": "2021-01-06T18:30:55.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ff973a07-ac43-4746-ba32-1c921adba73d", - "modified": "2021-01-06T18:30:55.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--446497f2-61b4-4ecc-8547-01cbf2f9ad4e", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dd054c8a-8900-424f-be3f-46a38ff727c9", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a06cc15a-68de-4710-bed8-aae8c4ecddcd", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--05a6a2b1-5472-4559-b323-d68325ad4e58", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--84a4027c-7039-436c-aa1f-151042db3f9e", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cfa9b2c8-20b3-4781-a33c-2a2a13ca61f8", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.496Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ec883b32-681e-4355-9107-dadd4cd28a24", - "modified": "2021-01-06T18:30:55.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:55.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--685dafcb-6537-4f16-86bc-7cc45d27e13a", - "modified": "2021-01-06T18:30:55.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.497Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:55.497Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--1381bb4d-1e81-422d-8495-e1527ee02f8d", - "modified": "2021-01-06T18:30:55.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8d58b197-1391-4a46-80bc-66e934b2cb6f", - "modified": "2021-01-06T18:30:55.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--0fbb1e97-2786-491e-8f7c-0dbfd20c97b5", - "modified": "2021-01-06T18:30:55.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.498Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--39ead669-806a-4434-ab9a-3ab2b7de4cd3", - "modified": "2021-01-06T18:30:55.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--13df72b9-1218-4205-8159-aecd67e64065", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d40d776e-91a9-4d64-98c1-aa1c4abbbd2e", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c8bc4fe0-a9e4-4419-b4b3-c7ec81a8cdbe", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--64bc94fb-c89a-48cf-8654-29e487a25444", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.499Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--39187389-9f6d-4a2c-895f-e911d38226b7", - "modified": "2021-01-06T18:30:55.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--fefd14be-4f64-4889-87ae-da707153fa94", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3e0b3d8b-332e-40c9-bb42-d86ccaed9808", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--920c76c7-ed9b-4b0f-8de1-d20cd774fd6e", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.500Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71f3a6c8-774d-4247-8685-04cac7fcc1dd", - "modified": "2021-01-06T18:30:55.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--38824d57-ee04-4e8a-8d04-3b8270544d13", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--c617e38c-444b-4f55-8b6d-88907cf20bc8", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f35a2567-63ce-4dfc-a4e7-8d163620719a", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d9ce3394-0060-4320-8f50-8ae293260cb7", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.501Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--fe3aa1fa-370c-4d7d-a577-4cdb8e4e693f", - "modified": "2021-01-06T18:30:55.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--580444d2-c717-4028-bac4-7002d3968a74", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--79607324-a001-4d6f-94c1-a75a713baac3", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--fec0a9d8-8d45-46bc-a181-33b35e422df5", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--48b47c66-3d0c-471f-b578-1d4301b0be67", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--f2379f8d-f93e-4b71-b47f-1bb8ec416c65", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ac52c62f-bf2a-460c-841d-7d6a621f1446", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.503Z", - "description": "Account Management, Least Privilege", - "id": "relationship--99d736d1-6ef9-4f91-a5e6-f39e4bbecb54", - "modified": "2021-01-06T18:30:55.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--07c96bc7-fb23-4b28-886f-b7c95a734048", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--a837a6e0-a2dc-4df2-a27d-e6b835d18d16", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--741a9be9-dd96-4304-b651-4f1061d6a8d5", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b2b0e8c4-224d-48a3-85f9-74d7e86eb77b", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--1a81d059-2b19-43ed-9878-070434936ea2", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ec87196d-d21f-4232-97d2-e9b191e35aaf", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--8db812d6-e1f5-4559-8565-d07fe7994483", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.504Z", - "description": "Account Management, Least Privilege", - "id": "relationship--85d0478b-a76c-4f56-9ed8-ce7e65c72eec", - "modified": "2021-01-06T18:30:55.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d2f49a4e-8a0f-4698-b520-0372a4d8b007", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--d0be160e-dbcb-4f99-9cd2-e0174aa05485", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.505Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6bd3b696-3be5-405b-8d05-7cc638b56a88", - "modified": "2021-01-06T18:30:55.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.506Z", - "description": "Continuous Monitoring", - "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", - "modified": "2021-01-06T18:30:55.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.507Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--158f41c7-4ec4-4a53-a192-15a84b390b65", - "modified": "2021-01-06T18:30:55.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.507Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:55.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.508Z", - "description": "Information System Monitoring", - "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", - "modified": "2021-01-06T18:30:55.508Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.509Z", - "description": "Boundary Protection", - "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", - "modified": "2021-01-06T18:30:55.509Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--90a108ef-4ae5-45f6-97dd-3de7535f01f1", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.510Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", - "modified": "2021-01-06T18:30:55.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.511Z", - "description": "Continuous Monitoring", - "id": "relationship--876c8180-287f-430e-ba0b-6913570d8be2", - "modified": "2021-01-06T18:30:55.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--cbc2a15c-0d74-46d9-87ad-ca3ae23f2460", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.512Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--db40f2f1-2a22-4ccf-97a7-dbfbc2de9378", - "modified": "2021-01-06T18:30:55.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.513Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--2e4667c6-e981-49af-8d1b-deccecaa5d71", - "modified": "2021-01-06T18:30:55.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.513Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", - "modified": "2021-01-06T18:30:55.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.514Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--97b997f5-d123-494c-9e88-6c8f3a75ae1b", - "modified": "2021-01-06T18:30:55.514Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b2900ad0-f75e-4e98-b53b-d4babc4f9dc1", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b2eb737-5a78-4b1d-ab71-0a976e8458b3", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.515Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--519c06f6-13b6-4b8a-888e-77bccacd9b6f", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--462a2a87-71e2-46dc-966e-294680ff9c87", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4bbaa3e5-3ae2-41ef-8ff0-ab09985ec239", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.517Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2938c748-1ed5-4fe8-874e-2ba5746e4f48", - "modified": "2021-01-06T18:30:55.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b576bad2-950a-40ef-aa7d-e2faad9197ff", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--8499d3cd-fc46-4fbd-a3ec-0c05603f0c16", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c0c5f6f8-fb26-4151-b07e-f07817cbee3c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--d5814d8a-fb01-46e9-b1bb-2366e8ccb89d", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--9c748826-f917-41af-aa3b-5436c819e534", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--0711396f-8746-454e-ae38-29a3bf04713c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--7b9d3036-c54b-4038-a8ac-2775c5fbb37c", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.518Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--fbc08dc7-499d-4efc-ab09-3b0871289793", - "modified": "2021-01-06T18:30:55.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--962d2637-230a-45c5-b562-db3618c4e8b7", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--eb344fce-ef44-4ad4-99b6-32f8202afeed", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4b3b4525-49c0-405a-b95c-a08c24f797a6", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b8ae63ec-1d64-4bda-8b67-bb4eb9e233eb", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--f7f2a1d5-5602-4305-a67f-03caa9173032", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--ff85dbc1-61ff-4fee-9204-baa8f3c7f8bb", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--e6f75574-8aee-4d4a-9ca6-daaebb27da21", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.519Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--57bb1c15-f067-4c93-bec7-f9546792ec11", - "modified": "2021-01-06T18:30:55.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4902b4a4-3ed5-4324-83eb-dd60ace5a6ec", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--dadbb1f9-b32c-458c-b760-573037fca786", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--ade67d29-281f-417d-b176-8789b931532f", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2a9bac3c-9fe7-4a45-8fd7-10d1e207f130", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b8dd7f10-e9c7-491a-92b4-2505aea30e42", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.520Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--03d9df1a-dca1-4263-9e8c-c306255ecc27", - "modified": "2021-01-06T18:30:55.520Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--833db13a-a17c-4f70-96d0-984352bd9adc", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--02f7cfd1-9b6a-4c63-af56-2fe7498e3737", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4befa13d-c8a1-4971-8668-295f3e426c61", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--82d019b5-4d23-4dc1-9827-87493f64c4b3", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1dd1c635-bc68-4e21-b4fe-f30b1eafc2f4", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.521Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1c533911-eb8e-4ef5-8dd5-ec73b2142c7d", - "modified": "2021-01-06T18:30:55.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.522Z", - "description": "Protection of Information at Rest", - "id": "relationship--e04b76a7-b55d-443e-b80b-b7f64de287f3", - "modified": "2021-01-06T18:30:55.522Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--916dedf8-f5c5-4f82-9ebd-71bedc3a22d2", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--4dbb41d1-15f6-4265-b6bc-40081d6e1890", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.523Z", - "description": "Protection of Information at Rest", - "id": "relationship--e8259d5d-bc0e-4fa4-8963-f51d9bbb744d", - "modified": "2021-01-06T18:30:55.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca866843-73e4-4209-b3db-d18c45837aac", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--8d954dba-b324-4d89-a2a4-ea84104c37b7", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--4f056248-8f91-43f2-9970-9b7778f7938e", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.525Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--108d7507-bb7b-4c1f-82bf-8a204a99d2f0", - "modified": "2021-01-06T18:30:55.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--08e15ea0-c7a4-458d-b473-1d683613dc33", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--48fe31d3-c594-40ea-9bde-8f318d55c476", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--2a992511-14dd-4640-9345-5a2986f5cf67", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--168202fe-3487-4c95-98ec-b9addb432abf", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.526Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--732f886b-a064-4841-86b7-bf884d4212ef", - "modified": "2021-01-06T18:30:55.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.527Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--951e308f-a84d-42da-9b3c-186a5e9ff092", - "modified": "2021-01-06T18:30:55.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.527Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca6bc792-4bfc-47a6-aaaf-2993a946dcb0", - "modified": "2021-01-06T18:30:55.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--02f94296-e603-4c4a-ba23-58c76de3d10f", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--e766de42-ac9a-438a-8e7e-7b0e6284893d", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--6fa223b7-4d39-4b81-b47d-939453ad445c", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.528Z", - "description": "Continuous Monitoring", - "id": "relationship--0bed09ac-ed4a-4797-883f-ffb83bdd0d17", - "modified": "2021-01-06T18:30:55.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--fb9ecaed-1980-4474-9a3f-0d6696216af7", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.529Z", - "description": "Information System Monitoring", - "id": "relationship--a8c58466-3a32-4d33-9418-f30fbf2c0e4a", - "modified": "2021-01-06T18:30:55.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.530Z", - "description": "Information System Monitoring", - "id": "relationship--a6ab8d23-1afa-4339-8aa9-e750b363b71a", - "modified": "2021-01-06T18:30:55.530Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--7dc07117-84a7-4c99-aedb-1c66321c5cef", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--77084b00-de9f-4407-825f-11ec2b8b006c", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--ec4ea374-a1e7-481a-bb5a-d8f7e7a79333", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.531Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--660670ed-503c-4bf4-b05f-c2a03c6057a2", - "modified": "2021-01-06T18:30:55.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--ec40187d-b35e-4166-b323-62d9e2946c0f", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--8e3a2f42-ba76-4703-b9cd-fee2eaea4a0c", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.532Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--446b6a68-a1fc-4170-950f-af7a4066aed9", - "modified": "2021-01-06T18:30:55.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f6a668ac-6fe7-4a72-b85d-989dc38866f2", - "modified": "2021-01-06T18:30:55.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--3e46cf76-0a60-4128-b662-b9434c42c200", - "modified": "2021-01-06T18:30:55.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--b8e4ce24-2c11-4339-b5b2-8609533d6098", - "modified": "2021-01-06T18:30:55.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.533Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--bb996652-c96b-4110-8976-9020a4d7a6d8", - "modified": "2021-01-06T18:30:55.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--d3d58027-9786-4318-8437-1f95a95c353a", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f707faca-73cc-4e70-85f4-81bc7945d948", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--26ab7bd2-2775-4174-a33f-fa4a9d51897c", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--6cecb992-1204-4f09-946d-e7e005175642", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.534Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--4e75bebe-f52c-46f3-b4c5-763dcd8da86f", - "modified": "2021-01-06T18:30:55.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f6300e49-0277-45fe-9b4e-b881d2bb2e15", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--81ca3def-acc7-4c95-99d2-9d496a9afed6", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--9a6e4479-d15d-4035-a19a-2762090d661b", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--be57f24c-1fd5-409b-8610-778ea0990aad", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.535Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--2a4711c7-f788-426c-b75a-dde62c583536", - "modified": "2021-01-06T18:30:55.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.536Z", - "description": "Identification and Authenitication Policy and Procedures, Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--0019b0a8-7658-4104-8f89-bd975626036c", - "modified": "2021-01-06T18:30:55.536Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", - "id": "relationship--ceab6250-1c09-41bf-84d0-6a806f4d870a", - "modified": "2021-01-06T18:30:55.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", - "id": "relationship--cf5707c2-e440-4984-be82-72b5c46f6380", - "modified": "2021-01-06T18:30:55.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", - "id": "relationship--546971a3-1a74-4dcd-ad4b-c1062ec941ba", - "modified": "2021-01-06T18:30:55.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", - "id": "relationship--124f2ef9-c6c9-4b7e-b130-54ee31ae94ff", - "modified": "2021-01-06T18:30:55.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.537Z", - "description": "Continuous Monitoring", - "id": "relationship--5c03d8e1-5da6-4ff6-9aca-bc57b8c2ae80", - "modified": "2021-01-06T18:30:55.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", - "id": "relationship--1a8be10f-54d5-48d7-b084-c3d95047ec55", - "modified": "2021-01-06T18:30:55.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", - "id": "relationship--019c65ba-0b16-407d-a561-1f9cc87a6d39", - "modified": "2021-01-06T18:30:55.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", - "id": "relationship--d8dce54f-3a0b-44ab-aa50-77f1da21af73", - "modified": "2021-01-06T18:30:55.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", - "id": "relationship--3b34afe1-45be-4890-acf5-fd91efa085bc", - "modified": "2021-01-06T18:30:55.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.539Z", - "description": "Information System Monitoring", - "id": "relationship--e98ea03a-daa1-49db-b7cf-c7f870e83815", - "modified": "2021-01-06T18:30:55.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--a70dd416-53f4-470b-969a-545a0a3f4d73", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--6796e2d4-e549-4363-bde0-2b3be1463bed", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--0227542d-3a5b-4f6f-9125-899cac6211bc", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--6de4b643-a899-450a-b2de-bf00f3a7a302", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--92dcb6a9-92f9-4d17-b9e4-569c8db728b1", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--7ea6ca54-9084-4b02-b685-8b24e7e11c5c", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.541Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--1c8b2866-0ec3-4ebe-bb95-ce55e0a91835", - "modified": "2021-01-06T18:30:55.541Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--81a29912-cc7a-48d2-af8d-7673e2420fed", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--57e8f8f1-4992-494e-b3c7-08ab3c29c2cd", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--781ed8c3-76ef-44ca-aa98-454892152d00", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--24cebf34-24bb-4fc3-a327-66e5fa15dd2d", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.542Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--2a07bd44-a33f-4f08-a2a6-a060c166fcfb", - "modified": "2021-01-06T18:30:55.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--f6de55e6-a492-45c5-ad95-f9a00b832a9d", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--b5e35ff6-2ea9-4d0f-b131-0f243f38bb6a", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--61ae1712-228b-4461-a417-5c9a0b42181e", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--7db3a587-173e-430e-88dd-1e7f343dde23", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--e1095415-de0c-4010-836d-3f1ece66ddf2", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--13d27254-e8ae-444a-803b-205cc838a988", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.543Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--511d2c5d-5d5c-4805-a238-6b7d3d33cd9a", - "modified": "2021-01-06T18:30:55.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.544Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:55.544Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.544Z", - "description": "Access Control Policy and Procedures, Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--d4de1719-a808-4723-b019-0d031c4a3711", - "modified": "2021-01-06T18:30:55.544Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e7e1e85c-880e-477f-9e3c-0cf4f5471804", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bd3c29ac-a4bf-41e6-be34-50322448241e", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d222bbcf-a83d-441e-a064-b7d143019afa", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--98b1ff19-f102-4c28-9026-2c432f8307b9", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a59ddd39-d885-4172-8002-a7f072be29db", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.545Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4c657d3a-0e0b-4c53-8b03-a2e20398ae47", - "modified": "2021-01-06T18:30:55.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--01f7f211-e7f7-457a-9841-6ec6117c7649", - "modified": "2021-01-06T18:30:55.546Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d9eea67f-f203-489d-a0a9-ec896314d16f", - "modified": "2021-01-06T18:30:55.546Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ab8f4931-46a5-4b09-be1c-b08cecbde487", - "modified": "2021-01-06T18:30:55.546Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.546Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9c2756b7-4b83-4cef-9ee5-5081378925bb", - "modified": "2021-01-06T18:30:55.546Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.547Z", - "description": "Boundary Protection", - "id": "relationship--63e7f8c0-33f2-47f6-a15d-8ae030f686e6", - "modified": "2021-01-06T18:30:55.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.549Z", - "description": "Continuous Monitoring", - "id": "relationship--de586ce6-f005-4bd3-8add-49bed729a58a", - "modified": "2021-01-06T18:30:55.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.550Z", - "description": "Information System Monitoring", - "id": "relationship--657b3634-0536-4e0f-bbd7-2d6b5b717b5d", - "modified": "2021-01-06T18:30:55.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.551Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--41383e6b-8a71-48a1-9b47-13692341fc90", - "modified": "2021-01-06T18:30:55.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.551Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e781835c-e298-40bb-bb47-57b484689db3", - "modified": "2021-01-06T18:30:55.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.553Z", - "description": "Information Flow Enforcement", - "id": "relationship--d2b833f6-4d9f-4160-979a-17dd60b9e415", - "modified": "2021-01-06T18:30:55.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.554Z", - "description": "Continuous Monitoring", - "id": "relationship--1a9a0ca2-015d-4b96-bf97-931b8667c048", - "modified": "2021-01-06T18:30:55.554Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.555Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e886b5ad-8936-4351-8af7-2292cc9eebe7", - "modified": "2021-01-06T18:30:55.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.555Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--00d9bb29-25ef-4ac9-9997-536df33491a1", - "modified": "2021-01-06T18:30:55.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.556Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--44344df7-46f5-4938-8c22-999cdcebaeaf", - "modified": "2021-01-06T18:30:55.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.557Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d5cccbb1-96db-4e48-9c78-7aefa582398e", - "modified": "2021-01-06T18:30:55.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.558Z", - "description": "Continuous Monitoring", - "id": "relationship--20c8b9ea-d8a4-40bb-afdc-db059fcc7d8f", - "modified": "2021-01-06T18:30:55.558Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.559Z", - "description": "Information System Monitoring", - "id": "relationship--dcafa7e3-bf91-481e-91f3-0a403208d438", - "modified": "2021-01-06T18:30:55.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--1cf82f32-e00d-4677-af7b-5bc918a22aac", - "modified": "2021-01-06T18:30:55.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:55.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.560Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--8e3b1e5f-49a1-4df9-8b60-ee6ed7ffad51", - "modified": "2021-01-06T18:30:55.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--5c72f17e-7ba2-4020-bd7e-4056c097de38", - "modified": "2021-01-06T18:30:55.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--a840dd6e-5a69-4a1d-be87-3be44ed59acd", - "modified": "2021-01-06T18:30:55.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--eaf1a302-9984-488b-bd09-86a46a15884e", - "modified": "2021-01-06T18:30:55.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.561Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--cf03827b-411f-4656-862c-e1696c04110c", - "modified": "2021-01-06T18:30:55.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.562Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ccf6b20d-404e-43b1-8f22-e1f7cf4e12bb", - "modified": "2021-01-06T18:30:55.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.562Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3ec728b4-a724-417f-b6b8-5989c547ac87", - "modified": "2021-01-06T18:30:55.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.563Z", - "description": "Continuous Monitoring", - "id": "relationship--88db226a-0e93-450b-af8f-18cb0c92ad3c", - "modified": "2021-01-06T18:30:55.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.564Z", - "description": "Information System Monitoring", - "id": "relationship--adb20c35-6fdd-468a-8cb1-67bd640ca676", - "modified": "2021-01-06T18:30:55.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--bc5231e0-8d71-499c-a4c3-d064e98ae966", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--77269680-d054-4d96-a468-58e63cee4662", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.565Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--cdfc512e-21ec-4904-a3f7-4ab362f44ca1", - "modified": "2021-01-06T18:30:55.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.566Z", - "description": "Authenticator Management", - "id": "relationship--071251a2-0d60-4cc9-90f5-2d46e6e37eed", - "modified": "2021-01-06T18:30:55.566Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.568Z", - "description": "Account Mangement", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:55.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.569Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--3d76d606-bbcc-48bb-986d-376fc9552032", - "modified": "2021-01-06T18:30:55.569Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--ffa7f32c-d8a5-4477-825f-e8fb3ae24ec8", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--d9008ebe-1d09-4084-9e79-7516bd129de9", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--2500b7a6-bdfd-4d30-bbb4-1607df46edab", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--76e1e539-538c-485b-bf62-5fcf527ac6e4", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--e1dc4a7f-ed75-4ee6-a596-5c5f92f262ef", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7e354cba-6dc0-4932-8f95-24220c3d83bb", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.570Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--08f3ca6b-278c-4fcf-8578-d0c2a66e8db6", - "modified": "2021-01-06T18:30:55.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.571Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:55.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", - "id": "relationship--c7568659-4f57-4435-b6b4-5f05550f0e04", - "modified": "2021-01-06T18:30:55.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", - "id": "relationship--f5e6e311-25de-4411-a979-25fee80b117f", - "modified": "2021-01-06T18:30:55.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.572Z", - "description": "Continuous Monitoring", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:55.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", - "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:55.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", - "id": "relationship--4c4d3b01-dcc7-4d83-9e36-36a787475b3e", - "modified": "2021-01-06T18:30:55.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.573Z", - "description": "Information System Monitoring", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:55.573Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.574Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--32955df9-6cc5-4e78-bf0a-d9828e23d344", - "modified": "2021-01-06T18:30:55.574Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.575Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--62174f33-6221-430c-91e0-18881c10f648", - "modified": "2021-01-06T18:30:55.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.575Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--514d7706-feb6-4c80-bec1-2ca9f5ea7919", - "modified": "2021-01-06T18:30:55.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.576Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:55.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.577Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9dd7b879-5cd1-411e-b60c-9f67ff2a42a7", - "modified": "2021-01-06T18:30:55.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.577Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:55.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.578Z", - "description": "Account Mangement", - "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:55.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--2f8440ce-f4da-41ba-a5d6-37992543a99c", - "modified": "2021-01-06T18:30:55.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--f5aba3e4-a98e-4423-a28c-55cd13054a97", - "modified": "2021-01-06T18:30:55.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.579Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--b5616433-ca79-4ae8-bd41-9d8c44be649c", - "modified": "2021-01-06T18:30:55.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.580Z", - "description": "Continuous Monitoring", - "id": "relationship--b4b63a06-a527-4404-ad97-3136e5f99dba", - "modified": "2021-01-06T18:30:55.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.581Z", - "description": "Information System Monitoring", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:55.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.582Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:55.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.582Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:55.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.583Z", - "description": "Access Control Policy and Procedures", - "id": "relationship--a6101bff-5269-4138-9eb0-ae06bc21b3bb", - "modified": "2021-01-06T18:30:55.583Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.584Z", - "description": "Access Control Policy and Procedures", - "id": "relationship--534f4c49-12d9-45ba-afb0-7696c5eaee07", - "modified": "2021-01-06T18:30:55.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.584Z", - "description": "Access Control Policy and Procedures", - "id": "relationship--d7f56c13-6c68-46fe-b0fa-a658fdaddcd7", - "modified": "2021-01-06T18:30:55.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.585Z", - "description": "Continuous Monitoring", - "id": "relationship--a5de5918-6eaa-4a8a-bb2d-75adb9c6f517", - "modified": "2021-01-06T18:30:55.585Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.586Z", - "description": "Continuous Monitoring", - "id": "relationship--61f226af-f878-4c13-ac89-ace930b20ad6", - "modified": "2021-01-06T18:30:55.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.586Z", - "description": "Continuous Monitoring", - "id": "relationship--5dc0841a-1ea6-43b5-9f6c-5b036516f595", - "modified": "2021-01-06T18:30:55.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", - "id": "relationship--850f67e4-eceb-43c0-969d-eb9ae5c58801", - "modified": "2021-01-06T18:30:55.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", - "id": "relationship--28fedaa6-befc-4753-9755-f443a4c1f218", - "modified": "2021-01-06T18:30:55.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.587Z", - "description": "Information System Monitoring", - "id": "relationship--7c60d2b5-a4b2-4ff1-999a-0a20e4467f64", - "modified": "2021-01-06T18:30:55.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", - "id": "relationship--0805d89e-8b3e-455b-ac15-1236ebb9323f", - "modified": "2021-01-06T18:30:55.588Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", - "id": "relationship--e73da978-37ea-4e0d-af21-d1d80a698494", - "modified": "2021-01-06T18:30:55.588Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.588Z", - "description": "Authenticator Management", - "id": "relationship--d57b106c-b809-4365-80e1-f1f6b37ca16a", - "modified": "2021-01-06T18:30:55.588Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0c93d061-43e0-407e-bf44-15f8ae345cf4", - "modified": "2021-01-06T18:30:55.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f19df5b1-a0ad-4570-a996-18a03233f646", - "modified": "2021-01-06T18:30:55.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.589Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7801cb95-fa03-43c9-9817-f53988e2a944", - "modified": "2021-01-06T18:30:55.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c38f05bb-49c6-419c-9e14-3755a3983255", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8b7b94f3-27fa-4798-aa75-14cee788060a", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d1fb6180-3455-43d2-a620-f10be54a9d46", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8e99b55b-bb7d-48fc-9658-21dd2c06bd15", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.590Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1754bfa8-9fcc-4f56-ae5e-2db6b31654e5", - "modified": "2021-01-06T18:30:55.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.591Z", - "description": "Continuous Monitoring", - "id": "relationship--eac20450-8fa9-4d6f-a142-b46dca476f89", - "modified": "2021-01-06T18:30:55.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", - "id": "relationship--186849df-68b4-486d-b123-2d946b58ae95", - "modified": "2021-01-06T18:30:55.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", - "id": "relationship--219bb9fb-c1e7-484c-8edc-1bae0ee2330b", - "modified": "2021-01-06T18:30:55.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.592Z", - "description": "Continuous Monitoring", - "id": "relationship--f3512446-d754-4c3b-b663-b859184270ee", - "modified": "2021-01-06T18:30:55.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2dce911e-892e-4b00-909a-f900ba8c3ac3", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3cb42d40-33da-4e60-8ea9-81ad2d1af020", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6401a018-cfa9-41e7-8e43-ae2fa9b91ca2", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--eba33dcd-b96e-4ff2-9d57-20482d48c6fc", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.593Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--81d97f1f-556b-438c-b580-371db457ce8a", - "modified": "2021-01-06T18:30:55.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.594Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a9a4bc11-aaf2-4b9a-bd7d-868a37fc652b", - "modified": "2021-01-06T18:30:55.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.594Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2613da88-0ef7-4661-aebc-5dec9d776061", - "modified": "2021-01-06T18:30:55.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--651364df-6ef9-4d6e-a9a3-49fa2f14b513", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--457c36c9-a4bb-4306-b959-80c90dac9ed9", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--ad357f53-e123-41bf-ac7c-3a3ac86b7205", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--5d27150b-5def-43a7-8232-fe76ac6fdb68", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--4e118dfd-6da9-4b02-9d87-68c93db121b7", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--cd64a8a5-f8ab-4df5-b3d1-6a9a2f8026f7", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.595Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--0375056a-084e-4490-9c7b-1107c1b1951b", - "modified": "2021-01-06T18:30:55.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.596Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--38c64374-b45c-4706-ace1-175d6ea03309", - "modified": "2021-01-06T18:30:55.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.596Z", - "description": "Authenticator Management, ", - "id": "relationship--a237da69-b656-4279-a5f8-0b2af22bc32a", - "modified": "2021-01-06T18:30:55.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", - "id": "relationship--98de23fb-caad-4e24-a6b4-762c16d12bf1", - "modified": "2021-01-06T18:30:55.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", - "id": "relationship--b020c338-3637-4543-96c7-5aa6572e6c0f", - "modified": "2021-01-06T18:30:55.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.597Z", - "description": "Authenticator Management, ", - "id": "relationship--db295f3f-c1ae-485f-a44b-5b97a8334776", - "modified": "2021-01-06T18:30:55.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.598Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:55.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.598Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:55.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.599Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--597c5405-f448-4347-b9a5-57afe34dd36d", - "modified": "2021-01-06T18:30:55.599Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.599Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--f53f01bf-47d6-4e52-ad2e-f4f5522a283f", - "modified": "2021-01-06T18:30:55.599Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.601Z", - "description": "Remote Access", - "id": "relationship--9fd4d561-a38f-47a4-a99f-2a7af10c75e6", - "modified": "2021-01-06T18:30:55.601Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.602Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--bf10402a-9da0-4d94-9a9b-9817e95af199", - "modified": "2021-01-06T18:30:55.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.602Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--2026f4a3-401c-4017-89ae-4a2ee866ff2a", - "modified": "2021-01-06T18:30:55.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.603Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:55.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.604Z", - "description": "Continuous Monitoring", - "id": "relationship--52ed4c6a-fc9e-48fd-9c8d-7a834a824742", - "modified": "2021-01-06T18:30:55.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.605Z", - "description": "Continuous Monitoring", - "id": "relationship--e6a92422-115d-448f-98e7-55e4d0c9c194", - "modified": "2021-01-06T18:30:55.605Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.606Z", - "description": "Information System Monitoring", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:55.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.606Z", - "description": "Information System Monitoring", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:55.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.608Z", - "description": "Boundary Protection", - "id": "relationship--538ebdad-5685-4a0f-9ed8-785d853b5e52", - "modified": "2021-01-06T18:30:55.608Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.609Z", - "description": "Boundary Protection", - "id": "relationship--d7ff194b-c3c3-4706-8140-2eb382850d35", - "modified": "2021-01-06T18:30:55.609Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.610Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:55.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.611Z", - "description": "Protection of Information at Rest", - "id": "relationship--d11e1e64-3228-4162-921f-7820e53f6cbe", - "modified": "2021-01-06T18:30:55.611Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.612Z", - "description": "Protection of Information at Rest", - "id": "relationship--87065225-f919-47e0-be44-0f3f9837017e", - "modified": "2021-01-06T18:30:55.612Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.613Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:55.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.613Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:55.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:55.615Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:55.615Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.615Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:55.615Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.616Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:55.616Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.616Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:55.616Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.617Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:55.617Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.618Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:55.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.621Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:55.621Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.622Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:55.622Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.622Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:55.622Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.624Z", - "description": "Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:55.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.624Z", - "description": "Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:55.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.625Z", - "description": "Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:55.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.626Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:55.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.626Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:55.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.627Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:55.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.628Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--8b569179-cc03-4e2d-ac21-949c9c373bda", - "modified": "2021-01-06T18:30:55.628Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--44870207-7bd9-463d-a4ab-ec25a41b4e5d", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.629Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a832c44f-53eb-410f-85c6-ea153a382a20", - "modified": "2021-01-06T18:30:55.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4ce104ee-0a69-4298-b5a9-d6422f4a1012", - "modified": "2021-01-06T18:30:55.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f1ce6924-6ffd-45dc-b1fc-6e5c06fe91a2", - "modified": "2021-01-06T18:30:55.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.630Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ca139f91-dd06-4998-a21b-3b1ffc4a62d1", - "modified": "2021-01-06T18:30:55.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.631Z", - "description": "OS Monitoring", - "id": "relationship--277d4d71-8e28-43d5-8409-bf800e0408ce", - "modified": "2021-01-06T18:30:55.631Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.632Z", - "description": "OS Monitoring", - "id": "relationship--0499d951-e55b-433d-ab92-4fb9ab216424", - "modified": "2021-01-06T18:30:55.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.634Z", - "description": "Wireless Access", - "id": "relationship--8dafdaae-0806-4273-8d74-c65c6b95a5a7", - "modified": "2021-01-06T18:30:55.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.635Z", - "description": "Wireless Access", - "id": "relationship--c4c68d28-a8c7-4989-9c14-77d2a4d3dcd6", - "modified": "2021-01-06T18:30:55.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--73b5fba1-38ef-4d20-a908-ba9372e7ce04", - "modified": "2021-01-06T18:30:55.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--40ac0d82-1b9d-451c-bf77-729c05a1f07a", - "modified": "2021-01-06T18:30:55.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--55b134d2-9509-4734-bf3f-38ee0c533a99", - "modified": "2021-01-06T18:30:55.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.636Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e6c87399-7580-4338-8e12-7459719deea3", - "modified": "2021-01-06T18:30:55.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.638Z", - "description": "OS Monitoring", - "id": "relationship--d19c0cb1-8365-4207-a0c2-10fea0da7ecb", - "modified": "2021-01-06T18:30:55.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.638Z", - "description": "OS Monitoring", - "id": "relationship--2f183400-c518-4358-ba87-4b3ef6b44ab7", - "modified": "2021-01-06T18:30:55.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.639Z", - "description": "Session Management", - "id": "relationship--e545af9d-eff3-4969-97d0-2edfe1e3445a", - "modified": "2021-01-06T18:30:55.639Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.639Z", - "description": "Session Management", - "id": "relationship--23d2811b-707e-4f2f-a2f0-33c7947b1a2c", - "modified": "2021-01-06T18:30:55.639Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.640Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.640Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4ae5ddd8-b6db-488e-a829-5f879285c75a", - "modified": "2021-01-06T18:30:55.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.641Z", - "description": "OS Monitoring", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:55.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.642Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:55.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9a06521d-0107-429e-892a-a6e78b746a6d", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--01986791-a78d-43f8-8b9c-08498414885d", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.643Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--fbe858c9-8509-44d3-b200-dcd8a50ca881", - "modified": "2021-01-06T18:30:55.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", - "id": "relationship--d9727fa6-ba00-4d77-b1c5-bc96f8c0920c", - "modified": "2021-01-06T18:30:55.644Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", - "id": "relationship--158b4fc1-2622-49e2-a135-2d088025e6fa", - "modified": "2021-01-06T18:30:55.644Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.644Z", - "description": "OS Monitoring", - "id": "relationship--1c2e5c03-cff0-403d-a96c-434f85560a1c", - "modified": "2021-01-06T18:30:55.644Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.645Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2aa846ed-a6b9-4f45-8875-9c1eab58fa39", - "modified": "2021-01-06T18:30:55.645Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--bdc2d11a-1fe5-42e1-b616-1cba1c998190", - "modified": "2021-01-06T18:30:55.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--576ac52c-3904-42bc-b57e-99a4f9561a36", - "modified": "2021-01-06T18:30:55.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--0bdb4507-6620-4b72-92d7-26dacd43290c", - "modified": "2021-01-06T18:30:55.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--aef2e682-b12c-40fc-956e-b3145fb07917", - "modified": "2021-01-06T18:30:55.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.646Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e4197679-9762-4a84-8fa1-885950315e06", - "modified": "2021-01-06T18:30:55.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", - "id": "relationship--f2c240ab-173b-431a-b3c1-0ebf7c181cde", - "modified": "2021-01-06T18:30:55.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", - "id": "relationship--b83ff363-d22a-4e7a-a29c-02b3dc79fe7c", - "modified": "2021-01-06T18:30:55.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.647Z", - "description": "OS Monitoring", - "id": "relationship--f299fb0e-bd84-4baa-9086-8587b9b28131", - "modified": "2021-01-06T18:30:55.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.649Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--fc241480-8869-40b0-975e-fd724ae56560", - "modified": "2021-01-06T18:30:55.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.649Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--67a335c5-7c20-4ba3-8ac5-ed60b2a6610f", - "modified": "2021-01-06T18:30:55.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.650Z", - "description": "Media Use", - "id": "relationship--f2fd1cb5-45c7-4736-96fa-38105170a250", - "modified": "2021-01-06T18:30:55.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.652Z", - "description": "OS Monitoring", - "id": "relationship--cc15a9b8-e9e7-4bc4-8f79-d1e005cb9958", - "modified": "2021-01-06T18:30:55.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.653Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.653Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--39f5239f-d28b-4113-aaae-44101d44fcc7", - "modified": "2021-01-06T18:30:55.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.654Z", - "description": "OS Monitoring", - "id": "relationship--7da75d69-fc0b-40b0-bc99-623d698a7113", - "modified": "2021-01-06T18:30:55.654Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.655Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a393dd6d-9a6b-456b-a351-f167efcb712b", - "modified": "2021-01-06T18:30:55.655Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.655Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6406890c-c40f-437d-a93a-eb201d40a074", - "modified": "2021-01-06T18:30:55.655Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.656Z", - "description": "OS Monitoring", - "id": "relationship--143ea734-657a-402b-8045-883fff88ccb1", - "modified": "2021-01-06T18:30:55.656Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.657Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.657Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.658Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--752fd115-c5b9-4ec1-80c7-ad673695e10e", - "modified": "2021-01-06T18:30:55.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.658Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4e9cb538-86d5-482c-827d-dcb3e2019867", - "modified": "2021-01-06T18:30:55.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.659Z", - "description": "OS Monitoring", - "id": "relationship--50855def-4ee1-492a-8b26-567206f7868a", - "modified": "2021-01-06T18:30:55.659Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.659Z", - "description": "OS Monitoring", - "id": "relationship--197945dd-67fa-4a30-91b7-c29ca49bd55d", - "modified": "2021-01-06T18:30:55.659Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.660Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4a6c7cb9-0797-4736-bb06-6d5ef7ade272", - "modified": "2021-01-06T18:30:55.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.660Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9c47fe7d-cd84-4f20-ad05-84d73f683aca", - "modified": "2021-01-06T18:30:55.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.661Z", - "description": "OS Monitoring", - "id": "relationship--b34f6913-c617-4976-ad0c-cdd82b50d199", - "modified": "2021-01-06T18:30:55.661Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.662Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4ff00de4-192e-435d-937e-9eba29a30f60", - "modified": "2021-01-06T18:30:55.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.662Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b958d134-787a-42ee-945a-19b1265fd121", - "modified": "2021-01-06T18:30:55.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.663Z", - "description": "OS Monitoring", - "id": "relationship--30135648-de30-4879-af1f-e02862359e9d", - "modified": "2021-01-06T18:30:55.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.664Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.664Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--d23cfd21-3a6a-4b6b-a566-1b93c4f5c78c", - "modified": "2021-01-06T18:30:55.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.665Z", - "description": "OS Monitoring", - "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:55.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.666Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9341deda-0818-4af1-8390-1d3175d7117b", - "modified": "2021-01-06T18:30:55.666Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.667Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--469aed6b-d464-4aaf-a41f-2cf81cdcdb5f", - "modified": "2021-01-06T18:30:55.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.668Z", - "description": "OS Monitoring", - "id": "relationship--86b898d2-239c-4208-8a40-17f480b52bf9", - "modified": "2021-01-06T18:30:55.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.669Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:55.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.669Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--97e5ef9d-33a5-447a-98c6-0b387b5f699e", - "modified": "2021-01-06T18:30:55.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b65beccd-5885-43c4-b334-3d021abe2839", - "modified": "2021-01-06T18:30:55.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:55.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--39971e26-d930-42ea-9bc5-0848f4f43b47", - "modified": "2021-01-06T18:30:55.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.670Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7d83f67f-9584-4fa0-a80e-6941395b2890", - "modified": "2021-01-06T18:30:55.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.671Z", - "description": "OS Monitoring", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:55.671Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.672Z", - "description": "OS Monitoring", - "id": "relationship--ed52f462-b9db-4e91-b77c-3a0f3417d6b2", - "modified": "2021-01-06T18:30:55.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.672Z", - "description": "OS Monitoring", - "id": "relationship--8453db9c-6181-4946-9b7a-70d835bc1e60", - "modified": "2021-01-06T18:30:55.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2c671f6b-94ea-43c6-804f-e290df41a74c", - "modified": "2021-01-06T18:30:55.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:55.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7d16a9fe-46e3-48c1-a0f0-230771560409", - "modified": "2021-01-06T18:30:55.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.673Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:55.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.675Z", - "description": "Information at Rest Protection", - "id": "relationship--6ce0f9df-ded1-4475-ac0c-6bfffa151773", - "modified": "2021-01-06T18:30:55.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.675Z", - "description": "Information at Rest Protection", - "id": "relationship--500ab315-a73e-4ce4-9324-b3618e2347b8", - "modified": "2021-01-06T18:30:55.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.676Z", - "description": "OS Monitoring", - "id": "relationship--19bc92c2-915b-4e0b-9059-40278e68b125", - "modified": "2021-01-06T18:30:55.676Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.676Z", - "description": "OS Monitoring", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:55.676Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9a929e83-edb6-4684-8ad3-973c49c515f0", - "modified": "2021-01-06T18:30:55.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--404ac666-65d7-43b8-bf9d-f999309ec164", - "modified": "2021-01-06T18:30:55.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--5e39bde1-36a3-4ce5-8364-60dcdaec71e6", - "modified": "2021-01-06T18:30:55.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.677Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6064d190-3691-4828-bf84-c6aacc445a98", - "modified": "2021-01-06T18:30:55.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.678Z", - "description": "OS Monitoring", - "id": "relationship--ff69e895-8ae0-416d-9a2a-ac336efac6c7", - "modified": "2021-01-06T18:30:55.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.678Z", - "description": "OS Monitoring", - "id": "relationship--2f6a5e3f-a3fa-4a7d-b344-ec1bc9cb6e88", - "modified": "2021-01-06T18:30:55.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.679Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a00804ac-d0cd-484d-addd-31fcb0c3a9bb", - "modified": "2021-01-06T18:30:55.679Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9f74e402-1373-450c-b77c-b6a3f78e51b5", - "modified": "2021-01-06T18:30:55.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a9d2cfdc-a416-4eee-b1c1-982dd6bda10e", - "modified": "2021-01-06T18:30:55.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.680Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--477d3b14-0cab-48c4-adb2-b39cc2c3317b", - "modified": "2021-01-06T18:30:55.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.681Z", - "description": "OS Monitoring", - "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:55.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.681Z", - "description": "OS Monitoring", - "id": "relationship--8b147ba8-5f50-4bd3-9364-b8b3be2fffe2", - "modified": "2021-01-06T18:30:55.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.682Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--acee6bd3-24a4-4fc0-961c-dca4e94b3df1", - "modified": "2021-01-06T18:30:55.682Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.682Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--625957df-b139-4543-a6f6-b55e3caf1ac1", - "modified": "2021-01-06T18:30:55.682Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.684Z", - "description": "OS Monitoring", - "id": "relationship--e5543133-a383-4f77-ae50-a1f0ae66a43e", - "modified": "2021-01-06T18:30:55.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.685Z", - "description": "Session Management", - "id": "relationship--c3658e2e-1308-4451-bfe2-0d4f5c201d29", - "modified": "2021-01-06T18:30:55.685Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.686Z", - "description": "Session Management", - "id": "relationship--336a4d09-48b5-439f-90c9-0e6cf472f6a4", - "modified": "2021-01-06T18:30:55.686Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.687Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.687Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--195ffbec-4120-4b3f-9bc5-db73f77dc564", - "modified": "2021-01-06T18:30:55.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.688Z", - "description": "OS Monitoring", - "id": "relationship--34515ff7-2ec4-435a-b8e1-a6c8cf9ac0f1", - "modified": "2021-01-06T18:30:55.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.689Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9927074b-0451-48d5-be7c-07ef333c92b2", - "modified": "2021-01-06T18:30:55.689Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.689Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f3564029-0093-4361-a9f1-aef2e67f3c5b", - "modified": "2021-01-06T18:30:55.689Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.690Z", - "description": "OS Monitoring", - "id": "relationship--b0ac7c56-6db4-48fc-bd7b-8c61be44b013", - "modified": "2021-01-06T18:30:55.690Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.691Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--9523230b-3e67-49a9-83d5-c54811b8b4b8", - "modified": "2021-01-06T18:30:55.691Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--eda4a8c4-2e31-4e55-9532-061d31fe2f3d", - "modified": "2021-01-06T18:30:55.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--205bb0c4-2cd9-4a6a-a38f-2826a366f068", - "modified": "2021-01-06T18:30:55.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--14b8eb4d-b915-4d5c-a86e-84b5a25cc70c", - "modified": "2021-01-06T18:30:55.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--e4d979f4-d4da-4364-b813-857c55ad015a", - "modified": "2021-01-06T18:30:55.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.692Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--1a8b4b2a-95e3-49b9-9796-0defc137d698", - "modified": "2021-01-06T18:30:55.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--f2c17964-4cc5-4b47-8241-0777fb73849b", - "modified": "2021-01-06T18:30:55.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--a00e0723-9fef-4d96-8fe3-bb6ef4236f8b", - "modified": "2021-01-06T18:30:55.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.693Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--548a3181-9bdc-459d-853b-3c84dcbb7894", - "modified": "2021-01-06T18:30:55.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", - "id": "relationship--e253f31a-a682-43d8-b931-66b7ef7d4c70", - "modified": "2021-01-06T18:30:55.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", - "id": "relationship--d13f9113-b8f3-413d-b60d-c9e07bd191af", - "modified": "2021-01-06T18:30:55.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.695Z", - "description": "Distributed Storage and Processing", - "id": "relationship--aeb227b6-13e9-40e0-8011-5a089e041b26", - "modified": "2021-01-06T18:30:55.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", - "id": "relationship--e4c0ca75-cf7b-4069-929c-dbd584a9dcaa", - "modified": "2021-01-06T18:30:55.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", - "id": "relationship--00725ce3-6aa2-4e9d-81b6-a235f03da7af", - "modified": "2021-01-06T18:30:55.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.696Z", - "description": "Information Fragmentation", - "id": "relationship--08d3cbff-0232-4f6e-816b-16cc0a26cd4e", - "modified": "2021-01-06T18:30:55.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.697Z", - "description": "Remote Access Management", - "id": "relationship--cf127856-ae24-46d0-812b-3efcc5c255fa", - "modified": "2021-01-06T18:30:55.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.698Z", - "description": "Configuration Settings", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.700Z", - "description": "Certificate Management", - "id": "relationship--3d0e00b7-2911-466e-a00b-e5bab5e65fd1", - "modified": "2021-01-06T18:30:55.700Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.700Z", - "description": "Certificate Management", - "id": "relationship--bb528a4c-1d0a-4e53-a5db-b8edd5cf032d", - "modified": "2021-01-06T18:30:55.700Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6e561e80-7062-4695-ab3b-03e631acbfc1", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.701Z", - "description": "Information Fragmentation", - "id": "relationship--6a73899d-4a49-4cb3-8c14-471673fb978f", - "modified": "2021-01-06T18:30:55.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--e9e0a227-225f-4279-b46f-cd80c31d52d6", - "modified": "2021-01-06T18:30:55.703Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--72d758f5-8e18-4c83-b383-850a526e3c1d", - "modified": "2021-01-06T18:30:55.703Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.703Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--f963ef43-0761-4c9b-a10b-4a5beb0c24f7", - "modified": "2021-01-06T18:30:55.703Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.704Z", - "description": "Distributed Storage", - "id": "relationship--62c5fe71-8ede-4640-a965-d5c242926fbd", - "modified": "2021-01-06T18:30:55.704Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.705Z", - "description": "Information Fragmentation", - "id": "relationship--adcc6eba-5fd3-4eb9-8c0f-c5f4bb5afcae", - "modified": "2021-01-06T18:30:55.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--f45e1cb0-b478-4086-88fa-3410324dbd7c", - "modified": "2021-01-06T18:30:55.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--0bf3870a-c597-4bd0-aa22-305bc7af56bf", - "modified": "2021-01-06T18:30:55.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:55.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.706Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--fa667e8a-500b-4fb8-8732-4ac2ddbafd4d", - "modified": "2021-01-06T18:30:55.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.707Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--483aaab3-bdca-4f9a-bb66-bc5084025940", - "modified": "2021-01-06T18:30:55.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.707Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--19e2ed75-dfd9-42f4-bb05-a1200891b673", - "modified": "2021-01-06T18:30:55.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--419c8945-5d67-4461-a076-c6e61f7e9548", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--ff3ca4b7-e58d-4b86-91dc-1165f1cd0566", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--aff69fe2-2611-47a3-96d0-da84d49f5001", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--c635a10b-6503-452a-a97d-ee74ebb8ce81", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--107b9e36-2de2-4528-9495-c7fee3f11da0", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.708Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--5ab4874e-5ad7-448e-a9d6-b9b9e63b4214", - "modified": "2021-01-06T18:30:55.708Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.709Z", - "description": "Distributed Storage", - "id": "relationship--6bc33803-59b6-41d3-9962-9fb408ab9e51", - "modified": "2021-01-06T18:30:55.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.710Z", - "description": "Distributed Storage", - "id": "relationship--e854ef3b-8a99-4aa8-a922-4f1b67573e60", - "modified": "2021-01-06T18:30:55.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.711Z", - "description": "Information Fragmentation", - "id": "relationship--ad15cecb-64ad-4c8b-b6e7-9b29d2e02ccd", - "modified": "2021-01-06T18:30:55.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.711Z", - "description": "Information Fragmentation", - "id": "relationship--9adb14da-d6ae-4953-8323-df9839ba237e", - "modified": "2021-01-06T18:30:55.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", - "id": "relationship--bcc994b0-b1cb-474f-8c05-4d284fb284d5", - "modified": "2021-01-06T18:30:55.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", - "id": "relationship--190b1b8e-5564-4ee5-8c6f-b230763b9136", - "modified": "2021-01-06T18:30:55.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.712Z", - "description": "Information Flow Enforcement", - "id": "relationship--20c5b01b-54ab-4889-b5ce-22072e38e6fb", - "modified": "2021-01-06T18:30:55.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.713Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:55.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.713Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:55.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--259ce454-0ab3-4f93-a553-d64d3ca583ef", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4ae5ddd8-b6db-488e-a829-5f879285c75a", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.714Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--432ac5cd-229c-457c-ac6e-2c03343d7771", - "modified": "2021-01-06T18:30:55.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", - "id": "relationship--92aeed10-428d-4da2-bef6-6c002a3fbefc", - "modified": "2021-01-06T18:30:55.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7d869253-d06e-40ee-8466-5da197e157ec", - "modified": "2021-01-06T18:30:55.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", - "id": "relationship--17adbbfa-1728-4803-a8ab-09566adad8e2", - "modified": "2021-01-06T18:30:55.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.715Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7c737d8a-38be-4d9b-bfe8-a81a28f3c38d", - "modified": "2021-01-06T18:30:55.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.716Z", - "description": "Subnetworks, Access Control", - "id": "relationship--994574d3-ba05-4150-8136-3c41bd10d7e7", - "modified": "2021-01-06T18:30:55.716Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.716Z", - "description": "Subnetworks, Access Control", - "id": "relationship--46bd17a7-5251-47dc-ad51-a9ee4f6b331b", - "modified": "2021-01-06T18:30:55.716Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.718Z", - "description": "Information Flow Enforcement", - "id": "relationship--f3824fe4-c1f2-4704-b346-a43185f6d0ff", - "modified": "2021-01-06T18:30:55.718Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.719Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:55.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.719Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c5fc1e05-e455-4029-9199-f108cb4f0093", - "modified": "2021-01-06T18:30:55.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.720Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b72ff145-0b06-4c79-8019-28efc0623e3d", - "modified": "2021-01-06T18:30:55.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.720Z", - "description": "Subnetworks, Access Control", - "id": "relationship--30353949-dbdd-4823-9164-e3df0ff16269", - "modified": "2021-01-06T18:30:55.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", - "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:55.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", - "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:55.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", - "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:55.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.722Z", - "description": "Information Flow Enforcement", - "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:55.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:55.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:55.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:55.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:55.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.723Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:55.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:55.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:55.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.724Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:55.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--0b7f31e8-ccc1-4bb6-b589-7a1183afaef6", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.725Z", - "description": "Subnetworks, Access Control", - "id": "relationship--21638697-6d6c-4825-bd71-f46f61a22076", - "modified": "2021-01-06T18:30:55.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.726Z", - "description": "Subnetworks, Access Control", - "id": "relationship--157187e5-1c4d-4698-a2d0-9455b5a7aa9e", - "modified": "2021-01-06T18:30:55.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.726Z", - "description": "Subnetworks, Access Control", - "id": "relationship--d98dc89f-2684-4da7-8be6-776f6a6d5e02", - "modified": "2021-01-06T18:30:55.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.727Z", - "description": "Information Flow Enforcement", - "id": "relationship--f3be0b42-fcb3-4169-97a2-944f810c4fec", - "modified": "2021-01-06T18:30:55.727Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.728Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b9a905e4-411f-41c1-8960-fb5492c79277", - "modified": "2021-01-06T18:30:55.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.728Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--227c3e79-14fa-4225-b21f-a204734deb33", - "modified": "2021-01-06T18:30:55.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.729Z", - "description": "Subnetworks, Access Control", - "id": "relationship--3b70cebc-a699-41db-b063-f18d1b31e050", - "modified": "2021-01-06T18:30:55.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.729Z", - "description": "Subnetworks, Access Control", - "id": "relationship--fc357a0f-dba2-4273-a45a-f00ab7152d9b", - "modified": "2021-01-06T18:30:55.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.730Z", - "description": "Information Flow Enforcement", - "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:55.730Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.731Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:55.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.731Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:55.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.732Z", - "description": "Subnetworks, Access Control", - "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:55.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.734Z", - "description": "Information Flow Enforcement", - "id": "relationship--c78c6616-a1f6-4bd9-bbf5-caf26ddd1e4d", - "modified": "2021-01-06T18:30:55.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.734Z", - "description": "Information Flow Enforcement", - "id": "relationship--9af26252-d435-4a7b-b89e-eb54003b7996", - "modified": "2021-01-06T18:30:55.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.735Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--6862ef3a-aed1-40f1-9abe-e65626b04121", - "modified": "2021-01-06T18:30:55.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c250c400-ea9a-48f0-9e0f-6548042c6f59", - "modified": "2021-01-06T18:30:55.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--39f5239f-d28b-4113-aaae-44101d44fcc7", - "modified": "2021-01-06T18:30:55.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.736Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--502e08c1-0123-4393-b65b-c1ffc8a8b048", - "modified": "2021-01-06T18:30:55.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", - "id": "relationship--cecfbd84-d786-4c61-878b-05c731e2d581", - "modified": "2021-01-06T18:30:55.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7c8d01bf-9326-4247-8195-0c957c6e6b3e", - "modified": "2021-01-06T18:30:55.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", - "id": "relationship--310e3cc0-b732-4f91-bc37-6113c107dae0", - "modified": "2021-01-06T18:30:55.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.737Z", - "description": "Subnetworks, Access Control", - "id": "relationship--4519a14c-9578-4c77-a1ab-d04664392ed9", - "modified": "2021-01-06T18:30:55.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.738Z", - "description": "Information Flow Enforcement", - "id": "relationship--42c3015d-ac55-4f84-bb0a-b77a98c6863b", - "modified": "2021-01-06T18:30:55.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.739Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b1c6f677-e100-47e1-9da7-bd5927c45ed1", - "modified": "2021-01-06T18:30:55.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.739Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--bc57be28-9417-42a4-95e5-a2c062696649", - "modified": "2021-01-06T18:30:55.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.740Z", - "description": "Subnetworks, Access Control", - "id": "relationship--82e13eb9-a107-414f-b3c8-c919e234e972", - "modified": "2021-01-06T18:30:55.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.740Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f1a6f368-a756-4c76-9bbe-a149ba5d7b48", - "modified": "2021-01-06T18:30:55.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.741Z", - "description": "Information Flow Enforcement", - "id": "relationship--5871402a-0874-4b06-a208-d047f112d67a", - "modified": "2021-01-06T18:30:55.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.742Z", - "description": "Information Flow Enforcement", - "id": "relationship--efa8a43d-6183-49ba-a751-bddb861b7c8c", - "modified": "2021-01-06T18:30:55.742Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.742Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6ce0435-ceb1-417c-a287-b07322efac27", - "modified": "2021-01-06T18:30:55.742Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--67643fa8-d041-437b-92bf-bcd6298897e9", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--89cdac42-94ae-4df0-9953-5e640584cd41", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--896ca57d-125a-4150-87ba-3f82bd98c632", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--3ecabc44-abe1-4d97-bf6a-59ca26da6259", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--752fd115-c5b9-4ec1-80c7-ad673695e10e", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.743Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4e9cb538-86d5-482c-827d-dcb3e2019867", - "modified": "2021-01-06T18:30:55.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", - "id": "relationship--3359f32d-4657-4d93-bc10-541c8dcd5aa1", - "modified": "2021-01-06T18:30:55.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", - "id": "relationship--16f1a6d6-4270-4467-986a-888cd223bd64", - "modified": "2021-01-06T18:30:55.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", - "id": "relationship--6c4c41aa-3354-484b-aae3-119cb2855383", - "modified": "2021-01-06T18:30:55.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.744Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b0fea36e-9186-40dc-9f3a-ece9db5d0c75", - "modified": "2021-01-06T18:30:55.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.745Z", - "description": "Subnetworks, Access Control", - "id": "relationship--9a6901e6-91fc-42b2-a749-331fd664d39e", - "modified": "2021-01-06T18:30:55.745Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.745Z", - "description": "Subnetworks, Access Control", - "id": "relationship--d1914a6a-bcca-4e9f-81ab-6035cf746b01", - "modified": "2021-01-06T18:30:55.745Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.746Z", - "description": "Information Flow Enforcement", - "id": "relationship--9c08577f-18c8-4ee4-b0d7-e118bbc193f2", - "modified": "2021-01-06T18:30:55.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.747Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0000b531-6f8f-4719-bc53-4a015392d888", - "modified": "2021-01-06T18:30:55.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.747Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--87c61617-cda8-4dfd-94e0-ae5a751bb01a", - "modified": "2021-01-06T18:30:55.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.748Z", - "description": "Subnetworks, Access Control, DMZ", - "id": "relationship--9775284b-0ea3-4e35-bcca-5733771c110b", - "modified": "2021-01-06T18:30:55.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.748Z", - "description": "Subnetworks, Access Control, DMZ", - "id": "relationship--762a8bd9-6635-4415-bf3f-4ac668ed4e03", - "modified": "2021-01-06T18:30:55.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.750Z", - "description": "Information Flow Enforcement", - "id": "relationship--8c4cfb08-5f7d-44c0-a445-163745a832b4", - "modified": "2021-01-06T18:30:55.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.751Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1a32e9de-c57b-4a62-a7c9-fd16fa1492e8", - "modified": "2021-01-06T18:30:55.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.751Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8d3b8310-c3f5-4832-8155-b8fdf270b9f1", - "modified": "2021-01-06T18:30:55.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.752Z", - "description": "Subnetworks, Access Control", - "id": "relationship--6eddc9f7-6042-48c1-86c7-1ec82ff88039", - "modified": "2021-01-06T18:30:55.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.752Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b249650a-ba70-48c6-b41e-3895a676c846", - "modified": "2021-01-06T18:30:55.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.753Z", - "description": "Information Flow Enforcement", - "id": "relationship--240a4ed4-ebb7-4ae3-ac41-e53261b7fbaf", - "modified": "2021-01-06T18:30:55.753Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.754Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:55.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.755Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a6b88af7-1d51-4234-afda-07b8618836de", - "modified": "2021-01-06T18:30:55.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.755Z", - "description": "Subnetworks, Access Control", - "id": "relationship--52f70eaa-9b91-41b4-bda3-e4e63b1cc9dc", - "modified": "2021-01-06T18:30:55.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.756Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7d313c12-ac9e-49a9-b820-52d9bde30b0c", - "modified": "2021-01-06T18:30:55.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.757Z", - "description": "Information Flow Enforcement", - "id": "relationship--1e562bac-b904-4ba8-b9af-b1a97296707f", - "modified": "2021-01-06T18:30:55.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.758Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--86c25708-12a6-4df1-9537-df84114c4bc5", - "modified": "2021-01-06T18:30:55.758Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.758Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--cc5b3cf9-cd8c-433f-94bc-b0916f4b773d", - "modified": "2021-01-06T18:30:55.758Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.759Z", - "description": "Subnetworks, Access Control", - "id": "relationship--39253d6e-dc79-4d14-ac78-0396cccc236b", - "modified": "2021-01-06T18:30:55.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.759Z", - "description": "Subnetworks, Access Control", - "id": "relationship--9c06e8c3-643c-47e1-b251-7d3c6b327f9c", - "modified": "2021-01-06T18:30:55.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.760Z", - "description": "Information Flow Enforcement", - "id": "relationship--527bb098-02a9-4fea-b96b-52eb21260452", - "modified": "2021-01-06T18:30:55.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.761Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8a2a3fd4-0d59-43fe-8c95-226fa26a6a33", - "modified": "2021-01-06T18:30:55.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.761Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0c64b9e2-e914-438a-ba43-39a117568e3e", - "modified": "2021-01-06T18:30:55.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.762Z", - "description": "Subnetworks, Access Control", - "id": "relationship--da8e2721-26b9-44f2-8376-66d55c81fcf6", - "modified": "2021-01-06T18:30:55.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.762Z", - "description": "Subnetworks, Access Control", - "id": "relationship--73f4fd73-e880-4f0c-9958-8f494d088d4a", - "modified": "2021-01-06T18:30:55.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.763Z", - "description": "Information Flow Enforcement", - "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:55.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.763Z", - "description": "Information Flow Enforcement", - "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:55.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.764Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:55.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:55.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:55.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.765Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:55.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", - "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:55.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", - "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:55.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.766Z", - "description": "Subnetworks, Access Control", - "id": "relationship--caae0c38-5591-415f-88b8-d165bf61d38c", - "modified": "2021-01-06T18:30:55.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.767Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1b912d8c-666e-49a2-9d2e-5ae457ead1dc", - "modified": "2021-01-06T18:30:55.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.768Z", - "description": "Information Flow Enforcement", - "id": "relationship--806adc0f-d1bc-4fb7-ba60-f3e90a527bdf", - "modified": "2021-01-06T18:30:55.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.768Z", - "description": "Information Flow Enforcement", - "id": "relationship--889720b3-9d4b-488f-9de7-65679b573708", - "modified": "2021-01-06T18:30:55.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--195ffbec-4120-4b3f-9bc5-db73f77dc564", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.769Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--63abd751-1e3a-44a7-b7db-19d41545fd8e", - "modified": "2021-01-06T18:30:55.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7c566ddf-2fea-4fa3-96d2-9dc27195b5aa", - "modified": "2021-01-06T18:30:55.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b3fb06ef-27e1-4acc-a491-bd90675a7e42", - "modified": "2021-01-06T18:30:55.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.770Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f6447be0-6f52-4e9e-9066-64aa053147d7", - "modified": "2021-01-06T18:30:55.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.771Z", - "description": "Subnetworks, Access Control", - "id": "relationship--ec340da3-79e2-4604-97ac-eee5fd2d2966", - "modified": "2021-01-06T18:30:55.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.772Z", - "description": "Information Flow Enforcement", - "id": "relationship--f38e5958-4a3f-4f24-ab82-b80357fa6c50", - "modified": "2021-01-06T18:30:55.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.772Z", - "description": "Information Flow Enforcement", - "id": "relationship--89863229-e82e-4598-a602-3fe08df1864d", - "modified": "2021-01-06T18:30:55.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:55.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b020066a-c9b4-463e-912b-b5097f247d38", - "modified": "2021-01-06T18:30:55.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--cd0056bb-46f1-49e5-a657-a91564e89223", - "modified": "2021-01-06T18:30:55.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.773Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--428457c7-7ab8-4a9e-938b-a2122753f92c", - "modified": "2021-01-06T18:30:55.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--65f73811-182e-460e-a397-d5678cff8d14", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--58d66621-a5c3-4de3-b916-48296ef9d34e", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--8674ce8a-3f3c-4791-9264-b2feb132eb15", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.774Z", - "description": "Subnetworks, Access Control", - "id": "relationship--70f7e488-fec9-4123-be2f-ebc8aa9d75b4", - "modified": "2021-01-06T18:30:55.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.776Z", - "description": "Information Flow Enforcement", - "id": "relationship--72babca1-4c64-4450-848c-96a57909cd64", - "modified": "2021-01-06T18:30:55.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.777Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f2f927aa-09c0-4060-9d98-48312736759b", - "modified": "2021-01-06T18:30:55.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.777Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0c159dbe-46f5-4c1f-a357-95811374ec6c", - "modified": "2021-01-06T18:30:55.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.778Z", - "description": "Subnetworks, Access Control", - "id": "relationship--53870ec5-03e4-455a-a07b-d2d95a398d6c", - "modified": "2021-01-06T18:30:55.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", - "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:55.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", - "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:55.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.779Z", - "description": "Information Flow Enforcement", - "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:55.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:55.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:55.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.780Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:55.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--d16e4336-1b38-4f40-9021-b6a9aab3fe12", - "modified": "2021-01-06T18:30:55.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--02fa8be7-9400-4fda-8b3c-a2f2adb9f588", - "modified": "2021-01-06T18:30:55.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.781Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--dd98f1ef-13be-4f30-97fc-889c92fb47ee", - "modified": "2021-01-06T18:30:55.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", - "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:55.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", - "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:55.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.782Z", - "description": "Subnetworks, Access Control", - "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:55.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", - "id": "relationship--1b0b106b-a594-446d-8af7-999d2e790dd0", - "modified": "2021-01-06T18:30:55.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", - "id": "relationship--35e3b378-300d-4f7b-a862-24c19a00c565", - "modified": "2021-01-06T18:30:55.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", - "id": "relationship--b4a98aee-f4d0-4dc0-9a3d-3fdb927b2e35", - "modified": "2021-01-06T18:30:55.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.784Z", - "description": "Continuous Monitoring", - "id": "relationship--dfef2cfa-13d6-4346-abff-7fa97c163dd7", - "modified": "2021-01-06T18:30:55.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.785Z", - "description": "Information Flow Enforcement", - "id": "relationship--659f7bb9-2f68-4498-86aa-74f8d42c0f38", - "modified": "2021-01-06T18:30:55.785Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.786Z", - "description": "Information Flow Enforcement", - "id": "relationship--b30e229d-763e-471d-b042-b2e35cba4c14", - "modified": "2021-01-06T18:30:55.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.786Z", - "description": "Information Flow Enforcement", - "id": "relationship--94096e4d-8e2b-4692-b48f-c0d46a3efce5", - "modified": "2021-01-06T18:30:55.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.787Z", - "description": "Information Flow Enforcement", - "id": "relationship--17024b85-bf9d-492c-8792-8b781af76dbf", - "modified": "2021-01-06T18:30:55.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.787Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--facbd8b4-bd6b-4f65-85a5-13d7133185aa", - "modified": "2021-01-06T18:30:55.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fb5d753f-7493-4061-b8e7-af6441af1433", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--597c8044-a417-44a8-b5d8-c08e9d151f91", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e83ec626-054b-4bf3-8b05-42970aae4d97", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--68264c28-6497-4d3f-90df-7f7ac0319332", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a6da952a-e995-4e4b-962a-203620b6577b", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4c623b63-4959-4bd7-b762-64a146e60d98", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.788Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--360c46c7-3260-4771-b112-6e96a3de9f2d", - "modified": "2021-01-06T18:30:55.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9140fe5-e968-4a9b-a7e3-8f29cdf439df", - "modified": "2021-01-06T18:30:55.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f92eca37-5c60-4264-9544-0f631a4da7e9", - "modified": "2021-01-06T18:30:55.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.789Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--fac22b6b-533a-4e70-8ca0-b33c20eb2ee2", - "modified": "2021-01-06T18:30:55.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--14f246fd-9df0-4784-8d75-b02162b87173", - "modified": "2021-01-06T18:30:55.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--78f45276-c8f4-4345-a0c0-c4d2d99a74ab", - "modified": "2021-01-06T18:30:55.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7d510caf-8255-4a0b-969d-e9e1676d6d38", - "modified": "2021-01-06T18:30:55.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0d37bef5-c370-4da1-aa15-26b502f2e3e9", - "modified": "2021-01-06T18:30:55.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.790Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2dfb0bd1-5fad-4b92-b476-d8c104ae4081", - "modified": "2021-01-06T18:30:55.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", - "id": "relationship--47ade3ca-ff9d-43ad-a5a8-7bc743bff805", - "modified": "2021-01-06T18:30:55.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", - "id": "relationship--65e2c9ff-ad02-45fd-9058-1c26fc2b97a4", - "modified": "2021-01-06T18:30:55.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.791Z", - "description": "Boundary Protection", - "id": "relationship--4eb105c3-ea17-43ff-b509-4a4a045d9817", - "modified": "2021-01-06T18:30:55.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.792Z", - "description": "Boundary Protection", - "id": "relationship--30081747-f4f4-4c13-a3a0-5b4dee34c945", - "modified": "2021-01-06T18:30:55.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ee2c5a2f-4e42-45de-997c-1ac69ce5cfd4", - "modified": "2021-01-06T18:30:55.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b66df816-16b3-4453-a802-6eccbc7f363c", - "modified": "2021-01-06T18:30:55.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.793Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--05599454-f1c3-43aa-b622-bbca2a3f2c05", - "modified": "2021-01-06T18:30:55.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.794Z", - "description": "Continuous Monitoring", - "id": "relationship--f6964ec1-7f5d-4177-9532-ae8fca2eeb6e", - "modified": "2021-01-06T18:30:55.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.795Z", - "description": "Information Flow Enforcement", - "id": "relationship--6310f630-4f74-4852-80af-240e8f494633", - "modified": "2021-01-06T18:30:55.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.796Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--09641de3-4d40-4b64-a31a-70a41392f9f6", - "modified": "2021-01-06T18:30:55.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.796Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--eaa826b6-bfb6-43f2-aa28-8965f3eeb2b6", - "modified": "2021-01-06T18:30:55.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.797Z", - "description": "Boundary Protection", - "id": "relationship--7216f8ae-27b5-433b-9b96-6bddfc82d068", - "modified": "2021-01-06T18:30:55.797Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.799Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f2f8bbcd-2809-4312-b738-f16beff4be10", - "modified": "2021-01-06T18:30:55.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.799Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3341e5d8-615c-40e0-8f43-274adbd1deeb", - "modified": "2021-01-06T18:30:55.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.800Z", - "description": "Continuous Monitoring", - "id": "relationship--951c6dea-a7ab-4ed0-bd3f-ad19fd699978", - "modified": "2021-01-06T18:30:55.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.802Z", - "description": "Information Flow Enforcement", - "id": "relationship--f5b33313-4f98-4c12-8da7-5d5b910c2be8", - "modified": "2021-01-06T18:30:55.802Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.803Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b2dd65a4-8e8a-4f56-8829-d225770d918d", - "modified": "2021-01-06T18:30:55.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.803Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0e7aafd6-a1bb-4d6b-b6f1-1759a8874464", - "modified": "2021-01-06T18:30:55.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.804Z", - "description": "Boundary Protection", - "id": "relationship--4acd3085-42b9-42cb-a7b8-e79195d7b810", - "modified": "2021-01-06T18:30:55.804Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.805Z", - "description": "Continuous Monitoring", - "id": "relationship--ab25012b-9225-4491-accf-bd5da900b7bc", - "modified": "2021-01-06T18:30:55.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.806Z", - "description": "Information Flow Enforcement", - "id": "relationship--c32e8f17-96fa-4fa2-9bb3-6179b116ebe5", - "modified": "2021-01-06T18:30:55.806Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.807Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--36d3f065-2e15-413f-be54-5fc93e7235c0", - "modified": "2021-01-06T18:30:55.807Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.808Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f09d4a58-9e02-4b65-8bc9-2ab8c5b86cbb", - "modified": "2021-01-06T18:30:55.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.809Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d27c7752-bd34-4bf0-855b-71fa615b1913", - "modified": "2021-01-06T18:30:55.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.809Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5b792e8d-92f3-49c7-ba65-7649151a0993", - "modified": "2021-01-06T18:30:55.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.810Z", - "description": "Boundary Protection", - "id": "relationship--e5415d5c-ebb5-4aa9-880e-4431219d0aa7", - "modified": "2021-01-06T18:30:55.810Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.811Z", - "description": "Continuous Monitoring", - "id": "relationship--3d652951-a9f5-485d-b3fb-c04d13bc31e6", - "modified": "2021-01-06T18:30:55.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.812Z", - "description": "Information Flow Enforcement", - "id": "relationship--e237054b-bab8-486b-b8a4-30d76e0fca40", - "modified": "2021-01-06T18:30:55.812Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.813Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6041cc25-f85a-4df7-8ab9-4d2e253330d3", - "modified": "2021-01-06T18:30:55.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.814Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--506f72da-0941-49a0-92a0-17b33f3b4c2b", - "modified": "2021-01-06T18:30:55.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.815Z", - "description": "Boundary Protection", - "id": "relationship--0d03bdf8-da5c-4208-86f3-aadc2c36747b", - "modified": "2021-01-06T18:30:55.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--130d44ae-5874-48a3-9dc8-2389a24c5c9e", - "modified": "2021-01-06T18:30:55.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:55.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.816Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c5fc1e05-e455-4029-9199-f108cb4f0093", - "modified": "2021-01-06T18:30:55.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.818Z", - "description": "Continuous Monitoring", - "id": "relationship--df090321-bce1-4818-b57f-08e5c1d76dea", - "modified": "2021-01-06T18:30:55.818Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.819Z", - "description": "Information Flow Enforcement", - "id": "relationship--f3824fe4-c1f2-4704-b346-a43185f6d0ff", - "modified": "2021-01-06T18:30:55.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.820Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--39084257-41db-4704-a20d-fe19acab0f23", - "modified": "2021-01-06T18:30:55.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.820Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0393d88e-d968-4563-b2d1-39a9736d9683", - "modified": "2021-01-06T18:30:55.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.821Z", - "description": "Boundary Protection", - "id": "relationship--b72ff145-0b06-4c79-8019-28efc0623e3d", - "modified": "2021-01-06T18:30:55.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.822Z", - "description": "Continuous Monitoring", - "id": "relationship--189b5da5-c0c8-4f26-a14f-ea3b11dedaed", - "modified": "2021-01-06T18:30:55.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", - "id": "relationship--2eb58f88-80ba-49d9-90da-39b2f2cb750b", - "modified": "2021-01-06T18:30:55.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", - "id": "relationship--39047a07-e9c5-49c2-961c-8221c089bc05", - "modified": "2021-01-06T18:30:55.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.823Z", - "description": "Continuous Monitoring", - "id": "relationship--328a0692-fe35-4efc-ab86-82a388abfce9", - "modified": "2021-01-06T18:30:55.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.824Z", - "description": "Information Flow Enforcement", - "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:55.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--5f680503-3504-4f89-85b4-905764ed8de9", - "modified": "2021-01-06T18:30:55.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c3abba4-dec7-4146-a6f0-089e71063f19", - "modified": "2021-01-06T18:30:55.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bfc2b93c-ae8a-402e-920d-2fffc4a65666", - "modified": "2021-01-06T18:30:55.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.826Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--98d29c43-dd96-44a4-aff2-bf36b20bf028", - "modified": "2021-01-06T18:30:55.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4a6912c7-71be-4ce4-83dc-d5cc9c697062", - "modified": "2021-01-06T18:30:55.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d31865b6-4e6b-429f-807e-51a61ab75807", - "modified": "2021-01-06T18:30:55.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bae540cd-051e-4ef0-b4cf-68a1ca4f3056", - "modified": "2021-01-06T18:30:55.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.827Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--aed763cd-de48-4240-b11a-56728d3319d3", - "modified": "2021-01-06T18:30:55.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.828Z", - "description": "Boundary Protection", - "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:55.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.829Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d50e44ed-5a0e-44fa-aedb-0285df427fb9", - "modified": "2021-01-06T18:30:55.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.829Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e2d545bd-8c42-4a4f-896d-de9c7f3d06c1", - "modified": "2021-01-06T18:30:55.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d3b4a866-dc80-4be7-9d93-4e0032645d96", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bf427f71-d7c0-4b95-b0bf-e9bede19caae", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.830Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:55.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.831Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:55.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.832Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--9c421eff-bdb4-4370-96fa-dde762ddce3e", - "modified": "2021-01-06T18:30:55.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--72725aaf-9c72-42db-bd3d-f9fdbfd2d520", - "modified": "2021-01-06T18:30:55.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b8aec0b7-a1f2-46a4-956e-da39b529e6be", - "modified": "2021-01-06T18:30:55.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5cacc238-7c66-4561-9be4-ef7503c30b90", - "modified": "2021-01-06T18:30:55.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--6f1cd448-ed68-487a-9a19-a52739cefb8f", - "modified": "2021-01-06T18:30:55.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.833Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--372b8c26-5d01-4bd2-96ab-c95eb7b263a3", - "modified": "2021-01-06T18:30:55.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ef1ac5c5-885a-410e-ad19-e24e6ba1936c", - "modified": "2021-01-06T18:30:55.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--32086d6d-4933-462c-8ba0-1a9414acfae8", - "modified": "2021-01-06T18:30:55.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--93c9647f-a8ab-430a-8405-134814e4400a", - "modified": "2021-01-06T18:30:55.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4a730cff-33bd-419c-a8e8-b8284b8e9c4e", - "modified": "2021-01-06T18:30:55.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.834Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a6e37231-471c-44fe-a52c-89be1a2acf99", - "modified": "2021-01-06T18:30:55.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--fef4f90c-0d8b-49c7-bd94-e2954eb96955", - "modified": "2021-01-06T18:30:55.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3f8a9de7-d3b6-4de1-9d6f-b9663a9efd04", - "modified": "2021-01-06T18:30:55.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--96958440-16ce-4932-b5b5-cc0ef42c36c0", - "modified": "2021-01-06T18:30:55.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.835Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c130833e-b64c-457d-b048-38d550a39967", - "modified": "2021-01-06T18:30:55.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.836Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--62f2ebf2-bc28-4d76-aa5e-9d3fc55c3c47", - "modified": "2021-01-06T18:30:55.836Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--e13273a3-d15a-4d18-806c-30431b93c1db", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6c19bbc4-7c04-4c37-a82f-73ed080c52f2", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a678ecf1-72b4-40a9-9ee6-0cf6c3a74f37", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--597a50d1-82dd-4120-b304-c34bc1ccd1da", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a719db2a-6199-437b-aaab-36bd0b804ff9", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--33ce2d0e-bd94-4a4c-aee2-93050596297f", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--7e84f6f1-ed85-4c47-81ff-0056b5ef96e3", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.837Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--813725d3-093a-456c-a3ea-9c6c255ab76a", - "modified": "2021-01-06T18:30:55.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--2e393a0d-b7c8-455f-9df1-2dd88ceec9fe", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c97c3a59-a259-4ab1-8a4c-75b68363bbb1", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--0edea018-c09a-4292-bf79-13c95e94d44e", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--2f6e1ef8-ebbc-482b-a240-3a8f03c3e5b4", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--3c984102-11f3-4d81-83c1-1ad49755a5a8", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6492fac5-346a-4940-b996-1315f215db86", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--70b69d4d-f208-4cbc-975d-c97e5ae47de8", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.838Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d8c3ca33-5b97-4359-a2c7-dc9d711c0285", - "modified": "2021-01-06T18:30:55.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--0c341d3d-7dc2-4f78-8879-dd695bfd2fb6", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--eb64bc22-b892-447c-ade9-6ade63b57c5c", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--2329541c-9358-4150-bdad-2dbb2e4219dc", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c11360fb-2616-46fd-95c3-e00e1ac5dbdb", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--815865be-2e57-48e8-b9a6-e2e6dc8856b9", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--92fb168c-ffa4-4743-8b2f-9108c988b73a", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c3facc77-0a01-4817-a5fd-df4381613aea", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.839Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--98cfc4b6-ef89-431a-a21b-5170db3eb93a", - "modified": "2021-01-06T18:30:55.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--92c7951f-07ff-49ad-8650-b08ea64ed2fe", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--1c30c73b-d586-4b12-8bf9-359faded36ec", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a70f2402-f1d5-4d24-b972-f58828c8d324", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--1a79c0d8-266b-4e0d-9d68-ce278cb9478f", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--8056a96c-bc6e-484c-8bf9-f567091b1990", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d9fcf7b0-f8a9-4a36-a9c0-cacd26045bb9", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--78b4e92a-010c-440e-9a49-f0597923e272", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.840Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--189a2d3a-b288-49bf-94a3-352ac839e1ea", - "modified": "2021-01-06T18:30:55.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--af2179ad-f46c-4ad0-8aab-bb57a412468f", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--001e70aa-f93d-4fcc-908d-cd021ed9d95d", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d643bf85-19c0-4b07-ab77-4497c545ab27", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--7ceb1245-c1ee-47f6-8e03-d4a1cfe93df8", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--253f2be9-7f46-4e8d-ba6a-21dc75cd1d2b", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--614100d5-0171-4589-b3af-f9b24ed3aa83", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.841Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--b0986871-4cd1-45c4-8bed-654f0fd473df", - "modified": "2021-01-06T18:30:55.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.842Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ceb96f28-656c-4e36-8fea-a637ec7bf607", - "modified": "2021-01-06T18:30:55.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.842Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f3749bb7-d0f8-4091-843c-d101a141e3d4", - "modified": "2021-01-06T18:30:55.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--978ce78d-3afc-4d9a-8f66-306a043b317d", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--11aed2a8-085d-4e03-808d-d4cabe2df0c4", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d4506ced-1ebd-4074-92d9-ac3377e01f46", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d77ddd9d-938a-4755-823f-d7557d210e7b", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--08383e79-e946-4793-b231-d9afc121f08c", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--15a42d6a-9852-440c-aa98-09f453fd0b41", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--96d61be5-4517-46cd-a894-6c085f5631b9", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.843Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0928956e-2e24-4d12-93bd-44a3f5dc5fec", - "modified": "2021-01-06T18:30:55.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.844Z", - "description": "Continuous Monitoring", - "id": "relationship--3b14d2da-96d9-4692-a93d-0c7d22f4f9f8", - "modified": "2021-01-06T18:30:55.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.844Z", - "description": "Continuous Monitoring", - "id": "relationship--99db5247-5897-4818-b796-bd49f56c5206", - "modified": "2021-01-06T18:30:55.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", - "id": "relationship--073cdd02-36e4-4fbd-9ba1-85a07747f23f", - "modified": "2021-01-06T18:30:55.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", - "id": "relationship--32539bde-b54e-4c1e-bef5-8b11df014339", - "modified": "2021-01-06T18:30:55.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.845Z", - "description": "Continuous Monitoring", - "id": "relationship--77727e66-a11a-4954-9238-a9ef2eeacc23", - "modified": "2021-01-06T18:30:55.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", - "id": "relationship--71953c4e-4aac-47f4-b592-bdb119876c87", - "modified": "2021-01-06T18:30:55.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", - "id": "relationship--e3cc47d3-35e5-4125-96c8-595c02f98365", - "modified": "2021-01-06T18:30:55.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", - "id": "relationship--1fb8ebaf-4328-4cdc-8229-ec79b09fb0c6", - "modified": "2021-01-06T18:30:55.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", - "id": "relationship--f77e25fe-b367-4590-97a7-8ec510a69f51", - "modified": "2021-01-06T18:30:55.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.846Z", - "description": "Information Flow Enforcement", - "id": "relationship--55943244-64d3-4b37-86f6-7e2db89ba028", - "modified": "2021-01-06T18:30:55.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.847Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--00cb409f-add8-44fe-99bd-fadffa4aa364", - "modified": "2021-01-06T18:30:55.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8f08a865-6807-4ba5-9c1b-59b6e544a547", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d693a5ad-fe56-4a3f-bf9a-e2e0029ae337", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b3134421-8369-4319-a65a-483f8890968b", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d8d93511-6b25-40ce-bdc6-6294b8fc0742", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4b87601b-9070-4fad-be10-b4ad60da1345", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--518e6234-146d-42a5-bfb7-ecebab861412", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.848Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5836e994-e48b-4458-818a-1b7add403d7f", - "modified": "2021-01-06T18:30:55.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.849Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c3af3f89-f381-4bab-92ff-11a81464137e", - "modified": "2021-01-06T18:30:55.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.850Z", - "description": "Continuous Monitoring", - "id": "relationship--437b0034-6e2c-4f86-9b1a-5aed2e623078", - "modified": "2021-01-06T18:30:55.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.851Z", - "description": "Continuous Monitoring", - "id": "relationship--cacc2bc1-2990-439f-98c7-d590a918520d", - "modified": "2021-01-06T18:30:55.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.851Z", - "description": "Continuous Monitoring", - "id": "relationship--08292c83-03a9-4ccc-bd2b-2b269347aa53", - "modified": "2021-01-06T18:30:55.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.852Z", - "description": "Information Flow Enforcement", - "id": "relationship--85adc084-effe-4f94-938c-be04c6ad503b", - "modified": "2021-01-06T18:30:55.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.852Z", - "description": "Information Flow Enforcement", - "id": "relationship--8637e0ca-79d6-41f4-b1d6-8c8a3032323a", - "modified": "2021-01-06T18:30:55.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.853Z", - "description": "Information Flow Enforcement", - "id": "relationship--fd5b9976-2616-4de7-a82b-055590b499d6", - "modified": "2021-01-06T18:30:55.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.854Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7441e8d0-c286-4eaf-bde9-4d276d4136dc", - "modified": "2021-01-06T18:30:55.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.854Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fa4478b1-f4b9-4048-971a-6764fe727b8d", - "modified": "2021-01-06T18:30:55.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4bd81c36-96e4-4fca-8d52-870e980efe21", - "modified": "2021-01-06T18:30:55.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--70850735-a9ca-424b-a707-f3b85ec009c4", - "modified": "2021-01-06T18:30:55.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d05a6070-4973-4ac7-8f0d-a5430f07e912", - "modified": "2021-01-06T18:30:55.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.855Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--127ea0a6-87bf-4749-bf48-d0d239e0cc20", - "modified": "2021-01-06T18:30:55.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", - "id": "relationship--2372118d-dd30-4a65-8d1f-cb5114b00801", - "modified": "2021-01-06T18:30:55.856Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", - "id": "relationship--cb5086df-987b-49e2-8b32-cdefd3a4b74d", - "modified": "2021-01-06T18:30:55.856Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.856Z", - "description": "Boundary Protection", - "id": "relationship--fa277757-0ef9-4bd4-934a-44370f01a784", - "modified": "2021-01-06T18:30:55.856Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.857Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ea44de23-c95d-4392-81ee-b570fae7b645", - "modified": "2021-01-06T18:30:55.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.858Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:55.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.858Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:55.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.859Z", - "description": "Continuous Monitoring", - "id": "relationship--7d4f8e6f-b8d4-4d6d-8bd4-a9a26425c784", - "modified": "2021-01-06T18:30:55.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.861Z", - "description": "Information Flow Enforcement", - "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:55.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.862Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ba0d0d8e-ff2b-4ae4-af11-ee516fbbbd0e", - "modified": "2021-01-06T18:30:55.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.862Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--633e769e-8bd8-4127-9851-636c7012905c", - "modified": "2021-01-06T18:30:55.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.863Z", - "description": "Boundary Protection", - "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:55.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--979bcbe0-0c94-4ac8-a0ec-8342ee743541", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0e155fdb-dab1-4d9e-94e5-48183342ca00", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8e84a5d9-9de8-4299-9fd6-450782544eeb", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8a7c9856-4268-452f-8dfb-371cee9058d7", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--01cdc438-eca4-425d-a2d6-ad52436a43b2", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.865Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--236aa49d-3ce6-40cd-a7d5-89e6f152a362", - "modified": "2021-01-06T18:30:55.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--195dcbed-4af3-4d95-a5ed-3651a93210ee", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.718Z", + "id": "relationship--ecd6c2df-2a15-44c5-9ca3-82bf7d10566c", + "modified": "2021-01-13T01:52:44.718Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--43d035ce-4f10-43ea-8f74-88b10116d1d4", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.718Z", + "id": "relationship--1b33e2af-a1d8-4a57-95ae-8956c99a4071", + "modified": "2021-01-13T01:52:44.718Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c4e57fce-10f8-49dd-ac76-babf848abcd2", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.719Z", + "id": "relationship--0d8de87a-d68e-4310-9034-16e8578d261c", + "modified": "2021-01-13T01:52:44.719Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f2894a8b-3107-42ad-b92f-b00b015f24c8", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.720Z", + "id": "relationship--a8402d2f-d8db-4f15-a7fb-b62e7942ecb3", + "modified": "2021-01-13T01:52:44.720Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f0bada09-f155-4e05-9e61-33e94f8a009e", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--e6dbb362-7397-4456-86d1-6710f26b7111", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.866Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f0ad1c09-2d7b-4536-a0bc-7478759cc434", - "modified": "2021-01-06T18:30:55.866Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--ab2e9f69-d9fd-419b-ba4e-258e87190757", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", - "id": "relationship--27524780-9859-484b-a317-3dd4615df14e", - "modified": "2021-01-06T18:30:55.868Z", + "created": "2021-01-13T01:52:44.722Z", + "id": "relationship--a5ea6bdb-993f-48e4-a7d9-35994dfe3ccd", + "modified": "2021-01-13T01:52:44.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", - "id": "relationship--41afc783-b203-436b-a6d4-d938c3cdfb87", - "modified": "2021-01-06T18:30:55.868Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--53ff1f65-0f9b-44e2-b945-4e846dfaa6f2", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.868Z", - "description": "Continuous Monitoring", - "id": "relationship--138839f2-9bee-4bf1-bf7b-8a42dd9bdc8a", - "modified": "2021-01-06T18:30:55.868Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--d5dd2ae2-fd28-49e3-8514-e73f9ec29ab0", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.869Z", - "description": "Continuous Monitoring", - "id": "relationship--95de78f5-2cc2-4089-8ab7-d1de1f744f1a", - "modified": "2021-01-06T18:30:55.869Z", + "created": "2021-01-13T01:52:44.723Z", + "id": "relationship--51ab6b7e-50c0-42fd-8769-7b13fd2e05c2", + "modified": "2021-01-13T01:52:44.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--e884d6da-e879-498f-8e32-5f82193f0e19", - "modified": "2021-01-06T18:30:55.870Z", + "created": "2021-01-13T01:52:44.724Z", + "id": "relationship--ef72208e-12ca-45d2-b132-f2d9295e7ae3", + "modified": "2021-01-13T01:52:44.724Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--2647354e-e781-4b53-a4d4-557247d1cd63", - "modified": "2021-01-06T18:30:55.870Z", + "created": "2021-01-13T01:52:44.724Z", + "id": "relationship--04a91f8a-d067-4101-9b92-29b09499b605", + "modified": "2021-01-13T01:52:44.724Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--06522e57-0704-4d57-851e-43f52843a0aa", - "modified": "2021-01-06T18:30:55.870Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--a06cc15a-68de-4710-bed8-aae8c4ecddcd", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.870Z", - "description": "Information Flow Enforcement", - "id": "relationship--dbcc8a0d-599d-4eb9-935f-a3e7ee08e4dc", - "modified": "2021-01-06T18:30:55.870Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--84a4027c-7039-436c-aa1f-151042db3f9e", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.871Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c1a80479-f9f4-4cee-8ffb-28f9ea5e439b", - "modified": "2021-01-06T18:30:55.871Z", + "created": "2021-01-13T01:52:44.725Z", + "id": "relationship--cfa9b2c8-20b3-4781-a33c-2a2a13ca61f8", + "modified": "2021-01-13T01:52:44.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--5b892111-c49a-49bc-8597-6fe4b31920e7", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.726Z", + "id": "relationship--685dafcb-6537-4f16-86bc-7cc45d27e13a", + "modified": "2021-01-13T01:52:44.726Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--afaab810-c13c-4aec-8328-cbaa87837219", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.728Z", + "id": "relationship--fefd14be-4f64-4889-87ae-da707153fa94", + "modified": "2021-01-13T01:52:44.728Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--441f38b0-e66e-408c-aa34-79d8fae7ae67", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.729Z", + "id": "relationship--d9ce3394-0060-4320-8f50-8ae293260cb7", + "modified": "2021-01-13T01:52:44.729Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a0910186-188a-49a3-b217-f3260d783a53", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.733Z", + "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", + "modified": "2021-01-13T01:52:44.733Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bf974b61-d5b5-40f5-99b1-075c0c4cc784", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.734Z", + "id": "relationship--158f41c7-4ec4-4a53-a192-15a84b390b65", + "modified": "2021-01-13T01:52:44.734Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c1c3659e-9cb3-4949-a701-a08423038f21", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.735Z", + "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", + "modified": "2021-01-13T01:52:44.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.872Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--091c9447-1eb3-4083-93f0-47fc8609a744", - "modified": "2021-01-06T18:30:55.872Z", + "created": "2021-01-13T01:52:44.736Z", + "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", + "modified": "2021-01-13T01:52:44.736Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--d3413c43-1731-4a3c-b99c-66986458d8a4", - "modified": "2021-01-06T18:30:55.873Z", + "created": "2021-01-13T01:52:44.737Z", + "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", + "modified": "2021-01-13T01:52:44.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--56ab044c-f773-42a3-9b5b-e851df5d7e4f", - "modified": "2021-01-06T18:30:55.873Z", + "created": "2021-01-13T01:52:44.738Z", + "id": "relationship--876c8180-287f-430e-ba0b-6913570d8be2", + "modified": "2021-01-13T01:52:44.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.873Z", - "description": "Boundary Protection", - "id": "relationship--6e7d1cc8-b132-4c35-82dc-69c77c364568", - "modified": "2021-01-06T18:30:55.873Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--2e4667c6-e981-49af-8d1b-deccecaa5d71", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.874Z", - "description": "Boundary Protection", - "id": "relationship--dd9e068b-fb86-47b8-b326-4dbc7734dcf3", - "modified": "2021-01-06T18:30:55.874Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b323cb4c-2d8b-42cb-99ce-ed1565fb9971", - "modified": "2021-01-06T18:30:55.875Z", + "created": "2021-01-13T01:52:44.740Z", + "id": "relationship--97b997f5-d123-494c-9e88-6c8f3a75ae1b", + "modified": "2021-01-13T01:52:44.740Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ddbe6c91-03bb-49c2-a631-c38f7ca7befc", - "modified": "2021-01-06T18:30:55.875Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--519c06f6-13b6-4b8a-888e-77bccacd9b6f", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.875Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ba22a964-c334-4b7a-a737-fb16d21929c0", - "modified": "2021-01-06T18:30:55.875Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--462a2a87-71e2-46dc-966e-294680ff9c87", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.876Z", - "description": "Continuous Monitoring", - "id": "relationship--fc8dd7bb-a99c-4d79-8e70-9cfcd609a2ba", - "modified": "2021-01-06T18:30:55.876Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--4bbaa3e5-3ae2-41ef-8ff0-ab09985ec239", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--cf2a29a9-3228-4a64-80bd-e580fd82be02", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.877Z", - "description": "Information Flow Enforcement", - "id": "relationship--8b2c664f-8477-4414-97cf-b232aef42c1d", - "modified": "2021-01-06T18:30:55.877Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--b576bad2-950a-40ef-aa7d-e2faad9197ff", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.879Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9205d044-eb01-424f-af30-76383815f5c3", - "modified": "2021-01-06T18:30:55.879Z", + "created": "2021-01-13T01:52:44.743Z", + "id": "relationship--8499d3cd-fc46-4fbd-a3ec-0c05603f0c16", + "modified": "2021-01-13T01:52:44.743Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.879Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dab047db-55d9-442f-ae37-0ad0397ccca2", - "modified": "2021-01-06T18:30:55.879Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--c0c5f6f8-fb26-4151-b07e-f07817cbee3c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--4698740c-832b-49ba-a9a2-590bb88677ee", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.880Z", - "description": "Boundary Protection", - "id": "relationship--4caec892-2edb-44ac-a1e9-6a23a1c53f57", - "modified": "2021-01-06T18:30:55.880Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--9c748826-f917-41af-aa3b-5436c819e534", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.881Z", - "description": "Continuous Monitoring", - "id": "relationship--9e000fb6-7d8e-4b4c-aa08-d58a0f5f7cec", - "modified": "2021-01-06T18:30:55.881Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--0711396f-8746-454e-ae38-29a3bf04713c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.882Z", - "description": "Information Flow Enforcement", - "id": "relationship--7c5418a8-04b7-4738-ad04-94459367d6cb", - "modified": "2021-01-06T18:30:55.882Z", + "created": "2021-01-13T01:52:44.744Z", + "id": "relationship--7b9d3036-c54b-4038-a8ac-2775c5fbb37c", + "modified": "2021-01-13T01:52:44.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.884Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ca430e23-e8b8-4940-86d4-1a35e7944204", - "modified": "2021-01-06T18:30:55.884Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--962d2637-230a-45c5-b562-db3618c4e8b7", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.884Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--daa96836-dc68-47c8-94a6-9d3d92d8d7fc", - "modified": "2021-01-06T18:30:55.884Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--eb344fce-ef44-4ad4-99b6-32f8202afeed", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.885Z", - "description": "Boundary Protection", - "id": "relationship--609a8d11-80cc-4f36-a6d7-5357b8f2773e", - "modified": "2021-01-06T18:30:55.885Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--4b3b4525-49c0-405a-b95c-a08c24f797a6", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--59aa54a6-335b-487c-ac76-94ca99e4db75", - "modified": "2021-01-06T18:30:55.886Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--f7f2a1d5-5602-4305-a67f-03caa9173032", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c016aba8-9132-4e47-af3e-3d8c7a457ca9", - "modified": "2021-01-06T18:30:55.886Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--ff85dbc1-61ff-4fee-9204-baa8f3c7f8bb", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.886Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4514b059-97d2-4f59-b5fa-5e58acaa4a3d", - "modified": "2021-01-06T18:30:55.886Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--e6f75574-8aee-4d4a-9ca6-daaebb27da21", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.887Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4b91d828-bdae-4b6e-a49d-e66b2ab27dd0", - "modified": "2021-01-06T18:30:55.887Z", + "created": "2021-01-13T01:52:44.745Z", + "id": "relationship--4902b4a4-3ed5-4324-83eb-dd60ace5a6ec", + "modified": "2021-01-13T01:52:44.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2d3ecff7-355b-4e9c-b254-0674e84c7fa0", - "modified": "2021-01-06T18:30:55.888Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--dadbb1f9-b32c-458c-b760-573037fca786", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7604748e-93f8-470c-a8da-f914feff9927", - "modified": "2021-01-06T18:30:55.888Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--ade67d29-281f-417d-b176-8789b931532f", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1723b5c2-0ace-40be-9533-c4d7c4fff3ab", - "modified": "2021-01-06T18:30:55.888Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--b8dd7f10-e9c7-491a-92b4-2505aea30e42", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c4e77624-ab62-408e-a93a-25bb0cb1993e", - "modified": "2021-01-06T18:30:55.888Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--03d9df1a-dca1-4263-9e8c-c306255ecc27", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.888Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--984057b7-db44-4789-a0ad-e8e450689856", - "modified": "2021-01-06T18:30:55.888Z", + "created": "2021-01-13T01:52:44.746Z", + "id": "relationship--833db13a-a17c-4f70-96d0-984352bd9adc", + "modified": "2021-01-13T01:52:44.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--62c61341-aeed-40ea-967f-3ba2400b38ed", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.889Z", - "description": "Boundary Protection", - "id": "relationship--55bc726c-010d-43c7-ab61-8d7aa57b64bc", - "modified": "2021-01-06T18:30:55.889Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--4befa13d-c8a1-4971-8668-295f3e426c61", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.889Z", - "description": "Boundary Protection", - "id": "relationship--33a3e84c-0ef5-4755-82e1-ae1b883d3e93", - "modified": "2021-01-06T18:30:55.889Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--82d019b5-4d23-4dc1-9827-87493f64c4b3", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.890Z", - "description": "Boundary Protection", - "id": "relationship--dae85ca6-0a5c-45e5-a12a-3e8e67999ae8", - "modified": "2021-01-06T18:30:55.890Z", + "created": "2021-01-13T01:52:44.747Z", + "id": "relationship--1dd1c635-bc68-4e21-b4fe-f30b1eafc2f4", + "modified": "2021-01-13T01:52:44.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.890Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--74a01ea9-c9d6-4c0f-b1ab-69e2725a2696", - "modified": "2021-01-06T18:30:55.890Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--e04b76a7-b55d-443e-b80b-b7f64de287f3", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7509655f-157e-4ed1-b8ea-c1d418941304", - "modified": "2021-01-06T18:30:55.891Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--916dedf8-f5c5-4f82-9ebd-71bedc3a22d2", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fec157f7-5ddd-467d-ae2e-be3f2bde65bd", - "modified": "2021-01-06T18:30:55.891Z", + "created": "2021-01-13T01:52:44.748Z", + "id": "relationship--4dbb41d1-15f6-4265-b6bc-40081d6e1890", + "modified": "2021-01-13T01:52:44.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e9bd4f1e-84f9-485a-aa95-5fa6a10e2ecb", - "modified": "2021-01-06T18:30:55.891Z", + "created": "2021-01-13T01:52:44.750Z", + "id": "relationship--8d954dba-b324-4d89-a2a4-ea84104c37b7", + "modified": "2021-01-13T01:52:44.750Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7e484388-3a2b-4603-977c-8177dfabb1e6", - "modified": "2021-01-06T18:30:55.891Z", + "created": "2021-01-13T01:52:44.750Z", + "id": "relationship--48fe31d3-c594-40ea-9bde-8f318d55c476", + "modified": "2021-01-13T01:52:44.750Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.891Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d797f35b-2057-489e-b19d-6f7eb6c9df07", - "modified": "2021-01-06T18:30:55.891Z", + "created": "2021-01-13T01:52:44.751Z", + "id": "relationship--732f886b-a064-4841-86b7-bf884d4212ef", + "modified": "2021-01-13T01:52:44.751Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.892Z", - "description": "Information Flow Enforcement", - "id": "relationship--f9c28e04-f3a7-42c9-8436-c5d656379df5", - "modified": "2021-01-06T18:30:55.892Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--02f94296-e603-4c4a-ba23-58c76de3d10f", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.893Z", - "description": "Information Flow Enforcement", - "id": "relationship--da9ad881-7c04-4dac-82a3-c9337e20a02d", - "modified": "2021-01-06T18:30:55.893Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--e766de42-ac9a-438a-8e7e-7b0e6284893d", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.893Z", - "description": "Information Flow Enforcement", - "id": "relationship--41cf9ebe-7f68-4d4e-b46b-51e76c12aee7", - "modified": "2021-01-06T18:30:55.893Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--6fa223b7-4d39-4b81-b47d-939453ad445c", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.894Z", - "description": "Continuous Monitoring", - "id": "relationship--0934ac7d-24dc-4313-9fb3-f126d866a06c", - "modified": "2021-01-06T18:30:55.894Z", + "created": "2021-01-13T01:52:44.752Z", + "id": "relationship--0bed09ac-ed4a-4797-883f-ffb83bdd0d17", + "modified": "2021-01-13T01:52:44.752Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.895Z", - "description": "Continuous Monitoring", - "id": "relationship--c2b104bc-6f77-428a-b3fd-5e521caae96d", - "modified": "2021-01-06T18:30:55.895Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.895Z", - "description": "Continuous Monitoring", - "id": "relationship--f4339002-abc4-4aa0-bed4-992366aa5329", - "modified": "2021-01-06T18:30:55.895Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--fb9ecaed-1980-4474-9a3f-0d6696216af7", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--265285d7-2886-4bc8-85a1-29bd91aae612", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--a8c58466-3a32-4d33-9418-f30fbf2c0e4a", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.753Z", + "id": "relationship--a6ab8d23-1afa-4339-8aa9-e750b363b71a", + "modified": "2021-01-13T01:52:44.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d4571b41-5913-4478-a789-4eb3abf7f242", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.754Z", + "id": "relationship--7dc07117-84a7-4c99-aedb-1c66321c5cef", + "modified": "2021-01-13T01:52:44.754Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--56d2681d-b9d5-4a3c-8489-515fa48d53c9", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--77084b00-de9f-4407-825f-11ec2b8b006c", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a5f86b3d-01d6-44da-b2c4-df3419825c39", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--ec4ea374-a1e7-481a-bb5a-d8f7e7a79333", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.896Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--771f6d26-e388-4d6e-a2ea-ad5765af7263", - "modified": "2021-01-06T18:30:55.896Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--660670ed-503c-4bf4-b05f-c2a03c6057a2", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.897Z", - "description": "Continuous Monitoring", - "id": "relationship--83ab0c58-9258-4fd5-8301-499e957c6ea9", - "modified": "2021-01-06T18:30:55.897Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--ec40187d-b35e-4166-b323-62d9e2946c0f", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--f413c8a2-f784-40c3-b253-b7b6da8aacec", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.897Z", - "description": "Continuous Monitoring", - "id": "relationship--d67ed9c1-970a-43e9-bfb1-068a5421171b", - "modified": "2021-01-06T18:30:55.897Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--c85ecfa3-e756-48d2-99e2-0167f935e940", - "modified": "2021-01-06T18:30:55.899Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--8e3a2f42-ba76-4703-b9cd-fee2eaea4a0c", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--b6e8470d-8ae7-465c-aa11-8eb3fc94b140", - "modified": "2021-01-06T18:30:55.899Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--446b6a68-a1fc-4170-950f-af7a4066aed9", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.899Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--6922406e-15ae-4b0d-a04b-ece23b2f4cf6", - "modified": "2021-01-06T18:30:55.899Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--f6a668ac-6fe7-4a72-b85d-989dc38866f2", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2e1a6a4f-914c-4d42-8b1e-049331461f09", - "modified": "2021-01-06T18:30:55.900Z", + "created": "2021-01-13T01:52:44.755Z", + "id": "relationship--3e46cf76-0a60-4128-b662-b9434c42c200", + "modified": "2021-01-13T01:52:44.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--0f20d419-68c1-47be-a85a-249e7c6fe0bd", - "modified": "2021-01-06T18:30:55.900Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--b8e4ce24-2c11-4339-b5b2-8609533d6098", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.900Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:55.900Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--bb996652-c96b-4110-8976-9020a4d7a6d8", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.902Z", - "description": "Information Flow Enforcement", - "id": "relationship--48e5656b-f071-413c-b1dc-b770636d32a4", - "modified": "2021-01-06T18:30:55.902Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--d3d58027-9786-4318-8437-1f95a95c353a", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.902Z", - "description": "Information Flow Enforcement", - "id": "relationship--183c287c-2297-40b3-8654-bd563a3693dc", - "modified": "2021-01-06T18:30:55.902Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--f707faca-73cc-4e70-85f4-81bc7945d948", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.903Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--53743617-0471-44e8-a9df-e8db2dd76ee0", - "modified": "2021-01-06T18:30:55.903Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--26ab7bd2-2775-4174-a33f-fa4a9d51897c", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.904Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--19c81411-09a6-40b9-9761-5c9e8f5b4059", - "modified": "2021-01-06T18:30:55.904Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.904Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:55.904Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--6cecb992-1204-4f09-946d-e7e005175642", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.905Z", - "description": "Continuous Monitoring", - "id": "relationship--56ee2214-dd32-4867-9da8-b38013c35dcb", - "modified": "2021-01-06T18:30:55.905Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--4e75bebe-f52c-46f3-b4c5-763dcd8da86f", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.906Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--5b5b5c21-43ec-4bf1-a2db-728c2922d596", - "modified": "2021-01-06T18:30:55.906Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.906Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--69a2b36d-b382-4849-bea5-a375fd2d110d", - "modified": "2021-01-06T18:30:55.906Z", + "created": "2021-01-13T01:52:44.756Z", + "id": "relationship--f6300e49-0277-45fe-9b4e-b881d2bb2e15", + "modified": "2021-01-13T01:52:44.756Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.907Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--48b77967-1aa3-409f-9888-ca92b1108d5a", - "modified": "2021-01-06T18:30:55.907Z", + "created": "2021-01-13T01:52:44.757Z", + "id": "relationship--81ca3def-acc7-4c95-99d2-9d496a9afed6", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.907Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:55.907Z", + "created": "2021-01-13T01:52:44.757Z", + "id": "relationship--9a6e4479-d15d-4035-a19a-2762090d661b", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.908Z", - "description": "Boundary Protection", - "id": "relationship--61023e1e-9ac5-4ee8-9a68-723ae071d315", - "modified": "2021-01-06T18:30:55.908Z", + "created": "2021-01-13T01:52:44.757Z", + "id": "relationship--be57f24c-1fd5-409b-8610-778ea0990aad", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:55.909Z", + "created": "2021-01-13T01:52:44.757Z", + "id": "relationship--2a4711c7-f788-426c-b75a-dde62c583536", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:55.909Z", + "created": "2021-01-13T01:52:44.757Z", + "id": "relationship--0019b0a8-7658-4104-8f89-bd975626036c", + "modified": "2021-01-13T01:52:44.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--735d9f27-fb7a-4d85-a1b8-9262298a83b3", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.909Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2d3329c9-f2c4-4c3c-bc9c-df4135741cf1", - "modified": "2021-01-06T18:30:55.909Z", + "created": "2021-01-13T01:52:44.758Z", + "id": "relationship--ceab6250-1c09-41bf-84d0-6a806f4d870a", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.910Z", - "description": "Continuous Monitoring", - "id": "relationship--8e9ddc17-dc67-41cb-8f14-0281d9995542", - "modified": "2021-01-06T18:30:55.910Z", + "created": "2021-01-13T01:52:44.758Z", + "id": "relationship--cf5707c2-e440-4984-be82-72b5c46f6380", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:55.912Z", + "created": "2021-01-13T01:52:44.758Z", + "id": "relationship--546971a3-1a74-4dcd-ad4b-c1062ec941ba", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:55.912Z", + "created": "2021-01-13T01:52:44.758Z", + "id": "relationship--124f2ef9-c6c9-4b7e-b130-54ee31ae94ff", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.912Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--b8ad08b1-de3e-44e2-8f19-247ee694ee27", - "modified": "2021-01-06T18:30:55.912Z", + "created": "2021-01-13T01:52:44.758Z", + "id": "relationship--5c03d8e1-5da6-4ff6-9aca-bc57b8c2ae80", + "modified": "2021-01-13T01:52:44.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.913Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:55.913Z", + "created": "2021-01-13T01:52:44.759Z", + "id": "relationship--1a8be10f-54d5-48d7-b084-c3d95047ec55", + "modified": "2021-01-13T01:52:44.759Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.913Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--6387f37c-50f8-4955-b895-ebae75e435d8", - "modified": "2021-01-06T18:30:55.913Z", + "created": "2021-01-13T01:52:44.759Z", + "id": "relationship--019c65ba-0b16-407d-a561-1f9cc87a6d39", + "modified": "2021-01-13T01:52:44.759Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--1cbdc079-9f5b-42d4-bcaf-8b906c217e69", - "modified": "2021-01-06T18:30:55.914Z", + "created": "2021-01-13T01:52:44.760Z", + "id": "relationship--d8dce54f-3a0b-44ab-aa50-77f1da21af73", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--0d038216-9c72-4d49-a8aa-efb209629e2b", - "modified": "2021-01-06T18:30:55.914Z", + "created": "2021-01-13T01:52:44.760Z", + "id": "relationship--3b34afe1-45be-4890-acf5-fd91efa085bc", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.914Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--8471bdb3-90ba-4994-8198-d732dbce18ee", - "modified": "2021-01-06T18:30:55.914Z", + "created": "2021-01-13T01:52:44.760Z", + "id": "relationship--e98ea03a-daa1-49db-b7cf-c7f870e83815", + "modified": "2021-01-13T01:52:44.760Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:55.915Z", + "created": "2021-01-13T01:52:44.761Z", + "id": "relationship--a70dd416-53f4-470b-969a-545a0a3f4d73", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--e59623db-2a68-4010-a9f2-3810d2485386", - "modified": "2021-01-06T18:30:55.915Z", + "created": "2021-01-13T01:52:44.761Z", + "id": "relationship--6796e2d4-e549-4363-bde0-2b3be1463bed", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--5836c8b1-0b67-4dea-a048-675552bc0221", - "modified": "2021-01-06T18:30:55.915Z", + "created": "2021-01-13T01:52:44.761Z", + "id": "relationship--0227542d-3a5b-4f6f-9125-899cac6211bc", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.915Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--57c93a7e-294b-4e0c-a05b-2c200c6b18ca", - "modified": "2021-01-06T18:30:55.915Z", + "created": "2021-01-13T01:52:44.761Z", + "id": "relationship--6de4b643-a899-450a-b2de-bf00f3a7a302", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.916Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--d23cfd21-3a6a-4b6b-a566-1b93c4f5c78c", - "modified": "2021-01-06T18:30:55.916Z", + "created": "2021-01-13T01:52:44.761Z", + "id": "relationship--92dcb6a9-92f9-4d17-b9e4-569c8db728b1", + "modified": "2021-01-13T01:52:44.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.917Z", - "description": "Continuous Monitoring", - "id": "relationship--696a55bf-4b4f-4e87-88ef-956d45656350", - "modified": "2021-01-06T18:30:55.917Z", + "created": "2021-01-13T01:52:44.762Z", + "id": "relationship--1c8b2866-0ec3-4ebe-bb95-ce55e0a91835", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.917Z", - "description": "Continuous Monitoring", - "id": "relationship--5fcf0827-22bb-4559-ac02-90e25f62d691", - "modified": "2021-01-06T18:30:55.917Z", + "created": "2021-01-13T01:52:44.762Z", + "id": "relationship--81a29912-cc7a-48d2-af8d-7673e2420fed", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--870e43c2-7a35-4205-8431-c3ae90d35ab1", - "modified": "2021-01-06T18:30:55.918Z", + "created": "2021-01-13T01:52:44.762Z", + "id": "relationship--57e8f8f1-4992-494e-b3c7-08ab3c29c2cd", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:55.918Z", + "created": "2021-01-13T01:52:44.762Z", + "id": "relationship--781ed8c3-76ef-44ca-aa98-454892152d00", + "modified": "2021-01-13T01:52:44.762Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.918Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:55.918Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--24cebf34-24bb-4fc3-a327-66e5fa15dd2d", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.919Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:55.919Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--2a07bd44-a33f-4f08-a2a6-a060c166fcfb", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.919Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--5d8c575a-6333-427b-8426-13c9acbcc366", - "modified": "2021-01-06T18:30:55.919Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--f6de55e6-a492-45c5-ad95-f9a00b832a9d", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--721ccddb-89d9-4070-9fc9-d7a6752e8a6b", - "modified": "2021-01-06T18:30:55.920Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--b5e35ff6-2ea9-4d0f-b131-0f243f38bb6a", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--aabd92a1-d294-4b32-97c9-883c5f05122e", - "modified": "2021-01-06T18:30:55.920Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--61ae1712-228b-4461-a417-5c9a0b42181e", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.920Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--282768c3-7e20-4726-ab21-28f769bba3a2", - "modified": "2021-01-06T18:30:55.920Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--7db3a587-173e-430e-88dd-1e7f343dde23", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", - "id": "relationship--c356d850-4a9e-47b0-a4f7-e324881aed1b", - "modified": "2021-01-06T18:30:55.921Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--e1095415-de0c-4010-836d-3f1ece66ddf2", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--16296210-61ca-4347-bb80-bd38d2674bc5", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", - "id": "relationship--ac1a7f1f-d13d-4bf9-8847-613bb3ef1c04", - "modified": "2021-01-06T18:30:55.921Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.921Z", - "description": "Continuous Monitoring", - "id": "relationship--91e926da-692e-4b08-83bb-ec5e091c4996", - "modified": "2021-01-06T18:30:55.921Z", + "created": "2021-01-13T01:52:44.763Z", + "id": "relationship--13d27254-e8ae-444a-803b-205cc838a988", + "modified": "2021-01-13T01:52:44.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", - "id": "relationship--501cd653-f951-4aba-a92a-b4ec25707e85", - "modified": "2021-01-06T18:30:55.922Z", + "created": "2021-01-13T01:52:44.764Z", + "id": "relationship--511d2c5d-5d5c-4805-a238-6b7d3d33cd9a", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", - "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:55.922Z", + "created": "2021-01-13T01:52:44.764Z", + "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.922Z", - "description": "Information Flow Enforcement", - "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:55.922Z", + "created": "2021-01-13T01:52:44.764Z", + "id": "relationship--d4de1719-a808-4723-b019-0d031c4a3711", + "modified": "2021-01-13T01:52:44.764Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3c74c586-54f0-470f-8b56-477d4c92cbd5", - "modified": "2021-01-06T18:30:55.923Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--e7e1e85c-880e-477f-9e3c-0cf4f5471804", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--40a9d6d0-ac62-41d8-8b52-02a508e20f71", - "modified": "2021-01-06T18:30:55.923Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--bd3c29ac-a4bf-41e6-be34-50322448241e", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.923Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a98cd07c-7f86-4b1f-b963-751cf9c57b11", - "modified": "2021-01-06T18:30:55.923Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--d222bbcf-a83d-441e-a064-b7d143019afa", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:55.924Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--98b1ff19-f102-4c28-9026-2c432f8307b9", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:55.924Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--a59ddd39-d885-4172-8002-a7f072be29db", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.924Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:55.924Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--4c657d3a-0e0b-4c53-8b03-a2e20398ae47", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--35b6de72-f853-4bb5-87f5-786c8705c4c6", - "modified": "2021-01-06T18:30:55.925Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--01f7f211-e7f7-457a-9841-6ec6117c7649", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:55.925Z", + "created": "2021-01-13T01:52:44.765Z", + "id": "relationship--d9eea67f-f203-489d-a0a9-ec896314d16f", + "modified": "2021-01-13T01:52:44.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:55.925Z", + "created": "2021-01-13T01:52:44.766Z", + "id": "relationship--ab8f4931-46a5-4b09-be1c-b08cecbde487", + "modified": "2021-01-13T01:52:44.766Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.925Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--a836bd2e-13c9-4460-9dc5-37580aa7f5e0", - "modified": "2021-01-06T18:30:55.925Z", + "created": "2021-01-13T01:52:44.766Z", + "id": "relationship--9c2756b7-4b83-4cef-9ee5-5081378925bb", + "modified": "2021-01-13T01:52:44.766Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--a48fe1a3-ae5f-43e4-818b-4a61174179f6", - "modified": "2021-01-06T18:30:55.926Z", + "created": "2021-01-13T01:52:44.767Z", + "id": "relationship--63e7f8c0-33f2-47f6-a15d-8ae030f686e6", + "modified": "2021-01-13T01:52:44.767Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--d40d8d8c-f1a8-4199-893c-c4113b4a472d", - "modified": "2021-01-06T18:30:55.926Z", + "created": "2021-01-13T01:52:44.768Z", + "id": "relationship--de586ce6-f005-4bd3-8add-49bed729a58a", + "modified": "2021-01-13T01:52:44.768Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--97e195f0-e5c8-48b0-99f4-edbff224b608", - "modified": "2021-01-06T18:30:55.926Z", + "created": "2021-01-13T01:52:44.769Z", + "id": "relationship--657b3634-0536-4e0f-bbd7-2d6b5b717b5d", + "modified": "2021-01-13T01:52:44.769Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--6a20f6aa-cfeb-4d2f-8a70-b4569ccc0646", - "modified": "2021-01-06T18:30:55.926Z", + "created": "2021-01-13T01:52:44.770Z", + "id": "relationship--41383e6b-8a71-48a1-9b47-13692341fc90", + "modified": "2021-01-13T01:52:44.770Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.926Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--ca85cc5a-c42d-43a2-8126-db82cc54187a", - "modified": "2021-01-06T18:30:55.926Z", + "created": "2021-01-13T01:52:44.770Z", + "id": "relationship--e781835c-e298-40bb-bb47-57b484689db3", + "modified": "2021-01-13T01:52:44.770Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.927Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:55.927Z", + "created": "2021-01-13T01:52:44.771Z", + "id": "relationship--d2b833f6-4d9f-4160-979a-17dd60b9e415", + "modified": "2021-01-13T01:52:44.771Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--70138a09-23fc-4eb4-8b00-9c69d120e517", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.772Z", + "id": "relationship--1a9a0ca2-015d-4b96-bf97-931b8667c048", + "modified": "2021-01-13T01:52:44.772Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.773Z", + "id": "relationship--e886b5ad-8936-4351-8af7-2292cc9eebe7", + "modified": "2021-01-13T01:52:44.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.773Z", + "id": "relationship--00d9bb29-25ef-4ac9-9997-536df33491a1", + "modified": "2021-01-13T01:52:44.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.774Z", + "id": "relationship--44344df7-46f5-4938-8c22-999cdcebaeaf", + "modified": "2021-01-13T01:52:44.774Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.774Z", + "id": "relationship--d5cccbb1-96db-4e48-9c78-7aefa582398e", + "modified": "2021-01-13T01:52:44.774Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a129cf5e-d35b-4719-aeee-c0e394b1ff34", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.775Z", + "id": "relationship--20c8b9ea-d8a4-40bb-afdc-db059fcc7d8f", + "modified": "2021-01-13T01:52:44.775Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.928Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:55.928Z", + "created": "2021-01-13T01:52:44.776Z", + "id": "relationship--dcafa7e3-bf91-481e-91f3-0a403208d438", + "modified": "2021-01-13T01:52:44.776Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.929Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:55.929Z", + "created": "2021-01-13T01:52:44.777Z", + "id": "relationship--8e3b1e5f-49a1-4df9-8b60-ee6ed7ffad51", + "modified": "2021-01-13T01:52:44.777Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.930Z", - "description": "Continuous Monitoring", - "id": "relationship--c975038b-a5f0-4787-85fc-05f46864c127", - "modified": "2021-01-06T18:30:55.930Z", + "created": "2021-01-13T01:52:44.778Z", + "id": "relationship--a840dd6e-5a69-4a1d-be87-3be44ed59acd", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.930Z", - "description": "Continuous Monitoring", - "id": "relationship--e011f9c9-ec87-43e3-b1b0-fedfb161f41d", - "modified": "2021-01-06T18:30:55.930Z", + "created": "2021-01-13T01:52:44.778Z", + "id": "relationship--eaf1a302-9984-488b-bd09-86a46a15884e", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.931Z", - "description": "Information Flow Enforcement", - "id": "relationship--44d5846f-d804-4f79-b0a7-c747be7c86ea", - "modified": "2021-01-06T18:30:55.931Z", + "created": "2021-01-13T01:52:44.778Z", + "id": "relationship--cf03827b-411f-4656-862c-e1696c04110c", + "modified": "2021-01-13T01:52:44.778Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.931Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6acbd57-fa4e-4238-8f1b-abd0f4732f20", - "modified": "2021-01-06T18:30:55.931Z", + "created": "2021-01-13T01:52:44.780Z", + "id": "relationship--88db226a-0e93-450b-af8f-18cb0c92ad3c", + "modified": "2021-01-13T01:52:44.780Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.932Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:55.932Z", + "created": "2021-01-13T01:52:44.781Z", + "id": "relationship--adb20c35-6fdd-468a-8cb1-67bd640ca676", + "modified": "2021-01-13T01:52:44.781Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.933Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:55.933Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--3d76d606-bbcc-48bb-986d-376fc9552032", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.933Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:55.933Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--ffa7f32c-d8a5-4477-825f-e8fb3ae24ec8", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:55.934Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--d9008ebe-1d09-4084-9e79-7516bd129de9", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--6e977228-7dbc-43f2-bc75-00883d1cb17a", - "modified": "2021-01-06T18:30:55.934Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--76e1e539-538c-485b-bf62-5fcf527ac6e4", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.934Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4b6f49cf-d555-4d49-a07b-be77fe630b25", - "modified": "2021-01-06T18:30:55.934Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--e1dc4a7f-ed75-4ee6-a596-5c5f92f262ef", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c7e308f4-f766-4ae8-a294-ccf7be421a4a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.935Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--60633278-8a12-4b20-a475-5860e2a4150f", - "modified": "2021-01-06T18:30:55.935Z", + "created": "2021-01-13T01:52:44.786Z", + "id": "relationship--08f3ca6b-278c-4fcf-8578-d0c2a66e8db6", + "modified": "2021-01-13T01:52:44.786Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.935Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--ee174076-50d1-4c81-9a85-cd3fd6e3e5c0", - "modified": "2021-01-06T18:30:55.935Z", + "created": "2021-01-13T01:52:44.788Z", + "id": "relationship--f5e6e311-25de-4411-a979-25fee80b117f", + "modified": "2021-01-13T01:52:44.788Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.936Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--db530c59-e2d9-4afa-b61f-5f40db9c806e", - "modified": "2021-01-06T18:30:55.936Z", + "created": "2021-01-13T01:52:44.789Z", + "id": "relationship--4c4d3b01-dcc7-4d83-9e36-36a787475b3e", + "modified": "2021-01-13T01:52:44.789Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.936Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3f07573c-1e9a-4b4d-b11f-ff65a6d47f7f", - "modified": "2021-01-06T18:30:55.936Z", + "created": "2021-01-13T01:52:44.789Z", + "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", + "modified": "2021-01-13T01:52:44.789Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0a9b66c5-ff7f-4fba-917f-44aa0c55cb6a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.937Z", - "description": "Continuous Monitoring", - "id": "relationship--d9f86872-1fa9-4e0d-b7f5-aee41d30d280", - "modified": "2021-01-06T18:30:55.937Z", + "created": "2021-01-13T01:52:44.790Z", + "id": "relationship--32955df9-6cc5-4e78-bf0a-d9828e23d344", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.937Z", - "description": "Continuous Monitoring", - "id": "relationship--72ee9363-0c29-4a88-98df-d1cddbb781c8", - "modified": "2021-01-06T18:30:55.937Z", + "created": "2021-01-13T01:52:44.790Z", + "id": "relationship--62174f33-6221-430c-91e0-18881c10f648", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.938Z", - "description": "Information Flow Enforcement", - "id": "relationship--d8e22451-3c97-4920-92c5-9a6c2cfa2832", - "modified": "2021-01-06T18:30:55.938Z", + "created": "2021-01-13T01:52:44.790Z", + "id": "relationship--514d7706-feb6-4c80-bec1-2ca9f5ea7919", + "modified": "2021-01-13T01:52:44.790Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.938Z", - "description": "Information Flow Enforcement", - "id": "relationship--8c01d866-9405-4aee-836c-ce80501e9f67", - "modified": "2021-01-06T18:30:55.938Z", + "created": "2021-01-13T01:52:44.792Z", + "id": "relationship--9dd7b879-5cd1-411e-b60c-9f67ff2a42a7", + "modified": "2021-01-13T01:52:44.792Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.939Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--778d0905-c099-43d7-83cd-4172c0ec69ff", - "modified": "2021-01-06T18:30:55.939Z", + "created": "2021-01-13T01:52:44.794Z", + "id": "relationship--2f8440ce-f4da-41ba-a5d6-37992543a99c", + "modified": "2021-01-13T01:52:44.794Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.939Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fcba7cfc-4a47-446f-8b22-79fe939f4071", - "modified": "2021-01-06T18:30:55.939Z", + "created": "2021-01-13T01:52:44.798Z", + "id": "relationship--a6101bff-5269-4138-9eb0-ae06bc21b3bb", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.940Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a24be6a4-699c-403d-ba39-486e849e66d5", - "modified": "2021-01-06T18:30:55.940Z", + "created": "2021-01-13T01:52:44.798Z", + "id": "relationship--534f4c49-12d9-45ba-afb0-7696c5eaee07", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.940Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4efe4af9-8917-4b1b-b40b-c17cb6dbdb3e", - "modified": "2021-01-06T18:30:55.940Z", + "created": "2021-01-13T01:52:44.798Z", + "id": "relationship--d7f56c13-6c68-46fe-b0fa-a658fdaddcd7", + "modified": "2021-01-13T01:52:44.798Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--c0e8cbd5-30e5-4063-95e0-a2f5068e3164", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.941Z", - "description": "Boundary Protection", - "id": "relationship--a0350100-3212-40d2-a194-83550d5cf6b1", - "modified": "2021-01-06T18:30:55.941Z", + "created": "2021-01-13T01:52:44.799Z", + "id": "relationship--a5de5918-6eaa-4a8a-bb2d-75adb9c6f517", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.942Z", - "description": "Boundary Protection", - "id": "relationship--2251136a-cb32-4dce-ac99-36db0198b18b", - "modified": "2021-01-06T18:30:55.942Z", + "created": "2021-01-13T01:52:44.799Z", + "id": "relationship--61f226af-f878-4c13-ac89-ace930b20ad6", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.944Z", - "description": "Continuous Monitoring", - "id": "relationship--7ed97ff6-18ac-40e3-ac4c-f1288bd6f427", - "modified": "2021-01-06T18:30:55.944Z", + "created": "2021-01-13T01:52:44.799Z", + "id": "relationship--5dc0841a-1ea6-43b5-9f6c-5b036516f595", + "modified": "2021-01-13T01:52:44.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.945Z", - "description": "Information Flow Enforcement", - "id": "relationship--b84716f1-7821-4395-bab3-ebd3f17fcff0", - "modified": "2021-01-06T18:30:55.945Z", + "created": "2021-01-13T01:52:44.800Z", + "id": "relationship--850f67e4-eceb-43c0-969d-eb9ae5c58801", + "modified": "2021-01-13T01:52:44.800Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.946Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--26a56ab4-bbba-4bcf-b303-4f85fa6083c4", - "modified": "2021-01-06T18:30:55.946Z", + "created": "2021-01-13T01:52:44.800Z", + "id": "relationship--28fedaa6-befc-4753-9755-f443a4c1f218", + "modified": "2021-01-13T01:52:44.800Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.947Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3b9fba86-2583-4fe9-916f-85a2ed1eb7a6", - "modified": "2021-01-06T18:30:55.947Z", + "created": "2021-01-13T01:52:44.801Z", + "id": "relationship--7c60d2b5-a4b2-4ff1-999a-0a20e4467f64", + "modified": "2021-01-13T01:52:44.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.948Z", - "description": "Boundary Protection", - "id": "relationship--0f01ef2b-ac8e-4389-bd22-9edf7b6450d6", - "modified": "2021-01-06T18:30:55.948Z", + "created": "2021-01-13T01:52:44.802Z", + "id": "relationship--0805d89e-8b3e-455b-ac15-1236ebb9323f", + "modified": "2021-01-13T01:52:44.802Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.949Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--28922cc3-fa83-4f07-8ee1-c076b3ddf8da", - "modified": "2021-01-06T18:30:55.949Z", + "created": "2021-01-13T01:52:44.813Z", + "id": "relationship--e73da978-37ea-4e0d-af21-d1d80a698494", + "modified": "2021-01-13T01:52:44.813Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.950Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--18ab8f41-d709-4a6d-a47f-317309092e9a", - "modified": "2021-01-06T18:30:55.950Z", + "created": "2021-01-13T01:52:44.813Z", + "id": "relationship--d57b106c-b809-4365-80e1-f1f6b37ca16a", + "modified": "2021-01-13T01:52:44.813Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.950Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--08624c17-1bf1-48c8-98eb-8537b92ef398", - "modified": "2021-01-06T18:30:55.950Z", + "created": "2021-01-13T01:52:44.814Z", + "id": "relationship--0c93d061-43e0-407e-bf44-15f8ae345cf4", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--557bbba8-b503-4c5a-8537-955030e37f13", - "modified": "2021-01-06T18:30:55.952Z", + "created": "2021-01-13T01:52:44.814Z", + "id": "relationship--f19df5b1-a0ad-4570-a996-18a03233f646", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f2f927aa-09c0-4060-9d98-48312736759b", - "modified": "2021-01-06T18:30:55.952Z", + "created": "2021-01-13T01:52:44.814Z", + "id": "relationship--7801cb95-fa03-43c9-9817-f53988e2a944", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.952Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0c159dbe-46f5-4c1f-a357-95811374ec6c", - "modified": "2021-01-06T18:30:55.952Z", + "created": "2021-01-13T01:52:44.814Z", + "id": "relationship--8b7b94f3-27fa-4798-aa75-14cee788060a", + "modified": "2021-01-13T01:52:44.814Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.953Z", - "description": "Continuous Monitoring", - "id": "relationship--b4ec8adf-3ade-4cf8-8e90-918f6f97ac49", - "modified": "2021-01-06T18:30:55.953Z", + "created": "2021-01-13T01:52:44.816Z", + "id": "relationship--eac20450-8fa9-4d6f-a142-b46dca476f89", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.955Z", - "description": "Information Flow Enforcement", - "id": "relationship--72babca1-4c64-4450-848c-96a57909cd64", - "modified": "2021-01-06T18:30:55.955Z", + "created": "2021-01-13T01:52:44.816Z", + "id": "relationship--186849df-68b4-486d-b123-2d946b58ae95", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.956Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4302d4a5-317b-4227-8691-d3c19fd52920", - "modified": "2021-01-06T18:30:55.956Z", + "created": "2021-01-13T01:52:44.816Z", + "id": "relationship--219bb9fb-c1e7-484c-8edc-1bae0ee2330b", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.956Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c482fb86-5806-46e8-aa89-24bed4b2d193", - "modified": "2021-01-06T18:30:55.956Z", + "created": "2021-01-13T01:52:44.816Z", + "id": "relationship--f3512446-d754-4c3b-b663-b859184270ee", + "modified": "2021-01-13T01:52:44.816Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.957Z", - "description": "Boundary Protection", - "id": "relationship--53870ec5-03e4-455a-a07b-d2d95a398d6c", - "modified": "2021-01-06T18:30:55.957Z", + "created": "2021-01-13T01:52:44.817Z", + "id": "relationship--2dce911e-892e-4b00-909a-f900ba8c3ac3", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f1869fa0-7cfb-4b59-b4b2-d31ae7bceafa", - "modified": "2021-01-06T18:30:55.959Z", + "created": "2021-01-13T01:52:44.817Z", + "id": "relationship--3cb42d40-33da-4e60-8ea9-81ad2d1af020", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--845b5763-2f76-412a-99b7-ab95856b954b", - "modified": "2021-01-06T18:30:55.959Z", + "created": "2021-01-13T01:52:44.817Z", + "id": "relationship--6401a018-cfa9-41e7-8e43-ae2fa9b91ca2", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.959Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--be6a7394-6b5b-46ee-92d3-33d26ece03ea", - "modified": "2021-01-06T18:30:55.959Z", + "created": "2021-01-13T01:52:44.817Z", + "id": "relationship--eba33dcd-b96e-4ff2-9d57-20482d48c6fc", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.961Z", - "description": "Continuous Monitoring", - "id": "relationship--542adb5c-ee88-4e32-8b4a-13412d0ce66c", - "modified": "2021-01-06T18:30:55.961Z", + "created": "2021-01-13T01:52:44.817Z", + "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", + "modified": "2021-01-13T01:52:44.817Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.963Z", - "description": "Information Flow Enforcement", - "id": "relationship--bb33f797-f5d6-483a-a5ca-927920e29ea7", - "modified": "2021-01-06T18:30:55.963Z", + "created": "2021-01-13T01:52:44.818Z", + "id": "relationship--81d97f1f-556b-438c-b580-371db457ce8a", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.965Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d55ed387-98f8-49a1-b2b4-63207c0eea14", - "modified": "2021-01-06T18:30:55.965Z", + "created": "2021-01-13T01:52:44.818Z", + "id": "relationship--a9a4bc11-aaf2-4b9a-bd7d-868a37fc652b", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.965Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6bde435b-ab3a-46f6-8b4d-2e246c7b5227", - "modified": "2021-01-06T18:30:55.965Z", + "created": "2021-01-13T01:52:44.818Z", + "id": "relationship--2613da88-0ef7-4661-aebc-5dec9d776061", + "modified": "2021-01-13T01:52:44.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.967Z", - "description": "Boundary Protection", - "id": "relationship--aa2264c1-53e8-4216-9341-d0359b1bb319", - "modified": "2021-01-06T18:30:55.967Z", + "created": "2021-01-13T01:52:44.819Z", + "id": "relationship--651364df-6ef9-4d6e-a9a3-49fa2f14b513", + "modified": "2021-01-13T01:52:44.819Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.969Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c93759b6-67ce-4547-b704-3e3fad5a18e7", - "modified": "2021-01-06T18:30:55.969Z", + "created": "2021-01-13T01:52:44.819Z", + "id": "relationship--4e118dfd-6da9-4b02-9d87-68c93db121b7", + "modified": "2021-01-13T01:52:44.819Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--62138324-415c-4c9c-b1c3-4dc563bcabb9", - "modified": "2021-01-06T18:30:55.970Z", + "created": "2021-01-13T01:52:44.820Z", + "id": "relationship--a237da69-b656-4279-a5f8-0b2af22bc32a", + "modified": "2021-01-13T01:52:44.820Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--35d65108-1646-40f2-a834-134738cc5b34", - "modified": "2021-01-06T18:30:55.970Z", + "created": "2021-01-13T01:52:44.820Z", + "id": "relationship--98de23fb-caad-4e24-a6b4-762c16d12bf1", + "modified": "2021-01-13T01:52:44.820Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.970Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:55.970Z", + "created": "2021-01-13T01:52:44.821Z", + "id": "relationship--b020c338-3637-4543-96c7-5aa6572e6c0f", + "modified": "2021-01-13T01:52:44.821Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.971Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:55.971Z", + "created": "2021-01-13T01:52:44.823Z", + "id": "relationship--f53f01bf-47d6-4e52-ad2e-f4f5522a283f", + "modified": "2021-01-13T01:52:44.823Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.971Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:55.971Z", + "created": "2021-01-13T01:52:44.824Z", + "id": "relationship--bf10402a-9da0-4d94-9a9b-9817e95af199", + "modified": "2021-01-13T01:52:44.824Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.973Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--4a7b435e-5e2a-4b91-ac4c-7ad800db62c1", - "modified": "2021-01-06T18:30:55.973Z", + "created": "2021-01-13T01:52:44.825Z", + "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", + "modified": "2021-01-13T01:52:44.825Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--f940ca1b-1424-4f9d-9b2f-974f41b5da01", - "modified": "2021-01-06T18:30:55.974Z", + "created": "2021-01-13T01:52:44.826Z", + "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", + "modified": "2021-01-13T01:52:44.826Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--fbd85a57-5523-43cc-a3f0-e1737ca9e55e", - "modified": "2021-01-06T18:30:55.974Z", + "created": "2021-01-13T01:52:44.827Z", + "id": "relationship--52ed4c6a-fc9e-48fd-9c8d-7a834a824742", + "modified": "2021-01-13T01:52:44.827Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.974Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:55.974Z", + "created": "2021-01-13T01:52:44.827Z", + "id": "relationship--e6a92422-115d-448f-98e7-55e4d0c9c194", + "modified": "2021-01-13T01:52:44.827Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.975Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:55.975Z", + "created": "2021-01-13T01:52:44.828Z", + "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", + "modified": "2021-01-13T01:52:44.828Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.975Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:55.975Z", + "created": "2021-01-13T01:52:44.828Z", + "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", + "modified": "2021-01-13T01:52:44.828Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.976Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--cc21441f-57c9-4bf0-af10-228cbcc40d7e", - "modified": "2021-01-06T18:30:55.976Z", + "created": "2021-01-13T01:52:44.829Z", + "id": "relationship--538ebdad-5685-4a0f-9ed8-785d853b5e52", + "modified": "2021-01-13T01:52:44.829Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--8ae9f4cd-ad5b-4064-bca0-6ef5c8a5169b", - "modified": "2021-01-06T18:30:55.977Z", + "created": "2021-01-13T01:52:44.829Z", + "id": "relationship--d7ff194b-c3c3-4706-8140-2eb382850d35", + "modified": "2021-01-13T01:52:44.829Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--29a9f9ad-52da-402f-b41a-61735e54307e", - "modified": "2021-01-06T18:30:55.977Z", + "created": "2021-01-13T01:52:44.830Z", + "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", + "modified": "2021-01-13T01:52:44.830Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.977Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--3c5d64ee-850b-41eb-90a3-49fdcc5ef0cf", - "modified": "2021-01-06T18:30:55.977Z", + "created": "2021-01-13T01:52:44.830Z", + "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", + "modified": "2021-01-13T01:52:44.830Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.978Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--3c181cfd-e544-4774-8172-b43dbf7124ea", - "modified": "2021-01-06T18:30:55.978Z", + "created": "2021-01-13T01:52:44.831Z", + "id": "relationship--d11e1e64-3228-4162-921f-7820e53f6cbe", + "modified": "2021-01-13T01:52:44.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.978Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--50146c8e-4bea-4652-b6d4-b81b382bc33a", - "modified": "2021-01-06T18:30:55.978Z", + "created": "2021-01-13T01:52:44.831Z", + "id": "relationship--87065225-f919-47e0-be44-0f3f9837017e", + "modified": "2021-01-13T01:52:44.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--509817e6-b915-47a5-ae82-8b1c937d0577", - "modified": "2021-01-06T18:30:55.979Z", + "created": "2021-01-13T01:52:44.833Z", + "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c9f0cc18-6a31-4138-9cbc-fef9d6acdc10", - "modified": "2021-01-06T18:30:55.979Z", + "created": "2021-01-13T01:52:44.833Z", + "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.979Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c8ef0af3-4b84-4120-9a73-a0753511b14f", - "modified": "2021-01-06T18:30:55.979Z", + "created": "2021-01-13T01:52:44.833Z", + "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", + "modified": "2021-01-13T01:52:44.833Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:55.980Z", + "created": "2021-01-13T01:52:44.835Z", + "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:55.980Z", + "created": "2021-01-13T01:52:44.835Z", + "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.980Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:55.980Z", + "created": "2021-01-13T01:52:44.835Z", + "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", + "modified": "2021-01-13T01:52:44.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:55.981Z", + "created": "2021-01-13T01:52:44.839Z", + "id": "relationship--a832c44f-53eb-410f-85c6-ea153a382a20", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:55.981Z", + "created": "2021-01-13T01:52:44.839Z", + "id": "relationship--4ce104ee-0a69-4298-b5a9-d6422f4a1012", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.981Z", - "description": "Information Flow Enforcement", - "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:55.981Z", + "created": "2021-01-13T01:52:44.839Z", + "id": "relationship--f1ce6924-6ffd-45dc-b1fc-6e5c06fe91a2", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", - "id": "relationship--9fe45e33-cca6-4138-814e-8211c06132ef", - "modified": "2021-01-06T18:30:55.983Z", + "created": "2021-01-13T01:52:44.839Z", + "id": "relationship--ca139f91-dd06-4998-a21b-3b1ffc4a62d1", + "modified": "2021-01-13T01:52:44.839Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", - "id": "relationship--0f04b09e-4ddd-46cf-95ac-85a08f764a21", - "modified": "2021-01-06T18:30:55.983Z", + "created": "2021-01-13T01:52:44.842Z", + "id": "relationship--8dafdaae-0806-4273-8d74-c65c6b95a5a7", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.983Z", - "description": "Continuous Monitoring", - "id": "relationship--af1f597d-8e68-4004-8133-4b6746bc0e4a", - "modified": "2021-01-06T18:30:55.983Z", + "created": "2021-01-13T01:52:44.842Z", + "id": "relationship--c4c68d28-a8c7-4989-9c14-77d2a4d3dcd6", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d3849c68-2757-425e-a9c8-96dc25f1bac2", - "modified": "2021-01-06T18:30:55.985Z", + "created": "2021-01-13T01:52:44.842Z", + "id": "relationship--73b5fba1-38ef-4d20-a908-ba9372e7ce04", + "modified": "2021-01-13T01:52:44.842Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a01afcdf-a093-4bb0-8a4d-e50604dec98c", - "modified": "2021-01-06T18:30:55.985Z", + "created": "2021-01-13T01:52:44.843Z", + "id": "relationship--40ac0d82-1b9d-451c-bf77-729c05a1f07a", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.985Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2c88f31f-1d5f-4728-9405-c262d059fe97", - "modified": "2021-01-06T18:30:55.985Z", + "created": "2021-01-13T01:52:44.843Z", + "id": "relationship--55b134d2-9509-4734-bf3f-38ee0c533a99", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:55.986Z", + "created": "2021-01-13T01:52:44.843Z", + "id": "relationship--e6c87399-7580-4338-8e12-7459719deea3", + "modified": "2021-01-13T01:52:44.843Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--878e7dee-8df7-4536-bf0f-13735df99a12", - "modified": "2021-01-06T18:30:55.986Z", + "created": "2021-01-13T01:52:44.844Z", + "id": "relationship--d19c0cb1-8365-4207-a0c2-10fea0da7ecb", + "modified": "2021-01-13T01:52:44.844Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8de42003-1150-4f7f-b910-8c9a11b86178", - "modified": "2021-01-06T18:30:55.986Z", + "created": "2021-01-13T01:52:44.844Z", + "id": "relationship--2f183400-c518-4358-ba87-4b3ef6b44ab7", + "modified": "2021-01-13T01:52:44.844Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--9e792752-7757-4cc4-8113-937b3f42a502", - "modified": "2021-01-06T18:30:55.986Z", + "created": "2021-01-13T01:52:44.845Z", + "id": "relationship--e545af9d-eff3-4969-97d0-2edfe1e3445a", + "modified": "2021-01-13T01:52:44.845Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.986Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--fb90da55-17ca-40f4-ab75-31851b47c1f9", - "modified": "2021-01-06T18:30:55.986Z", + "created": "2021-01-13T01:52:44.845Z", + "id": "relationship--23d2811b-707e-4f2f-a2f0-33c7947b1a2c", + "modified": "2021-01-13T01:52:44.845Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a4a2e87b-f713-41d8-8b4f-e32dae6d41e6", - "modified": "2021-01-06T18:30:55.987Z", + "created": "2021-01-13T01:52:44.846Z", + "id": "relationship--4ae5ddd8-b6db-488e-a829-5f879285c75a", + "modified": "2021-01-13T01:52:44.846Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0f6dd4ca-9839-4b0f-a2a8-67070c0d394e", - "modified": "2021-01-06T18:30:55.987Z", + "created": "2021-01-13T01:52:44.847Z", + "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", + "modified": "2021-01-13T01:52:44.847Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a7d948d6-676c-4caf-a20b-760ab77899e8", - "modified": "2021-01-06T18:30:55.987Z", + "created": "2021-01-13T01:52:44.848Z", + "id": "relationship--9a06521d-0107-429e-892a-a6e78b746a6d", + "modified": "2021-01-13T01:52:44.848Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.987Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3216f2fc-74eb-4c55-8def-a8552d6a9ae1", - "modified": "2021-01-06T18:30:55.987Z", + "created": "2021-01-13T01:52:44.848Z", + "id": "relationship--01986791-a78d-43f8-8b9c-08498414885d", + "modified": "2021-01-13T01:52:44.848Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:55.988Z", + "created": "2021-01-13T01:52:44.849Z", + "id": "relationship--fbe858c9-8509-44d3-b200-dcd8a50ca881", + "modified": "2021-01-13T01:52:44.849Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--02807646-8527-4c7d-84ea-b3027e76f06b", - "modified": "2021-01-06T18:30:55.988Z", + "created": "2021-01-13T01:52:44.849Z", + "id": "relationship--d9727fa6-ba00-4d77-b1c5-bc96f8c0920c", + "modified": "2021-01-13T01:52:44.849Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c7181a87-03ff-4afa-8bf6-cbf6770d3803", - "modified": "2021-01-06T18:30:55.988Z", + "created": "2021-01-13T01:52:44.850Z", + "id": "relationship--158b4fc1-2622-49e2-a135-2d088025e6fa", + "modified": "2021-01-13T01:52:44.850Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f966fe2b-b911-447d-ae97-b1106e81f31a", - "modified": "2021-01-06T18:30:55.988Z", + "created": "2021-01-13T01:52:44.850Z", + "id": "relationship--1c2e5c03-cff0-403d-a96c-434f85560a1c", + "modified": "2021-01-13T01:52:44.850Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.988Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e957c78e-e256-4fa0-ab42-d4d553f23223", - "modified": "2021-01-06T18:30:55.988Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--2aa846ed-a6b9-4f45-8875-9c1eab58fa39", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.989Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b780ed8d-8478-4a1d-ba99-7a1775c54570", - "modified": "2021-01-06T18:30:55.989Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--bdc2d11a-1fe5-42e1-b616-1cba1c998190", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:55.990Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--576ac52c-3904-42bc-b57e-99a4f9561a36", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", - "id": "relationship--0a904469-4ccf-434b-a544-105aa1442dbb", - "modified": "2021-01-06T18:30:55.990Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--0bdb4507-6620-4b72-92d7-26dacd43290c", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.990Z", - "description": "Information System Monitoring", - "id": "relationship--0d212d1d-2d64-41f2-bf43-e91b04838a3b", - "modified": "2021-01-06T18:30:55.990Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--aef2e682-b12c-40fc-956e-b3145fb07917", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.991Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--a9cb3c42-533b-413e-97f6-d3103a2e5d79", - "modified": "2021-01-06T18:30:55.991Z", + "created": "2021-01-13T01:52:44.851Z", + "id": "relationship--e4197679-9762-4a84-8fa1-885950315e06", + "modified": "2021-01-13T01:52:44.851Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.991Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--fa1242a7-e4ae-4c41-9e82-10c814511e8f", - "modified": "2021-01-06T18:30:55.991Z", + "created": "2021-01-13T01:52:44.852Z", + "id": "relationship--f2c240ab-173b-431a-b3c1-0ebf7c181cde", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.992Z", - "description": "Information System Monitoring", - "id": "relationship--f783e732-6328-408b-9383-b7adcb9b89d7", - "modified": "2021-01-06T18:30:55.992Z", + "created": "2021-01-13T01:52:44.852Z", + "id": "relationship--b83ff363-d22a-4e7a-a29c-02b3dc79fe7c", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.993Z", - "description": "Transmission Confidentiality and Integrity ", - "id": "relationship--86f46710-bafc-4bf3-b63d-2a7812ac4439", - "modified": "2021-01-06T18:30:55.993Z", + "created": "2021-01-13T01:52:44.852Z", + "id": "relationship--f299fb0e-bd84-4baa-9086-8587b9b28131", + "modified": "2021-01-13T01:52:44.852Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--3fc26ed6-eb7b-4c8b-9bf4-d0a0490b77ab", - "modified": "2021-01-06T18:30:55.994Z", + "created": "2021-01-13T01:52:44.853Z", + "id": "relationship--fc241480-8869-40b0-975e-fd724ae56560", + "modified": "2021-01-13T01:52:44.853Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--0852b8d7-5ef8-4387-aecd-35a92357e07c", - "modified": "2021-01-06T18:30:55.994Z", + "created": "2021-01-13T01:52:44.853Z", + "id": "relationship--67a335c5-7c20-4ba3-8ac5-ed60b2a6610f", + "modified": "2021-01-13T01:52:44.853Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.994Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c3bbccbf-29af-49b3-b6ec-3202edda962e", - "modified": "2021-01-06T18:30:55.994Z", + "created": "2021-01-13T01:52:44.854Z", + "id": "relationship--f2fd1cb5-45c7-4736-96fa-38105170a250", + "modified": "2021-01-13T01:52:44.854Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.995Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ea42d059-8a8b-420f-9d94-5b8764e15f1e", - "modified": "2021-01-06T18:30:55.995Z", + "created": "2021-01-13T01:52:44.855Z", + "id": "relationship--cc15a9b8-e9e7-4bc4-8f79-d1e005cb9958", + "modified": "2021-01-13T01:52:44.855Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.996Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--799bc13f-f4d9-4435-bd00-c0850eb0afb6", - "modified": "2021-01-06T18:30:55.996Z", + "created": "2021-01-13T01:52:44.856Z", + "id": "relationship--39f5239f-d28b-4113-aaae-44101d44fcc7", + "modified": "2021-01-13T01:52:44.856Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.997Z", - "description": "Information System Monitoring", - "id": "relationship--7779fcea-f990-49ca-92ab-2ee1aa6fcf28", - "modified": "2021-01-06T18:30:55.997Z", + "created": "2021-01-13T01:52:44.857Z", + "id": "relationship--7da75d69-fc0b-40b0-bc99-623d698a7113", + "modified": "2021-01-13T01:52:44.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4e4f78be-17a7-49a4-b003-863df6b55ec3", - "modified": "2021-01-06T18:30:55.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3672e42a-d702-4538-8d56-d6641892c81c", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.858Z", + "id": "relationship--a393dd6d-9a6b-456b-a351-f167efcb712b", + "modified": "2021-01-13T01:52:44.858Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2b7657f3-f02d-4c9b-9461-e94422903ace", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.858Z", + "id": "relationship--6406890c-c40f-437d-a93a-eb201d40a074", + "modified": "2021-01-13T01:52:44.858Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d06f0c5d-dd11-46c9-a891-adbec527106d", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.860Z", + "id": "relationship--143ea734-657a-402b-8045-883fff88ccb1", + "modified": "2021-01-13T01:52:44.860Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6f8012ff-7848-4d5a-9f27-b7727276c789", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.861Z", + "id": "relationship--752fd115-c5b9-4ec1-80c7-ad673695e10e", + "modified": "2021-01-13T01:52:44.861Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d2e8085d-19ce-4f2c-83c1-817f037691ef", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.861Z", + "id": "relationship--4e9cb538-86d5-482c-827d-dcb3e2019867", + "modified": "2021-01-13T01:52:44.861Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.998Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4d70516a-b330-45da-8d01-b20593b27571", - "modified": "2021-01-06T18:30:55.998Z", + "created": "2021-01-13T01:52:44.862Z", + "id": "relationship--50855def-4ee1-492a-8b26-567206f7868a", + "modified": "2021-01-13T01:52:44.862Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:55.999Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--63711891-bb66-477f-915f-7459f288eb5d", - "modified": "2021-01-06T18:30:55.999Z", + "created": "2021-01-13T01:52:44.862Z", + "id": "relationship--197945dd-67fa-4a30-91b7-c29ca49bd55d", + "modified": "2021-01-13T01:52:44.862Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ef74fa7e-d774-4d16-8957-4013b9404b19", - "modified": "2021-01-06T18:30:56.000Z", + "created": "2021-01-13T01:52:44.863Z", + "id": "relationship--4a6c7cb9-0797-4736-bb06-6d5ef7ade272", + "modified": "2021-01-13T01:52:44.863Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--9be4aeba-d642-4076-923d-304171c4cc48", - "modified": "2021-01-06T18:30:56.000Z", + "created": "2021-01-13T01:52:44.863Z", + "id": "relationship--9c47fe7d-cd84-4f20-ad05-84d73f683aca", + "modified": "2021-01-13T01:52:44.863Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5a7104bb-8391-4592-9f61-7a4f80bf8544", - "modified": "2021-01-06T18:30:56.000Z", + "created": "2021-01-13T01:52:44.864Z", + "id": "relationship--b34f6913-c617-4976-ad0c-cdd82b50d199", + "modified": "2021-01-13T01:52:44.864Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.000Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--9d4e7787-0136-4249-a155-e1e83bddac1b", - "modified": "2021-01-06T18:30:56.000Z", + "created": "2021-01-13T01:52:44.865Z", + "id": "relationship--4ff00de4-192e-435d-937e-9eba29a30f60", + "modified": "2021-01-13T01:52:44.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.001Z", - "description": "Information System Monitoring", - "id": "relationship--5e91dc7a-692b-4bb9-b4f8-91e3cd1d13ac", - "modified": "2021-01-06T18:30:56.001Z", + "created": "2021-01-13T01:52:44.865Z", + "id": "relationship--b958d134-787a-42ee-945a-19b1265fd121", + "modified": "2021-01-13T01:52:44.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.002Z", - "description": "Information System Monitoring", - "id": "relationship--f0600d91-6cc3-4e2a-87d9-5f7ca14cf7dc", - "modified": "2021-01-06T18:30:56.002Z", + "created": "2021-01-13T01:52:44.866Z", + "id": "relationship--30135648-de30-4879-af1f-e02862359e9d", + "modified": "2021-01-13T01:52:44.866Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--5f0e565f-5779-4223-8cd1-ea5f06e50218", - "modified": "2021-01-06T18:30:56.003Z", + "created": "2021-01-13T01:52:44.867Z", + "id": "relationship--d23cfd21-3a6a-4b6b-a566-1b93c4f5c78c", + "modified": "2021-01-13T01:52:44.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--84a3724c-689a-4fd7-8272-664677deab0b", - "modified": "2021-01-06T18:30:56.003Z", + "created": "2021-01-13T01:52:44.868Z", + "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", + "modified": "2021-01-13T01:52:44.868Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--f43904ed-b2a4-4f89-ab7b-283c9ca4e2da", - "modified": "2021-01-06T18:30:56.003Z", + "created": "2021-01-13T01:52:44.869Z", + "id": "relationship--9341deda-0818-4af1-8390-1d3175d7117b", + "modified": "2021-01-13T01:52:44.869Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c2eaf4a6-f60c-4f04-9af1-d1abd0aa7d19", - "modified": "2021-01-06T18:30:56.003Z", + "created": "2021-01-13T01:52:44.869Z", + "id": "relationship--469aed6b-d464-4aaf-a41f-2cf81cdcdb5f", + "modified": "2021-01-13T01:52:44.869Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.003Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--27aa2137-c7a6-4543-afc4-d2bececabb93", - "modified": "2021-01-06T18:30:56.003Z", + "created": "2021-01-13T01:52:44.870Z", + "id": "relationship--86b898d2-239c-4208-8a40-17f480b52bf9", + "modified": "2021-01-13T01:52:44.870Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d0a75b48-9934-416a-9d37-2db71175bd2a", - "modified": "2021-01-06T18:30:56.004Z", + "created": "2021-01-13T01:52:44.871Z", + "id": "relationship--97e5ef9d-33a5-447a-98c6-0b387b5f699e", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--833f5af4-e2cd-4b1e-9c73-369c3325e486", - "modified": "2021-01-06T18:30:56.004Z", + "created": "2021-01-13T01:52:44.871Z", + "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c7ebb3ce-45f3-4130-983c-770e815e249c", - "modified": "2021-01-06T18:30:56.004Z", + "created": "2021-01-13T01:52:44.871Z", + "id": "relationship--39971e26-d930-42ea-9bc5-0848f4f43b47", + "modified": "2021-01-13T01:52:44.871Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.004Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--5173c088-4c96-4064-86a8-4a1cba7c688e", - "modified": "2021-01-06T18:30:56.004Z", + "created": "2021-01-13T01:52:44.872Z", + "id": "relationship--7d83f67f-9584-4fa0-a80e-6941395b2890", + "modified": "2021-01-13T01:52:44.872Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--664fb7d3-7276-4ae0-876f-b1ff6d45a53d", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.873Z", + "id": "relationship--ed52f462-b9db-4e91-b77c-3a0f3417d6b2", + "modified": "2021-01-13T01:52:44.873Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6f6ddabf-0cf2-444e-b763-5d90c3236145", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.874Z", + "id": "relationship--2c671f6b-94ea-43c6-804f-e290df41a74c", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1f8b9948-6c69-4004-a053-2e1163fe3ac2", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.874Z", + "id": "relationship--7d16a9fe-46e3-48c1-a0f0-230771560409", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--18ade7d5-2b9c-479a-af07-51709938c257", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.874Z", + "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", + "modified": "2021-01-13T01:52:44.874Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6f2885de-226c-4d84-888b-3987cc8fa066", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.875Z", + "id": "relationship--6ce0f9df-ded1-4475-ac0c-6bfffa151773", + "modified": "2021-01-13T01:52:44.875Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.005Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--31700cbc-6045-408e-b41c-2c95f9867ef4", - "modified": "2021-01-06T18:30:56.005Z", + "created": "2021-01-13T01:52:44.876Z", + "id": "relationship--19bc92c2-915b-4e0b-9059-40278e68b125", + "modified": "2021-01-13T01:52:44.876Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.006Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--29f84893-994a-4ae6-b7bc-0c63c2eb1c5e", - "modified": "2021-01-06T18:30:56.006Z", + "created": "2021-01-13T01:52:44.877Z", + "id": "relationship--9a929e83-edb6-4684-8ad3-973c49c515f0", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--77b26044-b2f1-4a52-b923-eb0f748b8e98", - "modified": "2021-01-06T18:30:56.007Z", + "created": "2021-01-13T01:52:44.877Z", + "id": "relationship--404ac666-65d7-43b8-bf9d-f999309ec164", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--265d70da-6b4b-48e7-8058-ceedd8656711", - "modified": "2021-01-06T18:30:56.007Z", + "created": "2021-01-13T01:52:44.877Z", + "id": "relationship--5e39bde1-36a3-4ce5-8364-60dcdaec71e6", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ba948745-14c4-4787-a098-1c358ea7426d", - "modified": "2021-01-06T18:30:56.007Z", + "created": "2021-01-13T01:52:44.877Z", + "id": "relationship--6064d190-3691-4828-bf84-c6aacc445a98", + "modified": "2021-01-13T01:52:44.877Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--80a1cb12-16d7-413c-80dc-ab40e764f7fa", - "modified": "2021-01-06T18:30:56.007Z", + "created": "2021-01-13T01:52:44.878Z", + "id": "relationship--ff69e895-8ae0-416d-9a2a-ac336efac6c7", + "modified": "2021-01-13T01:52:44.878Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.007Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1a8e9f84-f614-4893-be25-edd777f7d81c", - "modified": "2021-01-06T18:30:56.007Z", + "created": "2021-01-13T01:52:44.878Z", + "id": "relationship--2f6a5e3f-a3fa-4a7d-b344-ec1bc9cb6e88", + "modified": "2021-01-13T01:52:44.878Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e12d7fba-aee9-4609-8ef2-227a384628bf", - "modified": "2021-01-06T18:30:56.008Z", + "created": "2021-01-13T01:52:44.879Z", + "id": "relationship--9f74e402-1373-450c-b77c-b6a3f78e51b5", + "modified": "2021-01-13T01:52:44.879Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--dd78a432-76ec-43a9-933a-6567356c72ab", - "modified": "2021-01-06T18:30:56.008Z", + "created": "2021-01-13T01:52:44.879Z", + "id": "relationship--a9d2cfdc-a416-4eee-b1c1-982dd6bda10e", + "modified": "2021-01-13T01:52:44.879Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.008Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--781ed8c3-76ef-44ca-aa98-454892152d00", - "modified": "2021-01-06T18:30:56.008Z", + "created": "2021-01-13T01:52:44.880Z", + "id": "relationship--477d3b14-0cab-48c4-adb2-b39cc2c3317b", + "modified": "2021-01-13T01:52:44.880Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--24cebf34-24bb-4fc3-a327-66e5fa15dd2d", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.881Z", + "id": "relationship--8b147ba8-5f50-4bd3-9364-b8b3be2fffe2", + "modified": "2021-01-13T01:52:44.881Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2a07bd44-a33f-4f08-a2a6-a060c166fcfb", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.882Z", + "id": "relationship--acee6bd3-24a4-4fc0-961c-dca4e94b3df1", + "modified": "2021-01-13T01:52:44.882Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--00e91bee-faf6-4906-b891-a94129353157", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.882Z", + "id": "relationship--625957df-b139-4543-a6f6-b55e3caf1ac1", + "modified": "2021-01-13T01:52:44.882Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--84806b18-2d8c-4211-86ff-4176633b037c", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.883Z", + "id": "relationship--e5543133-a383-4f77-ae50-a1f0ae66a43e", + "modified": "2021-01-13T01:52:44.883Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8406d0de-89c1-4a4c-bbf7-ba4d2f16fd8a", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.884Z", + "id": "relationship--c3658e2e-1308-4451-bfe2-0d4f5c201d29", + "modified": "2021-01-13T01:52:44.884Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--a1b014a5-b390-401e-a2b0-4385d1f9faf7", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--7164def6-e9a9-4b50-8ead-e4ba78217556", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.884Z", + "id": "relationship--336a4d09-48b5-439f-90c9-0e6cf472f6a4", + "modified": "2021-01-13T01:52:44.884Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--c356be45-b706-44f2-83d2-2db312a412b1", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.885Z", + "id": "relationship--195ffbec-4120-4b3f-9bc5-db73f77dc564", + "modified": "2021-01-13T01:52:44.885Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.009Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:56.009Z", + "created": "2021-01-13T01:52:44.886Z", + "id": "relationship--34515ff7-2ec4-435a-b8e1-a6c8cf9ac0f1", + "modified": "2021-01-13T01:52:44.886Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--13d27254-e8ae-444a-803b-205cc838a988", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.887Z", + "id": "relationship--9927074b-0451-48d5-be7c-07ef333c92b2", + "modified": "2021-01-13T01:52:44.887Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--511d2c5d-5d5c-4805-a238-6b7d3d33cd9a", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.887Z", + "id": "relationship--f3564029-0093-4361-a9f1-aef2e67f3c5b", + "modified": "2021-01-13T01:52:44.887Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.888Z", + "id": "relationship--b0ac7c56-6db4-48fc-bd7b-8c61be44b013", + "modified": "2021-01-13T01:52:44.888Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d4de1719-a808-4723-b019-0d031c4a3711", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.889Z", + "id": "relationship--9523230b-3e67-49a9-83d5-c54811b8b4b8", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1aa4221b-2d10-45f8-93e9-0016e9982952", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.889Z", + "id": "relationship--eda4a8c4-2e31-4e55-9532-061d31fe2f3d", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--eb017b1c-3824-44c5-9e1e-ab4141d1c4f1", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.889Z", + "id": "relationship--205bb0c4-2cd9-4a6a-a38f-2826a366f068", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4108871c-fe11-4810-8c2d-cd632564dcff", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.889Z", + "id": "relationship--14b8eb4d-b915-4d5c-a86e-84b5a25cc70c", + "modified": "2021-01-13T01:52:44.889Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.010Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a05f561d-d3b2-40fa-8cb4-d7b0a277697f", - "modified": "2021-01-06T18:30:56.010Z", + "created": "2021-01-13T01:52:44.890Z", + "id": "relationship--e4d979f4-d4da-4364-b813-857c55ad015a", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.011Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4dc17019-3bbb-425b-a941-5403f375295f", - "modified": "2021-01-06T18:30:56.011Z", + "created": "2021-01-13T01:52:44.890Z", + "id": "relationship--1a8b4b2a-95e3-49b9-9796-0defc137d698", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.011Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b591e495-bdf6-4ffa-b3ec-e6113c0615ba", - "modified": "2021-01-06T18:30:56.011Z", + "created": "2021-01-13T01:52:44.890Z", + "id": "relationship--f2c17964-4cc5-4b47-8241-0777fb73849b", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8e3a2f42-ba76-4703-b9cd-fee2eaea4a0c", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.890Z", + "id": "relationship--a00e0723-9fef-4d96-8fe3-bb6ef4236f8b", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--446b6a68-a1fc-4170-950f-af7a4066aed9", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.890Z", + "id": "relationship--548a3181-9bdc-459d-853b-3c84dcbb7894", + "modified": "2021-01-13T01:52:44.890Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f6a668ac-6fe7-4a72-b85d-989dc38866f2", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.891Z", + "id": "relationship--e253f31a-a682-43d8-b931-66b7ef7d4c70", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3e46cf76-0a60-4128-b662-b9434c42c200", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.891Z", + "id": "relationship--d13f9113-b8f3-413d-b60d-c9e07bd191af", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.891Z", + "id": "relationship--aeb227b6-13e9-40e0-8011-5a089e041b26", + "modified": "2021-01-13T01:52:44.891Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6cecb992-1204-4f09-946d-e7e005175642", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.892Z", + "id": "relationship--e4c0ca75-cf7b-4069-929c-dbd584a9dcaa", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.012Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4e75bebe-f52c-46f3-b4c5-763dcd8da86f", - "modified": "2021-01-06T18:30:56.012Z", + "created": "2021-01-13T01:52:44.892Z", + "id": "relationship--00725ce3-6aa2-4e9d-81b6-a235f03da7af", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.013Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:56.013Z", + "created": "2021-01-13T01:52:44.892Z", + "id": "relationship--08d3cbff-0232-4f6e-816b-16cc0a26cd4e", + "modified": "2021-01-13T01:52:44.892Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.013Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f6300e49-0277-45fe-9b4e-b881d2bb2e15", - "modified": "2021-01-06T18:30:56.013Z", + "created": "2021-01-13T01:52:44.894Z", + "id": "relationship--cf127856-ae24-46d0-812b-3efcc5c255fa", + "modified": "2021-01-13T01:52:44.894Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--83fbe489-1bd0-4516-a849-4d2e818757a4", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--1a8be10f-54d5-48d7-b084-c3d95047ec55", - "modified": "2021-01-06T18:30:56.014Z", + "created": "2021-01-13T01:52:44.896Z", + "id": "relationship--3d0e00b7-2911-466e-a00b-e5bab5e65fd1", + "modified": "2021-01-13T01:52:44.896Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--019c65ba-0b16-407d-a561-1f9cc87a6d39", - "modified": "2021-01-06T18:30:56.014Z", + "created": "2021-01-13T01:52:44.896Z", + "id": "relationship--bb528a4c-1d0a-4e53-a5db-b8edd5cf032d", + "modified": "2021-01-13T01:52:44.896Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--6e561e80-7062-4695-ab3b-03e631acbfc1", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.014Z", - "description": "Information System Monitoring", - "id": "relationship--d8dce54f-3a0b-44ab-aa50-77f1da21af73", - "modified": "2021-01-06T18:30:56.014Z", + "created": "2021-01-13T01:52:44.897Z", + "id": "relationship--6a73899d-4a49-4cb3-8c14-471673fb978f", + "modified": "2021-01-13T01:52:44.897Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.015Z", - "description": "Information System Monitoring", - "id": "relationship--3b34afe1-45be-4890-acf5-fd91efa085bc", - "modified": "2021-01-06T18:30:56.015Z", + "created": "2021-01-13T01:52:44.898Z", + "id": "relationship--e9e0a227-225f-4279-b46f-cd80c31d52d6", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.015Z", - "description": "Information System Monitoring", - "id": "relationship--e98ea03a-daa1-49db-b7cf-c7f870e83815", - "modified": "2021-01-06T18:30:56.015Z", + "created": "2021-01-13T01:52:44.898Z", + "id": "relationship--72d758f5-8e18-4c83-b383-850a526e3c1d", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.016Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--be91b94b-6b17-408e-883f-404b7e34a4b0", - "modified": "2021-01-06T18:30:56.016Z", + "created": "2021-01-13T01:52:44.898Z", + "id": "relationship--f963ef43-0761-4c9b-a10b-4a5beb0c24f7", + "modified": "2021-01-13T01:52:44.898Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.016Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--141ca8a7-b84a-4dec-8874-9420c6752b3c", - "modified": "2021-01-06T18:30:56.016Z", + "created": "2021-01-13T01:52:44.899Z", + "id": "relationship--62c5fe71-8ede-4640-a965-d5c242926fbd", + "modified": "2021-01-13T01:52:44.899Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.017Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--2ca75c45-6725-4564-9710-04ab699e2192", - "modified": "2021-01-06T18:30:56.017Z", + "created": "2021-01-13T01:52:44.900Z", + "id": "relationship--adcc6eba-5fd3-4eb9-8c0f-c5f4bb5afcae", + "modified": "2021-01-13T01:52:44.900Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.017Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--0c557e10-209f-47b4-9416-05e65376fff3", - "modified": "2021-01-06T18:30:56.017Z", + "created": "2021-01-13T01:52:44.901Z", + "id": "relationship--f45e1cb0-b478-4086-88fa-3410324dbd7c", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.018Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--09fa589a-1fec-4f03-9b69-c51a11c07313", - "modified": "2021-01-06T18:30:56.018Z", + "created": "2021-01-13T01:52:44.901Z", + "id": "relationship--0bf3870a-c597-4bd0-aa22-305bc7af56bf", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--595e2ff7-1f0e-4ed9-a5d4-c505ac9d235c", - "modified": "2021-01-06T18:30:56.019Z", + "created": "2021-01-13T01:52:44.901Z", + "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--6d23ebbf-9015-48bd-a154-62ac14d51f41", - "modified": "2021-01-06T18:30:56.019Z", + "created": "2021-01-13T01:52:44.901Z", + "id": "relationship--fa667e8a-500b-4fb8-8732-4ac2ddbafd4d", + "modified": "2021-01-13T01:52:44.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.019Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--9f53fb73-e8a5-4af4-b879-9ce0bfdbc87c", - "modified": "2021-01-06T18:30:56.019Z", + "created": "2021-01-13T01:52:44.902Z", + "id": "relationship--483aaab3-bdca-4f9a-bb66-bc5084025940", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--2c54bc89-0b38-440e-951e-1afa90dae626", - "modified": "2021-01-06T18:30:56.020Z", + "created": "2021-01-13T01:52:44.902Z", + "id": "relationship--19e2ed75-dfd9-42f4-bb05-a1200891b673", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b2dce946-5e31-4f1f-9cba-e00a35bef136", - "modified": "2021-01-06T18:30:56.020Z", + "created": "2021-01-13T01:52:44.902Z", + "id": "relationship--419c8945-5d67-4461-a076-c6e61f7e9548", + "modified": "2021-01-13T01:52:44.902Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--a81f5ac6-1220-4555-bc73-f94cf7b43629", - "modified": "2021-01-06T18:30:56.020Z", + "created": "2021-01-13T01:52:44.903Z", + "id": "relationship--ff3ca4b7-e58d-4b86-91dc-1165f1cd0566", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.020Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d266a1ad-91f7-4f72-aa64-503d7238d641", - "modified": "2021-01-06T18:30:56.020Z", + "created": "2021-01-13T01:52:44.903Z", + "id": "relationship--107b9e36-2de2-4528-9495-c7fee3f11da0", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.021Z", - "description": "Information System Monitoring", - "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.021Z", + "created": "2021-01-13T01:52:44.903Z", + "id": "relationship--5ab4874e-5ad7-448e-a9d6-b9b9e63b4214", + "modified": "2021-01-13T01:52:44.903Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.022Z", - "description": "Information System Monitoring", - "id": "relationship--bd29622d-4705-44f6-b44b-3cfa4f8eec81", - "modified": "2021-01-06T18:30:56.022Z", + "created": "2021-01-13T01:52:44.904Z", + "id": "relationship--6bc33803-59b6-41d3-9962-9fb408ab9e51", + "modified": "2021-01-13T01:52:44.904Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.022Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0fb60404-9453-4f86-a882-de2a4e79e203", - "modified": "2021-01-06T18:30:56.022Z", + "created": "2021-01-13T01:52:44.904Z", + "id": "relationship--e854ef3b-8a99-4aa8-a922-4f1b67573e60", + "modified": "2021-01-13T01:52:44.904Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--f7ee2086-3328-4c6b-a279-95a94149ddf2", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--330442e2-43fc-4bd9-a32b-db4792083f6b", - "modified": "2021-01-06T18:30:56.023Z", + "created": "2021-01-13T01:52:44.905Z", + "id": "relationship--ad15cecb-64ad-4c8b-b6e7-9b29d2e02ccd", + "modified": "2021-01-13T01:52:44.905Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1cf67c0d-3a01-49b9-b4bc-20e962b6fe7f", - "modified": "2021-01-06T18:30:56.023Z", + "created": "2021-01-13T01:52:44.905Z", + "id": "relationship--9adb14da-d6ae-4953-8323-df9839ba237e", + "modified": "2021-01-13T01:52:44.905Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--0077c907-3099-43b5-9ae9-c65403852235", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.023Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--77d076e8-5dc6-458e-824a-103749af5f03", - "modified": "2021-01-06T18:30:56.023Z", + "created": "2021-01-13T01:52:44.906Z", + "id": "relationship--bcc994b0-b1cb-474f-8c05-4d284fb284d5", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.024Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--30a2e61d-da9e-466d-a5f6-e4f8534a09fe", - "modified": "2021-01-06T18:30:56.024Z", + "created": "2021-01-13T01:52:44.906Z", + "id": "relationship--190b1b8e-5564-4ee5-8c6f-b230763b9136", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.024Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5da4e539-17bd-462a-a087-b811aefd62c2", - "modified": "2021-01-06T18:30:56.024Z", + "created": "2021-01-13T01:52:44.906Z", + "id": "relationship--20c5b01b-54ab-4889-b5ce-22072e38e6fb", + "modified": "2021-01-13T01:52:44.906Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.025Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b65ebc45-6d0b-48fe-bd38-654fac4924b2", - "modified": "2021-01-06T18:30:56.025Z", + "created": "2021-01-13T01:52:44.907Z", + "id": "relationship--259ce454-0ab3-4f93-a553-d64d3ca583ef", + "modified": "2021-01-13T01:52:44.907Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.025Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3fae1271-81ac-4082-8b31-dda2515aaf09", - "modified": "2021-01-06T18:30:56.025Z", + "created": "2021-01-13T01:52:44.908Z", + "id": "relationship--432ac5cd-229c-457c-ac6e-2c03343d7771", + "modified": "2021-01-13T01:52:44.908Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.908Z", + "id": "relationship--92aeed10-428d-4da2-bef6-6c002a3fbefc", + "modified": "2021-01-13T01:52:44.908Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.026Z", - "description": "Least Functionality", - "id": "relationship--bc57be28-9417-42a4-95e5-a2c062696649", - "modified": "2021-01-06T18:30:56.026Z", + "created": "2021-01-13T01:52:44.909Z", + "id": "relationship--7d869253-d06e-40ee-8466-5da197e157ec", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.027Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ce978882-dd45-435b-b15e-6c7469bcf5c6", - "modified": "2021-01-06T18:30:56.027Z", + "created": "2021-01-13T01:52:44.909Z", + "id": "relationship--17adbbfa-1728-4803-a8ab-09566adad8e2", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.027Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--e540a916-fc83-4f9c-8f48-8a40ec8182c8", - "modified": "2021-01-06T18:30:56.027Z", + "created": "2021-01-13T01:52:44.909Z", + "id": "relationship--7c737d8a-38be-4d9b-bfe8-a81a28f3c38d", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--38200800-188e-4e29-a436-60195d3848d6", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.909Z", + "id": "relationship--994574d3-ba05-4150-8136-3c41bd10d7e7", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--e59a79b6-d89f-494f-a15f-a7d3f111d836", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.909Z", + "id": "relationship--46bd17a7-5251-47dc-ad51-a9ee4f6b331b", + "modified": "2021-01-13T01:52:44.909Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a8356d70-ed26-43ba-a583-90d2b51a1214", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.910Z", + "id": "relationship--f3824fe4-c1f2-4704-b346-a43185f6d0ff", + "modified": "2021-01-13T01:52:44.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--75646472-325d-4002-a5d4-8aa27ebfb0c5", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.911Z", + "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", + "modified": "2021-01-13T01:52:44.911Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--101d889c-f56a-4df4-aa31-e7a86475a557", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.911Z", + "id": "relationship--c5fc1e05-e455-4029-9199-f108cb4f0093", + "modified": "2021-01-13T01:52:44.911Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--13e0ccb9-06e6-4662-b197-85b701b2a7fc", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.912Z", + "id": "relationship--b72ff145-0b06-4c79-8019-28efc0623e3d", + "modified": "2021-01-13T01:52:44.912Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.028Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--937f318b-d5f6-4f6c-8054-db958aade8cf", - "modified": "2021-01-06T18:30:56.028Z", + "created": "2021-01-13T01:52:44.912Z", + "id": "relationship--30353949-dbdd-4823-9164-e3df0ff16269", + "modified": "2021-01-13T01:52:44.912Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--14e511bb-8726-45ca-8839-34ba8c30430c", - "modified": "2021-01-06T18:30:56.029Z", + "created": "2021-01-13T01:52:44.913Z", + "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", + "modified": "2021-01-13T01:52:44.913Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--57596e1b-1a50-40c1-b392-61230c5b9dcf", - "modified": "2021-01-06T18:30:56.029Z", + "created": "2021-01-13T01:52:44.913Z", + "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", + "modified": "2021-01-13T01:52:44.913Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.029Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ecdd331e-f02e-41ac-b396-365987076d4a", - "modified": "2021-01-06T18:30:56.029Z", + "created": "2021-01-13T01:52:44.915Z", + "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", + "modified": "2021-01-13T01:52:44.915Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8788fbac-7012-4684-9e17-527e98b9e806", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.915Z", + "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", + "modified": "2021-01-13T01:52:44.915Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e9179261-febf-4220-bf37-15af63ac70ac", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1d8fb7cc-57f1-4c72-b855-39dfa735b109", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--acf42649-8e25-4e23-b90e-ccdd30905b2f", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8017b080-dfa6-4e62-8fb6-7a3c9a803ecb", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--7e7e336f-3382-46a8-a03e-d6027ff241c4", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--c1850450-710e-47a0-a270-167683362403", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.030Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--52b451b2-d732-44a9-8dbe-137790e82c81", - "modified": "2021-01-06T18:30:56.030Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.031Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--7bf26e5c-85f9-4285-ba15-9095d56e8f44", - "modified": "2021-01-06T18:30:56.031Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--2d1d7769-9544-4bed-995d-8866d8794362", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.916Z", + "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", + "modified": "2021-01-13T01:52:44.916Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--50855def-4ee1-492a-8b26-567206f7868a", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.917Z", + "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--197945dd-67fa-4a30-91b7-c29ca49bd55d", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.917Z", + "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--63ed3b05-d5b1-46a4-93f8-ec2aa89761f8", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.917Z", + "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6f72510-6131-4166-8d23-71b451cc125b", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.917Z", + "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", + "modified": "2021-01-13T01:52:44.917Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.032Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0e9d2cb8-24ae-465c-abcd-251eced00122", - "modified": "2021-01-06T18:30:56.032Z", + "created": "2021-01-13T01:52:44.918Z", + "id": "relationship--0b7f31e8-ccc1-4bb6-b589-7a1183afaef6", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.033Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--872234a7-17f5-4f6d-bbc1-18b6e1bd21a5", - "modified": "2021-01-06T18:30:56.033Z", + "created": "2021-01-13T01:52:44.918Z", + "id": "relationship--21638697-6d6c-4825-bd71-f46f61a22076", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.033Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--5e911ef8-1fa4-4bf1-b5a8-883e792012e6", - "modified": "2021-01-06T18:30:56.033Z", + "created": "2021-01-13T01:52:44.918Z", + "id": "relationship--157187e5-1c4d-4698-a2d0-9455b5a7aa9e", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:56.034Z", + "created": "2021-01-13T01:52:44.918Z", + "id": "relationship--d98dc89f-2684-4da7-8be6-776f6a6d5e02", + "modified": "2021-01-13T01:52:44.918Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:56.034Z", + "created": "2021-01-13T01:52:44.920Z", + "id": "relationship--227c3e79-14fa-4225-b21f-a204734deb33", + "modified": "2021-01-13T01:52:44.920Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--43da4a83-4ae9-4cc2-8e3a-a2cc85f14a1e", - "modified": "2021-01-06T18:30:56.034Z", + "created": "2021-01-13T01:52:44.921Z", + "id": "relationship--3b70cebc-a699-41db-b063-f18d1b31e050", + "modified": "2021-01-13T01:52:44.921Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.034Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.034Z", + "created": "2021-01-13T01:52:44.921Z", + "id": "relationship--fc357a0f-dba2-4273-a45a-f00ab7152d9b", + "modified": "2021-01-13T01:52:44.921Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.035Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:56.035Z", + "created": "2021-01-13T01:52:44.922Z", + "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", + "modified": "2021-01-13T01:52:44.922Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.035Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.035Z", + "created": "2021-01-13T01:52:44.923Z", + "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", + "modified": "2021-01-13T01:52:44.923Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.036Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:56.036Z", + "created": "2021-01-13T01:52:44.923Z", + "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", + "modified": "2021-01-13T01:52:44.923Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.036Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--34ac4d6c-075e-4249-9919-526cc4e0747b", - "modified": "2021-01-06T18:30:56.036Z", + "created": "2021-01-13T01:52:44.924Z", + "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", + "modified": "2021-01-13T01:52:44.924Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.037Z", - "description": "Information System Monitoring", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.037Z", + "created": "2021-01-13T01:52:44.925Z", + "id": "relationship--c78c6616-a1f6-4bd9-bbf5-caf26ddd1e4d", + "modified": "2021-01-13T01:52:44.925Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.038Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--981fa85d-228e-4dd4-abe5-32e0edc334e4", - "modified": "2021-01-06T18:30:56.038Z", + "created": "2021-01-13T01:52:44.925Z", + "id": "relationship--9af26252-d435-4a7b-b89e-eb54003b7996", + "modified": "2021-01-13T01:52:44.925Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.039Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--003a2333-6ac5-4571-8077-ff0b3ee42dbe", - "modified": "2021-01-06T18:30:56.039Z", + "created": "2021-01-13T01:52:44.926Z", + "id": "relationship--502e08c1-0123-4393-b65b-c1ffc8a8b048", + "modified": "2021-01-13T01:52:44.926Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.039Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--8cc6ae7b-c68b-4554-906f-b265dd911c9f", - "modified": "2021-01-06T18:30:56.039Z", + "created": "2021-01-13T01:52:44.927Z", + "id": "relationship--cecfbd84-d786-4c61-878b-05c731e2d581", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.040Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--26baf2e1-3691-4e5f-82ff-a51e287602ea", - "modified": "2021-01-06T18:30:56.040Z", + "created": "2021-01-13T01:52:44.927Z", + "id": "relationship--7c8d01bf-9326-4247-8195-0c957c6e6b3e", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.040Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b685a999-45b4-4b97-856a-69676aa5e23c", - "modified": "2021-01-06T18:30:56.040Z", + "created": "2021-01-13T01:52:44.927Z", + "id": "relationship--310e3cc0-b732-4f91-bc37-6113c107dae0", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.041Z", - "description": "Information System Monitoring", - "id": "relationship--0a61242d-1466-48db-a236-bbdbed2df501", - "modified": "2021-01-06T18:30:56.041Z", + "created": "2021-01-13T01:52:44.927Z", + "id": "relationship--4519a14c-9578-4c77-a1ab-d04664392ed9", + "modified": "2021-01-13T01:52:44.927Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.042Z", - "description": "Configuration Settings", - "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:56.042Z", + "created": "2021-01-13T01:52:44.928Z", + "id": "relationship--42c3015d-ac55-4f84-bb0a-b77a98c6863b", + "modified": "2021-01-13T01:52:44.928Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.044Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3688cc2b-6321-42df-8a7a-6e14e8f371c8", - "modified": "2021-01-06T18:30:56.044Z", + "created": "2021-01-13T01:52:44.929Z", + "id": "relationship--b1c6f677-e100-47e1-9da7-bd5927c45ed1", + "modified": "2021-01-13T01:52:44.929Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.044Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--22b98945-ac7b-4a5b-9b5c-e294d1c48047", - "modified": "2021-01-06T18:30:56.044Z", + "created": "2021-01-13T01:52:44.929Z", + "id": "relationship--bc57be28-9417-42a4-95e5-a2c062696649", + "modified": "2021-01-13T01:52:44.929Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:56.045Z", + "created": "2021-01-13T01:52:44.930Z", + "id": "relationship--82e13eb9-a107-414f-b3c8-c919e234e972", + "modified": "2021-01-13T01:52:44.930Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--eb077f76-7b8b-4d20-9e06-89460daebff6", - "modified": "2021-01-06T18:30:56.045Z", + "created": "2021-01-13T01:52:44.930Z", + "id": "relationship--f1a6f368-a756-4c76-9bbe-a149ba5d7b48", + "modified": "2021-01-13T01:52:44.930Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--97b6c61d-888f-4674-90a6-052fce323725", - "modified": "2021-01-06T18:30:56.045Z", + "created": "2021-01-13T01:52:44.931Z", + "id": "relationship--5871402a-0874-4b06-a208-d047f112d67a", + "modified": "2021-01-13T01:52:44.931Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--89559a30-90dc-4952-b341-cd80bcd25094", - "modified": "2021-01-06T18:30:56.045Z", + "created": "2021-01-13T01:52:44.932Z", + "id": "relationship--efa8a43d-6183-49ba-a751-bddb861b7c8c", + "modified": "2021-01-13T01:52:44.932Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.045Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:56.045Z", + "created": "2021-01-13T01:52:44.932Z", + "id": "relationship--c6ce0435-ceb1-417c-a287-b07322efac27", + "modified": "2021-01-13T01:52:44.932Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1d303794-11bd-413a-b5d3-b6e1e75d7dc8", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.933Z", + "id": "relationship--3ecabc44-abe1-4d97-bf6a-59ca26da6259", + "modified": "2021-01-13T01:52:44.933Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0fe72e9b-2b75-45c5-aaa2-2d1473529071", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--3359f32d-4657-4d93-bc10-541c8dcd5aa1", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--517b83f8-9ec9-44c4-9bad-e73a8bd7e10c", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--16f1a6d6-4270-4467-986a-888cd223bd64", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4cf3c398-b282-4089-ae74-4fab7d02f153", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--6c4c41aa-3354-484b-aae3-119cb2855383", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--80fd5af6-859e-4924-ab2c-a0e556116871", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--b0fea36e-9186-40dc-9f3a-ece9db5d0c75", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--f719de8d-20d6-450e-a3e6-84c0217988c6", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--9a6901e6-91fc-42b2-a749-331fd664d39e", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.046Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d2606819-40aa-4ffb-a502-9ba403707e90", - "modified": "2021-01-06T18:30:56.046Z", + "created": "2021-01-13T01:52:44.934Z", + "id": "relationship--d1914a6a-bcca-4e9f-81ab-6035cf746b01", + "modified": "2021-01-13T01:52:44.934Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.047Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--68907d7d-291d-4a10-a3e7-8304f24acc4e", - "modified": "2021-01-06T18:30:56.047Z", + "created": "2021-01-13T01:52:44.935Z", + "id": "relationship--9c08577f-18c8-4ee4-b0d7-e118bbc193f2", + "modified": "2021-01-13T01:52:44.935Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.047Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--53634d79-3fa5-4fee-8039-35bd0eb21737", - "modified": "2021-01-06T18:30:56.047Z", + "created": "2021-01-13T01:52:44.936Z", + "id": "relationship--87c61617-cda8-4dfd-94e0-ae5a751bb01a", + "modified": "2021-01-13T01:52:44.936Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--af5638ff-d2f9-492c-b1ce-5966e1999b05", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.937Z", + "id": "relationship--9775284b-0ea3-4e35-bcca-5733771c110b", + "modified": "2021-01-13T01:52:44.937Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--383f7082-d770-4e7a-9b87-219d54bbb3ea", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.937Z", + "id": "relationship--762a8bd9-6635-4415-bf3f-4ac668ed4e03", + "modified": "2021-01-13T01:52:44.937Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.938Z", + "id": "relationship--8c4cfb08-5f7d-44c0-a445-163745a832b4", + "modified": "2021-01-13T01:52:44.938Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ebea4a1f-4ce1-407c-9fbb-9221eeb22f1c", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.939Z", + "id": "relationship--1a32e9de-c57b-4a62-a7c9-fd16fa1492e8", + "modified": "2021-01-13T01:52:44.939Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--fa65e2d7-a0d4-43aa-9da8-9811c55dccfa", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.939Z", + "id": "relationship--8d3b8310-c3f5-4832-8155-b8fdf270b9f1", + "modified": "2021-01-13T01:52:44.939Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d6e6e6a2-e88f-4e9a-8a81-e7e05171dae2", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.940Z", + "id": "relationship--6eddc9f7-6042-48c1-86c7-1ec82ff88039", + "modified": "2021-01-13T01:52:44.940Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.048Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--74c91f33-db73-4df6-8d32-09c0b55931d3", - "modified": "2021-01-06T18:30:56.048Z", + "created": "2021-01-13T01:52:44.940Z", + "id": "relationship--b249650a-ba70-48c6-b41e-3895a676c846", + "modified": "2021-01-13T01:52:44.940Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.049Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--75d3278b-4e75-404a-beac-2e3c1637aaf6", - "modified": "2021-01-06T18:30:56.049Z", + "created": "2021-01-13T01:52:44.941Z", + "id": "relationship--240a4ed4-ebb7-4ae3-ac41-e53261b7fbaf", + "modified": "2021-01-13T01:52:44.941Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6c1f92fb-e9e9-4345-b1e8-26d656e30bbe", - "modified": "2021-01-06T18:30:56.050Z", + "created": "2021-01-13T01:52:44.942Z", + "id": "relationship--a6b88af7-1d51-4234-afda-07b8618836de", + "modified": "2021-01-13T01:52:44.942Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8cc4d89-2dd9-4550-8283-d4f796ea3a84", - "modified": "2021-01-06T18:30:56.050Z", + "created": "2021-01-13T01:52:44.943Z", + "id": "relationship--52f70eaa-9b91-41b4-bda3-e4e63b1cc9dc", + "modified": "2021-01-13T01:52:44.943Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.050Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", - "modified": "2021-01-06T18:30:56.050Z", + "created": "2021-01-13T01:52:44.943Z", + "id": "relationship--7d313c12-ac9e-49a9-b820-52d9bde30b0c", + "modified": "2021-01-13T01:52:44.943Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--9851210c-73c3-4417-991d-ada611ec272b", - "modified": "2021-01-06T18:30:56.051Z", + "created": "2021-01-13T01:52:44.944Z", + "id": "relationship--1e562bac-b904-4ba8-b9af-b1a97296707f", + "modified": "2021-01-13T01:52:44.944Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f4fb1f11-8614-4659-80f5-37f1b415fda3", - "modified": "2021-01-06T18:30:56.051Z", + "created": "2021-01-13T01:52:44.946Z", + "id": "relationship--86c25708-12a6-4df1-9537-df84114c4bc5", + "modified": "2021-01-13T01:52:44.946Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b521803d-1c88-4019-8993-2d19e6d9c30a", - "modified": "2021-01-06T18:30:56.051Z", + "created": "2021-01-13T01:52:44.946Z", + "id": "relationship--cc5b3cf9-cd8c-433f-94bc-b0916f4b773d", + "modified": "2021-01-13T01:52:44.946Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.051Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ca7d1eb0-75a7-4dbe-8464-6086dde89809", - "modified": "2021-01-06T18:30:56.051Z", + "created": "2021-01-13T01:52:44.947Z", + "id": "relationship--39253d6e-dc79-4d14-ac78-0396cccc236b", + "modified": "2021-01-13T01:52:44.947Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.052Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--8d85c127-0d07-4f39-8867-3e917e3bebd7", - "modified": "2021-01-06T18:30:56.052Z", + "created": "2021-01-13T01:52:44.947Z", + "id": "relationship--9c06e8c3-643c-47e1-b251-7d3c6b327f9c", + "modified": "2021-01-13T01:52:44.947Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.053Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--e20ae0b5-4c91-4b8d-a45f-a10ea177b0b9", - "modified": "2021-01-06T18:30:56.053Z", + "created": "2021-01-13T01:52:44.948Z", + "id": "relationship--527bb098-02a9-4fea-b96b-52eb21260452", + "modified": "2021-01-13T01:52:44.948Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.054Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a902f145-4ff8-4f19-a3aa-56fe1675d2e9", - "modified": "2021-01-06T18:30:56.054Z", + "created": "2021-01-13T01:52:44.948Z", + "id": "relationship--8a2a3fd4-0d59-43fe-8c95-226fa26a6a33", + "modified": "2021-01-13T01:52:44.948Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.055Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--0a27bd8e-08e0-4d48-b251-f10fb3d132eb", - "modified": "2021-01-06T18:30:56.055Z", + "created": "2021-01-13T01:52:44.949Z", + "id": "relationship--0c64b9e2-e914-438a-ba43-39a117568e3e", + "modified": "2021-01-13T01:52:44.949Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.055Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--a9e3ea5d-8d03-4ba6-8ce9-4312485e26f4", - "modified": "2021-01-06T18:30:56.055Z", + "created": "2021-01-13T01:52:44.949Z", + "id": "relationship--da8e2721-26b9-44f2-8376-66d55c81fcf6", + "modified": "2021-01-13T01:52:44.949Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.056Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--31e4a752-414d-4116-bcc7-17f41de75d80", - "modified": "2021-01-06T18:30:56.056Z", + "created": "2021-01-13T01:52:44.950Z", + "id": "relationship--73f4fd73-e880-4f0c-9958-8f494d088d4a", + "modified": "2021-01-13T01:52:44.950Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.056Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--74c91f33-db73-4df6-8d32-09c0b55931d3", - "modified": "2021-01-06T18:30:56.056Z", + "created": "2021-01-13T01:52:44.951Z", + "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.058Z", - "description": "Information System Monitoring", - "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", - "modified": "2021-01-06T18:30:56.058Z", + "created": "2021-01-13T01:52:44.951Z", + "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.060Z", + "created": "2021-01-13T01:52:44.951Z", + "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", + "modified": "2021-01-13T01:52:44.951Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:44.952Z", + "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", + "modified": "2021-01-13T01:52:44.952Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.060Z", + "created": "2021-01-13T01:52:44.952Z", + "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", + "modified": "2021-01-13T01:52:44.952Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--b13aab1b-4ffa-48f4-b3e8-e879261f6e39", - "modified": "2021-01-06T18:30:56.060Z", + "created": "2021-01-13T01:52:44.952Z", + "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", + "modified": "2021-01-13T01:52:44.952Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.060Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--f5f1a5df-4687-40cf-b97e-0d72990195d8", - "modified": "2021-01-06T18:30:56.060Z", + "created": "2021-01-13T01:52:44.953Z", + "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:56.062Z", + "created": "2021-01-13T01:52:44.953Z", + "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:56.062Z", + "created": "2021-01-13T01:52:44.953Z", + "id": "relationship--caae0c38-5591-415f-88b8-d165bf61d38c", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.062Z", + "created": "2021-01-13T01:52:44.953Z", + "id": "relationship--1b912d8c-666e-49a2-9d2e-5ae457ead1dc", + "modified": "2021-01-13T01:52:44.953Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.062Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.062Z", + "created": "2021-01-13T01:52:44.954Z", + "id": "relationship--806adc0f-d1bc-4fb7-ba60-f3e90a527bdf", + "modified": "2021-01-13T01:52:44.954Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.063Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ff99ea6e-dc46-4cad-b94e-66c2f4590700", - "modified": "2021-01-06T18:30:56.063Z", + "created": "2021-01-13T01:52:44.954Z", + "id": "relationship--889720b3-9d4b-488f-9de7-65679b573708", + "modified": "2021-01-13T01:52:44.954Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ae9b73fc-6054-42af-994e-8215d8ef34b7", - "modified": "2021-01-06T18:30:56.064Z", + "created": "2021-01-13T01:52:44.955Z", + "id": "relationship--63abd751-1e3a-44a7-b7db-19d41545fd8e", + "modified": "2021-01-13T01:52:44.955Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--cc9d790e-e34a-43f9-b1ce-2b8f40d9d368", - "modified": "2021-01-06T18:30:56.064Z", + "created": "2021-01-13T01:52:44.956Z", + "id": "relationship--7c566ddf-2fea-4fa3-96d2-9dc27195b5aa", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.064Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c588e4d5-31fa-4582-a370-718aee43d34c", - "modified": "2021-01-06T18:30:56.064Z", + "created": "2021-01-13T01:52:44.956Z", + "id": "relationship--b3fb06ef-27e1-4acc-a491-bd90675a7e42", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.066Z", + "created": "2021-01-13T01:52:44.956Z", + "id": "relationship--f6447be0-6f52-4e9e-9066-64aa053147d7", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.066Z", + "created": "2021-01-13T01:52:44.956Z", + "id": "relationship--ec340da3-79e2-4604-97ac-eee5fd2d2966", + "modified": "2021-01-13T01:52:44.956Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.066Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f8dce936-9898-43c1-b9ab-7d21103f21bf", - "modified": "2021-01-06T18:30:56.066Z", + "created": "2021-01-13T01:52:44.957Z", + "id": "relationship--f38e5958-4a3f-4f24-ab82-b80357fa6c50", + "modified": "2021-01-13T01:52:44.957Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.067Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--16084466-d0cd-469f-980f-09954eb4e011", - "modified": "2021-01-06T18:30:56.067Z", + "created": "2021-01-13T01:52:44.957Z", + "id": "relationship--89863229-e82e-4598-a602-3fe08df1864d", + "modified": "2021-01-13T01:52:44.957Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.069Z", + "created": "2021-01-13T01:52:44.958Z", + "id": "relationship--b020066a-c9b4-463e-912b-b5097f247d38", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.069Z", + "created": "2021-01-13T01:52:44.958Z", + "id": "relationship--cd0056bb-46f1-49e5-a657-a91564e89223", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.069Z", + "created": "2021-01-13T01:52:44.958Z", + "id": "relationship--428457c7-7ab8-4a9e-938b-a2122753f92c", + "modified": "2021-01-13T01:52:44.958Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.069Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:56.069Z", + "created": "2021-01-13T01:52:44.959Z", + "id": "relationship--8674ce8a-3f3c-4791-9264-b2feb132eb15", + "modified": "2021-01-13T01:52:44.959Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.070Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:56.070Z", + "created": "2021-01-13T01:52:44.959Z", + "id": "relationship--70f7e488-fec9-4123-be2f-ebc8aa9d75b4", + "modified": "2021-01-13T01:52:44.959Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--48a7edac-854b-4023-bdd3-b792300e7f88", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.070Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:56.070Z", + "created": "2021-01-13T01:52:44.960Z", + "id": "relationship--72babca1-4c64-4450-848c-96a57909cd64", + "modified": "2021-01-13T01:52:44.960Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.071Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.071Z", + "created": "2021-01-13T01:52:44.961Z", + "id": "relationship--f2f927aa-09c0-4060-9d98-48312736759b", + "modified": "2021-01-13T01:52:44.961Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.072Z", + "created": "2021-01-13T01:52:44.961Z", + "id": "relationship--0c159dbe-46f5-4c1f-a357-95811374ec6c", + "modified": "2021-01-13T01:52:44.961Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.072Z", + "created": "2021-01-13T01:52:44.962Z", + "id": "relationship--53870ec5-03e4-455a-a07b-d2d95a398d6c", + "modified": "2021-01-13T01:52:44.962Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.072Z", + "created": "2021-01-13T01:52:44.963Z", + "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", + "modified": "2021-01-13T01:52:44.963Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.072Z", + "created": "2021-01-13T01:52:44.964Z", + "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.072Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.072Z", + "created": "2021-01-13T01:52:44.964Z", + "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:56.074Z", + "created": "2021-01-13T01:52:44.964Z", + "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", + "modified": "2021-01-13T01:52:44.964Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:56.074Z", + "created": "2021-01-13T01:52:44.965Z", + "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:56.074Z", + "created": "2021-01-13T01:52:44.965Z", + "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6c3f1270-0832-48b8-8494-ad7cf37811e8", - "modified": "2021-01-06T18:30:56.074Z", + "created": "2021-01-13T01:52:44.965Z", + "id": "relationship--d16e4336-1b38-4f40-9021-b6a9aab3fe12", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.074Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--073bb6f3-a593-482c-8b82-f4b51cc844a5", - "modified": "2021-01-06T18:30:56.074Z", + "created": "2021-01-13T01:52:44.965Z", + "id": "relationship--02fa8be7-9400-4fda-8b3c-a2f2adb9f588", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.075Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c46573aa-2390-4cf2-8769-565f01d7ebf6", - "modified": "2021-01-06T18:30:56.075Z", + "created": "2021-01-13T01:52:44.965Z", + "id": "relationship--dd98f1ef-13be-4f30-97fc-889c92fb47ee", + "modified": "2021-01-13T01:52:44.965Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.966Z", + "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.966Z", + "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.966Z", + "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", + "modified": "2021-01-13T01:52:44.966Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.967Z", + "id": "relationship--1b0b106b-a594-446d-8af7-999d2e790dd0", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.967Z", + "id": "relationship--35e3b378-300d-4f7b-a862-24c19a00c565", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.076Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.076Z", + "created": "2021-01-13T01:52:44.967Z", + "id": "relationship--b4a98aee-f4d0-4dc0-9a3d-3fdb927b2e35", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.967Z", + "id": "relationship--dfef2cfa-13d6-4346-abff-7fa97c163dd7", + "modified": "2021-01-13T01:52:44.967Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.968Z", + "id": "relationship--659f7bb9-2f68-4498-86aa-74f8d42c0f38", + "modified": "2021-01-13T01:52:44.968Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.968Z", + "id": "relationship--b30e229d-763e-471d-b042-b2e35cba4c14", + "modified": "2021-01-13T01:52:44.968Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--030f4876-13db-4fe8-bfab-dd012a455007", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.969Z", + "id": "relationship--94096e4d-8e2b-4692-b48f-c0d46a3efce5", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6c2b165e-6622-4432-979d-27f5e2d30dc9", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.969Z", + "id": "relationship--17024b85-bf9d-492c-8792-8b781af76dbf", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.078Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--c50c07f5-f8da-4e54-b4ab-abdf596aca13", - "modified": "2021-01-06T18:30:56.078Z", + "created": "2021-01-13T01:52:44.969Z", + "id": "relationship--facbd8b4-bd6b-4f65-85a5-13d7133185aa", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--012187c6-2cec-4374-9830-3f44fd321274", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.969Z", + "id": "relationship--fb5d753f-7493-4061-b8e7-af6441af1433", + "modified": "2021-01-13T01:52:44.969Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--041d22cd-7395-478b-9bc8-d1ab9adbe8a1", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--597c8044-a417-44a8-b5d8-c08e9d151f91", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--97d160ad-088e-4758-b76b-6771abf05e9b", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--e83ec626-054b-4bf3-8b05-42970aae4d97", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6c3f1270-0832-48b8-8494-ad7cf37811e8", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--68264c28-6497-4d3f-90df-7f7ac0319332", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--073bb6f3-a593-482c-8b82-f4b51cc844a5", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--a6da952a-e995-4e4b-962a-203620b6577b", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.080Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c46573aa-2390-4cf2-8769-565f01d7ebf6", - "modified": "2021-01-06T18:30:56.080Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--4c623b63-4959-4bd7-b762-64a146e60d98", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.081Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.081Z", + "created": "2021-01-13T01:52:44.970Z", + "id": "relationship--360c46c7-3260-4771-b112-6e96a3de9f2d", + "modified": "2021-01-13T01:52:44.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.081Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.081Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--b9140fe5-e968-4a9b-a7e3-8f29cdf439df", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.082Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--f92eca37-5c60-4264-9544-0f631a4da7e9", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.082Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--fac22b6b-533a-4e70-8ca0-b33c20eb2ee2", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.082Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--14f246fd-9df0-4784-8d75-b02162b87173", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.082Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.082Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--78f45276-c8f4-4345-a0c0-c4d2d99a74ab", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--ddeac0fd-6a52-4e3f-957c-1b1e0b8c252d", - "modified": "2021-01-06T18:30:56.084Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--7d510caf-8255-4a0b-969d-e9e1676d6d38", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--ce9c49ce-e720-4950-ab7b-aae8daea1bce", - "modified": "2021-01-06T18:30:56.084Z", + "created": "2021-01-13T01:52:44.971Z", + "id": "relationship--0d37bef5-c370-4da1-aa15-26b502f2e3e9", + "modified": "2021-01-13T01:52:44.971Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.084Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--aa978bf2-1224-4764-b99a-b0bc83457555", - "modified": "2021-01-06T18:30:56.084Z", + "created": "2021-01-13T01:52:44.972Z", + "id": "relationship--2dfb0bd1-5fad-4b92-b476-d8c104ae4081", + "modified": "2021-01-13T01:52:44.972Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--89aef7c6-e58e-44a6-b41d-cd8191374241", - "modified": "2021-01-06T18:30:56.086Z", + "created": "2021-01-13T01:52:44.972Z", + "id": "relationship--47ade3ca-ff9d-43ad-a5a8-7bc743bff805", + "modified": "2021-01-13T01:52:44.972Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--af198bb2-60ac-40c1-9405-375a4f7f798d", - "modified": "2021-01-06T18:30:56.086Z", + "created": "2021-01-13T01:52:44.973Z", + "id": "relationship--65e2c9ff-ad02-45fd-9058-1c26fc2b97a4", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.086Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--d53d840b-db17-4464-bb64-8836fb8d0d6a", - "modified": "2021-01-06T18:30:56.086Z", + "created": "2021-01-13T01:52:44.973Z", + "id": "relationship--4eb105c3-ea17-43ff-b509-4a4a045d9817", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.087Z", - "description": "Limit Software Installation", - "id": "relationship--d590fb85-caf2-4cfe-aa55-50bac6d69afd", - "modified": "2021-01-06T18:30:56.087Z", + "created": "2021-01-13T01:52:44.973Z", + "id": "relationship--30081747-f4f4-4c13-a3a0-5b4dee34c945", + "modified": "2021-01-13T01:52:44.973Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.088Z", - "description": "Least Privilege", - "id": "relationship--f9434b07-6c5d-40e7-8825-97d90157fc05", - "modified": "2021-01-06T18:30:56.088Z", + "created": "2021-01-13T01:52:44.974Z", + "id": "relationship--ee2c5a2f-4e42-45de-997c-1ac69ce5cfd4", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.089Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--18f8d5e6-c364-46d7-8366-034a6412d75a", - "modified": "2021-01-06T18:30:56.089Z", + "created": "2021-01-13T01:52:44.974Z", + "id": "relationship--b66df816-16b3-4453-a802-6eccbc7f363c", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.089Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--937fc5d2-18a6-4c44-bb76-1b7500b51e5a", - "modified": "2021-01-06T18:30:56.089Z", + "created": "2021-01-13T01:52:44.974Z", + "id": "relationship--05599454-f1c3-43aa-b622-bbca2a3f2c05", + "modified": "2021-01-13T01:52:44.974Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.090Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--9742abb6-4165-407b-a302-4d8ff8db6c45", - "modified": "2021-01-06T18:30:56.090Z", + "created": "2021-01-13T01:52:44.975Z", + "id": "relationship--f6964ec1-7f5d-4177-9532-ae8fca2eeb6e", + "modified": "2021-01-13T01:52:44.975Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.091Z", - "description": "Least Privilege", - "id": "relationship--b8113293-6d2f-475b-a0b7-6b777691ac95", - "modified": "2021-01-06T18:30:56.091Z", + "created": "2021-01-13T01:52:44.976Z", + "id": "relationship--6310f630-4f74-4852-80af-240e8f494633", + "modified": "2021-01-13T01:52:44.976Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.092Z", - "description": "Limit Software Installation", - "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:56.092Z", + "created": "2021-01-13T01:52:44.977Z", + "id": "relationship--09641de3-4d40-4b64-a31a-70a41392f9f6", + "modified": "2021-01-13T01:52:44.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.093Z", - "description": "Least Privilege", - "id": "relationship--fdd2b8b4-93d8-42a6-b710-7f1e7ac8007d", - "modified": "2021-01-06T18:30:56.093Z", + "created": "2021-01-13T01:52:44.977Z", + "id": "relationship--eaa826b6-bfb6-43f2-aa28-8965f3eeb2b6", + "modified": "2021-01-13T01:52:44.977Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.094Z", - "description": "Limit Software Installation", - "id": "relationship--09682215-261a-42ad-a0d0-afe115387060", - "modified": "2021-01-06T18:30:56.094Z", + "created": "2021-01-13T01:52:44.978Z", + "id": "relationship--7216f8ae-27b5-433b-9b96-6bddfc82d068", + "modified": "2021-01-13T01:52:44.978Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--b894e895-08f5-43ce-81b8-bf45858c579a", - "modified": "2021-01-06T18:30:56.095Z", + "created": "2021-01-13T01:52:44.979Z", + "id": "relationship--f2f8bbcd-2809-4312-b738-f16beff4be10", + "modified": "2021-01-13T01:52:44.979Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--579f8566-644a-4e8f-a08e-54e918da220d", - "modified": "2021-01-06T18:30:56.095Z", + "created": "2021-01-13T01:52:44.979Z", + "id": "relationship--3341e5d8-615c-40e0-8f43-274adbd1deeb", + "modified": "2021-01-13T01:52:44.979Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--91bfda43-bafd-4c19-bc75-02c7184b863c", - "modified": "2021-01-06T18:30:56.095Z", + "created": "2021-01-13T01:52:44.980Z", + "id": "relationship--951c6dea-a7ab-4ed0-bd3f-ad19fd699978", + "modified": "2021-01-13T01:52:44.980Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--71144310-5a09-4665-bc95-5cd4519b83e3", - "modified": "2021-01-06T18:30:56.095Z", + "created": "2021-01-13T01:52:44.981Z", + "id": "relationship--f5b33313-4f98-4c12-8da7-5d5b910c2be8", + "modified": "2021-01-13T01:52:44.981Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.095Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--20152c11-4722-44b6-88a8-a64bb83e1f4e", - "modified": "2021-01-06T18:30:56.095Z", + "created": "2021-01-13T01:52:44.982Z", + "id": "relationship--b2dd65a4-8e8a-4f56-8829-d225770d918d", + "modified": "2021-01-13T01:52:44.982Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.096Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--fc8b4a6e-aa8c-45fe-a24c-5ea5fced61d7", - "modified": "2021-01-06T18:30:56.096Z", + "created": "2021-01-13T01:52:44.982Z", + "id": "relationship--0e7aafd6-a1bb-4d6b-b6f1-1759a8874464", + "modified": "2021-01-13T01:52:44.982Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.096Z", - "description": "Least Privilege", - "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:56.096Z", + "created": "2021-01-13T01:52:44.983Z", + "id": "relationship--4acd3085-42b9-42cb-a7b8-e79195d7b810", + "modified": "2021-01-13T01:52:44.983Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.097Z", - "description": "Least Privilege", - "id": "relationship--69cb6cce-104d-4d8d-90a6-2024fe1aa513", - "modified": "2021-01-06T18:30:56.097Z", + "created": "2021-01-13T01:52:44.984Z", + "id": "relationship--ab25012b-9225-4491-accf-bd5da900b7bc", + "modified": "2021-01-13T01:52:44.984Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.098Z", - "description": "Limit Software Installation", - "id": "relationship--e8727265-b854-495b-a9ed-a6afd19d1e89", - "modified": "2021-01-06T18:30:56.098Z", + "created": "2021-01-13T01:52:44.985Z", + "id": "relationship--c32e8f17-96fa-4fa2-9bb3-6179b116ebe5", + "modified": "2021-01-13T01:52:44.985Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.098Z", - "description": "Limit Software Installation", - "id": "relationship--aca33b31-d548-4a53-9697-e4ac426a3aa0", - "modified": "2021-01-06T18:30:56.098Z", + "created": "2021-01-13T01:52:44.986Z", + "id": "relationship--36d3f065-2e15-413f-be54-5fc93e7235c0", + "modified": "2021-01-13T01:52:44.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.099Z", - "description": "Unsupported System Components", - "id": "relationship--c80b5ff7-7f98-4daa-a631-9075a4ebd441", - "modified": "2021-01-06T18:30:56.099Z", + "created": "2021-01-13T01:52:44.986Z", + "id": "relationship--f09d4a58-9e02-4b65-8bc9-2ab8c5b86cbb", + "modified": "2021-01-13T01:52:44.986Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.099Z", - "description": "Unsupported System Components", - "id": "relationship--69ebf5a9-ac65-4095-9ebf-974b2226a4f3", - "modified": "2021-01-06T18:30:56.099Z", + "created": "2021-01-13T01:52:44.987Z", + "id": "relationship--d27c7752-bd34-4bf0-855b-71fa615b1913", + "modified": "2021-01-13T01:52:44.987Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.101Z", - "id": "relationship--67677ba5-6116-47cc-8961-863653d85746", - "modified": "2021-01-06T18:30:56.101Z", + "created": "2021-01-13T01:52:44.987Z", + "id": "relationship--5b792e8d-92f3-49c7-ba65-7649151a0993", + "modified": "2021-01-13T01:52:44.987Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.101Z", - "id": "relationship--d261c225-7fe8-4772-bf1b-e694dbf00f42", - "modified": "2021-01-06T18:30:56.101Z", + "created": "2021-01-13T01:52:44.988Z", + "id": "relationship--e5415d5c-ebb5-4aa9-880e-4431219d0aa7", + "modified": "2021-01-13T01:52:44.988Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.102Z", - "id": "relationship--6e1f5ad6-15d1-40a2-ba74-9f80af06d7dd", - "modified": "2021-01-06T18:30:56.102Z", + "created": "2021-01-13T01:52:44.989Z", + "id": "relationship--3d652951-a9f5-485d-b3fb-c04d13bc31e6", + "modified": "2021-01-13T01:52:44.989Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.102Z", - "id": "relationship--65198c8b-d8f9-4b3f-87aa-e339d1fbc953", - "modified": "2021-01-06T18:30:56.102Z", + "created": "2021-01-13T01:52:44.990Z", + "id": "relationship--e237054b-bab8-486b-b8a4-30d76e0fca40", + "modified": "2021-01-13T01:52:44.990Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.103Z", - "id": "relationship--07ca3ef2-45da-4272-94f0-3b0c72a6ce6c", - "modified": "2021-01-06T18:30:56.103Z", + "created": "2021-01-13T01:52:44.990Z", + "id": "relationship--6041cc25-f85a-4df7-8ab9-4d2e253330d3", + "modified": "2021-01-13T01:52:44.990Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.103Z", - "id": "relationship--35f0da0f-7883-4901-8248-f37d7bfea9ac", - "modified": "2021-01-06T18:30:56.103Z", + "created": "2021-01-13T01:52:44.991Z", + "id": "relationship--506f72da-0941-49a0-92a0-17b33f3b4c2b", + "modified": "2021-01-13T01:52:44.991Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.104Z", - "id": "relationship--2043fab5-b89b-4d40-9f05-f3c1988ee9dc", - "modified": "2021-01-06T18:30:56.104Z", + "created": "2021-01-13T01:52:44.991Z", + "id": "relationship--0d03bdf8-da5c-4208-86f3-aadc2c36747b", + "modified": "2021-01-13T01:52:44.991Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.104Z", - "id": "relationship--3187347a-e792-4541-a277-b94ae97c23fb", - "modified": "2021-01-06T18:30:56.104Z", + "created": "2021-01-13T01:52:44.992Z", + "id": "relationship--130d44ae-5874-48a3-9dc8-2389a24c5c9e", + "modified": "2021-01-13T01:52:44.992Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.105Z", - "id": "relationship--53befb4a-fdec-48e8-92ff-7164102773ef", - "modified": "2021-01-06T18:30:56.105Z", + "created": "2021-01-13T01:52:44.994Z", + "id": "relationship--df090321-bce1-4818-b57f-08e5c1d76dea", + "modified": "2021-01-13T01:52:44.994Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.106Z", - "id": "relationship--a3b9c5c0-d478-4eaf-a430-f5b8b2db8389", - "modified": "2021-01-06T18:30:56.106Z", + "created": "2021-01-13T01:52:44.995Z", + "id": "relationship--39084257-41db-4704-a20d-fe19acab0f23", + "modified": "2021-01-13T01:52:44.995Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.107Z", - "id": "relationship--4b7aa09f-b00b-4328-b7ec-aca29763938f", - "modified": "2021-01-06T18:30:56.107Z", + "created": "2021-01-13T01:52:44.995Z", + "id": "relationship--0393d88e-d968-4563-b2d1-39a9736d9683", + "modified": "2021-01-13T01:52:44.995Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.107Z", - "id": "relationship--8bcfcb87-e677-49ea-ae46-d2149d646933", - "modified": "2021-01-06T18:30:56.107Z", + "created": "2021-01-13T01:52:44.997Z", + "id": "relationship--189b5da5-c0c8-4f26-a14f-ea3b11dedaed", + "modified": "2021-01-13T01:52:44.997Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.108Z", - "id": "relationship--c4bc8591-33c2-4714-9abe-8135bdfcef06", - "modified": "2021-01-06T18:30:56.108Z", + "created": "2021-01-13T01:52:44.998Z", + "id": "relationship--2eb58f88-80ba-49d9-90da-39b2f2cb750b", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", - "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.110Z", - "id": "relationship--4797b600-c6bc-4eed-81f3-eaadedf6aac2", - "modified": "2021-01-06T18:30:56.110Z", + "created": "2021-01-13T01:52:44.998Z", + "id": "relationship--39047a07-e9c5-49c2-961c-8221c089bc05", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", - "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.111Z", - "id": "relationship--80a6748b-d344-4418-8b1a-b995472ef37a", - "modified": "2021-01-06T18:30:56.111Z", + "created": "2021-01-13T01:52:44.998Z", + "id": "relationship--328a0692-fe35-4efc-ab86-82a388abfce9", + "modified": "2021-01-13T01:52:44.998Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.111Z", - "id": "relationship--f5d731eb-b7dc-4747-8e09-f2d9acfcecf1", - "modified": "2021-01-06T18:30:56.111Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--5f680503-3504-4f89-85b4-905764ed8de9", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.112Z", - "description": "Remote access", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:56.112Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--3c3abba4-dec7-4146-a6f0-089e71063f19", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.113Z", - "description": "Least privilege", - "id": "relationship--b5b03526-b5ff-4a93-bfc1-5234de14ff86", - "modified": "2021-01-06T18:30:56.113Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--bfc2b93c-ae8a-402e-920d-2fffc4a65666", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.114Z", - "description": "Remote access, data mining protection", - "id": "relationship--ba804d1b-5ed0-4fb2-9d34-6e9b8add5c7b", - "modified": "2021-01-06T18:30:56.114Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--98d29c43-dd96-44a4-aff2-bf36b20bf028", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.116Z", - "description": "Remote access, data mining protection", - "id": "relationship--7c646628-ccf9-42fc-ab54-b881f519e549", - "modified": "2021-01-06T18:30:56.116Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--4a6912c7-71be-4ce4-83dc-d5cc9c697062", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.116Z", - "description": "Remote access, data mining protection", - "id": "relationship--68ff41bf-5b7b-48df-a5f4-def8c055e0e8", - "modified": "2021-01-06T18:30:56.116Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--d31865b6-4e6b-429f-807e-51a61ab75807", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.118Z", - "description": "Use of external information systems", - "id": "relationship--384554b7-f695-4337-a873-4f43d3bb1089", - "modified": "2021-01-06T18:30:56.118Z", + "created": "2021-01-13T01:52:45.000Z", + "id": "relationship--bae540cd-051e-4ef0-b4cf-68a1ca4f3056", + "modified": "2021-01-13T01:52:45.000Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.120Z", - "description": "Boundary Protection", - "id": "relationship--e9928b11-0bc8-469f-bb37-fb83f7af16e3", - "modified": "2021-01-06T18:30:56.120Z", + "created": "2021-01-13T01:52:45.001Z", + "id": "relationship--aed763cd-de48-4240-b11a-56728d3319d3", + "modified": "2021-01-13T01:52:45.001Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.122Z", - "description": "Software usage restrictions", - "id": "relationship--186aa2d1-13a9-4503-87ed-21f1591e3d44", - "modified": "2021-01-06T18:30:56.122Z", + "created": "2021-01-13T01:52:45.003Z", + "id": "relationship--d50e44ed-5a0e-44fa-aedb-0285df427fb9", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.124Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--d40d8d8c-f1a8-4199-893c-c4113b4a472d", - "modified": "2021-01-06T18:30:56.124Z", + "created": "2021-01-13T01:52:45.003Z", + "id": "relationship--e2d545bd-8c42-4a4f-896d-de9c7f3d06c1", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.126Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--a836bd2e-13c9-4460-9dc5-37580aa7f5e0", - "modified": "2021-01-06T18:30:56.126Z", + "created": "2021-01-13T01:52:45.003Z", + "id": "relationship--d3b4a866-dc80-4be7-9d93-4e0032645d96", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.128Z", - "description": "Remote access", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:56.128Z", + "created": "2021-01-13T01:52:45.003Z", + "id": "relationship--bf427f71-d7c0-4b95-b0bf-e9bede19caae", + "modified": "2021-01-13T01:52:45.003Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--3a45c194-f5f5-40ae-8713-5059cbddee64", - "modified": "2021-01-06T18:30:56.130Z", + "created": "2021-01-13T01:52:45.004Z", + "id": "relationship--9c421eff-bdb4-4370-96fa-dde762ddce3e", + "modified": "2021-01-13T01:52:45.004Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--81a29912-cc7a-48d2-af8d-7673e2420fed", - "modified": "2021-01-06T18:30:56.130Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--72725aaf-9c72-42db-bd3d-f9fdbfd2d520", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--31b91206-6a80-4e22-8c23-453434906fc7", - "modified": "2021-01-06T18:30:56.130Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--b8aec0b7-a1f2-46a4-956e-da39b529e6be", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.130Z", - "id": "relationship--e9013fd6-31f4-4400-94b4-b9a300df7bb2", - "modified": "2021-01-06T18:30:56.130Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--5cacc238-7c66-4561-9be4-ef7503c30b90", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--e7e1e85c-880e-477f-9e3c-0cf4f5471804", - "modified": "2021-01-06T18:30:56.131Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--6f1cd448-ed68-487a-9a19-a52739cefb8f", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--98b1ff19-f102-4c28-9026-2c432f8307b9", - "modified": "2021-01-06T18:30:56.131Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--372b8c26-5d01-4bd2-96ab-c95eb7b263a3", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--4e912225-5a9a-435c-94dd-eab9d26097f0", - "modified": "2021-01-06T18:30:56.131Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--ef1ac5c5-885a-410e-ad19-e24e6ba1936c", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.131Z", - "id": "relationship--3546eeb3-65b2-40d2-868a-0f3062ee2883", - "modified": "2021-01-06T18:30:56.131Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--32086d6d-4933-462c-8ba0-1a9414acfae8", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.133Z", - "description": "Protect and prevent credential access", - "id": "relationship--9692280f-d2c4-4580-aeb5-c78890da20f3", - "modified": "2021-01-06T18:30:56.133Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--93c9647f-a8ab-430a-8405-134814e4400a", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.133Z", - "description": "Protect and prevent credential access", - "id": "relationship--69fc1919-6f18-469b-b14e-72ebab358475", - "modified": "2021-01-06T18:30:56.133Z", + "created": "2021-01-13T01:52:45.005Z", + "id": "relationship--4a730cff-33bd-419c-a8e8-b8284b8e9c4e", + "modified": "2021-01-13T01:52:45.005Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.134Z", - "description": "Protect and prevent credential access", - "id": "relationship--fb3c4a03-7496-4254-82c7-f6c5bc895eca", - "modified": "2021-01-06T18:30:56.134Z", + "created": "2021-01-13T01:52:45.006Z", + "id": "relationship--a6e37231-471c-44fe-a52c-89be1a2acf99", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.134Z", - "description": "Protect and prevent credential access", - "id": "relationship--275958d9-916f-479d-a896-8bc31bacd9e6", - "modified": "2021-01-06T18:30:56.134Z", + "created": "2021-01-13T01:52:45.006Z", + "id": "relationship--fef4f90c-0d8b-49c7-bd94-e2954eb96955", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.135Z", - "description": "Continuous Monitoring", - "id": "relationship--8ee0265d-5ea9-4f36-8979-9e62123f4f6c", - "modified": "2021-01-06T18:30:56.135Z", + "created": "2021-01-13T01:52:45.006Z", + "id": "relationship--3f8a9de7-d3b6-4de1-9d6f-b9663a9efd04", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.136Z", - "description": "Continuous Monitoring", - "id": "relationship--53f3b0bf-ed2c-4f9a-97a9-7b15753a8e70", - "modified": "2021-01-06T18:30:56.136Z", + "created": "2021-01-13T01:52:45.006Z", + "id": "relationship--96958440-16ce-4932-b5b5-cc0ef42c36c0", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3e501319-54d8-4e49-baae-3d69c91848bd", - "modified": "2021-01-06T18:30:56.137Z", + "created": "2021-01-13T01:52:45.006Z", + "id": "relationship--c130833e-b64c-457d-b048-38d550a39967", + "modified": "2021-01-13T01:52:45.006Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3e5b904e-7530-4e59-b876-b93ecaa62988", - "modified": "2021-01-06T18:30:56.137Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--62f2ebf2-bc28-4d76-aa5e-9d3fc55c3c47", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f69ec120-bda9-425f-85dc-a770f2e1de48", - "modified": "2021-01-06T18:30:56.137Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--e13273a3-d15a-4d18-806c-30431b93c1db", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.137Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--88f8885d-4d82-4785-a0e8-dca26d95197e", - "modified": "2021-01-06T18:30:56.137Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--6c19bbc4-7c04-4c37-a82f-73ed080c52f2", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.139Z", - "description": "Boundary Protection", - "id": "relationship--1b9391a0-3c59-42cc-8fd0-818e2078a48b", - "modified": "2021-01-06T18:30:56.139Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--a678ecf1-72b4-40a9-9ee6-0cf6c3a74f37", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.139Z", - "description": "Boundary Protection", - "id": "relationship--c85514bb-7fc2-445b-9651-5184ab07748f", - "modified": "2021-01-06T18:30:56.139Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--597a50d1-82dd-4120-b304-c34bc1ccd1da", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--2995d65b-37ad-4fab-9ac6-1e9fbe80aca4", - "modified": "2021-01-06T18:30:56.140Z", + "created": "2021-01-13T01:52:45.007Z", + "id": "relationship--a719db2a-6199-437b-aaab-36bd0b804ff9", + "modified": "2021-01-13T01:52:45.007Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.140Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--33ce2d0e-bd94-4a4c-aee2-93050596297f", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--6fe7fb75-ede2-477c-be3f-516bbf9c83ed", - "modified": "2021-01-06T18:30:56.140Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--7e84f6f1-ed85-4c47-81ff-0056b5ef96e3", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.140Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--750c5af0-4476-475f-92cb-f713a171d968", - "modified": "2021-01-06T18:30:56.140Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--813725d3-093a-456c-a3ea-9c6c255ab76a", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.141Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--656af0af-082c-41ff-b679-7b7a871b92a0", - "modified": "2021-01-06T18:30:56.141Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--2e393a0d-b7c8-455f-9df1-2dd88ceec9fe", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b7d4bec2-838d-476d-a3bf-3cb7801b68f2", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.141Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--bf752acc-9ea7-44dd-b6eb-7b9a1147c3a3", - "modified": "2021-01-06T18:30:56.141Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--c97c3a59-a259-4ab1-8a4c-75b68363bbb1", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--48502913-0055-4166-814d-aaf5bdaf15b0", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--0edea018-c09a-4292-bf79-13c95e94d44e", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--b8ff84bf-f61d-4ebd-b3be-81d5dd6fb236", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--2f6e1ef8-ebbc-482b-a240-3a8f03c3e5b4", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--791a68b4-b02b-4b83-a347-1b665530f70c", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--3c984102-11f3-4d81-83c1-1ad49755a5a8", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--508f5fee-5f31-4176-a5ad-145f59cf9437", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--6492fac5-346a-4940-b996-1315f215db86", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--dabe782e-29a7-4611-8c46-e3ae8aed9bd4", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.008Z", + "id": "relationship--70b69d4d-f208-4cbc-975d-c97e5ae47de8", + "modified": "2021-01-13T01:52:45.008Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--04bf46f6-07cb-4753-8fe9-a96702116cf7", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--d8c3ca33-5b97-4359-a2c7-dc9d711c0285", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.142Z", - "description": "Protect and prevent credential access", - "id": "relationship--00a1eeb4-98d5-433d-a5df-47b2e45e1d91", - "modified": "2021-01-06T18:30:56.142Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--0c341d3d-7dc2-4f78-8879-dd695bfd2fb6", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.143Z", - "description": "Protect and prevent credential access", - "id": "relationship--5d1c5f9f-bc48-44cf-a173-8768e8a7d930", - "modified": "2021-01-06T18:30:56.143Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--eb64bc22-b892-447c-ade9-6ade63b57c5c", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--189b5da5-c0c8-4f26-a14f-ea3b11dedaed", - "modified": "2021-01-06T18:30:56.144Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--2329541c-9358-4150-bdad-2dbb2e4219dc", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--2eb58f88-80ba-49d9-90da-39b2f2cb750b", - "modified": "2021-01-06T18:30:56.144Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--c11360fb-2616-46fd-95c3-e00e1ac5dbdb", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--39047a07-e9c5-49c2-961c-8221c089bc05", - "modified": "2021-01-06T18:30:56.144Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--815865be-2e57-48e8-b9a6-e2e6dc8856b9", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.144Z", - "description": "Continuous Monitoring", - "id": "relationship--328a0692-fe35-4efc-ab86-82a388abfce9", - "modified": "2021-01-06T18:30:56.144Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--92fb168c-ffa4-4743-8b2f-9108c988b73a", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9e44fd99-e125-45e1-a892-74fd9bdefcbe", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--c3facc77-0a01-4817-a5fd-df4381613aea", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3baea8f8-9108-40e6-bd42-7635cbb70256", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--98cfc4b6-ef89-431a-a21b-5170db3eb93a", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--ae0282f6-1395-4845-9bf7-2e70e3f25992", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--544af03a-2c25-4a75-9f9f-0586a28609e4", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--92c7951f-07ff-49ad-8650-b08ea64ed2fe", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--595e7ca4-e649-4c90-bbe7-fc59fbbae18e", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.009Z", + "id": "relationship--1c30c73b-d586-4b12-8bf9-359faded36ec", + "modified": "2021-01-13T01:52:45.009Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c1850450-710e-47a0-a270-167683362403", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--a70f2402-f1d5-4d24-b972-f58828c8d324", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.145Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8bf7c936-fcea-4fdb-90e8-81cd5d7d1e9d", - "modified": "2021-01-06T18:30:56.145Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--1a79c0d8-266b-4e0d-9d68-ce278cb9478f", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.146Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--2bc624e9-4a9e-45ad-820d-89e815b4511a", - "modified": "2021-01-06T18:30:56.146Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--8056a96c-bc6e-484c-8bf9-f567091b1990", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.146Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--495a2d60-3ece-4452-b62e-5f9d973ea8f7", - "modified": "2021-01-06T18:30:56.146Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--d9fcf7b0-f8a9-4a36-a9c0-cacd26045bb9", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--3977c97b-72a4-41af-bffb-bc3eae5caf1f", - "modified": "2021-01-06T18:30:56.147Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--78b4e92a-010c-440e-9a49-f0597923e272", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--84c70624-7984-4b06-81aa-55343ebcd817", - "modified": "2021-01-06T18:30:56.147Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--189a2d3a-b288-49bf-94a3-352ac839e1ea", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--5857578d-9cda-4388-baff-73946259a89a", - "modified": "2021-01-06T18:30:56.147Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--af2179ad-f46c-4ad0-8aab-bb57a412468f", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.147Z", - "description": "Boundary Protection", - "id": "relationship--71225638-eb88-4c4d-a2de-b975ff87dfd5", - "modified": "2021-01-06T18:30:56.147Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--001e70aa-f93d-4fcc-908d-cd021ed9d95d", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--139a237d-dc89-471c-bc23-042f1966c8a0", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4a6912c7-71be-4ce4-83dc-d5cc9c697062", - "modified": "2021-01-06T18:30:56.148Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--d643bf85-19c0-4b07-ab77-4497c545ab27", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d31865b6-4e6b-429f-807e-51a61ab75807", - "modified": "2021-01-06T18:30:56.148Z", + "created": "2021-01-13T01:52:45.010Z", + "id": "relationship--7ceb1245-c1ee-47f6-8e03-d4a1cfe93df8", + "modified": "2021-01-13T01:52:45.010Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.148Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--bae540cd-051e-4ef0-b4cf-68a1ca4f3056", - "modified": "2021-01-06T18:30:56.148Z", + "created": "2021-01-13T01:52:45.011Z", + "id": "relationship--253f2be9-7f46-4e8d-ba6a-21dc75cd1d2b", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--aed763cd-de48-4240-b11a-56728d3319d3", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.011Z", + "id": "relationship--614100d5-0171-4589-b3af-f9b24ed3aa83", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--25c14d81-bd62-448a-990f-a0d4c0edc9fa", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.011Z", + "id": "relationship--b0986871-4cd1-45c4-8bed-654f0fd473df", + "modified": "2021-01-13T01:52:45.011Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e73e9f6e-f06d-4665-b1d4-c934c7ea0cf3", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--95b03dea-c631-4ae4-9b21-8e73890be36c", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--ceb96f28-656c-4e36-8fea-a637ec7bf607", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--749349ca-9e12-4e30-9f41-3cb6680c88ef", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--f3749bb7-d0f8-4091-843c-d101a141e3d4", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--6268ca3a-72cb-468e-ace0-4324448d1cf8", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--978ce78d-3afc-4d9a-8f66-306a043b317d", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--11319cff-83f8-4fa6-827b-009d4b1726c4", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--11aed2a8-085d-4e03-808d-d4cabe2df0c4", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.149Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b7ed51a7-4c3e-46f9-9480-87c9fedc74b0", - "modified": "2021-01-06T18:30:56.149Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--d4506ced-1ebd-4074-92d9-ac3377e01f46", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--d77ddd9d-938a-4755-823f-d7557d210e7b", + "modified": "2021-01-13T01:52:45.012Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.150Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--58f66609-39b7-4663-a81a-57dcb2afc3b7", - "modified": "2021-01-06T18:30:56.150Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--08383e79-e946-4793-b231-d9afc121f08c", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.150Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--662c4bef-7cc5-4b00-8cbe-db1e132de58a", - "modified": "2021-01-06T18:30:56.150Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--15a42d6a-9852-440c-aa98-09f453fd0b41", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.151Z", - "description": "Protect and prevent credential access", - "id": "relationship--3baaede1-7aca-4cc7-a3b2-665bb89059c9", - "modified": "2021-01-06T18:30:56.151Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--96d61be5-4517-46cd-a894-6c085f5631b9", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.152Z", - "description": "Protect and prevent credential access", - "id": "relationship--e3cc47d3-35e5-4125-96c8-595c02f98365", - "modified": "2021-01-06T18:30:56.152Z", + "created": "2021-01-13T01:52:45.012Z", + "id": "relationship--0928956e-2e24-4d12-93bd-44a3f5dc5fec", + "modified": "2021-01-13T01:52:45.012Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.153Z", - "description": "Continuous Monitoring", - "id": "relationship--99db5247-5897-4818-b796-bd49f56c5206", - "modified": "2021-01-06T18:30:56.153Z", + "created": "2021-01-13T01:52:45.013Z", + "id": "relationship--3b14d2da-96d9-4692-a93d-0c7d22f4f9f8", + "modified": "2021-01-13T01:52:45.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.154Z", - "description": "Configuring system settings", - "id": "relationship--ef1ac5c5-885a-410e-ad19-e24e6ba1936c", - "modified": "2021-01-06T18:30:56.154Z", + "created": "2021-01-13T01:52:45.013Z", + "id": "relationship--99db5247-5897-4818-b796-bd49f56c5206", + "modified": "2021-01-13T01:52:45.013Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--e13273a3-d15a-4d18-806c-30431b93c1db", - "modified": "2021-01-06T18:30:56.155Z", + "created": "2021-01-13T01:52:45.014Z", + "id": "relationship--073cdd02-36e4-4fbd-9ba1-85a07747f23f", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--0edea018-c09a-4292-bf79-13c95e94d44e", - "modified": "2021-01-06T18:30:56.155Z", + "created": "2021-01-13T01:52:45.014Z", + "id": "relationship--32539bde-b54e-4c1e-bef5-8b11df014339", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.155Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--d8c3ca33-5b97-4359-a2c7-dc9d711c0285", - "modified": "2021-01-06T18:30:56.155Z", + "created": "2021-01-13T01:52:45.014Z", + "id": "relationship--77727e66-a11a-4954-9238-a9ef2eeacc23", + "modified": "2021-01-13T01:52:45.014Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bea357ac-471a-4097-9673-a8850fa0510c", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.156Z", - "description": "Information validation and filtering", - "id": "relationship--f32178ac-68e0-4d91-89e9-2bc1c591a7ac", - "modified": "2021-01-06T18:30:56.156Z", + "created": "2021-01-13T01:52:45.015Z", + "id": "relationship--71953c4e-4aac-47f4-b592-bdb119876c87", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.156Z", - "description": "Information validation and filtering", - "id": "relationship--9b804aa6-175e-4b5c-9db8-b36cb6ac97fa", - "modified": "2021-01-06T18:30:56.156Z", + "created": "2021-01-13T01:52:45.015Z", + "id": "relationship--e3cc47d3-35e5-4125-96c8-595c02f98365", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.158Z", - "description": "Protect and prevent credential access", - "id": "relationship--09f18566-b196-4a40-80a0-6884e3ac0731", - "modified": "2021-01-06T18:30:56.158Z", + "created": "2021-01-13T01:52:45.015Z", + "id": "relationship--1fb8ebaf-4328-4cdc-8229-ec79b09fb0c6", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.158Z", - "description": "Protect and prevent credential access", - "id": "relationship--facf4bd8-d72d-43f8-918b-3585f1c560f6", - "modified": "2021-01-06T18:30:56.158Z", + "created": "2021-01-13T01:52:45.015Z", + "id": "relationship--f77e25fe-b367-4590-97a7-8ec510a69f51", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.159Z", - "description": "Protect and prevent credential access", - "id": "relationship--74c3d629-d0dd-46ee-adbd-f063b3aa435c", - "modified": "2021-01-06T18:30:56.159Z", + "created": "2021-01-13T01:52:45.015Z", + "id": "relationship--55943244-64d3-4b37-86f6-7e2db89ba028", + "modified": "2021-01-13T01:52:45.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.159Z", - "description": "Protect and prevent credential access", - "id": "relationship--fd5b9976-2616-4de7-a82b-055590b499d6", - "modified": "2021-01-06T18:30:56.159Z", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--00cb409f-add8-44fe-99bd-fadffa4aa364", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.160Z", - "description": "Continuous Monitoring", - "id": "relationship--2dfcdf14-1e75-4e77-83b7-38d74d9797cc", - "modified": "2021-01-06T18:30:56.160Z", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--8f08a865-6807-4ba5-9c1b-59b6e544a547", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.160Z", - "description": "Continuous Monitoring", - "id": "relationship--08292c83-03a9-4ccc-bd2b-2b269347aa53", - "modified": "2021-01-06T18:30:56.160Z", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--d693a5ad-fe56-4a3f-bf9a-e2e0029ae337", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.161Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--241d1954-0de8-4846-b2b6-a01ae10c80fd", - "modified": "2021-01-06T18:30:56.161Z", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--b3134421-8369-4319-a65a-483f8890968b", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.161Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--d8d93511-6b25-40ce-bdc6-6294b8fc0742", + "modified": "2021-01-13T01:52:45.016Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.016Z", "id": "relationship--4b87601b-9070-4fad-be10-b4ad60da1345", - "modified": "2021-01-06T18:30:56.161Z", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.162Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0aa7b0cb-383e-4bcd-ab89-9f08e93fa0fb", - "modified": "2021-01-06T18:30:56.162Z", + "created": "2021-01-13T01:52:45.016Z", + "id": "relationship--518e6234-146d-42a5-bfb7-ecebab861412", + "modified": "2021-01-13T01:52:45.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.017Z", + "id": "relationship--5836e994-e48b-4458-818a-1b7add403d7f", + "modified": "2021-01-13T01:52:45.017Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.162Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.017Z", "id": "relationship--c3af3f89-f381-4bab-92ff-11a81464137e", - "modified": "2021-01-06T18:30:56.162Z", + "modified": "2021-01-13T01:52:45.017Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.163Z", - "description": "Boundary Protection", - "id": "relationship--390d5a5c-ca8a-4a1c-9a16-a27c09b0314d", - "modified": "2021-01-06T18:30:56.163Z", + "created": "2021-01-13T01:52:45.018Z", + "id": "relationship--437b0034-6e2c-4f86-9b1a-5aed2e623078", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.163Z", - "description": "Boundary Protection", - "id": "relationship--fa277757-0ef9-4bd4-934a-44370f01a784", - "modified": "2021-01-06T18:30:56.163Z", + "created": "2021-01-13T01:52:45.018Z", + "id": "relationship--cacc2bc1-2990-439f-98c7-d590a918520d", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", - "id": "relationship--af1cc805-7843-4164-83ac-47b13ab80ab4", - "modified": "2021-01-06T18:30:56.164Z", + "created": "2021-01-13T01:52:45.018Z", + "id": "relationship--08292c83-03a9-4ccc-bd2b-2b269347aa53", + "modified": "2021-01-13T01:52:45.018Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", - "id": "relationship--ad7eeaa8-b959-43d6-ad68-84c8d71f0d1f", - "modified": "2021-01-06T18:30:56.164Z", + "created": "2021-01-13T01:52:45.019Z", + "id": "relationship--85adc084-effe-4f94-938c-be04c6ad503b", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.164Z", - "description": "Information validation and filtering", - "id": "relationship--1fd5cbb3-c5e8-4f94-8933-b0da5f5a8080", - "modified": "2021-01-06T18:30:56.164Z", + "created": "2021-01-13T01:52:45.019Z", + "id": "relationship--8637e0ca-79d6-41f4-b1d6-8c8a3032323a", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.165Z", - "description": "Information validation and filtering", - "id": "relationship--374009f0-8d28-4dd5-b74c-f059b0b1cc42", - "modified": "2021-01-06T18:30:56.165Z", + "created": "2021-01-13T01:52:45.019Z", + "id": "relationship--fd5b9976-2616-4de7-a82b-055590b499d6", + "modified": "2021-01-13T01:52:45.019Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.168Z", - "description": "Protect and prevent credential access", - "id": "relationship--e2f83466-fc6e-4c05-b55b-e25af95de178", - "modified": "2021-01-06T18:30:56.168Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--7441e8d0-c286-4eaf-bde9-4d276d4136dc", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.168Z", - "description": "Protect and prevent credential access", - "id": "relationship--e4c82d83-162a-413f-9e58-f1cc6c1da1bb", - "modified": "2021-01-06T18:30:56.168Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--fa4478b1-f4b9-4048-971a-6764fe727b8d", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.170Z", - "description": "Continuous Monitoring", - "id": "relationship--7d4f8e6f-b8d4-4d6d-8bd4-a9a26425c784", - "modified": "2021-01-06T18:30:56.170Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--4bd81c36-96e4-4fca-8d52-870e980efe21", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.171Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--61729dcd-6d54-44f7-999b-2fa0ced98459", - "modified": "2021-01-06T18:30:56.171Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--70850735-a9ca-424b-a707-f3b85ec009c4", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.171Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--de3a7ceb-4ff4-4a56-870a-d573291c077c", - "modified": "2021-01-06T18:30:56.171Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--d05a6070-4973-4ac7-8f0d-a5430f07e912", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.173Z", - "description": "Boundary Protection", - "id": "relationship--9e13e70c-4665-4d82-8edd-3da19ea14f0f", - "modified": "2021-01-06T18:30:56.173Z", + "created": "2021-01-13T01:52:45.020Z", + "id": "relationship--127ea0a6-87bf-4749-bf48-d0d239e0cc20", + "modified": "2021-01-13T01:52:45.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.174Z", - "description": "Information validation and filtering", - "id": "relationship--50c86b83-316b-4c11-b933-a5799682dead", - "modified": "2021-01-06T18:30:56.174Z", + "created": "2021-01-13T01:52:45.021Z", + "id": "relationship--2372118d-dd30-4a65-8d1f-cb5114b00801", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.175Z", - "description": "Information validation and filtering", - "id": "relationship--716807b0-b205-48d2-a319-d7987944e641", - "modified": "2021-01-06T18:30:56.175Z", + "created": "2021-01-13T01:52:45.021Z", + "id": "relationship--cb5086df-987b-49e2-8b32-cdefd3a4b74d", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.176Z", - "description": "Protect and prevent credential access", - "id": "relationship--905c0ba2-e82b-4d12-b97e-11db1a7dc56b", - "modified": "2021-01-06T18:30:56.176Z", + "created": "2021-01-13T01:52:45.021Z", + "id": "relationship--fa277757-0ef9-4bd4-934a-44370f01a784", + "modified": "2021-01-13T01:52:45.021Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.176Z", - "description": "Protect and prevent credential access", - "id": "relationship--d2b833f6-4d9f-4160-979a-17dd60b9e415", - "modified": "2021-01-06T18:30:56.176Z", + "created": "2021-01-13T01:52:45.022Z", + "id": "relationship--ea44de23-c95d-4392-81ee-b570fae7b645", + "modified": "2021-01-13T01:52:45.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.177Z", - "description": "Continuous Monitoring", - "id": "relationship--de586ce6-f005-4bd3-8add-49bed729a58a", - "modified": "2021-01-06T18:30:56.177Z", + "created": "2021-01-13T01:52:45.023Z", + "id": "relationship--7d4f8e6f-b8d4-4d6d-8bd4-a9a26425c784", + "modified": "2021-01-13T01:52:45.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.178Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e781835c-e298-40bb-bb47-57b484689db3", - "modified": "2021-01-06T18:30:56.178Z", + "created": "2021-01-13T01:52:45.025Z", + "id": "relationship--ba0d0d8e-ff2b-4ae4-af11-ee516fbbbd0e", + "modified": "2021-01-13T01:52:45.025Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.178Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--02f75466-7a4a-4e8d-8037-34085c91f61a", - "modified": "2021-01-06T18:30:56.178Z", + "created": "2021-01-13T01:52:45.025Z", + "id": "relationship--633e769e-8bd8-4127-9851-636c7012905c", + "modified": "2021-01-13T01:52:45.025Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.179Z", - "description": "Boundary Protection", - "id": "relationship--63e7f8c0-33f2-47f6-a15d-8ae030f686e6", - "modified": "2021-01-06T18:30:56.179Z", + "created": "2021-01-13T01:52:45.028Z", + "id": "relationship--c4e57fce-10f8-49dd-ac76-babf848abcd2", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--657b3634-0536-4e0f-bbd7-2d6b5b717b5d", - "modified": "2021-01-06T18:30:56.180Z", + "created": "2021-01-13T01:52:45.028Z", + "id": "relationship--f2894a8b-3107-42ad-b92f-b00b015f24c8", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3992cf47-10c3-4c2b-8185-b36956eb27c3", - "modified": "2021-01-06T18:30:56.180Z", + "created": "2021-01-13T01:52:45.028Z", + "id": "relationship--f0bada09-f155-4e05-9e61-33e94f8a009e", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.180Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--290cbce3-8001-4bc3-a412-fa5bcb7b1a69", - "modified": "2021-01-06T18:30:56.180Z", + "created": "2021-01-13T01:52:45.028Z", + "id": "relationship--f0ad1c09-2d7b-4536-a0bc-7478759cc434", + "modified": "2021-01-13T01:52:45.028Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.182Z", - "description": "Protect and prevent credential access", - "id": "relationship--4327176e-7aab-4c8c-85e4-2445d121fbad", - "modified": "2021-01-06T18:30:56.182Z", + "created": "2021-01-13T01:52:45.029Z", + "id": "relationship--27524780-9859-484b-a317-3dd4615df14e", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.182Z", - "description": "Protect and prevent credential access", - "id": "relationship--9a088157-16a4-4573-8d96-32d9f9ffd087", - "modified": "2021-01-06T18:30:56.182Z", + "created": "2021-01-13T01:52:45.029Z", + "id": "relationship--41afc783-b203-436b-a6d4-d938c3cdfb87", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.183Z", - "description": "Continuous Monitoring", - "id": "relationship--2a74667c-f88b-4af9-a463-66072ffa382c", - "modified": "2021-01-06T18:30:56.183Z", + "created": "2021-01-13T01:52:45.029Z", + "id": "relationship--138839f2-9bee-4bf1-bf7b-8a42dd9bdc8a", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.184Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--4a6c7cb9-0797-4736-bb06-6d5ef7ade272", - "modified": "2021-01-06T18:30:56.184Z", + "created": "2021-01-13T01:52:45.029Z", + "id": "relationship--95de78f5-2cc2-4089-8ab7-d1de1f744f1a", + "modified": "2021-01-13T01:52:45.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.185Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9c47fe7d-cd84-4f20-ad05-84d73f683aca", - "modified": "2021-01-06T18:30:56.185Z", + "created": "2021-01-13T01:52:45.031Z", + "id": "relationship--a0910186-188a-49a3-b217-f3260d783a53", + "modified": "2021-01-13T01:52:45.031Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.186Z", - "description": "Boundary Protection", - "id": "relationship--1affa735-c92f-4830-8528-8103695ad246", - "modified": "2021-01-06T18:30:56.186Z", + "created": "2021-01-13T01:52:45.032Z", + "id": "relationship--bf974b61-d5b5-40f5-99b1-075c0c4cc784", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.187Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b34f6913-c617-4976-ad0c-cdd82b50d199", - "modified": "2021-01-06T18:30:56.187Z", + "created": "2021-01-13T01:52:45.032Z", + "id": "relationship--c1c3659e-9cb3-4949-a701-a08423038f21", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.187Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--eabfd271-bebb-4e83-b046-72bb49cc503d", - "modified": "2021-01-06T18:30:56.187Z", + "created": "2021-01-13T01:52:45.032Z", + "id": "relationship--091c9447-1eb3-4083-93f0-47fc8609a744", + "modified": "2021-01-13T01:52:45.032Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.188Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7ee3105e-4280-48aa-9bba-70ca5ce649ee", - "modified": "2021-01-06T18:30:56.188Z", + "created": "2021-01-13T01:52:45.034Z", + "id": "relationship--b323cb4c-2d8b-42cb-99ce-ed1565fb9971", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.188Z", - "description": "Protect and prevent credential access", - "id": "relationship--cd997a6c-a6d2-4e9d-8102-1f0d00ba1f9a", - "modified": "2021-01-06T18:30:56.188Z", + "created": "2021-01-13T01:52:45.034Z", + "id": "relationship--ddbe6c91-03bb-49c2-a631-c38f7ca7befc", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", - "id": "relationship--22056059-5348-4d2a-bf87-3f9e2081fa96", - "modified": "2021-01-06T18:30:56.189Z", + "created": "2021-01-13T01:52:45.034Z", + "id": "relationship--ba22a964-c334-4b7a-a737-fb16d21929c0", + "modified": "2021-01-13T01:52:45.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", - "id": "relationship--fe9b14f4-cd19-4d75-89cc-ff3c97c188ac", - "modified": "2021-01-06T18:30:56.189Z", + "created": "2021-01-13T01:52:45.035Z", + "id": "relationship--fc8dd7bb-a99c-4d79-8e70-9cfcd609a2ba", + "modified": "2021-01-13T01:52:45.035Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.189Z", - "description": "Protect and prevent credential access", - "id": "relationship--4588c060-9035-4785-b439-5a1e558dc0b8", - "modified": "2021-01-06T18:30:56.189Z", + "created": "2021-01-13T01:52:45.036Z", + "id": "relationship--8b2c664f-8477-4414-97cf-b232aef42c1d", + "modified": "2021-01-13T01:52:45.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.190Z", - "description": "Continuous Monitoring", - "id": "relationship--4f2b0678-5c73-4547-bc05-d88bb630fc47", - "modified": "2021-01-06T18:30:56.190Z", + "created": "2021-01-13T01:52:45.037Z", + "id": "relationship--9205d044-eb01-424f-af30-76383815f5c3", + "modified": "2021-01-13T01:52:45.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.190Z", - "description": "Continuous Monitoring", - "id": "relationship--342815de-7647-495b-8426-15385bea690b", - "modified": "2021-01-06T18:30:56.190Z", + "created": "2021-01-13T01:52:45.037Z", + "id": "relationship--dab047db-55d9-442f-ae37-0ad0397ccca2", + "modified": "2021-01-13T01:52:45.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0a83abb4-1198-423b-b101-226337dfcdc3", - "modified": "2021-01-06T18:30:56.191Z", + "created": "2021-01-13T01:52:45.038Z", + "id": "relationship--4caec892-2edb-44ac-a1e9-6a23a1c53f57", + "modified": "2021-01-13T01:52:45.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--740d015b-472b-4004-a26b-3bae2d561d76", - "modified": "2021-01-06T18:30:56.191Z", + "created": "2021-01-13T01:52:45.039Z", + "id": "relationship--9e000fb6-7d8e-4b4c-aa08-d58a0f5f7cec", + "modified": "2021-01-13T01:52:45.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.191Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c0eafced-2b5f-412e-b268-2bb46a1c2268", - "modified": "2021-01-06T18:30:56.191Z", + "created": "2021-01-13T01:52:45.040Z", + "id": "relationship--7c5418a8-04b7-4738-ad04-94459367d6cb", + "modified": "2021-01-13T01:52:45.040Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.192Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--cedea28c-a762-47a8-8402-cae5adad9a56", - "modified": "2021-01-06T18:30:56.192Z", + "created": "2021-01-13T01:52:45.041Z", + "id": "relationship--ca430e23-e8b8-4940-86d4-1a35e7944204", + "modified": "2021-01-13T01:52:45.041Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.193Z", - "description": "Boundary Protection", - "id": "relationship--f11fef81-78d1-4662-9fab-0b918ea4fc4e", - "modified": "2021-01-06T18:30:56.193Z", + "created": "2021-01-13T01:52:45.041Z", + "id": "relationship--daa96836-dc68-47c8-94a6-9d3d92d8d7fc", + "modified": "2021-01-13T01:52:45.041Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.193Z", - "description": "Boundary Protection", - "id": "relationship--c487bf25-c4ba-4631-b383-1cbe74c44f7a", - "modified": "2021-01-06T18:30:56.193Z", + "created": "2021-01-13T01:52:45.042Z", + "id": "relationship--609a8d11-80cc-4f36-a6d7-5357b8f2773e", + "modified": "2021-01-13T01:52:45.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--b154124b-4112-432a-a59e-e6cc09118a2a", - "modified": "2021-01-06T18:30:56.194Z", + "created": "2021-01-13T01:52:45.043Z", + "id": "relationship--59aa54a6-335b-487c-ac76-94ca99e4db75", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--58df78f1-17a9-47b2-8c4d-dde3a361a45e", - "modified": "2021-01-06T18:30:56.194Z", + "created": "2021-01-13T01:52:45.043Z", + "id": "relationship--c016aba8-9132-4e47-af3e-3d8c7a457ca9", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--290b569e-30ab-402a-b14d-8dd89d85fc2b", - "modified": "2021-01-06T18:30:56.194Z", + "created": "2021-01-13T01:52:45.043Z", + "id": "relationship--4514b059-97d2-4f59-b5fa-5e58acaa4a3d", + "modified": "2021-01-13T01:52:45.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.194Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--0606cdcb-6016-4fa7-a7ee-6386e8f02c75", - "modified": "2021-01-06T18:30:56.194Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--4b91d828-bdae-4b6e-a49d-e66b2ab27dd0", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.195Z", - "description": "Protect and prevent credential access", - "id": "relationship--ac77f9ab-8b8b-40d1-8282-120506256ce0", - "modified": "2021-01-06T18:30:56.195Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--2d3ecff7-355b-4e9c-b254-0674e84c7fa0", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.196Z", - "description": "Protect and prevent credential access", - "id": "relationship--73814f34-1a5f-404b-a384-c757cfc2c56c", - "modified": "2021-01-06T18:30:56.196Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--7604748e-93f8-470c-a8da-f914feff9927", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.197Z", - "description": "Continuous Monitoring", - "id": "relationship--67905462-62df-46fb-8e1d-68d97a77d772", - "modified": "2021-01-06T18:30:56.197Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--1723b5c2-0ace-40be-9533-c4d7c4fff3ab", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.198Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.198Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--c4e77624-ab62-408e-a93a-25bb0cb1993e", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.198Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.198Z", + "created": "2021-01-13T01:52:45.044Z", + "id": "relationship--984057b7-db44-4789-a0ad-e8e450689856", + "modified": "2021-01-13T01:52:45.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.200Z", - "description": "Boundary Protection", - "id": "relationship--8c79a193-dc38-41ee-8837-bb4734dddaed", - "modified": "2021-01-06T18:30:56.200Z", + "created": "2021-01-13T01:52:45.045Z", + "id": "relationship--55bc726c-010d-43c7-ab61-8d7aa57b64bc", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.202Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.202Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--335b369a-d65d-4847-86ae-47e8ac0b5a4b", - "modified": "2021-01-06T18:30:56.202Z", + "created": "2021-01-13T01:52:45.045Z", + "id": "relationship--33a3e84c-0ef5-4755-82e1-ae1b883d3e93", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.203Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8a19562b-f4aa-4305-8694-81ccfca1cba6", - "modified": "2021-01-06T18:30:56.203Z", + "created": "2021-01-13T01:52:45.045Z", + "id": "relationship--dae85ca6-0a5c-45e5-a12a-3e8e67999ae8", + "modified": "2021-01-13T01:52:45.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.204Z", - "description": "Protect and prevent credential access", - "id": "relationship--5712d0a7-afbb-48b6-a971-ab4d637883d6", - "modified": "2021-01-06T18:30:56.204Z", + "created": "2021-01-13T01:52:45.046Z", + "id": "relationship--74a01ea9-c9d6-4c0f-b1ab-69e2725a2696", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.204Z", - "description": "Protect and prevent credential access", - "id": "relationship--5b5b5c21-43ec-4bf1-a2db-728c2922d596", - "modified": "2021-01-06T18:30:56.204Z", + "created": "2021-01-13T01:52:45.046Z", + "id": "relationship--7509655f-157e-4ed1-b8ea-c1d418941304", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.206Z", - "description": "Continuous Monitoring", - "id": "relationship--56ee2214-dd32-4867-9da8-b38013c35dcb", - "modified": "2021-01-06T18:30:56.206Z", + "created": "2021-01-13T01:52:45.046Z", + "id": "relationship--fec157f7-5ddd-467d-ae2e-be3f2bde65bd", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.208Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--19c81411-09a6-40b9-9761-5c9e8f5b4059", - "modified": "2021-01-06T18:30:56.208Z", + "created": "2021-01-13T01:52:45.046Z", + "id": "relationship--e9bd4f1e-84f9-485a-aa95-5fa6a10e2ecb", + "modified": "2021-01-13T01:52:45.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.208Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:56.208Z", + "created": "2021-01-13T01:52:45.047Z", + "id": "relationship--7e484388-3a2b-4603-977c-8177dfabb1e6", + "modified": "2021-01-13T01:52:45.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.211Z", - "description": "Boundary Protection", - "id": "relationship--61023e1e-9ac5-4ee8-9a68-723ae071d315", - "modified": "2021-01-06T18:30:56.211Z", + "created": "2021-01-13T01:52:45.047Z", + "id": "relationship--d797f35b-2057-489e-b19d-6f7eb6c9df07", + "modified": "2021-01-13T01:52:45.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:56.213Z", + "created": "2021-01-13T01:52:45.048Z", + "id": "relationship--f9c28e04-f3a7-42c9-8436-c5d656379df5", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d5758186-cb9c-42df-9e39-d6a7dc997b18", - "modified": "2021-01-06T18:30:56.213Z", + "created": "2021-01-13T01:52:45.048Z", + "id": "relationship--da9ad881-7c04-4dac-82a3-c9337e20a02d", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.213Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f5fb50d6-14d8-4337-b1ef-0dd1543d4d44", - "modified": "2021-01-06T18:30:56.213Z", + "created": "2021-01-13T01:52:45.048Z", + "id": "relationship--41cf9ebe-7f68-4d4e-b46b-51e76c12aee7", + "modified": "2021-01-13T01:52:45.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.215Z", - "description": "Protect and prevent credential access", - "id": "relationship--55430831-4cf1-4311-8030-099ae3f6616b", - "modified": "2021-01-06T18:30:56.215Z", + "created": "2021-01-13T01:52:45.049Z", + "id": "relationship--0934ac7d-24dc-4313-9fb3-f126d866a06c", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", - "id": "relationship--6c5dd7fc-bccb-4504-a80e-f572bf3cbf3d", - "modified": "2021-01-06T18:30:56.216Z", + "created": "2021-01-13T01:52:45.049Z", + "id": "relationship--c2b104bc-6f77-428a-b3fd-5e521caae96d", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", - "id": "relationship--2ec6a654-731e-4d10-a867-34cbc8eb68b2", - "modified": "2021-01-06T18:30:56.216Z", + "created": "2021-01-13T01:52:45.049Z", + "id": "relationship--f4339002-abc4-4aa0-bed4-992366aa5329", + "modified": "2021-01-13T01:52:45.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", - "id": "relationship--22870727-5c6e-4401-9ce5-fc768a809e9e", - "modified": "2021-01-06T18:30:56.216Z", + "created": "2021-01-13T01:52:45.050Z", + "id": "relationship--a5f86b3d-01d6-44da-b2c4-df3419825c39", + "modified": "2021-01-13T01:52:45.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.216Z", - "description": "Protect and prevent credential access", - "id": "relationship--3d3f4519-4157-43dc-826c-240d5da53206", - "modified": "2021-01-06T18:30:56.216Z", + "created": "2021-01-13T01:52:45.050Z", + "id": "relationship--771f6d26-e388-4d6e-a2ea-ad5765af7263", + "modified": "2021-01-13T01:52:45.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.217Z", - "description": "Protect and prevent credential access", - "id": "relationship--492d8db0-b626-42f4-bc57-ad05c1fab2cf", - "modified": "2021-01-06T18:30:56.217Z", + "created": "2021-01-13T01:52:45.052Z", + "id": "relationship--c85ecfa3-e756-48d2-99e2-0167f935e940", + "modified": "2021-01-13T01:52:45.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", - "id": "relationship--1d985a66-3d1e-47fc-80b9-77a62a959dfd", - "modified": "2021-01-06T18:30:56.219Z", + "created": "2021-01-13T01:52:45.052Z", + "id": "relationship--b6e8470d-8ae7-465c-aa11-8eb3fc94b140", + "modified": "2021-01-13T01:52:45.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", - "id": "relationship--1b97c235-a906-4961-a2d8-719ede07c8cd", - "modified": "2021-01-06T18:30:56.219Z", + "created": "2021-01-13T01:52:45.054Z", + "id": "relationship--53743617-0471-44e8-a9df-e8db2dd76ee0", + "modified": "2021-01-13T01:52:45.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.219Z", - "description": "Continuous Monitoring", - "id": "relationship--46d4e416-0093-4e7d-a6bd-45e0838b6873", - "modified": "2021-01-06T18:30:56.219Z", + "created": "2021-01-13T01:52:45.055Z", + "id": "relationship--19c81411-09a6-40b9-9761-5c9e8f5b4059", + "modified": "2021-01-13T01:52:45.055Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.221Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--afc5b329-fcd1-4405-a851-23664853164a", - "modified": "2021-01-06T18:30:56.221Z", + "created": "2021-01-13T01:52:45.055Z", + "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", + "modified": "2021-01-13T01:52:45.055Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--5e0e7ec5-35b1-4e4d-a3dc-f514575e0a59", - "modified": "2021-01-06T18:30:56.222Z", + "created": "2021-01-13T01:52:45.056Z", + "id": "relationship--56ee2214-dd32-4867-9da8-b38013c35dcb", + "modified": "2021-01-13T01:52:45.056Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fc12c35d-c134-4dff-8824-16fbe129cf4d", - "modified": "2021-01-06T18:30:56.222Z", + "created": "2021-01-13T01:52:45.057Z", + "id": "relationship--5b5b5c21-43ec-4bf1-a2db-728c2922d596", + "modified": "2021-01-13T01:52:45.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.222Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3660b321-ead1-4e2a-96ed-ceda0fbc1e8b", - "modified": "2021-01-06T18:30:56.222Z", + "created": "2021-01-13T01:52:45.057Z", + "id": "relationship--69a2b36d-b382-4849-bea5-a375fd2d110d", + "modified": "2021-01-13T01:52:45.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.223Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--37e54c11-492a-46c2-aa58-e5963a23bb70", - "modified": "2021-01-06T18:30:56.223Z", + "created": "2021-01-13T01:52:45.058Z", + "id": "relationship--48b77967-1aa3-409f-9888-ca92b1108d5a", + "modified": "2021-01-13T01:52:45.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.223Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--15de80fc-389c-4fda-97cb-c009140be5e1", - "modified": "2021-01-06T18:30:56.223Z", + "created": "2021-01-13T01:52:45.058Z", + "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", + "modified": "2021-01-13T01:52:45.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", - "id": "relationship--3ada8a50-6f2a-4f99-ac92-8b01763b0e5f", - "modified": "2021-01-06T18:30:56.225Z", + "created": "2021-01-13T01:52:45.059Z", + "id": "relationship--61023e1e-9ac5-4ee8-9a68-723ae071d315", + "modified": "2021-01-13T01:52:45.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", - "id": "relationship--1bc7995b-8366-421f-9dc7-0b930a86f7ff", - "modified": "2021-01-06T18:30:56.225Z", + "created": "2021-01-13T01:52:45.060Z", + "id": "relationship--2d3329c9-f2c4-4c3c-bc9c-df4135741cf1", + "modified": "2021-01-13T01:52:45.060Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.225Z", - "description": "Boundary Protection", - "id": "relationship--299c08cf-3eb7-466b-8921-df7573d610f7", - "modified": "2021-01-06T18:30:56.225Z", + "created": "2021-01-13T01:52:45.064Z", + "id": "relationship--1cbdc079-9f5b-42d4-bcaf-8b906c217e69", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.226Z", - "description": "Information validation and filtering", - "id": "relationship--de79e416-5518-494e-ba4b-78ecafae465f", - "modified": "2021-01-06T18:30:56.226Z", + "created": "2021-01-13T01:52:45.064Z", + "id": "relationship--0d038216-9c72-4d49-a8aa-efb209629e2b", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.226Z", - "description": "Information validation and filtering", - "id": "relationship--38f1b973-3a94-44ac-8d2c-32c10a934d3b", - "modified": "2021-01-06T18:30:56.226Z", + "created": "2021-01-13T01:52:45.064Z", + "id": "relationship--8471bdb3-90ba-4994-8198-d732dbce18ee", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", - "id": "relationship--aeff7d2a-785e-4cd3-a9aa-df8324654ba9", - "modified": "2021-01-06T18:30:56.227Z", + "created": "2021-01-13T01:52:45.064Z", + "id": "relationship--e59623db-2a68-4010-a9f2-3810d2485386", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", - "id": "relationship--0bcd13b7-c4d6-40b5-b9d1-7403e2eb6300", - "modified": "2021-01-06T18:30:56.227Z", + "created": "2021-01-13T01:52:45.064Z", + "id": "relationship--57c93a7e-294b-4e0c-a05b-2c200c6b18ca", + "modified": "2021-01-13T01:52:45.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", - "id": "relationship--2547a3ab-ada2-43d1-8c84-6cf899425c86", - "modified": "2021-01-06T18:30:56.227Z", + "created": "2021-01-13T01:52:45.065Z", + "id": "relationship--696a55bf-4b4f-4e87-88ef-956d45656350", + "modified": "2021-01-13T01:52:45.065Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.227Z", - "description": "Information validation and filtering", - "id": "relationship--7df71792-2440-4234-bbb5-bf9b8396d478", - "modified": "2021-01-06T18:30:56.227Z", + "created": "2021-01-13T01:52:45.065Z", + "id": "relationship--5fcf0827-22bb-4559-ac02-90e25f62d691", + "modified": "2021-01-13T01:52:45.065Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.228Z", - "description": "Protect and prevent credential access", - "id": "relationship--f7867605-cfa0-40c4-ade4-dbbfc37dd75b", - "modified": "2021-01-06T18:30:56.228Z", + "created": "2021-01-13T01:52:45.066Z", + "id": "relationship--870e43c2-7a35-4205-8431-c3ae90d35ab1", + "modified": "2021-01-13T01:52:45.066Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", - "id": "relationship--4e2e6223-6c57-406c-b067-01fc519b3f07", - "modified": "2021-01-06T18:30:56.229Z", + "created": "2021-01-13T01:52:45.066Z", + "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", + "modified": "2021-01-13T01:52:45.066Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", - "id": "relationship--c35b48c5-8ecc-4308-b4c6-5191dd6ff50f", - "modified": "2021-01-06T18:30:56.229Z", + "created": "2021-01-13T01:52:45.067Z", + "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", + "modified": "2021-01-13T01:52:45.067Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", - "id": "relationship--c3ff51c3-dc2f-405c-910b-3425ad6981e4", - "modified": "2021-01-06T18:30:56.229Z", + "created": "2021-01-13T01:52:45.067Z", + "id": "relationship--5d8c575a-6333-427b-8426-13c9acbcc366", + "modified": "2021-01-13T01:52:45.067Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", - "id": "relationship--895eae60-d5de-47d6-b448-7c11349460d4", - "modified": "2021-01-06T18:30:56.229Z", + "created": "2021-01-13T01:52:45.068Z", + "id": "relationship--aabd92a1-d294-4b32-97c9-883c5f05122e", + "modified": "2021-01-13T01:52:45.068Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.229Z", - "description": "Protect and prevent credential access", - "id": "relationship--b16b6160-37c2-45a1-be70-9672158af7ea", - "modified": "2021-01-06T18:30:56.229Z", + "created": "2021-01-13T01:52:45.069Z", + "id": "relationship--c356d850-4a9e-47b0-a4f7-e324881aed1b", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", - "id": "relationship--53bd6dc4-9583-4988-9970-a3214339093f", - "modified": "2021-01-06T18:30:56.230Z", + "created": "2021-01-13T01:52:45.069Z", + "id": "relationship--ac1a7f1f-d13d-4bf9-8847-613bb3ef1c04", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", - "id": "relationship--bdf648b6-06c4-4f51-9397-a1ff326e4e19", - "modified": "2021-01-06T18:30:56.230Z", + "created": "2021-01-13T01:52:45.069Z", + "id": "relationship--91e926da-692e-4b08-83bb-ec5e091c4996", + "modified": "2021-01-13T01:52:45.069Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", - "id": "relationship--e790eb5f-dd11-49c2-ae64-b5f993284c86", - "modified": "2021-01-06T18:30:56.230Z", + "created": "2021-01-13T01:52:45.070Z", + "id": "relationship--501cd653-f951-4aba-a92a-b4ec25707e85", + "modified": "2021-01-13T01:52:45.070Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.230Z", - "description": "Protect and prevent credential access", - "id": "relationship--d97cf3d8-173a-4459-8fb8-68774f7b85a2", - "modified": "2021-01-06T18:30:56.230Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--3c74c586-54f0-470f-8b56-477d4c92cbd5", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", - "id": "relationship--03932d93-088c-40ad-adc2-13a091de376f", - "modified": "2021-01-06T18:30:56.232Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--40a9d6d0-ac62-41d8-8b52-02a508e20f71", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", - "id": "relationship--d0d5ce30-a02c-4291-9091-b2ff8aa97518", - "modified": "2021-01-06T18:30:56.232Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--a98cd07c-7f86-4b1f-b963-751cf9c57b11", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.232Z", - "description": "Continuous Monitoring", - "id": "relationship--8d7c1452-d021-4109-9db8-f3e6fcd8b037", - "modified": "2021-01-06T18:30:56.232Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.233Z", - "description": "Continuous Monitoring", - "id": "relationship--18f0842c-779a-4be3-a6e5-c22163338d3a", - "modified": "2021-01-06T18:30:56.233Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.233Z", - "description": "Continuous Monitoring", - "id": "relationship--6745ce31-8b48-4e92-ab63-67f038fb911b", - "modified": "2021-01-06T18:30:56.233Z", + "created": "2021-01-13T01:52:45.071Z", + "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", + "modified": "2021-01-13T01:52:45.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6e5507ca-c8ef-454f-9991-9b7d23e2464b", - "modified": "2021-01-06T18:30:56.235Z", + "created": "2021-01-13T01:52:45.072Z", + "id": "relationship--35b6de72-f853-4bb5-87f5-786c8705c4c6", + "modified": "2021-01-13T01:52:45.072Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--cad97dc0-c15f-441b-99de-f9f56dbe63ed", - "modified": "2021-01-06T18:30:56.235Z", + "created": "2021-01-13T01:52:45.072Z", + "id": "relationship--a836bd2e-13c9-4460-9dc5-37580aa7f5e0", + "modified": "2021-01-13T01:52:45.072Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--df3b3169-9ac8-46b2-9961-60e7c0c8d534", - "modified": "2021-01-06T18:30:56.235Z", + "created": "2021-01-13T01:52:45.073Z", + "id": "relationship--a48fe1a3-ae5f-43e4-818b-4a61174179f6", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b4173709-4d55-4eb4-94f3-365af13aa0fd", - "modified": "2021-01-06T18:30:56.235Z", + "created": "2021-01-13T01:52:45.073Z", + "id": "relationship--d40d8d8c-f1a8-4199-893c-c4113b4a472d", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.235Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6a8ced40-8e50-4423-9277-3bb9df1d0df8", - "modified": "2021-01-06T18:30:56.235Z", + "created": "2021-01-13T01:52:45.073Z", + "id": "relationship--6a20f6aa-cfeb-4d2f-8a70-b4569ccc0646", + "modified": "2021-01-13T01:52:45.073Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f9e2e042-52d0-4085-a592-3a35acc9772a", - "modified": "2021-01-06T18:30:56.236Z", + "created": "2021-01-13T01:52:45.074Z", + "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--daa28f4f-a2ae-423c-8374-96f36d3a1085", - "modified": "2021-01-06T18:30:56.236Z", + "created": "2021-01-13T01:52:45.074Z", + "id": "relationship--70138a09-23fc-4eb4-8b00-9c69d120e517", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1ac8ac96-d96d-44c6-afe7-874f6bcd51d5", - "modified": "2021-01-06T18:30:56.236Z", + "created": "2021-01-13T01:52:45.074Z", + "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6e7c5c1c-892f-4e64-8c98-ef5bfaff5ee6", - "modified": "2021-01-06T18:30:56.236Z", + "created": "2021-01-13T01:52:45.074Z", + "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.236Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--09930b2d-5b89-44c2-b249-1af929eec54d", - "modified": "2021-01-06T18:30:56.236Z", + "created": "2021-01-13T01:52:45.074Z", + "id": "relationship--a129cf5e-d35b-4719-aeee-c0e394b1ff34", + "modified": "2021-01-13T01:52:45.074Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.237Z", - "description": "Boundary Protection", - "id": "relationship--f4565898-2ef7-4a4d-a870-e6c39f3924ff", - "modified": "2021-01-06T18:30:56.237Z", + "created": "2021-01-13T01:52:45.080Z", + "id": "relationship--d9f86872-1fa9-4e0d-b7f5-aee41d30d280", + "modified": "2021-01-13T01:52:45.080Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.237Z", - "description": "Boundary Protection", - "id": "relationship--e74d57de-f1c3-4e29-80a4-ccfb6aa8e38d", - "modified": "2021-01-06T18:30:56.237Z", + "created": "2021-01-13T01:52:45.080Z", + "id": "relationship--72ee9363-0c29-4a88-98df-d1cddbb781c8", + "modified": "2021-01-13T01:52:45.080Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", - "id": "relationship--19a6246f-ce75-4c4d-9320-ebb3b7944f71", - "modified": "2021-01-06T18:30:56.238Z", + "created": "2021-01-13T01:52:45.081Z", + "id": "relationship--d8e22451-3c97-4920-92c5-9a6c2cfa2832", + "modified": "2021-01-13T01:52:45.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", - "id": "relationship--8bc71b60-4d8e-4280-b091-fe648734e6b3", - "modified": "2021-01-06T18:30:56.238Z", + "created": "2021-01-13T01:52:45.081Z", + "id": "relationship--8c01d866-9405-4aee-836c-ce80501e9f67", + "modified": "2021-01-13T01:52:45.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.238Z", - "description": "Boundary Protection", - "id": "relationship--174abdb9-c3bb-4140-b9f9-274972b63ca2", - "modified": "2021-01-06T18:30:56.238Z", + "created": "2021-01-13T01:52:45.082Z", + "id": "relationship--778d0905-c099-43d7-83cd-4172c0ec69ff", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--2efd12d4-586c-47e7-8ee1-bb74a3a6672c", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.082Z", + "id": "relationship--fcba7cfc-4a47-446f-8b22-79fe939f4071", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e6163f97-4e90-47c1-9f0f-801327d1ba90", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.082Z", + "id": "relationship--a24be6a4-699c-403d-ba39-486e849e66d5", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d62ec3df-71fc-47e9-a807-87b083e72a9e", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.082Z", + "id": "relationship--4efe4af9-8917-4b1b-b40b-c17cb6dbdb3e", + "modified": "2021-01-13T01:52:45.082Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--46bf7820-4aa7-46a5-aa9f-7df37b7e9f2f", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.084Z", + "id": "relationship--7ed97ff6-18ac-40e3-ac4c-f1288bd6f427", + "modified": "2021-01-13T01:52:45.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--70355dac-0b67-4b67-8473-be03c8b1a40b", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.085Z", + "id": "relationship--b84716f1-7821-4395-bab3-ebd3f17fcff0", + "modified": "2021-01-13T01:52:45.085Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5294d7bc-7107-4ece-b074-cbac2c21fda6", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.086Z", + "id": "relationship--26a56ab4-bbba-4bcf-b303-4f85fa6083c4", + "modified": "2021-01-13T01:52:45.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.239Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--580cedfb-c6cf-4c43-9ba3-0530e62981c1", - "modified": "2021-01-06T18:30:56.239Z", + "created": "2021-01-13T01:52:45.086Z", + "id": "relationship--3b9fba86-2583-4fe9-916f-85a2ed1eb7a6", + "modified": "2021-01-13T01:52:45.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e1604494-b31f-43d9-bb8b-90f3cc58cd85", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.087Z", + "id": "relationship--0f01ef2b-ac8e-4389-bd22-9edf7b6450d6", + "modified": "2021-01-13T01:52:45.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--cca83a1f-45bf-4434-8473-45f373559340", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.088Z", + "id": "relationship--28922cc3-fa83-4f07-8ee1-c076b3ddf8da", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7ba1f329-3378-492a-88e3-7aeba5420e47", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.088Z", + "id": "relationship--18ab8f41-d709-4a6d-a47f-317309092e9a", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--90bc4e55-0a01-4b53-a75e-19820dde1ad7", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.088Z", + "id": "relationship--08624c17-1bf1-48c8-98eb-8537b92ef398", + "modified": "2021-01-13T01:52:45.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--11051d9b-1713-4164-a6e5-6b98ce0da75f", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.089Z", + "id": "relationship--557bbba8-b503-4c5a-8537-955030e37f13", + "modified": "2021-01-13T01:52:45.089Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--9873d4bc-b8a9-4d5a-8779-8338b742d2cf", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.090Z", + "id": "relationship--b4ec8adf-3ade-4cf8-8e90-918f6f97ac49", + "modified": "2021-01-13T01:52:45.090Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.240Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--c47584c8-43be-4ff1-9132-b973485504dd", - "modified": "2021-01-06T18:30:56.240Z", + "created": "2021-01-13T01:52:45.092Z", + "id": "relationship--4302d4a5-317b-4227-8691-d3c19fd52920", + "modified": "2021-01-13T01:52:45.092Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.241Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7e495803-d344-453b-903e-2fb885d1d974", - "modified": "2021-01-06T18:30:56.241Z", + "created": "2021-01-13T01:52:45.092Z", + "id": "relationship--c482fb86-5806-46e8-aa89-24bed4b2d193", + "modified": "2021-01-13T01:52:45.092Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.242Z", - "description": "Access Control, External Systems", - "id": "relationship--421e15e2-196f-445a-bd57-50a1cfb6422d", - "modified": "2021-01-06T18:30:56.242Z", + "created": "2021-01-13T01:52:45.094Z", + "id": "relationship--f1869fa0-7cfb-4b59-b4b2-d31ae7bceafa", + "modified": "2021-01-13T01:52:45.094Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.242Z", - "description": "Access Control, External Systems", - "id": "relationship--5b2ed4ce-cb84-4e6d-87f5-23a8873c0fa4", - "modified": "2021-01-06T18:30:56.242Z", + "created": "2021-01-13T01:52:45.095Z", + "id": "relationship--845b5763-2f76-412a-99b7-ab95856b954b", + "modified": "2021-01-13T01:52:45.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.243Z", - "description": "Access Control, External Systems", - "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:56.243Z", + "created": "2021-01-13T01:52:45.095Z", + "id": "relationship--be6a7394-6b5b-46ee-92d3-33d26ece03ea", + "modified": "2021-01-13T01:52:45.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.243Z", - "description": "Access Control, External Systems", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.243Z", + "created": "2021-01-13T01:52:45.096Z", + "id": "relationship--542adb5c-ee88-4e32-8b4a-13412d0ce66c", + "modified": "2021-01-13T01:52:45.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.244Z", - "description": "Continuous Monitoring", - "id": "relationship--2791cb53-48ad-4c2e-929a-1319bc17d381", - "modified": "2021-01-06T18:30:56.244Z", + "created": "2021-01-13T01:52:45.097Z", + "id": "relationship--bb33f797-f5d6-483a-a5ca-927920e29ea7", + "modified": "2021-01-13T01:52:45.097Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.245Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.245Z", + "created": "2021-01-13T01:52:45.098Z", + "id": "relationship--d55ed387-98f8-49a1-b2b4-63207c0eea14", + "modified": "2021-01-13T01:52:45.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.245Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", - "modified": "2021-01-06T18:30:56.245Z", + "created": "2021-01-13T01:52:45.098Z", + "id": "relationship--6bde435b-ab3a-46f6-8b4d-2e246c7b5227", + "modified": "2021-01-13T01:52:45.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.246Z", - "description": "Identification", - "id": "relationship--8449c02a-ea2a-4e5a-b2f7-e590494d7b0a", - "modified": "2021-01-06T18:30:56.246Z", + "created": "2021-01-13T01:52:45.099Z", + "id": "relationship--aa2264c1-53e8-4216-9341-d0359b1bb319", + "modified": "2021-01-13T01:52:45.099Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.246Z", - "description": "Identification", - "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", - "modified": "2021-01-06T18:30:56.246Z", + "created": "2021-01-13T01:52:45.099Z", + "id": "relationship--c93759b6-67ce-4547-b704-3e3fad5a18e7", + "modified": "2021-01-13T01:52:45.099Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.247Z", - "description": "Boundary Protection", - "id": "relationship--0ed497fe-1155-4185-8ba3-d0f7e5ff8a22", - "modified": "2021-01-06T18:30:56.247Z", + "created": "2021-01-13T01:52:45.100Z", + "id": "relationship--62138324-415c-4c9c-b1c3-4dc563bcabb9", + "modified": "2021-01-13T01:52:45.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.248Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.248Z", + "created": "2021-01-13T01:52:45.100Z", + "id": "relationship--35d65108-1646-40f2-a834-134738cc5b34", + "modified": "2021-01-13T01:52:45.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.249Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5e0d485a-1272-4d30-a63e-d4d4d6b649ae", - "modified": "2021-01-06T18:30:56.249Z", + "created": "2021-01-13T01:52:45.101Z", + "id": "relationship--4a7b435e-5e2a-4b91-ac4c-7ad800db62c1", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.249Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0aad8adb-af23-4f6a-a928-dae5362b6ae9", - "modified": "2021-01-06T18:30:56.249Z", + "created": "2021-01-13T01:52:45.101Z", + "id": "relationship--f940ca1b-1424-4f9d-9b2f-974f41b5da01", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--7d5ff405-ff1f-4f53-8ec6-e851f3c16c8c", - "modified": "2021-01-06T18:30:56.250Z", + "created": "2021-01-13T01:52:45.101Z", + "id": "relationship--fbd85a57-5523-43cc-a3f0-e1737ca9e55e", + "modified": "2021-01-13T01:52:45.101Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--8e3b1e5f-49a1-4df9-8b60-ee6ed7ffad51", - "modified": "2021-01-06T18:30:56.250Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--cc21441f-57c9-4bf0-af10-228cbcc40d7e", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.250Z", - "description": "Access Control, External Systems", - "id": "relationship--a840dd6e-5a69-4a1d-be87-3be44ed59acd", - "modified": "2021-01-06T18:30:56.250Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--8ae9f4cd-ad5b-4064-bca0-6ef5c8a5169b", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.251Z", - "description": "Access Control, External Systems", - "id": "relationship--cf03827b-411f-4656-862c-e1696c04110c", - "modified": "2021-01-06T18:30:56.251Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--29a9f9ad-52da-402f-b41a-61735e54307e", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.252Z", - "description": "Continuous Monitoring", - "id": "relationship--20c8b9ea-d8a4-40bb-afdc-db059fcc7d8f", - "modified": "2021-01-06T18:30:56.252Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--3c5d64ee-850b-41eb-90a3-49fdcc5ef0cf", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.253Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--2434b6ac-7112-45c0-a295-cdacd75120d9", - "modified": "2021-01-06T18:30:56.253Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--3c181cfd-e544-4774-8172-b43dbf7124ea", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.253Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b8e9e642-b607-474d-98a8-935660d0f72f", - "modified": "2021-01-06T18:30:56.253Z", + "created": "2021-01-13T01:52:45.102Z", + "id": "relationship--50146c8e-4bea-4652-b6d4-b81b382bc33a", + "modified": "2021-01-13T01:52:45.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--99e682c0-b09c-47ed-85bf-8c59afe5de06", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.254Z", - "description": "Identification", - "id": "relationship--3026bc3b-d8a7-4aae-b9f6-823e26e1a0c3", - "modified": "2021-01-06T18:30:56.254Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--509817e6-b915-47a5-ae82-8b1c937d0577", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.254Z", - "description": "Identification", - "id": "relationship--546b010b-f278-442a-b07d-db1c31e8bcf5", - "modified": "2021-01-06T18:30:56.254Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--c9f0cc18-6a31-4138-9cbc-fef9d6acdc10", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.255Z", - "description": "Boundary Protection", - "id": "relationship--a84f59c7-dd13-4bd4-aef8-830f975e6d6f", - "modified": "2021-01-06T18:30:56.255Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--c8ef0af3-4b84-4120-9a73-a0753511b14f", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.256Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dcafa7e3-bf91-481e-91f3-0a403208d438", - "modified": "2021-01-06T18:30:56.256Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.257Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7e874496-dd6a-4876-bfad-11d3fbac1562", - "modified": "2021-01-06T18:30:56.257Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.257Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--28548263-d7a9-48ca-a799-770359722559", - "modified": "2021-01-06T18:30:56.257Z", + "created": "2021-01-13T01:52:45.103Z", + "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", + "modified": "2021-01-13T01:52:45.103Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--5486d6a2-8659-4a26-91d3-309e8ba5f97f", - "modified": "2021-01-06T18:30:56.259Z", + "created": "2021-01-13T01:52:45.105Z", + "id": "relationship--9fe45e33-cca6-4138-814e-8211c06132ef", + "modified": "2021-01-13T01:52:45.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:56.259Z", + "created": "2021-01-13T01:52:45.105Z", + "id": "relationship--0f04b09e-4ddd-46cf-95ac-85a08f764a21", + "modified": "2021-01-13T01:52:45.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--3df3ca2d-50c1-4e70-a8c1-e636d1abe5d0", - "modified": "2021-01-06T18:30:56.259Z", + "created": "2021-01-13T01:52:45.106Z", + "id": "relationship--af1f597d-8e68-4004-8133-4b6746bc0e4a", + "modified": "2021-01-13T01:52:45.106Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.259Z", - "description": "Access Control, External Systems", - "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:56.259Z", + "created": "2021-01-13T01:52:45.107Z", + "id": "relationship--9e792752-7757-4cc4-8113-937b3f42a502", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", - "id": "relationship--1c5c389d-227d-4ef6-a1b8-9759a3e49fc4", - "modified": "2021-01-06T18:30:56.260Z", + "created": "2021-01-13T01:52:45.107Z", + "id": "relationship--fb90da55-17ca-40f4-ab75-31851b47c1f9", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", - "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:56.260Z", + "created": "2021-01-13T01:52:45.107Z", + "id": "relationship--a4a2e87b-f713-41d8-8b4f-e32dae6d41e6", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", - "id": "relationship--3ec8ecac-678b-48ec-bf58-645017597063", - "modified": "2021-01-06T18:30:56.260Z", + "created": "2021-01-13T01:52:45.107Z", + "id": "relationship--0f6dd4ca-9839-4b0f-a2a8-67070c0d394e", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.260Z", - "description": "Access Control, External Systems", - "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:56.260Z", + "created": "2021-01-13T01:52:45.107Z", + "id": "relationship--a7d948d6-676c-4caf-a20b-760ab77899e8", + "modified": "2021-01-13T01:52:45.107Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.262Z", - "description": "Continuous Monitoring", - "id": "relationship--88072258-a79c-4604-b4a4-feb5e064f6ec", - "modified": "2021-01-06T18:30:56.262Z", + "created": "2021-01-13T01:52:45.108Z", + "id": "relationship--3216f2fc-74eb-4c55-8def-a8552d6a9ae1", + "modified": "2021-01-13T01:52:45.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.262Z", - "description": "Continuous Monitoring", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:56.262Z", + "created": "2021-01-13T01:52:45.109Z", + "id": "relationship--f966fe2b-b911-447d-ae97-b1106e81f31a", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ae6e9f5b-f284-47dc-a299-b288220a74bf", - "modified": "2021-01-06T18:30:56.263Z", + "created": "2021-01-13T01:52:45.109Z", + "id": "relationship--e957c78e-e256-4fa0-ab42-d4d553f23223", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:56.263Z", + "created": "2021-01-13T01:52:45.109Z", + "id": "relationship--b780ed8d-8478-4a1d-ba99-7a1775c54570", + "modified": "2021-01-13T01:52:45.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1fd01a47-be61-4670-83c9-c9a21c705936", - "modified": "2021-01-06T18:30:56.263Z", + "created": "2021-01-13T01:52:45.110Z", + "id": "relationship--0a904469-4ccf-434b-a544-105aa1442dbb", + "modified": "2021-01-13T01:52:45.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.263Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:56.263Z", + "created": "2021-01-13T01:52:45.110Z", + "id": "relationship--0d212d1d-2d64-41f2-bf43-e91b04838a3b", + "modified": "2021-01-13T01:52:45.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.264Z", - "description": "Identification", - "id": "relationship--6308a156-907e-48eb-aab6-12d96467c08b", - "modified": "2021-01-06T18:30:56.264Z", + "created": "2021-01-13T01:52:45.111Z", + "id": "relationship--a9cb3c42-533b-413e-97f6-d3103a2e5d79", + "modified": "2021-01-13T01:52:45.111Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", - "id": "relationship--30e69d35-64dc-4d7a-8259-221e4751d1f7", - "modified": "2021-01-06T18:30:56.265Z", + "created": "2021-01-13T01:52:45.111Z", + "id": "relationship--fa1242a7-e4ae-4c41-9e82-10c814511e8f", + "modified": "2021-01-13T01:52:45.111Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", - "id": "relationship--d44c5a9c-b51d-4890-8d70-1e8cf780a9ed", - "modified": "2021-01-06T18:30:56.265Z", + "created": "2021-01-13T01:52:45.112Z", + "id": "relationship--f783e732-6328-408b-9383-b7adcb9b89d7", + "modified": "2021-01-13T01:52:45.112Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.265Z", - "description": "Identification", - "id": "relationship--2f0d1fc9-5040-44c1-9d08-13a8be7a37a7", - "modified": "2021-01-06T18:30:56.265Z", + "created": "2021-01-13T01:52:45.113Z", + "id": "relationship--86f46710-bafc-4bf3-b63d-2a7812ac4439", + "modified": "2021-01-13T01:52:45.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.266Z", - "description": "Boundary Protection", - "id": "relationship--3ccdc9d2-e7f0-4b6e-a478-f10e1eeeb224", - "modified": "2021-01-06T18:30:56.266Z", + "created": "2021-01-13T01:52:45.114Z", + "id": "relationship--c3bbccbf-29af-49b3-b6ec-3202edda962e", + "modified": "2021-01-13T01:52:45.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.266Z", - "description": "Boundary Protection", - "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:56.266Z", + "created": "2021-01-13T01:52:45.115Z", + "id": "relationship--799bc13f-f4d9-4435-bd00-c0850eb0afb6", + "modified": "2021-01-13T01:52:45.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.267Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fae08fb7-396c-4bd2-89e1-02a76ab14f1a", - "modified": "2021-01-06T18:30:56.267Z", + "created": "2021-01-13T01:52:45.117Z", + "id": "relationship--6f8012ff-7848-4d5a-9f27-b7727276c789", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.268Z", + "created": "2021-01-13T01:52:45.117Z", + "id": "relationship--d2e8085d-19ce-4f2c-83c1-817f037691ef", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--30b7242b-e4f0-4716-b01c-47f6233d87a4", - "modified": "2021-01-06T18:30:56.268Z", + "created": "2021-01-13T01:52:45.117Z", + "id": "relationship--4d70516a-b330-45da-8d01-b20593b27571", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f710dc38-80ca-4b5a-ba19-34275f3758bc", - "modified": "2021-01-06T18:30:56.268Z", + "created": "2021-01-13T01:52:45.117Z", + "id": "relationship--63711891-bb66-477f-915f-7459f288eb5d", + "modified": "2021-01-13T01:52:45.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--32ac7886-68c0-43b3-9cf2-b8441d9fe599", - "modified": "2021-01-06T18:30:56.268Z", + "created": "2021-01-13T01:52:45.118Z", + "id": "relationship--5a7104bb-8391-4592-9f61-7a4f80bf8544", + "modified": "2021-01-13T01:52:45.118Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.268Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7281fec3-4089-496a-9e30-244dd8bf7abe", - "modified": "2021-01-06T18:30:56.268Z", + "created": "2021-01-13T01:52:45.118Z", + "id": "relationship--9d4e7787-0136-4249-a155-e1e83bddac1b", + "modified": "2021-01-13T01:52:45.118Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.269Z", - "description": "Protect and prevent credential access", - "id": "relationship--bdfc6f00-d070-4230-a846-126af9e0a49a", - "modified": "2021-01-06T18:30:56.269Z", + "created": "2021-01-13T01:52:45.119Z", + "id": "relationship--f0600d91-6cc3-4e2a-87d9-5f7ca14cf7dc", + "modified": "2021-01-13T01:52:45.119Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--9100052a-fec2-4d11-9014-52ccd20d2912", - "modified": "2021-01-06T18:30:56.270Z", + "created": "2021-01-13T01:52:45.121Z", + "id": "relationship--833f5af4-e2cd-4b1e-9c73-369c3325e486", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--762ff753-dc21-459f-b132-8d27c5ff2c5a", - "modified": "2021-01-06T18:30:56.270Z", + "created": "2021-01-13T01:52:45.121Z", + "id": "relationship--c7ebb3ce-45f3-4130-983c-770e815e249c", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--501cd653-f951-4aba-a92a-b4ec25707e85", - "modified": "2021-01-06T18:30:56.270Z", + "created": "2021-01-13T01:52:45.121Z", + "id": "relationship--5173c088-4c96-4064-86a8-4a1cba7c688e", + "modified": "2021-01-13T01:52:45.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--a57a90b1-4f12-4577-bb74-4f446116b60b", - "modified": "2021-01-06T18:30:56.270Z", + "created": "2021-01-13T01:52:45.122Z", + "id": "relationship--18ade7d5-2b9c-479a-af07-51709938c257", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.270Z", - "description": "Protect and prevent credential access", - "id": "relationship--519e77f3-4433-4ec4-9c10-d31922b17dd5", - "modified": "2021-01-06T18:30:56.270Z", + "created": "2021-01-13T01:52:45.122Z", + "id": "relationship--6f2885de-226c-4d84-888b-3987cc8fa066", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--c356d850-4a9e-47b0-a4f7-e324881aed1b", - "modified": "2021-01-06T18:30:56.271Z", + "created": "2021-01-13T01:52:45.122Z", + "id": "relationship--31700cbc-6045-408e-b41c-2c95f9867ef4", + "modified": "2021-01-13T01:52:45.122Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--ac1a7f1f-d13d-4bf9-8847-613bb3ef1c04", - "modified": "2021-01-06T18:30:56.271Z", + "created": "2021-01-13T01:52:45.123Z", + "id": "relationship--29f84893-994a-4ae6-b7bc-0c63c2eb1c5e", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.271Z", - "description": "Continuous Monitoring", - "id": "relationship--91e926da-692e-4b08-83bb-ec5e091c4996", - "modified": "2021-01-06T18:30:56.271Z", + "created": "2021-01-13T01:52:45.123Z", + "id": "relationship--77b26044-b2f1-4a52-b923-eb0f748b8e98", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.272Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.272Z", + "created": "2021-01-13T01:52:45.123Z", + "id": "relationship--265d70da-6b4b-48e7-8058-ceedd8656711", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:56.273Z", + "created": "2021-01-13T01:52:45.123Z", + "id": "relationship--ba948745-14c4-4787-a098-1c358ea7426d", + "modified": "2021-01-13T01:52:45.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.273Z", + "created": "2021-01-13T01:52:45.124Z", + "id": "relationship--80a1cb12-16d7-413c-80dc-ab40e764f7fa", + "modified": "2021-01-13T01:52:45.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a129cf5e-d35b-4719-aeee-c0e394b1ff34", - "modified": "2021-01-06T18:30:56.273Z", + "created": "2021-01-13T01:52:45.124Z", + "id": "relationship--1a8e9f84-f614-4893-be25-edd777f7d81c", + "modified": "2021-01-13T01:52:45.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--14c6815a-47b6-4b1b-9add-70ca91d8ba6f", - "modified": "2021-01-06T18:30:56.273Z", + "created": "2021-01-13T01:52:45.125Z", + "id": "relationship--8406d0de-89c1-4a4c-bbf7-ba4d2f16fd8a", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.273Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0f820cb7-f7f6-4c61-9724-78a45ecb7ddf", - "modified": "2021-01-06T18:30:56.273Z", + "created": "2021-01-13T01:52:45.125Z", + "id": "relationship--7164def6-e9a9-4b50-8ead-e4ba78217556", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.274Z", - "description": "Boundary Protection", - "id": "relationship--35b6de72-f853-4bb5-87f5-786c8705c4c6", - "modified": "2021-01-06T18:30:56.274Z", + "created": "2021-01-13T01:52:45.125Z", + "id": "relationship--c356be45-b706-44f2-83d2-2db312a412b1", + "modified": "2021-01-13T01:52:45.125Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.275Z", - "description": "Boundary Protection", - "id": "relationship--2f71238f-fc38-484f-943e-2e4178e67e95", - "modified": "2021-01-06T18:30:56.275Z", + "created": "2021-01-13T01:52:45.126Z", + "id": "relationship--1aa4221b-2d10-45f8-93e9-0016e9982952", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.275Z", - "description": "Boundary Protection", - "id": "relationship--dd7a77d2-1e66-4d23-8d30-d31d756b58c9", - "modified": "2021-01-06T18:30:56.275Z", + "created": "2021-01-13T01:52:45.126Z", + "id": "relationship--eb017b1c-3824-44c5-9e1e-ab4141d1c4f1", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.276Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:56.276Z", + "created": "2021-01-13T01:52:45.126Z", + "id": "relationship--4108871c-fe11-4810-8c2d-cd632564dcff", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.276Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:56.276Z", + "created": "2021-01-13T01:52:45.126Z", + "id": "relationship--a05f561d-d3b2-40fa-8cb4-d7b0a277697f", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.126Z", + "id": "relationship--4dc17019-3bbb-425b-a941-5403f375295f", + "modified": "2021-01-13T01:52:45.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--c703dc1b-8b58-4f4a-9730-e6e5b2992d64", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.130Z", + "id": "relationship--be91b94b-6b17-408e-883f-404b7e34a4b0", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b51458ee-a0b8-4112-ab81-a118cac07a49", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.130Z", + "id": "relationship--141ca8a7-b84a-4dec-8874-9420c6752b3c", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--558c5424-e412-439d-b2a3-f0642a00b086", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.130Z", + "id": "relationship--2ca75c45-6725-4564-9710-04ab699e2192", + "modified": "2021-01-13T01:52:45.130Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0e02ce95-f3f9-42f5-9b51-e4d572f722c7", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.131Z", + "id": "relationship--0c557e10-209f-47b4-9416-05e65376fff3", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--38ce3d85-22df-411e-af2f-2d51b76e9f1a", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.131Z", + "id": "relationship--09fa589a-1fec-4f03-9b69-c51a11c07313", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.277Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7534d947-0e04-4c61-9ded-5e1567f9d507", - "modified": "2021-01-06T18:30:56.277Z", + "created": "2021-01-13T01:52:45.131Z", + "id": "relationship--595e2ff7-1f0e-4ed9-a5d4-c505ac9d235c", + "modified": "2021-01-13T01:52:45.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.278Z", - "description": "Protect and prevent credential access", - "id": "relationship--90487cc7-cd9d-494a-af77-8a0771b1d869", - "modified": "2021-01-06T18:30:56.278Z", + "created": "2021-01-13T01:52:45.132Z", + "id": "relationship--6d23ebbf-9015-48bd-a154-62ac14d51f41", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.279Z", - "description": "Protect and prevent credential access", - "id": "relationship--b84716f1-7821-4395-bab3-ebd3f17fcff0", - "modified": "2021-01-06T18:30:56.279Z", + "created": "2021-01-13T01:52:45.132Z", + "id": "relationship--9f53fb73-e8a5-4af4-b879-9ce0bfdbc87c", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.280Z", - "description": "Continuous Monitoring", - "id": "relationship--7ed97ff6-18ac-40e3-ac4c-f1288bd6f427", - "modified": "2021-01-06T18:30:56.280Z", + "created": "2021-01-13T01:52:45.132Z", + "id": "relationship--2c54bc89-0b38-440e-951e-1afa90dae626", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.281Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--18ab8f41-d709-4a6d-a47f-317309092e9a", - "modified": "2021-01-06T18:30:56.281Z", + "created": "2021-01-13T01:52:45.132Z", + "id": "relationship--b2dce946-5e31-4f1f-9cba-e00a35bef136", + "modified": "2021-01-13T01:52:45.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.281Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--08624c17-1bf1-48c8-98eb-8537b92ef398", - "modified": "2021-01-06T18:30:56.281Z", + "created": "2021-01-13T01:52:45.133Z", + "id": "relationship--a81f5ac6-1220-4555-bc73-f94cf7b43629", + "modified": "2021-01-13T01:52:45.133Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.282Z", - "description": "Boundary Protection", - "id": "relationship--0f01ef2b-ac8e-4389-bd22-9edf7b6450d6", - "modified": "2021-01-06T18:30:56.282Z", + "created": "2021-01-13T01:52:45.133Z", + "id": "relationship--d266a1ad-91f7-4f72-aa64-503d7238d641", + "modified": "2021-01-13T01:52:45.133Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.283Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3b9fba86-2583-4fe9-916f-85a2ed1eb7a6", - "modified": "2021-01-06T18:30:56.283Z", + "created": "2021-01-13T01:52:45.134Z", + "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.284Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7c68775e-468b-4513-a29f-c656fcc5c032", - "modified": "2021-01-06T18:30:56.284Z", + "created": "2021-01-13T01:52:45.134Z", + "id": "relationship--bd29622d-4705-44f6-b44b-3cfa4f8eec81", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.284Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--da87e3b9-0d43-459c-8354-aab5f169e71f", - "modified": "2021-01-06T18:30:56.284Z", + "created": "2021-01-13T01:52:45.134Z", + "id": "relationship--0fb60404-9453-4f86-a882-de2a4e79e203", + "modified": "2021-01-13T01:52:45.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.286Z", - "description": "Protect and prevent credential access", - "id": "relationship--798f961c-17c9-416a-91a2-d6f1796465e5", - "modified": "2021-01-06T18:30:56.286Z", + "created": "2021-01-13T01:52:45.135Z", + "id": "relationship--330442e2-43fc-4bd9-a32b-db4792083f6b", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.286Z", - "description": "Protect and prevent credential access", - "id": "relationship--bb33f797-f5d6-483a-a5ca-927920e29ea7", - "modified": "2021-01-06T18:30:56.286Z", + "created": "2021-01-13T01:52:45.135Z", + "id": "relationship--1cf67c0d-3a01-49b9-b4bc-20e962b6fe7f", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.287Z", - "description": "Continuous Monitoring", - "id": "relationship--542adb5c-ee88-4e32-8b4a-13412d0ce66c", - "modified": "2021-01-06T18:30:56.287Z", + "created": "2021-01-13T01:52:45.135Z", + "id": "relationship--77d076e8-5dc6-458e-824a-103749af5f03", + "modified": "2021-01-13T01:52:45.135Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.288Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--845b5763-2f76-412a-99b7-ab95856b954b", - "modified": "2021-01-06T18:30:56.288Z", + "created": "2021-01-13T01:52:45.136Z", + "id": "relationship--30a2e61d-da9e-466d-a5f6-e4f8534a09fe", + "modified": "2021-01-13T01:52:45.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.288Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--be6a7394-6b5b-46ee-92d3-33d26ece03ea", - "modified": "2021-01-06T18:30:56.288Z", + "created": "2021-01-13T01:52:45.136Z", + "id": "relationship--5da4e539-17bd-462a-a087-b811aefd62c2", + "modified": "2021-01-13T01:52:45.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.289Z", - "description": "Boundary Protection", - "id": "relationship--aa2264c1-53e8-4216-9341-d0359b1bb319", - "modified": "2021-01-06T18:30:56.289Z", + "created": "2021-01-13T01:52:45.137Z", + "id": "relationship--b65ebc45-6d0b-48fe-bd38-654fac4924b2", + "modified": "2021-01-13T01:52:45.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.290Z", - "description": "Information validation and filtering", - "id": "relationship--20ed8d59-8717-4e8d-acfb-3497ce5211ea", - "modified": "2021-01-06T18:30:56.290Z", + "created": "2021-01-13T01:52:45.137Z", + "id": "relationship--3fae1271-81ac-4082-8b31-dda2515aaf09", + "modified": "2021-01-13T01:52:45.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.290Z", - "description": "Information validation and filtering", - "id": "relationship--4e267c2a-68cb-46cb-9178-b0dc23a65407", - "modified": "2021-01-06T18:30:56.290Z", + "created": "2021-01-13T01:52:45.139Z", + "id": "relationship--937f318b-d5f6-4f6c-8054-db958aade8cf", + "modified": "2021-01-13T01:52:45.139Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.291Z", + "created": "2021-01-13T01:52:45.139Z", + "id": "relationship--14e511bb-8726-45ca-8839-34ba8c30430c", + "modified": "2021-01-13T01:52:45.139Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.291Z", + "created": "2021-01-13T01:52:45.140Z", + "id": "relationship--57596e1b-1a50-40c1-b392-61230c5b9dcf", + "modified": "2021-01-13T01:52:45.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:56.291Z", + "created": "2021-01-13T01:52:45.140Z", + "id": "relationship--ecdd331e-f02e-41ac-b396-365987076d4a", + "modified": "2021-01-13T01:52:45.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.291Z", - "description": "Protect and prevent credential access", - "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:56.291Z", + "created": "2021-01-13T01:52:45.141Z", + "id": "relationship--8017b080-dfa6-4e62-8fb6-7a3c9a803ecb", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.293Z", - "description": "Continuous Monitoring", - "id": "relationship--52ed4c6a-fc9e-48fd-9c8d-7a834a824742", - "modified": "2021-01-06T18:30:56.293Z", + "created": "2021-01-13T01:52:45.141Z", + "id": "relationship--7e7e336f-3382-46a8-a03e-d6027ff241c4", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.293Z", - "description": "Continuous Monitoring", - "id": "relationship--e6a92422-115d-448f-98e7-55e4d0c9c194", - "modified": "2021-01-06T18:30:56.293Z", + "created": "2021-01-13T01:52:45.141Z", + "id": "relationship--52b451b2-d732-44a9-8dbe-137790e82c81", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.295Z", + "created": "2021-01-13T01:52:45.141Z", + "id": "relationship--7bf26e5c-85f9-4285-ba15-9095d56e8f44", + "modified": "2021-01-13T01:52:45.141Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.295Z", + "created": "2021-01-13T01:52:45.142Z", + "id": "relationship--2d1d7769-9544-4bed-995d-8866d8794362", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--77d9ba53-0e53-48bb-8ae7-fe09f531211b", - "modified": "2021-01-06T18:30:56.295Z", + "created": "2021-01-13T01:52:45.142Z", + "id": "relationship--63ed3b05-d5b1-46a4-93f8-ec2aa89761f8", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.295Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9abfd93e-09be-4a3d-90c8-f5a536d591b5", - "modified": "2021-01-06T18:30:56.295Z", + "created": "2021-01-13T01:52:45.142Z", + "id": "relationship--f6f72510-6131-4166-8d23-71b451cc125b", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.296Z", - "description": "Boundary Protection", - "id": "relationship--538ebdad-5685-4a0f-9ed8-785d853b5e52", - "modified": "2021-01-06T18:30:56.296Z", + "created": "2021-01-13T01:52:45.142Z", + "id": "relationship--0e9d2cb8-24ae-465c-abcd-251eced00122", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.296Z", - "description": "Boundary Protection", - "id": "relationship--d7ff194b-c3c3-4706-8140-2eb382850d35", - "modified": "2021-01-06T18:30:56.296Z", + "created": "2021-01-13T01:52:45.142Z", + "id": "relationship--872234a7-17f5-4f6d-bbc1-18b6e1bd21a5", + "modified": "2021-01-13T01:52:45.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.297Z", + "created": "2021-01-13T01:52:45.143Z", + "id": "relationship--5e911ef8-1fa4-4bf1-b5a8-883e792012e6", + "modified": "2021-01-13T01:52:45.143Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.297Z", + "created": "2021-01-13T01:52:45.144Z", + "id": "relationship--43da4a83-4ae9-4cc2-8e3a-a2cc85f14a1e", + "modified": "2021-01-13T01:52:45.144Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b924e704-3e95-4726-b50d-8d6bda24698e", - "modified": "2021-01-06T18:30:56.297Z", + "created": "2021-01-13T01:52:45.146Z", + "id": "relationship--34ac4d6c-075e-4249-9919-526cc4e0747b", + "modified": "2021-01-13T01:52:45.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.297Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--17aad9b2-f2c9-4763-8389-33736a58f859", - "modified": "2021-01-06T18:30:56.297Z", + "created": "2021-01-13T01:52:45.146Z", + "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", + "modified": "2021-01-13T01:52:45.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.298Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--1428fb4e-2983-4fc5-8b1e-5233dd054bd7", - "modified": "2021-01-06T18:30:56.298Z", + "created": "2021-01-13T01:52:45.147Z", + "id": "relationship--981fa85d-228e-4dd4-abe5-32e0edc334e4", + "modified": "2021-01-13T01:52:45.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.298Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d31d7c42-68d0-48e8-8ab1-fde354458d8c", - "modified": "2021-01-06T18:30:56.298Z", + "created": "2021-01-13T01:52:45.147Z", + "id": "relationship--003a2333-6ac5-4571-8077-ff0b3ee42dbe", + "modified": "2021-01-13T01:52:45.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", - "id": "relationship--02c76463-77b1-4f47-837f-62a104bcda2a", - "modified": "2021-01-06T18:30:56.299Z", + "created": "2021-01-13T01:52:45.148Z", + "id": "relationship--8cc6ae7b-c68b-4554-906f-b265dd911c9f", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", - "id": "relationship--ce0b936c-0430-4bba-ae2d-f388414cc7cc", - "modified": "2021-01-06T18:30:56.299Z", + "created": "2021-01-13T01:52:45.148Z", + "id": "relationship--26baf2e1-3691-4e5f-82ff-a51e287602ea", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.299Z", - "description": "Access Control, External Systems", - "id": "relationship--72e4d2ed-3d49-458e-bcaa-fa1bcf8fabcf", - "modified": "2021-01-06T18:30:56.299Z", + "created": "2021-01-13T01:52:45.148Z", + "id": "relationship--b685a999-45b4-4b97-856a-69676aa5e23c", + "modified": "2021-01-13T01:52:45.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--3132f80c-ce49-4020-a3d0-b80ed92e3f0c", - "modified": "2021-01-06T18:30:56.300Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--0fe72e9b-2b75-45c5-aaa2-2d1473529071", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--c068b963-13c8-4e16-a604-3c3ceeea544c", - "modified": "2021-01-06T18:30:56.300Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--517b83f8-9ec9-44c4-9bad-e73a8bd7e10c", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--c544f7e4-a0d5-4eac-ada1-84f81e5690df", - "modified": "2021-01-06T18:30:56.300Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--4cf3c398-b282-4089-ae74-4fab7d02f153", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--165b25ce-067c-4ee2-a917-c99ee6a1d2a3", - "modified": "2021-01-06T18:30:56.300Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--80fd5af6-859e-4924-ab2c-a0e556116871", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--835946db-3d8a-46e0-8e32-9af22c9bd4b7", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.300Z", - "description": "Access Control, External Systems", - "id": "relationship--41ab505e-dfaa-4385-a894-2c488121dbe5", - "modified": "2021-01-06T18:30:56.300Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--f719de8d-20d6-450e-a3e6-84c0217988c6", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", - "id": "relationship--0ca3207c-dba3-4947-9ce4-d0bfd8b39370", - "modified": "2021-01-06T18:30:56.301Z", + "created": "2021-01-13T01:52:45.152Z", + "id": "relationship--d2606819-40aa-4ffb-a502-9ba403707e90", + "modified": "2021-01-13T01:52:45.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", - "id": "relationship--c25474fa-c040-4c0a-9e59-57e426a006f1", - "modified": "2021-01-06T18:30:56.301Z", + "created": "2021-01-13T01:52:45.153Z", + "id": "relationship--68907d7d-291d-4a10-a3e7-8304f24acc4e", + "modified": "2021-01-13T01:52:45.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", - "id": "relationship--995319d4-6b90-4cd3-bf7e-6accf162576d", - "modified": "2021-01-06T18:30:56.301Z", + "created": "2021-01-13T01:52:45.153Z", + "id": "relationship--53634d79-3fa5-4fee-8039-35bd0eb21737", + "modified": "2021-01-13T01:52:45.153Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.301Z", - "description": "Access Control, External Systems", - "id": "relationship--7c814acc-ffc7-49b9-bd40-0ce26ee85f0f", - "modified": "2021-01-06T18:30:56.301Z", + "created": "2021-01-13T01:52:45.154Z", + "id": "relationship--fa65e2d7-a0d4-43aa-9da8-9811c55dccfa", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--9fe45e33-cca6-4138-814e-8211c06132ef", - "modified": "2021-01-06T18:30:56.303Z", + "created": "2021-01-13T01:52:45.154Z", + "id": "relationship--d6e6e6a2-e88f-4e9a-8a81-e7e05171dae2", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--0f04b09e-4ddd-46cf-95ac-85a08f764a21", - "modified": "2021-01-06T18:30:56.303Z", + "created": "2021-01-13T01:52:45.154Z", + "id": "relationship--74c91f33-db73-4df6-8d32-09c0b55931d3", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.303Z", - "description": "Continuous Monitoring", - "id": "relationship--af1f597d-8e68-4004-8133-4b6746bc0e4a", - "modified": "2021-01-06T18:30:56.303Z", + "created": "2021-01-13T01:52:45.154Z", + "id": "relationship--75d3278b-4e75-404a-beac-2e3c1637aaf6", + "modified": "2021-01-13T01:52:45.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:56.304Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--5d5a485a-7573-4992-ace4-9027b7befd23", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:56.304Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--9851210c-73c3-4417-991d-ada611ec272b", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:56.304Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--f4fb1f11-8614-4659-80f5-37f1b415fda3", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--d16e4336-1b38-4f40-9021-b6a9aab3fe12", - "modified": "2021-01-06T18:30:56.304Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--b521803d-1c88-4019-8993-2d19e6d9c30a", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.304Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--02fa8be7-9400-4fda-8b3c-a2f2adb9f588", - "modified": "2021-01-06T18:30:56.304Z", + "created": "2021-01-13T01:52:45.155Z", + "id": "relationship--ca7d1eb0-75a7-4dbe-8464-6086dde89809", + "modified": "2021-01-13T01:52:45.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.305Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dd98f1ef-13be-4f30-97fc-889c92fb47ee", - "modified": "2021-01-06T18:30:56.305Z", + "created": "2021-01-13T01:52:45.156Z", + "id": "relationship--8d85c127-0d07-4f39-8867-3e917e3bebd7", + "modified": "2021-01-13T01:52:45.156Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.305Z", - "description": "Identification", - "id": "relationship--04395271-fa6c-4040-b9d6-dcef167516c3", - "modified": "2021-01-06T18:30:56.305Z", + "created": "2021-01-13T01:52:45.157Z", + "id": "relationship--0a27bd8e-08e0-4d48-b251-f10fb3d132eb", + "modified": "2021-01-13T01:52:45.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.305Z", - "description": "Identification", - "id": "relationship--08658b5c-357f-4749-8f74-7d843fdd994b", - "modified": "2021-01-06T18:30:56.305Z", + "created": "2021-01-13T01:52:45.162Z", + "id": "relationship--cc9d790e-e34a-43f9-b1ce-2b8f40d9d368", + "modified": "2021-01-13T01:52:45.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", - "id": "relationship--5fbf3699-6700-44c6-b51d-9e0ad1fa8e5b", - "modified": "2021-01-06T18:30:56.306Z", + "created": "2021-01-13T01:52:45.163Z", + "id": "relationship--c588e4d5-31fa-4582-a370-718aee43d34c", + "modified": "2021-01-13T01:52:45.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", - "id": "relationship--2adb4841-d12f-4729-83f8-6df206ca3dac", - "modified": "2021-01-06T18:30:56.306Z", + "created": "2021-01-13T01:52:45.164Z", + "id": "relationship--f8dce936-9898-43c1-b9ab-7d21103f21bf", + "modified": "2021-01-13T01:52:45.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", - "id": "relationship--adf2edac-cb4b-4c6a-a4d6-aa9df23de552", - "modified": "2021-01-06T18:30:56.306Z", + "created": "2021-01-13T01:52:45.164Z", + "id": "relationship--16084466-d0cd-469f-980f-09954eb4e011", + "modified": "2021-01-13T01:52:45.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.306Z", - "description": "Identification", - "id": "relationship--1c3caad2-3a99-4196-bdb5-dc66cc066220", - "modified": "2021-01-06T18:30:56.306Z", + "created": "2021-01-13T01:52:45.167Z", + "id": "relationship--6c3f1270-0832-48b8-8494-ad7cf37811e8", + "modified": "2021-01-13T01:52:45.167Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--52ada161-08c9-4980-9069-c6b8900eb654", - "modified": "2021-01-06T18:30:56.307Z", + "created": "2021-01-13T01:52:45.167Z", + "id": "relationship--073bb6f3-a593-482c-8b82-f4b51cc844a5", + "modified": "2021-01-13T01:52:45.167Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--df0b6815-b501-41f6-a5a9-fa5c0de033fa", - "modified": "2021-01-06T18:30:56.307Z", + "created": "2021-01-13T01:52:45.168Z", + "id": "relationship--c46573aa-2390-4cf2-8769-565f01d7ebf6", + "modified": "2021-01-13T01:52:45.168Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.307Z", - "description": "Boundary Protection", - "id": "relationship--5d7556b7-15e0-4d07-87ea-bacc8d980187", - "modified": "2021-01-06T18:30:56.307Z", + "created": "2021-01-13T01:52:45.169Z", + "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.308Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:56.308Z", + "created": "2021-01-13T01:52:45.169Z", + "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.169Z", + "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", + "modified": "2021-01-13T01:52:45.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.174Z", + "id": "relationship--ddeac0fd-6a52-4e3f-957c-1b1e0b8c252d", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--1de56d53-a41b-4c24-94d9-ae3ac20d69aa", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.174Z", + "id": "relationship--ce9c49ce-e720-4950-ab7b-aae8daea1bce", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8b1f0241-cb24-4eef-a649-aada36e2fcdf", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.174Z", + "id": "relationship--aa978bf2-1224-4764-b99a-b0bc83457555", + "modified": "2021-01-13T01:52:45.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e8864db1-3013-4d01-8344-4d5b6a0b6a80", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.175Z", + "id": "relationship--89aef7c6-e58e-44a6-b41d-cd8191374241", + "modified": "2021-01-13T01:52:45.175Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5750b9fa-296a-45b2-a451-e57cacbab771", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.175Z", + "id": "relationship--af198bb2-60ac-40c1-9405-375a4f7f798d", + "modified": "2021-01-13T01:52:45.175Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--29350344-d9a2-4745-a5f6-88e9c4ccefba", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.176Z", + "id": "relationship--d53d840b-db17-4464-bb64-8836fb8d0d6a", + "modified": "2021-01-13T01:52:45.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.309Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--996eb3bf-5ba8-455e-a4fb-9a4f36c8e226", - "modified": "2021-01-06T18:30:56.309Z", + "created": "2021-01-13T01:52:45.176Z", + "id": "relationship--d590fb85-caf2-4cfe-aa55-50bac6d69afd", + "modified": "2021-01-13T01:52:45.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7663bac6-98dd-44e7-a32a-9b2ea76f2b75", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.177Z", + "id": "relationship--f9434b07-6c5d-40e7-8825-97d90157fc05", + "modified": "2021-01-13T01:52:45.177Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--dc427dad-1e7c-4be7-8c3e-de6cd6d1c256", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.180Z", + "id": "relationship--b8113293-6d2f-475b-a0b7-6b777691ac95", + "modified": "2021-01-13T01:52:45.180Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--bdc6613f-d798-4c59-9f42-779336570969", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.182Z", + "id": "relationship--fdd2b8b4-93d8-42a6-b710-7f1e7ac8007d", + "modified": "2021-01-13T01:52:45.182Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--74039f49-a98e-4684-bb5f-3dd9412104ed", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.183Z", + "id": "relationship--09682215-261a-42ad-a0d0-afe115387060", + "modified": "2021-01-13T01:52:45.183Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--618e8ff1-d4e4-4a72-a70a-200fa2d42c84", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.184Z", + "id": "relationship--b894e895-08f5-43ce-81b8-bf45858c579a", + "modified": "2021-01-13T01:52:45.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", + "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.311Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--de857f2e-83d5-40ad-b1b3-9f0a5f2d3335", - "modified": "2021-01-06T18:30:56.311Z", + "created": "2021-01-13T01:52:45.184Z", + "id": "relationship--579f8566-644a-4e8f-a08e-54e918da220d", + "modified": "2021-01-13T01:52:45.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.312Z", - "description": "Configuration Management, Application Control", - "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:56.312Z", + "created": "2021-01-13T01:52:45.187Z", + "id": "relationship--c80b5ff7-7f98-4daa-a631-9075a4ebd441", + "modified": "2021-01-13T01:52:45.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", + "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.312Z", - "description": "Configuration Management, Application Control", - "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:56.312Z", + "created": "2021-01-13T01:52:45.187Z", + "id": "relationship--69ebf5a9-ac65-4095-9ebf-974b2226a4f3", + "modified": "2021-01-13T01:52:45.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.313Z", - "description": "Configuration Management, Application Control", - "id": "relationship--1a09f671-7b20-4931-a2f9-91c7dab16c49", - "modified": "2021-01-06T18:30:56.313Z", + "created": "2021-01-13T01:52:45.188Z", + "id": "relationship--67677ba5-6116-47cc-8961-863653d85746", + "modified": "2021-01-13T01:52:45.188Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", + "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.313Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b9bdf9ca-777a-4f8c-9888-0b9be8140841", - "modified": "2021-01-06T18:30:56.313Z", + "created": "2021-01-13T01:52:45.188Z", + "id": "relationship--d261c225-7fe8-4772-bf1b-e694dbf00f42", + "modified": "2021-01-13T01:52:45.188Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--8f2f5466-48e6-41f5-82d2-e2138f22fd2c", - "modified": "2021-01-06T18:30:56.314Z", + "created": "2021-01-13T01:52:45.189Z", + "id": "relationship--6e1f5ad6-15d1-40a2-ba74-9f80af06d7dd", + "modified": "2021-01-13T01:52:45.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", + "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:56.314Z", + "created": "2021-01-13T01:52:45.189Z", + "id": "relationship--65198c8b-d8f9-4b3f-87aa-e339d1fbc953", + "modified": "2021-01-13T01:52:45.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--96f70fc0-f020-4dd4-8082-00cb31bb3639", - "modified": "2021-01-06T18:30:56.314Z", + "created": "2021-01-13T01:52:45.190Z", + "id": "relationship--07ca3ef2-45da-4272-94f0-3b0c72a6ce6c", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--26b30c62-feec-4504-87e5-072efa37ce73", - "modified": "2021-01-06T18:30:56.314Z", + "created": "2021-01-13T01:52:45.190Z", + "id": "relationship--35f0da0f-7883-4901-8248-f37d7bfea9ac", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.314Z", - "description": "Configuration Management, Application Control", - "id": "relationship--29f7214f-3f32-49d5-9712-a09273fe0a05", - "modified": "2021-01-06T18:30:56.314Z", + "created": "2021-01-13T01:52:45.190Z", + "id": "relationship--2043fab5-b89b-4d40-9f05-f3c1988ee9dc", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.315Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d5b7e8cf-1ead-4215-ac35-229e8eb6144f", - "modified": "2021-01-06T18:30:56.315Z", + "created": "2021-01-13T01:52:45.190Z", + "id": "relationship--3187347a-e792-4541-a277-b94ae97c23fb", + "modified": "2021-01-13T01:52:45.190Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.315Z", - "description": "Configuration Management, Application Control", - "id": "relationship--bd36633d-aaca-45b1-b7b1-8e19b0691077", - "modified": "2021-01-06T18:30:56.315Z", + "created": "2021-01-13T01:52:45.191Z", + "id": "relationship--53befb4a-fdec-48e8-92ff-7164102773ef", + "modified": "2021-01-13T01:52:45.191Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", + "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.316Z", - "description": "Information Validation", - "id": "relationship--8b446bfa-9e53-4e7e-af38-00ce50adc9af", - "modified": "2021-01-06T18:30:56.316Z", + "created": "2021-01-13T01:52:45.192Z", + "id": "relationship--a3b9c5c0-d478-4eaf-a430-f5b8b2db8389", + "modified": "2021-01-13T01:52:45.192Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", + "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", - "id": "relationship--a0f7d223-078e-4aec-bb7e-dfda5b1d0046", - "modified": "2021-01-06T18:30:56.317Z", + "created": "2021-01-13T01:52:45.193Z", + "id": "relationship--4b7aa09f-b00b-4328-b7ec-aca29763938f", + "modified": "2021-01-13T01:52:45.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", - "id": "relationship--7ee5bc45-ae12-4946-8f0a-08a8c74e2993", - "modified": "2021-01-06T18:30:56.317Z", + "created": "2021-01-13T01:52:45.193Z", + "id": "relationship--8bcfcb87-e677-49ea-ae46-d2149d646933", + "modified": "2021-01-13T01:52:45.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.317Z", - "description": "Information Validation", - "id": "relationship--98f44ee4-f624-4c7e-8e7b-d7cda027b7ce", - "modified": "2021-01-06T18:30:56.317Z", + "created": "2021-01-13T01:52:45.195Z", + "id": "relationship--c4bc8591-33c2-4714-9abe-8135bdfcef06", + "modified": "2021-01-13T01:52:45.195Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", + "source_ref": "course-of-action--66e8cddb-fc6f-4f4e-aec6-8e0284bf7999", + "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--f9e49164-3317-4f5a-baf6-8b32d4314e3c", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.196Z", + "id": "relationship--4797b600-c6bc-4eed-81f3-eaadedf6aac2", + "modified": "2021-01-13T01:52:45.196Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--7fa522a1-06a1-4719-bfcf-a74051dee8d1", + "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--1cc0139a-fa4a-42b1-83d5-48180230c488", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.197Z", + "id": "relationship--80a6748b-d344-4418-8b1a-b995472ef37a", + "modified": "2021-01-13T01:52:45.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--a38bff23-6c77-4316-a04c-409a7af1342c", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.197Z", + "id": "relationship--f5d731eb-b7dc-4747-8e09-f2d9acfcecf1", + "modified": "2021-01-13T01:52:45.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--64b0d228-0c42-4808-a581-2eac32334a63", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.201Z", + "id": "relationship--7c646628-ccf9-42fc-ab54-b881f519e549", + "modified": "2021-01-13T01:52:45.201Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--6ea636ef-e123-4d93-a10e-7be7703cd6b0", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.201Z", + "id": "relationship--68ff41bf-5b7b-48df-a5f4-def8c055e0e8", + "modified": "2021-01-13T01:52:45.201Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", + "source_ref": "course-of-action--c199365f-a6dc-4e5f-a253-59137320a254", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--2d323269-0581-4914-96fe-769bfa5c84b6", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.202Z", + "id": "relationship--384554b7-f695-4337-a873-4f43d3bb1089", + "modified": "2021-01-13T01:52:45.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.318Z", - "description": "Information Validation", - "id": "relationship--cc3bb91d-8c73-47da-adf4-33a447ddc71f", - "modified": "2021-01-06T18:30:56.318Z", + "created": "2021-01-13T01:52:45.203Z", + "id": "relationship--e9928b11-0bc8-469f-bb37-fb83f7af16e3", + "modified": "2021-01-13T01:52:45.203Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", - "id": "relationship--68027927-fcc9-486e-8830-7f79a13ed950", - "modified": "2021-01-06T18:30:56.319Z", + "created": "2021-01-13T01:52:45.204Z", + "id": "relationship--186aa2d1-13a9-4503-87ed-21f1591e3d44", + "modified": "2021-01-13T01:52:45.204Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", + "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", - "id": "relationship--68e33edb-ae4d-44dd-a551-770d32d2b3a3", - "modified": "2021-01-06T18:30:56.319Z", + "created": "2021-01-13T01:52:45.210Z", + "id": "relationship--69fc1919-6f18-469b-b14e-72ebab358475", + "modified": "2021-01-13T01:52:45.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", - "id": "relationship--7c0c7a1f-87f6-4bd0-a336-bfa7cd06a7a6", - "modified": "2021-01-06T18:30:56.319Z", + "created": "2021-01-13T01:52:45.210Z", + "id": "relationship--275958d9-916f-479d-a896-8bc31bacd9e6", + "modified": "2021-01-13T01:52:45.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", - "id": "relationship--2a91da8d-72b2-4b64-bbed-7be2cbede505", - "modified": "2021-01-06T18:30:56.319Z", + "created": "2021-01-13T01:52:45.212Z", + "id": "relationship--53f3b0bf-ed2c-4f9a-97a9-7b15753a8e70", + "modified": "2021-01-13T01:52:45.212Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.319Z", - "description": "Information Validation", - "id": "relationship--3280928f-365c-4e36-aa98-3debc56d480f", - "modified": "2021-01-06T18:30:56.319Z", + "created": "2021-01-13T01:52:45.213Z", + "id": "relationship--3e5b904e-7530-4e59-b876-b93ecaa62988", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--63e77486-01d0-42f7-8bea-855deb83b65b", - "modified": "2021-01-06T18:30:56.321Z", + "created": "2021-01-13T01:52:45.213Z", + "id": "relationship--f69ec120-bda9-425f-85dc-a770f2e1de48", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--fa273daa-f23b-4954-bd50-8c11a2a5d54a", - "modified": "2021-01-06T18:30:56.321Z", + "created": "2021-01-13T01:52:45.213Z", + "id": "relationship--88f8885d-4d82-4785-a0e8-dca26d95197e", + "modified": "2021-01-13T01:52:45.213Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.321Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--be1e98c1-082f-4032-a859-700c6f167406", - "modified": "2021-01-06T18:30:56.321Z", + "created": "2021-01-13T01:52:45.215Z", + "id": "relationship--c85514bb-7fc2-445b-9651-5184ab07748f", + "modified": "2021-01-13T01:52:45.215Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.322Z", - "description": "Configuration Management, Application Control", - "id": "relationship--f30e46ef-2881-4c37-9f66-39e66e0e34b6", - "modified": "2021-01-06T18:30:56.322Z", + "created": "2021-01-13T01:52:45.216Z", + "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.323Z", - "description": "Configuration Management, Application Control", - "id": "relationship--3b9d0094-7818-441e-9bcc-6e7e91920994", - "modified": "2021-01-06T18:30:56.323Z", + "created": "2021-01-13T01:52:45.216Z", + "id": "relationship--6fe7fb75-ede2-477c-be3f-516bbf9c83ed", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--35fe996d-18ee-400c-b04e-b1f809ef92f8", - "modified": "2021-01-06T18:30:56.324Z", + "created": "2021-01-13T01:52:45.216Z", + "id": "relationship--750c5af0-4476-475f-92cb-f713a171d968", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--357b33f6-a6e6-45de-8450-50639009d3a6", - "modified": "2021-01-06T18:30:56.324Z", + "created": "2021-01-13T01:52:45.216Z", + "id": "relationship--656af0af-082c-41ff-b679-7b7a871b92a0", + "modified": "2021-01-13T01:52:45.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.324Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--4ded17fe-4bda-4841-98e1-385a050fbff8", - "modified": "2021-01-06T18:30:56.324Z", + "created": "2021-01-13T01:52:45.216Z", + "id": "relationship--bf752acc-9ea7-44dd-b6eb-7b9a1147c3a3", + "modified": "2021-01-13T01:52:45.216Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.217Z", + "id": "relationship--48502913-0055-4166-814d-aaf5bdaf15b0", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c8f3448b-06cd-4ed5-a261-04f9c0f3a23c", - "modified": "2021-01-06T18:30:56.326Z", + "created": "2021-01-13T01:52:45.217Z", + "id": "relationship--b8ff84bf-f61d-4ebd-b3be-81d5dd6fb236", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a9845af0-72ad-43c4-8a72-935ce733e0be", - "modified": "2021-01-06T18:30:56.326Z", + "created": "2021-01-13T01:52:45.217Z", + "id": "relationship--791a68b4-b02b-4b83-a347-1b665530f70c", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.326Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--5b316899-c768-4a2d-8006-6cc035b5c8a8", - "modified": "2021-01-06T18:30:56.326Z", + "created": "2021-01-13T01:52:45.217Z", + "id": "relationship--508f5fee-5f31-4176-a5ad-145f59cf9437", + "modified": "2021-01-13T01:52:45.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.327Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--a89a9a41-2c22-4275-bf3c-3bb4f16c5a88", - "modified": "2021-01-06T18:30:56.327Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--25c14d81-bd62-448a-990f-a0d4c0edc9fa", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.328Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--be3775a0-c574-48b0-8a52-1bb70612b3d8", - "modified": "2021-01-06T18:30:56.328Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--95b03dea-c631-4ae4-9b21-8e73890be36c", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.328Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d1d8f4b4-69da-4f6c-ac17-decc3d664194", - "modified": "2021-01-06T18:30:56.328Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--749349ca-9e12-4e30-9f41-3cb6680c88ef", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.329Z", - "description": "Configuration Management, Application Control", - "id": "relationship--83153651-3c19-4586-9576-f117c3fe7f21", - "modified": "2021-01-06T18:30:56.329Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--6268ca3a-72cb-468e-ace0-4324448d1cf8", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.329Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ec67274e-9514-4dc9-9875-e6fc6c074409", - "modified": "2021-01-06T18:30:56.329Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--11319cff-83f8-4fa6-827b-009d4b1726c4", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.330Z", - "description": "Information Validation", - "id": "relationship--28ff0106-4725-4e61-9d30-f258eeb784fb", - "modified": "2021-01-06T18:30:56.330Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--b7ed51a7-4c3e-46f9-9480-87c9fedc74b0", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.330Z", - "description": "Information Validation", - "id": "relationship--810641d3-ba6d-451a-9679-5921f0b0c27d", - "modified": "2021-01-06T18:30:56.330Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--58f66609-39b7-4663-a81a-57dcb2afc3b7", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.331Z", - "description": "Configuration Management, Application Control", - "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:56.331Z", + "created": "2021-01-13T01:52:45.223Z", + "id": "relationship--662c4bef-7cc5-4b00-8cbe-db1e132de58a", + "modified": "2021-01-13T01:52:45.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.331Z", - "description": "Configuration Management, Application Control", - "id": "relationship--62b27f2f-5b69-4e0e-8d8a-c19767f335cf", - "modified": "2021-01-06T18:30:56.331Z", + "created": "2021-01-13T01:52:45.224Z", + "id": "relationship--3baaede1-7aca-4cc7-a3b2-665bb89059c9", + "modified": "2021-01-13T01:52:45.224Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.332Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--094fb736-b1f3-4ff0-bdc0-e212f99b7bd6", - "modified": "2021-01-06T18:30:56.332Z", + "created": "2021-01-13T01:52:45.229Z", + "id": "relationship--f32178ac-68e0-4d91-89e9-2bc1c591a7ac", + "modified": "2021-01-13T01:52:45.229Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7b76d2ab-cda7-41a8-a1a2-9343e986a990", - "modified": "2021-01-06T18:30:56.333Z", + "created": "2021-01-13T01:52:45.229Z", + "id": "relationship--9b804aa6-175e-4b5c-9db8-b36cb6ac97fa", + "modified": "2021-01-13T01:52:45.229Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--c83feed4-2c0f-4dbd-89e6-b8886846a8b2", - "modified": "2021-01-06T18:30:56.333Z", + "created": "2021-01-13T01:52:45.230Z", + "id": "relationship--09f18566-b196-4a40-80a0-6884e3ac0731", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.333Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--15439cf4-7965-41e7-877f-55fcb83222ae", - "modified": "2021-01-06T18:30:56.333Z", + "created": "2021-01-13T01:52:45.230Z", + "id": "relationship--facf4bd8-d72d-43f8-918b-3585f1c560f6", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.334Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--a92dd4ec-ea21-423e-954b-37f98f3c74bd", - "modified": "2021-01-06T18:30:56.334Z", + "created": "2021-01-13T01:52:45.230Z", + "id": "relationship--74c3d629-d0dd-46ee-adbd-f063b3aa435c", + "modified": "2021-01-13T01:52:45.230Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.334Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7b52b17a-8269-43db-91a3-75b3e17a3b41", - "modified": "2021-01-06T18:30:56.334Z", + "created": "2021-01-13T01:52:45.232Z", + "id": "relationship--2dfcdf14-1e75-4e77-83b7-38d74d9797cc", + "modified": "2021-01-13T01:52:45.232Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.335Z", - "description": "Configuration Management, Application Control", - "id": "relationship--64b5e764-48ba-48d5-801c-9ff0558f60c8", - "modified": "2021-01-06T18:30:56.335Z", + "created": "2021-01-13T01:52:45.233Z", + "id": "relationship--241d1954-0de8-4846-b2b6-a01ae10c80fd", + "modified": "2021-01-13T01:52:45.233Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", - "id": "relationship--2006e65b-e088-48dd-b2d7-cb5928911392", - "modified": "2021-01-06T18:30:56.336Z", + "created": "2021-01-13T01:52:45.233Z", + "id": "relationship--0aa7b0cb-383e-4bcd-ab89-9f08e93fa0fb", + "modified": "2021-01-13T01:52:45.233Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", - "id": "relationship--7c5d4a44-0ac7-49c7-82cc-dc3cbd3ff298", - "modified": "2021-01-06T18:30:56.336Z", + "created": "2021-01-13T01:52:45.234Z", + "id": "relationship--390d5a5c-ca8a-4a1c-9a16-a27c09b0314d", + "modified": "2021-01-13T01:52:45.234Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.336Z", - "description": "Configuration Management, Application Control", - "id": "relationship--771f6d26-e388-4d6e-a2ea-ad5765af7263", - "modified": "2021-01-06T18:30:56.336Z", + "created": "2021-01-13T01:52:45.235Z", + "id": "relationship--af1cc805-7843-4164-83ac-47b13ab80ab4", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.337Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d3b51433-362b-493f-9359-cc2c44f8042b", - "modified": "2021-01-06T18:30:56.337Z", + "created": "2021-01-13T01:52:45.235Z", + "id": "relationship--ad7eeaa8-b959-43d6-ad68-84c8d71f0d1f", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2bc0ea3e-aaf7-4b5d-9fae-492d08d42ed3", - "modified": "2021-01-06T18:30:56.338Z", + "created": "2021-01-13T01:52:45.235Z", + "id": "relationship--1fd5cbb3-c5e8-4f94-8933-b0da5f5a8080", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--5c2432ce-e9a0-46e7-a77f-0cf19be75b24", - "modified": "2021-01-06T18:30:56.338Z", + "created": "2021-01-13T01:52:45.235Z", + "id": "relationship--374009f0-8d28-4dd5-b74c-f059b0b1cc42", + "modified": "2021-01-13T01:52:45.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--74d02f6c-09bd-423e-95e1-56853eaf9896", - "modified": "2021-01-06T18:30:56.338Z", + "created": "2021-01-13T01:52:45.236Z", + "id": "relationship--e2f83466-fc6e-4c05-b55b-e25af95de178", + "modified": "2021-01-13T01:52:45.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--5ef91915-b646-4aeb-b894-7a19b2806fc1", - "modified": "2021-01-06T18:30:56.338Z", + "created": "2021-01-13T01:52:45.240Z", + "id": "relationship--50c86b83-316b-4c11-b933-a5799682dead", + "modified": "2021-01-13T01:52:45.240Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.338Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6e4f05b6-7b87-4885-b902-be8d406e8abf", - "modified": "2021-01-06T18:30:56.338Z", + "created": "2021-01-13T01:52:45.240Z", + "id": "relationship--716807b0-b205-48d2-a319-d7987944e641", + "modified": "2021-01-13T01:52:45.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.339Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--98085f35-47fa-495f-87cf-f3e39067cbaa", - "modified": "2021-01-06T18:30:56.339Z", + "created": "2021-01-13T01:52:45.241Z", + "id": "relationship--905c0ba2-e82b-4d12-b97e-11db1a7dc56b", + "modified": "2021-01-13T01:52:45.241Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--1a37c130-f40c-4d81-8f80-a106a7919e41", - "modified": "2021-01-06T18:30:56.340Z", + "created": "2021-01-13T01:52:45.243Z", + "id": "relationship--02f75466-7a4a-4e8d-8037-34085c91f61a", + "modified": "2021-01-13T01:52:45.243Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--71e8e6ba-519b-47e1-ac7b-57a67c5865f0", - "modified": "2021-01-06T18:30:56.340Z", + "created": "2021-01-13T01:52:45.246Z", + "id": "relationship--3992cf47-10c3-4c2b-8185-b36956eb27c3", + "modified": "2021-01-13T01:52:45.246Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--cfb0878b-c32e-4ddb-8c61-eccea60a1596", - "modified": "2021-01-06T18:30:56.340Z", + "created": "2021-01-13T01:52:45.246Z", + "id": "relationship--290cbce3-8001-4bc3-a412-fa5bcb7b1a69", + "modified": "2021-01-13T01:52:45.246Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f6eddb39-bc1b-4b3a-9974-fe61cb48af91", - "modified": "2021-01-06T18:30:56.340Z", + "created": "2021-01-13T01:52:45.247Z", + "id": "relationship--9a088157-16a4-4573-8d96-32d9f9ffd087", + "modified": "2021-01-13T01:52:45.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.340Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3beebb5c-c004-4234-8372-359ab0980337", - "modified": "2021-01-06T18:30:56.340Z", + "created": "2021-01-13T01:52:45.248Z", + "id": "relationship--2a74667c-f88b-4af9-a463-66072ffa382c", + "modified": "2021-01-13T01:52:45.248Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--89416b14-7d23-41b1-9cfb-4dd4c3df731f", - "modified": "2021-01-06T18:30:56.342Z", + "created": "2021-01-13T01:52:45.250Z", + "id": "relationship--1affa735-c92f-4830-8528-8103695ad246", + "modified": "2021-01-13T01:52:45.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--762bc2db-43bb-4907-941d-f71f3efdfa1c", - "modified": "2021-01-06T18:30:56.342Z", + "created": "2021-01-13T01:52:45.250Z", + "id": "relationship--eabfd271-bebb-4e83-b046-72bb49cc503d", + "modified": "2021-01-13T01:52:45.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.342Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cc313add-0c43-4880-8e3c-8b4c983089a6", - "modified": "2021-01-06T18:30:56.342Z", + "created": "2021-01-13T01:52:45.251Z", + "id": "relationship--7ee3105e-4280-48aa-9bba-70ca5ce649ee", + "modified": "2021-01-13T01:52:45.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--b5e786c7-be49-4551-af1c-639dba2d98c9", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.251Z", + "id": "relationship--cd997a6c-a6d2-4e9d-8102-1f0d00ba1f9a", + "modified": "2021-01-13T01:52:45.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--3be410ae-06f7-48fe-834d-6ff2ff9a0fae", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.252Z", + "id": "relationship--22056059-5348-4d2a-bf87-3f9e2081fa96", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--1f526480-a787-496d-aae0-19e655e44aa7", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.252Z", + "id": "relationship--fe9b14f4-cd19-4d75-89cc-ff3c97c188ac", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6f2c9e25-211e-47f5-91aa-335a5b58ae97", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.252Z", + "id": "relationship--4588c060-9035-4785-b439-5a1e558dc0b8", + "modified": "2021-01-13T01:52:45.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.253Z", + "id": "relationship--4f2b0678-5c73-4547-bc05-d88bb630fc47", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.343Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.343Z", + "created": "2021-01-13T01:52:45.253Z", + "id": "relationship--342815de-7647-495b-8426-15385bea690b", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--372dcba7-d1c0-4596-9ed6-c1a86fa97740", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.253Z", + "id": "relationship--0a83abb4-1198-423b-b101-226337dfcdc3", + "modified": "2021-01-13T01:52:45.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--af26c829-2abf-4da2-a1e9-ba541abec075", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.254Z", + "id": "relationship--740d015b-472b-4004-a26b-3bae2d561d76", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--e34fc174-4055-4dbd-b206-080fbfa948f8", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.254Z", + "id": "relationship--c0eafced-2b5f-412e-b268-2bb46a1c2268", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--a108f5db-e04f-4ec0-8c9b-56276eb7b668", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.254Z", + "id": "relationship--cedea28c-a762-47a8-8402-cae5adad9a56", + "modified": "2021-01-13T01:52:45.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--9f00b58b-13d2-40f6-8570-dd34a9397af4", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.255Z", + "id": "relationship--f11fef81-78d1-4662-9fab-0b918ea4fc4e", + "modified": "2021-01-13T01:52:45.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2ee8b70b-62d5-45f4-b6e2-01a33cbb7782", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.255Z", + "id": "relationship--c487bf25-c4ba-4631-b383-1cbe74c44f7a", + "modified": "2021-01-13T01:52:45.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cead2dd0-73e8-49b2-b0e8-098714e4570d", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.256Z", + "id": "relationship--b154124b-4112-432a-a59e-e6cc09118a2a", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.344Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--faf481c5-5baf-4f1f-ac5b-2ddb00b154a6", - "modified": "2021-01-06T18:30:56.344Z", + "created": "2021-01-13T01:52:45.256Z", + "id": "relationship--58df78f1-17a9-47b2-8c4d-dde3a361a45e", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--df48fe4b-36d3-4a81-8ccf-323d9e5de063", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.256Z", + "id": "relationship--290b569e-30ab-402a-b14d-8dd89d85fc2b", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6851aeff-b083-497f-b2c9-37b35270d8cf", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.256Z", + "id": "relationship--0606cdcb-6016-4fa7-a7ee-6386e8f02c75", + "modified": "2021-01-13T01:52:45.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--873a28fc-89b5-4f7b-9232-05107179e6be", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.257Z", + "id": "relationship--ac77f9ab-8b8b-40d1-8282-120506256ce0", + "modified": "2021-01-13T01:52:45.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2bcf10ef-d780-406b-b21a-20fcd3b4f26e", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.257Z", + "id": "relationship--73814f34-1a5f-404b-a384-c757cfc2c56c", + "modified": "2021-01-13T01:52:45.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--812028fe-5ae4-4d65-8be4-e2b7392ce40e", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.258Z", + "id": "relationship--67905462-62df-46fb-8e1d-68d97a77d772", + "modified": "2021-01-13T01:52:45.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--b49cfdda-a947-4d17-84b9-a6b3a6c7d5af", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.259Z", + "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", + "modified": "2021-01-13T01:52:45.259Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2b2f72ea-bfd2-4d26-ab29-e3b994c63373", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.259Z", + "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", + "modified": "2021-01-13T01:52:45.259Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.345Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d09a9829-3ec8-4cd3-874d-8007f62e4f3b", - "modified": "2021-01-06T18:30:56.345Z", + "created": "2021-01-13T01:52:45.260Z", + "id": "relationship--8c79a193-dc38-41ee-8837-bb4734dddaed", + "modified": "2021-01-13T01:52:45.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.346Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--bef76ab1-465f-446b-9f42-78d4f3ae0dbc", - "modified": "2021-01-06T18:30:56.346Z", + "created": "2021-01-13T01:52:45.261Z", + "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.346Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.261Z", "id": "relationship--335b369a-d65d-4847-86ae-47e8ac0b5a4b", - "modified": "2021-01-06T18:30:56.346Z", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f7823657-c3fe-45f9-b6bf-20c918ccd5ba", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.261Z", + "id": "relationship--8a19562b-f4aa-4305-8694-81ccfca1cba6", + "modified": "2021-01-13T01:52:45.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--05db586a-1aa0-4c0a-bdb5-44be3b2ea765", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.263Z", + "id": "relationship--5712d0a7-afbb-48b6-a971-ab4d637883d6", + "modified": "2021-01-13T01:52:45.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0320f1c4-971f-40f1-9d1e-187bc81429f7", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.268Z", + "id": "relationship--d5758186-cb9c-42df-9e39-d6a7dc997b18", + "modified": "2021-01-13T01:52:45.268Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--62a70342-8ba5-4798-98cb-1e9fe0316dd9", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.268Z", + "id": "relationship--f5fb50d6-14d8-4337-b1ef-0dd1543d4d44", + "modified": "2021-01-13T01:52:45.268Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--b7b3a21f-0e81-449b-a39a-de5e4e9b85f1", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.269Z", + "id": "relationship--55430831-4cf1-4311-8030-099ae3f6616b", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.347Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3fdc475d-4a3c-439d-9195-7dad9d82c70b", - "modified": "2021-01-06T18:30:56.347Z", + "created": "2021-01-13T01:52:45.269Z", + "id": "relationship--6c5dd7fc-bccb-4504-a80e-f572bf3cbf3d", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7fedce4e-5030-488d-9e7d-8ac40a34f98a", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.269Z", + "id": "relationship--2ec6a654-731e-4d10-a867-34cbc8eb68b2", + "modified": "2021-01-13T01:52:45.269Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--be8cb30b-c7cd-4728-9549-15fe8b7b13ea", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.270Z", + "id": "relationship--22870727-5c6e-4401-9ce5-fc768a809e9e", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--6f57e407-a57e-4ebb-948e-2a089f147ae9", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.270Z", + "id": "relationship--3d3f4519-4157-43dc-826c-240d5da53206", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0f264e7b-e188-42c3-9ed9-11081e3269ff", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.270Z", + "id": "relationship--492d8db0-b626-42f4-bc57-ad05c1fab2cf", + "modified": "2021-01-13T01:52:45.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--087c9259-99eb-4260-b007-600c3acb8302", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.271Z", + "id": "relationship--1d985a66-3d1e-47fc-80b9-77a62a959dfd", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--018091e7-a8df-4fb9-938f-af79f5d8da8a", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.271Z", + "id": "relationship--1b97c235-a906-4961-a2d8-719ede07c8cd", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.348Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--44c0061f-cf28-43c6-a89a-3cf801f23024", - "modified": "2021-01-06T18:30:56.348Z", + "created": "2021-01-13T01:52:45.271Z", + "id": "relationship--46d4e416-0093-4e7d-a6bd-45e0838b6873", + "modified": "2021-01-13T01:52:45.271Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a680271d-6c69-41be-82d6-7ceed6ada01e", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--afc5b329-fcd1-4405-a851-23664853164a", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d008227c-6b9f-4ad0-8250-63dbf8450dc4", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--5e0e7ec5-35b1-4e4d-a3dc-f514575e0a59", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--83303163-97c2-4025-9062-e4719cb5d168", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--fc12c35d-c134-4dff-8824-16fbe129cf4d", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--3660b321-ead1-4e2a-96ed-ceda0fbc1e8b", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--37e54c11-492a-46c2-aa58-e5963a23bb70", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.349Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--598f54bf-7bee-424c-a3f1-2b87e00eaa4d", - "modified": "2021-01-06T18:30:56.349Z", + "created": "2021-01-13T01:52:45.272Z", + "id": "relationship--15de80fc-389c-4fda-97cb-c009140be5e1", + "modified": "2021-01-13T01:52:45.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7f6a1752-2d67-470b-be36-fa11e07c8617", - "modified": "2021-01-06T18:30:56.350Z", + "created": "2021-01-13T01:52:45.273Z", + "id": "relationship--3ada8a50-6f2a-4f99-ac92-8b01763b0e5f", + "modified": "2021-01-13T01:52:45.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--418314a0-0d57-4c7b-9bc1-875b43836bbb", - "modified": "2021-01-06T18:30:56.350Z", + "created": "2021-01-13T01:52:45.273Z", + "id": "relationship--1bc7995b-8366-421f-9dc7-0b930a86f7ff", + "modified": "2021-01-13T01:52:45.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--dbedc551-2dc1-4d7d-a902-5b80db9a30f3", - "modified": "2021-01-06T18:30:56.350Z", + "created": "2021-01-13T01:52:45.274Z", + "id": "relationship--299c08cf-3eb7-466b-8921-df7573d610f7", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.350Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c0334ff-505b-4738-83b1-91b7541f8a2d", - "modified": "2021-01-06T18:30:56.350Z", + "created": "2021-01-13T01:52:45.274Z", + "id": "relationship--de79e416-5518-494e-ba4b-78ecafae465f", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--01f687f7-5314-4016-9148-831f92ce792d", - "modified": "2021-01-06T18:30:56.351Z", + "created": "2021-01-13T01:52:45.274Z", + "id": "relationship--38f1b973-3a94-44ac-8d2c-32c10a934d3b", + "modified": "2021-01-13T01:52:45.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--755f36d8-dfc7-4979-8560-0bba32d13759", - "modified": "2021-01-06T18:30:56.351Z", + "created": "2021-01-13T01:52:45.275Z", + "id": "relationship--aeff7d2a-785e-4cd3-a9aa-df8324654ba9", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a0ed3af8-0654-4a93-a415-e077b299da91", - "modified": "2021-01-06T18:30:56.351Z", + "created": "2021-01-13T01:52:45.275Z", + "id": "relationship--0bcd13b7-c4d6-40b5-b9d1-7403e2eb6300", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.351Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.351Z", + "created": "2021-01-13T01:52:45.275Z", + "id": "relationship--2547a3ab-ada2-43d1-8c84-6cf899425c86", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--dd483a2f-47e7-4a6e-8fa4-58ab4843e4a1", - "modified": "2021-01-06T18:30:56.353Z", + "created": "2021-01-13T01:52:45.275Z", + "id": "relationship--7df71792-2440-4234-bbb5-bf9b8396d478", + "modified": "2021-01-13T01:52:45.275Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--dbeb2038-1083-475d-8235-768056c04a4f", - "modified": "2021-01-06T18:30:56.353Z", + "created": "2021-01-13T01:52:45.276Z", + "id": "relationship--f7867605-cfa0-40c4-ade4-dbbfc37dd75b", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.353Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d5758186-cb9c-42df-9e39-d6a7dc997b18", - "modified": "2021-01-06T18:30:56.353Z", + "created": "2021-01-13T01:52:45.276Z", + "id": "relationship--4e2e6223-6c57-406c-b067-01fc519b3f07", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.354Z", - "description": "Configuration Management, Application Control", - "id": "relationship--53743617-0471-44e8-a9df-e8db2dd76ee0", - "modified": "2021-01-06T18:30:56.354Z", + "created": "2021-01-13T01:52:45.276Z", + "id": "relationship--c35b48c5-8ecc-4308-b4c6-5191dd6ff50f", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.354Z", - "description": "Configuration Management, Application Control", - "id": "relationship--fe6a944d-0d24-487e-80d1-4d401110a40c", - "modified": "2021-01-06T18:30:56.354Z", + "created": "2021-01-13T01:52:45.276Z", + "id": "relationship--c3ff51c3-dc2f-405c-910b-3425ad6981e4", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--0609c960-0443-42bb-a611-f5ff1551f026", - "modified": "2021-01-06T18:30:56.356Z", + "created": "2021-01-13T01:52:45.276Z", + "id": "relationship--895eae60-d5de-47d6-b448-7c11349460d4", + "modified": "2021-01-13T01:52:45.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--046698b6-ecd8-47a9-9f2a-1d3919ab34d5", - "modified": "2021-01-06T18:30:56.356Z", + "created": "2021-01-13T01:52:45.277Z", + "id": "relationship--b16b6160-37c2-45a1-be70-9672158af7ea", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.356Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d605907b-de29-4e1f-a854-73decf8d23aa", - "modified": "2021-01-06T18:30:56.356Z", + "created": "2021-01-13T01:52:45.277Z", + "id": "relationship--53bd6dc4-9583-4988-9970-a3214339093f", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--e4648ee0-facc-46da-b595-6b2985016908", - "modified": "2021-01-06T18:30:56.357Z", + "created": "2021-01-13T01:52:45.277Z", + "id": "relationship--bdf648b6-06c4-4f51-9397-a1ff326e4e19", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9fdc6e9d-772f-4256-9027-a0a7976e5cba", - "modified": "2021-01-06T18:30:56.357Z", + "created": "2021-01-13T01:52:45.277Z", + "id": "relationship--e790eb5f-dd11-49c2-ae64-b5f993284c86", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.357Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7159e180-05df-4bda-b66b-6553130eebd9", - "modified": "2021-01-06T18:30:56.357Z", + "created": "2021-01-13T01:52:45.277Z", + "id": "relationship--d97cf3d8-173a-4459-8fb8-68774f7b85a2", + "modified": "2021-01-13T01:52:45.277Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", - "id": "relationship--ad2e5b48-0269-4ced-ac22-4a49db61a977", - "modified": "2021-01-06T18:30:56.358Z", + "created": "2021-01-13T01:52:45.278Z", + "id": "relationship--03932d93-088c-40ad-adc2-13a091de376f", + "modified": "2021-01-13T01:52:45.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", - "id": "relationship--7ed822a6-9ba2-4bf7-b122-5a33e304a3c3", - "modified": "2021-01-06T18:30:56.358Z", + "created": "2021-01-13T01:52:45.278Z", + "id": "relationship--d0d5ce30-a02c-4291-9091-b2ff8aa97518", + "modified": "2021-01-13T01:52:45.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.358Z", - "description": "Information Validation", - "id": "relationship--36c180aa-e929-41af-9990-e5f8ff92069f", - "modified": "2021-01-06T18:30:56.358Z", + "created": "2021-01-13T01:52:45.279Z", + "id": "relationship--8d7c1452-d021-4109-9db8-f3e6fcd8b037", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--40aba28e-cab9-4570-8907-de0c751afca4", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.279Z", + "id": "relationship--18f0842c-779a-4be3-a6e5-c22163338d3a", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--bfa1cd26-5c12-4b7e-a232-8bf686654cc9", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.279Z", + "id": "relationship--6745ce31-8b48-4e92-ab63-67f038fb911b", + "modified": "2021-01-13T01:52:45.279Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--6f8ed074-6afe-46e5-b4ed-0976857edc31", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--6e5507ca-c8ef-454f-9991-9b7d23e2464b", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--7d990798-d5d7-4cb1-9e63-7dd3c5c5b63c", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--cad97dc0-c15f-441b-99de-f9f56dbe63ed", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--357f3eaa-7bf8-4ad7-975b-e7885b0f7f81", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--df3b3169-9ac8-46b2-9961-60e7c0c8d534", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--c6416ed4-1d80-4614-9db0-7a23b4076147", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--b4173709-4d55-4eb4-94f3-365af13aa0fd", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.359Z", - "description": "Information Validation", - "id": "relationship--fc9ab7dd-cb25-466c-b866-efa521fc39ed", - "modified": "2021-01-06T18:30:56.359Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--6a8ced40-8e50-4423-9277-3bb9df1d0df8", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", - "id": "relationship--469aed6b-d464-4aaf-a41f-2cf81cdcdb5f", - "modified": "2021-01-06T18:30:56.360Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--f9e2e042-52d0-4085-a592-3a35acc9772a", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", - "id": "relationship--94f39230-83e9-4c09-a989-acd1a30f9757", - "modified": "2021-01-06T18:30:56.360Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--daa28f4f-a2ae-423c-8374-96f36d3a1085", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.360Z", - "description": "Configuration Management, Application Control", - "id": "relationship--8f8c749c-63ff-4eaf-acd5-3a65261916f2", - "modified": "2021-01-06T18:30:56.360Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--1ac8ac96-d96d-44c6-afe7-874f6bcd51d5", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.361Z", - "description": "Configuration Management, Application Control", - "id": "relationship--5866d81f-5ec8-47d8-82c9-17b8f9fee6a5", - "modified": "2021-01-06T18:30:56.361Z", + "created": "2021-01-13T01:52:45.280Z", + "id": "relationship--6e7c5c1c-892f-4e64-8c98-ef5bfaff5ee6", + "modified": "2021-01-13T01:52:45.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.361Z", - "description": "Configuration Management, Application Control", - "id": "relationship--c734e120-01d8-4ca2-a076-dd93f16faa36", - "modified": "2021-01-06T18:30:56.361Z", + "created": "2021-01-13T01:52:45.281Z", + "id": "relationship--09930b2d-5b89-44c2-b249-1af929eec54d", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", - "id": "relationship--7d9113c6-4604-44d8-a4cb-dafbabda429a", - "modified": "2021-01-06T18:30:56.362Z", + "created": "2021-01-13T01:52:45.281Z", + "id": "relationship--f4565898-2ef7-4a4d-a870-e6c39f3924ff", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", - "id": "relationship--613d0e0b-c1c6-4d96-8188-07c11e83310d", - "modified": "2021-01-06T18:30:56.362Z", + "created": "2021-01-13T01:52:45.281Z", + "id": "relationship--e74d57de-f1c3-4e29-80a4-ccfb6aa8e38d", + "modified": "2021-01-13T01:52:45.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", - "id": "relationship--8acff36d-4217-4807-8c5f-a6c99421e76d", - "modified": "2021-01-06T18:30:56.362Z", + "created": "2021-01-13T01:52:45.282Z", + "id": "relationship--19a6246f-ce75-4c4d-9320-ebb3b7944f71", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.362Z", - "description": "Information Validation", - "id": "relationship--b2c0287c-2e4a-4394-8834-05f4e3fadf84", - "modified": "2021-01-06T18:30:56.362Z", + "created": "2021-01-13T01:52:45.282Z", + "id": "relationship--8bc71b60-4d8e-4280-b091-fe648734e6b3", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.363Z", - "description": "Configuration Management, Application Control", - "id": "relationship--4ff7c944-53b1-47ad-9dfe-9cd57bd51a5c", - "modified": "2021-01-06T18:30:56.363Z", + "created": "2021-01-13T01:52:45.282Z", + "id": "relationship--174abdb9-c3bb-4140-b9f9-274972b63ca2", + "modified": "2021-01-13T01:52:45.282Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.363Z", - "description": "Configuration Management, Application Control", - "id": "relationship--0cbf3e05-427d-4c67-a3c4-39bb2534668c", - "modified": "2021-01-06T18:30:56.363Z", + "created": "2021-01-13T01:52:45.283Z", + "id": "relationship--2efd12d4-586c-47e7-8ee1-bb74a3a6672c", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.364Z", - "description": "Code execution", - "id": "relationship--a53940b0-6b26-451e-bc54-4c4de7c4b69a", - "modified": "2021-01-06T18:30:56.364Z", + "created": "2021-01-13T01:52:45.283Z", + "id": "relationship--e6163f97-4e90-47c1-9f0f-801327d1ba90", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", - "id": "relationship--db659b6c-102f-4124-8cb5-44117ff30e38", - "modified": "2021-01-06T18:30:56.365Z", + "created": "2021-01-13T01:52:45.283Z", + "id": "relationship--d62ec3df-71fc-47e9-a807-87b083e72a9e", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", - "id": "relationship--171eb4c9-9ebb-4c7b-ad38-8eb2aafea64f", - "modified": "2021-01-06T18:30:56.365Z", + "created": "2021-01-13T01:52:45.283Z", + "id": "relationship--46bf7820-4aa7-46a5-aa9f-7df37b7e9f2f", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.365Z", - "description": "Code execution", - "id": "relationship--d15c21b9-e27e-4c96-b6cc-131dcc98552c", - "modified": "2021-01-06T18:30:56.365Z", + "created": "2021-01-13T01:52:45.283Z", + "id": "relationship--70355dac-0b67-4b67-8473-be03c8b1a40b", + "modified": "2021-01-13T01:52:45.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.366Z", - "description": "System Monitoring", - "id": "relationship--aa5988e6-3209-4c09-b4f1-2b8e7a361a8b", - "modified": "2021-01-06T18:30:56.366Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--5294d7bc-7107-4ece-b074-cbac2c21fda6", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.366Z", - "description": "System Monitoring", - "id": "relationship--d73ec201-a9a4-4ec7-959b-5b0c7b93d4b6", - "modified": "2021-01-06T18:30:56.366Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--580cedfb-c6cf-4c43-9ba3-0530e62981c1", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--e1604494-b31f-43d9-bb8b-90f3cc58cd85", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--571376a4-7638-42b7-b7fa-f61cc497b364", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--cca83a1f-45bf-4434-8473-45f373559340", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--89d14bbe-b8e5-4b1a-9397-a9a8cf6b2990", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--7ba1f329-3378-492a-88e3-7aeba5420e47", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--136f82cd-e69d-4de0-856b-2325e3bb1ac6", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--90bc4e55-0a01-4b53-a75e-19820dde1ad7", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--e1efa447-fdaa-4a43-aaf2-e647492b5106", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--11051d9b-1713-4164-a6e5-6b98ce0da75f", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.367Z", - "description": "System Monitoring", - "id": "relationship--16194e6d-881c-444d-a960-787125bc2387", - "modified": "2021-01-06T18:30:56.367Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--9873d4bc-b8a9-4d5a-8779-8338b742d2cf", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.368Z", - "description": "System Monitoring", - "id": "relationship--408d76f1-6807-4906-8626-2b36e2b0fa9a", - "modified": "2021-01-06T18:30:56.368Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--c47584c8-43be-4ff1-9132-b973485504dd", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.368Z", - "description": "System Monitoring", - "id": "relationship--5b36caf7-7fce-4885-be2f-93457922293a", - "modified": "2021-01-06T18:30:56.368Z", + "created": "2021-01-13T01:52:45.284Z", + "id": "relationship--7e495803-d344-453b-903e-2fb885d1d974", + "modified": "2021-01-13T01:52:45.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.286Z", + "id": "relationship--5b2ed4ce-cb84-4e6d-87f5-23a8873c0fa4", + "modified": "2021-01-13T01:52:45.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--21c961be-138c-41d2-86fa-d4adaaa571c2", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.288Z", + "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", + "modified": "2021-01-13T01:52:45.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.289Z", + "id": "relationship--8449c02a-ea2a-4e5a-b2f7-e590494d7b0a", + "modified": "2021-01-13T01:52:45.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--394c088a-821f-46c4-a0c3-12eb3ce6382e", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.289Z", + "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", + "modified": "2021-01-13T01:52:45.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.291Z", + "id": "relationship--5e0d485a-1272-4d30-a63e-d4d4d6b649ae", + "modified": "2021-01-13T01:52:45.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.369Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ad524fb4-080d-4f94-90c6-39c6d79b181f", - "modified": "2021-01-06T18:30:56.369Z", + "created": "2021-01-13T01:52:45.291Z", + "id": "relationship--0aad8adb-af23-4f6a-a928-dae5362b6ae9", + "modified": "2021-01-13T01:52:45.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.370Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--e8ac1833-ada4-43a8-8c84-d28bdf9d355a", - "modified": "2021-01-06T18:30:56.370Z", + "created": "2021-01-13T01:52:45.295Z", + "id": "relationship--2434b6ac-7112-45c0-a295-cdacd75120d9", + "modified": "2021-01-13T01:52:45.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.370Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9d4ae80d-a0a2-45be-9f6f-0cdb0d6e3c69", - "modified": "2021-01-06T18:30:56.370Z", + "created": "2021-01-13T01:52:45.295Z", + "id": "relationship--b8e9e642-b607-474d-98a8-935660d0f72f", + "modified": "2021-01-13T01:52:45.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6dc858b0-2035-47c5-ba8d-2266e3ac227a", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.296Z", + "id": "relationship--3026bc3b-d8a7-4aae-b9f6-823e26e1a0c3", + "modified": "2021-01-13T01:52:45.296Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7c7ab027-f054-4302-bee3-6d286c6c2c99", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.296Z", + "id": "relationship--546b010b-f278-442a-b07d-db1c31e8bcf5", + "modified": "2021-01-13T01:52:45.296Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2f6a5e3f-a3fa-4a7d-b344-ec1bc9cb6e88", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.298Z", + "id": "relationship--a84f59c7-dd13-4bd4-aef8-830f975e6d6f", + "modified": "2021-01-13T01:52:45.298Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d1f7a765-d2c5-4393-b27d-d781e1d7fdf0", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.299Z", + "id": "relationship--7e874496-dd6a-4876-bfad-11d3fbac1562", + "modified": "2021-01-13T01:52:45.299Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8b638a03-6cfe-4809-bd64-0153e490dece", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.299Z", + "id": "relationship--28548263-d7a9-48ca-a799-770359722559", + "modified": "2021-01-13T01:52:45.299Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.371Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2577bf5b-b021-40af-b320-038e4d1b86bc", - "modified": "2021-01-06T18:30:56.371Z", + "created": "2021-01-13T01:52:45.300Z", + "id": "relationship--5486d6a2-8659-4a26-91d3-309e8ba5f97f", + "modified": "2021-01-13T01:52:45.300Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--5a999ec9-282d-41be-9de5-ec80ffde7d26", - "modified": "2021-01-06T18:30:56.372Z", + "created": "2021-01-13T01:52:45.300Z", + "id": "relationship--3df3ca2d-50c1-4e70-a8c1-e636d1abe5d0", + "modified": "2021-01-13T01:52:45.300Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--77bf60af-cd0c-4534-9e2e-77d607e6684c", - "modified": "2021-01-06T18:30:56.372Z", + "created": "2021-01-13T01:52:45.301Z", + "id": "relationship--1c5c389d-227d-4ef6-a1b8-9759a3e49fc4", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.372Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ce2c018c-0daf-4f72-b6f4-882dd14a449d", - "modified": "2021-01-06T18:30:56.372Z", + "created": "2021-01-13T01:52:45.301Z", + "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--410685a2-9de1-4f82-aac9-f6d5bb82c4e5", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.301Z", + "id": "relationship--3ec8ecac-678b-48ec-bf58-645017597063", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--03fc936f-42f7-4c08-9c8e-48dc5306cdf5", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.301Z", + "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", + "modified": "2021-01-13T01:52:45.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ac658d22-4128-4337-8560-39cbcb67fa06", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.302Z", + "id": "relationship--88072258-a79c-4604-b4a4-feb5e064f6ec", + "modified": "2021-01-13T01:52:45.302Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--afa55fc8-8555-445c-bc63-f5239c32f469", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.303Z", + "id": "relationship--ae6e9f5b-f284-47dc-a299-b288220a74bf", + "modified": "2021-01-13T01:52:45.303Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--33e127c8-b4fa-42b4-b441-91497647d20e", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.303Z", + "id": "relationship--1fd01a47-be61-4670-83c9-c9a21c705936", + "modified": "2021-01-13T01:52:45.303Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--404ac666-65d7-43b8-bf9d-f999309ec164", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.304Z", + "id": "relationship--6308a156-907e-48eb-aab6-12d96467c08b", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.373Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d46d125f-5d88-403e-b34c-9e9b16021676", - "modified": "2021-01-06T18:30:56.373Z", + "created": "2021-01-13T01:52:45.304Z", + "id": "relationship--30e69d35-64dc-4d7a-8259-221e4751d1f7", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.374Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7dc50a99-3d6f-42ea-aa91-d2f694a83f80", - "modified": "2021-01-06T18:30:56.374Z", + "created": "2021-01-13T01:52:45.304Z", + "id": "relationship--d44c5a9c-b51d-4890-8d70-1e8cf780a9ed", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.374Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--6064d190-3691-4828-bf84-c6aacc445a98", - "modified": "2021-01-06T18:30:56.374Z", + "created": "2021-01-13T01:52:45.304Z", + "id": "relationship--2f0d1fc9-5040-44c1-9d08-13a8be7a37a7", + "modified": "2021-01-13T01:52:45.304Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", - "id": "relationship--c984cfd4-9476-4549-acd3-247f9239b0af", - "modified": "2021-01-06T18:30:56.375Z", + "created": "2021-01-13T01:52:45.305Z", + "id": "relationship--3ccdc9d2-e7f0-4b6e-a478-f10e1eeeb224", + "modified": "2021-01-13T01:52:45.305Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", - "id": "relationship--b96087d6-3142-4b47-9598-8683aa8f1c26", - "modified": "2021-01-06T18:30:56.375Z", + "created": "2021-01-13T01:52:45.306Z", + "id": "relationship--fae08fb7-396c-4bd2-89e1-02a76ab14f1a", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", - "id": "relationship--04ab7c1a-78d5-42e5-a47f-da30b3b72072", - "modified": "2021-01-06T18:30:56.375Z", + "created": "2021-01-13T01:52:45.306Z", + "id": "relationship--30b7242b-e4f0-4716-b01c-47f6233d87a4", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.375Z", - "description": "Information Validation", - "id": "relationship--54d49f4e-3ebb-44df-95e2-bd4899a74ba0", - "modified": "2021-01-06T18:30:56.375Z", + "created": "2021-01-13T01:52:45.306Z", + "id": "relationship--f710dc38-80ca-4b5a-ba19-34275f3758bc", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.377Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b843ab7a-f56b-4d5f-95cd-a9962b28a4f0", - "modified": "2021-01-06T18:30:56.377Z", + "created": "2021-01-13T01:52:45.306Z", + "id": "relationship--32ac7886-68c0-43b3-9cf2-b8441d9fe599", + "modified": "2021-01-13T01:52:45.306Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.377Z", - "description": "Configuration Management, Application Control", - "id": "relationship--91b8d329-b76a-4bfb-aeb7-b9ccbb8a5e10", - "modified": "2021-01-06T18:30:56.377Z", + "created": "2021-01-13T01:52:45.307Z", + "id": "relationship--7281fec3-4089-496a-9e30-244dd8bf7abe", + "modified": "2021-01-13T01:52:45.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", - "id": "relationship--ae31276f-e704-4a0c-a67b-a9f51c980bee", - "modified": "2021-01-06T18:30:56.378Z", + "created": "2021-01-13T01:52:45.307Z", + "id": "relationship--bdfc6f00-d070-4230-a846-126af9e0a49a", + "modified": "2021-01-13T01:52:45.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", - "id": "relationship--a3eea86c-8ef1-4a37-8237-9dff5eb1eaa1", - "modified": "2021-01-06T18:30:56.378Z", + "created": "2021-01-13T01:52:45.308Z", + "id": "relationship--9100052a-fec2-4d11-9014-52ccd20d2912", + "modified": "2021-01-13T01:52:45.308Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", - "id": "relationship--3d3d3237-2c2e-4e39-8236-b9fa8007e914", - "modified": "2021-01-06T18:30:56.378Z", + "created": "2021-01-13T01:52:45.308Z", + "id": "relationship--762ff753-dc21-459f-b132-8d27c5ff2c5a", + "modified": "2021-01-13T01:52:45.308Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.378Z", - "description": "Information Validation", - "id": "relationship--be56abaa-6624-48e8-bbeb-f83e1606fb59", - "modified": "2021-01-06T18:30:56.378Z", + "created": "2021-01-13T01:52:45.314Z", + "id": "relationship--c703dc1b-8b58-4f4a-9730-e6e5b2992d64", + "modified": "2021-01-13T01:52:45.314Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--dbac2ec4-1f53-4bd8-b388-42d434bfacef", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.314Z", + "id": "relationship--b51458ee-a0b8-4112-ab81-a118cac07a49", + "modified": "2021-01-13T01:52:45.314Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--d723a848-eab1-4121-a129-335adeb781a9", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.315Z", + "id": "relationship--558c5424-e412-439d-b2a3-f0642a00b086", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--a9ba865a-7e26-453f-9409-9869a1225240", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.315Z", + "id": "relationship--0e02ce95-f3f9-42f5-9b51-e4d572f722c7", + "modified": "2021-01-13T01:52:45.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--e906b8e2-fbf9-4aa0-89cb-9575d7d3a17a", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.315Z", + "id": "relationship--38ce3d85-22df-411e-af2f-2d51b76e9f1a", + "modified": "2021-01-13T01:52:45.315Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.315Z", + "id": "relationship--7534d947-0e04-4c61-9ded-5e1567f9d507", + "modified": "2021-01-13T01:52:45.315Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.316Z", + "id": "relationship--90487cc7-cd9d-494a-af77-8a0771b1d869", + "modified": "2021-01-13T01:52:45.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--048a3ec5-01a4-4ed9-8f57-d67ebdeee086", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.320Z", + "id": "relationship--7c68775e-468b-4513-a29f-c656fcc5c032", + "modified": "2021-01-13T01:52:45.320Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--ebabacd6-38a1-472d-b82d-54df55c88ec4", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.320Z", + "id": "relationship--da87e3b9-0d43-459c-8354-aab5f169e71f", + "modified": "2021-01-13T01:52:45.320Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--0587de72-2c3f-4dc2-ba17-3da8dd8f8092", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.321Z", + "id": "relationship--798f961c-17c9-416a-91a2-d6f1796465e5", + "modified": "2021-01-13T01:52:45.321Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.379Z", - "description": "Information Validation", - "id": "relationship--251b4b89-80f2-4573-9af6-3dd0d7a6e622", - "modified": "2021-01-06T18:30:56.379Z", + "created": "2021-01-13T01:52:45.325Z", + "id": "relationship--20ed8d59-8717-4e8d-acfb-3497ce5211ea", + "modified": "2021-01-13T01:52:45.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.380Z", - "description": "Information Validation", - "id": "relationship--e4e0eef8-25f9-4876-8a15-2adf778a2c10", - "modified": "2021-01-06T18:30:56.380Z", + "created": "2021-01-13T01:52:45.325Z", + "id": "relationship--4e267c2a-68cb-46cb-9178-b0dc23a65407", + "modified": "2021-01-13T01:52:45.325Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.380Z", - "description": "Information Validation", - "id": "relationship--93f1238d-18c0-47c9-b6c3-1cd91f8001fa", - "modified": "2021-01-06T18:30:56.380Z", + "created": "2021-01-13T01:52:45.329Z", + "id": "relationship--77d9ba53-0e53-48bb-8ae7-fe09f531211b", + "modified": "2021-01-13T01:52:45.329Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b4c4b47c-8063-4951-a4d5-cc97db938e62", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.329Z", + "id": "relationship--9abfd93e-09be-4a3d-90c8-f5a536d591b5", + "modified": "2021-01-13T01:52:45.329Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ab8e3f61-ffcd-4660-a209-843fcf441e09", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.331Z", + "id": "relationship--b924e704-3e95-4726-b50d-8d6bda24698e", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--2b217435-4d0d-49c8-bb47-5906ad9bbe26", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.331Z", + "id": "relationship--17aad9b2-f2c9-4763-8389-33736a58f859", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--77db8899-9202-4060-8665-040bea1ef927", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.331Z", + "id": "relationship--1428fb4e-2983-4fc5-8b1e-5233dd054bd7", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--12aa590b-bd7b-4b33-8aec-3c17ca450755", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.331Z", + "id": "relationship--d31d7c42-68d0-48e8-8ab1-fde354458d8c", + "modified": "2021-01-13T01:52:45.331Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.381Z", - "description": "Configuration Management, Application Control", - "id": "relationship--a70254d9-f382-4db2-9797-3eb887f24426", - "modified": "2021-01-06T18:30:56.381Z", + "created": "2021-01-13T01:52:45.332Z", + "id": "relationship--02c76463-77b1-4f47-837f-62a104bcda2a", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.382Z", - "description": "Configuration Management, Application Control", - "id": "relationship--0be23497-b6b6-4734-a60b-626b8f886062", - "modified": "2021-01-06T18:30:56.382Z", + "created": "2021-01-13T01:52:45.332Z", + "id": "relationship--ce0b936c-0430-4bba-ae2d-f388414cc7cc", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.383Z", - "description": "System Monitoring", - "id": "relationship--f78bb02e-ecf3-4144-86f0-fea70ebfd1e8", - "modified": "2021-01-06T18:30:56.383Z", + "created": "2021-01-13T01:52:45.332Z", + "id": "relationship--72e4d2ed-3d49-458e-bcaa-fa1bcf8fabcf", + "modified": "2021-01-13T01:52:45.332Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", + "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.385Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9c3946ce-71e3-4340-8978-36c1114585bc", - "modified": "2021-01-06T18:30:56.385Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--165b25ce-067c-4ee2-a917-c99ee6a1d2a3", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.385Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--25088766-9277-4bc3-88b4-c85fa5a29f8a", - "modified": "2021-01-06T18:30:56.385Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--41ab505e-dfaa-4385-a894-2c488121dbe5", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.387Z", - "description": "System Monitoring", - "id": "relationship--e5543133-a383-4f77-ae50-a1f0ae66a43e", - "modified": "2021-01-06T18:30:56.387Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--0ca3207c-dba3-4947-9ce4-d0bfd8b39370", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.388Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--39947ae9-f989-4770-8776-cc8baa246124", - "modified": "2021-01-06T18:30:56.388Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--c25474fa-c040-4c0a-9e59-57e426a006f1", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.388Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--acee6bd3-24a4-4fc0-961c-dca4e94b3df1", - "modified": "2021-01-06T18:30:56.388Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--995319d4-6b90-4cd3-bf7e-6accf162576d", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.389Z", - "id": "relationship--0f0c22c1-c6a1-4266-9466-d243d7414653", - "modified": "2021-01-06T18:30:56.389Z", + "created": "2021-01-13T01:52:45.333Z", + "id": "relationship--7c814acc-ffc7-49b9-bd40-0ce26ee85f0f", + "modified": "2021-01-13T01:52:45.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.389Z", - "id": "relationship--30addf35-1299-46a2-8419-934db6a5a569", - "modified": "2021-01-06T18:30:56.389Z", + "created": "2021-01-13T01:52:45.336Z", + "id": "relationship--04395271-fa6c-4040-b9d6-dcef167516c3", + "modified": "2021-01-13T01:52:45.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--c26b4cb1-1d93-44d4-88a7-0754d91c8549", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.337Z", + "id": "relationship--08658b5c-357f-4749-8f74-7d843fdd994b", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--74571d93-7ea3-4efc-ba72-77d49f560454", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.337Z", + "id": "relationship--5fbf3699-6700-44c6-b51d-9e0ad1fa8e5b", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--3885dd1c-c612-4c19-a39c-005ca3f98a69", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.337Z", + "id": "relationship--2adb4841-d12f-4729-83f8-6df206ca3dac", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--97a507af-4d50-4e91-932d-0057bc86f6d2", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.337Z", + "id": "relationship--adf2edac-cb4b-4c6a-a4d6-aa9df23de552", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--ae490078-010a-4a75-b3e4-112492a975e6", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.337Z", + "id": "relationship--1c3caad2-3a99-4196-bdb5-dc66cc066220", + "modified": "2021-01-13T01:52:45.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--793c452d-a8de-468f-9077-fd3d047f061e", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.339Z", + "id": "relationship--1de56d53-a41b-4c24-94d9-ae3ac20d69aa", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--0f377664-4f70-4597-bfa8-a27815c10070", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.339Z", + "id": "relationship--8b1f0241-cb24-4eef-a649-aada36e2fcdf", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.390Z", - "id": "relationship--9f4355ff-decd-4e1f-9674-c64e6b19b17c", - "modified": "2021-01-06T18:30:56.390Z", + "created": "2021-01-13T01:52:45.339Z", + "id": "relationship--e8864db1-3013-4d01-8344-4d5b6a0b6a80", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--22c33db5-c95b-44fc-b065-da7d866d2221", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.339Z", + "id": "relationship--5750b9fa-296a-45b2-a451-e57cacbab771", + "modified": "2021-01-13T01:52:45.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--42d7257f-1944-40a0-bcae-2b9cad9577c6", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.340Z", + "id": "relationship--29350344-d9a2-4745-a5f6-88e9c4ccefba", + "modified": "2021-01-13T01:52:45.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--35e10857-70ab-4ac2-9d2c-895c0aea1bfc", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.340Z", + "id": "relationship--996eb3bf-5ba8-455e-a4fb-9a4f36c8e226", + "modified": "2021-01-13T01:52:45.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "source_ref": "course-of-action--e4ba9aa0-4532-4a9e-b597-1e6985ebb152", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--ed8738e8-c7c5-4ff9-8feb-45abcc63c8dd", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.341Z", + "id": "relationship--bdc6613f-d798-4c59-9f42-779336570969", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--6dbe62f0-9e09-4e19-a29c-20601bfe941e", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.341Z", + "id": "relationship--74039f49-a98e-4684-bb5f-3dd9412104ed", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--27e7e8f2-272d-4538-9261-d1e3ab0938ed", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.341Z", + "id": "relationship--618e8ff1-d4e4-4a72-a70a-200fa2d42c84", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.391Z", - "id": "relationship--17350850-05e2-4d79-bc36-a16e6c5ba097", - "modified": "2021-01-06T18:30:56.391Z", + "created": "2021-01-13T01:52:45.341Z", + "id": "relationship--de857f2e-83d5-40ad-b1b3-9f0a5f2d3335", + "modified": "2021-01-13T01:52:45.341Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--5acbbcfa-0457-4f6f-9d33-ed12d3c84593", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.342Z", + "id": "relationship--1a09f671-7b20-4931-a2f9-91c7dab16c49", + "modified": "2021-01-13T01:52:45.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--1040f35e-298e-49fc-85c9-69073bae9772", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.342Z", + "id": "relationship--b9bdf9ca-777a-4f8c-9888-0b9be8140841", + "modified": "2021-01-13T01:52:45.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--5936661b-382a-4ac5-9128-e132700819fa", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.343Z", + "id": "relationship--8f2f5466-48e6-41f5-82d2-e2138f22fd2c", + "modified": "2021-01-13T01:52:45.343Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--b8ab594f-8976-40b1-9b59-e739a7f15fce", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.344Z", + "id": "relationship--26b30c62-feec-4504-87e5-072efa37ce73", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--dca76800-9dbf-477d-8f38-6937e984c633", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.344Z", + "id": "relationship--29f7214f-3f32-49d5-9712-a09273fe0a05", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--1afcadc3-6f8d-4f0c-b1f5-f9fd30046ae4", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.344Z", + "id": "relationship--bd36633d-aaca-45b1-b7b1-8e19b0691077", + "modified": "2021-01-13T01:52:45.344Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.392Z", - "id": "relationship--b03357ba-192f-4f70-9b8a-e28ee4e7db2c", - "modified": "2021-01-06T18:30:56.392Z", + "created": "2021-01-13T01:52:45.345Z", + "id": "relationship--8b446bfa-9e53-4e7e-af38-00ce50adc9af", + "modified": "2021-01-13T01:52:45.345Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--accb4b8b-6ec4-4aab-867f-6a6ab27a847c", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--a0f7d223-078e-4aec-bb7e-dfda5b1d0046", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--f9ef903e-d5d4-435e-a11a-d9b341fe64a6", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--7ee5bc45-ae12-4946-8f0a-08a8c74e2993", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--85088f7f-dd54-4814-9e04-02aca3b62613", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--98f44ee4-f624-4c7e-8e7b-d7cda027b7ce", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--10a8699a-3fec-45df-8950-3f73b846cb75", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--f9e49164-3317-4f5a-baf6-8b32d4314e3c", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--20be4f93-b285-4081-9d55-d0c0303d7a75", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--1cc0139a-fa4a-42b1-83d5-48180230c488", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.393Z", - "id": "relationship--9e52c247-c8a7-46f0-bcfd-ed0c7705d7fb", - "modified": "2021-01-06T18:30:56.393Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--a38bff23-6c77-4316-a04c-409a7af1342c", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--d9ae35ce-2f97-4496-8076-d3c0949f2862", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--64b0d228-0c42-4808-a581-2eac32334a63", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--037e46ef-32c3-4960-a883-6e79eb8c4775", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.346Z", + "id": "relationship--6ea636ef-e123-4d93-a10e-7be7703cd6b0", + "modified": "2021-01-13T01:52:45.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--b5505c6e-ade4-4a8d-add2-825d4bfb3712", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--2d323269-0581-4914-96fe-769bfa5c84b6", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--e1f3bc5b-c075-4917-97c6-05c8291df267", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--cc3bb91d-8c73-47da-adf4-33a447ddc71f", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--c708134a-78e2-420d-9b97-53c9e5074b1a", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--68027927-fcc9-486e-8830-7f79a13ed950", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--76ac8b37-fa19-45ea-b585-1d8d892ac276", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--68e33edb-ae4d-44dd-a551-770d32d2b3a3", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--00fda3aa-986c-465e-9f31-5285bbb68aa2", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--7c0c7a1f-87f6-4bd0-a336-bfa7cd06a7a6", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.394Z", - "id": "relationship--2b9fa82b-ea39-4328-832e-4643506b8a0a", - "modified": "2021-01-06T18:30:56.394Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--2a91da8d-72b2-4b64-bbed-7be2cbede505", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--5e346e60-2e42-49b3-ad42-347f02b8c6f0", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.347Z", + "id": "relationship--3280928f-365c-4e36-aa98-3debc56d480f", + "modified": "2021-01-13T01:52:45.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--caf8ae44-6e6b-495c-98ee-907654480167", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.348Z", + "id": "relationship--63e77486-01d0-42f7-8bea-855deb83b65b", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--0bb668bc-4927-41d9-bf9c-2050088cf804", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.348Z", + "id": "relationship--fa273daa-f23b-4954-bd50-8c11a2a5d54a", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--f272cf9f-14a2-4c5c-8964-6056b4ed8be0", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.348Z", + "id": "relationship--be1e98c1-082f-4032-a859-700c6f167406", + "modified": "2021-01-13T01:52:45.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--2c21b0f6-c4bd-4453-abfc-1d570496aa81", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.349Z", + "id": "relationship--f30e46ef-2881-4c37-9f66-39e66e0e34b6", + "modified": "2021-01-13T01:52:45.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--b1b5014f-79aa-4ae5-af04-448870bdabef", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.349Z", + "id": "relationship--3b9d0094-7818-441e-9bcc-6e7e91920994", + "modified": "2021-01-13T01:52:45.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.395Z", - "id": "relationship--a260d9a1-018d-4906-9a80-6d594049a6e3", - "modified": "2021-01-06T18:30:56.395Z", + "created": "2021-01-13T01:52:45.350Z", + "id": "relationship--35fe996d-18ee-400c-b04e-b1f809ef92f8", + "modified": "2021-01-13T01:52:45.350Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--2c13497d-76a1-4a9b-bebe-bb4618ca88af", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.351Z", + "id": "relationship--357b33f6-a6e6-45de-8450-50639009d3a6", + "modified": "2021-01-13T01:52:45.351Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--e0e8f1e7-f8d9-4f88-bec9-8cdd2a420233", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.351Z", + "id": "relationship--4ded17fe-4bda-4841-98e1-385a050fbff8", + "modified": "2021-01-13T01:52:45.351Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--1a179a81-b211-4b8d-8197-51f175d1a1fc", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.352Z", + "id": "relationship--c8f3448b-06cd-4ed5-a261-04f9c0f3a23c", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--d963d62b-27a4-48e2-a45b-a2cb7f0a78df", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.352Z", + "id": "relationship--a9845af0-72ad-43c4-8a72-935ce733e0be", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--8642bfb0-cda1-4576-ad4f-3028a6e60101", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.352Z", + "id": "relationship--5b316899-c768-4a2d-8006-6cc035b5c8a8", + "modified": "2021-01-13T01:52:45.352Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--2047a61a-0ecf-4bc8-a9e6-0dafc35cadf3", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.353Z", + "id": "relationship--a89a9a41-2c22-4275-bf3c-3bb4f16c5a88", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--c1e104f3-b67e-4f11-abd6-9a3f7802123d", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.353Z", + "id": "relationship--be3775a0-c574-48b0-8a52-1bb70612b3d8", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.396Z", - "id": "relationship--77fc00ac-0163-406a-bbd3-bad73885fb50", - "modified": "2021-01-06T18:30:56.396Z", + "created": "2021-01-13T01:52:45.353Z", + "id": "relationship--d1d8f4b4-69da-4f6c-ac17-decc3d664194", + "modified": "2021-01-13T01:52:45.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--26b8a551-76ee-43f8-be73-613d019de596", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.354Z", + "id": "relationship--83153651-3c19-4586-9576-f117c3fe7f21", + "modified": "2021-01-13T01:52:45.354Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--0f304710-4e59-4ce1-85ce-b52abc3ff0ef", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.354Z", + "id": "relationship--ec67274e-9514-4dc9-9875-e6fc6c074409", + "modified": "2021-01-13T01:52:45.354Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--2e31153e-36a8-497b-8206-be82cf95438f", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.355Z", + "id": "relationship--810641d3-ba6d-451a-9679-5921f0b0c27d", + "modified": "2021-01-13T01:52:45.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--f86aedcf-2118-4f9a-8677-0c4cd8704250", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.356Z", + "id": "relationship--62b27f2f-5b69-4e0e-8d8a-c19767f335cf", + "modified": "2021-01-13T01:52:45.356Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--cca5a298-4290-417d-b551-df940b0a7006", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.358Z", + "id": "relationship--a92dd4ec-ea21-423e-954b-37f98f3c74bd", + "modified": "2021-01-13T01:52:45.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--113d97b2-6721-4f6c-b58e-9998d113c824", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.358Z", + "id": "relationship--7b52b17a-8269-43db-91a3-75b3e17a3b41", + "modified": "2021-01-13T01:52:45.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--5a5cf3e0-f7a4-4818-a646-b58e52f15443", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.359Z", + "id": "relationship--7c5d4a44-0ac7-49c7-82cc-dc3cbd3ff298", + "modified": "2021-01-13T01:52:45.359Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.397Z", - "id": "relationship--bbae2f68-45d6-4dc6-a16b-e4aae9b36895", - "modified": "2021-01-06T18:30:56.397Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--d3b51433-362b-493f-9359-cc2c44f8042b", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--9d8acc74-bee5-4f3e-8702-e176a629a7b4", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--2bc0ea3e-aaf7-4b5d-9fae-492d08d42ed3", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--2aaeb178-060b-4dff-b75c-073793835862", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--5c2432ce-e9a0-46e7-a77f-0cf19be75b24", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--71fabdda-ce27-4bd1-891c-d878485d3d32", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--74d02f6c-09bd-423e-95e1-56853eaf9896", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--ecfdc133-0b10-4851-89ed-7d41ddf70cf7", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--5ef91915-b646-4aeb-b894-7a19b2806fc1", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--87507d90-d5a5-44eb-84e0-474022c12f06", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.360Z", + "id": "relationship--6e4f05b6-7b87-4885-b902-be8d406e8abf", + "modified": "2021-01-13T01:52:45.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--9ec75ba6-2877-46fb-a19e-6ebe33f933a6", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.361Z", + "id": "relationship--98085f35-47fa-495f-87cf-f3e39067cbaa", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.398Z", - "id": "relationship--e9538e86-4bcd-443b-859b-3098c152b368", - "modified": "2021-01-06T18:30:56.398Z", + "created": "2021-01-13T01:52:45.361Z", + "id": "relationship--1a37c130-f40c-4d81-8f80-a106a7919e41", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", - "id": "relationship--85348f7a-6ff8-4584-bde3-07e36a672ee9", - "modified": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.361Z", + "id": "relationship--71e8e6ba-519b-47e1-ac7b-57a67c5865f0", + "modified": "2021-01-13T01:52:45.361Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", - "id": "relationship--99442ea0-18e0-49b8-b3b1-0155d4046175", - "modified": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.362Z", + "id": "relationship--cfb0878b-c32e-4ddb-8c61-eccea60a1596", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", - "id": "relationship--0f4e9811-fe11-45e1-a3fe-f898689d20c1", - "modified": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.362Z", + "id": "relationship--f6eddb39-bc1b-4b3a-9974-fe61cb48af91", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.399Z", - "id": "relationship--b715dd1b-8897-4050-bd9e-dacdd54fb623", - "modified": "2021-01-06T18:30:56.399Z", + "created": "2021-01-13T01:52:45.362Z", + "id": "relationship--3beebb5c-c004-4234-8372-359ab0980337", + "modified": "2021-01-13T01:52:45.362Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.401Z", - "id": "relationship--8d4b93a2-1eb1-4811-8a23-c05d745d9b30", - "modified": "2021-01-06T18:30:56.401Z", + "created": "2021-01-13T01:52:45.363Z", + "id": "relationship--89416b14-7d23-41b1-9cfb-4dd4c3df731f", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.401Z", - "id": "relationship--ee8717b5-c71c-477b-b0f7-e7e37046dff7", - "modified": "2021-01-06T18:30:56.401Z", + "created": "2021-01-13T01:52:45.363Z", + "id": "relationship--762bc2db-43bb-4907-941d-f71f3efdfa1c", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", - "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.363Z", + "id": "relationship--b5e786c7-be49-4551-af1c-639dba2d98c9", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", - "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.363Z", + "id": "relationship--3be410ae-06f7-48fe-834d-6ff2ff9a0fae", + "modified": "2021-01-13T01:52:45.363Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", - "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--1f526480-a787-496d-aae0-19e655e44aa7", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.402Z", - "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.402Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--6f2c9e25-211e-47f5-91aa-335a5b58ae97", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--372dcba7-d1c0-4596-9ed6-c1a86fa97740", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--b0621221-b5bf-4ad7-bd47-1ddda820959c", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--af26c829-2abf-4da2-a1e9-ba541abec075", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--61a2ac9b-d469-4ad5-bc44-8989bc3759e3", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--e34fc174-4055-4dbd-b206-080fbfa948f8", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--e4bc1f7d-af80-4660-81bf-2438a3d7c52a", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--a108f5db-e04f-4ec0-8c9b-56276eb7b668", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--58c8ddc4-e265-4e75-812d-23a9f1fb3b3d", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--9f00b58b-13d2-40f6-8570-dd34a9397af4", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--ca963566-ba0e-425f-9dfe-04a73e6ca7e0", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.364Z", + "id": "relationship--2ee8b70b-62d5-45f4-b6e2-01a33cbb7782", + "modified": "2021-01-13T01:52:45.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.403Z", - "id": "relationship--29300980-a708-4d55-8b65-779aee7f8b95", - "modified": "2021-01-06T18:30:56.403Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--cead2dd0-73e8-49b2-b0e8-098714e4570d", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", - "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--faf481c5-5baf-4f1f-ac5b-2ddb00b154a6", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", - "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--df48fe4b-36d3-4a81-8ccf-323d9e5de063", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", - "id": "relationship--4f08b45f-84e4-4dbc-b89f-219fa052f4c1", - "modified": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--6851aeff-b083-497f-b2c9-37b35270d8cf", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.404Z", - "id": "relationship--088ce763-0f0d-4598-b62a-8fa1ded10579", - "modified": "2021-01-06T18:30:56.404Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--873a28fc-89b5-4f7b-9232-05107179e6be", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.405Z", - "description": "Access Control", - "id": "relationship--5c775fce-6e6d-4b2d-bedf-121cfd37b328", - "modified": "2021-01-06T18:30:56.405Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--2bcf10ef-d780-406b-b21a-20fcd3b4f26e", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.405Z", - "description": "Access Control", - "id": "relationship--dd57600b-3d60-4242-8231-8c632716e447", - "modified": "2021-01-06T18:30:56.405Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--812028fe-5ae4-4d65-8be4-e2b7392ce40e", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.406Z", - "description": "Data backup", - "id": "relationship--3580dc9b-6e72-471c-8813-5d625e3c16d9", - "modified": "2021-01-06T18:30:56.406Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--b49cfdda-a947-4d17-84b9-a6b3a6c7d5af", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.407Z", - "description": "Data backup", - "id": "relationship--f29c4014-fa4d-421d-aacc-5376e101a530", - "modified": "2021-01-06T18:30:56.407Z", + "created": "2021-01-13T01:52:45.365Z", + "id": "relationship--2b2f72ea-bfd2-4d26-ab29-e3b994c63373", + "modified": "2021-01-13T01:52:45.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.407Z", - "description": "System Monitoring", - "id": "relationship--848dc925-bbeb-4b45-ad0a-1cebf717882a", - "modified": "2021-01-06T18:30:56.407Z", + "created": "2021-01-13T01:52:45.366Z", + "id": "relationship--d09a9829-3ec8-4cd3-874d-8007f62e4f3b", + "modified": "2021-01-13T01:52:45.366Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:56.408Z", + "created": "2021-01-13T01:52:45.366Z", + "id": "relationship--bef76ab1-465f-446b-9f42-78d4f3ae0dbc", + "modified": "2021-01-13T01:52:45.366Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--3c0c772b-dde2-4c12-ae42-3e2a10ee5e29", - "modified": "2021-01-06T18:30:56.408Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--f7823657-c3fe-45f9-b6bf-20c918ccd5ba", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--74fc468b-ac23-4535-b5f0-d5e1f518965a", - "modified": "2021-01-06T18:30:56.408Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--05db586a-1aa0-4c0a-bdb5-44be3b2ea765", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--3c47ae90-982f-4fe6-a231-fd43a7ee5fa0", - "modified": "2021-01-06T18:30:56.408Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--62a70342-8ba5-4798-98cb-1e9fe0316dd9", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.408Z", - "description": "System Monitoring", - "id": "relationship--be38e7d0-9683-4d48-82f1-9bdb178f8ce5", - "modified": "2021-01-06T18:30:56.408Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--b7b3a21f-0e81-449b-a39a-de5e4e9b85f1", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", - "id": "relationship--54d5f9ab-d3f0-4998-a268-fd1531362780", - "modified": "2021-01-06T18:30:56.410Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--3fdc475d-4a3c-439d-9195-7dad9d82c70b", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", - "id": "relationship--0a82276f-653c-4cbd-b261-8a3f6cb4ec3e", - "modified": "2021-01-06T18:30:56.410Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--7fedce4e-5030-488d-9e7d-8ac40a34f98a", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", - "id": "relationship--7104144d-e44b-44b1-9622-997a67a698c2", - "modified": "2021-01-06T18:30:56.410Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--be8cb30b-c7cd-4728-9549-15fe8b7b13ea", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", - "id": "relationship--4486956b-a534-4f02-b536-c50e5fcb8799", - "modified": "2021-01-06T18:30:56.410Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--6f57e407-a57e-4ebb-948e-2a089f147ae9", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.410Z", - "description": "Access Control", - "id": "relationship--967ee566-5c7a-4a4c-bf83-6bdcf4847e89", - "modified": "2021-01-06T18:30:56.410Z", + "created": "2021-01-13T01:52:45.367Z", + "id": "relationship--0f264e7b-e188-42c3-9ed9-11081e3269ff", + "modified": "2021-01-13T01:52:45.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.411Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--78fe9649-4a65-43d8-8974-7e609aa74963", - "modified": "2021-01-06T18:30:56.411Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--087c9259-99eb-4260-b007-600c3acb8302", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.411Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--caf1a193-8b12-4fa0-b55d-8525e5d04abb", - "modified": "2021-01-06T18:30:56.411Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--44c0061f-cf28-43c6-a89a-3cf801f23024", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.412Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--21646ac1-0ef3-459c-8855-de1f9088d1e3", - "modified": "2021-01-06T18:30:56.412Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--a680271d-6c69-41be-82d6-7ceed6ada01e", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.413Z", - "description": "Off-system Storage", - "id": "relationship--92433b50-a734-4b0e-bd07-668ee53efbe8", - "modified": "2021-01-06T18:30:56.413Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--d008227c-6b9f-4ad0-8250-63dbf8450dc4", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", - "id": "relationship--749fc3ce-f422-4c99-bbe6-9a0c3f5e2182", - "modified": "2021-01-06T18:30:56.414Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--83303163-97c2-4025-9062-e4719cb5d168", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", - "id": "relationship--7e3ef815-3838-4fe1-839d-8b64b9cb8b48", - "modified": "2021-01-06T18:30:56.414Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--598f54bf-7bee-424c-a3f1-2b87e00eaa4d", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.414Z", - "description": "System Monitoring", - "id": "relationship--d2c5f412-f5f2-4d54-a0b9-c12e64e646ce", - "modified": "2021-01-06T18:30:56.414Z", + "created": "2021-01-13T01:52:45.368Z", + "id": "relationship--7f6a1752-2d67-470b-be36-fa11e07c8617", + "modified": "2021-01-13T01:52:45.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.415Z", - "description": "Access Control", - "id": "relationship--217a999d-c7f9-4c77-b179-9c6808968a6a", - "modified": "2021-01-06T18:30:56.415Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--418314a0-0d57-4c7b-9bc1-875b43836bbb", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.415Z", - "description": "Access Control", - "id": "relationship--ba946ed9-3776-4c98-9f67-e65a55e7afc6", - "modified": "2021-01-06T18:30:56.415Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--dbedc551-2dc1-4d7d-a902-5b80db9a30f3", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.416Z", - "description": "Access Control", - "id": "relationship--b56eed4c-75fb-4da6-990a-2345b75d985c", - "modified": "2021-01-06T18:30:56.416Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--3c0334ff-505b-4738-83b1-91b7541f8a2d", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.416Z", - "description": "Access Control", - "id": "relationship--4a703c03-399d-4399-9241-2794ca4e5a85", - "modified": "2021-01-06T18:30:56.416Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--01f687f7-5314-4016-9148-831f92ce792d", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.417Z", - "description": "Off-system Storage", - "id": "relationship--070a00ab-faff-46d7-9480-32a5cd6e8e9d", - "modified": "2021-01-06T18:30:56.417Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--755f36d8-dfc7-4979-8560-0bba32d13759", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", - "id": "relationship--f783e732-6328-408b-9383-b7adcb9b89d7", - "modified": "2021-01-06T18:30:56.419Z", + "created": "2021-01-13T01:52:45.369Z", + "id": "relationship--a0ed3af8-0654-4a93-a415-e077b299da91", + "modified": "2021-01-13T01:52:45.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", - "id": "relationship--73591f90-4872-47c7-8990-f3cce3cc31ca", - "modified": "2021-01-06T18:30:56.419Z", + "created": "2021-01-13T01:52:45.370Z", + "id": "relationship--dbeb2038-1083-475d-8235-768056c04a4f", + "modified": "2021-01-13T01:52:45.370Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.419Z", - "description": "System Monitoring", - "id": "relationship--13be9ca3-0e64-427b-a9e4-a54016d9c76b", - "modified": "2021-01-06T18:30:56.419Z", + "created": "2021-01-13T01:52:45.372Z", + "id": "relationship--0609c960-0443-42bb-a611-f5ff1551f026", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", - "id": "relationship--093fdc19-0556-47d0-9572-8ed2896bde75", - "modified": "2021-01-06T18:30:56.420Z", + "created": "2021-01-13T01:52:45.372Z", + "id": "relationship--046698b6-ecd8-47a9-9f2a-1d3919ab34d5", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", - "id": "relationship--453d29d8-0c4a-4a19-a3f2-658ec7fb52c8", - "modified": "2021-01-06T18:30:56.420Z", + "created": "2021-01-13T01:52:45.372Z", + "id": "relationship--d605907b-de29-4e1f-a854-73decf8d23aa", + "modified": "2021-01-13T01:52:45.372Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.420Z", - "description": "Access Control", - "id": "relationship--713d7e08-655d-4ce5-a54b-7fac69816924", - "modified": "2021-01-06T18:30:56.420Z", + "created": "2021-01-13T01:52:45.373Z", + "id": "relationship--e4648ee0-facc-46da-b595-6b2985016908", + "modified": "2021-01-13T01:52:45.373Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--4519e230-6236-4af3-b20c-09e0192190f9", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.373Z", + "id": "relationship--9fdc6e9d-772f-4256-9027-a0a7976e5cba", + "modified": "2021-01-13T01:52:45.373Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--29a56d4b-6f62-418c-8e19-fbe27c1ead91", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.374Z", + "id": "relationship--7159e180-05df-4bda-b66b-6553130eebd9", + "modified": "2021-01-13T01:52:45.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--cabf66b4-02df-4061-acef-041cffb37a76", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.374Z", + "id": "relationship--ad2e5b48-0269-4ced-ac22-4a49db61a977", + "modified": "2021-01-13T01:52:45.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--89dfcd90-2678-4815-b0fe-96cd3a8a928f", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--7ed822a6-9ba2-4bf7-b122-5a33e304a3c3", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--10c4e330-4f26-4794-b9ad-7543135e4100", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--36c180aa-e929-41af-9990-e5f8ff92069f", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--6c1d4ffc-ff47-4fc8-967a-fcffcdf8beaf", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--40aba28e-cab9-4570-8907-de0c751afca4", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.421Z", - "description": "Access Control", - "id": "relationship--cdbb7e2e-4e1a-493b-8ea5-db537ef638ca", - "modified": "2021-01-06T18:30:56.421Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--bfa1cd26-5c12-4b7e-a232-8bf686654cc9", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.422Z", - "description": "Access Control", - "id": "relationship--95a623b1-cbd4-4e35-adbc-a8d405bb264f", - "modified": "2021-01-06T18:30:56.422Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--6f8ed074-6afe-46e5-b4ed-0976857edc31", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.422Z", - "description": "Access Control", - "id": "relationship--cf0ab28a-6c4b-4fc0-8897-586a0b399930", - "modified": "2021-01-06T18:30:56.422Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--7d990798-d5d7-4cb1-9e63-7dd3c5c5b63c", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", - "id": "relationship--baee1989-d350-4f12-b90a-5a3def450647", - "modified": "2021-01-06T18:30:56.423Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--357f3eaa-7bf8-4ad7-975b-e7885b0f7f81", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", - "id": "relationship--a59c11a4-91b4-49ef-b03b-79b8f06cc7dc", - "modified": "2021-01-06T18:30:56.423Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--c6416ed4-1d80-4614-9db0-7a23b4076147", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.423Z", - "description": "Off-system Storage", - "id": "relationship--912e6c7d-7690-4f58-a1a7-b1747f0cbee8", - "modified": "2021-01-06T18:30:56.423Z", + "created": "2021-01-13T01:52:45.375Z", + "id": "relationship--fc9ab7dd-cb25-466c-b866-efa521fc39ed", + "modified": "2021-01-13T01:52:45.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--09cee9f4-7e95-43bf-901f-6ce75126a0af", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.376Z", + "id": "relationship--94f39230-83e9-4c09-a989-acd1a30f9757", + "modified": "2021-01-13T01:52:45.376Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--809807da-e8a6-4fa0-9d2c-87b55634cd31", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.377Z", + "id": "relationship--8f8c749c-63ff-4eaf-acd5-3a65261916f2", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--7db1ffb2-fe29-4cca-921a-b6254b4c8227", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.377Z", + "id": "relationship--5866d81f-5ec8-47d8-82c9-17b8f9fee6a5", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--babc2467-4763-4a1c-8047-23377550d2cc", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.377Z", + "id": "relationship--c734e120-01d8-4ca2-a076-dd93f16faa36", + "modified": "2021-01-13T01:52:45.377Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--ea0bf4b5-a220-4c81-8e14-0b1d3d9258b9", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.378Z", + "id": "relationship--7d9113c6-4604-44d8-a4cb-dafbabda429a", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.424Z", - "description": "System Monitoring", - "id": "relationship--886b546c-1916-43cc-8e52-6568c2587ef5", - "modified": "2021-01-06T18:30:56.424Z", + "created": "2021-01-13T01:52:45.378Z", + "id": "relationship--613d0e0b-c1c6-4d96-8188-07c11e83310d", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", - "id": "relationship--8e9bdcff-4a4f-40ed-bbbd-17eb9c5a96a0", - "modified": "2021-01-06T18:30:56.425Z", + "created": "2021-01-13T01:52:45.378Z", + "id": "relationship--8acff36d-4217-4807-8c5f-a6c99421e76d", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", - "id": "relationship--1f970d68-a6ac-4ec4-9c25-911fa7db6be6", - "modified": "2021-01-06T18:30:56.425Z", + "created": "2021-01-13T01:52:45.378Z", + "id": "relationship--b2c0287c-2e4a-4394-8834-05f4e3fadf84", + "modified": "2021-01-13T01:52:45.378Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.425Z", - "description": "System Monitoring", - "id": "relationship--9156ed06-d04a-4d28-ab2c-21b73df2d6a6", - "modified": "2021-01-06T18:30:56.425Z", + "created": "2021-01-13T01:52:45.379Z", + "id": "relationship--4ff7c944-53b1-47ad-9dfe-9cd57bd51a5c", + "modified": "2021-01-13T01:52:45.379Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", - "id": "relationship--569f4c94-3e3a-4926-961f-ab15d5ccc208", - "modified": "2021-01-06T18:30:56.426Z", + "created": "2021-01-13T01:52:45.379Z", + "id": "relationship--0cbf3e05-427d-4c67-a3c4-39bb2534668c", + "modified": "2021-01-13T01:52:45.379Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", - "id": "relationship--24d71586-2bf4-4f59-b8aa-48d796b357ce", - "modified": "2021-01-06T18:30:56.426Z", + "created": "2021-01-13T01:52:45.380Z", + "id": "relationship--a53940b0-6b26-451e-bc54-4c4de7c4b69a", + "modified": "2021-01-13T01:52:45.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", - "id": "relationship--a8de1bc7-9f2f-4dc7-8514-5337092b90ab", - "modified": "2021-01-06T18:30:56.426Z", + "created": "2021-01-13T01:52:45.381Z", + "id": "relationship--db659b6c-102f-4124-8cb5-44117ff30e38", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.426Z", - "description": "Access Control", - "id": "relationship--0626028c-7969-4f79-aab9-b353aa2d023d", - "modified": "2021-01-06T18:30:56.426Z", + "created": "2021-01-13T01:52:45.381Z", + "id": "relationship--171eb4c9-9ebb-4c7b-ad38-8eb2aafea64f", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--a34c7caa-e683-4032-849d-bf458997e842", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.381Z", + "id": "relationship--d15c21b9-e27e-4c96-b6cc-131dcc98552c", + "modified": "2021-01-13T01:52:45.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--5a2e4c5f-ff70-4370-a6c4-d18dffa43101", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.382Z", + "id": "relationship--aa5988e6-3209-4c09-b4f1-2b8e7a361a8b", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--06cc3392-6ea8-447f-b7a3-af1801148bce", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.382Z", + "id": "relationship--d73ec201-a9a4-4ec7-959b-5b0c7b93d4b6", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--61b74ed9-b1eb-472f-ad1b-f8105191d245", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.382Z", + "id": "relationship--571376a4-7638-42b7-b7fa-f61cc497b364", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--e051e1d2-4742-421d-bc61-2d7c5c97ee79", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.382Z", + "id": "relationship--89d14bbe-b8e5-4b1a-9397-a9a8cf6b2990", + "modified": "2021-01-13T01:52:45.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--e3f38c82-29f4-4944-bda5-e8eafaa30de4", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.383Z", + "id": "relationship--136f82cd-e69d-4de0-856b-2325e3bb1ac6", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--e4299005-1f3b-4b00-806b-11289f6126e1", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.383Z", + "id": "relationship--e1efa447-fdaa-4a43-aaf2-e647492b5106", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.427Z", - "description": "Access Control", - "id": "relationship--3f180961-0274-498b-94a4-7fbcad5e09d1", - "modified": "2021-01-06T18:30:56.427Z", + "created": "2021-01-13T01:52:45.383Z", + "id": "relationship--16194e6d-881c-444d-a960-787125bc2387", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--568897ee-b2ce-4ebc-8b68-ddbe8a031ecc", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.383Z", + "id": "relationship--408d76f1-6807-4906-8626-2b36e2b0fa9a", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--6687102d-7540-45f6-8fc8-8a785d439b7a", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.383Z", + "id": "relationship--5b36caf7-7fce-4885-be2f-93457922293a", + "modified": "2021-01-13T01:52:45.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--c47697fa-0a25-455b-b59e-6de7dd773b15", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--6926741a-5818-4f32-ab08-8c3317859e24", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.384Z", + "id": "relationship--21c961be-138c-41d2-86fa-d4adaaa571c2", + "modified": "2021-01-13T01:52:45.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--2d10bbde-4d8a-4892-b9ca-6b80b8be1936", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.384Z", + "id": "relationship--394c088a-821f-46c4-a0c3-12eb3ce6382e", + "modified": "2021-01-13T01:52:45.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--2ca75c45-6725-4564-9710-04ab699e2192", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.385Z", + "id": "relationship--ad524fb4-080d-4f94-90c6-39c6d79b181f", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--68b16108-a33b-4607-8b22-b48c60526031", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.385Z", + "id": "relationship--e8ac1833-ada4-43a8-8c84-d28bdf9d355a", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--0f4cd677-9594-4cce-a6e5-23c791fd986f", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.385Z", + "id": "relationship--9d4ae80d-a0a2-45be-9f6f-0cdb0d6e3c69", + "modified": "2021-01-13T01:52:45.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.428Z", - "description": "Access Control", - "id": "relationship--0c557e10-209f-47b4-9416-05e65376fff3", - "modified": "2021-01-06T18:30:56.428Z", + "created": "2021-01-13T01:52:45.386Z", + "id": "relationship--6dc858b0-2035-47c5-ba8d-2266e3ac227a", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", - "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.429Z", + "created": "2021-01-13T01:52:45.386Z", + "id": "relationship--d1f7a765-d2c5-4393-b27d-d781e1d7fdf0", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", - "id": "relationship--14fd1c29-8975-4930-934c-c3c78d953c59", - "modified": "2021-01-06T18:30:56.429Z", + "created": "2021-01-13T01:52:45.386Z", + "id": "relationship--5a999ec9-282d-41be-9de5-ec80ffde7d26", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.429Z", - "description": "System Monitoring", - "id": "relationship--6db50ff3-65ac-43d0-8024-8ff145f81247", - "modified": "2021-01-06T18:30:56.429Z", + "created": "2021-01-13T01:52:45.386Z", + "id": "relationship--77bf60af-cd0c-4534-9e2e-77d607e6684c", + "modified": "2021-01-13T01:52:45.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--bd29622d-4705-44f6-b44b-3cfa4f8eec81", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.387Z", + "id": "relationship--ce2c018c-0daf-4f72-b6f4-882dd14a449d", + "modified": "2021-01-13T01:52:45.387Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--f33e17d9-521e-42e8-b0f6-5b41e02ff9e1", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.387Z", + "id": "relationship--410685a2-9de1-4f82-aac9-f6d5bb82c4e5", + "modified": "2021-01-13T01:52:45.387Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--f336af14-8c36-4b61-8dfb-78c0850311f2", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.388Z", + "id": "relationship--ac658d22-4128-4337-8560-39cbcb67fa06", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--265e2ea4-ac48-48f9-a36c-d4c4c3c8ef24", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.388Z", + "id": "relationship--afa55fc8-8555-445c-bc63-f5239c32f469", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--b25fd2a8-c903-4a86-bb42-47cec6f8ee8e", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.388Z", + "id": "relationship--d46d125f-5d88-403e-b34c-9e9b16021676", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--56dd699d-833b-4973-9a5f-865194025550", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.388Z", + "id": "relationship--7dc50a99-3d6f-42ea-aa91-d2f694a83f80", + "modified": "2021-01-13T01:52:45.388Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--c8ba4fcb-a494-4a46-ae27-62dda1c05e13", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.389Z", + "id": "relationship--c984cfd4-9476-4549-acd3-247f9239b0af", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.430Z", - "description": "System Monitoring", - "id": "relationship--1cc6a318-f470-4b32-a82e-754e02b22689", - "modified": "2021-01-06T18:30:56.430Z", + "created": "2021-01-13T01:52:45.389Z", + "id": "relationship--b96087d6-3142-4b47-9598-8683aa8f1c26", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.431Z", - "description": "System Monitoring", - "id": "relationship--f7fb0ee7-600e-4c0d-af6c-eb3be4bd9cd8", - "modified": "2021-01-06T18:30:56.431Z", + "created": "2021-01-13T01:52:45.389Z", + "id": "relationship--04ab7c1a-78d5-42e5-a47f-da30b3b72072", + "modified": "2021-01-13T01:52:45.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", - "id": "relationship--3260f1bb-7ffa-4064-9b94-445f3bc1ddf5", - "modified": "2021-01-06T18:30:56.432Z", + "created": "2021-01-13T01:52:45.390Z", + "id": "relationship--54d49f4e-3ebb-44df-95e2-bd4899a74ba0", + "modified": "2021-01-13T01:52:45.390Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", - "id": "relationship--6530bb53-1a39-44c1-b470-6b6ce8ce7958", - "modified": "2021-01-06T18:30:56.432Z", + "created": "2021-01-13T01:52:45.390Z", + "id": "relationship--b843ab7a-f56b-4d5f-95cd-a9962b28a4f0", + "modified": "2021-01-13T01:52:45.390Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", - "id": "relationship--cc7cbe59-6b2a-4e69-843f-cc3797738960", - "modified": "2021-01-06T18:30:56.432Z", + "created": "2021-01-13T01:52:45.391Z", + "id": "relationship--91b8d329-b76a-4bfb-aeb7-b9ccbb8a5e10", + "modified": "2021-01-13T01:52:45.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", - "id": "relationship--a76f5f82-0f67-40e1-99b1-67e9ef44364a", - "modified": "2021-01-06T18:30:56.432Z", + "created": "2021-01-13T01:52:45.392Z", + "id": "relationship--ae31276f-e704-4a0c-a67b-a9f51c980bee", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.432Z", - "description": "Access Control", - "id": "relationship--40f48352-2c66-42b5-8558-a8794717ba6c", - "modified": "2021-01-06T18:30:56.432Z", + "created": "2021-01-13T01:52:45.392Z", + "id": "relationship--a3eea86c-8ef1-4a37-8237-9dff5eb1eaa1", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.434Z", - "description": "Off-system Storage", - "id": "relationship--752f7f72-5e28-4f23-b114-3f63c5bdc196", - "modified": "2021-01-06T18:30:56.434Z", + "created": "2021-01-13T01:52:45.392Z", + "id": "relationship--be56abaa-6624-48e8-bbeb-f83e1606fb59", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", - "id": "relationship--716fbfd2-ea9b-4b3a-8132-8869cfd304f1", - "modified": "2021-01-06T18:30:56.435Z", + "created": "2021-01-13T01:52:45.392Z", + "id": "relationship--e906b8e2-fbf9-4aa0-89cb-9575d7d3a17a", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", - "id": "relationship--d0fb566b-27f7-4d38-a882-e833521e8930", - "modified": "2021-01-06T18:30:56.435Z", + "created": "2021-01-13T01:52:45.392Z", + "id": "relationship--048a3ec5-01a4-4ed9-8f57-d67ebdeee086", + "modified": "2021-01-13T01:52:45.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.435Z", - "description": "System Monitoring", - "id": "relationship--108e49cd-d4a3-409c-b318-4afd080d1399", - "modified": "2021-01-06T18:30:56.435Z", + "created": "2021-01-13T01:52:45.393Z", + "id": "relationship--ebabacd6-38a1-472d-b82d-54df55c88ec4", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f6916a4e-c7b9-4ce7-8acf-42c5372cc48f", - "modified": "2021-01-06T18:30:56.436Z", + "created": "2021-01-13T01:52:45.393Z", + "id": "relationship--0587de72-2c3f-4dc2-ba17-3da8dd8f8092", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--19745ae9-28e7-499c-ad46-82b70827271b", - "modified": "2021-01-06T18:30:56.436Z", + "created": "2021-01-13T01:52:45.393Z", + "id": "relationship--251b4b89-80f2-4573-9af6-3dd0d7a6e622", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.436Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2570874d-57bc-472c-abde-a2524ed3f44d", - "modified": "2021-01-06T18:30:56.436Z", + "created": "2021-01-13T01:52:45.393Z", + "id": "relationship--e4e0eef8-25f9-4876-8a15-2adf778a2c10", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.437Z", - "description": "Access Control", - "id": "relationship--6cd6ddee-3c29-48e4-83de-68c66f8067b7", - "modified": "2021-01-06T18:30:56.437Z", + "created": "2021-01-13T01:52:45.393Z", + "id": "relationship--93f1238d-18c0-47c9-b6c3-1cd91f8001fa", + "modified": "2021-01-13T01:52:45.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", + "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.437Z", - "description": "Access Control", - "id": "relationship--9c3f58c9-6bd5-44ba-80c1-0521baea5db1", - "modified": "2021-01-06T18:30:56.437Z", + "created": "2021-01-13T01:52:45.394Z", + "id": "relationship--b4c4b47c-8063-4951-a4d5-cc97db938e62", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", - "id": "relationship--35d41a48-ec1a-4291-9d7a-d8198ae5a53a", - "modified": "2021-01-06T18:30:56.438Z", + "created": "2021-01-13T01:52:45.394Z", + "id": "relationship--ab8e3f61-ffcd-4660-a209-843fcf441e09", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", - "id": "relationship--4094a6ec-39c5-4846-939c-389ef950964c", - "modified": "2021-01-06T18:30:56.438Z", + "created": "2021-01-13T01:52:45.394Z", + "id": "relationship--2b217435-4d0d-49c8-bb47-5906ad9bbe26", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.438Z", - "description": "Access Control", - "id": "relationship--51f4a346-4521-4468-9008-3242ea660022", - "modified": "2021-01-06T18:30:56.438Z", + "created": "2021-01-13T01:52:45.394Z", + "id": "relationship--77db8899-9202-4060-8665-040bea1ef927", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.439Z", - "description": "Off-system Storage", - "id": "relationship--c56a2968-8b13-4e26-b64e-348046f7df5e", - "modified": "2021-01-06T18:30:56.439Z", + "created": "2021-01-13T01:52:45.394Z", + "id": "relationship--12aa590b-bd7b-4b33-8aec-3c17ca450755", + "modified": "2021-01-13T01:52:45.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.440Z", + "created": "2021-01-13T01:52:45.395Z", + "id": "relationship--a70254d9-f382-4db2-9797-3eb887f24426", + "modified": "2021-01-13T01:52:45.395Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", - "id": "relationship--aaac06a7-2560-46ec-9205-898195167985", - "modified": "2021-01-06T18:30:56.440Z", + "created": "2021-01-13T01:52:45.395Z", + "id": "relationship--0be23497-b6b6-4734-a60b-626b8f886062", + "modified": "2021-01-13T01:52:45.395Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.440Z", - "description": "System Monitoring", - "id": "relationship--0f0ce8c6-c73d-48aa-b489-af4dc805081f", - "modified": "2021-01-06T18:30:56.440Z", + "created": "2021-01-13T01:52:45.400Z", + "id": "relationship--39947ae9-f989-4770-8776-cc8baa246124", + "modified": "2021-01-13T01:52:45.400Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2b28154c-24c3-402b-87bd-2be2c8f49bd7", - "modified": "2021-01-06T18:30:56.441Z", + "created": "2021-01-13T01:52:45.401Z", + "id": "relationship--0f0c22c1-c6a1-4266-9466-d243d7414653", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.441Z", + "created": "2021-01-13T01:52:45.401Z", + "id": "relationship--30addf35-1299-46a2-8419-934db6a5a569", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.441Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--bddafb3e-28a1-406b-b9b1-054256f8b687", - "modified": "2021-01-06T18:30:56.441Z", + "created": "2021-01-13T01:52:45.401Z", + "id": "relationship--c26b4cb1-1d93-44d4-88a7-0754d91c8549", + "modified": "2021-01-13T01:52:45.401Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.442Z", - "description": "Access Control", - "id": "relationship--9bbfdd90-7cfb-4b72-a8ee-f5be35269d3a", - "modified": "2021-01-06T18:30:56.442Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--74571d93-7ea3-4efc-ba72-77d49f560454", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", - "id": "relationship--138938a0-a416-4af5-b04a-5086fc26e354", - "modified": "2021-01-06T18:30:56.443Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--3885dd1c-c612-4c19-a39c-005ca3f98a69", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", - "id": "relationship--29104165-7b6f-4cff-9a9d-c067d7863586", - "modified": "2021-01-06T18:30:56.443Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--97a507af-4d50-4e91-932d-0057bc86f6d2", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.443Z", - "description": "Access Control", - "id": "relationship--464f7e4a-a9b9-4188-bc5a-2c17b3ebbb7f", - "modified": "2021-01-06T18:30:56.443Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--ae490078-010a-4a75-b3e4-112492a975e6", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", - "id": "relationship--4d994123-ea72-4500-bd5e-b09f8f7bb0ac", - "modified": "2021-01-06T18:30:56.444Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--9f4355ff-decd-4e1f-9674-c64e6b19b17c", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", - "id": "relationship--45e70888-e8be-44ab-9d75-6ba5cf5da365", - "modified": "2021-01-06T18:30:56.444Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--22c33db5-c95b-44fc-b065-da7d866d2221", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.444Z", - "description": "System Monitoring", - "id": "relationship--9fb5ab10-65b2-46ff-9ae3-ee794c645630", - "modified": "2021-01-06T18:30:56.444Z", + "created": "2021-01-13T01:52:45.402Z", + "id": "relationship--42d7257f-1944-40a0-bcae-2b9cad9577c6", + "modified": "2021-01-13T01:52:45.402Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--5a68ebe2-2ddc-42ae-a5c3-ec160976ed9a", - "modified": "2021-01-06T18:30:56.445Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--35e10857-70ab-4ac2-9d2c-895c0aea1bfc", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:56.445Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--ed8738e8-c7c5-4ff9-8feb-45abcc63c8dd", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--4df225f6-da31-4541-b375-9af7151ccf4a", - "modified": "2021-01-06T18:30:56.445Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--6dbe62f0-9e09-4e19-a29c-20601bfe941e", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--85d63979-4385-47cf-93f2-270190c40942", - "modified": "2021-01-06T18:30:56.445Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--27e7e8f2-272d-4538-9261-d1e3ab0938ed", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.445Z", - "description": "Access Control", - "id": "relationship--365ecb2f-b3bd-44c9-9832-4107388936c8", - "modified": "2021-01-06T18:30:56.445Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--17350850-05e2-4d79-bc36-a16e6c5ba097", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--bded4057-1785-48ee-b247-29ec8a398b4e", - "modified": "2021-01-06T18:30:56.446Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--5acbbcfa-0457-4f6f-9d33-ed12d3c84593", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--2a9f714f-adbf-4a35-a1c7-d135633626af", - "modified": "2021-01-06T18:30:56.446Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--1040f35e-298e-49fc-85c9-69073bae9772", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--ffe1aea1-5cc4-442a-b2ac-9688a788b2a1", - "modified": "2021-01-06T18:30:56.446Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--5936661b-382a-4ac5-9128-e132700819fa", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--b16a3731-ace3-428d-a601-8d93b4813d78", - "modified": "2021-01-06T18:30:56.446Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--b8ab594f-8976-40b1-9b59-e739a7f15fce", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.446Z", - "description": "Access Control", - "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:56.446Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--dca76800-9dbf-477d-8f38-6937e984c633", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.447Z", - "description": "Off-system Storage", - "id": "relationship--2f8440ce-f4da-41ba-a5d6-37992543a99c", - "modified": "2021-01-06T18:30:56.447Z", + "created": "2021-01-13T01:52:45.403Z", + "id": "relationship--1afcadc3-6f8d-4f0c-b1f5-f9fd30046ae4", + "modified": "2021-01-13T01:52:45.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.447Z", - "description": "Off-system Storage", - "id": "relationship--d9008ebe-1d09-4084-9e79-7516bd129de9", - "modified": "2021-01-06T18:30:56.447Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--b03357ba-192f-4f70-9b8a-e28ee4e7db2c", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.448Z", - "description": "System Monitoring", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:56.448Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--accb4b8b-6ec4-4aab-867f-6a6ab27a847c", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.448Z", - "description": "System Monitoring", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.448Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--f9ef903e-d5d4-435e-a11a-d9b341fe64a6", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", - "id": "relationship--ba525261-bcf1-40fd-9c04-b410d660a841", - "modified": "2021-01-06T18:30:56.449Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--85088f7f-dd54-4814-9e04-02aca3b62613", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", - "id": "relationship--dd73362f-ad3f-4d65-9b5f-f0641425182b", - "modified": "2021-01-06T18:30:56.449Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--10a8699a-3fec-45df-8950-3f73b846cb75", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", - "id": "relationship--25c1ad95-cded-4226-aa0c-c01958e7f3f7", - "modified": "2021-01-06T18:30:56.449Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--20be4f93-b285-4081-9d55-d0c0303d7a75", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.449Z", - "description": "System Monitoring", - "id": "relationship--2523a7fe-3231-4bf7-9a43-1ad9bc79deaa", - "modified": "2021-01-06T18:30:56.449Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--9e52c247-c8a7-46f0-bcfd-ed0c7705d7fb", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", - "id": "relationship--f3ca5cc9-4fe5-4178-b5a7-aa3c8842d878", - "modified": "2021-01-06T18:30:56.450Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--d9ae35ce-2f97-4496-8076-d3c0949f2862", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", - "id": "relationship--a2bf768d-e2b3-435d-9cc5-5d5b4dcde3dc", - "modified": "2021-01-06T18:30:56.450Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--037e46ef-32c3-4960-a883-6e79eb8c4775", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.450Z", - "description": "Access Control", - "id": "relationship--5e647685-572f-4a33-a01b-3da4eac86e0b", - "modified": "2021-01-06T18:30:56.450Z", + "created": "2021-01-13T01:52:45.404Z", + "id": "relationship--b5505c6e-ade4-4a8d-add2-825d4bfb3712", + "modified": "2021-01-13T01:52:45.404Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--750a85b2-fa9e-45e6-b473-2b1633a06640", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--e1f3bc5b-c075-4917-97c6-05c8291df267", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--d2c87eb7-a5b6-4f95-bf7f-bd1c85bf6f17", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--c708134a-78e2-420d-9b97-53c9e5074b1a", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--bf9a4e49-325c-48fd-8023-cbf82b4a4621", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--76ac8b37-fa19-45ea-b585-1d8d892ac276", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--b3c51977-f969-47d8-957a-26584146293e", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--00fda3aa-986c-465e-9f31-5285bbb68aa2", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--c1732566-eb73-4068-a16f-1b91136fcce0", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--2b9fa82b-ea39-4328-832e-4643506b8a0a", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--7fbb9020-2192-4125-8d9b-d47164b30239", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--5e346e60-2e42-49b3-ad42-347f02b8c6f0", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.451Z", - "description": "Access Control", - "id": "relationship--923dd04a-7258-4468-9eb9-5db7e1c9c484", - "modified": "2021-01-06T18:30:56.451Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--caf8ae44-6e6b-495c-98ee-907654480167", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--0bb668bc-4927-41d9-bf9c-2050088cf804", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--f272cf9f-14a2-4c5c-8964-6056b4ed8be0", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.405Z", + "id": "relationship--2c21b0f6-c4bd-4453-abfc-1d570496aa81", + "modified": "2021-01-13T01:52:45.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--b1b5014f-79aa-4ae5-af04-448870bdabef", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5208563a-7fa3-422e-8232-d6b49c765960", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--a260d9a1-018d-4906-9a80-6d594049a6e3", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.453Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--543d7d3b-9602-4dbb-9ecf-694db81cbd9e", - "modified": "2021-01-06T18:30:56.453Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--2c13497d-76a1-4a9b-bebe-bb4618ca88af", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.454Z", - "description": "Off-system Storage", - "id": "relationship--a3a55799-4432-44ff-9053-cd8df74cf678", - "modified": "2021-01-06T18:30:56.454Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--e0e8f1e7-f8d9-4f88-bec9-8cdd2a420233", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.455Z", - "description": "Off-system Storage", - "id": "relationship--ad0e963d-a61e-4790-9d67-e36eca5f50d5", - "modified": "2021-01-06T18:30:56.455Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--1a179a81-b211-4b8d-8197-51f175d1a1fc", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.455Z", - "description": "System Monitoring", - "id": "relationship--67b61ffb-85cd-4681-881e-44001f0d27af", - "modified": "2021-01-06T18:30:56.455Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--d963d62b-27a4-48e2-a45b-a2cb7f0a78df", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--a01728b8-f81b-466f-86bf-a4c9ba29d223", - "modified": "2021-01-06T18:30:56.456Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--8642bfb0-cda1-4576-ad4f-3028a6e60101", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--590bd43a-3db2-4b26-be2f-a25f7d34870f", - "modified": "2021-01-06T18:30:56.456Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--2047a61a-0ecf-4bc8-a9e6-0dafc35cadf3", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--35d6295f-5a8e-4590-9346-54edaa61a5c3", - "modified": "2021-01-06T18:30:56.456Z", + "created": "2021-01-13T01:52:45.406Z", + "id": "relationship--c1e104f3-b67e-4f11-abd6-9a3f7802123d", + "modified": "2021-01-13T01:52:45.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--dc159790-3b04-4293-b5cf-f3a76e44a25f", - "modified": "2021-01-06T18:30:56.456Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--26b8a551-76ee-43f8-be73-613d019de596", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.456Z", - "description": "System Monitoring", - "id": "relationship--adf1fa73-c554-4a26-a63b-81ac05375d7b", - "modified": "2021-01-06T18:30:56.456Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--0f304710-4e59-4ce1-85ce-b52abc3ff0ef", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", - "id": "relationship--19b1f7c3-adef-4af4-a5d4-d19eb78e3fbd", - "modified": "2021-01-06T18:30:56.457Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--2e31153e-36a8-497b-8206-be82cf95438f", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", - "id": "relationship--bcf75064-479a-41aa-a781-671dc4b4adfe", - "modified": "2021-01-06T18:30:56.457Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--f86aedcf-2118-4f9a-8677-0c4cd8704250", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", - "id": "relationship--0052f531-9485-47d1-bddf-3efe40e1bf43", - "modified": "2021-01-06T18:30:56.457Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--cca5a298-4290-417d-b551-df940b0a7006", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.457Z", - "description": "Access Control", - "id": "relationship--0bb347b3-c9e1-451d-8377-964053239c46", - "modified": "2021-01-06T18:30:56.457Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--113d97b2-6721-4f6c-b58e-9998d113c824", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--348045f1-8b9e-40e2-8701-97548d758065", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--5a5cf3e0-f7a4-4818-a646-b58e52f15443", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--da57f819-9921-419c-a3c6-ea57f38e16d7", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--bbae2f68-45d6-4dc6-a16b-e4aae9b36895", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--253fee3b-d6cd-40e5-b0b1-8bf64f5b2c54", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.407Z", + "id": "relationship--9d8acc74-bee5-4f3e-8702-e176a629a7b4", + "modified": "2021-01-13T01:52:45.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--230babce-d95d-468f-be23-3bacefe6235f", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--2aaeb178-060b-4dff-b75c-073793835862", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--dba98cef-3b0c-4ccd-9947-62748f71b79c", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--71fabdda-ce27-4bd1-891c-d878485d3d32", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--d041668f-1104-4e71-b514-ab473b4e7719", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--87507d90-d5a5-44eb-84e0-474022c12f06", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--16229662-020c-476f-926f-efcbb4ba24e1", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--9ec75ba6-2877-46fb-a19e-6ebe33f933a6", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.458Z", - "description": "Access Control", - "id": "relationship--fc283048-4a96-42e4-8af1-de3542186416", - "modified": "2021-01-06T18:30:56.458Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--e9538e86-4bcd-443b-859b-3098c152b368", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", - "id": "relationship--59f63cfc-00b5-42ed-860f-1d6182693bf9", - "modified": "2021-01-06T18:30:56.459Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--85348f7a-6ff8-4584-bde3-07e36a672ee9", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", - "id": "relationship--fdfb746b-37f4-4ded-9148-60df33066979", - "modified": "2021-01-06T18:30:56.459Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--99442ea0-18e0-49b8-b3b1-0155d4046175", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", - "id": "relationship--a0d23741-2d58-4b75-b464-3ca116df28a8", - "modified": "2021-01-06T18:30:56.459Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--0f4e9811-fe11-45e1-a3fe-f898689d20c1", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.459Z", - "description": "Access Control", - "id": "relationship--c6b97d22-acf9-44c8-816c-03d09ebefa62", - "modified": "2021-01-06T18:30:56.459Z", + "created": "2021-01-13T01:52:45.408Z", + "id": "relationship--b715dd1b-8897-4050-bd9e-dacdd54fb623", + "modified": "2021-01-13T01:52:45.408Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", - "id": "relationship--74e0ad2f-8e37-4a13-9985-17bbf71f1edb", - "modified": "2021-01-06T18:30:56.461Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--8d4b93a2-1eb1-4811-8a23-c05d745d9b30", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", - "id": "relationship--6eb85146-92bc-4500-9a2f-543745809b14", - "modified": "2021-01-06T18:30:56.461Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--ee8717b5-c71c-477b-b0f7-e7e37046dff7", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.461Z", - "description": "Off-system Storage", - "id": "relationship--f7be8368-a511-40cf-8c38-6a864d73bf09", - "modified": "2021-01-06T18:30:56.461Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.462Z", - "description": "Off-system Storage", - "id": "relationship--b4ece322-92ba-41f0-bbdd-a18921a57328", - "modified": "2021-01-06T18:30:56.462Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--81d97f1f-556b-438c-b580-371db457ce8a", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.410Z", + "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", + "modified": "2021-01-13T01:52:45.410Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--a9a4bc11-aaf2-4b9a-bd7d-868a37fc652b", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.411Z", + "id": "relationship--b0621221-b5bf-4ad7-bd47-1ddda820959c", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--2613da88-0ef7-4661-aebc-5dec9d776061", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.411Z", + "id": "relationship--61a2ac9b-d469-4ad5-bc44-8989bc3759e3", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--b60dd8bc-7967-48e9-a8e6-c9af54068389", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.411Z", + "id": "relationship--e4bc1f7d-af80-4660-81bf-2438a3d7c52a", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.463Z", - "description": "System Monitoring", - "id": "relationship--f9a7234c-0492-4b8f-ab58-899df120ab08", - "modified": "2021-01-06T18:30:56.463Z", + "created": "2021-01-13T01:52:45.411Z", + "id": "relationship--58c8ddc4-e265-4e75-812d-23a9f1fb3b3d", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--4b1c19a8-cb0c-426f-86ae-9a50a36689dd", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.411Z", + "id": "relationship--ca963566-ba0e-425f-9dfe-04a73e6ca7e0", + "modified": "2021-01-13T01:52:45.411Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--3c0e40c0-223b-4323-a49f-d8e35bb15638", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.412Z", + "id": "relationship--29300980-a708-4d55-8b65-779aee7f8b95", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--2b4513dc-7f28-41e9-a09d-536e107909a4", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.412Z", + "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--c856f016-9bfa-4b0e-a6d3-5a709c07ad33", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.412Z", + "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--d72a1918-7e4a-4525-9c51-4e45824c6ae2", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.412Z", + "id": "relationship--4f08b45f-84e4-4dbc-b89f-219fa052f4c1", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.464Z", - "description": "System Monitoring", - "id": "relationship--4edab164-70bb-48d3-951c-becfa7bfb6fa", - "modified": "2021-01-06T18:30:56.464Z", + "created": "2021-01-13T01:52:45.412Z", + "id": "relationship--088ce763-0f0d-4598-b62a-8fa1ded10579", + "modified": "2021-01-13T01:52:45.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.466Z", - "description": "Access Control", - "id": "relationship--39489750-7b89-4ea1-89c3-a80c5f233e15", - "modified": "2021-01-06T18:30:56.466Z", + "created": "2021-01-13T01:52:45.413Z", + "id": "relationship--5c775fce-6e6d-4b2d-bedf-121cfd37b328", + "modified": "2021-01-13T01:52:45.413Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", - "id": "relationship--771dceb3-3310-49e7-902f-31d19534cdd9", - "modified": "2021-01-06T18:30:56.467Z", + "created": "2021-01-13T01:52:45.414Z", + "id": "relationship--dd57600b-3d60-4242-8231-8c632716e447", + "modified": "2021-01-13T01:52:45.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", - "id": "relationship--3d1dd40b-61a7-42f6-8838-a5e752db27c9", - "modified": "2021-01-06T18:30:56.467Z", + "created": "2021-01-13T01:52:45.414Z", + "id": "relationship--3580dc9b-6e72-471c-8813-5d625e3c16d9", + "modified": "2021-01-13T01:52:45.414Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", - "id": "relationship--43fe02ea-2b1f-40c6-8b35-dbbd23056628", - "modified": "2021-01-06T18:30:56.467Z", + "created": "2021-01-13T01:52:45.415Z", + "id": "relationship--f29c4014-fa4d-421d-aacc-5376e101a530", + "modified": "2021-01-13T01:52:45.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.467Z", - "description": "Access Control", - "id": "relationship--29d9ae53-220c-498e-a7ac-0abbe59e1fa0", - "modified": "2021-01-06T18:30:56.467Z", + "created": "2021-01-13T01:52:45.416Z", + "id": "relationship--3c0c772b-dde2-4c12-ae42-3e2a10ee5e29", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", - "id": "relationship--1c453bd0-a306-4ae5-afb4-e4f4b28507a8", - "modified": "2021-01-06T18:30:56.468Z", + "created": "2021-01-13T01:52:45.416Z", + "id": "relationship--74fc468b-ac23-4535-b5f0-d5e1f518965a", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", - "id": "relationship--7f36acc3-b52f-4b91-b7a3-81677affcda0", - "modified": "2021-01-06T18:30:56.468Z", + "created": "2021-01-13T01:52:45.416Z", + "id": "relationship--3c47ae90-982f-4fe6-a231-fd43a7ee5fa0", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", - "id": "relationship--bff8757c-65cc-47d3-98f4-c77d4855506a", - "modified": "2021-01-06T18:30:56.468Z", + "created": "2021-01-13T01:52:45.416Z", + "id": "relationship--be38e7d0-9683-4d48-82f1-9bdb178f8ce5", + "modified": "2021-01-13T01:52:45.416Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", - "id": "relationship--f0488a8f-861d-4351-af4c-51f1388db73e", - "modified": "2021-01-06T18:30:56.468Z", + "created": "2021-01-13T01:52:45.417Z", + "id": "relationship--54d5f9ab-d3f0-4998-a268-fd1531362780", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.468Z", - "description": "Access Control", - "id": "relationship--9a05438e-8e5d-4356-849c-833dff2a4f0d", - "modified": "2021-01-06T18:30:56.468Z", + "created": "2021-01-13T01:52:45.417Z", + "id": "relationship--0a82276f-653c-4cbd-b261-8a3f6cb4ec3e", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", - "id": "relationship--262fe55d-4296-4f29-8566-e72e58fc4bc8", - "modified": "2021-01-06T18:30:56.469Z", + "created": "2021-01-13T01:52:45.417Z", + "id": "relationship--7104144d-e44b-44b1-9622-997a67a698c2", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", - "id": "relationship--78bc69fd-8291-4024-a0ac-56a39cac78e5", - "modified": "2021-01-06T18:30:56.469Z", + "created": "2021-01-13T01:52:45.417Z", + "id": "relationship--4486956b-a534-4f02-b536-c50e5fcb8799", + "modified": "2021-01-13T01:52:45.417Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", - "id": "relationship--b9953c27-d82e-4aea-a7bd-ebcf2dfab8df", - "modified": "2021-01-06T18:30:56.469Z", + "created": "2021-01-13T01:52:45.418Z", + "id": "relationship--967ee566-5c7a-4a4c-bf83-6bdcf4847e89", + "modified": "2021-01-13T01:52:45.418Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", - "id": "relationship--4a0d952d-3563-413c-a8a9-f5a337905fb7", - "modified": "2021-01-06T18:30:56.469Z", + "created": "2021-01-13T01:52:45.418Z", + "id": "relationship--78fe9649-4a65-43d8-8974-7e609aa74963", + "modified": "2021-01-13T01:52:45.418Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.469Z", - "description": "Access Control", - "id": "relationship--15f62c7c-0764-4e21-a655-2fd38ae80f32", - "modified": "2021-01-06T18:30:56.469Z", + "created": "2021-01-13T01:52:45.419Z", + "id": "relationship--caf1a193-8b12-4fa0-b55d-8525e5d04abb", + "modified": "2021-01-13T01:52:45.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", - "id": "relationship--d6dfc9a8-cb31-4fd2-bf7c-9c14b8707b94", - "modified": "2021-01-06T18:30:56.471Z", + "created": "2021-01-13T01:52:45.419Z", + "id": "relationship--21646ac1-0ef3-459c-8855-de1f9088d1e3", + "modified": "2021-01-13T01:52:45.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", - "id": "relationship--928dc754-a444-418d-ab2d-b57872506a9d", - "modified": "2021-01-06T18:30:56.471Z", + "created": "2021-01-13T01:52:45.420Z", + "id": "relationship--92433b50-a734-4b0e-bd07-668ee53efbe8", + "modified": "2021-01-13T01:52:45.420Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.471Z", - "description": "Off-system Storage", - "id": "relationship--4f6b460a-b751-477e-b9f8-2061928c73cc", - "modified": "2021-01-06T18:30:56.471Z", + "created": "2021-01-13T01:52:45.421Z", + "id": "relationship--749fc3ce-f422-4c99-bbe6-9a0c3f5e2182", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--16b337da-055d-4798-82e1-7a23b395097e", - "modified": "2021-01-06T18:30:56.472Z", + "created": "2021-01-13T01:52:45.421Z", + "id": "relationship--7e3ef815-3838-4fe1-839d-8b64b9cb8b48", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--637a12a6-25ce-445b-afd3-07734403aee8", - "modified": "2021-01-06T18:30:56.472Z", + "created": "2021-01-13T01:52:45.421Z", + "id": "relationship--d2c5f412-f5f2-4d54-a0b9-c12e64e646ce", + "modified": "2021-01-13T01:52:45.421Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--9514e2bc-d8c3-4e07-87ca-42a39bca2a4c", - "modified": "2021-01-06T18:30:56.472Z", + "created": "2021-01-13T01:52:45.422Z", + "id": "relationship--217a999d-c7f9-4c77-b179-9c6808968a6a", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--b828d10d-9dab-47a9-94ca-2e32369d5c12", - "modified": "2021-01-06T18:30:56.472Z", + "created": "2021-01-13T01:52:45.422Z", + "id": "relationship--ba946ed9-3776-4c98-9f67-e65a55e7afc6", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.472Z", - "description": "System Monitoring", - "id": "relationship--d7d01c22-88af-4470-a05f-60d271ff6de6", - "modified": "2021-01-06T18:30:56.472Z", + "created": "2021-01-13T01:52:45.422Z", + "id": "relationship--b56eed4c-75fb-4da6-990a-2345b75d985c", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", - "id": "relationship--b811ce68-4bb3-4509-8129-777bc0d762c0", - "modified": "2021-01-06T18:30:56.473Z", + "created": "2021-01-13T01:52:45.422Z", + "id": "relationship--4a703c03-399d-4399-9241-2794ca4e5a85", + "modified": "2021-01-13T01:52:45.422Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", - "id": "relationship--b594d686-e1a8-4fc9-a96a-6f6414f92901", - "modified": "2021-01-06T18:30:56.473Z", + "created": "2021-01-13T01:52:45.423Z", + "id": "relationship--070a00ab-faff-46d7-9480-32a5cd6e8e9d", + "modified": "2021-01-13T01:52:45.423Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", - "id": "relationship--7bb4c143-c83e-488e-8fb6-571ba12e0a4a", - "modified": "2021-01-06T18:30:56.473Z", + "created": "2021-01-13T01:52:45.424Z", + "id": "relationship--73591f90-4872-47c7-8990-f3cce3cc31ca", + "modified": "2021-01-13T01:52:45.424Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.473Z", - "description": "System Monitoring", - "id": "relationship--634f8936-be00-4dae-864d-70cfc4f8b3c5", - "modified": "2021-01-06T18:30:56.473Z", + "created": "2021-01-13T01:52:45.424Z", + "id": "relationship--13be9ca3-0e64-427b-a9e4-a54016d9c76b", + "modified": "2021-01-13T01:52:45.424Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f45e1cb0-b478-4086-88fa-3410324dbd7c", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.425Z", + "id": "relationship--093fdc19-0556-47d0-9572-8ed2896bde75", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0bf3870a-c597-4bd0-aa22-305bc7af56bf", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.425Z", + "id": "relationship--453d29d8-0c4a-4a19-a3f2-658ec7fb52c8", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--165b79ab-f0c1-4819-9491-6a2e2d30a6b4", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.425Z", + "id": "relationship--713d7e08-655d-4ce5-a54b-7fac69816924", + "modified": "2021-01-13T01:52:45.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0c0f74f8-95a7-4f93-b96f-525f561706a3", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--4519e230-6236-4af3-b20c-09e0192190f9", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fa667e8a-500b-4fb8-8732-4ac2ddbafd4d", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--29a56d4b-6f62-418c-8e19-fbe27c1ead91", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.474Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--25b26a30-3301-4568-8877-b4929c4e0d8c", - "modified": "2021-01-06T18:30:56.474Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--cabf66b4-02df-4061-acef-041cffb37a76", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ba114fe9-1556-41d3-96f9-8f6c53871805", - "modified": "2021-01-06T18:30:56.475Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--89dfcd90-2678-4815-b0fe-96cd3a8a928f", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e1260cbc-ed12-45d6-9e1e-6215fb51764b", - "modified": "2021-01-06T18:30:56.475Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--10c4e330-4f26-4794-b9ad-7543135e4100", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.475Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--813c624a-65c4-47e5-a9fd-be3c558ba272", - "modified": "2021-01-06T18:30:56.475Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--6c1d4ffc-ff47-4fc8-967a-fcffcdf8beaf", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.476Z", - "description": "Access Control", - "id": "relationship--165b25ce-067c-4ee2-a917-c99ee6a1d2a3", - "modified": "2021-01-06T18:30:56.476Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--cdbb7e2e-4e1a-493b-8ea5-db537ef638ca", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.476Z", - "description": "Access Control", - "id": "relationship--41ab505e-dfaa-4385-a894-2c488121dbe5", - "modified": "2021-01-06T18:30:56.476Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--95a623b1-cbd4-4e35-adbc-a8d405bb264f", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--0ca3207c-dba3-4947-9ce4-d0bfd8b39370", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.426Z", + "id": "relationship--cf0ab28a-6c4b-4fc0-8897-586a0b399930", + "modified": "2021-01-13T01:52:45.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--ac906b4a-a5c4-4a9e-ab8d-0dc3e2fd93f0", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.427Z", + "id": "relationship--baee1989-d350-4f12-b90a-5a3def450647", + "modified": "2021-01-13T01:52:45.427Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--0e04c7f1-ae69-436e-b627-f87972abd204", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.428Z", + "id": "relationship--a59c11a4-91b4-49ef-b03b-79b8f06cc7dc", + "modified": "2021-01-13T01:52:45.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--2b88f4ce-2cb1-450e-aaf2-f88a87a3691a", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.428Z", + "id": "relationship--912e6c7d-7690-4f58-a1a7-b1747f0cbee8", + "modified": "2021-01-13T01:52:45.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--9c230a8d-f7b5-4c16-b8af-32c4645e9aa3", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.429Z", + "id": "relationship--8e9bdcff-4a4f-40ed-bbbd-17eb9c5a96a0", + "modified": "2021-01-13T01:52:45.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.477Z", - "description": "Access Control", - "id": "relationship--67d7e1c0-c8f4-44ae-8aff-711c39d64166", - "modified": "2021-01-06T18:30:56.477Z", + "created": "2021-01-13T01:52:45.429Z", + "id": "relationship--1f970d68-a6ac-4ec4-9c25-911fa7db6be6", + "modified": "2021-01-13T01:52:45.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--e71820a4-8b46-4e81-b68d-6683c917efd4", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.430Z", + "id": "relationship--9156ed06-d04a-4d28-ab2c-21b73df2d6a6", + "modified": "2021-01-13T01:52:45.430Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--d2865066-1f0d-4988-aaf3-9b0974481e86", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--569f4c94-3e3a-4926-961f-ab15d5ccc208", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--1521ceb7-8f0d-4a97-bfe3-52cd9ca5b7f7", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--24d71586-2bf4-4f59-b8aa-48d796b357ce", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--8a87421e-9483-41fc-a43e-10a070e1776d", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--a8de1bc7-9f2f-4dc7-8514-5337092b90ab", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--c25474fa-c040-4c0a-9e59-57e426a006f1", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--0626028c-7969-4f79-aab9-b353aa2d023d", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--995319d4-6b90-4cd3-bf7e-6accf162576d", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--a34c7caa-e683-4032-849d-bf458997e842", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.478Z", - "description": "Access Control", - "id": "relationship--7c814acc-ffc7-49b9-bd40-0ce26ee85f0f", - "modified": "2021-01-06T18:30:56.478Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--5a2e4c5f-ff70-4370-a6c4-d18dffa43101", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c93759b6-67ce-4547-b704-3e3fad5a18e7", - "modified": "2021-01-06T18:30:56.479Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--06cc3392-6ea8-447f-b7a3-af1801148bce", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62138324-415c-4c9c-b1c3-4dc563bcabb9", - "modified": "2021-01-06T18:30:56.479Z", + "created": "2021-01-13T01:52:45.431Z", + "id": "relationship--61b74ed9-b1eb-472f-ad1b-f8105191d245", + "modified": "2021-01-13T01:52:45.431Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.479Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--35d65108-1646-40f2-a834-134738cc5b34", - "modified": "2021-01-06T18:30:56.479Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--e051e1d2-4742-421d-bc61-2d7c5c97ee79", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a4abf675-e67b-40d0-b12c-3693fe4a4bb6", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--e3f38c82-29f4-4944-bda5-e8eafaa30de4", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9b4aac0f-f0d4-4506-bb4d-c7e231c6f8c7", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--e4299005-1f3b-4b00-806b-11289f6126e1", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f0e8d3bd-1557-4a31-b6df-a06cd07e1b8d", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--3f180961-0274-498b-94a4-7fbcad5e09d1", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b6f1ed1b-4973-4bfe-87b0-cff48ced0d98", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--568897ee-b2ce-4ebc-8b68-ddbe8a031ecc", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6ac5679f-53e4-4a2f-ad9c-ff5d973cf9bf", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--6687102d-7540-45f6-8fc8-8a785d439b7a", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.480Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--bba4dc73-5c01-459b-ac8c-e5006ca96202", - "modified": "2021-01-06T18:30:56.480Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--6926741a-5818-4f32-ab08-8c3317859e24", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.481Z", - "description": "Off-system Storage", - "id": "relationship--e4542e5a-e3cc-4cfb-bcdb-27ac6dcef253", - "modified": "2021-01-06T18:30:56.481Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--2d10bbde-4d8a-4892-b9ca-6b80b8be1936", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.482Z", - "description": "Off-system Storage", - "id": "relationship--c25e4e0f-fb24-44f9-848d-4020d4c09e29", - "modified": "2021-01-06T18:30:56.482Z", + "created": "2021-01-13T01:52:45.432Z", + "id": "relationship--68b16108-a33b-4607-8b22-b48c60526031", + "modified": "2021-01-13T01:52:45.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.482Z", - "description": "Off-system Storage", - "id": "relationship--f3f0fcb3-6196-48cf-bf2c-293178fa9866", - "modified": "2021-01-06T18:30:56.482Z", + "created": "2021-01-13T01:52:45.433Z", + "id": "relationship--0f4cd677-9594-4cce-a6e5-23c791fd986f", + "modified": "2021-01-13T01:52:45.433Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--a52115ed-8a61-4dd3-a59e-fcfccd8bb4c9", - "modified": "2021-01-06T18:30:56.483Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--14fd1c29-8975-4930-934c-c3c78d953c59", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--63742436-9247-4280-ab1d-a3041ef35437", - "modified": "2021-01-06T18:30:56.483Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--6db50ff3-65ac-43d0-8024-8ff145f81247", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.483Z", - "description": "System Monitoring", - "id": "relationship--35670a79-97a1-4b6d-862e-0ac47d0be07f", - "modified": "2021-01-06T18:30:56.483Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--f33e17d9-521e-42e8-b0f6-5b41e02ff9e1", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", - "id": "relationship--4582e133-2aa5-44b5-9311-1b860ebcdfdd", - "modified": "2021-01-06T18:30:56.484Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--f336af14-8c36-4b61-8dfb-78c0850311f2", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", - "id": "relationship--f9e5d6aa-595c-4178-af68-87904f541e95", - "modified": "2021-01-06T18:30:56.484Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--265e2ea4-ac48-48f9-a36c-d4c4c3c8ef24", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", - "id": "relationship--b7cfb689-2a29-468f-929b-0c150ebd4ed5", - "modified": "2021-01-06T18:30:56.484Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--b25fd2a8-c903-4a86-bb42-47cec6f8ee8e", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.484Z", - "description": "System Monitoring", - "id": "relationship--3ae7d028-56f0-404f-92cc-f7ccfe2fbb6b", - "modified": "2021-01-06T18:30:56.484Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--56dd699d-833b-4973-9a5f-865194025550", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.485Z", - "description": "System Monitoring", - "id": "relationship--e733ecd3-782e-41ef-a416-77b65cc04b21", - "modified": "2021-01-06T18:30:56.485Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--c8ba4fcb-a494-4a46-ae27-62dda1c05e13", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.485Z", - "description": "System Monitoring", - "id": "relationship--f6812fab-9a2f-4698-af49-2bcbc38618b1", - "modified": "2021-01-06T18:30:56.485Z", + "created": "2021-01-13T01:52:45.434Z", + "id": "relationship--1cc6a318-f470-4b32-a82e-754e02b22689", + "modified": "2021-01-13T01:52:45.434Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.486Z", - "description": "Vulnerability Scanning", - "id": "relationship--b6a04f93-5973-4d92-bf75-be3601e24421", - "modified": "2021-01-06T18:30:56.486Z", + "created": "2021-01-13T01:52:45.435Z", + "id": "relationship--f7fb0ee7-600e-4c0d-af6c-eb3be4bd9cd8", + "modified": "2021-01-13T01:52:45.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.487Z", - "description": "System Monitoring, malware", - "id": "relationship--f08ab16a-345a-4a0a-9a1a-8fec2f6f3eaf", - "modified": "2021-01-06T18:30:56.487Z", + "created": "2021-01-13T01:52:45.435Z", + "id": "relationship--3260f1bb-7ffa-4064-9b94-445f3bc1ddf5", + "modified": "2021-01-13T01:52:45.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.487Z", - "description": "System Monitoring, malware", - "id": "relationship--d19c0cb1-8365-4207-a0c2-10fea0da7ecb", - "modified": "2021-01-06T18:30:56.487Z", + "created": "2021-01-13T01:52:45.436Z", + "id": "relationship--6530bb53-1a39-44c1-b470-6b6ce8ce7958", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.488Z", - "description": "Wireless access", - "id": "relationship--8dafdaae-0806-4273-8d74-c65c6b95a5a7", - "modified": "2021-01-06T18:30:56.488Z", + "created": "2021-01-13T01:52:45.436Z", + "id": "relationship--cc7cbe59-6b2a-4e69-843f-cc3797738960", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.489Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--bd9ab687-4130-492e-b4e9-01ed7b42464e", - "modified": "2021-01-06T18:30:56.489Z", + "created": "2021-01-13T01:52:45.436Z", + "id": "relationship--a76f5f82-0f67-40e1-99b1-67e9ef44364a", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.490Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--73b5fba1-38ef-4d20-a908-ba9372e7ce04", - "modified": "2021-01-06T18:30:56.490Z", + "created": "2021-01-13T01:52:45.436Z", + "id": "relationship--40f48352-2c66-42b5-8558-a8794717ba6c", + "modified": "2021-01-13T01:52:45.436Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.490Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2c6f7c82-c27e-4d5b-b257-42e78d8496c9", - "modified": "2021-01-06T18:30:56.490Z", + "created": "2021-01-13T01:52:45.437Z", + "id": "relationship--752f7f72-5e28-4f23-b114-3f63c5bdc196", + "modified": "2021-01-13T01:52:45.437Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", - "id": "relationship--66e10b78-4b93-41c1-bee2-976b4b68520f", - "modified": "2021-01-06T18:30:56.491Z", + "created": "2021-01-13T01:52:45.438Z", + "id": "relationship--716fbfd2-ea9b-4b3a-8132-8869cfd304f1", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", - "id": "relationship--aac556ed-8dcf-41d2-9832-b8eacf9babc7", - "modified": "2021-01-06T18:30:56.491Z", + "created": "2021-01-13T01:52:45.438Z", + "id": "relationship--d0fb566b-27f7-4d38-a882-e833521e8930", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", - "id": "relationship--1812650e-4c8d-4656-8614-4254f484015d", - "modified": "2021-01-06T18:30:56.491Z", + "created": "2021-01-13T01:52:45.438Z", + "id": "relationship--108e49cd-d4a3-409c-b318-4afd080d1399", + "modified": "2021-01-13T01:52:45.438Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.491Z", - "description": "Vulnerability Scanning", - "id": "relationship--d3ad2767-7956-4cc5-83f7-874aad722d62", - "modified": "2021-01-06T18:30:56.491Z", + "created": "2021-01-13T01:52:45.439Z", + "id": "relationship--f6916a4e-c7b9-4ce7-8acf-42c5372cc48f", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.492Z", - "description": "Vulnerability Scanning", - "id": "relationship--21c42020-da6b-45c0-95c6-d6b33dac0c0e", - "modified": "2021-01-06T18:30:56.492Z", + "created": "2021-01-13T01:52:45.439Z", + "id": "relationship--19745ae9-28e7-499c-ad46-82b70827271b", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--5c1279f7-1329-4b49-8dcb-213c8f81693d", - "modified": "2021-01-06T18:30:56.493Z", + "created": "2021-01-13T01:52:45.439Z", + "id": "relationship--2570874d-57bc-472c-abde-a2524ed3f44d", + "modified": "2021-01-13T01:52:45.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:56.493Z", + "created": "2021-01-13T01:52:45.440Z", + "id": "relationship--9c3f58c9-6bd5-44ba-80c1-0521baea5db1", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--0d212d1d-2d64-41f2-bf43-e91b04838a3b", - "modified": "2021-01-06T18:30:56.493Z", + "created": "2021-01-13T01:52:45.440Z", + "id": "relationship--35d41a48-ec1a-4291-9d7a-d8198ae5a53a", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.493Z", - "description": "System Monitoring", - "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.493Z", + "created": "2021-01-13T01:52:45.440Z", + "id": "relationship--4094a6ec-39c5-4846-939c-389ef950964c", + "modified": "2021-01-13T01:52:45.440Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.494Z", - "description": "System Monitoring", - "id": "relationship--40cc1719-dcf3-4656-817f-2c721dbab985", - "modified": "2021-01-06T18:30:56.494Z", + "created": "2021-01-13T01:52:45.442Z", + "id": "relationship--c56a2968-8b13-4e26-b64e-348046f7df5e", + "modified": "2021-01-13T01:52:45.442Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.494Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", - "modified": "2021-01-06T18:30:56.494Z", + "created": "2021-01-13T01:52:45.443Z", + "id": "relationship--aaac06a7-2560-46ec-9205-898195167985", + "modified": "2021-01-13T01:52:45.443Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8928b18c-6671-4f79-af2f-f513e98639e7", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.443Z", + "id": "relationship--0f0ce8c6-c73d-48aa-b489-af4dc805081f", + "modified": "2021-01-13T01:52:45.443Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ef034d9f-5b42-45f9-b089-5b5fc40d42f5", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.444Z", + "id": "relationship--bddafb3e-28a1-406b-b9b1-054256f8b687", + "modified": "2021-01-13T01:52:45.444Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e219e8c0-8453-4b11-812b-fb48ebd434b0", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.445Z", + "id": "relationship--9bbfdd90-7cfb-4b72-a8ee-f5be35269d3a", + "modified": "2021-01-13T01:52:45.445Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b2a73c79-fd42-4393-bc28-be742054dd13", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.445Z", + "id": "relationship--138938a0-a416-4af5-b04a-5086fc26e354", + "modified": "2021-01-13T01:52:45.445Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.446Z", + "id": "relationship--29104165-7b6f-4cff-9a9d-c067d7863586", + "modified": "2021-01-13T01:52:45.446Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--151e8aee-6bb8-4ea4-97be-10f97d776864", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.446Z", + "id": "relationship--464f7e4a-a9b9-4188-bc5a-2c17b3ebbb7f", + "modified": "2021-01-13T01:52:45.446Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.495Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--df0dfd1d-3d54-4d9b-af7a-116bcbfdfea9", - "modified": "2021-01-06T18:30:56.495Z", + "created": "2021-01-13T01:52:45.447Z", + "id": "relationship--4d994123-ea72-4500-bd5e-b09f8f7bb0ac", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3e5b904e-7530-4e59-b876-b93ecaa62988", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.447Z", + "id": "relationship--45e70888-e8be-44ab-9d75-6ba5cf5da365", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ecd02d9d-9b37-449b-adf6-3163f6667615", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.447Z", + "id": "relationship--9fb5ab10-65b2-46ff-9ae3-ee794c645630", + "modified": "2021-01-13T01:52:45.447Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eba90e10-e74e-4506-b731-ca8fc0382855", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--5a68ebe2-2ddc-42ae-a5c3-ec160976ed9a", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3e7a3834-3c23-4398-bb06-476b81752075", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--4df225f6-da31-4541-b375-9af7151ccf4a", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5ced7dfa-fb2a-4578-9d81-6354c11fb287", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--85d63979-4385-47cf-93f2-270190c40942", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--04a72d0b-d7c4-4d79-bd86-523aa37b96a6", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--365ecb2f-b3bd-44c9-9832-4107388936c8", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.496Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e06d35ef-480b-4f3b-b634-6d87bfe3b24a", - "modified": "2021-01-06T18:30:56.496Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--bded4057-1785-48ee-b247-29ec8a398b4e", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.497Z", - "description": "Vulnerability Scanning", - "id": "relationship--71cb480b-57ac-49eb-afd1-dd65a5487973", - "modified": "2021-01-06T18:30:56.497Z", + "created": "2021-01-13T01:52:45.448Z", + "id": "relationship--2a9f714f-adbf-4a35-a1c7-d135633626af", + "modified": "2021-01-13T01:52:45.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.498Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--130d44ae-5874-48a3-9dc8-2389a24c5c9e", - "modified": "2021-01-06T18:30:56.498Z", + "created": "2021-01-13T01:52:45.449Z", + "id": "relationship--ffe1aea1-5cc4-442a-b2ac-9688a788b2a1", + "modified": "2021-01-13T01:52:45.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.499Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0db49767-959f-4323-afc3-666ff121ac37", - "modified": "2021-01-06T18:30:56.499Z", + "created": "2021-01-13T01:52:45.449Z", + "id": "relationship--b16a3731-ace3-428d-a601-8d93b4813d78", + "modified": "2021-01-13T01:52:45.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.499Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--54673fac-37e2-4748-b8fe-db66f8542a6b", - "modified": "2021-01-06T18:30:56.499Z", + "created": "2021-01-13T01:52:45.451Z", + "id": "relationship--ba525261-bcf1-40fd-9c04-b410d660a841", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.545Z", - "description": "Vulnerability Scanning", - "id": "relationship--db7ce1a9-3718-4601-b482-087885d5ea6d", - "modified": "2021-01-06T18:30:56.545Z", + "created": "2021-01-13T01:52:45.451Z", + "id": "relationship--dd73362f-ad3f-4d65-9b5f-f0641425182b", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.546Z", - "description": "Vulnerability Scanning", - "id": "relationship--fbb47f08-2127-4aae-8b94-8d9f0f2ff3d3", - "modified": "2021-01-06T18:30:56.546Z", + "created": "2021-01-13T01:52:45.451Z", + "id": "relationship--25c1ad95-cded-4226-aa0c-c01958e7f3f7", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--4b3fd220-5c8d-418c-9feb-2b5ca20d1c68", - "modified": "2021-01-06T18:30:56.547Z", + "created": "2021-01-13T01:52:45.451Z", + "id": "relationship--2523a7fe-3231-4bf7-9a43-1ad9bc79deaa", + "modified": "2021-01-13T01:52:45.451Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--5924ad2a-f6bd-44b4-8d1d-fd50c81e8b86", - "modified": "2021-01-06T18:30:56.547Z", + "created": "2021-01-13T01:52:45.452Z", + "id": "relationship--f3ca5cc9-4fe5-4178-b5a7-aa3c8842d878", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--34b91f18-8698-44a2-a617-f42ee9610c7e", - "modified": "2021-01-06T18:30:56.547Z", + "created": "2021-01-13T01:52:45.452Z", + "id": "relationship--a2bf768d-e2b3-435d-9cc5-5d5b4dcde3dc", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.547Z", - "description": "System Monitoring, malware", - "id": "relationship--40cac653-54f1-447d-bc23-d647c1bacb82", - "modified": "2021-01-06T18:30:56.547Z", + "created": "2021-01-13T01:52:45.452Z", + "id": "relationship--5e647685-572f-4a33-a01b-3da4eac86e0b", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--db0fb040-072e-435b-9c54-107e78051974", - "modified": "2021-01-06T18:30:56.548Z", + "created": "2021-01-13T01:52:45.452Z", + "id": "relationship--750a85b2-fa9e-45e6-b473-2b1633a06640", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f31c1ed5-d255-4007-84e7-459091de3be4", - "modified": "2021-01-06T18:30:56.548Z", + "created": "2021-01-13T01:52:45.452Z", + "id": "relationship--d2c87eb7-a5b6-4f95-bf7f-bd1c85bf6f17", + "modified": "2021-01-13T01:52:45.452Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.548Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7e06e2b4-feb1-43fa-abec-e012b0c8d0c8", - "modified": "2021-01-06T18:30:56.548Z", + "created": "2021-01-13T01:52:45.453Z", + "id": "relationship--bf9a4e49-325c-48fd-8023-cbf82b4a4621", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4870d7aa-6f0e-433d-bb56-7ed0369af4d5", - "modified": "2021-01-06T18:30:56.549Z", + "created": "2021-01-13T01:52:45.453Z", + "id": "relationship--b3c51977-f969-47d8-957a-26584146293e", + "modified": "2021-01-13T01:52:45.453Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2706dee4-800c-461e-be58-38e0ddb633a0", - "modified": "2021-01-06T18:30:56.549Z", + "created": "2021-01-13T01:52:45.453Z", + "id": "relationship--c1732566-eb73-4068-a16f-1b91136fcce0", + "modified": "2021-01-13T01:52:45.453Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.453Z", + "id": "relationship--7fbb9020-2192-4125-8d9b-d47164b30239", + "modified": "2021-01-13T01:52:45.453Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.453Z", + "id": "relationship--923dd04a-7258-4468-9eb9-5db7e1c9c484", + "modified": "2021-01-13T01:52:45.453Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.454Z", + "id": "relationship--5208563a-7fa3-422e-8232-d6b49c765960", + "modified": "2021-01-13T01:52:45.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.549Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c3e703a5-0ea1-488c-8e56-312856cdd64c", - "modified": "2021-01-06T18:30:56.549Z", + "created": "2021-01-13T01:52:45.454Z", + "id": "relationship--543d7d3b-9602-4dbb-9ecf-694db81cbd9e", + "modified": "2021-01-13T01:52:45.454Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", - "modified": "2021-01-06T18:30:56.551Z", + "created": "2021-01-13T01:52:45.455Z", + "id": "relationship--a3a55799-4432-44ff-9053-cd8df74cf678", + "modified": "2021-01-13T01:52:45.455Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--e33aa098-8c63-4af3-9784-92216b745cf1", - "modified": "2021-01-06T18:30:56.551Z", + "created": "2021-01-13T01:52:45.455Z", + "id": "relationship--ad0e963d-a61e-4790-9d67-e36eca5f50d5", + "modified": "2021-01-13T01:52:45.455Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--fef019d0-fda3-498f-b020-07bcedcfb70c", - "modified": "2021-01-06T18:30:56.551Z", + "created": "2021-01-13T01:52:45.456Z", + "id": "relationship--590bd43a-3db2-4b26-be2f-a25f7d34870f", + "modified": "2021-01-13T01:52:45.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.551Z", - "description": "Vulnerability Scanning", - "id": "relationship--a07e9554-9a9a-4948-a647-b76f17fcb7d8", - "modified": "2021-01-06T18:30:56.551Z", + "created": "2021-01-13T01:52:45.456Z", + "id": "relationship--35d6295f-5a8e-4590-9346-54edaa61a5c3", + "modified": "2021-01-13T01:52:45.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.457Z", + "id": "relationship--dc159790-3b04-4293-b5cf-f3a76e44a25f", + "modified": "2021-01-13T01:52:45.457Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--46494d26-7be5-4600-afac-c199bf220e67", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.457Z", + "id": "relationship--adf1fa73-c554-4a26-a63b-81ac05375d7b", + "modified": "2021-01-13T01:52:45.457Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--19b1f7c3-adef-4af4-a5d4-d19eb78e3fbd", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--bcf75064-479a-41aa-a781-671dc4b4adfe", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--0052f531-9485-47d1-bddf-3efe40e1bf43", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--0bb347b3-c9e1-451d-8377-964053239c46", + "modified": "2021-01-13T01:52:45.458Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--348045f1-8b9e-40e2-8701-97548d758065", + "modified": "2021-01-13T01:52:45.458Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.553Z", - "description": "System Monitoring, malware", - "id": "relationship--92574ca4-a5b9-475f-be7a-42b0c5ec0788", - "modified": "2021-01-06T18:30:56.553Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--da57f819-9921-419c-a3c6-ea57f38e16d7", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.554Z", - "description": "System Monitoring, malware", - "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", - "modified": "2021-01-06T18:30:56.554Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--253fee3b-d6cd-40e5-b0b1-8bf64f5b2c54", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.554Z", - "description": "System Monitoring, malware", - "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", - "modified": "2021-01-06T18:30:56.554Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--230babce-d95d-468f-be23-3bacefe6235f", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.555Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.555Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--dba98cef-3b0c-4ccd-9947-62748f71b79c", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--20be92ca-88c6-419b-9727-b4c85303a2b9", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.458Z", + "id": "relationship--d041668f-1104-4e71-b514-ab473b4e7719", + "modified": "2021-01-13T01:52:45.458Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--16229662-020c-476f-926f-efcbb4ba24e1", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--50c4ed6a-0278-406b-8a27-f4f45fc8506d", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--fc283048-4a96-42e4-8af1-de3542186416", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--59f63cfc-00b5-42ed-860f-1d6182693bf9", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--72deedcb-dd22-4539-bbb8-97dc788a1d19", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--fdfb746b-37f4-4ded-9148-60df33066979", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.556Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:56.556Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--a0d23741-2d58-4b75-b464-3ca116df28a8", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e359ef99-5e72-49c4-b998-d1c38f74fc22", - "modified": "2021-01-06T18:30:56.557Z", + "created": "2021-01-13T01:52:45.459Z", + "id": "relationship--c6b97d22-acf9-44c8-816c-03d09ebefa62", + "modified": "2021-01-13T01:52:45.459Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", - "modified": "2021-01-06T18:30:56.557Z", + "created": "2021-01-13T01:52:45.460Z", + "id": "relationship--74e0ad2f-8e37-4a13-9985-17bbf71f1edb", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d46ec5a8-dd1f-471c-a049-5d465a925bec", - "modified": "2021-01-06T18:30:56.557Z", + "created": "2021-01-13T01:52:45.460Z", + "id": "relationship--6eb85146-92bc-4500-9a2f-543745809b14", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--384a41ac-87f3-4a0a-84ba-93d5d32a54f3", - "modified": "2021-01-06T18:30:56.557Z", + "created": "2021-01-13T01:52:45.460Z", + "id": "relationship--f7be8368-a511-40cf-8c38-6a864d73bf09", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.557Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e4e366a-3cd7-4475-89b2-db85231543cf", - "modified": "2021-01-06T18:30:56.557Z", + "created": "2021-01-13T01:52:45.460Z", + "id": "relationship--b4ece322-92ba-41f0-bbdd-a18921a57328", + "modified": "2021-01-13T01:52:45.460Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.559Z", - "description": "Vulnerability Scanning", - "id": "relationship--357796f0-0106-42d0-8851-94e7daa4a250", - "modified": "2021-01-06T18:30:56.559Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--b60dd8bc-7967-48e9-a8e6-c9af54068389", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.560Z", - "description": "System Monitoring, malware", - "id": "relationship--529de5e8-53e6-40fb-85fe-0689f162319d", - "modified": "2021-01-06T18:30:56.560Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--f9a7234c-0492-4b8f-ab58-899df120ab08", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.560Z", - "description": "System Monitoring, malware", - "id": "relationship--0b192afd-683a-4148-b475-99f461e8bce5", - "modified": "2021-01-06T18:30:56.560Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--4b1c19a8-cb0c-426f-86ae-9a50a36689dd", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.561Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e3d84ab-9028-4a50-9295-ae0aafdbbb55", - "modified": "2021-01-06T18:30:56.561Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--3c0e40c0-223b-4323-a49f-d8e35bb15638", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.561Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09457fcc-9d34-4d29-b332-c02785f13892", - "modified": "2021-01-06T18:30:56.561Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--2b4513dc-7f28-41e9-a09d-536e107909a4", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.562Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8fed2646-ebbb-4569-bbe2-c68a57eaf614", - "modified": "2021-01-06T18:30:56.562Z", + "created": "2021-01-13T01:52:45.462Z", + "id": "relationship--c856f016-9bfa-4b0e-a6d3-5a709c07ad33", + "modified": "2021-01-13T01:52:45.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.563Z", - "description": "Vulnerability Scanning", - "id": "relationship--107aa2f4-3adb-40a9-9b8a-d58120076675", - "modified": "2021-01-06T18:30:56.563Z", + "created": "2021-01-13T01:52:45.463Z", + "id": "relationship--d72a1918-7e4a-4525-9c51-4e45824c6ae2", + "modified": "2021-01-13T01:52:45.463Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.564Z", - "description": "System Monitoring, malware", - "id": "relationship--16d65fa4-a2c8-450e-83c9-144a81364593", - "modified": "2021-01-06T18:30:56.564Z", + "created": "2021-01-13T01:52:45.463Z", + "id": "relationship--4edab164-70bb-48d3-951c-becfa7bfb6fa", + "modified": "2021-01-13T01:52:45.463Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.564Z", - "description": "System Monitoring, malware", - "id": "relationship--cc15a9b8-e9e7-4bc4-8f79-d1e005cb9958", - "modified": "2021-01-06T18:30:56.564Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--39489750-7b89-4ea1-89c3-a80c5f233e15", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.565Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--79f90c80-2e8c-416f-bfed-4f4f13383d0a", - "modified": "2021-01-06T18:30:56.565Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--771dceb3-3310-49e7-902f-31d19534cdd9", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.565Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fc241480-8869-40b0-975e-fd724ae56560", - "modified": "2021-01-06T18:30:56.565Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--3d1dd40b-61a7-42f6-8838-a5e752db27c9", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.566Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--16d63ab0-f60c-427e-a967-23a1eb20685e", - "modified": "2021-01-06T18:30:56.566Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--43fe02ea-2b1f-40c6-8b35-dbbd23056628", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.567Z", - "description": "Vulnerability Scanning", - "id": "relationship--b0906a53-9969-42e9-8f34-bc7cda596df3", - "modified": "2021-01-06T18:30:56.567Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--29d9ae53-220c-498e-a7ac-0abbe59e1fa0", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.569Z", - "description": "System Monitoring, malware", - "id": "relationship--edf5c6aa-acda-460b-a456-b8d08ab18ed4", - "modified": "2021-01-06T18:30:56.569Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--1c453bd0-a306-4ae5-afb4-e4f4b28507a8", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.569Z", - "description": "System Monitoring, malware", - "id": "relationship--03d9f196-9cb4-4f0a-ac7d-805620caf842", - "modified": "2021-01-06T18:30:56.569Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--7f36acc3-b52f-4b91-b7a3-81677affcda0", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--87453f4a-48d3-4fed-9aad-245115266f96", - "modified": "2021-01-06T18:30:56.571Z", + "created": "2021-01-13T01:52:45.464Z", + "id": "relationship--bff8757c-65cc-47d3-98f4-c77d4855506a", + "modified": "2021-01-13T01:52:45.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--07a9ac50-7a50-49c6-a9d8-7e8e9f77fae6", - "modified": "2021-01-06T18:30:56.571Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--f0488a8f-861d-4351-af4c-51f1388db73e", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.571Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--be83bf38-e9f3-4b88-b786-73384190fa12", - "modified": "2021-01-06T18:30:56.571Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--9a05438e-8e5d-4356-849c-833dff2a4f0d", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.572Z", - "description": "Vulnerability Scanning", - "id": "relationship--ac1ea655-2437-40d7-bd29-d4a82934cce9", - "modified": "2021-01-06T18:30:56.572Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--262fe55d-4296-4f29-8566-e72e58fc4bc8", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.572Z", - "description": "Vulnerability Scanning", - "id": "relationship--ce4aea19-3ac2-40fd-bd0b-2114a306f716", - "modified": "2021-01-06T18:30:56.572Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--78bc69fd-8291-4024-a0ac-56a39cac78e5", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.573Z", - "description": "System Monitoring", - "id": "relationship--1a7b1f47-eae2-4a92-9993-14b416c826b9", - "modified": "2021-01-06T18:30:56.573Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--b9953c27-d82e-4aea-a7bd-ebcf2dfab8df", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.573Z", - "description": "System Monitoring", - "id": "relationship--35fe996d-18ee-400c-b04e-b1f809ef92f8", - "modified": "2021-01-06T18:30:56.573Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--4a0d952d-3563-413c-a8a9-f5a337905fb7", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.574Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da9a27f0-f2a7-4dd7-beec-63454c161935", - "modified": "2021-01-06T18:30:56.574Z", + "created": "2021-01-13T01:52:45.465Z", + "id": "relationship--15f62c7c-0764-4e21-a655-2fd38ae80f32", + "modified": "2021-01-13T01:52:45.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c8f3448b-06cd-4ed5-a261-04f9c0f3a23c", - "modified": "2021-01-06T18:30:56.575Z", + "created": "2021-01-13T01:52:45.466Z", + "id": "relationship--4f6b460a-b751-477e-b9f8-2061928c73cc", + "modified": "2021-01-13T01:52:45.466Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b2fa051d-60b7-4ade-be6b-b4a70f02b77b", - "modified": "2021-01-06T18:30:56.575Z", + "created": "2021-01-13T01:52:45.467Z", + "id": "relationship--9514e2bc-d8c3-4e07-87ca-42a39bca2a4c", + "modified": "2021-01-13T01:52:45.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a9845af0-72ad-43c4-8a72-935ce733e0be", - "modified": "2021-01-06T18:30:56.575Z", + "created": "2021-01-13T01:52:45.467Z", + "id": "relationship--b828d10d-9dab-47a9-94ca-2e32369d5c12", + "modified": "2021-01-13T01:52:45.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ca98eb49-69cd-4c6b-9824-04d37b9dff76", - "modified": "2021-01-06T18:30:56.575Z", + "created": "2021-01-13T01:52:45.468Z", + "id": "relationship--d7d01c22-88af-4470-a05f-60d271ff6de6", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.575Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9e307bd9-05e6-461f-9b78-f3ff7c216be9", - "modified": "2021-01-06T18:30:56.575Z", + "created": "2021-01-13T01:52:45.468Z", + "id": "relationship--b811ce68-4bb3-4509-8129-777bc0d762c0", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.576Z", - "description": "Protect credential access", - "id": "relationship--0fb60404-9453-4f86-a882-de2a4e79e203", - "modified": "2021-01-06T18:30:56.576Z", + "created": "2021-01-13T01:52:45.468Z", + "id": "relationship--b594d686-e1a8-4fc9-a96a-6f6414f92901", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.578Z", - "description": "Vulnerability Scanning", - "id": "relationship--82d06315-c7b3-4b75-9f4c-76d4fa66a08a", - "modified": "2021-01-06T18:30:56.578Z", + "created": "2021-01-13T01:52:45.468Z", + "id": "relationship--7bb4c143-c83e-488e-8fb6-571ba12e0a4a", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.579Z", - "description": "System Monitoring", - "id": "relationship--b65ebc45-6d0b-48fe-bd38-654fac4924b2", - "modified": "2021-01-06T18:30:56.579Z", + "created": "2021-01-13T01:52:45.468Z", + "id": "relationship--634f8936-be00-4dae-864d-70cfc4f8b3c5", + "modified": "2021-01-13T01:52:45.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--bc95d187-2002-4668-89f0-f343d8afc1f0", - "modified": "2021-01-06T18:30:56.580Z", + "created": "2021-01-13T01:52:45.469Z", + "id": "relationship--165b79ab-f0c1-4819-9491-6a2e2d30a6b4", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b1c6f677-e100-47e1-9da7-bd5927c45ed1", - "modified": "2021-01-06T18:30:56.580Z", + "created": "2021-01-13T01:52:45.469Z", + "id": "relationship--25b26a30-3301-4568-8877-b4929c4e0d8c", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.580Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--755003d1-fb4d-42c2-b3d6-f0a0f35d7145", - "modified": "2021-01-06T18:30:56.580Z", + "created": "2021-01-13T01:52:45.469Z", + "id": "relationship--ba114fe9-1556-41d3-96f9-8f6c53871805", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.581Z", - "description": "Vulnerability Scanning", - "id": "relationship--3e3faf3a-1aa0-4de3-a90f-8f0dfe78902f", - "modified": "2021-01-06T18:30:56.581Z", + "created": "2021-01-13T01:52:45.469Z", + "id": "relationship--e1260cbc-ed12-45d6-9e1e-6215fb51764b", + "modified": "2021-01-13T01:52:45.469Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.581Z", - "description": "Vulnerability Scanning", - "id": "relationship--1151a110-6d5d-4562-b6b8-45882628c84a", - "modified": "2021-01-06T18:30:56.581Z", + "created": "2021-01-13T01:52:45.470Z", + "id": "relationship--813c624a-65c4-47e5-a9fd-be3c558ba272", + "modified": "2021-01-13T01:52:45.470Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.582Z", - "description": "System Monitoring, malware", - "id": "relationship--56497b38-8e8b-4fd2-a46c-cae75f55519b", - "modified": "2021-01-06T18:30:56.582Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--ac906b4a-a5c4-4a9e-ab8d-0dc3e2fd93f0", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.582Z", - "description": "System Monitoring, malware", - "id": "relationship--9ff4741a-e665-4dba-a5e7-2b09e2023261", - "modified": "2021-01-06T18:30:56.582Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--0e04c7f1-ae69-436e-b627-f87972abd204", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.583Z", - "description": "System Monitoring, malware", - "id": "relationship--3b153895-1c78-4f64-b214-2baf4b5e23b3", - "modified": "2021-01-06T18:30:56.583Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--2b88f4ce-2cb1-450e-aaf2-f88a87a3691a", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.583Z", - "description": "System Monitoring, malware", - "id": "relationship--566ef983-d932-4011-97c6-ebf6b2f3861d", - "modified": "2021-01-06T18:30:56.583Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--9c230a8d-f7b5-4c16-b8af-32c4645e9aa3", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.584Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.584Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--67d7e1c0-c8f4-44ae-8aff-711c39d64166", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9dd189c7-1481-4b22-9f17-5d55f1035fe9", - "modified": "2021-01-06T18:30:56.585Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--e71820a4-8b46-4e81-b68d-6683c917efd4", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--9fe7f695-5fb4-49c3-98b5-7e7f0683346e", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--32f2f8af-b0ac-4c68-a33d-39cfcb38a564", - "modified": "2021-01-06T18:30:56.585Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--d2865066-1f0d-4988-aaf3-9b0974481e86", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ec7e7310-6d59-4614-b0e7-1eb5414de739", - "modified": "2021-01-06T18:30:56.585Z", + "created": "2021-01-13T01:52:45.471Z", + "id": "relationship--1521ceb7-8f0d-4a97-bfe3-52cd9ca5b7f7", + "modified": "2021-01-13T01:52:45.471Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0792d056-b33f-4267-856b-71c77ac84559", - "modified": "2021-01-06T18:30:56.585Z", + "created": "2021-01-13T01:52:45.472Z", + "id": "relationship--8a87421e-9483-41fc-a43e-10a070e1776d", + "modified": "2021-01-13T01:52:45.472Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--7a657180-39e8-49e9-912e-165edf94e7d8", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.585Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d167408c-46b5-4737-bfc1-de81c5fece29", - "modified": "2021-01-06T18:30:56.585Z", + "created": "2021-01-13T01:52:45.473Z", + "id": "relationship--b6f1ed1b-4973-4bfe-87b0-cff48ced0d98", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.587Z", - "description": "Vulnerability Scanning", - "id": "relationship--bcf373dc-5f51-47da-9b55-3e5b727e46c6", - "modified": "2021-01-06T18:30:56.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.588Z", - "description": "System Monitoring", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.588Z", + "created": "2021-01-13T01:52:45.473Z", + "id": "relationship--6ac5679f-53e4-4a2f-ad9c-ff5d973cf9bf", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0a1c1f63-ead8-43b6-9709-557a74e8170f", - "modified": "2021-01-06T18:30:56.589Z", + "created": "2021-01-13T01:52:45.473Z", + "id": "relationship--bba4dc73-5c01-459b-ac8c-e5006ca96202", + "modified": "2021-01-13T01:52:45.473Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0efad2b2-ed9d-47a7-a7f8-d2d429e6aebe", - "modified": "2021-01-06T18:30:56.589Z", + "created": "2021-01-13T01:52:45.474Z", + "id": "relationship--e4542e5a-e3cc-4cfb-bcdb-27ac6dcef253", + "modified": "2021-01-13T01:52:45.474Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.589Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", - "modified": "2021-01-06T18:30:56.589Z", + "created": "2021-01-13T01:52:45.474Z", + "id": "relationship--c25e4e0f-fb24-44f9-848d-4020d4c09e29", + "modified": "2021-01-13T01:52:45.474Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.590Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f7823657-c3fe-45f9-b6bf-20c918ccd5ba", - "modified": "2021-01-06T18:30:56.590Z", + "created": "2021-01-13T01:52:45.475Z", + "id": "relationship--f3f0fcb3-6196-48cf-bf2c-293178fa9866", + "modified": "2021-01-13T01:52:45.475Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--d8755925-195f-4d07-a40d-779f0e9eb51e", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.590Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--62a70342-8ba5-4798-98cb-1e9fe0316dd9", - "modified": "2021-01-06T18:30:56.590Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--4582e133-2aa5-44b5-9311-1b860ebcdfdd", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--b7b3a21f-0e81-449b-a39a-de5e4e9b85f1", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--f9e5d6aa-595c-4178-af68-87904f541e95", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3fdc475d-4a3c-439d-9195-7dad9d82c70b", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--b7cfb689-2a29-468f-929b-0c150ebd4ed5", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7fedce4e-5030-488d-9e7d-8ac40a34f98a", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--3ae7d028-56f0-404f-92cc-f7ccfe2fbb6b", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--be8cb30b-c7cd-4728-9549-15fe8b7b13ea", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--e733ecd3-782e-41ef-a416-77b65cc04b21", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--6f57e407-a57e-4ebb-948e-2a089f147ae9", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.476Z", + "id": "relationship--f6812fab-9a2f-4698-af49-2bcbc38618b1", + "modified": "2021-01-13T01:52:45.476Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--81ee7447-bbd8-4f5d-b651-e452c452ec62", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0f264e7b-e188-42c3-9ed9-11081e3269ff", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.477Z", + "id": "relationship--b6a04f93-5973-4d92-bf75-be3601e24421", + "modified": "2021-01-13T01:52:45.477Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--44c0061f-cf28-43c6-a89a-3cf801f23024", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.479Z", + "id": "relationship--f08ab16a-345a-4a0a-9a1a-8fec2f6f3eaf", + "modified": "2021-01-13T01:52:45.479Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.591Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a680271d-6c69-41be-82d6-7ceed6ada01e", - "modified": "2021-01-06T18:30:56.591Z", + "created": "2021-01-13T01:52:45.482Z", + "id": "relationship--bd9ab687-4130-492e-b4e9-01ed7b42464e", + "modified": "2021-01-13T01:52:45.482Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d008227c-6b9f-4ad0-8250-63dbf8450dc4", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.482Z", + "id": "relationship--2c6f7c82-c27e-4d5b-b257-42e78d8496c9", + "modified": "2021-01-13T01:52:45.482Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--83303163-97c2-4025-9062-e4719cb5d168", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.483Z", + "id": "relationship--66e10b78-4b93-41c1-bee2-976b4b68520f", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--4676adcf-bd8e-43d5-8c9d-c3f8b626c743", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.483Z", + "id": "relationship--aac556ed-8dcf-41d2-9832-b8eacf9babc7", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f8cd6b21-7e2d-4c1e-9eda-1357df8f7d13", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.483Z", + "id": "relationship--1812650e-4c8d-4656-8614-4254f484015d", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--598f54bf-7bee-424c-a3f1-2b87e00eaa4d", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.483Z", + "id": "relationship--d3ad2767-7956-4cc5-83f7-874aad722d62", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--dbedc551-2dc1-4d7d-a902-5b80db9a30f3", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.483Z", + "id": "relationship--21c42020-da6b-45c0-95c6-d6b33dac0c0e", + "modified": "2021-01-13T01:52:45.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c0334ff-505b-4738-83b1-91b7541f8a2d", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.484Z", + "id": "relationship--5c1279f7-1329-4b49-8dcb-213c8f81693d", + "modified": "2021-01-13T01:52:45.484Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.592Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--01f687f7-5314-4016-9148-831f92ce792d", - "modified": "2021-01-06T18:30:56.592Z", + "created": "2021-01-13T01:52:45.485Z", + "id": "relationship--40cc1719-dcf3-4656-817f-2c721dbab985", + "modified": "2021-01-13T01:52:45.485Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--755f36d8-dfc7-4979-8560-0bba32d13759", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a0ed3af8-0654-4a93-a415-e077b299da91", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--8928b18c-6671-4f79-af2f-f513e98639e7", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--437b89e6-67ff-473e-bee8-4c4a3445adcd", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--ef034d9f-5b42-45f9-b089-5b5fc40d42f5", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f560021d-d762-4348-8557-047c17c3a329", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--e219e8c0-8453-4b11-812b-fb48ebd434b0", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--fc181e30-ab7f-4aae-9555-484af30c2e39", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--b2a73c79-fd42-4393-bc28-be742054dd13", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--31613717-8675-4520-9188-11807555b387", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.486Z", + "id": "relationship--df0dfd1d-3d54-4d9b-af7a-116bcbfdfea9", + "modified": "2021-01-13T01:52:45.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7a4bd192-61b3-4197-abb0-5541490c519f", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--eba90e10-e74e-4506-b731-ca8fc0382855", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.593Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--019deaf1-f88c-4e31-b0a0-fe9c9b1fc71e", - "modified": "2021-01-06T18:30:56.593Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--3e7a3834-3c23-4398-bb06-476b81752075", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.594Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a027ca98-811a-443b-8f0c-fd965bd6aa53", - "modified": "2021-01-06T18:30:56.594Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--5ced7dfa-fb2a-4578-9d81-6354c11fb287", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.594Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2cd67251-3808-47a4-a914-77d41571f183", - "modified": "2021-01-06T18:30:56.594Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--04a72d0b-d7c4-4d79-bd86-523aa37b96a6", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--37b50eaf-d0b7-47c7-9737-77af4684f298", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.487Z", + "id": "relationship--e06d35ef-480b-4f3b-b634-6d87bfe3b24a", + "modified": "2021-01-13T01:52:45.487Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--9cedab84-00a9-4997-99e2-00df8d91003b", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.488Z", + "id": "relationship--71cb480b-57ac-49eb-afd1-dd65a5487973", + "modified": "2021-01-13T01:52:45.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--89e8afb5-e45e-434a-8d76-ff40db5fba10", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.489Z", + "id": "relationship--54673fac-37e2-4748-b8fe-db66f8542a6b", + "modified": "2021-01-13T01:52:45.489Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--0ddf75d3-96c9-4151-a359-13d45dc0192c", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.490Z", + "id": "relationship--db7ce1a9-3718-4601-b482-087885d5ea6d", + "modified": "2021-01-13T01:52:45.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--956ea867-d4f6-4f1f-a79c-f224179a1a31", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.490Z", + "id": "relationship--fbb47f08-2127-4aae-8b94-8d9f0f2ff3d3", + "modified": "2021-01-13T01:52:45.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--59240062-f371-4aec-b02d-64504f38ef0d", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--4b3fd220-5c8d-418c-9feb-2b5ca20d1c68", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.595Z", - "description": "Vulnerability Scanning", - "id": "relationship--7ef5c260-43af-4358-a739-8a779f624b34", - "modified": "2021-01-06T18:30:56.595Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--5924ad2a-f6bd-44b4-8d1d-fd50c81e8b86", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.596Z", - "description": "System Monitoring", - "id": "relationship--89416b14-7d23-41b1-9cfb-4dd4c3df731f", - "modified": "2021-01-06T18:30:56.596Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--34b91f18-8698-44a2-a617-f42ee9610c7e", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.596Z", - "description": "System Monitoring", - "id": "relationship--b5e786c7-be49-4551-af1c-639dba2d98c9", - "modified": "2021-01-06T18:30:56.596Z", + "created": "2021-01-13T01:52:45.491Z", + "id": "relationship--40cac653-54f1-447d-bc23-d647c1bacb82", + "modified": "2021-01-13T01:52:45.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--3be410ae-06f7-48fe-834d-6ff2ff9a0fae", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--db0fb040-072e-435b-9c54-107e78051974", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--1f526480-a787-496d-aae0-19e655e44aa7", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--f31c1ed5-d255-4007-84e7-459091de3be4", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--6f2c9e25-211e-47f5-91aa-335a5b58ae97", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--7e06e2b4-feb1-43fa-abec-e012b0c8d0c8", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--4870d7aa-6f0e-433d-bb56-7ed0369af4d5", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.597Z", - "description": "System Monitoring", - "id": "relationship--d26c3ebc-d268-4f0e-b630-f80d414651cf", - "modified": "2021-01-06T18:30:56.597Z", + "created": "2021-01-13T01:52:45.492Z", + "id": "relationship--2706dee4-800c-461e-be58-38e0ddb633a0", + "modified": "2021-01-13T01:52:45.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.598Z", - "description": "Vulnerability Scanning", - "id": "relationship--2782bc8e-ef5f-48cd-ba50-9addc3f83353", - "modified": "2021-01-06T18:30:56.598Z", + "created": "2021-01-13T01:52:45.493Z", + "id": "relationship--c3e703a5-0ea1-488c-8e56-312856cdd64c", + "modified": "2021-01-13T01:52:45.493Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.599Z", - "description": "System Monitoring, malware", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:56.599Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.600Z", - "description": "System Monitoring, malware", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:56.600Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--e33aa098-8c63-4af3-9784-92216b745cf1", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2d557b04-ef0d-4d63-b731-ae50835c2836", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--fef019d0-fda3-498f-b020-07bcedcfb70c", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--880f00ec-4af1-4363-bee8-3cbe185cde34", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.494Z", + "id": "relationship--a07e9554-9a9a-4948-a647-b76f17fcb7d8", + "modified": "2021-01-13T01:52:45.494Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.601Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0306a9b1-8dd9-4891-ab0e-8aaca125a096", - "modified": "2021-01-06T18:30:56.601Z", + "created": "2021-01-13T01:52:45.495Z", + "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", + "modified": "2021-01-13T01:52:45.495Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.602Z", - "description": "Vulnerability Scanning", - "id": "relationship--6326e819-5f11-404f-ac4e-887fc4acf7bb", - "modified": "2021-01-06T18:30:56.602Z", + "created": "2021-01-13T01:52:45.495Z", + "id": "relationship--46494d26-7be5-4600-afac-c199bf220e67", + "modified": "2021-01-13T01:52:45.495Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.602Z", - "description": "Vulnerability Scanning", - "id": "relationship--64ac37d8-7a96-4e11-a3f5-003b013559bd", - "modified": "2021-01-06T18:30:56.602Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.603Z", - "description": "System Monitoring, malware", - "id": "relationship--ba40bfcd-c27e-4c46-9b8e-6cc2a67bb86a", - "modified": "2021-01-06T18:30:56.603Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.603Z", - "description": "System Monitoring, malware", - "id": "relationship--606636a3-5dc2-4dc5-82a8-2e2070657c01", - "modified": "2021-01-06T18:30:56.603Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "System Monitoring, malware", - "id": "relationship--d07c006a-3504-4a7f-8cc1-f9fae9785a27", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--92574ca4-a5b9-475f-be7a-42b0c5ec0788", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "System Monitoring, malware", - "id": "relationship--3d4f0596-bccb-4bb2-a0a1-8d89e3e1e834", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.604Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--956b9a89-c5a0-4eef-aaa2-87afcd0c1002", - "modified": "2021-01-06T18:30:56.604Z", + "created": "2021-01-13T01:52:45.496Z", + "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", + "modified": "2021-01-13T01:52:45.496Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--30358369-1fe6-44aa-90e8-a54bebbbdbc3", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.497Z", + "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", + "modified": "2021-01-13T01:52:45.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8628d366-a47e-4feb-92c3-2f558fec73bb", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1740aa98-05ea-4830-9443-34e06f6ae002", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--d46ec5a8-dd1f-471c-a049-5d465a925bec", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d3770bd9-52e2-4627-bbde-5f64b69a4a43", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--384a41ac-87f3-4a0a-84ba-93d5d32a54f3", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.605Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8480cd69-0ea7-4ebd-8b9f-40b12edaa2a9", - "modified": "2021-01-06T18:30:56.605Z", + "created": "2021-01-13T01:52:45.498Z", + "id": "relationship--9e4e366a-3cd7-4475-89b2-db85231543cf", + "modified": "2021-01-13T01:52:45.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.607Z", - "description": "Vulnerability Scanning", - "id": "relationship--7b2c359b-963f-4fd9-80ed-9269bbce9e2f", - "modified": "2021-01-06T18:30:56.607Z", + "created": "2021-01-13T01:52:45.499Z", + "id": "relationship--357796f0-0106-42d0-8851-94e7daa4a250", + "modified": "2021-01-13T01:52:45.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.608Z", - "description": "System Monitoring, malware", - "id": "relationship--18136224-1a59-4f21-995a-893f2a5a1f53", - "modified": "2021-01-06T18:30:56.608Z", + "created": "2021-01-13T01:52:45.500Z", + "id": "relationship--529de5e8-53e6-40fb-85fe-0689f162319d", + "modified": "2021-01-13T01:52:45.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.608Z", - "description": "System Monitoring, malware", - "id": "relationship--ff5b6fa3-4249-4ed4-9379-7676c8d77ee1", - "modified": "2021-01-06T18:30:56.608Z", + "created": "2021-01-13T01:52:45.500Z", + "id": "relationship--0b192afd-683a-4148-b475-99f461e8bce5", + "modified": "2021-01-13T01:52:45.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.609Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fce982aa-f07c-4009-ba42-ced161078798", - "modified": "2021-01-06T18:30:56.609Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--9e3d84ab-9028-4a50-9295-ae0aafdbbb55", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.609Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--534d31a0-0ba0-4625-a46f-1f569656aeda", - "modified": "2021-01-06T18:30:56.609Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--09457fcc-9d34-4d29-b332-c02785f13892", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.610Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--17caf850-8dc2-4525-97b4-c9ebdd8f231b", - "modified": "2021-01-06T18:30:56.610Z", + "created": "2021-01-13T01:52:45.501Z", + "id": "relationship--8fed2646-ebbb-4569-bbe2-c68a57eaf614", + "modified": "2021-01-13T01:52:45.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--decc6540-f551-4960-ab44-7b647af108cc", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.502Z", + "id": "relationship--107aa2f4-3adb-40a9-9b8a-d58120076675", + "modified": "2021-01-13T01:52:45.502Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--70138a09-23fc-4eb4-8b00-9c69d120e517", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.503Z", + "id": "relationship--16d65fa4-a2c8-450e-83c9-144a81364593", + "modified": "2021-01-13T01:52:45.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f60d2471-e1bc-4b15-a26d-1db6b6e46036", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.504Z", + "id": "relationship--79f90c80-2e8c-416f-bfed-4f4f13383d0a", + "modified": "2021-01-13T01:52:45.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99b8a828-fa72-449d-946e-78d6c68879c5", - "modified": "2021-01-06T18:30:56.611Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5e56148b-b63e-40a5-b9c9-fbca5dce7f0d", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.505Z", + "id": "relationship--16d63ab0-f60c-427e-a967-23a1eb20685e", + "modified": "2021-01-13T01:52:45.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e72b6165-6ad4-4d01-9e3c-850b1d5822b6", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.506Z", + "id": "relationship--b0906a53-9969-42e9-8f34-bc7cda596df3", + "modified": "2021-01-13T01:52:45.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5208563a-7fa3-422e-8232-d6b49c765960", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.506Z", + "id": "relationship--edf5c6aa-acda-460b-a456-b8d08ab18ed4", + "modified": "2021-01-13T01:52:45.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.611Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--279acd3e-451b-49d9-9a4c-018751c4d860", - "modified": "2021-01-06T18:30:56.611Z", + "created": "2021-01-13T01:52:45.507Z", + "id": "relationship--03d9f196-9cb4-4f0a-ac7d-805620caf842", + "modified": "2021-01-13T01:52:45.507Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.612Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--543d7d3b-9602-4dbb-9ecf-694db81cbd9e", - "modified": "2021-01-06T18:30:56.612Z", + "created": "2021-01-13T01:52:45.508Z", + "id": "relationship--be83bf38-e9f3-4b88-b786-73384190fa12", + "modified": "2021-01-13T01:52:45.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.613Z", - "description": "Vulnerability Scanning", - "id": "relationship--52861771-486c-4a29-a40d-f0327b25581a", - "modified": "2021-01-06T18:30:56.613Z", + "created": "2021-01-13T01:52:45.509Z", + "id": "relationship--ac1ea655-2437-40d7-bd29-d4a82934cce9", + "modified": "2021-01-13T01:52:45.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.614Z", - "description": "System Monitoring", - "id": "relationship--f9b41870-65a3-4e47-ac49-d843ea6f000c", - "modified": "2021-01-06T18:30:56.614Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.615Z", - "description": "Vulnerability Scanning", - "id": "relationship--e0b1792b-0273-404f-af20-42cf5cf00738", - "modified": "2021-01-06T18:30:56.615Z", + "created": "2021-01-13T01:52:45.509Z", + "id": "relationship--ce4aea19-3ac2-40fd-bd0b-2114a306f716", + "modified": "2021-01-13T01:52:45.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.615Z", - "description": "Vulnerability Scanning", - "id": "relationship--88768920-f459-40cb-bc91-ec2438d76a37", - "modified": "2021-01-06T18:30:56.615Z", + "created": "2021-01-13T01:52:45.510Z", + "id": "relationship--1a7b1f47-eae2-4a92-9993-14b416c826b9", + "modified": "2021-01-13T01:52:45.510Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.616Z", - "description": "System Monitoring, malware", - "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.616Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--da9a27f0-f2a7-4dd7-beec-63454c161935", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--b2fa051d-60b7-4ade-be6b-b4a70f02b77b", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--4f08b45f-84e4-4dbc-b89f-219fa052f4c1", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.511Z", + "id": "relationship--ca98eb49-69cd-4c6b-9824-04d37b9dff76", + "modified": "2021-01-13T01:52:45.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.617Z", - "description": "System Monitoring, malware", - "id": "relationship--088ce763-0f0d-4598-b62a-8fa1ded10579", - "modified": "2021-01-06T18:30:56.617Z", + "created": "2021-01-13T01:52:45.512Z", + "id": "relationship--9e307bd9-05e6-461f-9b78-f3ff7c216be9", + "modified": "2021-01-13T01:52:45.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.514Z", + "id": "relationship--82d06315-c7b3-4b75-9f4c-76d4fa66a08a", + "modified": "2021-01-13T01:52:45.514Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.516Z", + "id": "relationship--bc95d187-2002-4668-89f0-f343d8afc1f0", + "modified": "2021-01-13T01:52:45.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.516Z", + "id": "relationship--755003d1-fb4d-42c2-b3d6-f0a0f35d7145", + "modified": "2021-01-13T01:52:45.516Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.619Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.619Z", + "created": "2021-01-13T01:52:45.517Z", + "id": "relationship--3e3faf3a-1aa0-4de3-a90f-8f0dfe78902f", + "modified": "2021-01-13T01:52:45.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.620Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c04b10e9-c4e9-4d98-975e-2c2899260300", - "modified": "2021-01-06T18:30:56.620Z", + "created": "2021-01-13T01:52:45.517Z", + "id": "relationship--1151a110-6d5d-4562-b6b8-45882628c84a", + "modified": "2021-01-13T01:52:45.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.620Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--88d23987-b86f-481d-a942-28511dc404a1", - "modified": "2021-01-06T18:30:56.620Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--56497b38-8e8b-4fd2-a46c-cae75f55519b", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--976e5873-a402-4c66-8307-4e0efacfeb05", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--9ff4741a-e665-4dba-a5e7-2b09e2023261", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--3b153895-1c78-4f64-b214-2baf4b5e23b3", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.621Z", - "description": "Vulnerability Scanning", - "id": "relationship--23c2b201-0cc8-4e59-bea6-3095b9921b43", - "modified": "2021-01-06T18:30:56.621Z", + "created": "2021-01-13T01:52:45.518Z", + "id": "relationship--566ef983-d932-4011-97c6-ebf6b2f3861d", + "modified": "2021-01-13T01:52:45.518Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--34515ff7-2ec4-435a-b8e1-a6c8cf9ac0f1", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--9dd189c7-1481-4b22-9f17-5d55f1035fe9", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.622Z", - "description": "System Monitoring", - "id": "relationship--f6b4063d-cf73-4527-9d2d-a20824e9a049", - "modified": "2021-01-06T18:30:56.622Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--32f2f8af-b0ac-4c68-a33d-39cfcb38a564", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.623Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0deb73e8-756e-4ca7-b7cf-40f0a200c7ea", - "modified": "2021-01-06T18:30:56.623Z", + "created": "2021-01-13T01:52:45.519Z", + "id": "relationship--ec7e7310-6d59-4614-b0e7-1eb5414de739", + "modified": "2021-01-13T01:52:45.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.623Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1abeb6f6-5d6c-49b6-8ec7-e7ad7c9bd497", - "modified": "2021-01-06T18:30:56.623Z", + "created": "2021-01-13T01:52:45.520Z", + "id": "relationship--0792d056-b33f-4267-856b-71c77ac84559", + "modified": "2021-01-13T01:52:45.520Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7e82712d-48d2-4db1-9d2f-3db384e06f6e", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.520Z", + "id": "relationship--d167408c-46b5-4737-bfc1-de81c5fece29", + "modified": "2021-01-13T01:52:45.520Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--445365cd-41bc-4447-9d79-6eeb4919fea2", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.523Z", + "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", + "modified": "2021-01-13T01:52:45.523Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--9eda22e8-6371-4d6c-9dfe-4a84605039e5", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--f560021d-d762-4348-8557-047c17c3a329", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09b9b7a2-58b1-42cb-9874-a4f3b488bbe9", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--fc181e30-ab7f-4aae-9555-484af30c2e39", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a49d146e-8131-4782-af3c-b0e83eef5809", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--31613717-8675-4520-9188-11807555b387", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fa5f65ca-befe-4f38-8ba3-0a20d517408d", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--7a4bd192-61b3-4197-abb0-5541490c519f", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.624Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--27037849-fb5d-4b7b-b53a-994e4df62704", - "modified": "2021-01-06T18:30:56.624Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--019deaf1-f88c-4e31-b0a0-fe9c9b1fc71e", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8f87262c-a37d-409b-a05e-e44fb0e3bc4e", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.526Z", + "id": "relationship--a027ca98-811a-443b-8f0c-fd965bd6aa53", + "modified": "2021-01-13T01:52:45.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2958a3b6-ba81-47a0-910e-9a0c5f46a5b9", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.527Z", + "id": "relationship--2cd67251-3808-47a4-a914-77d41571f183", + "modified": "2021-01-13T01:52:45.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8f913e59-ba60-476c-a279-76bfdb8fc480", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.527Z", + "id": "relationship--37b50eaf-d0b7-47c7-9737-77af4684f298", + "modified": "2021-01-13T01:52:45.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0c40d78f-934b-4c1e-8b9c-d685d1247720", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--9cedab84-00a9-4997-99e2-00df8d91003b", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--93463dc4-7fd4-4da8-a89a-44b7c5f3a7d4", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--89e8afb5-e45e-434a-8d76-ff40db5fba10", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.626Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f795beac-8ce9-4109-86f0-97ae2c760709", - "modified": "2021-01-06T18:30:56.626Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--0ddf75d3-96c9-4151-a359-13d45dc0192c", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.627Z", - "description": "System Monitoring", - "id": "relationship--704d39a9-0aab-4c61-8acd-663951eaaa77", - "modified": "2021-01-06T18:30:56.627Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--956ea867-d4f6-4f1f-a79c-f224179a1a31", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.628Z", - "description": "System Monitoring", - "id": "relationship--2f0f0dc3-620a-423d-b79f-c04346a0e343", - "modified": "2021-01-06T18:30:56.628Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--59240062-f371-4aec-b02d-64504f38ef0d", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--04edbec4-1260-4273-a5d8-2eb136286402", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.528Z", + "id": "relationship--7ef5c260-43af-4358-a739-8a779f624b34", + "modified": "2021-01-13T01:52:45.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--14813b51-9bf8-4eb5-9891-0982566401b5", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.531Z", + "id": "relationship--2782bc8e-ef5f-48cd-ba50-9addc3f83353", + "modified": "2021-01-13T01:52:45.531Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--7f879153-7239-483e-a8a5-3d6368997a2c", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.533Z", + "id": "relationship--0306a9b1-8dd9-4891-ab0e-8aaca125a096", + "modified": "2021-01-13T01:52:45.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.629Z", - "description": "Protect and prevent credential access", - "id": "relationship--45fffc48-4756-48ae-959f-5e59de2b602b", - "modified": "2021-01-06T18:30:56.629Z", + "created": "2021-01-13T01:52:45.534Z", + "id": "relationship--6326e819-5f11-404f-ac4e-887fc4acf7bb", + "modified": "2021-01-13T01:52:45.534Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.631Z", - "description": "System Monitoring", - "id": "relationship--db527ed9-22df-4a0b-8960-22f20f303f63", - "modified": "2021-01-06T18:30:56.631Z", + "created": "2021-01-13T01:52:45.534Z", + "id": "relationship--64ac37d8-7a96-4e11-a3f5-003b013559bd", + "modified": "2021-01-13T01:52:45.534Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.631Z", - "description": "System Monitoring", - "id": "relationship--3c5194ad-9d6c-41c1-a696-f9689f8c37ed", - "modified": "2021-01-06T18:30:56.631Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--ba40bfcd-c27e-4c46-9b8e-6cc2a67bb86a", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9041e76e-ae3d-423a-abda-f3f25648e241", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--606636a3-5dc2-4dc5-82a8-2e2070657c01", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5dfbf95e-3c46-4598-bc08-d3ea0c3a2d55", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--d07c006a-3504-4a7f-8cc1-f9fae9785a27", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.633Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9e8ed915-1aec-4ec2-84d9-f438f4b1768b", - "modified": "2021-01-06T18:30:56.633Z", + "created": "2021-01-13T01:52:45.535Z", + "id": "relationship--3d4f0596-bccb-4bb2-a0a1-8d89e3e1e834", + "modified": "2021-01-13T01:52:45.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.634Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5dc2b4b4-bb15-4089-9a93-c5424c7149b6", - "modified": "2021-01-06T18:30:56.634Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--956b9a89-c5a0-4eef-aaa2-87afcd0c1002", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.636Z", - "description": "System Monitoring", - "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:56.636Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--30358369-1fe6-44aa-90e8-a54bebbbdbc3", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.637Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--0585bafa-b17d-45db-be4b-82f34f55b4ed", - "modified": "2021-01-06T18:30:56.637Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--8628d366-a47e-4feb-92c3-2f558fec73bb", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.638Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:56.638Z", + "created": "2021-01-13T01:52:45.536Z", + "id": "relationship--1740aa98-05ea-4830-9443-34e06f6ae002", + "modified": "2021-01-13T01:52:45.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--3fb5f4e0-356d-4f7d-bd88-90c288c0bb46", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.537Z", + "id": "relationship--d3770bd9-52e2-4627-bbde-5f64b69a4a43", + "modified": "2021-01-13T01:52:45.537Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--d39af2f8-081d-42a1-a7d2-92bf5181df9e", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.537Z", + "id": "relationship--8480cd69-0ea7-4ebd-8b9f-40b12edaa2a9", + "modified": "2021-01-13T01:52:45.537Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.640Z", - "description": "Protect and prevent credential access", - "id": "relationship--33715aec-1970-45c4-aced-b22badd21b17", - "modified": "2021-01-06T18:30:56.640Z", + "created": "2021-01-13T01:52:45.538Z", + "id": "relationship--7b2c359b-963f-4fd9-80ed-9269bbce9e2f", + "modified": "2021-01-13T01:52:45.538Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.641Z", - "description": "Protect and prevent credential access", - "id": "relationship--a83036c6-4704-4dfa-83db-574b153d4f84", - "modified": "2021-01-06T18:30:56.641Z", + "created": "2021-01-13T01:52:45.539Z", + "id": "relationship--18136224-1a59-4f21-995a-893f2a5a1f53", + "modified": "2021-01-13T01:52:45.539Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--5ec3012c-233d-437c-853f-3ae40d768f06", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.540Z", + "id": "relationship--17caf850-8dc2-4525-97b4-c9ebdd8f231b", + "modified": "2021-01-13T01:52:45.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--08e503bb-79fc-4d06-b08e-e548fb902d6a", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.541Z", + "id": "relationship--279acd3e-451b-49d9-9a4c-018751c4d860", + "modified": "2021-01-13T01:52:45.541Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.642Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9594492e-685e-477e-ae1c-83585c8eff7d", - "modified": "2021-01-06T18:30:56.642Z", + "created": "2021-01-13T01:52:45.543Z", + "id": "relationship--52861771-486c-4a29-a40d-f0327b25581a", + "modified": "2021-01-13T01:52:45.543Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.643Z", - "description": "Configuring system settings, Registry", - "id": "relationship--64d8b6d1-73a6-445c-bc00-93b8b021f5c7", - "modified": "2021-01-06T18:30:56.643Z", + "created": "2021-01-13T01:52:45.545Z", + "id": "relationship--e0b1792b-0273-404f-af20-42cf5cf00738", + "modified": "2021-01-13T01:52:45.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--8d75dfc6-7e63-4e0b-8f94-df119aeae5b0", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.545Z", + "id": "relationship--88768920-f459-40cb-bc91-ec2438d76a37", + "modified": "2021-01-13T01:52:45.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1e977978-e449-42fa-bda6-64f6d9f9c16a", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.547Z", + "id": "relationship--c04b10e9-c4e9-4d98-975e-2c2899260300", + "modified": "2021-01-13T01:52:45.547Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f8dce936-9898-43c1-b9ab-7d21103f21bf", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.547Z", + "id": "relationship--88d23987-b86f-481d-a942-28511dc404a1", + "modified": "2021-01-13T01:52:45.547Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.644Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--16084466-d0cd-469f-980f-09954eb4e011", - "modified": "2021-01-06T18:30:56.644Z", + "created": "2021-01-13T01:52:45.548Z", + "id": "relationship--976e5873-a402-4c66-8307-4e0efacfeb05", + "modified": "2021-01-13T01:52:45.548Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--c7f6526b-eb8c-40d4-8419-d7b8803bbe3f", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.549Z", + "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", + "modified": "2021-01-13T01:52:45.549Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--af0b4dbe-254e-4d6e-9ed1-ffadb98519f0", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.549Z", + "id": "relationship--23c2b201-0cc8-4e59-bea6-3095b9921b43", + "modified": "2021-01-13T01:52:45.549Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--eedd2155-5073-48ca-bb06-d9b23491b432", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.550Z", + "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", + "modified": "2021-01-13T01:52:45.550Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--4fc1fa24-6031-477f-bd02-870af1ae5b65", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--0deb73e8-756e-4ca7-b7cf-40f0a200c7ea", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.646Z", - "description": "Protect and prevent credential access", - "id": "relationship--b3d2c7e8-c405-4902-85d1-f33c8d623753", - "modified": "2021-01-06T18:30:56.646Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--1abeb6f6-5d6c-49b6-8ec7-e7ad7c9bd497", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.647Z", - "description": "Protect and prevent credential access", - "id": "relationship--0464e5f4-050a-4ba2-acc2-6819911a9c77", - "modified": "2021-01-06T18:30:56.647Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--a49d146e-8131-4782-af3c-b0e83eef5809", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.551Z", + "id": "relationship--fa5f65ca-befe-4f38-8ba3-0a20d517408d", + "modified": "2021-01-13T01:52:45.551Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.552Z", + "id": "relationship--27037849-fb5d-4b7b-b53a-994e4df62704", + "modified": "2021-01-13T01:52:45.552Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.552Z", + "id": "relationship--8f87262c-a37d-409b-a05e-e44fb0e3bc4e", + "modified": "2021-01-13T01:52:45.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--2958a3b6-ba81-47a0-910e-9a0c5f46a5b9", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--8f913e59-ba60-476c-a279-76bfdb8fc480", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.648Z", - "description": "Configuring system settings, Registry", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.648Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--0c40d78f-934b-4c1e-8b9c-d685d1247720", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--93463dc4-7fd4-4da8-a89a-44b7c5f3a7d4", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.553Z", + "id": "relationship--f795beac-8ce9-4109-86f0-97ae2c760709", + "modified": "2021-01-13T01:52:45.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.650Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.650Z", + "created": "2021-01-13T01:52:45.554Z", + "id": "relationship--704d39a9-0aab-4c61-8acd-663951eaaa77", + "modified": "2021-01-13T01:52:45.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.651Z", + "created": "2021-01-13T01:52:45.554Z", + "id": "relationship--2f0f0dc3-620a-423d-b79f-c04346a0e343", + "modified": "2021-01-13T01:52:45.554Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.651Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.651Z", + "created": "2021-01-13T01:52:45.555Z", + "id": "relationship--7f879153-7239-483e-a8a5-3d6368997a2c", + "modified": "2021-01-13T01:52:45.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.653Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.559Z", "id": "relationship--0585bafa-b17d-45db-be4b-82f34f55b4ed", - "modified": "2021-01-06T18:30:56.653Z", + "modified": "2021-01-13T01:52:45.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.653Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--cbfd8879-b3ad-4e20-a1e9-ebce435d92b5", - "modified": "2021-01-06T18:30:56.653Z", + "created": "2021-01-13T01:52:45.564Z", + "id": "relationship--4fc1fa24-6031-477f-bd02-870af1ae5b65", + "modified": "2021-01-13T01:52:45.564Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.655Z", - "description": "Vulnerability Scanning", - "id": "relationship--72485256-d44d-472b-ab5b-50602cd7e570", - "modified": "2021-01-06T18:30:56.655Z", + "created": "2021-01-13T01:52:45.564Z", + "id": "relationship--b3d2c7e8-c405-4902-85d1-f33c8d623753", + "modified": "2021-01-13T01:52:45.564Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.656Z", - "description": "System Monitoring, Malware", - "id": "relationship--520c85ee-8070-44af-b1a5-39149dfc8d74", - "modified": "2021-01-06T18:30:56.656Z", + "created": "2021-01-13T01:52:45.565Z", + "id": "relationship--0464e5f4-050a-4ba2-acc2-6819911a9c77", + "modified": "2021-01-13T01:52:45.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.656Z", - "description": "System Monitoring, Malware", - "id": "relationship--0d54165f-d7e3-4399-9fd2-e84f09228e15", - "modified": "2021-01-06T18:30:56.656Z", + "created": "2021-01-13T01:52:45.569Z", + "id": "relationship--72485256-d44d-472b-ab5b-50602cd7e570", + "modified": "2021-01-13T01:52:45.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.571Z", "id": "relationship--bcc6868a-ec43-40e1-afa1-2d7975a16c59", - "modified": "2021-01-06T18:30:56.658Z", + "modified": "2021-01-13T01:52:45.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:56.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:52:45.572Z", "id": "relationship--8f657b3f-cd9d-43ce-83c9-9f43ba7eaba9", - "modified": "2021-01-06T18:30:56.658Z", + "modified": "2021-01-13T01:52:45.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.658Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:56.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.660Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:52:45.573Z", "id": "relationship--c4cb70ac-2165-4ad5-bc55-852aff08f0f8", - "modified": "2021-01-06T18:30:56.660Z", + "modified": "2021-01-13T01:52:45.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.660Z", - "description": "Vulnerability Scanning", - "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:56.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.661Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:52:45.574Z", "id": "relationship--4de64868-9b2d-4c94-a07d-d4e461f688e9", - "modified": "2021-01-06T18:30:56.661Z", + "modified": "2021-01-13T01:52:45.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", - "id": "relationship--6da36d28-f82d-4e30-9ec5-5e71cd56ce6b", - "modified": "2021-01-06T18:30:56.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:52:45.574Z", "id": "relationship--56836170-0fa0-4cda-8e35-bcda6b4952f4", - "modified": "2021-01-06T18:30:56.662Z", + "modified": "2021-01-13T01:52:45.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.662Z", - "description": "System Monitoring, Malware", - "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:56.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", + "created": "2021-01-13T01:52:45.575Z", "id": "relationship--63b1f966-7ac2-4f67-9857-238432aac5df", - "modified": "2021-01-06T18:30:56.663Z", + "modified": "2021-01-13T01:52:45.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.663Z", - "id": "relationship--acc35130-2df9-47f0-a3c3-976a80d22cca", - "modified": "2021-01-06T18:30:56.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", - "id": "relationship--68eb08d1-8c6e-4258-932c-5824197f1d2e", - "modified": "2021-01-06T18:30:56.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.663Z", + "created": "2021-01-13T01:52:45.575Z", "id": "relationship--5abae17b-ffff-4ec0-8551-f76c4d514035", - "modified": "2021-01-06T18:30:56.663Z", + "modified": "2021-01-13T01:52:45.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", - "id": "relationship--213a392b-3809-4d28-8ff0-8cdaf641e408", - "modified": "2021-01-06T18:30:56.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.664Z", - "id": "relationship--15e1b556-e190-4305-8bee-1dd674303a1f", - "modified": "2021-01-06T18:30:56.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--1145a047-0857-4347-9efa-7e506982d050", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--2461364b-762f-4b23-a249-a852bece025f", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--7595432a-863b-478d-83cf-76310ddd2058", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.664Z", + "created": "2021-01-13T01:52:45.576Z", "id": "relationship--9c53563d-23b3-474b-92ca-75860d1da309", - "modified": "2021-01-06T18:30:56.664Z", + "modified": "2021-01-13T01:52:45.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.665Z", - "id": "relationship--bdc6613f-d798-4c59-9f42-779336570969", - "modified": "2021-01-06T18:30:56.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.665Z", - "id": "relationship--74039f49-a98e-4684-bb5f-3dd9412104ed", - "modified": "2021-01-06T18:30:56.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.666Z", + "created": "2021-01-13T01:52:45.577Z", "id": "relationship--89bb2a0d-1583-44c9-ac27-8341ce6a7fa9", - "modified": "2021-01-06T18:30:56.666Z", + "modified": "2021-01-13T01:52:45.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.666Z", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.666Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--ea8f6cdb-0596-4b40-9440-db7ce3800adf", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--f2065ae5-7329-4d83-8a36-fbac79982527", - "modified": "2021-01-06T18:30:56.667Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", - "id": "relationship--588405c1-cbe3-4f3b-b4fb-d0139a4d322d", - "modified": "2021-01-06T18:30:56.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.667Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--6004f4af-2045-4c61-99c0-bade17beab2a", - "modified": "2021-01-06T18:30:56.667Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--79e48713-38d9-4f18-9a2b-90fccc8405b9", - "modified": "2021-01-06T18:30:56.668Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", + "created": "2021-01-13T01:52:45.578Z", "id": "relationship--2e2d8028-5d65-4f1d-9900-f79f13c09e05", - "modified": "2021-01-06T18:30:56.668Z", + "modified": "2021-01-13T01:52:45.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.668Z", - "id": "relationship--8b446bfa-9e53-4e7e-af38-00ce50adc9af", - "modified": "2021-01-06T18:30:56.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.668Z", - "id": "relationship--a0f7d223-078e-4aec-bb7e-dfda5b1d0046", - "modified": "2021-01-06T18:30:56.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.669Z", + "created": "2021-01-13T01:52:45.579Z", "id": "relationship--d39539bf-4599-43b2-8610-0bbf37dbcdce", - "modified": "2021-01-06T18:30:56.669Z", + "modified": "2021-01-13T01:52:45.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.670Z", + "created": "2021-01-13T01:52:45.580Z", "id": "relationship--8ec685b4-f0bd-45b0-85e4-c64df3b6a3a0", - "modified": "2021-01-06T18:30:56.670Z", + "modified": "2021-01-13T01:52:45.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.671Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--82bcac92-86b2-42cc-be9a-b0109820d155", - "modified": "2021-01-06T18:30:56.671Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.671Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--71438390-ffeb-4ecd-a1f4-bef43e8170cf", - "modified": "2021-01-06T18:30:56.671Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.581Z", "id": "relationship--896aef95-898b-4f1c-a480-310f905d39f3", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", - "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:56.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--71ac2039-23a6-415b-97e8-488083b94221", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--4428c1fb-9ea6-4b61-9cbe-82bfb201b383", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.672Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--10ab349d-89e3-4443-aa22-34ecad405a21", - "modified": "2021-01-06T18:30:56.672Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--40cd2c95-42b4-4cd7-b595-55fc37f71d79", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--32d05d2e-841c-4021-9439-54d08727a595", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.582Z", "id": "relationship--7febf0c4-bae8-4de2-8ec7-3f242b075eae", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--40934b2f-b149-41f2-bb7c-28fd764161d4", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--41af5a6a-3e0b-4c5b-a332-4707b669b7b4", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.673Z", + "created": "2021-01-13T01:52:45.583Z", "id": "relationship--20d62ad8-ab6f-4125-b4f0-b682894feffe", - "modified": "2021-01-06T18:30:56.673Z", + "modified": "2021-01-13T01:52:45.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.674Z", + "created": "2021-01-13T01:52:45.584Z", "id": "relationship--05482533-5564-4c7b-ba1e-a20a2cc9691d", - "modified": "2021-01-06T18:30:56.674Z", + "modified": "2021-01-13T01:52:45.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.675Z", + "created": "2021-01-13T01:52:45.584Z", "id": "relationship--c9218528-93cd-41ba-8843-cc9885b1116d", - "modified": "2021-01-06T18:30:56.675Z", + "modified": "2021-01-13T01:52:45.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.676Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--1e623b8b-f6c3-4f3b-acb4-7ac26541c425", - "modified": "2021-01-06T18:30:56.676Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.676Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--0ce114b5-6364-4c18-828e-e2e495e844b0", - "modified": "2021-01-06T18:30:56.676Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", - "id": "relationship--5e63eca5-99a3-4eda-8949-dde20a592888", - "modified": "2021-01-06T18:30:56.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--11339df1-e0ec-4def-8f2a-3c353493d8bd", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.585Z", "id": "relationship--67cabb90-3a63-4b9c-8eeb-18fb54192271", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", - "id": "relationship--0b5fc684-7237-43b1-9378-26d068b40335", - "modified": "2021-01-06T18:30:56.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--82c5a199-6c57-4ca9-ad92-c98547297a24", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--d10475b5-37a1-4f6e-9f26-5996784ec038", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.677Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--d16648d4-5783-4e0d-bedc-4af8371c97ff", - "modified": "2021-01-06T18:30:56.677Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.678Z", + "created": "2021-01-13T01:52:45.586Z", "id": "relationship--00291c44-118d-406b-8414-4857597f142d", - "modified": "2021-01-06T18:30:56.678Z", + "modified": "2021-01-13T01:52:45.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.678Z", - "id": "relationship--40aba28e-cab9-4570-8907-de0c751afca4", - "modified": "2021-01-06T18:30:56.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.678Z", - "id": "relationship--50726a53-a93b-4b1c-921f-0244f2522278", - "modified": "2021-01-06T18:30:56.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.679Z", + "created": "2021-01-13T01:52:45.587Z", "id": "relationship--79bc63cf-aed6-468b-b89c-0c487925122f", - "modified": "2021-01-06T18:30:56.679Z", + "modified": "2021-01-13T01:52:45.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.680Z", + "created": "2021-01-13T01:52:45.588Z", "id": "relationship--11a68e17-17cd-42aa-b45f-9329a5ae1b86", - "modified": "2021-01-06T18:30:56.680Z", + "modified": "2021-01-13T01:52:45.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e9dd8eb3-b1fe-4da3-b168-c433499401d4", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e2612cd9-e799-440a-a9eb-7b46d99b718e", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--93b57fda-57a1-436b-b5a8-678b2e83c3a3", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--e7f9aaf7-da70-4ec7-a86e-f5256762842e", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--65968e8e-ce65-4021-a84e-f044ed7f032b", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f62a7d56-7929-4570-bd16-18d2d3ca83eb", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.681Z", + "created": "2021-01-13T01:52:45.589Z", "id": "relationship--833d4571-0466-4693-bb0d-f4fe64869c67", - "modified": "2021-01-06T18:30:56.681Z", + "modified": "2021-01-13T01:52:45.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.682Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f24357ea-e61d-4e8e-a868-5b9da9bc0b1b", - "modified": "2021-01-06T18:30:56.682Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1a10b211-c51d-4a48-8dce-2acd8bad2444", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c79363a7-0456-4dcd-be1e-59323e6c1943", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.683Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7dce2f57-e963-4b7e-822c-48d55a0d98dd", - "modified": "2021-01-06T18:30:56.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7e6ebc4d-efd7-489b-bf71-d4a922067f1b", - "modified": "2021-01-06T18:30:56.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--78c5f921-9021-4486-ab01-69a00ee83e1b", - "modified": "2021-01-06T18:30:56.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.590Z", "id": "relationship--dedbfeab-1944-4f9f-b354-1264422ac89c", - "modified": "2021-01-06T18:30:56.684Z", + "modified": "2021-01-13T01:52:45.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.684Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.591Z", "id": "relationship--dcf2f5de-e5de-42c3-b1a2-acae5fe8f506", - "modified": "2021-01-06T18:30:56.684Z", + "modified": "2021-01-13T01:52:45.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.685Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:52:45.591Z", "id": "relationship--3c46c8fa-e690-4774-8a08-438c790e79b3", - "modified": "2021-01-06T18:30:56.685Z", + "modified": "2021-01-13T01:52:45.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--072229d3-4c58-4b3f-afd4-120c30df86a8", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--2377bc36-6768-4c6b-b2fc-fa1d2d408edc", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.686Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:52:45.592Z", "id": "relationship--40fa008a-f65d-4306-9823-d48552201599", - "modified": "2021-01-06T18:30:56.686Z", + "modified": "2021-01-13T01:52:45.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a2dc8de-7df3-4197-9242-142cd75a8b8e", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.687Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f141ddf1-1b42-43cc-84b4-2f3b02190e60", - "modified": "2021-01-06T18:30:56.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.687Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0f48434f-a888-41b5-b53a-00b6f77082ce", - "modified": "2021-01-06T18:30:56.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a5c40ca-ad3d-4a06-9a5a-c15ff7bf9f29", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.688Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.594Z", "id": "relationship--19222649-4206-441a-bec2-b45a005028b1", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--4e3848fc-cd55-4084-aeb7-040af7a2fa27", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--2d878c13-5ce0-4ce7-b5cb-d776bc4e5608", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--59d7f858-cadd-4d69-83f4-c13dfdded1e5", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--f9634c3e-0326-4308-9ca7-0e3a7c6d238e", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.690Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--28b410ea-736d-4a8e-b723-e936fdb07cf5", - "modified": "2021-01-06T18:30:56.690Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--a57462e1-447e-41d3-b699-357fcd3f344a", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--ebc9cfd0-0076-4aad-8111-0328a2db98df", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.595Z", "id": "relationship--bfdb13f3-534c-448e-a088-81210c6729c0", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.596Z", "id": "relationship--465b62ee-4cc4-41d5-98e7-af7c8ba79775", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.691Z", + "created": "2021-01-13T01:52:45.596Z", "id": "relationship--26e57a97-b657-4c33-9594-2d1c55a5b01e", - "modified": "2021-01-06T18:30:56.691Z", + "modified": "2021-01-13T01:52:45.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", + "created": "2021-01-13T01:52:45.597Z", "id": "relationship--b1390bc0-e956-4f12-922f-5111aeda1887", - "modified": "2021-01-06T18:30:56.693Z", + "modified": "2021-01-13T01:52:45.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--9ccb91e3-8fa3-4ef3-8e2b-73078053b545", - "modified": "2021-01-06T18:30:56.693Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.693Z", - "id": "relationship--2c7c472f-0da0-4a17-9e3c-f2c8980b170d", - "modified": "2021-01-06T18:30:56.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--ceca1e74-10f5-4975-a863-06532d98aa40", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--4070e9b8-bb73-4b23-a5d3-a216ac8ae28e", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--210e72e8-ac5a-472c-9a03-469f2963b2cc", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--97830dcc-f815-468b-9ad7-2d0ef46dd88c", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--ff758ea5-3f96-454e-9c47-fb1d1ef817d0", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.598Z", "id": "relationship--1023e63c-417e-4372-8617-8cff4bb2e6c4", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.694Z", + "created": "2021-01-13T01:52:45.599Z", "id": "relationship--a69caa92-c6ca-415c-9b4c-5111938a0e40", - "modified": "2021-01-06T18:30:56.694Z", + "modified": "2021-01-13T01:52:45.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--bc5c9d26-5177-4cca-b1e0-06cc987e37d2", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--b09d7471-abd0-4643-8476-48674ca15cc6", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--0ac63a3e-6a51-4805-ade8-3e340e137456", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--6a135db2-fda1-451c-83f9-fdf0a37cda32", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--ddbf3c41-ea20-4ff7-9d12-344f319c6e7b", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.696Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--43056426-218c-48f3-8701-6395347bbaa6", - "modified": "2021-01-06T18:30:56.696Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--70ba8cef-d36f-4f64-a9cc-15be0794331c", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.600Z", "id": "relationship--03ce0ca0-f56c-4502-a62b-169771d0b66e", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--a2980edb-5f8b-4186-8417-1548f50f3a23", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--a5c9feba-19c3-42f2-a9d9-b2174d99c9d9", - "modified": "2021-01-06T18:30:56.697Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.697Z", - "id": "relationship--e041a89b-fa44-4682-9247-b5c02205198a", - "modified": "2021-01-06T18:30:56.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--d7775ed6-dc43-478c-99aa-c5ccc9ba1338", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--8471bdb3-90ba-4994-8198-d732dbce18ee", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--d64ae046-0a22-4466-b565-2e77363c373f", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", - "id": "relationship--64106eb9-99a4-4889-b297-0ccc1b9c046d", - "modified": "2021-01-06T18:30:56.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--503068ac-d7d4-4a94-bfd0-4789eec4c77e", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--ce09eeff-7728-4d43-870f-9d36b766409c", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.698Z", + "created": "2021-01-13T01:52:45.601Z", "id": "relationship--2b8ac715-8cc7-451f-a580-7b5f6c1e860c", - "modified": "2021-01-06T18:30:56.698Z", + "modified": "2021-01-13T01:52:45.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--43a96d8f-edd7-4c7f-8c66-7369fa727da5", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--b794c8a1-b26a-48fb-9298-bc41f1fc634e", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--23cf131e-492b-443d-926d-8dc6c487db54", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--81f4edb6-453f-4e6e-be11-3ba6a9bc8dc7", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.699Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--9a8b3623-8f62-4dab-b6cc-91f87eba6e28", - "modified": "2021-01-06T18:30:56.699Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--be2a493e-6d4a-469e-8600-041efe6f33f3", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--07311917-0a7f-445b-a2b9-a066a957c6d8", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--2519a6cd-354a-4a25-9656-7410291cf2ee", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.700Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--718f0336-86c3-4c11-913a-8bd136d06c94", - "modified": "2021-01-06T18:30:56.700Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.602Z", "id": "relationship--d921a666-f220-4674-beb6-501471ea6555", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--7a023940-ffaf-41ee-9ad5-094965afc215", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--b099f0c1-6efd-4ce8-9f7c-a7af3eb0850b", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--a4f7a185-8f1b-4b94-9b61-a029d6053a07", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--2cd9dcc3-35ea-4eaa-ac32-adad9324206e", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.701Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--a0717fea-4bdb-491f-a0ea-26992bbf1818", - "modified": "2021-01-06T18:30:56.701Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--5efec826-ead6-4ae2-aff6-66921842dd4d", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--e40a751c-1183-4b93-8b7d-d6acdb184db6", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--3fad7ec0-b4e5-4cfe-99a3-c40c8909a569", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--818ae4c6-b599-4169-9d94-8bb07cf090aa", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.702Z", + "created": "2021-01-13T01:52:45.603Z", "id": "relationship--1c016e60-96c8-4a04-8034-d8608979e844", - "modified": "2021-01-06T18:30:56.702Z", + "modified": "2021-01-13T01:52:45.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--1dc46ef2-f4b6-4440-bc60-d9aa647e1cb1", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--6b8f3ac2-e1a8-4b0e-82c6-06eb11b01183", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--b1c393a1-10ca-403c-8942-04b0100f944a", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--22d33aa1-45a5-4097-b398-3c49d54aaf4f", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--c0b0a3ba-84e1-4d54-bbb8-9d5ea91fc1c1", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.703Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--dc5da85d-44df-4aaf-be11-278690ae7e99", - "modified": "2021-01-06T18:30:56.703Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--e33fd916-0db7-4e6b-a334-f675bcb7c3d9", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--7aea415d-f2c0-4fd7-ab0c-c680dedc654f", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--b5a16153-be26-43d9-abb8-54e0f69bb33e", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.604Z", "id": "relationship--6f7ba395-42cd-4ae1-bf8e-c03fe8ca65df", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--09efc3dd-53c3-46ce-b28b-9be67934887c", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--9262aaba-39ba-4069-bfb0-b05eeafe3635", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.704Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--ee19ec88-7ea1-4501-95e0-a99a24b65f6d", - "modified": "2021-01-06T18:30:56.704Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--c1e562fc-f067-4428-8f5f-537427a2a4c8", - "modified": "2021-01-06T18:30:56.705Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", - "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:56.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.705Z", + "created": "2021-01-13T01:52:45.605Z", "id": "relationship--5292d2ed-c26b-42de-b05f-b4bfdc3f6936", - "modified": "2021-01-06T18:30:56.705Z", + "modified": "2021-01-13T01:52:45.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.705Z", - "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:56.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--34877e3f-0323-481b-ae6c-885bcf5b04b4", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--30b533f6-567a-4bde-a053-88a4d3a0aab6", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--de2a72e6-1bba-4e7d-9408-96fd4124225a", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.706Z", + "created": "2021-01-13T01:52:45.606Z", "id": "relationship--dde0a12f-3e8c-4524-ad3b-07d20e67c59b", - "modified": "2021-01-06T18:30:56.706Z", + "modified": "2021-01-13T01:52:45.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--7f9d15b0-2f4e-4a41-8e75-16d1579a4bf4", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--f802c1a1-170b-4abb-a8bc-c00bbe75e3c1", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b7bce530-295c-42f6-a13c-f1f7c6bdc4ed", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--12db9a98-a9c8-4b5b-b369-0871b7e4e54c", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--ee4c1e3b-1449-460a-b799-b1faa6aa5fe5", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", - "id": "relationship--ac533dfd-9bd0-485e-bbb3-2382caaed033", - "modified": "2021-01-06T18:30:56.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--704c88ff-4038-4623-a4c4-73585e57a694", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--5a507ac6-9d69-462b-9f47-7deee7aecafb", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.707Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--204c072d-08ea-4189-b2e0-322375abdee4", - "modified": "2021-01-06T18:30:56.707Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--209e259a-123b-4d70-974f-abf684c0f3e6", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.607Z", "id": "relationship--bd33725c-dbd0-438f-9323-46fa15556aad", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--8e5be5d4-6cf9-4e43-9e17-fe3a34deedcc", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bbd56e35-25c4-4e08-97b8-6b60138857d7", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--db61319a-8156-484f-9445-373d7046b36a", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--dbb50e86-cba8-4941-882d-81538f77d2e1", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e356bc84-b0d6-47e8-9aa2-c64d38360273", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--aa47cdb0-e2af-4715-aa71-fa086fe005c5", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.708Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e54cdc1e-f680-43f9-8b86-f0609bfec0bf", - "modified": "2021-01-06T18:30:56.708Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--3aeeb2ac-2d2f-4ea4-bc23-08316d6e02e8", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--6dbadcd3-da83-4d67-b954-216b0450ecd7", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--e81c8b95-7534-4dd1-82a6-b7c9ffe7fa42", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.608Z", "id": "relationship--83f23fd9-acf3-4b43-a673-b0a26a6f75b8", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9b63d355-7735-4011-a6e1-f748b75b9525", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--c1d80f1b-0257-4efd-9555-84f9e8b4b00c", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--52face79-9931-44e2-a1c2-c9cac8919db5", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--91978b21-796b-499e-af50-6b4e310471ba", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ea615815-ffd1-4f17-ab09-54e86f52df34", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--2fd257b4-8e8f-4cfc-bee4-e9cde9078143", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.709Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--18c9741f-7439-4c2d-af1e-7e068ca2b813", - "modified": "2021-01-06T18:30:56.709Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.710Z", + "created": "2021-01-13T01:52:45.609Z", "id": "relationship--cd6e930d-b250-48b0-8804-a2ac30e3a1de", - "modified": "2021-01-06T18:30:56.710Z", + "modified": "2021-01-13T01:52:45.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--a971ee82-b082-431a-834c-5050461b44db", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--b4fbd57a-1e1f-47a9-a92c-ca6f20fc1193", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.710Z", - "id": "relationship--62df91c4-b1db-4107-a1a3-9f49b8218eb6", - "modified": "2021-01-06T18:30:56.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.711Z", - "id": "relationship--13060505-3331-446a-aafa-e3410bb0969f", - "modified": "2021-01-06T18:30:56.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.611Z", "id": "relationship--66f62cf0-d497-4873-b70b-f2b087e8162c", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--7c67fb5b-723a-4fef-8036-339f87ee02db", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--fdd2b8b4-93d8-42a6-b710-7f1e7ac8007d", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", - "id": "relationship--8c4dc752-e25c-42bb-9d9c-ff2505444ce9", - "modified": "2021-01-06T18:30:56.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.611Z", "id": "relationship--33cf5bdc-7d1c-4c49-8bc9-6bcde064651d", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.712Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--b0d7a0c8-c29d-4b5f-a29b-ed4752925245", - "modified": "2021-01-06T18:30:56.712Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--7fb66359-7283-4b9a-ae66-a19a7c7df88b", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", - "id": "relationship--ca966bca-f579-46d5-9a9a-024d30442e7a", - "modified": "2021-01-06T18:30:56.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--67cabd06-f79b-46ad-a26c-fcf5763e4ae4", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.612Z", "id": "relationship--0093a6a0-2175-4dea-8853-6f0246e828f1", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--eb5ec789-b099-4062-8ef9-d19eda7e4db7", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--1c187836-a97e-49f1-bc30-a521eb972955", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.713Z", + "created": "2021-01-13T01:52:45.613Z", "id": "relationship--49150d45-f262-4e51-8963-b252c45ca436", - "modified": "2021-01-06T18:30:56.713Z", + "modified": "2021-01-13T01:52:45.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--aac556ed-8dcf-41d2-9832-b8eacf9babc7", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--d3ad2767-7956-4cc5-83f7-874aad722d62", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--0d789cfe-96b6-48d6-8cea-fcbbae187a33", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.714Z", - "id": "relationship--4871d96e-c2bd-443c-9adc-647ba0e16bcd", - "modified": "2021-01-06T18:30:56.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--e1f59d4d-a269-42b7-9725-0a2bcf4a2e93", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--2ea88976-9bb6-408f-ac02-79ef75d76e4c", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.615Z", "id": "relationship--8b2daf42-8930-41bb-9024-3392744f80cf", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--4621e1ec-2661-40a9-ab4c-625bc4eb77ce", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.716Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--f814a3e1-50d7-4fee-8f82-98341ff6a709", - "modified": "2021-01-06T18:30:56.716Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--94856801-857d-4d4f-b208-1062c2fe041d", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--d3e80377-d580-4da2-b9a6-145ed809ea28", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--feae3aa0-9047-4a93-b49b-ef4d9806346d", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.717Z", + "created": "2021-01-13T01:52:45.616Z", "id": "relationship--26b98d1d-d56a-4622-b56b-c4eb4b8af1b5", - "modified": "2021-01-06T18:30:56.717Z", + "modified": "2021-01-13T01:52:45.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--8f239896-953e-465a-8fc2-e7a3f8f704a2", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--048d5cfc-2d0b-4e2b-b504-27560656ff65", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--57bf344b-9e54-4d10-abdd-9563b28c03aa", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--db3f81bb-1a91-478b-8287-5289687dd068", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--c5503ff5-29a4-4c83-9a8f-ac22a50f5afa", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", - "id": "relationship--b15f8a19-84e5-4c28-8f3e-045806b26c58", - "modified": "2021-01-06T18:30:56.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.719Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--f5027019-5c0e-4355-a065-595375327d06", - "modified": "2021-01-06T18:30:56.719Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--94238de3-8cff-442c-a3a8-1384f3af4e4d", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--6aa325b4-f9bf-4a9d-9a05-17e3633f2377", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--729b46e0-ff2a-457e-b8dc-4e9c3203a7b5", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--079f928d-0151-4f7a-b51e-935a30830e65", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", + "created": "2021-01-13T01:52:45.618Z", "id": "relationship--ba2601bf-24dc-4eea-ae90-9bcff0931ca4", - "modified": "2021-01-06T18:30:56.720Z", + "modified": "2021-01-13T01:52:45.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.720Z", - "id": "relationship--2c529772-f7d3-430c-aa75-8380f731f5c6", - "modified": "2021-01-06T18:30:56.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.720Z", - "id": "relationship--c211fecf-0166-4aa9-afb9-4e7621e055c3", - "modified": "2021-01-06T18:30:56.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--8c4c3f06-817d-4974-9fdc-dbd709a3d88a", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--9a06521d-0107-429e-892a-a6e78b746a6d", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--01986791-a78d-43f8-8b9c-08498414885d", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--fbe858c9-8509-44d3-b200-dcd8a50ca881", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.721Z", + "created": "2021-01-13T01:52:45.619Z", "id": "relationship--aa944857-6940-435b-a6ba-b24b95bd538a", - "modified": "2021-01-06T18:30:56.721Z", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.721Z", + "created": "2021-01-13T01:52:45.619Z", "id": "relationship--cf0b15bf-ec6f-422d-a2b7-606238c4bb84", - "modified": "2021-01-06T18:30:56.721Z", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.721Z", + "created": "2021-01-13T01:52:45.619Z", "id": "relationship--44704bbe-2de4-4507-86e7-056ea08d4dfa", - "modified": "2021-01-06T18:30:56.721Z", + "modified": "2021-01-13T01:52:45.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.721Z", - "id": "relationship--2e330391-7561-4a3b-b977-e03cac2ea0ca", - "modified": "2021-01-06T18:30:56.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--8b08b8e4-8661-4804-b32a-ac1da44daa15", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", - "id": "relationship--277f622c-ff4c-43fb-824b-e69cc6dc2ef8", - "modified": "2021-01-06T18:30:56.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--f394f0ac-767c-4218-a93a-bfd21ad95865", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--064d5ef0-5a55-4dff-b787-0ea6c0ff303e", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--f0c4f2dd-5d3e-4e02-bb11-d62424cdf2c6", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--fdf37b46-ca4a-4ee4-9fdf-be8e6c485f1f", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--716d4e36-a34d-4671-838b-e3555387c0d1", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.722Z", + "created": "2021-01-13T01:52:45.620Z", "id": "relationship--9bb3eefa-5d34-43f3-9c07-71d71767d7cc", - "modified": "2021-01-06T18:30:56.722Z", + "modified": "2021-01-13T01:52:45.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--d9727fa6-ba00-4d77-b1c5-bc96f8c0920c", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--158b4fc1-2622-49e2-a135-2d088025e6fa", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.723Z", - "id": "relationship--1c2e5c03-cff0-403d-a96c-434f85560a1c", - "modified": "2021-01-06T18:30:56.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.724Z", + "created": "2021-01-13T01:52:45.622Z", "id": "relationship--d460c7eb-169e-47b7-b754-b55a57b23257", - "modified": "2021-01-06T18:30:56.724Z", + "modified": "2021-01-13T01:52:45.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--c83bc431-6320-4801-97b3-158065cf100b", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--58fd94a3-068a-4814-87cc-0a3a97023379", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--086da66f-8fda-4d73-97da-82357cf50f30", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--defc4be0-2967-4dfb-8dd7-b5fedde69e13", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.725Z", + "created": "2021-01-13T01:52:45.622Z", "id": "relationship--4ef0c6cb-7d33-41d3-85b1-f1ec5c4911b2", - "modified": "2021-01-06T18:30:56.725Z", + "modified": "2021-01-13T01:52:45.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.725Z", - "id": "relationship--13f7fd9b-b8c6-435a-b647-e122b4fd8a85", - "modified": "2021-01-06T18:30:56.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.726Z", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--569f4c94-3e3a-4926-961f-ab15d5ccc208", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--24d71586-2bf4-4f59-b8aa-48d796b357ce", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.728Z", + "created": "2021-01-13T01:52:45.624Z", "id": "relationship--d0355edd-acf7-4abe-a4b6-629633f47d0c", - "modified": "2021-01-06T18:30:56.728Z", + "modified": "2021-01-13T01:52:45.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.728Z", + "created": "2021-01-13T01:52:45.624Z", "id": "relationship--394000d5-200c-4ad0-8bbb-25f10e131737", - "modified": "2021-01-06T18:30:56.728Z", + "modified": "2021-01-13T01:52:45.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.728Z", - "id": "relationship--f6f7e0f6-900a-4e5f-94bd-54f5d6e52563", - "modified": "2021-01-06T18:30:56.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.729Z", - "id": "relationship--14fd1c29-8975-4930-934c-c3c78d953c59", - "modified": "2021-01-06T18:30:56.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.625Z", "id": "relationship--3eef95ec-1b69-4e1d-8fd6-242e308ffc81", - "modified": "2021-01-06T18:30:56.730Z", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", - "id": "relationship--aa627fbb-14c1-42ce-8235-1cba22fbb17e", - "modified": "2021-01-06T18:30:56.730Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.625Z", "id": "relationship--0bd99c8a-3b95-436c-b72d-a3e85b9c5f7e", - "modified": "2021-01-06T18:30:56.730Z", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.730Z", + "created": "2021-01-13T01:52:45.625Z", "id": "relationship--139fdf87-65d6-40c9-879d-ae6c7a4a8e24", - "modified": "2021-01-06T18:30:56.730Z", + "modified": "2021-01-13T01:52:45.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.731Z", - "id": "relationship--e6b5aa67-5db4-418c-859c-7ed5ee69f087", - "modified": "2021-01-06T18:30:56.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.731Z", - "id": "relationship--ba24e9be-9c3e-41d2-81cb-1371466f4c7f", - "modified": "2021-01-06T18:30:56.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.732Z", - "id": "relationship--1947b4f9-9c60-4229-be88-d348e642c16e", - "modified": "2021-01-06T18:30:56.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.732Z", - "id": "relationship--731881a6-cb2d-4b5c-8d9a-f29e9be6aa7d", - "modified": "2021-01-06T18:30:56.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--719e851b-9cd4-4275-8455-bde428b3dd2f", - "modified": "2021-01-06T18:30:56.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--5e511ca7-6fe1-4a90-8625-d215ea4fc2ec", - "modified": "2021-01-06T18:30:56.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.733Z", - "id": "relationship--2e715486-7008-4158-8b1f-c98d02958a0d", - "modified": "2021-01-06T18:30:56.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.734Z", - "id": "relationship--8bfb502b-0262-40fa-b999-8550b136dab9", - "modified": "2021-01-06T18:30:56.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--7a5ff61a-5818-4325-86e2-cd4b2e12ddf9", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--3c610a81-7e10-4ca8-8c73-5c9030a1f11a", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--cf8a095d-0cfd-4c22-b59e-1e628f0a6ec2", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", + "created": "2021-01-13T01:52:45.628Z", "id": "relationship--6675f095-8e3b-4055-8890-754bf1b9391f", - "modified": "2021-01-06T18:30:56.734Z", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.734Z", - "id": "relationship--19a5bd5e-f1d5-4254-8529-4080041e1519", - "modified": "2021-01-06T18:30:56.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.734Z", - "id": "relationship--bb217d4b-2574-4c6a-bf1d-064bbe713038", - "modified": "2021-01-06T18:30:56.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--7a7ec642-018b-4708-858f-a886ac930234", - "modified": "2021-01-06T18:30:56.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--ec0da576-8481-4f25-af06-f078b75197b3", - "modified": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.628Z", + "id": "relationship--19a5bd5e-f1d5-4254-8529-4080041e1519", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--fd7ec173-30db-4faf-a6af-cc093116e657", - "modified": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.628Z", + "id": "relationship--bb217d4b-2574-4c6a-bf1d-064bbe713038", + "modified": "2021-01-13T01:52:45.628Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", + "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--a3eeb116-7324-4814-8362-1236195ce859", - "modified": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.629Z", + "id": "relationship--7a7ec642-018b-4708-858f-a886ac930234", + "modified": "2021-01-13T01:52:45.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.735Z", - "id": "relationship--b6e6bf4c-81e9-448f-8304-4707a84c17dc", - "modified": "2021-01-06T18:30:56.735Z", + "created": "2021-01-13T01:52:45.629Z", + "id": "relationship--ec0da576-8481-4f25-af06-f078b75197b3", + "modified": "2021-01-13T01:52:45.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", - "id": "relationship--7f7790be-a5bb-4387-8180-e7b4c3bc3172", - "modified": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.630Z", + "id": "relationship--fd7ec173-30db-4faf-a6af-cc093116e657", + "modified": "2021-01-13T01:52:45.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--89d1d0f5-c7cf-442e-aa5f-79bafde53513", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--bab7c58c-c012-4d87-b4ba-227adc2f9a91", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--cbc649e1-a79c-4db4-a417-f311798d0ad9", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.631Z", "id": "relationship--ba4586ff-f28e-4de9-9cba-bfce0cdbf461", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--1b786ea6-a3b8-4461-8b84-e6edc36f06bf", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.736Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--20d72993-be83-4724-be3b-584624d3e023", - "modified": "2021-01-06T18:30:56.736Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--486cb63a-9bbc-4907-9fab-eec96ce5939c", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--531f6130-b86b-4741-ab12-247093549a06", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.737Z", + "created": "2021-01-13T01:52:45.632Z", "id": "relationship--b0f7d0e2-81e7-4082-b018-6aa11d278334", - "modified": "2021-01-06T18:30:56.737Z", + "modified": "2021-01-13T01:52:45.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.738Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--7d1a7c5e-cc86-49a1-940d-e4c182bb3de1", - "modified": "2021-01-06T18:30:56.738Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.738Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--f0c203a2-f20c-4dd3-a425-3b6e1fc67354", - "modified": "2021-01-06T18:30:56.738Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ddc5fecb-629f-4560-88d4-d9ee0862626e", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.633Z", "id": "relationship--bf888a37-ec21-4d69-93cd-34fb8447851a", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--5f5244b2-7ff5-4ca0-8273-5a1fc0eb7faf", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--554aaeb0-0fbc-4b90-9082-76d00585c07b", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--168f13a3-f5a7-43d7-b4c4-c9e6af5c711e", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.739Z", + "created": "2021-01-13T01:52:45.634Z", "id": "relationship--27712803-c77b-4450-b705-837f2843001e", - "modified": "2021-01-06T18:30:56.739Z", + "modified": "2021-01-13T01:52:45.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1033edc5-22fe-49ee-aac6-488ae3a481a8", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.740Z", - "id": "relationship--0b9c121c-bb1e-49c0-a5fc-31433300ea31", - "modified": "2021-01-06T18:30:56.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.740Z", - "id": "relationship--27c0ac7e-877b-419e-a462-578eec401a54", - "modified": "2021-01-06T18:30:56.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--5229c7b0-f419-4f38-9121-030c92901ed7", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", - "id": "relationship--2be8aab8-b779-431a-bcb4-0aad51cc6a34", - "modified": "2021-01-06T18:30:56.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--9f3e14c3-660b-4523-bb3b-9e67fb5ff978", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.635Z", "id": "relationship--94c24e55-49fa-4963-a0e7-bb59978d33a5", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", - "id": "relationship--bbb01564-cd3b-4d39-b6a4-76a16ca3cf7c", - "modified": "2021-01-06T18:30:56.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--8088c536-a11d-4ae8-8512-c81121b9e462", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--e52cab00-b47e-4896-ae7c-e9adf01db954", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.741Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--6f01be70-b5f2-4bf2-8d46-4b9622ba123c", - "modified": "2021-01-06T18:30:56.741Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.742Z", + "created": "2021-01-13T01:52:45.636Z", "id": "relationship--244b3e18-de4b-475d-ab18-e7383e795fdb", - "modified": "2021-01-06T18:30:56.742Z", + "modified": "2021-01-13T01:52:45.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--ce1223e2-8bf3-4175-9fdb-d008c0326537", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--8d5447b5-c458-413f-8c66-0075437e9300", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", + "created": "2021-01-13T01:52:45.637Z", "id": "relationship--96477d0a-384d-42c2-a569-9df7b50e0230", - "modified": "2021-01-06T18:30:56.743Z", + "modified": "2021-01-13T01:52:45.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.743Z", - "id": "relationship--82bcac92-86b2-42cc-be9a-b0109820d155", - "modified": "2021-01-06T18:30:56.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.743Z", - "id": "relationship--71438390-ffeb-4ecd-a1f4-bef43e8170cf", - "modified": "2021-01-06T18:30:56.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--896aef95-898b-4f1c-a480-310f905d39f3", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--3f26d566-52fb-4540-9586-9a3ac78b7f6c", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--e7a27775-bbc9-46d5-bd54-c938cdffc9b3", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", - "id": "relationship--c49aa311-9bdc-4906-9756-160c700b9c82", - "modified": "2021-01-06T18:30:56.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--0a19ab15-7031-48e2-87b5-f5441571cd26", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--6fef1bdd-b413-4817-971f-f463ed8a7237", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--99b9d824-4793-4150-ab84-0dbd794534c0", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.744Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--1310dbc6-eb9e-4725-823d-a51e31b8bfe6", - "modified": "2021-01-06T18:30:56.744Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.638Z", "id": "relationship--69bd2646-8bb1-41f8-a5ed-60adbb2e74d4", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--c7daed7d-d85e-47d6-8264-7d5988f3ea03", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--e0ef37a4-2bed-447d-ad97-8403f53093e2", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--d2bb2f20-9645-4002-90c7-d128d3120a50", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--4aa591e1-26a9-477f-9bdb-9c936bc37a1c", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--b1ae8d86-b2fa-4862-9d3a-de442be6de5c", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--89e75667-8af2-4cac-ad42-f12b71cd1f2e", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.745Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--32348e0c-f0af-4dc8-aaed-f792f81c2bf3", - "modified": "2021-01-06T18:30:56.745Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--001198d8-9f22-442f-af49-0dd15bb07ef3", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--7989a141-9c5e-42ce-bdee-5b954f6d835c", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--f02cdc90-3773-486b-a698-cce5d5021c07", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.639Z", "id": "relationship--5e266b59-09b1-472b-ada6-156933dbbc65", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--ffea5c7f-4061-43c7-9b65-2d09c0f60dc3", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--78a8853e-fb7b-47a3-9c7a-fd79a1e3ad89", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.746Z", + "created": "2021-01-13T01:52:45.640Z", "id": "relationship--50c5faac-06c3-4c5d-aaaf-42e07300a212", - "modified": "2021-01-06T18:30:56.746Z", + "modified": "2021-01-13T01:52:45.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--7bf274a7-42d2-458d-95c8-a81dc876db79", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--5d4195d8-fde1-45e5-8bf6-d688210445d6", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", - "id": "relationship--08f4571c-1db8-4a19-8c63-3a9b15079429", - "modified": "2021-01-06T18:30:56.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--145cfc68-41fd-4ef4-b2b9-482d2739b3ac", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.748Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--a3245a4c-9424-4048-b700-9e1db32b64b0", - "modified": "2021-01-06T18:30:56.748Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.641Z", "id": "relationship--c3818d8d-3245-43a3-9241-e0a623f4e13a", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.642Z", "id": "relationship--176aa5a5-4421-4be6-a752-299205114c38", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.749Z", + "created": "2021-01-13T01:52:45.642Z", "id": "relationship--344ed24a-51d8-41e3-9f5e-af394a0e880a", - "modified": "2021-01-06T18:30:56.749Z", + "modified": "2021-01-13T01:52:45.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--78c9c8cb-84f2-43c8-a643-cc7da3411ec7", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--6aa88aad-4260-4476-9839-8f11a305e610", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", + "created": "2021-01-13T01:52:45.643Z", "id": "relationship--8c42374c-c9d8-45c5-9e1b-3ba868a16f94", - "modified": "2021-01-06T18:30:56.751Z", + "modified": "2021-01-13T01:52:45.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--274c4320-3e45-4754-8dc7-caa3f22f831d", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.751Z", - "id": "relationship--802e0729-4884-4783-899b-43c13d34742e", - "modified": "2021-01-06T18:30:56.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--a6351ce9-7a04-4bcd-9818-08d4c5e63200", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--ecbe0b73-a6b2-43a9-8424-f954eed3bce8", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--2dbb76c5-b536-45ec-bd06-122094f383dd", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--381d2525-a52f-4abe-86ad-2c0fe67829d1", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", + "created": "2021-01-13T01:52:45.644Z", "id": "relationship--442c0439-070b-4ef3-bced-e0c00c8a7975", - "modified": "2021-01-06T18:30:56.752Z", + "modified": "2021-01-13T01:52:45.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.752Z", - "id": "relationship--4d54c6a9-281e-4c60-a169-9ccc8e7a20fa", - "modified": "2021-01-06T18:30:56.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--0f3715e8-300f-4cd2-8578-b62d517f1853", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--2cb89e00-3a42-4b21-b605-ee5b56a43478", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", + "created": "2021-01-13T01:52:45.647Z", "id": "relationship--8ca3b2a1-922d-4c4d-b8fd-7327b77bea8c", - "modified": "2021-01-06T18:30:56.754Z", + "modified": "2021-01-13T01:52:45.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--3ac39189-0b03-48d2-9944-aac781d0022c", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--56147a69-30c2-4d97-a5f1-9ff0a5c498b6", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.754Z", - "id": "relationship--52e4d045-a6ac-4b65-bd70-de9059787ba5", - "modified": "2021-01-06T18:30:56.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.755Z", - "id": "relationship--e2d2f78f-43bb-4c68-8256-ae3cc296324f", - "modified": "2021-01-06T18:30:56.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.755Z", + "created": "2021-01-13T01:52:45.648Z", "id": "relationship--fe4ca4ea-548c-4796-b01a-b46b1ed22a9c", - "modified": "2021-01-06T18:30:56.755Z", + "modified": "2021-01-13T01:52:45.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.755Z", + "created": "2021-01-13T01:52:45.648Z", "id": "relationship--3909fa69-06b1-4321-8601-f4b9758ed3ee", - "modified": "2021-01-06T18:30:56.755Z", + "modified": "2021-01-13T01:52:45.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.755Z", - "id": "relationship--052a0c41-7145-4355-914b-8f91b15261c1", - "modified": "2021-01-06T18:30:56.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", - "id": "relationship--0ac63a3e-6a51-4805-ade8-3e340e137456", - "modified": "2021-01-06T18:30:56.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", - "id": "relationship--ddbf3c41-ea20-4ff7-9d12-344f319c6e7b", - "modified": "2021-01-06T18:30:56.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.756Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--3c56684c-4016-4532-a78a-19c1028f887a", - "modified": "2021-01-06T18:30:56.756Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--2fbb2c0c-8117-4a01-9fa4-5cbbca1c4120", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--422b49a4-590d-4d6d-b32e-f30ed75f020d", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", + "created": "2021-01-13T01:52:45.650Z", "id": "relationship--211ea139-c17e-4b1e-abf3-82b15ba42939", - "modified": "2021-01-06T18:30:56.757Z", + "modified": "2021-01-13T01:52:45.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--870e43c2-7a35-4205-8431-c3ae90d35ab1", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--da11c270-0a4e-4fd7-9d2a-6c2144e3c6ad", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--001e9f31-3e45-43ab-80d4-ff90b216660e", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.757Z", - "id": "relationship--67dc6a67-74cc-4348-aafa-086fd0669950", - "modified": "2021-01-06T18:30:56.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--3b9c407f-7d24-4922-bb6d-6002430d3c6a", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--19e83368-e496-4ae3-bfaf-a34081c96d36", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--7f2d6710-fcfb-45ea-b6bc-640425d90225", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", - "id": "relationship--a411ba43-9eee-4bd7-8bfa-2c5c3dd2283f", - "modified": "2021-01-06T18:30:56.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.759Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--43dd5789-774b-47f0-99f1-19d467e9098e", - "modified": "2021-01-06T18:30:56.759Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--9694bb3b-fe3c-4ef9-8128-46e4201f659d", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--28e22e4a-2208-4290-a9d0-7e0e1edb3c79", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.652Z", "id": "relationship--0670f988-a350-41cc-a98c-846ad4202a0d", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", - "id": "relationship--0c628903-1d0b-4413-a6bc-0f601592058e", - "modified": "2021-01-06T18:30:56.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--3dd6291e-a761-4e7e-afcb-a4e0aaabcc02", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", - "id": "relationship--82c9706f-339e-4856-941e-e4901ee1e85d", - "modified": "2021-01-06T18:30:56.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--92292a8b-ceba-4504-b8aa-8ea83ce67229", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.760Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--eed5263d-b7ef-4333-bec0-257f29bb145c", - "modified": "2021-01-06T18:30:56.760Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--d3722233-a775-46a0-b779-486599a8d7ce", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", - "id": "relationship--39006bc1-cb58-4372-b22b-39e2bdb97114", - "modified": "2021-01-06T18:30:56.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.761Z", - "id": "relationship--702977fd-2631-4bb5-ab8a-a89d9f6496d4", - "modified": "2021-01-06T18:30:56.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--69f594c4-f9a8-42aa-8b53-3265cf532f11", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.653Z", "id": "relationship--3245eaf1-47e8-4213-a17d-6ed4157e433e", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--30f1169d-f3f5-4c11-acf0-1b64deb42fb0", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.761Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--70e41dd8-0906-4854-9487-354d8f016cc3", - "modified": "2021-01-06T18:30:56.761Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.762Z", - "id": "relationship--6f14af0e-2040-4de1-bab7-91b53ebd1c82", - "modified": "2021-01-06T18:30:56.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.762Z", + "created": "2021-01-13T01:52:45.654Z", "id": "relationship--4f98fbf1-cd5c-4039-80b2-d2668ab1ec8d", - "modified": "2021-01-06T18:30:56.762Z", + "modified": "2021-01-13T01:52:45.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", - "id": "relationship--0ce114b5-6364-4c18-828e-e2e495e844b0", - "modified": "2021-01-06T18:30:56.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.763Z", - "id": "relationship--5866d81f-5ec8-47d8-82c9-17b8f9fee6a5", - "modified": "2021-01-06T18:30:56.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--daf5134e-4548-4884-91ce-55f057d9bfb8", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--af90c61d-de61-4266-bf67-eee18a02e79b", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--cfa5060c-1fa6-434d-9768-901768814d2c", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.763Z", + "created": "2021-01-13T01:52:45.655Z", "id": "relationship--fb4c27ea-7a94-498d-8aba-74220d2df9fd", - "modified": "2021-01-06T18:30:56.763Z", + "modified": "2021-01-13T01:52:45.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--ace8badf-fa19-4246-a1e7-b38bf4973ea4", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--b41e5bb1-63b5-4db0-8360-441ba6fe76b6", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--c5f8635f-6221-453b-acd9-95fea9a13f3d", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", - "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:56.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.765Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--50172ffd-d6ce-44cc-b445-65b1e0a20bb3", - "modified": "2021-01-06T18:30:56.765Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.765Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--e140d071-a9da-4f8f-be73-8eab1e7aa9c2", - "modified": "2021-01-06T18:30:56.765Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--67e158f0-0047-4039-8a15-b33c82d4a305", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", + "created": "2021-01-13T01:52:45.657Z", "id": "relationship--0bf4bdad-f638-487b-9fc9-058651805703", - "modified": "2021-01-06T18:30:56.766Z", + "modified": "2021-01-13T01:52:45.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--a8c61f82-c94f-4e0c-9726-5c79d6aa30f4", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.766Z", - "id": "relationship--ec881934-bb8d-4d2f-b702-7b6fd5c86a09", - "modified": "2021-01-06T18:30:56.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.767Z", + "created": "2021-01-13T01:52:45.658Z", "id": "relationship--9f0f3bdb-0349-497b-8154-7c40c31e9060", - "modified": "2021-01-06T18:30:56.767Z", + "modified": "2021-01-13T01:52:45.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.767Z", - "id": "relationship--9e58ae18-0402-4179-b1c1-86f81880dcc9", - "modified": "2021-01-06T18:30:56.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.767Z", + "created": "2021-01-13T01:52:45.658Z", "id": "relationship--c267b033-8390-417c-b726-6b08615775f4", - "modified": "2021-01-06T18:30:56.767Z", + "modified": "2021-01-13T01:52:45.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--b0cb6a9f-b77f-4b22-ad5a-c6b587ba709e", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--bb593725-d252-4998-a9b8-3366e2e66f56", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--f2e09003-21c1-4985-9faa-7e7ee2b2be3b", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--836ce798-5dc8-4ba9-8f32-f2f2527d5786", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--f4c821af-dddb-4b24-ab3c-f7e2069e7771", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", - "id": "relationship--fa90af46-b05c-4b02-8acc-cdb74cd6d918", - "modified": "2021-01-06T18:30:56.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.769Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--e70dfd62-dcb1-4f00-a28f-127b35bb617c", - "modified": "2021-01-06T18:30:56.769Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--90dd96be-7b38-4955-83a9-1e2cf00415d7", - "modified": "2021-01-06T18:30:56.770Z", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.770Z", + "created": "2021-01-13T01:52:45.660Z", "id": "relationship--97c5d825-3bab-42bc-a3c8-9dd3c66d5c0b", - "modified": "2021-01-06T18:30:56.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.770Z", - "id": "relationship--3188f5e3-27c3-46bc-852a-0b4cc36b96aa", - "modified": "2021-01-06T18:30:56.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.770Z", - "id": "relationship--c849f173-b3ca-4aed-816c-46f2458d3d01", - "modified": "2021-01-06T18:30:56.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.771Z", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:56.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.771Z", - "id": "relationship--0be36774-6ac0-4498-a7d7-405034be131e", - "modified": "2021-01-06T18:30:56.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--78f6eea0-78fc-4628-845e-6ee09c54daa1", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--4ad39bf2-6f79-418e-a54c-53ed5f0ee204", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--edd17de0-0fe3-4adf-b1f7-cb3381f2bcf5", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--7fe628bd-653a-4ee6-a48d-154809ac990f", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--c896cc2e-5cdc-45ac-8d82-f9cc16e09e8b", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.772Z", - "id": "relationship--fe2391db-54db-493f-8ecf-012ae68f9ce1", - "modified": "2021-01-06T18:30:56.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--436ed7c9-90d5-49bd-a00a-003f1f416d22", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--4064f48d-2215-42ac-8974-6ab68ba8a77f", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--6bef0051-6f92-40a8-942c-4c299e1c9a45", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--492adaaf-0b0a-4cd2-a63a-da61efe212af", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--24197f5a-3a3d-42b1-8095-5be46f060534", - "modified": "2021-01-06T18:30:56.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "modified": "2021-01-13T01:52:45.660Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--71bf308a-3d19-4a2d-8131-195b54f5d591", - "modified": "2021-01-06T18:30:56.773Z", + "created": "2021-01-13T01:52:45.660Z", + "id": "relationship--3188f5e3-27c3-46bc-852a-0b4cc36b96aa", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.773Z", - "id": "relationship--55fdbafd-f808-4ac3-a6c0-7b9e337565fc", - "modified": "2021-01-06T18:30:56.773Z", + "created": "2021-01-13T01:52:45.660Z", + "id": "relationship--c849f173-b3ca-4aed-816c-46f2458d3d01", + "modified": "2021-01-13T01:52:45.660Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--2807298c-4066-4a22-b7ec-21b00b85782b", - "modified": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.663Z", + "id": "relationship--7fe628bd-653a-4ee6-a48d-154809ac990f", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--9dd7b879-5cd1-411e-b60c-9f67ff2a42a7", - "modified": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.663Z", + "id": "relationship--c896cc2e-5cdc-45ac-8d82-f9cc16e09e8b", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--b583ec41-8c6e-499c-b991-caee330f10d5", - "modified": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.663Z", + "id": "relationship--fe2391db-54db-493f-8ecf-012ae68f9ce1", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--acd86d62-31ee-49c7-a4f3-bae6e8423f14", - "modified": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.663Z", + "id": "relationship--436ed7c9-90d5-49bd-a00a-003f1f416d22", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", - "id": "relationship--a8a6e0ee-aa37-4c0e-aa0a-4b5fe0002efc", - "modified": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.663Z", + "id": "relationship--4064f48d-2215-42ac-8974-6ab68ba8a77f", + "modified": "2021-01-13T01:52:45.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", + "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.664Z", + "id": "relationship--24197f5a-3a3d-42b1-8095-5be46f060534", + "modified": "2021-01-13T01:52:45.664Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", + "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--e960f961-79fc-46a9-9524-257bb2cc728a", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--4f851df1-b853-4e2b-97a6-a902225f0693", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.774Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--9d291795-eb5b-43b7-8fde-dd779e2b5400", - "modified": "2021-01-06T18:30:56.774Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--a0caff2a-3906-47a6-9f74-2cfb31896021", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--6348b7ad-5524-4bb7-b722-d09114678576", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--ed8bf38e-c7fe-4176-bdde-bf5552ad1882", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.665Z", "id": "relationship--93a9a2db-b976-4862-b4b6-ddb727e92448", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.775Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--9ddad2de-a39c-4aa9-8950-e1af6b807562", - "modified": "2021-01-06T18:30:56.775Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--704651eb-a69f-431b-a4b5-32ea1cc8392c", - "modified": "2021-01-06T18:30:56.776Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--6ff115b1-1f88-47b6-b530-ffba285b7679", - "modified": "2021-01-06T18:30:56.776Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.776Z", - "id": "relationship--32955df9-6cc5-4e78-bf0a-d9828e23d344", - "modified": "2021-01-06T18:30:56.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--62174f33-6221-430c-91e0-18881c10f648", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--843d6e37-e74b-47bd-b2e2-7428c6703041", - "modified": "2021-01-06T18:30:56.777Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.777Z", + "created": "2021-01-13T01:52:45.666Z", "id": "relationship--ae296517-14c1-4594-9fe6-7533e3012070", - "modified": "2021-01-06T18:30:56.777Z", + "modified": "2021-01-13T01:52:45.666Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--514d7706-feb6-4c80-bec1-2ca9f5ea7919", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.777Z", - "id": "relationship--95527f65-b216-4649-87e6-0882b9a13cb6", - "modified": "2021-01-06T18:30:56.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--4c4d3b01-dcc7-4d83-9e36-36a787475b3e", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", + "created": "2021-01-13T01:52:45.667Z", "id": "relationship--22a7779c-372e-40d9-be36-ca19d19bfdd2", - "modified": "2021-01-06T18:30:56.778Z", + "modified": "2021-01-13T01:52:45.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--ca0fadb2-66cf-4e86-867a-7ee787c6e1c6", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.778Z", - "id": "relationship--95a776b3-e3bb-4399-a5f6-8272d7e5712d", - "modified": "2021-01-06T18:30:56.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.779Z", - "id": "relationship--651364df-6ef9-4d6e-a9a3-49fa2f14b513", - "modified": "2021-01-06T18:30:56.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--86fc1386-aeb4-4b06-abb7-6ae38c400463", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--7aa165fa-5b11-402d-be6b-93a55739a186", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", - "id": "relationship--a237da69-b656-4279-a5f8-0b2af22bc32a", - "modified": "2021-01-06T18:30:56.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ef8a0f29-bd26-4291-8241-beaf58fc6cb9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--5b320557-189e-47f9-a617-2180f9d13ad3", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.668Z", "id": "relationship--8858f181-63d6-45d1-82b1-932614480a34", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d4690961-f8bf-4b46-b2b1-dfc9223fa41c", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", + "created": "2021-01-13T01:52:45.669Z", "id": "relationship--624edbf5-9300-4dd3-b3a7-121822286988", - "modified": "2021-01-06T18:30:56.780Z", + "modified": "2021-01-13T01:52:45.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bc1c70b-8489-4980-8643-7e667570c66d", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.780Z", - "id": "relationship--c8474125-059f-445d-9170-8188683f1afc", - "modified": "2021-01-06T18:30:56.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--860c3e47-8282-4563-a994-3d7b865c024b", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--996a0c59-f278-45b2-b90d-11e0881b2070", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--4da7f98b-94fe-43b7-9ec3-01d376d978b8", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--af7d6f1c-0925-4104-8f20-480d34619a28", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--50f08703-35d7-460d-a32b-b3a4cc7f1495", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.782Z", + "created": "2021-01-13T01:52:45.670Z", "id": "relationship--417b0f54-827b-4c9f-b4b5-c6a6d8e10669", - "modified": "2021-01-06T18:30:56.782Z", + "modified": "2021-01-13T01:52:45.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--b25127c6-edc5-4f7a-ba77-3a8dd88f82ac", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--09ef4032-4220-4866-9ea3-883cb242a1c8", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--bbeeb7eb-e782-459d-8f2d-a860cc7cbd97", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.783Z", + "created": "2021-01-13T01:52:45.671Z", "id": "relationship--63cd5795-aa6e-4dab-b49b-1e02d0d3ff21", - "modified": "2021-01-06T18:30:56.783Z", + "modified": "2021-01-13T01:52:45.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--0519ed30-946f-4179-b9c0-4497ff0caa32", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--3db53f91-a538-4378-a804-a3aa7ffd5a8b", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.786Z", + "created": "2021-01-13T01:52:45.672Z", "id": "relationship--1dc6fc61-00b6-4e62-82b6-16d37c27373f", - "modified": "2021-01-06T18:30:56.786Z", + "modified": "2021-01-13T01:52:45.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.786Z", - "id": "relationship--1c1ff14f-906b-4391-a607-88ca9b78b2e2", - "modified": "2021-01-06T18:30:56.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.787Z", - "id": "relationship--3b7675b5-470e-466f-af19-d8de449cd336", - "modified": "2021-01-06T18:30:56.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.787Z", + "created": "2021-01-13T01:52:45.673Z", "id": "relationship--1fabd42a-fff2-4c09-9bdc-66827dc75293", - "modified": "2021-01-06T18:30:56.787Z", + "modified": "2021-01-13T01:52:45.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.787Z", + "created": "2021-01-13T01:52:45.673Z", "id": "relationship--b25a5bac-fc97-40bb-978c-3df82a37edc1", - "modified": "2021-01-06T18:30:56.787Z", + "modified": "2021-01-13T01:52:45.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.787Z", - "id": "relationship--75d0d317-dbbe-46f6-9dc4-24a297599ab9", - "modified": "2021-01-06T18:30:56.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.788Z", - "id": "relationship--412d5442-dda6-469f-8e5d-47615e36dd82", - "modified": "2021-01-06T18:30:56.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.788Z", - "id": "relationship--da9a5288-da99-4217-9e70-76bf2ff9e890", - "modified": "2021-01-06T18:30:56.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--6aed0805-7b93-42e2-9700-caaeac90cd57", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--14aee21c-c385-4e1d-ad67-4618edc1fe55", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--6cebaf5c-c147-4fc6-a42d-04a3e059b832", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--6cce9b1e-42e6-478b-9f04-fc9987dc34e0", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", + "created": "2021-01-13T01:52:45.674Z", "id": "relationship--30a9189b-9e79-4200-9da0-2f06bfe48e48", - "modified": "2021-01-06T18:30:56.789Z", + "modified": "2021-01-13T01:52:45.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--c0d057ed-6902-4c47-8c59-4b603a1e5d3b", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.789Z", - "id": "relationship--5120318f-eeed-4bda-8efd-1d9983f8f3c9", - "modified": "2021-01-06T18:30:56.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.676Z", "id": "relationship--652c6152-09dc-4977-b0e9-e428b53a71a4", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.676Z", "id": "relationship--23571a16-d9af-4ff0-b750-2b01db781620", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--ba58f6f2-3153-4f2b-8b53-407973c8adc5", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--3160574f-9c57-46da-986b-d4d3534b7ae1", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.791Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--e2398a61-fe65-4fad-8191-4ca122a947f3", - "modified": "2021-01-06T18:30:56.791Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--48b20f40-e078-4365-9f16-ce3119a42d5d", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--af383c0f-8cf7-4a6e-b6ac-1d5182c878c5", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--2e142522-b0c0-4d0d-80f9-13b50458fb9c", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--bcc6868a-ec43-40e1-afa1-2d7975a16c59", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--90902a5e-8493-4c20-8a25-858cfea2e168", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", + "created": "2021-01-13T01:52:45.677Z", "id": "relationship--acb42d64-8dd6-4962-97a9-c6cd3bcb88b4", - "modified": "2021-01-06T18:30:56.792Z", + "modified": "2021-01-13T01:52:45.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--3de3df9e-59c2-4f46-9cfe-272592b0bef8", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.792Z", - "id": "relationship--8b6bac93-8799-4689-a0d8-94276c520427", - "modified": "2021-01-06T18:30:56.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--f40dcbc1-9ecf-479e-9f63-a474dd016690", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--3775ff58-eff3-4279-b941-a87456428f79", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", + "created": "2021-01-13T01:52:45.678Z", "id": "relationship--f49c95d3-3c17-4d5d-b430-a96fe7b090e5", - "modified": "2021-01-06T18:30:56.793Z", + "modified": "2021-01-13T01:52:45.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--8f657b3f-cd9d-43ce-83c9-9f43ba7eaba9", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--2aab9a5c-3f2a-462e-9b87-0ebed329d58d", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.793Z", + "created": "2021-01-13T01:52:45.678Z", "id": "relationship--491400f9-3017-427e-9d78-e1444222519a", - "modified": "2021-01-06T18:30:56.793Z", + "modified": "2021-01-13T01:52:45.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.793Z", - "id": "relationship--f9d68052-23bc-482c-b6c2-e70d84d1f0ec", - "modified": "2021-01-06T18:30:56.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--fc6cd7a1-7199-4937-bcf0-b339f3a3b94a", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--82056438-d444-4376-bcdb-f38f25c4e5ef", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--20489337-33ec-4fde-bdb7-76c0164b96ea", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", + "created": "2021-01-13T01:52:45.679Z", "id": "relationship--13b31aef-ecd3-4e1d-8e6e-499267269941", - "modified": "2021-01-06T18:30:56.794Z", + "modified": "2021-01-13T01:52:45.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--c4cb70ac-2165-4ad5-bc55-852aff08f0f8", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--4bb52f81-869b-4f08-9f44-5c3fee38eb2a", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.794Z", + "created": "2021-01-13T01:52:45.679Z", "id": "relationship--4caac18b-7a04-40e1-adf6-c3ad8152055f", - "modified": "2021-01-06T18:30:56.794Z", + "modified": "2021-01-13T01:52:45.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.794Z", - "id": "relationship--04e11c97-257a-463d-a1bf-87101bb39deb", - "modified": "2021-01-06T18:30:56.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--306f2c5d-dcc7-4d3d-a50e-9c3e3c4f18d5", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--fd709396-7f95-477a-aeb4-75d2c7664699", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--28142779-69e8-4663-9640-48433e51d5a5", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", + "created": "2021-01-13T01:52:45.680Z", "id": "relationship--ff009bde-91e2-47a9-b872-db3c71ab469f", - "modified": "2021-01-06T18:30:56.795Z", + "modified": "2021-01-13T01:52:45.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--56836170-0fa0-4cda-8e35-bcda6b4952f4", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--5f1951f3-c918-435e-a9a5-8f92bbc87f32", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.795Z", + "created": "2021-01-13T01:52:45.681Z", "id": "relationship--15620d63-cb43-4849-82dc-9cf13ea50412", - "modified": "2021-01-06T18:30:56.795Z", + "modified": "2021-01-13T01:52:45.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.795Z", - "id": "relationship--4db46091-7afe-4ace-9826-976751bd770d", - "modified": "2021-01-06T18:30:56.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--a4c8e26e-18d5-44c9-9cc6-e9f51337e106", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--8674efa9-79a1-4b41-82d9-ca3689b49919", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", - "id": "relationship--3fc0ca7b-a631-4e16-91ea-1f7097560a96", - "modified": "2021-01-06T18:30:56.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.796Z", + "created": "2021-01-13T01:52:45.681Z", "id": "relationship--3472da28-4145-48ba-b0f9-bd8fcd29b196", - "modified": "2021-01-06T18:30:56.796Z", + "modified": "2021-01-13T01:52:45.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.797Z", - "id": "relationship--bd2826a1-6be8-49af-ad9f-cf945189c61b", - "modified": "2021-01-06T18:30:56.797Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--a9c6a077-187d-49f0-9847-7d629246c29d", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--d384fb4d-95b0-4b64-9e6c-c23d40e486f9", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--b59e646a-3b00-413e-9ce7-b97fde82365b", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--ec704b12-7088-46c6-a8af-9e7a5115e0f2", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--0bb2413f-d436-45eb-b13d-d2885c1bca92", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--04fb248f-6479-4aa1-a128-a5cbde269523", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.798Z", - "id": "relationship--dd2ac1ea-362f-4468-b326-e4f2cbeac8c8", - "modified": "2021-01-06T18:30:56.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--e41ed91e-c094-4afe-9a20-159285f9290c", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--ead140f2-aba9-4e4f-a3c3-4b1de5b2f8c9", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--ba0f8eda-7710-4a07-a992-3e07c1c204fb", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", + "created": "2021-01-13T01:52:45.684Z", "id": "relationship--b8bf3f8f-dba8-4c70-8a1a-2852caf85036", - "modified": "2021-01-06T18:30:56.799Z", + "modified": "2021-01-13T01:52:45.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e3384b1-9b64-4ebe-8e93-c6a60bf9da05", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.799Z", - "id": "relationship--0f987b5b-8175-4d35-8d0f-69f80af19013", - "modified": "2021-01-06T18:30:56.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.800Z", - "id": "relationship--922d7bce-6a3d-4d67-b909-df8c91f7e85c", - "modified": "2021-01-06T18:30:56.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", - "id": "relationship--158fcbd7-426d-49c3-95b5-069d4da94d11", - "modified": "2021-01-06T18:30:56.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", - "id": "relationship--c36910ad-5157-40e0-addf-9af1e7abcf75", - "modified": "2021-01-06T18:30:56.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--9baa00ca-896f-4900-b00b-bed3255ebaf6", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--a7e653eb-a7ff-43a0-be41-545867f5bfa8", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--9c14216e-42f6-4031-8af3-c5e6aa77e1fc", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.801Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--80cbb550-91df-4d79-8e7a-4e80ad8531f0", - "modified": "2021-01-06T18:30:56.801Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.685Z", "id": "relationship--aa6959ab-8f9f-4bcf-855f-99097d41956f", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--bd3873a5-5f10-46e2-bb59-63adccb47965", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--20bd68a7-d4b2-4e78-9ec7-b482663a5a8c", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--fd14451e-64ac-4377-bd04-e78bbb7202c3", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--08128857-4fb2-44fb-b90b-d254a8cdda14", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--ae722e58-0f97-4d18-b76b-2ef6b67ea4dc", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.802Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--61743c56-b9d7-4c77-a640-5e48985a47a0", - "modified": "2021-01-06T18:30:56.802Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--5a22c73b-ebcb-49b1-9cd2-e425196c9bb5", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--f47401a9-eb5e-47ee-ad8f-b659c84b04bc", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--6f5b5550-755e-446b-bf6d-300b6bd6cfb9", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--93856b85-cff6-4678-976f-b314dc4d515d", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.686Z", "id": "relationship--dd7b7223-d047-4147-9f6c-2eb200d20f62", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.803Z", + "created": "2021-01-13T01:52:45.687Z", "id": "relationship--9acd8b67-2fd1-4f98-9f35-70fb1d0798f5", - "modified": "2021-01-06T18:30:56.803Z", + "modified": "2021-01-13T01:52:45.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--bcc994b0-b1cb-474f-8c05-4d284fb284d5", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--c3bc0e04-cc63-4b44-9d2c-ce5193f2b0b1", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--0bd1dcf0-9238-461f-a778-90f3e154ab84", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--b8a92aad-706c-43b9-8062-6d62250865c5", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.805Z", + "created": "2021-01-13T01:52:45.688Z", "id": "relationship--de8598c6-e85e-4efc-a040-a453901a5d1b", - "modified": "2021-01-06T18:30:56.805Z", + "modified": "2021-01-13T01:52:45.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.805Z", - "id": "relationship--92aeed10-428d-4da2-bef6-6c002a3fbefc", - "modified": "2021-01-06T18:30:56.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.806Z", + "created": "2021-01-13T01:52:45.689Z", "id": "relationship--641c41f9-7004-4da2-9ffc-52dc32213a5d", - "modified": "2021-01-06T18:30:56.806Z", + "modified": "2021-01-13T01:52:45.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.806Z", + "created": "2021-01-13T01:52:45.689Z", "id": "relationship--4e2ce44e-7cfa-49b2-b8c9-8e73c0d575a3", - "modified": "2021-01-06T18:30:56.806Z", + "modified": "2021-01-13T01:52:45.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--1e8ddd69-755b-41d6-b81c-b911db71a414", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--81b488e1-7c07-4a4b-bd68-47fccd56a66b", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.807Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--da55c2e6-5978-47f6-9c20-9f328a576947", - "modified": "2021-01-06T18:30:56.807Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--cf3ee7f1-9d01-4df1-80af-f74d165230a4", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--6f9b333f-0347-4908-a171-81c710de090d", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.690Z", "id": "relationship--f42c48a9-ec0a-4fa4-a3e4-78e432e6de44", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--8f6efb77-c959-4c1a-89e9-00bcf3ddbfaf", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--347660cf-1490-498a-84c5-e45337d4de80", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--8740a03c-4ef3-4879-86db-3e8f6f964be5", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--df043e2d-980b-42ff-b8ad-c768fc13a6be", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.808Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--aae7b879-21d5-4575-bd69-bc6dc6bbb5c1", - "modified": "2021-01-06T18:30:56.808Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.809Z", + "created": "2021-01-13T01:52:45.691Z", "id": "relationship--42f7e2bf-8602-4a82-be9b-8512ba3611b6", - "modified": "2021-01-06T18:30:56.809Z", + "modified": "2021-01-13T01:52:45.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.809Z", - "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:56.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.810Z", + "created": "2021-01-13T01:52:45.692Z", "id": "relationship--bb9f0365-dad9-4671-8d98-26b124e00e48", - "modified": "2021-01-06T18:30:56.810Z", + "modified": "2021-01-13T01:52:45.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.810Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--00052a6f-7b5e-4f9d-9809-7b1827fd24ee", - "modified": "2021-01-06T18:30:56.810Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--2da03a06-0e2f-46b0-bb5d-40aba346e38b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--8ede081e-97b7-4ace-b1b4-6ce8d8b326f0", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--35724757-5003-4357-8971-13f9024191be", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--60d446bc-8fd6-4c97-b6d7-921914264246", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", - "id": "relationship--203a087b-7a81-4e3a-a279-d499c5fbd20d", - "modified": "2021-01-06T18:30:56.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--40df831c-d484-4f97-9752-3e2525efc001", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--14f5f657-fb6e-4ad3-99d0-5447c570fa5b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.811Z", + "created": "2021-01-13T01:52:45.693Z", "id": "relationship--65fb543f-551e-4a43-b035-08a68792918b", - "modified": "2021-01-06T18:30:56.811Z", + "modified": "2021-01-13T01:52:45.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.812Z", + "created": "2021-01-13T01:52:45.694Z", "id": "relationship--834eac3c-301d-4a6f-a7cc-b3d489306018", - "modified": "2021-01-06T18:30:56.812Z", + "modified": "2021-01-13T01:52:45.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.812Z", + "created": "2021-01-13T01:52:45.694Z", "id": "relationship--37703560-0593-4da0-84b7-05f6330c1e9a", - "modified": "2021-01-06T18:30:56.812Z", + "modified": "2021-01-13T01:52:45.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.813Z", - "id": "relationship--9c08577f-18c8-4ee4-b0d7-e118bbc193f2", - "modified": "2021-01-06T18:30:56.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.813Z", - "id": "relationship--e063d1d2-c197-4abd-b6bf-2439adada358", - "modified": "2021-01-06T18:30:56.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.813Z", + "created": "2021-01-13T01:52:45.696Z", "id": "relationship--2266474e-b356-4a9e-9ddd-bbdbb1270423", - "modified": "2021-01-06T18:30:56.813Z", + "modified": "2021-01-13T01:52:45.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.696Z", "id": "relationship--df0aa635-6d4d-4e86-9660-e3e1816d973c", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c6c2a160-9bc5-4be5-b76d-71f091fe502d", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--ebac7630-05e2-4bce-be69-76f9af4d53e8", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--9d8fe4db-0e55-4110-96aa-a1830d281d04", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.814Z", - "id": "relationship--9775284b-0ea3-4e35-bcca-5733771c110b", - "modified": "2021-01-06T18:30:56.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", + "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--b5e127e2-4e24-49cd-86d5-bcf9b5608e69", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.814Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--bd3e4cc4-4cef-4969-a3ea-f6f1990976c0", - "modified": "2021-01-06T18:30:56.814Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--578ced75-685c-4c5c-9909-8fb83b2dd2f5", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--0840c413-e8d6-4c73-a9e3-38c91c5b6182", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--9c26f639-a67f-4506-913e-8977074d4b54", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.697Z", "id": "relationship--3bdbdc08-37eb-4565-afd9-46b0190ebb84", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.815Z", + "created": "2021-01-13T01:52:45.698Z", "id": "relationship--fc50004a-9bc8-4c86-b765-f1807d4a35f1", - "modified": "2021-01-06T18:30:56.815Z", + "modified": "2021-01-13T01:52:45.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--c7d497ab-2e5c-4a46-9a8e-8e8263bb23e2", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--f7d8b9c8-9335-41c8-9101-0df156dfba2d", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--1a8d94cd-3f13-4762-b522-4d447a5d4ddd", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.817Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--13c49aee-1362-42c0-8456-a688d9a8f166", - "modified": "2021-01-06T18:30:56.817Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--0d7b8c55-6ea4-463f-948f-212f4689de7b", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--eda453b2-7c91-4424-ad8f-94c46491d565", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.699Z", "id": "relationship--50341bfb-5a43-40ff-b9f1-93d88ba1d755", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--effc07b3-90a6-4555-8cde-43fa7b2ff792", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.818Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--86c51465-be9a-4db1-a629-5458c21bbf39", - "modified": "2021-01-06T18:30:56.818Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--955c353f-42e8-4041-a364-d30f44843a5e", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--5e52e234-bd2d-4998-aa3a-8233bff2a62e", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.819Z", + "created": "2021-01-13T01:52:45.700Z", "id": "relationship--b31dec2e-4996-4531-b81b-cffa438fd28f", - "modified": "2021-01-06T18:30:56.819Z", + "modified": "2021-01-13T01:52:45.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.820Z", - "id": "relationship--240a4ed4-ebb7-4ae3-ac41-e53261b7fbaf", - "modified": "2021-01-06T18:30:56.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.820Z", - "id": "relationship--5c2faa17-e51d-44ed-947e-3de1be3cfe72", - "modified": "2021-01-06T18:30:56.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", - "id": "relationship--dcd028e3-13a6-4fc4-8fc9-0859a6e8d32c", - "modified": "2021-01-06T18:30:56.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.701Z", "id": "relationship--60750c58-dda5-43ac-93c4-113418d6d9a9", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.701Z", "id": "relationship--f04c6f3b-6670-47a1-83c5-371514e62732", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", - "id": "relationship--52f70eaa-9b91-41b4-bda3-e4e63b1cc9dc", - "modified": "2021-01-06T18:30:56.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--7773d57c-9fbd-4003-a657-c1645f835883", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--691e76ee-5178-463c-89d4-9a1f0c21aaf1", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.821Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--37326877-f9c8-4eaf-b7bc-aebdd90e2cb4", - "modified": "2021-01-06T18:30:56.821Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--7728c165-90d3-4d9c-9751-8779fd2f6498", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--1392f893-c3d4-4b78-8ea5-fa5a78a30cd2", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", + "created": "2021-01-13T01:52:45.702Z", "id": "relationship--23f92a32-728a-4e92-ba60-7d3e60561c62", - "modified": "2021-01-06T18:30:56.822Z", + "modified": "2021-01-13T01:52:45.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.822Z", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--da50bfd6-f360-4f1d-b835-0d8ddcee1f76", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--8cc480aa-aed9-4ab1-91e6-054b9fba1bc4", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--f88e9580-c8bb-47ab-8121-64a11c1af9f5", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.823Z", + "created": "2021-01-13T01:52:45.703Z", "id": "relationship--9178c71d-f943-4404-b76d-4a14a89d2533", - "modified": "2021-01-06T18:30:56.823Z", + "modified": "2021-01-13T01:52:45.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--324ac354-511b-4de8-a32e-4cbd2be60d7c", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--3dfebf6b-658a-414b-bf78-a728a338c6b0", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--9a844f69-749c-444d-9e8f-b4d6bdf7cda7", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--f221f0c6-7228-4075-aa16-3b4a15fd981a", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--8f79b738-97c5-4124-baa8-8cf3d64f9045", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.824Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--b696f0f1-df97-482f-98e1-ac8b7f2395fc", - "modified": "2021-01-06T18:30:56.824Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--eb30ca30-e6be-4f4f-8299-f4cf6f6fa66a", - "modified": "2021-01-06T18:30:56.825Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", + "created": "2021-01-13T01:52:45.704Z", "id": "relationship--baac8c82-644a-493b-a732-b0e5ee657085", - "modified": "2021-01-06T18:30:56.825Z", + "modified": "2021-01-13T01:52:45.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.825Z", - "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:56.825Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.826Z", + "created": "2021-01-13T01:52:45.705Z", "id": "relationship--7a8d2e7f-9ad8-45df-8c90-a00517f37379", - "modified": "2021-01-06T18:30:56.826Z", + "modified": "2021-01-13T01:52:45.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.705Z", "id": "relationship--4d312b4d-25a8-4246-a369-e44a6d88f882", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--c4bf134c-78ee-46fc-900b-c618a7f09c6c", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc516e68-cd65-49b1-8369-cc7c2474a8b8", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--fb73a7e8-b6f6-43f1-9a69-e7ec9d7eab8d", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bf73a0bf-9bb3-4ec3-a56d-64594d510958", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--df19c458-4c84-46f3-abed-63ba01de1fdb", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--ca8413e5-5629-438a-a857-d3532ad27bc9", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.827Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--110848df-2aab-4026-a8f1-a5f221f27011", - "modified": "2021-01-06T18:30:56.827Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--1d23a625-a7ff-4e1c-9b99-f289fe933f41", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adeb7fa8-12a9-4771-9ff9-ac771d7b22f5", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--b5dd2f7c-c1fa-47f7-b514-572ce57b47a7", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--734bcb30-96f6-4d05-b0b4-2ac8a614497c", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--cfdee44c-3e45-4ef3-bbf9-3fe4c7340f81", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5818f645-bb27-48be-8ff2-0f19085dcc58", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--8fdc4e97-9986-4d0d-af34-a4615a6e8131", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", + "created": "2021-01-13T01:52:45.706Z", "id": "relationship--9b663dde-5413-4c35-aa5d-d907ec5ed591", - "modified": "2021-01-06T18:30:56.828Z", + "modified": "2021-01-13T01:52:45.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.828Z", - "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:56.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.829Z", + "created": "2021-01-13T01:52:45.708Z", "id": "relationship--38ac7a25-fbc0-49d3-805c-6df7cd977d6a", - "modified": "2021-01-06T18:30:56.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--8d4b93a2-1eb1-4811-8a23-c05d745d9b30", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--ee8717b5-c71c-477b-b0f7-e7e37046dff7", - "modified": "2021-01-06T18:30:56.830Z", + "modified": "2021-01-13T01:52:45.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--65ba0724-10c3-405f-9ecc-1701bc3036a3", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--c05d1a53-a070-4562-834d-c50dbd500154", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", + "created": "2021-01-13T01:52:45.708Z", "id": "relationship--b44a12ef-1d5d-4404-bf96-82ea05fef807", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--99814ec3-c1c9-4247-a9e9-1faee2f4375b", - "modified": "2021-01-06T18:30:56.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.830Z", - "id": "relationship--3b1953e3-4f70-4724-8b3c-33fce1aee7b7", - "modified": "2021-01-06T18:30:56.830Z", + "modified": "2021-01-13T01:52:45.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--4c663817-68d4-4c9c-95f0-b9c2a26a37a5", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:56.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--714a8bdd-3ebf-4ded-8620-27b0b2b3709f", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--9c5e5c55-2b72-4740-b69a-0da5f02df4be", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.831Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--fa77fb41-f476-4ec8-9ea6-09977e322964", - "modified": "2021-01-06T18:30:56.831Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da5b3a6c-922f-487a-9547-863d421fb1da", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--1f964a18-8254-4e9b-a610-f1a454d369ff", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--b0621221-b5bf-4ad7-bd47-1ddda820959c", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--61a2ac9b-d469-4ad5-bc44-8989bc3759e3", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.709Z", "id": "relationship--9860495c-0a1e-4baf-b333-254b924ea68a", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--e4bc1f7d-af80-4660-81bf-2438a3d7c52a", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", - "id": "relationship--58c8ddc4-e265-4e75-812d-23a9f1fb3b3d", - "modified": "2021-01-06T18:30:56.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--86476ee9-0bb4-4049-991c-9986fe42612a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.832Z", + "created": "2021-01-13T01:52:45.710Z", "id": "relationship--d5954a58-1105-429a-8d03-ed3c00dda8b6", - "modified": "2021-01-06T18:30:56.832Z", + "modified": "2021-01-13T01:52:45.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.833Z", - "id": "relationship--5fc946aa-0172-4890-a78c-10e3e9b94fb0", - "modified": "2021-01-06T18:30:56.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.833Z", - "id": "relationship--4949fed8-f262-47ef-9112-895fd6de4da9", - "modified": "2021-01-06T18:30:56.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.835Z", + "created": "2021-01-13T01:52:45.711Z", "id": "relationship--f4549a89-9bfd-44c4-99b0-f54f00cd0082", - "modified": "2021-01-06T18:30:56.835Z", + "modified": "2021-01-13T01:52:45.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.711Z", "id": "relationship--33aac7fc-5bb9-4a92-ba24-63449855467a", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--fdd9f99a-feaf-46d6-a495-6d9e9bbd03ad", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--a53d9c02-ce3c-475d-99ef-8fe59c677452", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--68e41a68-9ec2-410f-9372-e3292331cd84", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.836Z", + "created": "2021-01-13T01:52:45.712Z", "id": "relationship--d9e79a24-712e-4191-b525-22aeab9d7790", - "modified": "2021-01-06T18:30:56.836Z", + "modified": "2021-01-13T01:52:45.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.838Z", + "created": "2021-01-13T01:52:45.714Z", "id": "relationship--fcae3393-4516-4822-a512-1c94199a67d1", - "modified": "2021-01-06T18:30:56.838Z", + "modified": "2021-01-13T01:52:45.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.838Z", + "created": "2021-01-13T01:52:45.714Z", "id": "relationship--1099c427-5ad4-4bbc-a7e7-a0ec36436383", - "modified": "2021-01-06T18:30:56.838Z", + "modified": "2021-01-13T01:52:45.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--6e912249-b7a8-4198-8161-b0e3bfebed24", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--333bc28a-12df-44c5-a794-1173c4f1bdc0", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--8fc7feed-bd36-4afa-8f8e-495c8d2f9a34", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.839Z", + "created": "2021-01-13T01:52:45.715Z", "id": "relationship--56d4b4e1-dd52-4d8f-a557-ec84c84b674d", - "modified": "2021-01-06T18:30:56.839Z", + "modified": "2021-01-13T01:52:45.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--0982c5fc-106a-436d-ae26-5094a2e7967d", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--efb54fb9-8ccc-46ad-8f45-21698a8b384e", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--d590fb85-caf2-4cfe-aa55-50bac6d69afd", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--6d7ab4f7-b0c0-47fe-a22f-04a7eb57b675", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--58e502a4-de64-4086-8d3c-a89098b135d2", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--a1682d29-df04-4623-a64c-2a462804052b", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.840Z", + "created": "2021-01-13T01:52:45.716Z", "id": "relationship--1dd8663a-5a11-4d45-b0f6-51d008890a32", - "modified": "2021-01-06T18:30:56.840Z", + "modified": "2021-01-13T01:52:45.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.840Z", - "id": "relationship--f4a42b5b-a733-46c3-bbeb-146bddb440a7", - "modified": "2021-01-06T18:30:56.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--21fa35d7-e3e9-4d86-868d-8c322286c051", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", + "created": "2021-01-13T01:52:45.717Z", "id": "relationship--492da6a5-5354-4ff4-b9b3-82dfe1a60fb9", - "modified": "2021-01-06T18:30:56.842Z", + "modified": "2021-01-13T01:52:45.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--6835fae2-4634-4332-b788-cc05a74e3181", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.842Z", - "id": "relationship--4569c481-7cd1-4d7b-8010-45c0ede7f2d6", - "modified": "2021-01-06T18:30:56.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.843Z", + "created": "2021-01-13T01:52:45.718Z", "id": "relationship--a1cc4ac2-df0b-474e-8e0a-db97ac2e53b0", - "modified": "2021-01-06T18:30:56.843Z", + "modified": "2021-01-13T01:52:45.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.843Z", + "created": "2021-01-13T01:52:45.718Z", "id": "relationship--9ffed294-f596-4925-b53a-5a33184e38f0", - "modified": "2021-01-06T18:30:56.843Z", + "modified": "2021-01-13T01:52:45.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--941b5343-c3fd-4abd-88d9-ed0e9c1408cc", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--b200c624-32b3-42a3-9509-5026b0031b2e", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.845Z", + "created": "2021-01-13T01:52:45.719Z", "id": "relationship--afea85eb-76e6-4e6e-a7f2-fed7e75c0ab6", - "modified": "2021-01-06T18:30:56.845Z", + "modified": "2021-01-13T01:52:45.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.846Z", - "id": "relationship--7d9113c6-4604-44d8-a4cb-dafbabda429a", - "modified": "2021-01-06T18:30:56.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.846Z", - "id": "relationship--8acff36d-4217-4807-8c5f-a6c99421e76d", - "modified": "2021-01-06T18:30:56.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.847Z", + "created": "2021-01-13T01:52:45.720Z", "id": "relationship--0eec9fe1-bc81-4c23-aae9-f6584cd5aa9c", - "modified": "2021-01-06T18:30:56.847Z", + "modified": "2021-01-13T01:52:45.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", + "created": "2021-01-13T01:52:45.721Z", "id": "relationship--ac34f175-151a-43a9-8c0f-810b175cd167", - "modified": "2021-01-06T18:30:56.848Z", + "modified": "2021-01-13T01:52:45.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", + "created": "2021-01-13T01:52:45.721Z", "id": "relationship--152e36f3-104f-4bf1-a846-774032dba0f3", - "modified": "2021-01-06T18:30:56.848Z", + "modified": "2021-01-13T01:52:45.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.848Z", - "id": "relationship--86b7252d-7ae6-4a6a-a4a3-3a048422f25d", - "modified": "2021-01-06T18:30:56.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.848Z", - "id": "relationship--94431bbe-5379-41ea-8901-c2cfa42c9ce5", - "modified": "2021-01-06T18:30:56.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--98dc0485-c55b-4585-9bc3-6f3481982577", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--6fc411d0-e021-431b-9fa4-c63cffeb7284", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--40400dc6-d9e7-422e-b581-2b7d00a92b2f", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.849Z", - "id": "relationship--e4d010ba-de5d-4d62-a61b-80e67a53cbcd", - "modified": "2021-01-06T18:30:56.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.852Z", - "description": "Continuous Monitoring", - "id": "relationship--f1119991-bb3c-454b-b2ed-d7837bb09946", - "modified": "2021-01-06T18:30:56.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.854Z", - "description": "System Monitoring", - "id": "relationship--6fc557f6-8109-4bc4-839e-0d3993646ff8", - "modified": "2021-01-06T18:30:56.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.854Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.723Z", "id": "relationship--c7dafb2d-afac-4776-be91-c1ee89368c25", - "modified": "2021-01-06T18:30:56.854Z", + "modified": "2021-01-13T01:52:45.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.856Z", - "description": "Continuous Monitoring", - "id": "relationship--06b33ad1-70c6-4d63-8ecc-8c1bf1a3cee4", - "modified": "2021-01-06T18:30:56.856Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.857Z", - "description": "System Monitoring", - "id": "relationship--63e77486-01d0-42f7-8bea-855deb83b65b", - "modified": "2021-01-06T18:30:56.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.857Z", - "description": "System Monitoring", - "id": "relationship--fa273daa-f23b-4954-bd50-8c11a2a5d54a", - "modified": "2021-01-06T18:30:56.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.859Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.726Z", "id": "relationship--abed5a24-d643-43be-906a-24f748661f08", - "modified": "2021-01-06T18:30:56.859Z", + "modified": "2021-01-13T01:52:45.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.860Z", - "description": "System Monitoring", - "id": "relationship--37703560-0593-4da0-84b7-05f6330c1e9a", - "modified": "2021-01-06T18:30:56.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.860Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.728Z", "id": "relationship--fd32e680-b86f-4e80-8fae-de85e9ddc28c", - "modified": "2021-01-06T18:30:56.860Z", + "modified": "2021-01-13T01:52:45.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.862Z", - "description": "Continuous Monitoring", - "id": "relationship--298f45ac-e5ae-4a87-be10-efecfaded690", - "modified": "2021-01-06T18:30:56.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.864Z", - "description": "System Monitoring", - "id": "relationship--3bdbdc08-37eb-4565-afd9-46b0190ebb84", - "modified": "2021-01-06T18:30:56.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.864Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.731Z", "id": "relationship--8e7053ce-ae62-48b8-93ab-afb713646ecc", - "modified": "2021-01-06T18:30:56.864Z", + "modified": "2021-01-13T01:52:45.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.866Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.732Z", "id": "relationship--483331ef-251a-4543-8af8-9d1b6c4ebaa2", - "modified": "2021-01-06T18:30:56.866Z", + "modified": "2021-01-13T01:52:45.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.868Z", - "description": "System Monitoring", - "id": "relationship--b31dec2e-4996-4531-b81b-cffa438fd28f", - "modified": "2021-01-06T18:30:56.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.869Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.733Z", "id": "relationship--12b9af92-5522-4811-8ff1-7689dcbf2c9f", - "modified": "2021-01-06T18:30:56.869Z", + "modified": "2021-01-13T01:52:45.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.870Z", - "description": "Continuous Monitoring", - "id": "relationship--ab4400d8-d00b-4e26-b717-c92b26e5c618", - "modified": "2021-01-06T18:30:56.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.872Z", - "description": "System Monitoring", - "id": "relationship--b18c2423-cde8-4a39-b2ba-a37a3fa32d57", - "modified": "2021-01-06T18:30:56.872Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.872Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.735Z", "id": "relationship--9bcf318b-c085-44fc-929c-3e0d50d97499", - "modified": "2021-01-06T18:30:56.872Z", + "modified": "2021-01-13T01:52:45.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.874Z", - "description": "Continuous Monitoring", - "id": "relationship--ad8b6fc9-d63d-42b1-a64b-0ff61997d6b0", - "modified": "2021-01-06T18:30:56.874Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.876Z", - "description": "System Monitoring", - "id": "relationship--33f0e319-be7e-4d8b-924e-b0bb0e94be78", - "modified": "2021-01-06T18:30:56.876Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.876Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.737Z", "id": "relationship--ee801d10-6a8a-492f-82ac-df3c013a473a", - "modified": "2021-01-06T18:30:56.876Z", + "modified": "2021-01-13T01:52:45.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.878Z", - "description": "Continuous Monitoring", - "id": "relationship--3c7eb290-48cf-4be7-91ee-ce18bac74f2d", - "modified": "2021-01-06T18:30:56.878Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.879Z", - "description": "System Monitoring", - "id": "relationship--c03fcd70-5390-40b2-8b28-745f5df84925", - "modified": "2021-01-06T18:30:56.879Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.879Z", - "description": "System Monitoring", + "created": "2021-01-13T01:52:45.739Z", "id": "relationship--4bcd67cb-b38b-41a1-8312-5b8ff83ac022", - "modified": "2021-01-06T18:30:56.879Z", + "modified": "2021-01-13T01:52:45.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--018a308c-fce8-496d-ae6a-cd3ac01277fd", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--eddcf992-62b5-46b7-90c6-866c484bb1be", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.881Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.740Z", "id": "relationship--72f2ac30-6c66-411a-82dd-76861b16581a", - "modified": "2021-01-06T18:30:56.881Z", + "modified": "2021-01-13T01:52:45.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.882Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--7ef5ae87-66ef-4aeb-ba10-5a4ad5a3331c", - "modified": "2021-01-06T18:30:56.882Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--548ad602-7337-48ee-a6e8-2d1a028807e1", - "modified": "2021-01-06T18:30:56.883Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--af3d8438-7819-4773-bf89-725af1b33a64", - "modified": "2021-01-06T18:30:56.883Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.883Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.741Z", "id": "relationship--57b42754-6462-4d63-9a5c-0756ec7e495a", - "modified": "2021-01-06T18:30:56.883Z", + "modified": "2021-01-13T01:52:45.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--85b7a213-17f0-4060-9435-b9471ad37753", - "modified": "2021-01-06T18:30:56.884Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--faf481c5-5baf-4f1f-ac5b-2ddb00b154a6", - "modified": "2021-01-06T18:30:56.884Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.884Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--93f83c94-04a6-44af-9436-0435d9875b1c", - "modified": "2021-01-06T18:30:56.884Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.885Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:52:45.742Z", "id": "relationship--7b9206af-de50-43d3-b418-a0edee35569f", - "modified": "2021-01-06T18:30:56.885Z", + "modified": "2021-01-13T01:52:45.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.885Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--bef76ab1-465f-446b-9f42-78d4f3ae0dbc", - "modified": "2021-01-06T18:30:56.885Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--45b43e39-475f-4d69-ba57-bda60b9c6d26", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.887Z", - "description": "Flaw Remediation", - "id": "relationship--aae7b879-21d5-4575-bd69-bc6dc6bbb5c1", - "modified": "2021-01-06T18:30:56.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.889Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.744Z", "id": "relationship--dabb2954-da6b-463f-afe8-b0de92e39502", - "modified": "2021-01-06T18:30:56.889Z", + "modified": "2021-01-13T01:52:45.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--50fd277a-af39-4950-b186-57c4a8542361", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--f07a1014-848e-45fa-bdea-6ac40ad82570", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--f5f9dbe4-aaf9-4572-a6cc-bca82ad55e79", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.891Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.747Z", "id": "relationship--d3354d50-a5dc-4e50-8ad8-2343a4b64d7f", - "modified": "2021-01-06T18:30:56.891Z", + "modified": "2021-01-13T01:52:45.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.893Z", - "description": "Baseline Configuration", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.893Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.893Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--5ca6082e-3d01-4750-839b-3a37cb720e98", - "modified": "2021-01-06T18:30:56.893Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.894Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--188aee4b-eadd-43cd-850e-4265043b9259", - "modified": "2021-01-06T18:30:56.894Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.894Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.749Z", "id": "relationship--42676682-9dfb-4830-99fd-c94d546415b8", - "modified": "2021-01-06T18:30:56.894Z", + "modified": "2021-01-13T01:52:45.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.895Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.750Z", "id": "relationship--27eb81b2-3a3f-4f2f-a033-0a39bcf6a66d", - "modified": "2021-01-06T18:30:56.895Z", + "modified": "2021-01-13T01:52:45.750Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.896Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.751Z", "id": "relationship--99b9c7c0-0687-4e0a-88cb-719a1e96559d", - "modified": "2021-01-06T18:30:56.896Z", + "modified": "2021-01-13T01:52:45.751Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.898Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.752Z", "id": "relationship--a1133d08-6060-4602-a836-67af96ca2fcb", - "modified": "2021-01-06T18:30:56.898Z", + "modified": "2021-01-13T01:52:45.752Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.900Z", - "description": "Vulnerability Scanning", - "id": "relationship--9dae6268-83d9-41bf-87eb-1b10f5cb15b9", - "modified": "2021-01-06T18:30:56.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.902Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--b668c0b1-dbd2-4f9b-bed9-198f5cf8c9ab", - "modified": "2021-01-06T18:30:56.902Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.902Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--63ea419c-c06f-4b0f-9808-9c35ca413468", - "modified": "2021-01-06T18:30:56.902Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.903Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.754Z", "id": "relationship--c9ade789-3b7a-48a9-936c-c08210139966", - "modified": "2021-01-06T18:30:56.903Z", + "modified": "2021-01-13T01:52:45.754Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.904Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--80eeb6b6-4aac-4400-be78-da04581eaa0d", - "modified": "2021-01-06T18:30:56.904Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.904Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--bda3d811-2107-4dfb-9a72-79f2f6a84544", - "modified": "2021-01-06T18:30:56.904Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.905Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:52:45.756Z", "id": "relationship--833852ac-450b-46c1-a4ff-61715d547b10", - "modified": "2021-01-06T18:30:56.905Z", + "modified": "2021-01-13T01:52:45.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--de0d5baf-90ec-4e40-8c79-1b4f79188f0c", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--c4fc19f2-5952-4ff4-a0b3-f7cada0d3cab", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--7b4ec88f-31cb-4154-a40e-843dccbf068b", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.906Z", - "description": "Vulnerability Scanning", - "id": "relationship--b98f20bf-110e-48c4-8023-8a72026b9879", - "modified": "2021-01-06T18:30:56.906Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d717ee0f-e3f6-4e01-a709-09c869c147a7", - "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.907Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--179fdb4d-d730-4810-9c0b-fe6c524ea458", - "modified": "2021-01-06T18:30:56.907Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--4b7aa4e4-55e4-45bc-9c9f-26826f03ffbb", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--b43f66a4-3efc-499a-84b6-c127a713c70a", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--de2a8b87-08d3-4c01-9e8e-a8e1bb6c61a3", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--bb2d7a81-802d-4e67-8b8a-f2c99f3896ec", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.908Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:52:45.758Z", "id": "relationship--d7cc0477-2f3d-40ae-9292-dc1e56b50b82", - "modified": "2021-01-06T18:30:56.908Z", + "modified": "2021-01-13T01:52:45.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d3d3ce3-5b02-43f0-9336-87030c88e4e5", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.909Z", - "description": "Flaw Remediation", - "id": "relationship--1392f893-c3d4-4b78-8ea5-fa5a78a30cd2", - "modified": "2021-01-06T18:30:56.909Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.911Z", - "description": "Flaw Remediation", - "id": "relationship--eb30ca30-e6be-4f4f-8299-f4cf6f6fa66a", - "modified": "2021-01-06T18:30:56.911Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.912Z", - "description": "Flaw Remediation", - "id": "relationship--8fdc4e97-9986-4d0d-af34-a4615a6e8131", - "modified": "2021-01-06T18:30:56.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.914Z", - "description": "Flaw Remediation", - "id": "relationship--1023e63c-417e-4372-8617-8cff4bb2e6c4", - "modified": "2021-01-06T18:30:56.914Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.915Z", - "description": "Flaw Remediation", - "id": "relationship--b5a16153-be26-43d9-abb8-54e0f69bb33e", - "modified": "2021-01-06T18:30:56.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.915Z", - "description": "Flaw Remediation", - "id": "relationship--09efc3dd-53c3-46ce-b28b-9be67934887c", - "modified": "2021-01-06T18:30:56.915Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.918Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.766Z", "id": "relationship--a62858b9-3a70-4ade-ae71-79a5981a0d81", - "modified": "2021-01-06T18:30:56.918Z", + "modified": "2021-01-13T01:52:45.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.919Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--36c180aa-e929-41af-9990-e5f8ff92069f", - "modified": "2021-01-06T18:30:56.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", - "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.922Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:52:45.768Z", "id": "relationship--aa2089e9-f3dd-4ff7-a686-e1654bace028", - "modified": "2021-01-06T18:30:56.922Z", + "modified": "2021-01-13T01:52:45.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.924Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.769Z", "id": "relationship--8794f8b1-b35f-44b4-ac1f-b7334c441235", - "modified": "2021-01-06T18:30:56.924Z", + "modified": "2021-01-13T01:52:45.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.926Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.770Z", "id": "relationship--ae54d4e5-5dc9-4e06-ae29-234477c5f60c", - "modified": "2021-01-06T18:30:56.926Z", + "modified": "2021-01-13T01:52:45.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.928Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.771Z", "id": "relationship--03d9080b-39b9-4c0e-8efd-d7c61a4e9eeb", - "modified": "2021-01-06T18:30:56.928Z", + "modified": "2021-01-13T01:52:45.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.930Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.772Z", "id": "relationship--f77c1bb1-c4f9-448c-89c9-7abf3e82e0c2", - "modified": "2021-01-06T18:30:56.930Z", + "modified": "2021-01-13T01:52:45.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.931Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.772Z", "id": "relationship--d422190a-2c57-43c4-87a2-2a2051657a13", - "modified": "2021-01-06T18:30:56.931Z", + "modified": "2021-01-13T01:52:45.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.933Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.773Z", "id": "relationship--0cee3abf-3996-4b45-92d1-264a9f2d6f9a", - "modified": "2021-01-06T18:30:56.933Z", + "modified": "2021-01-13T01:52:45.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.934Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:52:45.773Z", "id": "relationship--c077dd02-afef-4f0b-a35e-90c5b477bd73", - "modified": "2021-01-06T18:30:56.934Z", + "modified": "2021-01-13T01:52:45.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--94a32f9d-2384-4f1e-8e62-ea2e7dc60c9a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.937Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.774Z", "id": "relationship--b35e5b83-b24e-432d-b2bc-a8b407ff6163", - "modified": "2021-01-06T18:30:56.937Z", + "modified": "2021-01-13T01:52:45.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.937Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", - "id": "relationship--8c4cfb08-5f7d-44c0-a445-163745a832b4", - "modified": "2021-01-06T18:30:56.937Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.938Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.774Z", "id": "relationship--ea243d72-091e-487b-9d02-6eb9a2160c99", - "modified": "2021-01-06T18:30:56.938Z", + "modified": "2021-01-13T01:52:45.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.938Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:52:45.775Z", "id": "relationship--b838144d-1df7-4c8f-8ee8-22829e8760f0", - "modified": "2021-01-06T18:30:56.938Z", + "modified": "2021-01-13T01:52:45.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cbce7f45-69d6-4543-b33e-be0d0a7a43d6", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.941Z", - "description": "least privilege", + "created": "2021-01-13T01:52:45.776Z", "id": "relationship--3211ea4b-18ef-4f1d-9b9b-55b8968e5655", - "modified": "2021-01-06T18:30:56.941Z", + "modified": "2021-01-13T01:52:45.776Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.943Z", - "description": "Configuration settings, least functionality", - "id": "relationship--7681d97a-9202-4b33-a21d-16ef457c4f67", - "modified": "2021-01-06T18:30:56.943Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.944Z", - "description": "Configuration settings, least functionality", - "id": "relationship--40529816-a38c-4da3-a326-f92a50005638", - "modified": "2021-01-06T18:30:56.944Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.946Z", - "description": "Least privilege", - "id": "relationship--af2cea86-3cd6-4c85-a121-cfe2bbcfdea2", - "modified": "2021-01-06T18:30:56.946Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.948Z", - "description": "Identification and authentication (organizational users)", - "id": "relationship--8936150a-aed9-43f6-912f-3b0709738393", - "modified": "2021-01-06T18:30:56.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d5ada136-7efc-4296-aed9-838d4b109652", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.951Z", - "description": "Configuration settings", - "id": "relationship--7f55ab7b-3570-4ae4-ad87-18317f5b9e27", - "modified": "2021-01-06T18:30:56.951Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.953Z", - "description": "Information flow enforcement", - "id": "relationship--fd38d22f-aa31-4281-aec2-42a47d65d789", - "modified": "2021-01-06T18:30:56.953Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.955Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:52:45.783Z", "id": "relationship--cec98f90-7a84-45ca-abbe-94a892d1fe5d", - "modified": "2021-01-06T18:30:56.955Z", + "modified": "2021-01-13T01:52:45.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.955Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--acb42d64-8dd6-4962-97a9-c6cd3bcb88b4", - "modified": "2021-01-06T18:30:56.955Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.956Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:52:45.784Z", "id": "relationship--f64787b5-cc1b-4a04-90c4-555d64aabc64", - "modified": "2021-01-06T18:30:56.956Z", + "modified": "2021-01-13T01:52:45.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.956Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--f49c95d3-3c17-4d5d-b430-a96fe7b090e5", - "modified": "2021-01-06T18:30:56.956Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.958Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.786Z", "id": "relationship--c001cfad-be9b-4427-b6ab-a3c39b182aa1", - "modified": "2021-01-06T18:30:56.958Z", + "modified": "2021-01-13T01:52:45.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--02bb69a3-1c0d-4b5f-915d-79d0d86cad6e", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--74cdb913-36e0-4bab-8b29-3f590853a4d7", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.959Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--8989fe20-3f17-4960-8382-cd14d56a2ca1", - "modified": "2021-01-06T18:30:56.959Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.960Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.787Z", "id": "relationship--b9c9b04a-2e9e-490b-ab32-916ce6fd3633", - "modified": "2021-01-06T18:30:56.960Z", + "modified": "2021-01-13T01:52:45.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--271506e8-a93e-4644-b6f4-48d68e99585c", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--c18cb75e-5a7e-4b1f-a443-c9341ca82b96", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.961Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.788Z", "id": "relationship--a6a53648-2862-408e-9e0a-fd887195916d", - "modified": "2021-01-06T18:30:56.961Z", + "modified": "2021-01-13T01:52:45.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.962Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.789Z", "id": "relationship--db0747c3-d67a-4d4b-871a-a6baa356db4c", - "modified": "2021-01-06T18:30:56.962Z", + "modified": "2021-01-13T01:52:45.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.962Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.789Z", "id": "relationship--fd473f5a-f308-4352-a36b-b0a397f4eb42", - "modified": "2021-01-06T18:30:56.962Z", + "modified": "2021-01-13T01:52:45.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.963Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.790Z", "id": "relationship--3a159692-eaea-45de-bb5a-e5d816aff575", - "modified": "2021-01-06T18:30:56.963Z", + "modified": "2021-01-13T01:52:45.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.964Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.791Z", "id": "relationship--d2610289-e209-4f02-8a45-c3193c4c0467", - "modified": "2021-01-06T18:30:56.964Z", + "modified": "2021-01-13T01:52:45.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.791Z", "id": "relationship--51b22451-e332-43ec-9365-b12e994a303a", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a1b13008-023b-4686-bd23-a35be47f6d84", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--e7e95e62-6b3b-4730-a197-75efb4c3e5ed", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--26b1a301-fe54-48f7-8fcb-e6a8710ae2e7", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.965Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:52:45.792Z", "id": "relationship--31d59c19-5e18-48ec-b393-07b47ea2a2b2", - "modified": "2021-01-06T18:30:56.965Z", + "modified": "2021-01-13T01:52:45.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.966Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--5c160b3b-32c3-4062-94bd-639b96809373", - "modified": "2021-01-06T18:30:56.966Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.966Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--1c6cc3c6-1387-4649-a573-67f251021234", - "modified": "2021-01-06T18:30:56.966Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.967Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.793Z", "id": "relationship--59d4121e-7720-46fd-b574-e699b55203fc", - "modified": "2021-01-06T18:30:56.967Z", + "modified": "2021-01-13T01:52:45.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.968Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.794Z", "id": "relationship--3871a9a7-c41e-4953-84cd-597eeb1f57b9", - "modified": "2021-01-06T18:30:56.968Z", + "modified": "2021-01-13T01:52:45.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.968Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.794Z", "id": "relationship--e9ef82e7-5bde-47b8-ac99-42ae0480d8f9", - "modified": "2021-01-06T18:30:56.968Z", + "modified": "2021-01-13T01:52:45.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.796Z", "id": "relationship--5a86d698-46f8-4977-8488-90fa9faf48b1", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.796Z", "id": "relationship--996d9a45-9541-4b4b-970f-b3039c93cf83", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.797Z", "id": "relationship--e5977c44-34f6-4bfd-b492-001d691dc69f", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.969Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.797Z", "id": "relationship--2fa3c645-383b-4f6a-af38-6c9d77ccd39f", - "modified": "2021-01-06T18:30:56.969Z", + "modified": "2021-01-13T01:52:45.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.970Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.798Z", "id": "relationship--ab5551f1-55f9-420d-aa28-d077e084d547", - "modified": "2021-01-06T18:30:56.970Z", + "modified": "2021-01-13T01:52:45.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.970Z", - "description": "System Monitoring, malware", - "id": "relationship--30135648-de30-4879-af1f-e02862359e9d", - "modified": "2021-01-06T18:30:56.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.971Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.798Z", "id": "relationship--51613e31-c245-4122-b3d9-0a7b14c416ba", - "modified": "2021-01-06T18:30:56.971Z", + "modified": "2021-01-13T01:52:45.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.972Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.799Z", "id": "relationship--ff1d2592-2ea8-45dc-ac64-5b37cda3b68a", - "modified": "2021-01-06T18:30:56.972Z", + "modified": "2021-01-13T01:52:45.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.972Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.799Z", "id": "relationship--f3577919-fae1-4fb5-bffc-1cf254ab17fa", - "modified": "2021-01-06T18:30:56.972Z", + "modified": "2021-01-13T01:52:45.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.973Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.800Z", "id": "relationship--731855c9-df46-4f7c-aebb-eca2d1871c0a", - "modified": "2021-01-06T18:30:56.973Z", + "modified": "2021-01-13T01:52:45.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.973Z", - "description": "Configuring system settings", - "id": "relationship--4ff00de4-192e-435d-937e-9eba29a30f60", - "modified": "2021-01-06T18:30:56.973Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.801Z", "id": "relationship--8baea121-20c1-464d-9ce3-de3f62126b71", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.801Z", "id": "relationship--9c77f4e0-63c5-4a5e-82bd-0b2922f05856", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.974Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--9d6b365b-657a-434e-9356-f90499c4e0af", - "modified": "2021-01-06T18:30:56.974Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--c75c3749-f72f-47e3-b583-30887da4b214", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.802Z", "id": "relationship--1970e7a5-8981-4f6f-adfa-f27fd24b6956", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.976Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--88212897-5765-41a8-acaf-3ffd1d8656bd", - "modified": "2021-01-06T18:30:56.976Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--b5fd0765-2b29-40d3-a49f-e5627d0eba29", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--1ac1f00f-2b4c-45ad-a824-53373ae847fc", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--0c843b43-25fe-4a81-a72a-da7491b7683e", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--69ad114e-efad-47ad-8d89-d07a9fe585da", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--9db86c68-442e-473b-ba3b-b49325773a1c", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.977Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--a1873993-4b44-443c-918f-f6802c4f9ec6", - "modified": "2021-01-06T18:30:56.977Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--340a3d96-0271-4755-b8dc-c7af9b1afd57", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.803Z", "id": "relationship--3635872c-b28e-4350-9eb1-57430997c930", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.978Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--b6b34cac-f848-4ea7-aa57-5f21559c25c0", - "modified": "2021-01-06T18:30:56.978Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--1cbfb031-840d-4b83-893c-78b2a6792986", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.804Z", "id": "relationship--bc3c1786-2d91-4c71-bccb-c91931f4cb5e", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--a69ce45e-0b14-4633-9bf2-cd41d574afce", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--a123ba15-d955-44e8-ba4f-7395de847155", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--b86e2590-233a-4a0e-9e39-b2366f0d812e", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.979Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--f265ce20-92de-40db-b46e-011bbddf0f0c", - "modified": "2021-01-06T18:30:56.979Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--96b7ef41-8fd5-4068-a743-861795730dbb", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--1cb6cfc4-6931-4462-a6c3-87e943f46255", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.980Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.805Z", "id": "relationship--aaf1e2ee-cbc3-481c-bb36-4db283af452a", - "modified": "2021-01-06T18:30:56.980Z", + "modified": "2021-01-13T01:52:45.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--aab07d01-645a-4bb5-bdfb-b51dfed55ae9", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--6b86f374-d3bb-4ffa-83c5-2e181b632503", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--1a30a556-61e8-4fa9-9027-24421679093f", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.981Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--b84283b4-5d1b-4d00-abfb-a3851823daca", - "modified": "2021-01-06T18:30:56.981Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.982Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.806Z", "id": "relationship--a57123ee-9fa3-49c9-92d2-0e397e99ea32", - "modified": "2021-01-06T18:30:56.982Z", + "modified": "2021-01-13T01:52:45.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.982Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.807Z", "id": "relationship--0a2fd5c6-4c48-44f3-9724-dd388de65276", - "modified": "2021-01-06T18:30:56.982Z", + "modified": "2021-01-13T01:52:45.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.983Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--4764ac47-59d3-4659-bd66-5568a85bd0c2", - "modified": "2021-01-06T18:30:56.983Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.984Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--d0602cdb-ff8e-4942-afc4-1bdff05e58ee", - "modified": "2021-01-06T18:30:56.984Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.984Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:52:45.808Z", "id": "relationship--f9a7fb55-e261-41e6-aacb-3491e7041431", - "modified": "2021-01-06T18:30:56.984Z", + "modified": "2021-01-13T01:52:45.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--c81caeb8-b4f9-4eef-abb0-08ef466c61fa", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--ccec7363-a7d3-47ee-86b9-23430175c839", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.985Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--b052ca1b-d933-420e-9218-0defcd9c9a34", - "modified": "2021-01-06T18:30:56.985Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--75ac6083-ba19-4afc-b246-cb36e7e7dfec", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--e488c265-d993-4ead-b39c-652d62bd1e20", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--00377d89-d7e9-4c43-88e4-1a959c5b04f0", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--11a71f35-440b-4df2-9e46-1673690599f1", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a34310c5-87a3-4c99-ac9e-7ddd2145b872", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--2f6a7735-c685-4ecf-9767-e1e045840bbc", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.809Z", "id": "relationship--437b792b-efb5-4bb2-9bc5-c2481a3b4fbc", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.986Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--7ba14eda-1137-45dd-ade1-5b300da57c50", - "modified": "2021-01-06T18:30:56.986Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ae7664d9-b652-4e3c-9555-a6f093aaaa49", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--35a74383-ceaa-4f2e-8ac5-72b507a49e3e", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--3a6b2083-ed23-4f15-bcc0-e6255dc7122f", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.987Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:52:45.810Z", "id": "relationship--b7d105bd-e78e-4e50-8a79-aad1d18e33a3", - "modified": "2021-01-06T18:30:56.987Z", + "modified": "2021-01-13T01:52:45.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f3f84280-7efd-4342-ae14-f602fa52ece4", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--f5b4821e-eb77-4bdf-9d75-ceffbbf4df1b", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--1983e284-6804-4c72-a3d9-96e84897676d", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--d9b5c7c6-9af9-45e1-896f-782f64eb9d8f", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--1b583693-9766-44df-bea6-bfd3021c123b", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--55efda52-b977-4494-b266-91fbbe0260e6", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.988Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:52:45.811Z", "id": "relationship--0f106e15-daf1-494e-93c5-bc60b7a65824", - "modified": "2021-01-06T18:30:56.988Z", + "modified": "2021-01-13T01:52:45.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.813Z", "id": "relationship--37ff872d-1be2-42a7-89d0-d0ca0c275d42", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.813Z", "id": "relationship--f4be5281-b603-44d4-84b6-5255cf1a9df1", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.989Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--b0463c30-d991-41e2-a885-3568f3cf8ac9", - "modified": "2021-01-06T18:30:56.989Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--f05c3c74-8d6c-46f3-9628-3ccbfcf8539c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--bf88d1ff-7ccf-401f-a625-775e50b17d44", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--2c5e0341-d98c-4a9e-803f-e08edbb38bcb", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--96106cb3-c6c4-4778-a766-2a24785a7e0c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--1dbf37da-4b74-4147-b5d8-c029d8fbde5f", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.990Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:52:45.814Z", "id": "relationship--1319be0e-1d13-44ab-a576-4cce5237402c", - "modified": "2021-01-06T18:30:56.990Z", + "modified": "2021-01-13T01:52:45.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.991Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:52:45.816Z", "id": "relationship--4982f038-718c-4234-a8fb-d9ad2c574b12", - "modified": "2021-01-06T18:30:56.991Z", + "modified": "2021-01-13T01:52:45.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.992Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:52:45.816Z", "id": "relationship--c51f5b7e-912c-41fd-a62a-893c5c516149", - "modified": "2021-01-06T18:30:56.992Z", + "modified": "2021-01-13T01:52:45.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.993Z", - "description": "baseline configuration", - "id": "relationship--786d58ec-edfb-4b77-b232-b2334b64d6a4", - "modified": "2021-01-06T18:30:56.993Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--13074299-ac45-4924-8318-8a59d4f4baaa", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--3c7df7d4-4612-4b15-bdc6-011f86725bb4", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--1714eb88-cd7a-453b-861d-6cae9a1956ec", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--a2dd2078-8190-4418-830a-ebccb9ee13c2", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--211c4deb-da02-46df-a20c-48599e4bd050", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.995Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:52:45.818Z", "id": "relationship--1a75bab9-ece5-427e-b9b8-f21136f394bd", - "modified": "2021-01-06T18:30:56.995Z", + "modified": "2021-01-13T01:52:45.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8f177ec2-51af-4d02-9a99-b2ebd6ad2da0", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.996Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:52:45.819Z", "id": "relationship--878f8972-779e-474b-a856-d3e493dd69b8", - "modified": "2021-01-06T18:30:56.996Z", + "modified": "2021-01-13T01:52:45.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.996Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:52:45.819Z", "id": "relationship--b59a87ee-dd96-46f1-b2e0-9dde1ae8979b", - "modified": "2021-01-06T18:30:56.996Z", + "modified": "2021-01-13T01:52:45.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--41eac1a5-aa09-40c6-ab18-5f960cb10b3a", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.997Z", - "description": "session authenticity", + "created": "2021-01-13T01:52:45.820Z", "id": "relationship--11a23f90-3656-4705-aae4-41c7d596990b", - "modified": "2021-01-06T18:30:56.997Z", + "modified": "2021-01-13T01:52:45.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--59bd0dec-f8b2-4b9a-9141-37a1e6899761", "type": "relationship" }, { - "created": "2021-01-06T18:30:56.999Z", - "description": "configuration settings", - "id": "relationship--f3434fb7-18af-483c-8cee-cf1b8781f83c", - "modified": "2021-01-06T18:30:56.999Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.001Z", - "description": "User-installed software", + "created": "2021-01-13T01:52:45.822Z", "id": "relationship--ff5e8a47-7b9a-40ed-9f22-6ce485d5afd9", - "modified": "2021-01-06T18:30:57.001Z", + "modified": "2021-01-13T01:52:45.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.823Z", "id": "relationship--460392c7-0b19-4d2e-9a56-84e35409cc1d", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.823Z", "id": "relationship--493af70f-4c90-4fcd-afcb-b332cc25626c", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.002Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:52:45.824Z", "id": "relationship--648025e7-e904-449b-847c-7dc093073d51", - "modified": "2021-01-06T18:30:57.002Z", + "modified": "2021-01-13T01:52:45.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9adf1226-14bc-49bb-bf18-b47e220f1d0a", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.004Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:52:45.824Z", "id": "relationship--6479119a-cc59-4b3e-8144-3d97fdde9427", - "modified": "2021-01-06T18:30:57.004Z", + "modified": "2021-01-13T01:52:45.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.006Z", - "description": "Service identification and authentication", + "created": "2021-01-13T01:52:45.826Z", "id": "relationship--533491fc-4e04-4175-a60c-5fcb6592aae0", - "modified": "2021-01-06T18:30:57.006Z", + "modified": "2021-01-13T01:52:45.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--2941056e-838a-406f-ab19-894d53278575", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--b0f88df3-ca51-45ef-9d1f-41181318e904", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aecb9372-b097-4af0-97a8-8c10935803d9", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.008Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:52:45.827Z", "id": "relationship--cc23fb9f-562b-4141-a717-fda5d5638789", - "modified": "2021-01-06T18:30:57.008Z", + "modified": "2021-01-13T01:52:45.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a4ef7583-966b-4757-a135-3ba4063f1111", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.010Z", - "description": "Configuration settings, least functionality, software usage restrictions", - "id": "relationship--05aa1c33-c3f4-458e-98fc-aa3bc1c64baf", - "modified": "2021-01-06T18:30:57.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.011Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.828Z", "id": "relationship--24504c58-4627-49d8-8661-1847bbc4f530", - "modified": "2021-01-06T18:30:57.011Z", + "modified": "2021-01-13T01:52:45.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.011Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.828Z", "id": "relationship--28333925-ae4a-4f0a-b6e1-758f8887c047", - "modified": "2021-01-06T18:30:57.011Z", + "modified": "2021-01-13T01:52:45.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--b2e3c6b5-b54d-4be5-acef-efcec2ee024e", - "modified": "2021-01-06T18:30:57.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c461368b-d51c-447f-a45e-ccef6250d1a6", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--706986b2-4be8-4239-995d-afdcdcde4c33", - "modified": "2021-01-06T18:30:57.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.012Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.831Z", "id": "relationship--94688c50-e753-49b9-b0cd-0a3bdce79427", - "modified": "2021-01-06T18:30:57.012Z", + "modified": "2021-01-13T01:52:45.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.013Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:52:45.831Z", "id": "relationship--7bf1680b-2de2-4ee0-887a-bcec3952d75c", - "modified": "2021-01-06T18:30:57.013Z", + "modified": "2021-01-13T01:52:45.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ce18047a-2b65-4e9b-9c81-7ffe9a477890", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.014Z", - "description": "Transmission Confidentiality and Integrity", + "created": "2021-01-13T01:52:45.832Z", "id": "relationship--a928fc13-5338-431f-b036-cab4210b0cad", - "modified": "2021-01-06T18:30:57.014Z", + "modified": "2021-01-13T01:52:45.832Z", "relationship_type": "mitigates", "source_ref": "course-of-action--45ab2f94-ed95-4e45-ad9e-1e6919488484", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.015Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--153779e9-644e-4cb9-bd11-574002301aa7", - "modified": "2021-01-06T18:30:57.015Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.016Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--2e9efa6c-9dd2-4a1f-9b22-4f9d082a2591", - "modified": "2021-01-06T18:30:57.016Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.016Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:52:45.833Z", "id": "relationship--fed5ecc1-13fd-4d47-9068-8d01a16cbe74", - "modified": "2021-01-06T18:30:57.016Z", + "modified": "2021-01-13T01:52:45.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--2f2cf4da-ebb3-4cf2-8084-9cb97a14b7e2", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--3b51da8e-b86f-438f-9d61-152a4e8435ba", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.018Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:52:45.834Z", "id": "relationship--865af8a0-4938-4561-a956-9cc9f73349c4", - "modified": "2021-01-06T18:30:57.018Z", + "modified": "2021-01-13T01:52:45.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--bd97be7e-2687-4c64-986f-60aa29ab301d", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--a8464aee-a789-4178-8810-4c70bc66c354", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--b79f53c5-75da-4d69-a36d-1ca85cf82492", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2f1c406e-ad68-411c-87ad-ca4723601b0a", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--a21ff8b5-2dd0-46b9-8620-8d8ffb478d30", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--de930fa7-9234-410a-93c7-02d473285933", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.020Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:52:45.835Z", "id": "relationship--0547d55e-5020-4432-98eb-5fe3a685f59d", - "modified": "2021-01-06T18:30:57.020Z", + "modified": "2021-01-13T01:52:45.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a31426ad-ae8c-4cc1-a52c-97dc3112361c", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.836Z", "id": "relationship--65e69abc-9157-42a6-9416-be2dc6821460", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--09a23af3-1f15-4eea-bc5c-09c195e5d8c3", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.022Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--1e9ebcc8-7a69-4ff2-baef-22ea455a56db", - "modified": "2021-01-06T18:30:57.022Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--700fe7f0-cc4d-4c19-8741-0f18cbf73b6d", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--71578f6e-3b0a-4b74-a811-0ab442642b5c", - "modified": "2021-01-06T18:30:57.023Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--7c16e52b-e15b-47bd-a569-55da1dd813ac", - "modified": "2021-01-06T18:30:57.023Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--dc07084f-e5bb-474e-96c0-283f0fb5da75", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f13b8659-a64a-40be-a276-f5a4fa320040", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.023Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--612e41e8-03bd-48fa-abb8-45fee4c4ff9c", - "modified": "2021-01-06T18:30:57.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.837Z", "id": "relationship--51338335-e001-4a15-8ad9-ed037f10d155", - "modified": "2021-01-06T18:30:57.024Z", + "modified": "2021-01-13T01:52:45.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b9487ca7-fcd1-47e4-bb56-5695400cb01b", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--ee368629-1044-4cd2-baf5-ca835f5c0c91", - "modified": "2021-01-06T18:30:57.024Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--8ad867db-7b9a-4652-ac4e-5b3668d9bee5", - "modified": "2021-01-06T18:30:57.024Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.024Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--50f5fb69-4078-483a-a426-f59996ebf152", - "modified": "2021-01-06T18:30:57.024Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a5689293-d44d-4b50-9391-3495b014697f", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--284c6f6e-3141-437e-977b-11f25cca4226", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.838Z", "id": "relationship--e276041d-67e0-45ba-8f9b-428d4bc445bb", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--c6855074-369a-4c42-bb2b-b8f5afe34097", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--da6a5d0d-0907-4d5a-84f3-5cf61e3cdef5", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.026Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--9d9776ef-0da2-4b7c-a815-197b77b4f414", - "modified": "2021-01-06T18:30:57.026Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--3ad4cb9f-4744-4073-8e93-5a496f84c347", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--8011c141-45ad-4a98-bad5-6fdc26c2222d", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--5bb45909-5641-4da1-90cc-7753c639dfc0", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--a90ae1f7-9196-46c9-890b-701e75c804a2", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.027Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:52:45.839Z", "id": "relationship--1ffd10cd-dfe2-421b-9b97-fef59ccb719a", - "modified": "2021-01-06T18:30:57.027Z", + "modified": "2021-01-13T01:52:45.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:30:57.028Z", - "id": "relationship--5486d6a2-8659-4a26-91d3-309e8ba5f97f", - "modified": "2021-01-06T18:30:57.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--f9512a90-b071-4081-a35b-57abffdedc8f", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--51ebffd1-b946-4f03-b226-cd33f1223bdd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--3df3ca2d-50c1-4e70-a8c1-e636d1abe5d0", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.029Z", - "id": "relationship--b5293a5e-88ab-4f4c-b1dd-e9c41d54594e", - "modified": "2021-01-06T18:30:57.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c933b2a7-c7fb-4af7-8e9a-1f62b366929d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--1c5c389d-227d-4ef6-a1b8-9759a3e49fc4", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--2df3fdfe-1fe5-4faf-9921-a7c274d34af5", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--394162af-08af-4525-8aff-a83e86c595ee", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.030Z", - "id": "relationship--3ec8ecac-678b-48ec-bf58-645017597063", - "modified": "2021-01-06T18:30:57.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.031Z", - "id": "relationship--de8763bc-1e76-4a02-a45a-ce370d228e8c", - "modified": "2021-01-06T18:30:57.031Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f8e7157c-aa13-4494-b061-95cb77c4588d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.032Z", - "id": "relationship--88072258-a79c-4604-b4a4-feb5e064f6ec", - "modified": "2021-01-06T18:30:57.032Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.033Z", - "id": "relationship--a537cf3e-4958-467d-bb2e-bd82ae21b9ca", - "modified": "2021-01-06T18:30:57.033Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--804585fa-483f-4dcd-b321-b9950d9c16f6", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.034Z", - "id": "relationship--ae6e9f5b-f284-47dc-a299-b288220a74bf", - "modified": "2021-01-06T18:30:57.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.034Z", - "id": "relationship--e462c2ea-df87-4b35-9353-e7e8869b0612", - "modified": "2021-01-06T18:30:57.034Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7b3ead39-894a-44dd-a842-bf65bb203ce5", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.035Z", - "id": "relationship--1fd01a47-be61-4670-83c9-c9a21c705936", - "modified": "2021-01-06T18:30:57.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.035Z", - "id": "relationship--991fd8b1-05f4-46df-ae8c-ccd11dd0e910", - "modified": "2021-01-06T18:30:57.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--6308a156-907e-48eb-aab6-12d96467c08b", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--30e69d35-64dc-4d7a-8259-221e4751d1f7", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0bc39d9c-53c0-464a-9ae9-cdb44927277b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.036Z", - "id": "relationship--d44c5a9c-b51d-4890-8d70-1e8cf780a9ed", - "modified": "2021-01-06T18:30:57.036Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.037Z", - "id": "relationship--2f0d1fc9-5040-44c1-9d08-13a8be7a37a7", - "modified": "2021-01-06T18:30:57.037Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--dfe24981-186c-43b9-b235-814d3fcce0b1", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.038Z", - "id": "relationship--3ccdc9d2-e7f0-4b6e-a478-f10e1eeeb224", - "modified": "2021-01-06T18:30:57.038Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.038Z", - "id": "relationship--c8a982e3-ae47-4984-8872-3c6748594b1b", - "modified": "2021-01-06T18:30:57.038Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6fd56f1a-8f77-45f1-9098-5a44670e4032", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.040Z", - "id": "relationship--cb0fdb99-7bd7-4d2f-9bcc-966cf3f6d001", - "modified": "2021-01-06T18:30:57.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--459cf561-c9e3-4f35-a00d-459c925d59a9", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:30:57.042Z", + "created": "2021-01-13T01:52:45.847Z", "id": "relationship--27ee44ca-7c39-4566-9467-b530b7f86200", - "modified": "2021-01-06T18:30:57.042Z", + "modified": "2021-01-13T01:52:45.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d593d3e6-81fa-4bf2-9e02-7ef60bead735", "target_ref": "attack-pattern--391d824f-0ef1-47a0-b0ee-c59a75e27670", From a3e62ba4bfd12f9e593befda4ebb8d06036ca6a9 Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Tue, 12 Jan 2021 21:43:25 -0500 Subject: [PATCH 3/3] update CHANGELOG.md --- CHANGELOG.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f8c3486..efdcc60e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,13 +13,7 @@ -# 7 January 2021 -## nist800-53-r4 v1.1 and nist800-53-r5 v1.1 +# 12 January 2021 ### Fixes -- Fixed broken regex which was leading to erroneous mappings, in particular mappings to control enhancements. See issue [#56](https://github.com/center-for-threat-informed-defense/attack-control-framework-mappings/issues/56). - -# 15 December 2020 -### New Features -- Initial release of security control framework mapping methodology and tools. -- Initial release of NIST 800-53 R4 mappings to ATT&CK version 8.1. -- Initial release of NIST 800-53 R5 mappings to ATT&CK version 8.1. \ No newline at end of file +- Fixes parse_mappings.py for nist800-53-r4 and nist800-53-r5 to remove duplicate entries in "mitigates" +- Rerun make.py to update all content based on the fix

1To{(EaH1-P#wJ8%=A=Cya0}$ zm8=#eUHVO!VcjVvoZcB5jmW0g1=*-j+A@__**@JTN8p~fH#YuiX`gm;`|P!ztIb<1 zkYZrc=UoQm;y9wnbx&XNO=It0o*%it-#ch;Yw(-P^$OTJ0Zbw`K|1E|St6!gHf)Qb z@u);BR8o0<)l)s3{qg+5HD;#$wze@-mgJ2v)4Vh4fq0?71i@N*nf3Le4;a-Xc2 zHKlB-$CL*0)Rbn`jGMo#n4T1u@!h5{+rw1PGTfy5G1tWKJ1OY9lJQOA+_{gXjMP=m z;At_*zVB^Z)5HIslOalKV0Rw4y-K-DIw=O)%9Na}hRaUcxD37~-olB5{b|my@4seCA;bSML;W-ZVuaNh_GQUJN@@nktejm_?vd_@p-!0R zVlS^u@f-RwFT2&xW;fT0k57JC@O;n}&=y=M7zj0P$V%zP4~Qdb<8F&#fY3(tK1?kd z@Wa)p`f40>{JTAVb$sJmzi9D*Jv?T3?K?JSw-r}h=fZAJf>RI#@~wXTVC8g@h<(t zK4V0BT8Fy)b(UcvK$a*cxJKr`K8@tedr%{Ob>DGjI3J`OnM0BjUCt4revmlea%em!k4U z456%eQ?L-{dw6}BcRFn722JeQKbcAHS5nhalMd8@*36VyzgyuVwl%wezmg6OcCXTs zd|8n!JjL<1s5BOljlfDC8YR~P`pH?$xup1l3Ge_y3^SYydgtc27FC` zP&@MrMfQ`~1a^tOgM-u7 z&X*P8WHQ(Y%Yb8Um?ALNcY&FH;3UGN(Ig>sdo=7lYJL5u^!9o^i?NTwq&~WtntB^d z>UChB#Y@(hRVa@OMAWBCe_jEMZab%cXZEM7C(+Sig!nSZ5X*pbZgm1d9ZFlN(j27v zsDR@ql}`MSR-z8sw!~xzzUPxDo5!26pF*0{bng>qco^%wWVi0b0u{ERemX5kt6l{t7fm9Bm2heG%{c2-2a|&XzpRfZat1fH3so8(IAXAI`nP1 zin>GnT9sR6tGHKL z37J+V2<`oE4ru?I0}jiQuaftx(kKDu83YE7Kc4&=*v~N2Theg@D;-@{wl=xx58#^c zFyaD}1?HDgG@=`dG_{1({$!EQQ42>7`o(SSI^adO3JGuP_DVSy*S&orso0mMrHM9# zJpBhW|B;;R$+`h_D{02FcI7v%*jrow)*wHnl|5>iJMM`Ql08%YpTJ|&9S=WXOY}9? z7t^2m(zy-5$)c550hJ#-U?Q zl2lt5o!zyZyjhAJq&8p$KcaRwfMc(OUdO)it<2-}8)ba=yT$wA>cb@WC~cZg;D3B5 zxDt*jE&kJEj}6|eBFoCax!7aLbhbY}r_DSv^B>n=jIG_xwE-dta?n`i9FK5br#Xoz zjCu^Ws@~tbx!J&tCr}cV9CtR}&6cT9jBd=jDroy|?gAY8dt8pJ8X(MI-cVE-zF1TL zT`YI+%Ks|zWe^=wPL5T1lxC};q`KD}x1HOfVN0HoF8q`qrDp3fG$h?xQaxgd+qQ1i zaD`>C*mtk}GZs-_aG9+4EHcErCRih0|2R2am7C;% zZPqxN`$yXfuaVdN-QzITCLM*Wsn0!ZuJ@6}}*CK}o*WR>l) zbVX?VTTiixe9KGeT5WyFe!7()Z7mL{2;We?+*Yl}2k+E|LDS7Np^Rq56GHN}3eA2t z7^tz^M0FQPmsZ62QrPVF31!O8i1Bu@c+z9H&spN%6pcG^%ZsU47G~Neju#n-vqbN= zSpys$uw)?BkZ*!sYulnWIzu(%owg;r&P0PJaRP=``TKAKvdZ)+oE{Gp$)+ z0<0DSep#{h<_unz#yRAG zU({;+c@^#|J$hTLQJ+?G`rd_-?w7lAoSwNvCv&A<{sHZeH;2B6*wzB2Q>GVwh-3AjGG*tGIp zdQ!3ce3NodH|;2h&UL^axeCD?cly6B&RbvW+*Oj2((+~-va-JRYJM*jKxs2GG+jQs zZF2dbddBKvAq|wI{(C-c^brPN=6z&I#)pf|& zH933mWZvp@Aq{1({@&gOLj?I_yk$+jh|HBpGcWf8yVE05yW_?7Xd`zZdx3lh7)opV zuWIYw6vE%^gF(-9(`py-KNb;KcP!~WpdnUVuL@efrN_A7SA&{gjVe4iAemPgb+ya)IX1_YIu_NR5O^yfcF`&6Kw z8GrYUhaC9=MOLm)N2_NG51My6>R~J9^nDWOh65@tlaEdg<|#w{CH~d3^VhXGvKjtm znTL9|=I<$ctx!FC_NYmn(l5FlM<0I zy7upt-(>6M?#}F9+ZxX}zI{prhCDxZzUNJ?t3)!V~F zrCr5Z)jfNTs0N+WzkG3OB{H}BttV|VCZ(xmhWs)v`D@=%ZwD!qn7(})xu2+0Os&Q> zf&K!jaI*In$k?1^+Y%8&>X+!Na^upu#?_?kzxI@v%}l~RU+mH%GBOMKfW&kluEyb1 zn1wO)FerCXgO~?OL^Zi+iqLPyR+A$ts+|fyiWrL+mT&VzJpa2jq{#`iP>4ZXkRgrN&vG&$)vYeV_t47k?N<)AN{ zXFZHCy>Hwbv<3MFqBkx@J5n~)?RL&Z&d;(l| zLp1`|t)c788{DyPz@B2{p7@=g;3EctBx01RIZtBqwb*)9zw-G*0>#J!lUhSH5kdaR ztRJN9C6(f&vg6SDCopPfI%+O|!ppg<6K*6WqPGg*h&N%`_)M9qJjtu9NqZ3hG$$^n=voM)#bWgnd7q_0k!~e5y>;NWxOew2x zZ@~vOnaASLHziMd#ejyt)Fjp_3cndOzkWXl(fldDH(-Z!Dfb#A z_tnU(?SonY%C;5NTI^G*O?=*v%DP{srBz^7v8QPfb{2!b!Qb+=*cVu*Ct)tmb@~Qa z+m=N5=kHKIr5y2rqK!9&*%*^C^HR2C7(?=_ito@Ur5v$o2#0GS;O8k?l+KqyxmQg; zJ=N60umWPeZVZD!?~T+`fxm+GJ6#%}vL~R0K$CxvB%q0KW3t+mqZ+CCJDt_VPvIPt zazG-pM~VK6#w4c!O)_`O6$@G%(VT`Y%O)D1N^CtuTu-Z!uew~_g@J{N?Oro#1WXQPfTGnAj=n7Zk1HAaQS^t2lv{VW^*5o__CNwU2ZdLQULC(!#O zp!af+Si~K>fY*1OFp(rS@`Ll>_dw@!S?MOBDQ$OGDMvag&Ol!k*1wt3OxLgW?6S)Nj;hot zjx{NH@}exsV?YgS-0BgI&xGu=Jd4%%1borUWQg8<(J@U^zMo$ca}*1u2(V1LjfFient-Ig za3;jlbej))^^u#F3eh`ncf}~P_ke{s9b<_3byw~*9I{-%CyZXJMAWmS5L!4g@sUyo zuz=gB4p!w%K){FR0l54Gj#r3I{CD9*O&mc-%<3!a+~-sXqtK3S_EzGqP>*osMvfrn zJ1~*i+b8L3RepQTdYo@_>90j87&7d zbS6t#9A|1zpq=n9m5j8G3iXR*4So0G8HL58-38S+1;OG8|A`cjP-g+IwXRq7%NkX) z2kc?4HSiC!tOnj$2n%tORY8{3JNn{`W9$30oB|p4p42-)H7m`e)L@@v2YS5d9diOn ze)(4ctgGQ#RO&Fpj^-5gB(YPUWIuW$rIwk7%%;?L-fnV}^{iTppA~pN>a4R5HD-RX zJP}oWE#x9w?$lQ%4u(`MVsqwVE+;G_%#JnR4Bz;1J#UEYKg13bq_Ol`H2S)7R4A?KgTY>n!JS^vqf2Y=KO5k?ao&V((7 z-5)xa%hJUAyvwU!Ef_tDcW!(W%0W+a#g?>U)4lvwT&-_4Ys%#5)B)>5j8-W};lb2h zQYHozWz3n%ud)nBv0kw0`Nb9 z6U>Ho@t`*|q!CK4oTK+pXZ7*jf;#|F?G^vZ<$}q*w_;=gK!G6s##~)TXTW=S8v&!^ z$_M;Oumt5>`N3B)=OrRb)sK<}mX_KSJ*;UL>H9KkC!o7ZIYvA{7w=Io@q_p259Zy= zp#IrJvN%&iLPj^g(huS1dmIEzE1cLQtp6pYRI?pRva9aI+HG_ zN}sse(JAmizE&wflrlv~+D(sICbu``W{UP!y`4#d=DMnM_8U}j-dubN50<$+~ zYm7q?&uMkBZN_GXNxNw>5vPk-99lw`j;F|!WcXQTi-`f1Ht;f#7xiXs18M2&0Bokf7dtjDDBn?#1$+TXFAcAjCAk%;I z>h;FVk=|9U0h3{IVBZ?k#Ray*mTO=Cy3h&ZvTx7edgJWcW8WWWlUAporePLd*fvzp zA7|7Ez#f}bxau$-YFE@#4PrEG3o!cO^ZxQjTjAwkm_n5>nH?Y+rn%~dkjOfq5FzC$F<4v zxn87>hN#*{_8bt=e$&H=?coJ5L9C5bMuZ^l`vZGY7emmuNA_fp#u!vcGjsuHl>Nci zxiH;B@6f2oqJzXD1f+}abvbeV%JaPYVuhzl1PPoV4{$0~&HylEg|tlZAZ3|}DP*XY zfLa4-T{z*uI68eJ*u~dGt&iQ}fE>v6&8AYDd)KGv7!y| z)+aFX(!`Q!E26BZRw(m-*FQMA6sBYJ#!QNaKK%SkH@$n}<=y(+0MAPlYY#knTBX5- z&c18S%)_*NC?Rx^7upb8O_>HTKi8LZ|M3D|-2i09CYuofaUJ`9CpCdQK#X3lyu?4K z{$kJV+tg{hmcqb!#M=QatU2OL2b6lYqw$Gu^TAHG>{G4tq)Y6V%Of%@Itf+eWMR{< zx;ttlNWn9|E1(g9by9j6$Z@Zv= z{S_iQ;r?0?+B*go%^&%SS2)feLWp7}gHq`dR>EwMo`&Qk!ez?y1u0c}iMLDL&bREd zTZ8jL$@ggf-1{#ez$vCiv&{o*3F0OrLnH(dIDXo_{$4zM5E42#5qZ30uzC=n_-w7D zuP2#5L=)+YPECudGaiZC4Qp??kOFE8C-7sj0ZzHUQUyJAIMRvK9EL|f zDH7y<1TC|*;MA;~(Ds3FZfL+OZUr*L%pnnI_;OJh|`Uhyk*J!4F;0x zpV{XBN%5}I<1+oC;PX=bAVRUe2&$-D15Hs*L|{Ve$M z2r9hf1VRBLd0yz*a!#%11mUY2_<~&GgK>Vez1yviV-k|vd?s|O_H6Cz?;;~9Fi_+N z?VkWY1(J(ybyov#U*LbXNEyPd6b_nSMB8F>sYCqQ8)X;_O{C%!1dPkE5T9E>$mf=8 z16_>DG+Qh4Kg4-Ywk|t@0NsPuTc4iDKiA$%`uqo947KWcj01~jSt_{s$PvFT_qcf1 zuDx{(`1!sX#@9ts-Qzu1)ctch#c0j2xw5MUfP7BF5;khScRe>d=*XQK(+YxRpP<3SVVwc%d0ouN>f`NTh?U zXG;QSd|LSi&sU-bg`o-}>RKm=S>1BMrm4u_D%dH1VW#swRvHABNY#UzHfm>02NjKRDmr& z(4vk5jt=MRGysfgGf{)qjJrykxl9Ga;d7)<$@te;nmzQRRrwYzPAkU6nD3xlD}h*> z45#5_U9z7Hbj*;RPVb!G%~~^PmDEq*myW1?9ft|h#Q>)C&6h1&B38vN-#PVlLBe8C zU!bQ!?8|&Y?cs;gP+!XceFhjOh4_=GwXb6Ks&4JyYJd1#vZYT!hqhK^s&znzqDUZk zVimmD!ql*d*Q^z08QF}UHbg~OXodm6{OKa8`@rQMUZYi*1^Z&edsNR?%~<>N80iAa zyphL*Kqu=^3w~?7iWu>??dgthK!8Ak0pU$!ypu3UJAfTkS-t#d;u5is4Q z+)aW1VCQuhXlwPdPG`mHAe2@>U96wEL+|6+<&|$>$oJLY*8c)m4=TDPAILPe&$vp)~ue6y~D#FWm_9zX(RBrTResS#f&;9W>e6O-9ziKCH9DA{LnYc zn^1TpebkJ)A|@?b?8`vtGmAqrNt}9(*`#=l!POk0s=7AY}icasLsrbo=Gmtr;%kw`q0CCP{l5&D}=PO?VUzD1k7zzT`I zR4Sw+jX!-|7)@5CopS0A_?VsWgTiV%^k7`Nz1U4WwQX+M+`RIlQ#ywxoVW*|pWlXgG0N5zd&ty*Mrk2C zM8g%9Htbe;i{Bxe1>^oN0ABtV^v0$43FXXkWp!rCh(?ztqr5$VGsf|APh zGNqRhzTD?@tvG3M1RHw!oZ}`--#p!Kl}i@ue3Xj!+*s< z_T6N%X-qg8bCmzNxcSF*n-K7m4Eko9{eiyW+Gn$vL$M~aWw%OR*3K`i;m=)XCdYn~ zn`QN3>|z?omcz2wAS;7y9mZ9`OTT3P?lrW%&dy#w=p7NhQpwT6&hczY25}9BB=xc% zOXOH_D_vZ+X;zYIzxpLxae=Gem=f~y-%dQH*FxPsrJgJXdajL1PaDgdmf#av?)l0lbY%WwCA_RR;T(l>fOdkPR8+uB;rdFyRM?!g$~43lK-tG8#*tcQu05#k^!1V}w@_SNLeVq3|<(v>ba^DtQXTKT9BUeAYJK^+QiV*FzwX`VZH1{L@ zCs$=%Q!;a2sW6NmcoI>P2A(WdkAASEhVKgH;qQ~Gw)r8o);aL)0Xoh?MWffzs=RFKPh^~C+283$HX+zQVpRRx~^qHWMF^7ndB_ahSyzsfi>zE7&) zSV_Kg+j1qJ7bL#Mnc5_DHu`F{Tt$>|9LTsDcpz{PqEt<(d;}`yf=;IWC>tb$59~u4 zfjx})(yQY4n#ET&0VDE!lc&)EJGd-VK81%*0T=+((dp$OdocxlZCNyHjD%e1^yUa`>iC2LP*ITDUo!F;r9z9YzIbyr3T?7((Z)9DErXbnJ zow~WUukAY3iW-}i;9L}cA6eMGZwU;PMrDc`ZMUc}Ucyo=Uhv1lv+^(NAzzIQ@$kbVkW~-nTYDe3uFAmJ zo26Zs&Dw9ic6?fR(+x`z)?rBj{ymT7R3Bb1(IJ9_hUx}T^$F-(3khThX?xMX*HhOh zOM@oMk+FO5M)u&P*U@}Vt}Bj~z`Ut9>M^3vM*xd)0Fck>CCu|b4Tsv*E7nQ)_e3(o zPe=IEw>{oYA|9X3$ve~+fBmocI3xwiPvp%Qvs1o)C4_4KYwo7^i+G}I=XX=Uot2kg zXUTjX5Sh1!ewzMqT?%~H^N?IX(!|i6d>15oou5cwQnjmc=kbb74D+GRXwr~=H7f$# zSqE2my1Xg)Xqj*3V0N}qwDooweWh}a>b8rwsblr$u4j%W!N%ctR?5{TKv1$j1e9)e z)TEp?d?S!a&2WH1M286RxE!ZQ?7w0%U=)w<#RFP4Fd*VhVzA4B2RPU&z~8dOl4>CL zY=F3ZTBrsup4c`eJ06J136dmyEbRz@Q?dcs8Ha~hyEtJFySr`TZE9Kl^Ez1nr`!;L zS5&@T`%t4iX;9>B99G4Xx;61y|E-aTVEW#}`y4_DCOU%|RhUy@a(03=2oI;tPQ4~)&+0OLs0N@VVwX#8 z)`kb=hTKU^xbQ1=@e=lxo_#Zmvzm*Q_^A4U)c~UG@o7JeaF&xW@*K%(=Z4%s{QuAr zTa6+e_rTC(3JCxdQh!Mlb02+Q$&$=^*aYsu{UhFr2M(YSI6&S;@HM6E8syrCCOsV! z+SUC3#xVwXG7{hZPbExZmlbI@Gmej#Cc5+ku(tBG$BhajvA7et-xs0Z$VwpS=~QRc zik(PZ$V!gg6U(RIdB8Hnd4!9r{w{3SXvmAZHhx2hq2#@{1ilwQ|Am7#@$L=vsOW2= z*e%LCp`>vopykcElaM~Gw)=B7fhi04C?4m*UB;bS^gFau8X-d`H>>u+iPVd%_gF45 zGlGqj*xQJ_dzHSN8Ptb?Y_S||gU8SOYbO4k8hkdk zd$vWea}v!CXe?pxr*cTWpHhL_XflQw%y6P2XEvnWo;cBu&cb&vsSZ-_>22W_K4kx{ zy$7zfS${La-SP(iZn^xN0(_!%19<6G1gL^4v3{!G(^x*a*sTd`5!cS_(Wmo#QMMKL zJzjEavPYDAGnufFRz6RF0J>+$ld?13ve(%Y*&`KtRw*AMB*tDyNkeUbMaMtdq1`iC zct21Hew4r)XAO|__M4)@m*|xMSP0UPkxdY=Qvn#@cC~`tPrke5Cz13fGwM7Tj|&>t zX!~d{bt#-`XI+c(oIlth6)#s-U1s#lc11dtIi>n9GVW0_T9&}HmX$Se<+Ezta+wfL?9-YH{s5R3uWGoR# zRV*b8GXOcgPzG&EnG9Is=A41Y|A^%PpQ$}npQk~XpeNPtngB?Wsv;w9hNWlCV+Ce- zD&}@GYasqzF2VE7RB|Srm~Ul<)GXI5{&&h8@7y<=A8g_*sms^tsN+sNsKe-A%&LFE z6g66MA@TUENr0ok!8c3DY+Ns>j~22)6rCxC8qJCBZHmB@J~!E2&2bN^NSQoldVOpen3CPg}%tqPGxJ<)b4Z zOm5ZQ*l~@sm@h*-S#VnAAgP{}e-~EV^F;F<3?K0Xr-n|i6c9W8757MN|3iNrLUUX3--ru>N6* zO~u?}Cdd=?bAT$nn*dzceQxW473Kngjbnou{$dg3RZhZ4wN70-C03nzLJZ7rg!cGw zf6&{}OO9rR_ikD|2T@L1_Aog+0YK}SHKz1l0(3!dR2g-o3yN!8ZO@(R%mAz+onT8{ z@qvNHWtEbWZ$Y_zqa3Ncsm*cPKMMXuDX3DtuWL}n^Ebb)Ztv-V!Np-~qg&_oc?oy3 zLy@V6p1Nr7NigiVHM3W8M!H43ol5RUZpdZunN=f;s7n^tIL)5jrG|QX_^>nRr-8k6 z-lb&x;M7jzMtNF9#IG=G__yzLoi*eB3V<`MK%|n~K39mWq{{4mWzAOq;oaQv?U<2K zKPgO<+~hgnIWzBaHE9M?MFXZUv5KWF9LET_OfePEc zvEDP!W1hzkJV$qxDQxH#z`kIcYa@@yt*JW-$9>HVOJu8nSXdSK3xTaTwCxsl)e^h+ z|DpNkJ|qW+cm*|HHI;m#8f*yEGf)o*2A;4Js4@YrAb42uzi}MEJeHmS1kmhp4at$^ zF-MRr=Hq9D9`{Bxh{``z@!O7#-0mE?0i@363HW~xYHEXW7jXjUOLbLIoT-LFwUkh^ zfRy5QEw};16P$(`Eq~|C%nyT`P3c8lT-QM>HU7goL>1@H91Q`vm!i97nW>zJ62B zq0x}81f6n1{KU8o{-SG9tbL4gS-VrFApEV3Sc|DO*OIet+rAy%G5rx(tPZxP+f7DWov z68^(1dyM-D5Q9rhLk6PwWawDq*On7(#ovb8}a>l{e9S!J=?C(Wi+&2ShGRM+>5 zZ-9?ZIrn&}aQtj30R@CmTFN#?D7C?cIB);;;ZP0>Dnt z&Z+6o?vcWvTwOk`s#QnvcO$AEv{nW=(p|@_83=4f2!I@$E7o&&L|kiQn+}*-)sUv| z9x?AB6w{kPN;b{gWy;Q3RmG34(DxeE-Wq>|#plRSCPQnyNW~Lut8v`2x{DuC@2@o& zc^cE3vqU5NW*-a)Xej4e3ZR);6W?lN!uTs$`_{=3FptVNJ@){Ux93@YXu(a5?9!^M zUKMa)2=U`gh}1fKtzXud9jk@G930s5&0%@ehc`(C-T*@GG&$H}C~2y=T~ys+znds# zaWV3I1$~_O*HLH=^QPIT$An%c1PQH#YL_;&O&`TGnB8~`Mb2Wm*JA^B7{*f%JY-EK z0>)jv>4n2gj0n#q|)}sFY9?+M+_kdlTo3v6n+&U7z@meg}9S9^? zO!ntn;0{hBHyz(?zI@pm?-YuIjZ*`gX^LmCGGWdNjH18PQx7al!?X?AEKN}Gi{pC$ z)vRxddM9eawjAM}^#Tu7D2$)GkBkOwbPlM!#qmEaPGP++mh`PkZkuI4d6k5d4$H#1 znWb_7a%_1%@Z9jkF+YRK|F(FXKl2oBGY$|@Qn0-z5guX-`Uj013V#-81>}0Bq?klW zV8qSh9;qaMf~A|x^|4(ckS`f5VIzCk&_dR0F-i8C+(-|Tz;^C zh*jElyiIv24w+z9$_;kkDULBfllPGfFcz8^d^whcYU9GET|Ez-)ci z_W5+L&41(X924)adEMA=v~$BW9?7nY3%>~@4v8NpDGYGe1!RhxR|(Jz8ynfF9U>S zzTlrbgJZ#7L7|BiVGPFbMDFp{nnw0x|7?f~O4|R?F1YY;j#^T0DP-|RIaq?JCM9WZ zT^Rc(n|e;L)xBOVl=P+e0o3t7d6b&wW|L?uJ{L6m0Dy|RkXXWxq?ZID8$MLsp1NVu zw%<1x_ZYq^Klv1w7C5_(&*Kb(-wd#>gS-by`(*_L9ODZ${J4@UW6jmyfIA!EJ^&KL zxqwH+Ilf0DlPkF*c2x%`Z-$Ei<*vu(&I!hVOS%Bu3ut^IQZI>~^-u!9r$_5teD2~F zWhvFuq*3l8@1d~`amVJ?hWUV==R;-D|JC#S!2>g#xrHBD30ot{d+c2dxHyK9S3MPfip$x+u81Ab~;?D-)hXw_HN`l6=B>bi6 z^+s{9@HpOQIRrX>1||=%wIeaQV!t{W3#E8xO*OIr;Vm4OElg0*Xy)>(8GMAEGhNc8 z@)E_5FBMeQK)q8Q)lTIIg9@ED5u_3gJbcd|ma-KkVXdfW>a0ljF4NNhX`SdKJ8!uZ zN#!LLod{HtLd~q=^JDy*_zWep`q~-9!dg$Fkc^1c>+g2qoJgrn*qsG#Tg3= zl94&clR_T8JaN35jPSWlZ-RYpxWWqS6|wis%Lcr^z_8DAT~!Tok2<$n}BtqktG>R0&nz5t;X}SVUHr zmvH+C%9)JV4iM zhSa=*;k$KtXT?kuXJWjNSBR4Mv`2ia!1&K2uW+oM*eVG)+EuC!Gy#WikfNzY`78G| zCUN&J_3z}JaKYJM5Zc0V8ZJu9USQ-$ptK-gzEUf3haIE5EhRwWY+ImBj6iU^d8;3b zm`GQOZOmjMg)myeseDv$OI6~$S?V#N-%VucM0w_};NWzS9erY2`Eg>}Ce?F0%1P(# z$+JBo2rSx-Y26^bQ#{osH^7%J@_lVnDg}#LZNJ#__tj!5zyVrCaYjkG&m)y1gKN+8 z@;gKK{^Ro*k;#Q4GnsUo z@-fRNn6Cw{G875c8dr;IA-w??WYKP3__);?(??bMdHOeDtFi$Xf3Bxnm$UT9^0i7! zUTPS)m)53uO6z|SsKwe&-tSwN(;YsrzuZhu)cgoOtX$gKewgahsop# zY2|mj2Yciqb`R>f@#CBfD~@yQgn8t>4G-3u6g*8xcg0d6%H32Wp8A_&W2Pn{XwTVD zw|9Mw%xx!$&_gWRf2aHp6^^pdaADqzl*PS_9g?>B^1SlK@MHfrhOi3ID=tV2`TA`L z?07K?&^tbG-d>?b=at_I(7z5g)mo2f8%f7==}@!b>M0X71k;E^YKXiSXk))o_*v6$ z>8W~h^*90Lo+9`FuF%XVT=YU6bFWF^zDcN;*RK0DMBR*AWUP9v%)5e4r8-b|j&Rjr ztM(f$rmIe2!!UHp&6x{+)4&QS56@s?Y<7Z8>0iyHy_(UjL_2jp0xYCf67hs}9>B9t zA)K6X&ZL^%jQr6ud`gq4jx244L!RayqYKAx(F}?&z4WaNMP=$Dkl0)nuo265eMe_X z1hH)$AS#R+6=uMa5K0}E!Uw=Q$d#$QI(tA&7&RsgXXB}SV+M2_j!$SY|K*r!^z_5d z*z&D!%YIv>8~Q5d6B{wg#Yc?cyl%2nodSkT5C#U(FLvCV9UL=)c=0hg! zM-@L|9z>SfE}3Q86q)K-#m%54G<*ro(WEO!Nh+L}?{^J$ljZi!R^&!GtkC2OqASAM z{gLhd$8f&XCO<3|101ItC7cvihw2C4{K4P+*H8G!hu|u$m$Lw2Wodlv8?U#`FfqPL zHvY*?Az1H7 z4Bw@6N@`%r)RRGyy^@Wil2Yb29QtHO)rt-+lz2?-#UR;KnQEfX`P>P?i9o&~iL*6` zm*{syZI#R5&Dzy(wF?9eVW}^L5yx3jmm^j_Y+d1_+V8eAD(W`3w;E1d{n~GZYxce6 z%sC3G2+h5_z@6=I^wZ^(_Is11i}RB0mF73KROWS`L6cn2y|i^nkimwiFg&0%K%o9W zWmDmY>5aCQ2;Rc=`ZW5}V&Xs1R-?3L@si`Bsqhm+c{Z4d+DeMlsP7mj6+8C0&K)o-UIKcy*v0%Lfgjlhx~%Jq|VbIPs~$F zBPFco;#!^)W)r_{Z00$xO1vDbOo43qBLVkjT#oi*DsjfXmx6lC7L24x@c@cr4)PEH zs!J6el7;Ptt+`aH6YR4*ti?d^oAa>c0Z_6%ie5TcCThv9S+P%snb}wqnY0a8Q_STL zS2p#*3nHl=bAU$#L7w_#L7tSPxC1r`S$xYr`yVEY>?tJv_3&HG_n)kyg?z7dO+=gS z#}e>GZGV0DjxR>p^c7hUN$HqnbXZWIybl$WG%`goO2UaOUd8K=@(<7*M*R-Mb)(Wz z2-$E#{zcfw7s6j7wZDepa}9;3^@OiUsNb&ynBoDus^}#OTlohr|3X|E!hi#zI#39) zat0FsIOIa@*D>0s@<$@GP%=FNG9-pQx+yPQ0Ywc|p_h*NuUmcnYTZh;bWqZfl&1gV z>A|F24@rj{QWbMFnVHdX+Cu2sqMu=JTr|}M%H4ILJcdg08#D8(q}x{(Djxt-|#HYb;T`Vb1dqZ{BI0fY2BuJFHilvzz+ z9y^Fk!oXP-b46lUpV^Qdyy;O>up~DpjX@^Wz}XdZg<}R<2{rj+eB{>U6xNwKE{LI| zv;0x(68}9{0)rBxqHCSW#>N{ywVE8rlmELbxJ?-exvcPSdk|*ebt@I|NXE$E&Fy@J z^vd59Q=~%DvjE4W`y&!dzWA1(7Jrx!*+0O9xW|u35J-NBp-2Fsjsk?8J`-=boU75$ z_3_Hf!3S0#WWc?QfT{Bo15BMAbp+j7Dou7GE#c!GHa|ci9*+7 zHk7+B#n6Rxml?_^t&3QG(s4@IO0OZFsv#ctOHvWu;~r-VATF&>#}c#Yf*7%#1x>)) zBoiHdg4zZfQjZ@#FyL_#65mQ@LXT&7dp(}Ha;|9(rYaw0LwqH+`by1(*%UxM#gN~4UzpI z2|6_ix`D(C#b}H(KVzmu$4SJt$mL2${n#m21jU*f`{|ie}k9Lj0a-dEB$fIFcyw;j`&(=e1I(m&PhHFoV$7Qvx3nL+BWh+X3K#UZSh28UNBcIJ!pvWzm^l)woyk+5lWD zjQg^@4t;q1*e{ZQVU%9YtC#lD04yM?^0IsiefW9z1jN!XFNG9|)Hkh#bl@df8@le= zof}Ycbb>s&AkF0K@6us#UjQhYsBQnk64m_WD70nF6z;5a36f2>S$g)C79D35*CNL+ z1HAVd?8f`AD{BV7`Qs<1+(bxxWG!MfO(AA(Xy*2-M9i2W7xPU0#~9Mal}>nB)p~KC z8rlg?=XyWdey98;+ciEnctL1ng|?IO#IAF&RqJm#8|Hw^%XFg44R?bad`w^qXJujl zVzvVJ3CcS5? z9Q{|7`QNp2;M!o5O|H+H`IF32HbBNqzA|#?Qg8}h*jFbUzx-w!y3sg6dSJ$GTIhFX8USp`x_2C zV&%%w0S57;uneGD22gF}f2whos}?z;-WNH(FgoXSk2?QdlkXQm?>v|0Jf}NXz36jq zkW1;rtGzNKcH*pUg#yGU7X7YtijZ}TA4jsZn(K3Q8N#yapetTKW+#w8AGJAuc$sIX zbh)^P_HTKCQ35~KF1Z?Ol;67bL0D<&SP^r0U_{%#m(J^L!rP4uWrIpZ0Y|TufMWvR z6_Z`|5E2wHJo+SV58)|J`*+2!^IbRQvz-SLPrJnMhEUO$q;AX#9xiRWK{DXUj_)JM zm$2>qmPp$xZWbi64;R^gM|@!ew?a}_8wRr_kq8f79?13NDfZ+ExTppPj9;D#XYi%k zidtLpJIj{E30E~9&hW|vEenIvV_WwKcDjg}zXCwVYD$^jchE{b@E2}b>YF*O9O$d- zy{@*rzP3C8ZoHdNq&1BS6{(CfV>ohDo)SpmvZ7df_|j`e1D#=- zI4$wsBxYJ*Gp#35G^$4r(cPa&lxy2;m#p19aK0Z@JUH|RANmt4$v?t_9#W71XI0x` zYb}qNiG$A%*3|IbKi+po9m&VfAIX2TWJQw+YHy01Fezkbf>CPN!mhtQ4E$J;udrpa zrdf=}h%fs{d?-&v=rN~y2;vGK+kql#mu&g0Ujqr7v!RwB`>MhGamJ#h9u2MtH^brm z{`3w1XN@00lble8v|$&5qs>I51tr#|!8j}5BjI3s`uDnOqny2z9MzB?f?fZD3qKX& zS50wWrGZ=2w!dk3&OR{h0AWScj_M+uP{B|I-}O26%3in{lyp0<>0!UVxEE&hiHj-X6YYts zgQqFl~o_;2)7Nu2b&g<5r=n}?+(^~xc9$? z{r-de{fA&%ULO~FSP4?Drqi1P(TlJy_kbi-t9ap6RY?qIz6k4cUxb5U86Sg@(`ePZ z3U3l~bFjI&u`51FJdMgAZhd+)!A?Q*0P{$7Gw3Hq{U^rh5v<^ESeEZ!U_CYC`W|UU zs}AcmlO(C;C9ST4RTaCEIOZ%fp^S0Zx`>4h!|2y$GuCGHT}O(r9`cmOokakX+Uq`+ zcFNg&=$oMEH@8RqzA*T!7`}91uHPV1&KBf@gW$nI+lcfT%$OMmjl+5N)$ONd0S}S( z8MF%W8d2gGWOXPRHM`*rZLU&?>Sdr;+mMzZ1P*~MiAos_n*}=-KTucB3pY6-t;=7R z(P6$Wdg|w8sms3Ki=IZ8sYE)CnC?jX%(gF0?p20ea1I5KkAJsJ1VIN+fAW>uO0Y0x zADX@16Iu>^lcw0ECNKAsrT{V{49xqnxG?9sfaZ@=cDNutFfP|aT+5_E5?V0pnK&IfY8iG(m(k)OWJ%E?<~DrBgnZrATf8!0{4svaz?aKQvCs- zpy?5dm?(W7sQhel7Z?y3^)1>y;$1~}p;LGbtm^T-sH}3}W^}6e=-5lDl4cq1oq7uZ zi%I?4po;cN0Ns{59h+_Ubf-|=+p-zGRM*yj1^Wqc^t5vte``Zn-;uN=HQ5?Jd~ z$Pb^Um@e&#%*zKofCoKrVIa{^hJOtUO@`%@<0U;n+& zVsOVv7j@Sn_WhtL>^?5?J}$vSos0Xzb{F^4(rbXWYJj$AG5>E{s8+f7qSv8DBSsG| zz8g^lKvdqlbSM+^p{1a>rNA?gAnrQ??2KQwr%SfSd?!PDS<8$rMU!uCsv3qV+?m3F^S*(W^z%S zH(`SNoe27!=-9{I8LwdLeFOiial_>ap{-$sJfq=(S=V0Of_xAQJcz~RmbHDL z*yH>i!tJW8fZ+;b*06Un+wIRXDP{Bg2{!_`? z+0LXXhbp4i+nH}#cZj?1NYoR45_=$)y=Q7Lq%dmv^+gih_NmwbigZJ@Mq%=`3!Nzw4)yV2+lE?36>Am&8Bx#` z9#WNR*bGw=?EKe;myxrzg`b{UEIDDg45?GO3@I14oA5n|+wJvv&dLIwLEhQN#s$uC zpFX?zWe%%~?Mj?CTa_Ubc~hpeSR-{n(4BkL`4@Q&>k`)nB7L3)2RVOd8mL+4LIRt> znRGs|^7c=IZ(=BFRy+-gWIg9P(=We7f`@n9cu!s!eSIc2oBKaiG~dFWa$OE?J_^c~D?(TPyNobQWlVN2Z09l%g` zj1Rt^g72RBN*|is@Hf*>7%!S;aPu#~(m&|4FJ64JnvnL>jQv+3x8H&{WdGpuu7B$L z%WH*Imz{+gqsZh1jr3A|_KeN?*V2X?d;YZxztbGFc!`^|`E?lRQuS4bxq4Rwnp2s1br7~QMCmoKREh>k>GHHs@$o%)+8GJNS-A&{?*d?UK?Q0;Bl z8Uft>p_$qE&PJ{;saMKnghYkFQF6f#AYrtja;u?IzzLT;13Ec99_in{^4kbdZlUX| zru0^}MaX>Z6rjU)@B%QLlt11r+b-ZYWh)8+>|_9s*04KC(U=MRrRjFgGXec(sR=h% zvc0Nc-0C8^QeY?8@v2ZKz*sC>ogci5cHG zXG;iWD14uH`Vk5b_memDlXpEWMVDo2IK3t_EdT-Umc%J~*MsF^itl1-s|MP^Xm8|I z0puTzoJ|}L-|mt;c-YhJVmjoqeDs79c5Iv-4x}x=!{X&9Cd0w4^M=-Wr{#KY!344w z=ONWVo-s z(n=rKInZ(7H!X7bVo^WrK8M$t1=i6yIjg6r0_ohXiCIUl|1#-he+Ccx4-c{Pttr6W zd+0X}K*nBn2s{KO2R5$!0%5wr%%l8-9%N}ZoES1-K# z$M|3ry;f&Z2<_>%ksh*XKVlG1znqZ*xN6en_sbVW)Y=e2zhsu3^^93CnDOoN602!L zn55MV&8T;mfmV-!);zPy4zka|71@Vq6x9Dra2Xz(efDc}`#eA-?`Eb$=Vz_b%1)_G zwb`YaWV+%bKuZ~*OKdD2YHtKFVBicGjz>?1Y^BBoetIH@fn>3+%hC?Yxln8AXlrR( zAUszm54Un)07MsTWi~V33pHoVVF4_0Uj;hwz)<`WAdyE19Y>kTID5v-_-%1NtxJ#d zHI>{%1T>NHxa8ovx-H#E!2N;H&nt{!9OZJi??;<99ZMj!p`cGR>S^;fd(kp=0j?v>9F^N@_)dt7M*7sX z9oXlB2lgvtOqsoUHq`f{Vw;Y zk?6I0o!>^(t3WKN^fO!!m;lDdU!*D;B&y4KYswirtP`N}Px%up+0k*#u@bG{7*rRX z)5Kn&S8EV zTsVL!dC>6(-0{cbQUU&|DJ`5AoY;h z8N_@)BgTIvXYNsC6DHw$>hb0VLnG9V?%ul0`ePTq`)G`1!wu^RA zX9LivI<%W;L(qwR$RMjv97SElBkQ_9EgdzrQ>WOBb-3ma?=?$@?O^r-r%((ow5r*AkDn}1ukE?w+3ZYWqra3+3B08VQT`rdpbY5)9Z6|asgsPrCP={3=nnf5F!gM-GkN2(Kwm<@5DYBRm3?U{}Nj2}0b7$=5!);izdM zz98=P6u=HyS5pu{%TSm)-WKc}@#M~b71!R|Nc6AO z{@?p6oFg)eKlW^A7M)R4LY#{<)uaC=$eOEtZya`G6uZ=rn zte`z{A|x>sN$g?HOv$q{{FB!NeyVKhg->-G+*AoNSrYPEjP<@1^1ymTo#6N9R#6qq zIG|5h1bNCZoVH}oe1wc(+>Pi3ysctS5qGM za(3al^3v?WwZPl){timyoXT-Zh=FI|kDfU_pZ9Cxl82wY%zZQ;9I@aZ0pcf-Wfb`x zn^i_|gi5aGBBx_*V+DhCS1=ExB5@?RH(>Zpd0TG4*Nr=v z{JtcA_sn~D`qiB;s*BOQA`its(UFe>Un{y?5>pe9{Q=)l&eio-wNGUbHT!$IOw4p3 z^hbu}RxosVjPWhCC0vSyPJIFob6VRcQ4izb$z^4EH>yh2X^0$B1$7z@Le>3H?n63O zxvWa2nT32QT*xAo2D(MH%z-VF8H18^;r_Q%Hl=KWWO)Yq5VmiKgjqxTH1SDl+i~g0 zyb%P4Aeq@*rK)C90bP5YCRe~EU3Bd(&V|YF9|7Cr_{nm7x6~bkUX0M2*+&^B;CVMV|8@@D%vFKX&Bb3Uav$M7MdZMncJ|J&fPcO9yX*o;g^t<&_ZDMDBc(TUZN&F9xq`u5>x|=%J z>~Q&jzxsYHCD)v0vy0Aw?M^eeK_)P}1DDl(mS5E7s%yMtYq*=*8-fhm5yz$124wB$ zPDTbNhdXu>pSJ}j$0N^tn^%?^CG!J!f_9;El6LNc9tCvV?J3e#d$zbB@%8iS!wCgca*pmq z73Rw3k8klh=8w9x@sjaY+Nq7KAlNTf>~~>bW+vo!;US0MoAy$tk%4Z6umHxRsF}J6x-w&Bza_v2N#wrcp zSI*U&J2HIw?f_e>GoKW`VaoiB0k;Su02*M@V)fW#)5*c+*wZ3<0ta!E3Ee z=s(;Q{qjS+XTJ4^CaycJMVW(wCLUp=u)o6ovtQCZ^?&Vsp}2*10$__+(UWO^schj+ zfmJw;E)YuTcSi+l9KPL_BZyWJsrsB&RC664nSHCNGt-F=NGFh zNWZv{ZQB^`4avw6Uubp){b>2~Gp#T*aW0Q0?w^W?^86;7wB>xPQOdVGXSP$4sx~z&X5n|r9n5vpBE^FpCq%*%l~|$&E==y4BFAN!voMC{D6GB26y%}S{A&-xWWLy#RcMPzM z?0`HbO_}|UZSYCJx>K*g##gDK%TlMqhN6r-A^nj*{jJ2g`msvar2F%cON~Zv{di>_ zC4x();hZYVV%L7-aY~fB5^??`}S%Zo}bqQ0tFGj9oxQS zhs>HddI;XO8FH=?6Iy*#Y)vy#$KRvl5a02;XwSei8JPW0)Tf_@aBZ$!);2x-~`g*9*HpfkS<5YU6vD7J$(bEafyQ*U)QNK)cO7tbpS?pL~d+S@f z=J%nuZ0n0Uzg?(zjZ?)Aw0?7=8_q8#$gbh9r{8yWR7lDu>Ni?k!rwHc${7!YQb09( zQ{-Y>299`EjK^C3wwpK~O6teD)HwKL&xoGY=2;7}U7@a5)Kj@P*<-;a7w}Z2v({2*zG-S2|gaN3LKOD z!d9@LqvJwdVw5T-t);___Q?xdExz*mGjY7tDBD>5n#VqNwfi*1-G!sM;RS2b5Fq@g z{0rWqv^-cyr_f3$Ts4UC*!6BV;uU>0eeu!m$ELN2v49?NP_%BlncLq|UJOS4`@tq5 znjHED+In&#;}(+NAgf!)Z;yP4?DH^bE=lT2fcE$NH1Z|?FzgclTGG3bp>p+cE z$x46R^l4kVd$m9AZLqZTN^i>hwp2g>g4LM#CP1kIFSRYlMRqq3i{yb!PTjk>&q%4IL5}q@N*75Ia}H$s)B%vLO<;9iY zCpG3*j1zkuJw?ulDP-A2V!r?Ep3@zlc}0nn1Z2kq$azn~&wi{*V}D=wN{|(y;AOMhv2kW(W1rOy-=ihu;Nb9Qrz7dw53QXR=hYN zxc;a2uDibbz3cmvm6Nq{&dko9%-&~bX3z7Ou)&(wIZV{D+)XFR=GuR?eBQa5Ocm0t z_&6l2(;~l^UeSYX=e<6^nmrVR15Uf>pG&I+yMAODs+;PGov`hRTkCp(9-<|)xywL%es((xq(VL@Ci4yp^KNt1%{0FWRSn)$$|DP^wH=9v3Uj z5I%E_lVa3ZL!|VXa@#b^Xg;efWf}b&8T8!&5O*!n+EdY_oavIIk7IGtd{rl{#fFdb zhok`fouyA-SE3;TeN)y^3H`)%Z9)zrN|IXF781e0D%|xZytexGts3q~!mkFb4HlQ; zc6P}+TP-#<+zMmN(X1RMJTr*&o}ni3beB9m_T)?tKnz>d_kQQ63=jl=A8yC~BzgkF zuCQDxIbL;8%8MHlL4c`ZM1z+?)hcCNUyY;dQ?xaH>ve70woIqjWP@5HhTK?`5@5$f z@Z+*#zvCRL1(=xGxh(?tjlmX@Z+H5nng9^z65t#!$KP`e%-j~Y8B7#6((L4zb+|lA zRc2D-Y{yT+41Hhuk$hAPN>ri^{w5O<>L81^hD)JI4Aub%*;H+X%!XRriQzw^=lJj} zC(VdVCjpA)PXI+T6?6qu-sGj^eU6gCkNt)K>4mrP^l`UA&93+#V1Q z58Y?LTdSnfU$cCLXI3I*OKOI5`KwI{C)YlyU+Nqe6CqE)>iYOuMYSC3II1eTt$DQ1 zXWd?@CLByeBLQo4l_$V;Cy^45vK3ZSm9Vis%}x_hr@{S-peKwAU8VRghp;+tlZ}vk z0DzWA5zA*zd4#O(_f2#Rc@y9aIP1zIz@4P`PgSEVe>5hBUUMwXccTa*!eZD@?vheL}mrCsL+pm~PIr z-^v|m!B&K+@SqX2JoF=5nxeX`v^iHSbLQpuIm&Ri<^lC0QRj(h)hce`7%oFf2@ z_hGUM86-L#eQ%?hB6q^@xCF+Ua!H(8>;!-z#=;k}SUoX%_?V$nS40V6!&hV}=-Z~; z@u@ucQ*4GpS*<*3?TFa(9xQ}=G&f1%Tq-E+K$&sz25j;K79 zFM?#fHx}}k&Qq7ca_qud)%f*s00k9Xy+_G_2lOM86?IC^T@|?YI3pRn zfX-yq2!cf0EL$i;y>R{otKEvrpx|>D3qR~*?RpJxR>wl9@BoC8f|J%xz=tX^6zT|h zpjA%+AJWA&b74=g3qy5_Lf-1`27N;fO>!`fCB7lmbcantM5zG4bLPC3qdT1Ye1T!5 zCSe6=78;UV-;`+5q7L_+NM*`NzYp>^IrK9z<@uz@itKR^QYiEzj8>)uEj`BzA8Olt?AKn+iSj-_11iH&} zag?ebxFmZW@0EF;XT-@^hhZ7O74mb;teNJt&2mh#8zv9OF)7o=6!ffRTbc4ZZ7P)F zO@`or%a=CK-K^*ul*Wk7#jj6NM7wu!_ z@8@rz&%+BO_NvT>0&$(a)Z1nAMfOJbiGtTEY~V~#6=)6mnz07h84k+^`=G{WrYyw5=k z#?Yp-T4cgb;0=Gl2aQ&YNgamPb}VO*nKCP`a*x8&%cuEb1y1Sj3EP=m1V>+w_D2hX zUcDbUVC+BvXr9Ett(2baVp0SynH})ZwcF_QTfO&kJB%G0rb#}!?DdN$My;h9)lx#$ z2USv%)~`FBfnSoX&OCe=NG}Cz6-_+TQkpp=KC{^BtdyDZer$4AqZAMgtrOgBpp5vj zq=0|Jvv*f1)93TpF{zS~(0nOA}nxc3@pUA~& zVHjMD3B&LsodQZE?bW}GeGD_qcq#fA>iDYtas01Ki>G&b#`7J2hRE*fx4;If=K?@( zN42qewc?{>S^M|Yr8uX6?|>j|*b<56`I<(DiVnIJq}g7?zCg2dX^xgA#L~hOl1kmU zT95*5+*xH!oot-WXK$xky3|HX^WjT!um>P_yzLD8bq;gw%cb?aINMg+u}Px^$>3=i zyA80CCU(+`Jo{SU3_}}Y5R=t)+_mUeoymbXD~9rcq!7-OI|u(CxPmNK*E9(7`9=OO zB>?2dE?mT$-#jK>EqtH;^mq!Sj;7Ia$G zJ1Vjz;P3v>aJJj8=4 z8!GB}g~zqg%5}oQ`OG{El(Pc5t(qP+WZvsL9qz3G`nEW>Zu2g3nc(ttth{Y5oIkn+ zTkV9Gho#7ZT!*xF>gu`Colk1*-?yQ1?9w<5gujl@Wxn6~*6v>&_(;^)B+}0P;BpeF z{Pc+~*#A1O>EUFxI{~Q7W%ecEGXyxf24;|C#y!5XVnHeCms(vVEXpTkKc>RAcZGk1 z1#csZ6;Xqu(cABMd+j`?vjsKUFFUALR@7N?9$p3?7*)-#198sXrXASf?(za6;MO3c zxbL^_TFTR&{NXTwAIvDQv%RueLPKP&^^f<5Le*lXZbzE(ZuergQ12D$tMdAw+}P13 zndp?N6b;L3k1JI#vdd(0+aZc`%}lltQ>O7cQ!U0=c26??`?jq8m-!PT>=Uz*Cs3_> zO5fDLMB>T&evH%Sx^Q~=nZJFvr z_3B83pm*Z;JD;3xn(Jr&cMn=_{!%=u8dL*SE@ zWI@d-$v0a|MA;8GChBgiH-%@Y_us9){dGLwSUNTbUq5%{oCPYZYoTZ$(>GnWTo*V; z!}fgojDdL|9UgLsNmw!{L1b@y6AgLmd>9lfU;zodz~=CMLkKm(^#}HMjVzAWaOBzK z`8!^$Hv)(ktu@pZiiZFktrKxPKw(`Uu#)?bvy||Cs{(ymg7zeyi6`w36VJ3k5byik z?^lLpzNRaaO-EZ3BMHr;gIh?)?ZCk1%Q}oWzl*;3-ub&I#|bF&KD%lZ6UJ1yB91aI zK;px1dt!2==zx6f_FA&5CkwKi*YG!UTL1BdZw$@X+4Qfo2{mg9(KWZsz4)G)-No>m zJ*gHbqmjI2|ND;+KL&-I)#pI)dWr92q}=%A`lcse>VmItpt$3$Qwwa_;_WfiQh zIy$cmy?CQ)bBbLTcIdxAiS<;Jj+r)U;KbnU^$Dugl$1}=zMfD$o{CbXNv!~O-m;G1EOpw7#{#=!KWQshMB z!hye9P5u41uDj={#m&(9!EjYzWlPZOT?Fa4>ign#{^ z_2Sz9B+F=8vVS$`!7V<&qohp>7(t$J);ND_A$lZ%?ozhXAwoF?XWcbH`8~J~${>@O zBtP!-=wTs}(BiIXL*k(H`72rSBZ*_lK zqU;9QZFo#%yU0X;fFKjhx!ys1T0`hLCUmEN47HpL&hy8-RLAT?Fi1f?L8|)-Y(Wn{) z1$b>`63>@ZTB}bk-3RsoKxtU~HdiTYC z#+6SQ>h=Pd6P3k?6_!RX^m34hjiy5*j?&6O>h!qnDy(AYyGweMwKCV(a4q{1*##B6 zBF;T`34$gOjlIjD+ppV!nMsF}amt!gGClpyTxjE|lQ9asx}H)#1{g^5N$ z1P(+XmMx~_mMwT zyG2Y3^nSBxwj&NZ)T0BSPQ(zBK#0yJ(^jd)3sG@VY47YpuQPMBG^bX-y z*4p1)rZ(_30Qj_q3rfkr-<@8nH3SeI0)+lf`t(n8xRb_Vsqpew5lM6l{VqF~vd*uU z8U0*!7DJw_(#}ze67~JpfjSbA$sLg*2jdX6jd9N^FB<3vD#q205@DURuQ78?`oFwb z<^?U1!2qV^j5r0HM$WEYAGSzzE3njxTH6aG4_-tJHyV=e3%;ux$m{wt`RU3Xj7#Bwwq#1aN)X`p4%D4zy0c!BmSOz}VAf8r0h}!9| zWseSk(vn9qXS5dhgUB+iTMhVG-gnm6v@@*kdj0YWTPe8%aQRf|$yS$M@R_gN&COp_ zc61xxHWUUuSO!rUwEjwxAAHji}Bk(bZ+2mCTO|| zm|}qjPChB^c?G#+L~d;O%?4{UPVVUJ;y3{oelAvyyy7G1C$>{BM^3{hsm-Hn95!2W zJlm&#_u0&LUi(Qd-@kPTW=qdukqAcZ-ybZUAkRB* zju8F!b^a$a-Lh$JaiCcP14d&p74@*p_dDz2VNX}68flHx{YJZ z@*8LIK@5u9?X(*k8<0pJPuv}Z_;JNq=*2jl60%<<#DLh^fWWFmN>sV|?lgE-%z^Ze z(cdD@6$#PeUgV#fers_G*^F2hi%>|k~@TkiF>%d`Ip7BGVz=CdVY5II? zMS6m$^?wRHMPG8J{>~e!Y`gL%6yz5RboV&^&L;$;7!Y1+zWgBv)6>X1Z9fv);GEMl z%SjcLaJoQmE&9zeY0Pkg{eDU##F-AdwjzONWl7|jK;f`7=U4D2SD;$4J_1D}kAGf@ zHATGhI8Ii1gDO(GDu68zo!_+Ov0xS#j?Z-fd=}ug>WvWpSv9|9TW7$TWwD#rbcbNQ zFv7Nk#N80e*90bT*)K0G?oaR~-{t+yz)3w2psC#lTz^8Ivk+=LytLU_8Wdu+Tqw{a z7HwlP z`EFl`bhW5Sf6eY9|5sfe6}I6`hMLyJ$9D;56?er1y0l|Y-mb*oY}wc^joHM~O(g!g zl`vl66xf?My}9oj>o0+3+%l_^8PhSKUbs4MXW>o`=`H@|E6Lw?io@ln*14cPPnd zSCe^OLOLf^dupByvT4dwQrE6M(9X_^jUNG9dNOTL4#~;+^>%NA0b_+`WqMxQ_)~^G z-bz4PG_*mY`PaKc|qGo zu$No}iV6|SX~PUvW2|v7+6IUgaxb91qUPazFQBot+w{5jT2eo04V}4zJ1Q01>I_(wa1?Cyx6w|DJd{aBhn}o8+ulgqP+Jq{UF?o1DC!xQ zN*4uB%O#+0DCsgcyni~*SbSbzukYP>*=Z8gQf*Ujz1=fTN|3z{8plJ%>{xtyXsh@0 zkkJTtaPderCi?P$5TcmNIUHKu@HUI-QpRnzwVRgoHydG2*3OC31tB3>(!+f3ofq5H za$N2%#ug$*{E_jz;?6Tco^=f(yIV-$ zkv!Y_k?z-exIg9OIzo~wjwOM?Bk=GSx zTVy(wyPt5HLPGXiQG`+g}3v+;hkySejF zkzji#etikAiCo$pcy_S=)e=*nj}O>K8b(7kZNP<<>;2eYI`#=~@FtmDQ=}i_oJa-r zfC0#b8H;{H{Uuvwt8hL_rZ+nHdE2+ErF~(nHPg6_&UopJJ^V)HpXSo+#hrJT$( zGmLm{iu#oy#g9y7rd(T@rM;Skyz-sm`gZ2MwS=afeCI1SuBodzu;zKZAL2mrdGzff zBulQW{zR!wiFPT*^`751MZCb|@=`hNGWZTwO+Rg*3^oQwA3ouK$OMm=Xln?s69?nf zMiSris5T{N+E|e|)8bkF==`{4nyfbOy88x+zCEkyw!cV;+2mGvnpd$ETXnvkt$$%1 zv=r<3babL}{v8(=S*lx(*;24;2|8hJ1Q%#z4OfcKci;}w9DBi+6)wN6Uek@&+ma{(J zUPsNV4$ZGjNX7-GlBUooVp+;bJ;?l1=_O8xPYc~1?G)m7@b(IA%^N5CRbxLopAOjNLwBNXG4Dx#jLb%C=JJK26F<1l9H7&V_~kN~dKz2uKyXVRgDs z2ef;6b%q$156OOLXmAW@35_GX$w*u@ea5b4#)k>z&Enzym`ZLPs2F|ri>MLfG5S{P75?SnEy1Ua;edK?>GFrh@gD}&9KdqY9OEQ+CXTMBS! zJY%Y;wqzR*HLm-;jq9la_scHcHwv&NIK8q$T=6x*;#h)*Qs9_!Pn@Ol!7u4}KBh{S zpcGgqdSu|O0nE`8`3`Qc5d5gD2tBxE5t^s&FQs(ltoCi!-3Iuq;uBNV5MtA6RRKZG zixl3UZV_$$bWOvRy_}y$uP+dIpC`Fv(130`_%haRLwF)HjA+t|SCLunT(aW$3{VLH&mT)I{V2g7 zm>gOQpJ|qN4~?P1!&R?$cth_`6Lz_p%LZ?nx1l{!exjuB? z51%_;HRuB|!uH^f>fyPwx~t%y_ZL}%=645#fWjt)z@3r-8%cy~|w>9_@XtOsPN&2Tl% zdIU)S(4IdVc6%;GrjZs?Y$~a(y#~hb99<`FDE0C1QTkBPPP?devK{Z9PMtC>o9Z=j zMpx(X)6=MSHD{+4vzT9(=aEYLWW=)DES{1!uc3q(X@sWWnIbpYI=&(=o$EyA zdFv%g@zyk3mmZT+pOZezRHqEm#wTz1Udqsh1@DN9GR3J;TlQCatQz;*|NIiAqRKy{ zEkm`}X^@EBy{FV7cWV(sBQvsh+f(~D8t-(*^c)rLzheIVK4_nzyVGiT@FdW$_n0uT zJkGJDlNjgo`0JBdhW-zM+xRwq0n3S)#K{Z6hEs|KPbd*wfrq z=C;?xPJz#AGh7m&Fp_X?^aIsSq(S-PyU92@ki!W)TtSX6JQ|m@1&{2V>45RQ;i5?g z`GsxxZiDFqb=Y;wAT;-rDxe3Co^r-7TQHZS&JM!x@88A-1!x(ncQWc~c2zR;+6j0;Hig8bb0>?{|wJZ3w;uT~KvL4zJte4I`+5edcnT%yM zI8ohx%;*=DT?fVtnU*2&W!;c_Lmd7zp0anuUCf48_9Sys%1T*AsCeM?DaK40YWIL| zQabD8C;+1ap8D!e+=nZQmSk(j2u|5vmG?tRjH(~CI$YcMBXR$?Pd6*>edqyv`6=Mn zfLnu1-K-qkxj6qGb6_e?s62R5HN;k?s^tTyJXJrx$VTC|L~j>m3?x|$oSw%4eAaIt zt32f9a?}vM$oHalUnp@H;vO)X*X6GU)!DO|<+>K?KjT-C;wX5L`0eZ`(eo`NV<`>paRPSReRdxMoX4(S=n<>&rPCaCP|dDjp=m51@gNu24-oSLfr+fV$*rDMo5 z`ouy-d6(y>NyVx$UMV#axl3Ke$Px?l2A`Eb56Ew2q~cfIIou`DQ*-jz%+6n~F#dN( z&plBpxKThLHlU+~{~o;F&TjVR&d&CKhi_csclCa5Jo(^~kw@R0-YKi@nS2aU#v+pS zpM34zm^P5Q?)0UGMVU=??LEuz+$_A)Bs+>wv{3f^O&rplQ-^(O9J#2+p?^?QhDK(M zUpqtmdU<>Lg?{gcisg670k28xvwPo4yLAmtRED0@r5%xb92kOXt)&d&)H%qC>h&g0 zM&r>dE?>SXs*@MGT6zD|TJf|+HtfWp;#44?H->;Cw}4ZpfOlnTCy9J=LoQ2g&{DOW zx!(-;x&B>};PJ%~)7JT08O+f!9FOq9Pe%yAi5T8v+>7gn4C@~={u>yxB4w6(l zCz!nOyGwA3^DWn5w8x!=L&xsPKfH)eP5}=cYvd&H(R!$zKuY6ss+>QTwQFZdYbUonN@$LModr(8ok<#C3gT zN$K88&4eWDM_}bLc`B(BKa}P~X*aq(S_^6oAbRG5s)2DvdF9s_`udQ=YLdpe2)k>9 zM1QRQ6Hl#;PHXIUN=Wqj+V3+$C_Z?n?kd)X62X>N9 zrD5B`deoh_D5Im4Hf?yGj--F`&*N2~vDn2!m?7C5ir)vHyg($rxm_N2GD~b#+L(64 zc|6~U9=x67uu~cHRVMMPk?=;i<-t5l__8bhwXTrHB~!82G5X+_F*>Ao9?P8}r7vN@ z-I4!nO-b^Q27c74c#R~ArV0uwDcZkprt`qf^pUihc_?7TTHr+ly#DhD0W1sxSvp&2 zx;eYJbG>nK`D@sJN)J~`>F)y9jRIFc{*Nf|9)eQy-_jP&ZdU)7c!p6n6A>l|l+E(* zpYlH%LQuW}3W58&$6G5$tA8JP{;A;aQo!tc$V;*YRFIYf7)1Ub>A&rVVq^VF!C%LB ze`{ss;m-B1xBpYiKNl4LQ51rr+kyJOmlywSfWKehpY!(rh(7B^{qI@)pMw9K2meQq zq~~94{`Zjmr|>_=`Tq#J^!`iu|1;|Uspp?V>3{U-^r8M=14~l{1NgZ>AZ*|%0nFe9 J{lEeA{{RDibuj<{ diff --git a/frameworks/nist800-53-r4/stix/nist800-53-r4-controls.json b/frameworks/nist800-53-r4/stix/nist800-53-r4-controls.json index 0302d649..4f6a8cf4 100644 --- a/frameworks/nist800-53-r4/stix/nist800-53-r4-controls.json +++ b/frameworks/nist800-53-r4/stix/nist800-53-r4-controls.json @@ -1,8 +1,8 @@ { - "id": "bundle--9c3d1876-e1e0-4524-a82a-4da641220dd3", + "id": "bundle--73440f57-05b9-48d9-8cbf-029fc3054570", "objects": [ { - "created": "2021-01-06T18:28:39.726Z", + "created": "2021-01-13T01:50:48.875Z", "description": "The organization:\n\n* **AC-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **AC-1a.1.** An access control policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **AC-1a.2.** Procedures to facilitate the implementation of the access control policy and associated access controls; and\n* **AC-1b.** Reviews and updates the current:\n * **AC-1b.1.** Access control policy [Assignment: organization-defined frequency]; and\n * **AC-1b.2.** Access control procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the AC family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -11,7 +11,7 @@ } ], "id": "course-of-action--82799557-6fcb-4216-9670-27a10409d208", - "modified": "2021-01-06T18:28:39.726Z", + "modified": "2021-01-13T01:50:48.875Z", "name": "Access Control Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -23,7 +23,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.726Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The organization:\n\n* **AC-2a.** Identifies and selects the following types of information system accounts to support organizational missions/business functions: [Assignment: organization-defined information system account types];\n* **AC-2b.** Assigns account managers for information system accounts;\n* **AC-2c.** Establishes conditions for group and role membership;\n* **AC-2d.** Specifies authorized users of the information system, group and role membership, and access authorizations (i.e., privileges) and other attributes (as required) for each account;\n* **AC-2e.** Requires approvals by [Assignment: organization-defined personnel or roles] for requests to create information system accounts;\n* **AC-2f.** Creates, enables, modifies, disables, and removes information system accounts in accordance with [Assignment: organization-defined procedures or conditions];\n* **AC-2g.** Monitors the use of information system accounts;\n* **AC-2h.** Notifies account managers:\n * **AC-2h.1.** When accounts are no longer required;\n * **AC-2h.2.** When users are terminated or transferred; and\n * **AC-2h.3.** When individual information system usage or need-to-know changes;\n* **AC-2i.** Authorizes access to the information system based on:\n * **AC-2i.1.** A valid access authorization;\n * **AC-2i.2.** Intended system usage; and\n * **AC-2i.3.** Other attributes as required by the organization or associated missions/business functions;\n* **AC-2j.** Reviews accounts for compliance with account management requirements [Assignment: organization-defined frequency]; and\n* **AC-2k.** Establishes a process for reissuing shared/group account credentials (if deployed) when individuals are removed from the group.\n\nInformation system account types include, for example, individual, shared, group, system, guest/anonymous, emergency, developer/manufacturer/vendor, temporary, and service. Some of the account management requirements listed above can be implemented by organizational information systems. The identification of authorized users of the information system and the specification of access privileges reflects the requirements in other security controls in the security plan. Users requiring administrative privileges on information system accounts receive additional scrutiny by appropriate organizational personnel (e.g., system owner, mission/business owner, or chief information security officer) responsible for approving such accounts and privileged access. Organizations may choose to define access privileges or other attributes by account, by type of account, or a combination of both. Other attributes required for authorizing access include, for example, restrictions on time-of-day, day-of-week, and point-of-origin. In defining other account attributes, organizations consider system-related requirements (e.g., scheduled maintenance, system upgrades) and mission/business requirements, (e.g., time zone differences, customer requirements, remote access to support travel requirements). Failure to consider these factors could affect information system availability. Temporary and emergency accounts are accounts intended for short-term use. Organizations establish temporary accounts as a part of normal account activation procedures when there is a need for short-term accounts without the demand for immediacy in account activation. Organizations establish emergency accounts in response to crisis situations and with the need for rapid account activation. Therefore, emergency account activation may bypass normal account authorization processes. Emergency and temporary accounts are not to be confused with infrequently used accounts (e.g., local logon accounts used for special tasks defined by organizations or when network resources are unavailable). Such accounts remain available and are not subject to automatic disabling or removal dates. Conditions for disabling or deactivating accounts include, for example: (i) when shared/group, emergency, or temporary accounts are no longer required; or (ii) when individuals are transferred or terminated. Some types of information system accounts may require specialized training.", "external_references": [ { @@ -32,7 +32,7 @@ } ], "id": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "modified": "2021-01-06T18:28:39.726Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Account Management", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -44,7 +44,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.726Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The organization employs automated mechanisms to support the management of information system accounts.\nThe use of automated mechanisms can include, for example: using email or text messaging to automatically notify account managers when users are terminated or transferred; using the information system to monitor account usage; and using telephonic notification to report atypical system account usage.", "external_references": [ { @@ -53,7 +53,7 @@ } ], "id": "course-of-action--c5ddb1a7-5b02-4004-ad60-ecbf38122981", - "modified": "2021-01-06T18:28:39.726Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Automated System Account Management", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -64,7 +64,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The information system automatically [Selection: removes; disables] temporary and emergency accounts after [Assignment: organization-defined time period for each type of account].\nThis control enhancement requires the removal of both temporary and emergency accounts automatically after a predefined period of time has elapsed, rather than at the convenience of the systems administrator.", "external_references": [ { @@ -73,7 +73,7 @@ } ], "id": "course-of-action--97748aa6-ee51-421a-8655-4079ccf74efb", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Removal Of Temporary / Emergency Accounts", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -84,7 +84,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The information system automatically disables inactive accounts after [Assignment: organization-defined time period].", "external_references": [ { @@ -93,7 +93,7 @@ } ], "id": "course-of-action--df3d6c61-ebcf-46b9-9cfb-f022818e55bc", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Disable Inactive Accounts", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -104,7 +104,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The information system automatically audits account creation, modification, enabling, disabling, and removal actions, and notifies [Assignment: organization-defined personnel or roles].", "external_references": [ { @@ -113,7 +113,7 @@ } ], "id": "course-of-action--2d4eba0d-9222-4bb6-8eb6-5f4539d71bbd", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Automated Audit Actions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -124,7 +124,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The organization requires that users log out when [Assignment: organization-defined time-period of expected inactivity or description of when to log out].", "external_references": [ { @@ -133,7 +133,7 @@ } ], "id": "course-of-action--1bc79890-8fbc-4a77-9d0b-e1729ca640c7", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Inactivity Logout", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -143,7 +143,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The information system implements the following dynamic privilege management capabilities: [Assignment: organization-defined list of dynamic privilege management capabilities].\nIn contrast to conventional access control approaches which employ static information system accounts and predefined sets of user privileges, dynamic access control approaches (e.g., service-oriented architectures) rely on run time access control decisions facilitated by dynamic privilege management. While user identities may remain relatively constant over time, user privileges may change more frequently based on ongoing mission/business requirements and operational needs of organizations. Dynamic privilege management can include, for example, the immediate revocation of privileges from users, as opposed to requiring that users terminate and restart their sessions to reflect any changes in privileges. Dynamic privilege management can also refer to mechanisms that change the privileges of users based on dynamic rules as opposed to editing specific user profiles. This type of privilege management includes, for example, automatic adjustments of privileges if users are operating out of their normal work times, or if information systems are under duress or in emergency maintenance situations. This control enhancement also includes the ancillary effects of privilege changes, for example, the potential changes to encryption keys used for communications. Dynamic privilege management can support requirements for information system resiliency.", "external_references": [ { @@ -152,14 +152,14 @@ } ], "id": "course-of-action--93ace6dd-d0c9-4c4d-9f62-5572303efe90", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Dynamic Privilege Management", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The organization:\n\n* **AC-2 (7)(a)** Establishes and administers privileged user accounts in accordance with a role-based access scheme that organizes allowed information system access and privileges into roles;\n* **AC-2 (7)(b)** Monitors privileged role assignments; and\n* **AC-2 (7)(c)** Takes [Assignment: organization-defined actions] when privileged role assignments are no longer appropriate.\n\nPrivileged roles are organization-defined roles assigned to individuals that allow those individuals to perform certain security-relevant functions that ordinary users are not authorized to perform. These privileged roles include, for example, key management, account management, network and system administration, database administration, and web administration.", "external_references": [ { @@ -168,14 +168,14 @@ } ], "id": "course-of-action--142e197e-bb16-443b-a149-d9ed102efdc8", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Role-Based Schemes", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.727Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The information system creates [Assignment: organization-defined information system accounts] dynamically.\nDynamic approaches for creating information system accounts (e.g., as implemented within service-oriented architectures) rely on establishing accounts (identities) at run time for entities that were previously unknown. Organizations plan for dynamic creation of information system accounts by establishing trust relationships and mechanisms with the appropriate authorities to validate related authorizations and privileges.", "external_references": [ { @@ -184,14 +184,14 @@ } ], "id": "course-of-action--b90badd3-2e33-443d-a2f5-62623c6d886a", - "modified": "2021-01-06T18:28:39.727Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Dynamic Account Creation", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The organization only permits the use of shared/group accounts that meet [Assignment: organization-defined conditions for establishing shared/group accounts].", "external_references": [ { @@ -200,14 +200,14 @@ } ], "id": "course-of-action--8eb60f8c-e877-4c18-8cc1-ef93f29d61b3", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Restrictions On Use Of Shared / Group Accounts", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The information system terminates shared/group account credentials when members leave the group.", "external_references": [ { @@ -216,14 +216,14 @@ } ], "id": "course-of-action--02f0ae9f-c235-4e3a-ba4f-e3c1ff0709be", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Shared / Group Account Credential Termination", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The information system enforces [Assignment: organization-defined circumstances and/or usage conditions] for [Assignment: organization-defined information system accounts].\nOrganizations can describe the specific conditions or circumstances under which information system accounts can be used, for example, by restricting usage to certain days of the week, time of day, or specific durations of time.", "external_references": [ { @@ -232,7 +232,7 @@ } ], "id": "course-of-action--e6dc10d0-01e9-4336-9e5d-22bad4cb67b5", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Usage Conditions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -242,7 +242,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The organization:\n\n* **AC-2 (12)(a)** Monitors information system accounts for [Assignment: organization-defined atypical usage]; and\n* **AC-2 (12)(b)** Reports atypical usage of information system accounts to [Assignment: organization-defined personnel or roles].\n\nAtypical usage includes, for example, accessing information systems at certain times of the day and from locations that are not consistent with the normal usage patterns of individuals working in organizations.", "external_references": [ { @@ -251,7 +251,7 @@ } ], "id": "course-of-action--377e0686-a338-4173-8f82-2d6cb31cc69e", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Account Monitoring / Atypical Usage", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -261,7 +261,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.877Z", "description": "The organization disables accounts of users posing a significant risk within [Assignment: organization-defined time period] of discovery of the risk.\nUsers posing a significant risk to organizations include individuals for whom reliable evidence or intelligence indicates either the intention to use authorized access to information systems to cause harm or through whom adversaries will cause harm. Harm includes potential adverse impacts to organizational operations and assets, individuals, other organizations, or the Nation. Close coordination between authorizing officials, information system administrators, and human resource managers is essential in order for timely execution of this control enhancement.", "external_references": [ { @@ -270,7 +270,7 @@ } ], "id": "course-of-action--fab59432-ccbc-47b8-b66a-677afb635b75", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.877Z", "name": "Disable Accounts For High-Risk Individuals", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -280,7 +280,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system enforces approved authorizations for logical access to information and system resources in accordance with applicable access control policies.\nAccess control policies (e.g., identity-based policies, role-based policies, control matrices, cryptography) control access between active entities or subjects (i.e., users or processes acting on behalf of users) and passive entities or objects (e.g., devices, files, records, domains) in information systems. In addition to enforcing authorized access at the information system level and recognizing that information systems can host many applications and services in support of organizational missions and business operations, access enforcement mechanisms can also be employed at the application and service level to provide increased information security.", "external_references": [ { @@ -289,7 +289,7 @@ } ], "id": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Access Enforcement", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -301,7 +301,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.729Z", + "created": "2021-01-13T01:50:48.878Z", "description": "[Withdrawn: Incorporated into AC-6].", "external_references": [ { @@ -310,14 +310,14 @@ } ], "id": "course-of-action--d1e266a6-35dc-4c8f-80b6-43e365d33d39", - "modified": "2021-01-06T18:28:39.729Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Restricted Access To Privileged Functions", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.729Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system enforces dual authorization for [Assignment: organization-defined privileged commands and/or other organization-defined actions].\nDual authorization mechanisms require the approval of two authorized individuals in order to execute. Organizations do not require dual authorization mechanisms when immediate responses are necessary to ensure public and environmental safety. Dual authorization may also be known as two-person control.", "external_references": [ { @@ -326,14 +326,14 @@ } ], "id": "course-of-action--63a62627-7ece-4def-a821-7cf4d9d8f46d", - "modified": "2021-01-06T18:28:39.729Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Dual Authorization", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.729Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system enforces [Assignment: organization-defined mandatory access control policy] over all subjects and objects where the policy:\n\n* **AC-3 (3)(a)** Is uniformly enforced across all subjects and objects within the boundary of the information system;\n* **AC-3 (3)(b)** Specifies that a subject that has been granted access to information is constrained from doing any of the following;\n * **AC-3 (3)(b)(1)** Passing the information to unauthorized subjects or objects;\n * **AC-3 (3)(b)(2)** Granting its privileges to other subjects;\n * **AC-3 (3)(b)(3)** Changing one or more security attributes on subjects, objects, the information system, or information system components;\n * **AC-3 (3)(b)(4)** Choosing the security attributes and attribute values to be associated with newly created or modified objects; or\n * **AC-3 (3)(b)(5)** Changing the rules governing access control; and\n* **AC-3 (3)(c)** Specifies that [Assignment: organization-defined subjects] may explicitly be granted [Assignment: organization-defined privileges (i.e., they are trusted subjects)] such that they are not limited by some or all of the above constraints.\n\nMandatory access control as defined in this control enhancement is synonymous with nondiscretionary access control, and is not constrained only to certain historical uses (e.g., implementations using the Bell-LaPadula Model). The above class of mandatory access control policies constrains what actions subjects can take with information obtained from data objects for which they have already been granted access, thus preventing the subjects from passing the information to unauthorized subjects and objects. This class of mandatory access control policies also constrains what actions subjects can take with respect to the propagation of access control privileges; that is, a subject with a privilege cannot pass that privilege to other subjects. The policy is uniformly enforced over all subjects and objects to which the information system has control. Otherwise, the access control policy can be circumvented. This enforcement typically is provided via an implementation that meets the reference monitor concept (see AC-25). The policy is bounded by the information system boundary (i.e., once the information is passed outside of the control of the system, additional means may be required to ensure that the constraints on the information remain in effect). The trusted subjects described above are granted privileges consistent with the concept of least privilege (see AC-6). Trusted subjects are only given the minimum privileges relative to the above policy necessary for satisfying organizational mission/business needs. The control is most applicable when there is some policy mandate (e.g., law, Executive Order, directive, or regulation) that establishes a policy regarding access to sensitive/classified information and some users of the information system are not authorized access to all sensitive/classified information resident in the information system. This control can operate in conjunction with AC-3 (4). A subject that is constrained in its operation by policies governed by this control is still able to operate under the less rigorous constraints of AC-3 (4), but policies governed by this control take precedence over the less rigorous constraints of AC-3 (4). For example, while a mandatory access control policy imposes a constraint preventing a subject from passing information to another subject operating at a different sensitivity label, AC-3 (4) permits the subject to pass the information to any subject with the same sensitivity label as the subject.", "external_references": [ { @@ -342,14 +342,14 @@ } ], "id": "course-of-action--e616455e-c4c7-4260-9fe3-4826774d5b91", - "modified": "2021-01-06T18:28:39.729Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Mandatory Access Control", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.729Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system enforces [Assignment: organization-defined discretionary access control policy] over defined subjects and objects where the policy specifies that a subject that has been granted access to information can do one or more of the following:\n\n* **AC-3 (4)(a)** Pass the information to any other subjects or objects;\n* **AC-3 (4)(b)** Grant its privileges to other subjects;\n* **AC-3 (4)(c)** Change security attributes on subjects, objects, the information system, or the information system\u00ef\u00bf\u00bds components;\n* **AC-3 (4)(d)** Choose the security attributes to be associated with newly created or revised objects; or\n* **AC-3 (4)(e)** Change the rules governing access control.\n\nWhen discretionary access control policies are implemented, subjects are not constrained with regard to what actions they can take with information for which they have already been granted access. Thus, subjects that have been granted access to information are not prevented from passing (i.e., the subjects have the discretion to pass) the information to other subjects or objects. This control enhancement can operate in conjunction with AC-3 (3). A subject that is constrained in its operation by policies governed by AC-3 (3) is still able to operate under the less rigorous constraints of this control enhancement. Thus, while AC-3 (3) imposes constraints preventing a subject from passing information to another subject operating at a different sensitivity level, AC-3 (4) permits the subject to pass the information to any subject at the same sensitivity level. The policy is bounded by the information system boundary. Once the information is passed outside of the control of the information system, additional means may be required to ensure that the constraints remain in effect. While the older, more traditional definitions of discretionary access control require identity-based access control, that limitation is not required for this use of discretionary access control.", "external_references": [ { @@ -358,14 +358,14 @@ } ], "id": "course-of-action--f80e9f71-397b-4c63-aa73-57cc6e8486c6", - "modified": "2021-01-06T18:28:39.729Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Discretionary Access Control", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.730Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system prevents access to [Assignment: organization-defined security-relevant information] except during secure, non-operable system states.\nSecurity-relevant information is any information within information systems that can potentially impact the operation of security functions or the provision of security services in a manner that could result in failure to enforce system security policies or maintain the isolation of code and data. Security-relevant information includes, for example, filtering rules for routers/firewalls, cryptographic key management information, configuration parameters for security services, and access control lists. Secure, non-operable system states include the times in which information systems are not performing mission/business-related processing (e.g., the system is off-line for maintenance, troubleshooting, boot-up, shut down).", "external_references": [ { @@ -374,14 +374,14 @@ } ], "id": "course-of-action--3c89750f-21ee-4f40-aa88-4b38f52c8150", - "modified": "2021-01-06T18:28:39.730Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Security-Relevant Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.730Z", + "created": "2021-01-13T01:50:48.878Z", "description": "[Withdrawn: Incorporated into MP-4 and SC-28].", "external_references": [ { @@ -390,14 +390,14 @@ } ], "id": "course-of-action--cbbd4caf-5cd3-428b-8646-e3d33e631912", - "modified": "2021-01-06T18:28:39.730Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Protection Of User And System Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.730Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system enforces a role-based access control policy over defined subjects and objects and controls access based upon [Assignment: organization-defined roles and users authorized to assume such roles].\nRole-based access control (RBAC) is an access control policy that restricts information system access to authorized users. Organizations can create specific roles based on job functions and the authorizations (i.e., privileges) to perform needed operations on organizational information systems associated with the organization-defined roles. When users are assigned to the organizational roles, they inherit the authorizations or privileges defined for those roles. RBAC simplifies privilege administration for organizations because privileges are not assigned directly to every user (which can be a significant number of individuals for mid- to large-size organizations) but are instead acquired through role assignments. RBAC can be implemented either as a mandatory or discretionary form of access control. For organizations implementing RBAC with mandatory access controls, the requirements in AC-3 (3) define the scope of the subjects and objects covered by the policy.", "external_references": [ { @@ -406,14 +406,14 @@ } ], "id": "course-of-action--20de3cbe-ea41-476d-8d37-509523a0cc6a", - "modified": "2021-01-06T18:28:39.730Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Role-Based Access Control", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.730Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system enforces the revocation of access authorizations resulting from changes to the security attributes of subjects and objects based on [Assignment: organization-defined rules governing the timing of revocations of access authorizations].\nRevocation of access rules may differ based on the types of access revoked. For example, if a subject (i.e., user or process) is removed from a group, access may not be revoked until the next time the object (e.g., file) is opened or until the next time the subject attempts a new access to the object. Revocation based on changes to security labels may take effect immediately. Organizations can provide alternative approaches on how to make revocations immediate if information systems cannot provide such capability and immediate revocation is necessary.", "external_references": [ { @@ -422,14 +422,14 @@ } ], "id": "course-of-action--0218a669-b188-44a5-95c4-3e0329a28ec2", - "modified": "2021-01-06T18:28:39.730Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Revocation Of Access Authorizations", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.731Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system does not release information outside of the established system boundary unless:\n\n* **AC-3 (9)(a)** The receiving [Assignment: organization-defined information system or system component] provides [Assignment: organization-defined security safeguards]; and\n* **AC-3 (9)(b)** [Assignment: organization-defined security safeguards] are used to validate the appropriateness of the information designated for release.\n\nInformation systems can only protect organizational information within the confines of established system boundaries. Additional security safeguards may be needed to ensure that such information is adequately protected once it is passed beyond the established information system boundaries. Examples of information leaving the system boundary include transmitting information to an external information system or printing the information on one of its printers. In cases where the information system is unable to make a determination of the adequacy of the protections provided by entities outside its boundary, as a mitigating control, organizations determine procedurally whether the external information systems are providing adequate security. The means used to determine the adequacy of the security provided by external information systems include, for example, conducting inspections or periodic testing, establishing agreements between the organization and its counterpart organizations, or some other process. The means used by external entities to protect the information received need not be the same as those used by the organization, but the means employed are sufficient to provide consistent adjudication of the security policy to protect the information. This control enhancement requires information systems to employ technical or procedural means to validate the information prior to releasing it to external systems. For example, if the information system passes information to another system controlled by another organization, technical means are employed to validate that the security attributes associated with the exported information are appropriate for the receiving system. Alternatively, if the information system passes information to a printer in organization-controlled space, procedural means can be employed to ensure that only appropriately authorized individuals gain access to the printer. This control enhancement is most applicable when there is some policy mandate (e.g., law, Executive Order, directive, or regulation) that establishes policy regarding access to the information, and that policy applies beyond the realm of a particular information system or organization.", "external_references": [ { @@ -438,14 +438,14 @@ } ], "id": "course-of-action--44e74c5e-7d77-49ae-bf38-4b213e73954f", - "modified": "2021-01-06T18:28:39.731Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Controlled Release", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.731Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The organization employs an audited override of automated access control mechanisms under [Assignment: organization-defined conditions].", "external_references": [ { @@ -454,14 +454,14 @@ } ], "id": "course-of-action--dd2ad56c-80ca-4b39-a4cf-ef3da33ddf22", - "modified": "2021-01-06T18:28:39.731Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Audited Override Of Access Control Mechanisms", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.731Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system enforces approved authorizations for controlling the flow of information within the system and between interconnected systems based on [Assignment: organization-defined information flow control policies].\nInformation flow control regulates where information is allowed to travel within an information system and between information systems (as opposed to who is allowed to access the information) and without explicit regard to subsequent accesses to that information. Flow control restrictions include, for example, keeping export-controlled information from being transmitted in the clear to the Internet, blocking outside traffic that claims to be from within the organization, restricting web requests to the Internet that are not from the internal web proxy server, and limiting information transfers between organizations based on data structures and content. Transferring information between information systems representing different security domains with different security policies introduces risk that such transfers violate one or more domain security policies. In such situations, information owners/stewards provide guidance at designated policy enforcement points between interconnected systems. Organizations consider mandating specific architectural solutions when required to enforce specific security policies. Enforcement includes, for example: (i) prohibiting information transfers between interconnected systems (i.e., allowing access only); (ii) employing hardware mechanisms to enforce one-way information flows; and (iii) implementing trustworthy regrading mechanisms to reassign security attributes and security labels. Organizations commonly employ information flow control policies and enforcement mechanisms to control the flow of information between designated sources and destinations (e.g., networks, individuals, and devices) within information systems and between interconnected systems. Flow control is based on the characteristics of the information and/or the information path. Enforcement occurs, for example, in boundary protection devices (e.g., gateways, routers, guards, encrypted tunnels, firewalls) that employ rule sets or establish configuration settings that restrict information system services, provide a packet-filtering capability based on header information, or message-filtering capability based on message content (e.g., implementing key word searches or using document characteristics). Organizations also consider the trustworthiness of filtering/inspection mechanisms (i.e., hardware, firmware, and software components) that are critical to information flow enforcement. Control enhancements 3 through 22 primarily address cross-domain solution needs which focus on more advanced filtering techniques, in-depth analysis, and stronger flow enforcement mechanisms implemented in cross-domain products, for example, high-assurance guards. Such capabilities are generally not available in commercial off-the-shelf information technology products.", "external_references": [ { @@ -470,7 +470,7 @@ } ], "id": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "modified": "2021-01-06T18:28:39.731Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Information Flow Enforcement", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -481,7 +481,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.731Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system uses [Assignment: organization-defined security attributes] associated with [Assignment: organization-defined information, source, and destination objects] to enforce [Assignment: organization-defined information flow control policies] as a basis for flow control decisions.\nInformation flow enforcement mechanisms compare security attributes associated with information (data content and data structure) and source/destination objects, and respond appropriately (e.g., block, quarantine, alert administrator) when the mechanisms encounter information flows not explicitly allowed by information flow policies. For example, an information object labeled Secret would be allowed to flow to a destination object labeled Secret, but an information object labeled Top Secret would not be allowed to flow to a destination object labeled Secret. Security attributes can also include, for example, source and destination addresses employed in traffic filter firewalls. Flow enforcement using explicit security attributes can be used, for example, to control the release of certain types of information.", "external_references": [ { @@ -490,14 +490,14 @@ } ], "id": "course-of-action--605e9789-938a-4a1c-8c4b-a861493a29a7", - "modified": "2021-01-06T18:28:39.731Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Object Security Attributes", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.732Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system uses protected processing domains to enforce [Assignment: organization-defined information flow control policies] as a basis for flow control decisions.\nWithin information systems, protected processing domains are processing spaces that have controlled interactions with other processing spaces, thus enabling control of information flows between these spaces and to/from data/information objects. A protected processing domain can be provided, for example, by implementing domain and type enforcement. In domain and type enforcement, information system processes are assigned to domains; information is identified by types; and information flows are controlled based on allowed information accesses (determined by domain and type), allowed signaling among domains, and allowed process transitions to other domains.", "external_references": [ { @@ -506,14 +506,14 @@ } ], "id": "course-of-action--ffb6bca4-1c1c-4076-8c3b-4609fd36a10d", - "modified": "2021-01-06T18:28:39.732Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Processing Domains", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.732Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces dynamic information flow control based on [Assignment: organization-defined policies].\nOrganizational policies regarding dynamic information flow control include, for example, allowing or disallowing information flows based on changing conditions or mission/operational considerations. Changing conditions include, for example, changes in organizational risk tolerance due to changes in the immediacy of mission/business needs, changes in the threat environment, and detection of potentially harmful or adverse events.", "external_references": [ { @@ -522,14 +522,14 @@ } ], "id": "course-of-action--986b083f-33f0-4759-a60b-68f0ed711696", - "modified": "2021-01-06T18:28:39.732Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Dynamic Information Flow Control", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.732Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system prevents encrypted information from bypassing content-checking mechanisms by [Selection (one or more): decrypting the information; blocking the flow of the encrypted information; terminating communications sessions attempting to pass encrypted information; [Assignment: organization-defined procedure or method]].", "external_references": [ { @@ -538,14 +538,14 @@ } ], "id": "course-of-action--e5130b47-0ab4-4afa-98ca-5c6b113ec05d", - "modified": "2021-01-06T18:28:39.732Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Content Check Encrypted Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.732Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces [Assignment: organization-defined limitations] on embedding data types within other data types.\nEmbedding data types within other data types may result in reduced flow control effectiveness. Data type embedding includes, for example, inserting executable files as objects within word processing files, inserting references or descriptive information into a media file, and compressed or archived data types that may include multiple embedded data types. Limitations on data type embedding consider the levels of embedding and prohibit levels of data type embedding that are beyond the capability of the inspection tools.", "external_references": [ { @@ -554,14 +554,14 @@ } ], "id": "course-of-action--0922581c-0595-45e6-973a-78e5b98f58af", - "modified": "2021-01-06T18:28:39.732Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Embedded Data Types", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.732Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces information flow control based on [Assignment: organization-defined metadata].\nMetadata is information used to describe the characteristics of data. Metadata can include structural metadata describing data structures (e.g., data format, syntax, and semantics) or descriptive metadata describing data contents (e.g., age, location, telephone number). Enforcing allowed information flows based on metadata enables simpler and more effective flow control. Organizations consider the trustworthiness of metadata with regard to data accuracy (i.e., knowledge that the metadata values are correct with respect to the data), data integrity (i.e., protecting against unauthorized changes to metadata tags), and the binding of metadata to the data payload (i.e., ensuring sufficiently strong binding techniques with appropriate levels of assurance).", "external_references": [ { @@ -570,14 +570,14 @@ } ], "id": "course-of-action--073ef3dc-9659-4241-9cc7-208797310725", - "modified": "2021-01-06T18:28:39.732Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Metadata", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.733Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces [Assignment: organization-defined one-way information flows] using hardware mechanisms.", "external_references": [ { @@ -586,14 +586,14 @@ } ], "id": "course-of-action--bdbbdaab-71dd-4d4f-8751-f3120d8cb3f3", - "modified": "2021-01-06T18:28:39.733Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "One-Way Flow Mechanisms", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.733Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces information flow control using [Assignment: organization-defined security policy filters] as a basis for flow control decisions for [Assignment: organization-defined information flows].\nOrganization-defined security policy filters can address data structures and content. For example, security policy filters for data structures can check for maximum file lengths, maximum field sizes, and data/file types (for structured and unstructured data). Security policy filters for data content can check for specific words (e.g., dirty/clean word filters), enumerated values or data value ranges, and hidden content. Structured data permits the interpretation of data content by applications. Unstructured data typically refers to digital information without a particular data structure or with a data structure that does not facilitate the development of rule sets to address the particular sensitivity of the information conveyed by the data or the associated flow enforcement decisions. Unstructured data consists of: (i) bitmap objects that are inherently non language-based (i.e., image, video, or audio files); and (ii) textual objects that are based on written or printed languages (e.g., commercial off-the-shelf word processing documents, spreadsheets, or emails). Organizations can implement more than one security policy filter to meet information flow control objectives (e.g., employing clean word lists in conjunction with dirty word lists may help to reduce false positives).", "external_references": [ { @@ -602,14 +602,14 @@ } ], "id": "course-of-action--f7085306-3570-4432-89a9-70398342c4b5", - "modified": "2021-01-06T18:28:39.733Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Security Policy Filters", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.733Z", + "created": "2021-01-13T01:50:48.880Z", "description": "The information system enforces the use of human reviews for [Assignment: organization-defined information flows] under the following conditions: [Assignment: organization-defined conditions].\nOrganizations define security policy filters for all situations where automated flow control decisions are possible. When a fully automated flow control decision is not possible, then a human review may be employed in lieu of, or as a complement to, automated security policy filtering. Human reviews may also be employed as deemed necessary by organizations.", "external_references": [ { @@ -618,14 +618,14 @@ } ], "id": "course-of-action--7171c97a-0184-46f5-9196-cfce4480eff9", - "modified": "2021-01-06T18:28:39.733Z", + "modified": "2021-01-13T01:50:48.880Z", "name": "Human Reviews", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.733Z", + "created": "2021-01-13T01:50:48.881Z", "description": "The information system provides the capability for privileged administrators to enable/disable [Assignment: organization-defined security policy filters] under the following conditions: [Assignment: organization-defined conditions].\nFor example, as allowed by the information system authorization, administrators can enable security policy filters to accommodate approved data types.", "external_references": [ { @@ -634,14 +634,14 @@ } ], "id": "course-of-action--56389fba-9273-4c13-ae0e-e1e0e6acef8c", - "modified": "2021-01-06T18:28:39.733Z", + "modified": "2021-01-13T01:50:48.881Z", "name": "Enable / Disable Security Policy Filters", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.734Z", + "created": "2021-01-13T01:50:48.881Z", "description": "The information system provides the capability for privileged administrators to configure [Assignment: organization-defined security policy filters] to support different security policies.\nFor example, to reflect changes in security policies, administrators can change the list of \u00ef\u00bf\u00bddirty words\u00ef\u00bf\u00bd that security policy mechanisms check in accordance with the definitions provided by organizations.", "external_references": [ { @@ -650,14 +650,14 @@ } ], "id": "course-of-action--1d73d8cb-1d33-4c2a-a810-7ae3d0fc6173", - "modified": "2021-01-06T18:28:39.734Z", + "modified": "2021-01-13T01:50:48.881Z", "name": "Configuration Of Security Policy Filters", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.734Z", + "created": "2021-01-13T01:50:48.881Z", "description": "The information system, when transferring information between different security domains, uses [Assignment: organization-defined data type identifiers] to validate data essential for information flow decisions.\nData type identifiers include, for example, filenames, file types, file signatures/tokens, and multiple internal file signatures/tokens. Information systems may allow transfer of data only if compliant with data type format specifications.", "external_references": [ { @@ -666,14 +666,14 @@ } ], "id": "course-of-action--44a8343f-316a-4d18-8b00-eb679b9f3d11", - "modified": "2021-01-06T18:28:39.734Z", + "modified": "2021-01-13T01:50:48.881Z", "name": "Data Type Identifiers", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.734Z", + "created": "2021-01-13T01:50:48.881Z", "description": "The information system, when transferring information between different security domains, decomposes information into [Assignment: organization-defined policy-relevant subcomponents] for submission to policy enforcement mechanisms.\nPolicy enforcement mechanisms apply filtering, inspection, and/or sanitization rules to the policy-relevant subcomponents of information to facilitate flow enforcement prior to transferring such information to different security domains. Parsing transfer files facilitates policy decisions on source, destination, certificates, classification, attachments, and other security-related component differentiators.", "external_references": [ { @@ -682,14 +682,14 @@ } ], "id": "course-of-action--3f993faa-ff0b-4d3f-98b3-701f9ada6c69", - "modified": "2021-01-06T18:28:39.734Z", + "modified": "2021-01-13T01:50:48.881Z", "name": "Decomposition Into Policy-Relevant Subcomponents", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.734Z", + "created": "2021-01-13T01:50:48.881Z", "description": "The information system, when transferring information between different security domains, implements [Assignment: organization-defined security policy filters] requiring fully enumerated formats that restrict data structure and content.\nData structure and content restrictions reduce the range of potential malicious and/or unsanctioned content in cross-domain transactions. Security policy filters that restrict data structures include, for example, restricting file sizes and field lengths. Data content policy filters include, for example: (i) encoding formats for character sets (e.g., Universal Character Set Transformation Formats, American Standard Code for Information Interchange); (ii) restricting character data fields to only contain alpha-numeric characters; (iii) prohibiting special characters; and (iv) validating schema structures.", "external_references": [ { @@ -698,14 +698,14 @@ } ], "id": "course-of-action--c4f85dae-ac3f-4589-a6c7-af5c7b136d95", - "modified": "2021-01-06T18:28:39.734Z", + "modified": "2021-01-13T01:50:48.881Z", "name": "Security Policy Filter Constraints", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.734Z", + "created": "2021-01-13T01:50:48.882Z", "description": "The information system, when transferring information between different security domains, examines the information for the presence of [Assignment: organized-defined unsanctioned information] and prohibits the transfer of such information in accordance with the [Assignment: organization-defined security policy].\nDetection of unsanctioned information includes, for example, checking all information to be transferred for malicious code and dirty words.", "external_references": [ { @@ -714,14 +714,14 @@ } ], "id": "course-of-action--4a4917dd-aa29-439c-be29-f988e21e042f", - "modified": "2021-01-06T18:28:39.734Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Detection Of Unsanctioned Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.735Z", + "created": "2021-01-13T01:50:48.882Z", "description": "[Withdrawn: Incorporated into AC-4].", "external_references": [ { @@ -730,14 +730,14 @@ } ], "id": "course-of-action--53d76553-1a70-43af-abfb-fbddf8d05533", - "modified": "2021-01-06T18:28:39.735Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Information Transfers On Interconnected Systems", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.735Z", + "created": "2021-01-13T01:50:48.882Z", "description": "The information system uniquely identifies and authenticates source and destination points by [Selection (one or more): organization, system, application, individual] for information transfer.\nAttribution is a critical component of a security concept of operations. The ability to identify source and destination points for information flowing in information systems, allows the forensic reconstruction of events when required, and encourages policy compliance by attributing policy violations to specific organizations/individuals. Successful domain authentication requires that information system labels distinguish among systems, organizations, and individuals involved in preparing, sending, receiving, or disseminating information.", "external_references": [ { @@ -746,14 +746,14 @@ } ], "id": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", - "modified": "2021-01-06T18:28:39.735Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Domain Authentication", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.735Z", + "created": "2021-01-13T01:50:48.882Z", "description": "The information system binds security attributes to information using [Assignment: organization-defined binding techniques] to facilitate information flow policy enforcement.\nBinding techniques implemented by information systems affect the strength of security attribute binding to information. Binding strength and the assurance associated with binding techniques play an important part in the trust organizations have in the information flow enforcement process. The binding techniques affect the number and degree of additional reviews required by organizations.", "external_references": [ { @@ -762,14 +762,14 @@ } ], "id": "course-of-action--62fe0633-d2b1-4ee3-8248-659ea832dfd2", - "modified": "2021-01-06T18:28:39.735Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Security Attribute Binding", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.735Z", + "created": "2021-01-13T01:50:48.882Z", "description": "The information system, when transferring information between different security domains, applies the same security policy filtering to metadata as it applies to data payloads.\nThis control enhancement requires the validation of metadata and the data to which the metadata applies. Some organizations distinguish between metadata and data payloads (i.e., only the data to which the metadata is bound). Other organizations do not make such distinctions, considering metadata and the data to which the metadata applies as part of the payload. All information (including metadata and the data to which the metadata applies) is subject to filtering and inspection.", "external_references": [ { @@ -778,14 +778,14 @@ } ], "id": "course-of-action--c7a0b547-aeeb-4f0f-8778-835b9f56556c", - "modified": "2021-01-06T18:28:39.735Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Validation Of Metadata", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.735Z", + "created": "2021-01-13T01:50:48.882Z", "description": "The organization employs [Assignment: organization-defined solutions in approved configurations] to control the flow of [Assignment: organization-defined information] across security domains.\nOrganizations define approved solutions and configurations in cross-domain policies and guidance in accordance with the types of information flows across classification boundaries. The Unified Cross Domain Management Office (UCDMO) provides a baseline listing of approved cross-domain solutions.", "external_references": [ { @@ -794,14 +794,14 @@ } ], "id": "course-of-action--2480cc5f-159f-454e-8670-3ab06b032740", - "modified": "2021-01-06T18:28:39.735Z", + "modified": "2021-01-13T01:50:48.882Z", "name": "Approved Solutions", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The information system separates information flows logically or physically using [Assignment: organization-defined mechanisms and/or techniques] to accomplish [Assignment: organization-defined required separations by types of information].\nEnforcing the separation of information flows by type can enhance protection by ensuring that information is not commingled while in transit and by enabling flow control by transmission paths perhaps not otherwise achievable. Types of separable information include, for example, inbound and outbound communications traffic, service requests and responses, and information of differing security categories.", "external_references": [ { @@ -810,14 +810,14 @@ } ], "id": "course-of-action--8005c894-4ab4-4197-8605-b421ec9e8601", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Physical / Logical Separation Of Information Flows", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The information system provides access from a single device to computing platforms, applications, or data residing on multiple different security domains, while preventing any information flow between the different security domains.\nThe information system, for example, provides a desktop for users to access each connected security domain without providing any mechanisms to allow transfer of information between the different security domains.", "external_references": [ { @@ -826,14 +826,14 @@ } ], "id": "course-of-action--3699bdc3-5b09-4f70-bb11-3bd1ea06f76c", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Access Only", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization:\n\n* **AC-5a.** Separates [Assignment: organization-defined duties of individuals];\n* **AC-5b.** Documents separation of duties of individuals; and\n* **AC-5c.** Defines information system access authorizations to support separation of duties.\n\nSeparation of duties addresses the potential for abuse of authorized privileges and helps to reduce the risk of malevolent activity without collusion. Separation of duties includes, for example: (i) dividing mission functions and information system support functions among different individuals and/or roles; (ii) conducting information system support functions with different individuals (e.g., system management, programming, configuration management, quality assurance and testing, and network security); and (iii) ensuring security personnel administering access control functions do not also administer audit functions.", "external_references": [ { @@ -842,7 +842,7 @@ } ], "id": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Separation Of Duties", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -853,7 +853,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization employs the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) which are necessary to accomplish assigned tasks in accordance with organizational missions and business functions.\nOrganizations employ least privilege for specific duties and information systems. The principle of least privilege is also applied to information system processes, ensuring that the processes operate at privilege levels no higher than necessary to accomplish required organizational missions/business functions. Organizations consider the creation of additional processes, roles, and information system accounts as necessary, to achieve least privilege. Organizations also apply least privilege to the development, implementation, and operation of organizational information systems.", "external_references": [ { @@ -862,7 +862,7 @@ } ], "id": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Least Privilege", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -873,7 +873,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.737Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization explicitly authorizes access to [Assignment: organization-defined security functions (deployed in hardware, software, and firmware) and security-relevant information].\nSecurity functions include, for example, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters. Security-relevant information includes, for example, filtering rules for routers/firewalls, cryptographic key management information, configuration parameters for security services, and access control lists. Explicitly authorized personnel include, for example, security administrators, system and network administrators, system security officers, system maintenance personnel, system programmers, and other privileged users.", "external_references": [ { @@ -882,7 +882,7 @@ } ], "id": "course-of-action--a63e02dd-78ae-44cd-bfe9-5de3e6a05915", - "modified": "2021-01-06T18:28:39.737Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Authorize Access To Security Functions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -893,7 +893,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.737Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization requires that users of information system accounts, or roles, with access to [Assignment: organization-defined security functions or security-relevant information], use non-privileged accounts or roles, when accessing nonsecurity functions.\nThis control enhancement limits exposure when operating from within privileged accounts or roles. The inclusion of roles addresses situations where organizations implement access control policies such as role-based access control and where a change of role provides the same degree of assurance in the change of access authorizations for both the user and all processes acting on behalf of the user as would be provided by a change between a privileged and non-privileged account.", "external_references": [ { @@ -902,7 +902,7 @@ } ], "id": "course-of-action--a69e7652-84e6-463e-8913-41d1dc1dbabb", - "modified": "2021-01-06T18:28:39.737Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Non-Privileged Access For Nonsecurity Functions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -913,7 +913,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.737Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization authorizes network access to [Assignment: organization-defined privileged commands] only for [Assignment: organization-defined compelling operational needs] and documents the rationale for such access in the security plan for the information system.\nNetwork access is any access across a network connection in lieu of local access (i.e., user being physically present at the device).", "external_references": [ { @@ -922,7 +922,7 @@ } ], "id": "course-of-action--7c2025ad-0515-4fe0-a08c-d54eed8a3c74", - "modified": "2021-01-06T18:28:39.737Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Network Access To Privileged Commands", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -932,7 +932,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.737Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The information system provides separate processing domains to enable finer-grained allocation of user privileges.\nProviding separate processing domains for finer-grained allocation of user privileges includes, for example: (i) using virtualization techniques to allow additional privileges within a virtual machine while restricting privileges to other virtual machines or to the underlying actual machine; (ii) employing hardware and/or software domain separation mechanisms; and (iii) implementing separate physical domains.", "external_references": [ { @@ -941,14 +941,14 @@ } ], "id": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", - "modified": "2021-01-06T18:28:39.737Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Separate Processing Domains", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.738Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The organization restricts privileged accounts on the information system to [Assignment: organization-defined personnel or roles].\nPrivileged accounts, including super user accounts, are typically described as system administrator for various types of commercial off-the-shelf operating systems. Restricting privileged accounts to specific personnel or roles prevents day-to-day users from having access to privileged information/functions. Organizations may differentiate in the application of this control enhancement between allowed privileges for local accounts and for domain accounts provided organizations retain the ability to control information system configurations for key security parameters and as otherwise necessary to sufficiently mitigate risk.", "external_references": [ { @@ -957,7 +957,7 @@ } ], "id": "course-of-action--f20cdc32-61ce-4332-9beb-40ea73170753", - "modified": "2021-01-06T18:28:39.738Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Privileged Accounts", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -968,7 +968,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.738Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The organization prohibits privileged access to the information system by non-organizational users.", "external_references": [ { @@ -977,14 +977,14 @@ } ], "id": "course-of-action--57790262-7466-476f-8e28-e0651e7c8aff", - "modified": "2021-01-06T18:28:39.738Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Privileged Access By Non-Organizational Users", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.738Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The organization:\n\n* **AC-6 (7)(a)** Reviews [Assignment: organization-defined frequency] the privileges assigned to [Assignment: organization-defined roles or classes of users] to validate the need for such privileges; and\n* **AC-6 (7)(b)** Reassigns or removes privileges, if necessary, to correctly reflect organizational mission/business needs.\n\nThe need for certain assigned user privileges may change over time reflecting changes in organizational missions/business function, environments of operation, technologies, or threat. Periodic review of assigned user privileges is necessary to determine if the rationale for assigning such privileges remains valid. If the need cannot be revalidated, organizations take appropriate corrective actions.", "external_references": [ { @@ -993,14 +993,14 @@ } ], "id": "course-of-action--d213faed-ffd9-42a3-8e66-b50483cfdf33", - "modified": "2021-01-06T18:28:39.738Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Review Of User Privileges", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.738Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The information system prevents [Assignment: organization-defined software] from executing at higher privilege levels than users executing the software.\nIn certain situations, software applications/programs need to execute with elevated privileges to perform required functions. However, if the privileges required for execution are at a higher level than the privileges assigned to organizational users invoking such applications/programs, those users are indirectly provided with greater privileges than assigned by organizations.", "external_references": [ { @@ -1009,14 +1009,14 @@ } ], "id": "course-of-action--407481a6-2912-4e19-8f55-4f646aad88f1", - "modified": "2021-01-06T18:28:39.738Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Privilege Levels For Code Execution", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.739Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The information system audits the execution of privileged functions.\nMisuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse, and in doing so, help mitigate the risk from insider threats and the advanced persistent threat (APT).", "external_references": [ { @@ -1025,7 +1025,7 @@ } ], "id": "course-of-action--e920e73b-b22d-4772-88be-abf304ee0ac5", - "modified": "2021-01-06T18:28:39.739Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Auditing Use Of Privileged Functions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1036,7 +1036,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.739Z", + "created": "2021-01-13T01:50:48.884Z", "description": "The information system prevents non-privileged users from executing privileged functions to include disabling, circumventing, or altering implemented security safeguards/countermeasures.\nPrivileged functions include, for example, establishing information system accounts, performing system integrity checks, or administering cryptographic key management activities. Non-privileged users are individuals that do not possess appropriate authorizations. Circumventing intrusion detection and prevention mechanisms or malicious code protection mechanisms are examples of privileged functions that require protection from non-privileged users.", "external_references": [ { @@ -1045,7 +1045,7 @@ } ], "id": "course-of-action--a7ba5e7c-907a-40c5-b6ca-b173137866a2", - "modified": "2021-01-06T18:28:39.739Z", + "modified": "2021-01-13T01:50:48.884Z", "name": "Prohibit Non-Privileged Users From Executing Privileged Functions", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1056,7 +1056,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.739Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system:\n\n* **AC-7a.** Enforces a limit of [Assignment: organization-defined number] consecutive invalid logon attempts by a user during a [Assignment: organization-defined time period]; and\n* **AC-7b.** Automatically [Selection: locks the account/node for an [Assignment: organization-defined time period]; locks the account/node until released by an administrator; delays next logon prompt according to [Assignment: organization-defined delay algorithm]] when the maximum number of unsuccessful attempts is exceeded.\n\nThis control applies regardless of whether the logon occurs via a local or network connection. Due to the potential for denial of service, automatic lockouts initiated by information systems are usually temporary and automatically release after a predetermined time period established by organizations. If a delay algorithm is selected, organizations may choose to employ different algorithms for different information system components based on the capabilities of those components. Responses to unsuccessful logon attempts may be implemented at both the operating system and the application levels.", "external_references": [ { @@ -1065,7 +1065,7 @@ } ], "id": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "modified": "2021-01-06T18:28:39.739Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Unsuccessful Logon Attempts", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1077,7 +1077,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.740Z", + "created": "2021-01-13T01:50:48.885Z", "description": "[Withdrawn: Incorporated into AC-7].", "external_references": [ { @@ -1086,14 +1086,14 @@ } ], "id": "course-of-action--26506d7f-4d61-4de3-8fc1-24303205749e", - "modified": "2021-01-06T18:28:39.740Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Automatic Account Lock", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.740Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system purges/wipes information from [Assignment: organization-defined mobile devices] based on [Assignment: organization-defined purging/wiping requirements/techniques] after [Assignment: organization-defined number] consecutive, unsuccessful device logon attempts.\nThis control enhancement applies only to mobile devices for which a logon occurs (e.g., personal digital assistants, smart phones, tablets). The logon is to the mobile device, not to any one account on the device. Therefore, successful logons to any accounts on mobile devices reset the unsuccessful logon count to zero. Organizations define information to be purged/wiped carefully in order to avoid over purging/wiping which may result in devices becoming unusable. Purging/wiping may be unnecessary if the information on the device is protected with sufficiently strong encryption mechanisms.", "external_references": [ { @@ -1102,14 +1102,14 @@ } ], "id": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", - "modified": "2021-01-06T18:28:39.740Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Purge / Wipe Mobile Device", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.740Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system:\n\n* **AC-8a.** Displays to users [Assignment: organization-defined system use notification message or banner] before granting access to the system that provides privacy and security notices consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance and states that:\n * **AC-8a.1.** Users are accessing a U.S. Government information system;\n * **AC-8a.2.** Information system usage may be monitored, recorded, and subject to audit;\n * **AC-8a.3.** Unauthorized use of the information system is prohibited and subject to criminal and civil penalties; and\n * **AC-8a.4.** Use of the information system indicates consent to monitoring and recording;\n* **AC-8b.** Retains the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to log on to or further access the information system; and\n* **AC-8c.** For publicly accessible systems:\n * **AC-8c.1.** Displays system use information [Assignment: organization-defined conditions], before granting further access;\n * **AC-8c.2.** Displays references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that generally prohibit those activities; and\n * **AC-8c.3.** Includes a description of the authorized uses of the system.\n\nSystem use notifications can be implemented using messages or warning banners displayed before individuals log in to information systems. System use notifications are used only for access via logon interfaces with human users and are not required when such human interfaces do not exist. Organizations consider system use notification messages/banners displayed in multiple languages based on specific organizational needs and the demographics of information system users. Organizations also consult with the Office of the General Counsel for legal review and approval of warning banner content.", "external_references": [ { @@ -1118,7 +1118,7 @@ } ], "id": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", - "modified": "2021-01-06T18:28:39.740Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "System Use Notification", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1130,7 +1130,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.741Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system notifies the user, upon successful logon (access) to the system, of the date and time of the last logon (access).\nThis control is applicable to logons to information systems via human user interfaces and logons to systems that occur in other types of architectures (e.g., service-oriented architectures).", "external_references": [ { @@ -1139,14 +1139,14 @@ } ], "id": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", - "modified": "2021-01-06T18:28:39.741Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Previous Logon (Access) Notification", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.741Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system notifies the user, upon successful logon/access, of the number of unsuccessful logon/access attempts since the last successful logon/access.", "external_references": [ { @@ -1155,14 +1155,14 @@ } ], "id": "course-of-action--b4d340e2-573b-48d6-9665-d2d58a22ef23", - "modified": "2021-01-06T18:28:39.741Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Unsuccessful Logons", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.741Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system notifies the user of the number of [Selection: successful logons/accesses; unsuccessful logon/access attempts; both] during [Assignment: organization-defined time period].", "external_references": [ { @@ -1171,14 +1171,14 @@ } ], "id": "course-of-action--ab1fba76-cbaf-42b5-82f3-86afed86b75f", - "modified": "2021-01-06T18:28:39.741Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Successful / Unsuccessful Logons", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.741Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system notifies the user of changes to [Assignment: organization-defined security-related characteristics/parameters of the user\u00ef\u00bf\u00bds account] during [Assignment: organization-defined time period].", "external_references": [ { @@ -1187,14 +1187,14 @@ } ], "id": "course-of-action--79f33838-4138-4e88-9caa-7fe40918882a", - "modified": "2021-01-06T18:28:39.741Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Notification Of Account Changes", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system notifies the user, upon successful logon (access), of the following additional information: [Assignment: organization-defined information to be included in addition to the date and time of the last logon (access)].\nThis control enhancement permits organizations to specify additional information to be provided to users upon logon including, for example, the location of last logon. User location is defined as that information which can be determined by information systems, for example, IP addresses from which network logons occurred, device identifiers, or notifications of local logons.", "external_references": [ { @@ -1203,14 +1203,14 @@ } ], "id": "course-of-action--e2e33dda-b88b-4aba-9c8b-641d6c19d93e", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Additional Logon Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system limits the number of concurrent sessions for each [Assignment: organization-defined account and/or account type] to [Assignment: organization-defined number].\nOrganizations may define the maximum number of concurrent sessions for information system accounts globally, by account type (e.g., privileged user, non-privileged user, domain, specific application), by account, or a combination. For example, organizations may limit the number of concurrent sessions for system administrators or individuals working in particularly sensitive domains or mission-critical applications. This control addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts.", "external_references": [ { @@ -1219,7 +1219,7 @@ } ], "id": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Concurrent Session Control", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1229,7 +1229,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system:\n\n* **AC-11a.** Prevents further access to the system by initiating a session lock after [Assignment: organization-defined time period] of inactivity or upon receiving a request from a user; and\n* **AC-11b.** Retains the session lock until the user reestablishes access using established identification and authentication procedures.\n\nSession locks are temporary actions taken when users stop work and move away from the immediate vicinity of information systems but do not want to log out because of the temporary nature of their absences. Session locks are implemented where session activities can be determined. This is typically at the operating system level, but can also be at the application level. Session locks are not an acceptable substitute for logging out of information systems, for example, if organizations require users to log out at the end of workdays.", "external_references": [ { @@ -1238,7 +1238,7 @@ } ], "id": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Session Lock", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1249,7 +1249,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system conceals, via the session lock, information previously visible on the display with a publicly viewable image.\nPublicly viewable images can include static or dynamic images, for example, patterns used with screen savers, photographic images, solid colors, clock, battery life indicator, or a blank screen, with the additional caveat that none of the images convey sensitive information.", "external_references": [ { @@ -1258,7 +1258,7 @@ } ], "id": "course-of-action--6f9d9940-e4fc-4a53-9d95-fce93b1c3b82", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Pattern-Hiding Displays", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1269,7 +1269,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system automatically terminates a user session after [Assignment: organization-defined conditions or trigger events requiring session disconnect].\nThis control addresses the termination of user-initiated logical sessions in contrast to SC-10 which addresses the termination of network connections that are associated with communications sessions (i.e., network disconnect). A logical session (for local, network, and remote access) is initiated whenever a user (or process acting on behalf of a user) accesses an organizational information system. Such user sessions can be terminated (and thus terminate user access) without terminating network sessions. Session termination terminates all processes associated with a user\u00ef\u00bf\u00bds logical session except those processes that are specifically created by the user (i.e., session owner) to continue after the session is terminated. Conditions or trigger events requiring automatic session termination can include, for example, organization-defined periods of user inactivity, targeted responses to certain types of incidents, time-of-day restrictions on information system use.", "external_references": [ { @@ -1278,7 +1278,7 @@ } ], "id": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Session Termination", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1289,7 +1289,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system:\n\n* **AC-12 (1)(a)** Provides a logout capability for user-initiated communications sessions whenever authentication is used to gain access to [Assignment: organization-defined information resources]; and\n* **AC-12 (1)(b)** Displays an explicit logout message to users indicating the reliable termination of authenticated communications sessions.\n\nInformation resources to which users gain access via authentication include, for example, local workstations, databases, and password-protected websites/web-based services. Logout messages for web page access, for example, can be displayed after authenticated sessions have been terminated. However, for some types of interactive sessions including, for example, file transfer protocol (FTP) sessions, information systems typically send logout messages as final messages prior to terminating sessions.", "external_references": [ { @@ -1298,14 +1298,14 @@ } ], "id": "course-of-action--8ce9ddf9-9fdf-4e3c-bd9a-530116ae6acd", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "User-Initiated Logouts / Message Displays", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.886Z", "description": "[Withdrawn: Incorporated into AC-2 and AU-6].", "external_references": [ { @@ -1314,13 +1314,13 @@ } ], "id": "course-of-action--c1f48995-cb08-4c45-8009-2549cf1f864b", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Supervision And Review - Access Control", "type": "course-of-action", "x_mitre_family": "Access Control" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The organization:\n\n* **AC-14a.** Identifies [Assignment: organization-defined user actions] that can be performed on the information system without identification or authentication consistent with organizational missions/business functions; and\n* **AC-14b.** Documents and provides supporting rationale in the security plan for the information system, user actions not requiring identification or authentication.\n\nThis control addresses situations in which organizations determine that no identification or authentication is required in organizational information systems. Organizations may allow a limited number of user actions without identification or authentication including, for example, when individuals access public websites or other publicly accessible federal information systems, when individuals use mobile phones to receive calls, or when facsimiles are received. Organizations also identify actions that normally require identification or authentication but may under certain circumstances (e.g., emergencies), allow identification or authentication mechanisms to be bypassed. Such bypasses may occur, for example, via a software-readable physical switch that commands bypass of the logon functionality and is protected from accidental or unmonitored use. This control does not apply to situations where identification and authentication have already occurred and are not repeated, but rather to situations where identification and authentication have not yet occurred. Organizations may decide that there are no user actions that can be performed on organizational information systems without identification and authentication and thus, the values for assignment statements can be none.", "external_references": [ { @@ -1329,7 +1329,7 @@ } ], "id": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Permitted Actions Without Identification Or Authentication", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1341,7 +1341,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "[Withdrawn: Incorporated into AC-14].", "external_references": [ { @@ -1350,14 +1350,14 @@ } ], "id": "course-of-action--3ed720d8-4bcf-4eee-8b6a-331eeddbe031", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Necessary Uses", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "[Withdrawn: Incorporated into MP-3].", "external_references": [ { @@ -1366,13 +1366,13 @@ } ], "id": "course-of-action--13342fbb-7d4c-482b-b194-f40a3b02cce9", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Automated Marking", "type": "course-of-action", "x_mitre_family": "Access Control" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The organization:\n\n* **AC-16a.** Provides the means to associate [Assignment: organization-defined types of security attributes] having [Assignment: organization-defined security attribute values] with information in storage, in process, and/or in transmission;\n* **AC-16b.** Ensures that the security attribute associations are made and retained with the information;\n* **AC-16c.** Establishes the permitted [Assignment: organization-defined security attributes] for [Assignment: organization-defined information systems]; and\n* **AC-16d.** Determines the permitted [Assignment: organization-defined values or ranges] for each of the established security attributes.\n\nInformation is represented internally within information systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are typically associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are typically associated with data structures such as records, buffers, tables, files, inter-process pipes, and communications ports. Security attributes, a form of metadata, are abstractions representing the basic properties or characteristics of active and passive entities with respect to safeguarding information. These attributes may be associated with active entities (i.e., subjects) that have the potential to send or receive information, to cause information to flow among objects, or to change the information system state. These attributes may also be associated with passive entities (i.e., objects) that contain or receive information. The association of security attributes to subjects and objects is referred to as binding and is typically inclusive of setting the attribute value and the attribute type. Security attributes when bound to data/information, enables the enforcement of information security policies for access control and information flow control, either through organizational processes or information system functions or mechanisms. The content or assigned values of security attributes can directly affect the ability of individuals to access organizational information. Organizations can define the types of attributes needed for selected information systems to support missions/business functions. There is potentially a wide range of values that can be assigned to any given security attribute. Release markings could include, for example, US only, NATO, or NOFORN (not releasable to foreign nationals). By specifying permitted attribute ranges and values, organizations can ensure that the security attribute values are meaningful and relevant. The term security labeling refers to the association of security attributes with subjects and objects represented by internal data structures within organizational information systems, to enable information system-based enforcement of information security policies. Security labels include, for example, access authorizations, data life cycle protection (i.e., encryption and data expiration), nationality, affiliation as contractor, and classification of information in accordance with legal and compliance requirements. The term security marking refers to the association of security attributes with objects in a human-readable form, to enable organizational process-based enforcement of information security policies. The AC-16 base control represents the requirement for user-based attribute association (marking). The enhancements to AC-16 represent additional requirements including information system-based attribute association (labeling). Types of attributes include, for example, classification level for objects and clearance (access authorization) level for subjects. An example of a value for both of these attribute types is Top Secret.", "external_references": [ { @@ -1381,14 +1381,14 @@ } ], "id": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Security Attributes", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The information system dynamically associates security attributes with [Assignment: organization-defined subjects and objects] in accordance with [Assignment: organization-defined security policies] as information is created and combined.\nDynamic association of security attributes is appropriate whenever the security characteristics of information changes over time. Security attributes may change, for example, due to information aggregation issues (i.e., the security characteristics of individual information elements are different from the combined elements), changes in individual access authorizations (i.e., privileges), and changes in the security category of information.", "external_references": [ { @@ -1397,14 +1397,14 @@ } ], "id": "course-of-action--c6709e4b-4243-43af-a147-95782276ecbe", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Dynamic Attribute Association", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The information system provides authorized individuals (or processes acting on behalf of individuals) the capability to define or change the value of associated security attributes.\nThe content or assigned values of security attributes can directly affect the ability of individuals to access organizational information. Therefore, it is important for information systems to be able to limit the ability to create or modify security attributes to authorized individuals.", "external_references": [ { @@ -1413,14 +1413,14 @@ } ], "id": "course-of-action--a168aabd-10b9-40b8-b43d-8768e6000b66", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Attribute Value Changes By Authorized Individuals", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The information system maintains the association and integrity of [Assignment: organization-defined security attributes] to [Assignment: organization-defined subjects and objects].\nMaintaining the association and integrity of security attributes to subjects and objects with sufficient assurance helps to ensure that the attribute associations can be used as the basis of automated policy actions. Automated policy actions include, for example, access control decisions or information flow control decisions.", "external_references": [ { @@ -1429,14 +1429,14 @@ } ], "id": "course-of-action--71b415da-e1b4-4e41-973b-b739f983b1ee", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Maintenance Of Attribute Associations By Information System", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The information system supports the association of [Assignment: organization-defined security attributes] with [Assignment: organization-defined subjects and objects] by authorized individuals (or processes acting on behalf of individuals).\nThe support provided by information systems can vary to include: (i) prompting users to select specific security attributes to be associated with specific information objects; (ii) employing automated mechanisms for categorizing information with appropriate attributes based on defined policies; or (iii) ensuring that the combination of selected security attributes selected is valid. Organizations consider the creation, deletion, or modification of security attributes when defining auditable events.", "external_references": [ { @@ -1445,14 +1445,14 @@ } ], "id": "course-of-action--87d29891-c704-4ffb-8fd8-618aeadb798f", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Association Of Attributes By Authorized Individuals", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The information system displays security attributes in human-readable form on each object that the system transmits to output devices to identify [Assignment: organization-identified special dissemination, handling, or distribution instructions] using [Assignment: organization-identified human-readable, standard naming conventions].\nInformation system outputs include, for example, pages, screens, or equivalent. Information system output devices include, for example, printers and video displays on computer workstations, notebook computers, and personal digital assistants.", "external_references": [ { @@ -1461,14 +1461,14 @@ } ], "id": "course-of-action--e22d60de-89f7-4789-aac4-47cd1e3b30fd", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Attribute Displays For Output Devices", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.744Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The organization allows personnel to associate, and maintain the association of [Assignment: organization-defined security attributes] with [Assignment: organization-defined subjects and objects] in accordance with [Assignment: organization-defined security policies].\nThis control enhancement requires individual users (as opposed to the information system) to maintain associations of security attributes with subjects and objects.", "external_references": [ { @@ -1477,14 +1477,14 @@ } ], "id": "course-of-action--dbbf0bf2-039c-4c1b-9563-ebc6bc9b5f11", - "modified": "2021-01-06T18:28:39.744Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Maintenance Of Attribute Association By Organization", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The organization provides a consistent interpretation of security attributes transmitted between distributed information system components.\nIn order to enforce security policies across multiple components in distributed information systems (e.g., distributed database management systems, cloud-based systems, and service-oriented architectures), organizations provide a consistent interpretation of security attributes that are used in access enforcement and flow enforcement decisions. Organizations establish agreements and processes to ensure that all distributed information system components implement security attributes with consistent interpretations in automated access/flow enforcement actions.", "external_references": [ { @@ -1493,14 +1493,14 @@ } ], "id": "course-of-action--87ff32f6-e5ff-4d1a-88e7-131032cf50d4", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Consistent Attribute Interpretation", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The information system implements [Assignment: organization-defined techniques or technologies] with [Assignment: organization-defined level of assurance] in associating security attributes to information.\nThe association (i.e., binding) of security attributes to information within information systems is of significant importance with regard to conducting automated access enforcement and flow enforcement actions. The association of such security attributes can be accomplished with technologies/techniques providing different levels of assurance. For example, information systems can cryptographically bind security attributes to information using digital signatures with the supporting cryptographic keys protected by hardware devices (sometimes known as hardware roots of trust).", "external_references": [ { @@ -1509,14 +1509,14 @@ } ], "id": "course-of-action--e77cd425-47f2-4b52-8ee1-5a75de2c39b5", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Association Techniques / Technologies", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The organization ensures that security attributes associated with information are reassigned only via re-grading mechanisms validated using [Assignment: organization-defined techniques or procedures].\nValidated re-grading mechanisms are employed by organizations to provide the requisite levels of assurance for security attribute reassignment activities. The validation is facilitated by ensuring that re-grading mechanisms are single purpose and of limited function. Since security attribute reassignments can affect security policy enforcement actions (e.g., access/flow enforcement decisions), using trustworthy re-grading mechanisms is necessary to ensure that such mechanisms perform in a consistent/correct mode of operation.", "external_references": [ { @@ -1525,14 +1525,14 @@ } ], "id": "course-of-action--4e700b05-c78b-4600-8f44-6305dcb7fe85", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Attribute Reassignment", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.888Z", "description": "The information system provides authorized individuals the capability to define or change the type and value of security attributes available for association with subjects and objects.\nThe content or assigned values of security attributes can directly affect the ability of individuals to access organizational information. Therefore, it is important for information systems to be able to limit the ability to create or modify security attributes to authorized individuals only.", "external_references": [ { @@ -1541,14 +1541,14 @@ } ], "id": "course-of-action--cfebc252-20c0-4932-8b57-ae734ef9edff", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.888Z", "name": "Attribute Configuration By Authorized Individuals", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The organization:\n\n* **AC-17a.** Establishes and documents usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and\n* **AC-17b.** Authorizes remote access to the information system prior to allowing such connections.\n\nRemote access is access to organizational information systems by users (or processes acting on behalf of users) communicating through external networks (e.g., the Internet). Remote access methods include, for example, dial-up, broadband, and wireless. Organizations often employ encrypted virtual private networks (VPNs) to enhance confidentiality and integrity over remote connections. The use of encrypted VPNs does not make the access non-remote; however, the use of VPNs, when adequately provisioned with appropriate security controls (e.g., employing appropriate encryption techniques for confidentiality and integrity protection) may provide sufficient assurance to the organization that it can effectively treat such connections as internal networks. Still, VPN connections traverse external networks, and the encrypted VPN does not enhance the availability of remote connections. Also, VPNs with encrypted tunnels can affect the organizational capability to adequately monitor network communications traffic for malicious code. Remote access controls apply to information systems other than public web servers or systems designed for public access. This control addresses authorization prior to allowing remote access without specifying the formats for such authorization. While organizations may use interconnection security agreements to authorize remote access connections, such agreements are not required by this control. Enforcing access restrictions for remote connections is addressed in AC-3.", "external_references": [ { @@ -1557,7 +1557,7 @@ } ], "id": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Remote Access", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1569,7 +1569,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The information system monitors and controls remote access methods.\nAutomated monitoring and control of remote access sessions allows organizations to detect cyber attacks and also ensure ongoing compliance with remote access policies by auditing connection activities of remote users on a variety of information system components (e.g., servers, workstations, notebook computers, smart phones, and tablets).", "external_references": [ { @@ -1578,7 +1578,7 @@ } ], "id": "course-of-action--5e412a9c-0f77-4dbf-819d-4041d247e608", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Automated Monitoring / Control", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1589,7 +1589,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The information system implements cryptographic mechanisms to protect the confidentiality and integrity of remote access sessions.\nThe encryption strength of mechanism is selected based on the security categorization of the information.", "external_references": [ { @@ -1598,7 +1598,7 @@ } ], "id": "course-of-action--2ec1e070-7ac4-4568-a3c7-2a023a5cb93e", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Protection Of Confidentiality / Integrity Using Encryption", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1609,7 +1609,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The information system routes all remote accesses through [Assignment: organization-defined number] managed network access control points.\nLimiting the number of access control points for remote accesses reduces the attack surface for organizations. Organizations consider the Trusted Internet Connections (TIC) initiative requirements for external network connections.", "external_references": [ { @@ -1618,7 +1618,7 @@ } ], "id": "course-of-action--0711e0ad-f663-4132-a70d-0ea74f0c081d", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Managed Access Control Points", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1629,7 +1629,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The organization:\n\n* **AC-17 (4)(a)** Authorizes the execution of privileged commands and access to security-relevant information via remote access only for [Assignment: organization-defined needs]; and\n* **AC-17 (4)(b)** Documents the rationale for such access in the security plan for the information system.\n", "external_references": [ { @@ -1638,7 +1638,7 @@ } ], "id": "course-of-action--8f484c19-2d92-493c-abbe-caffe71d0668", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Privileged Commands / Access", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1649,7 +1649,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.889Z", "description": "[Withdrawn: Incorporated into SI-4].", "external_references": [ { @@ -1658,14 +1658,14 @@ } ], "id": "course-of-action--5d7e335c-f36c-424e-83da-b396d5b32551", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Monitoring For Unauthorized Connections", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.890Z", "description": "The organization ensures that users protect information about remote access mechanisms from unauthorized use and disclosure.", "external_references": [ { @@ -1674,14 +1674,14 @@ } ], "id": "course-of-action--1647023a-9301-4347-b048-ec74068f9985", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Protection Of Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.890Z", "description": "[Withdrawn: Incorporated into AC-3 (10)].", "external_references": [ { @@ -1690,14 +1690,14 @@ } ], "id": "course-of-action--62573825-1925-4ebb-ba0a-e345124afce5", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Additional Protection For Security Function Access", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.890Z", "description": "[Withdrawn: Incorporated into CM-7].", "external_references": [ { @@ -1706,14 +1706,14 @@ } ], "id": "course-of-action--2bafd293-a932-46e3-a2cc-87c4bb6d5a22", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Disable Nonsecure Network Protocols", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.746Z", + "created": "2021-01-13T01:50:48.890Z", "description": "The organization provides the capability to expeditiously disconnect or disable remote access to the information system within [Assignment: organization-defined time period].\nThis control enhancement requires organizations to have the capability to rapidly disconnect current users remotely accessing the information system and/or disable further remote access. The speed of disconnect or disablement varies based on the criticality of missions/business functions and the need to eliminate immediate or future remote access to organizational information systems.", "external_references": [ { @@ -1722,14 +1722,14 @@ } ], "id": "course-of-action--edf22cec-6a0e-458c-8db7-bedef68dbbca", - "modified": "2021-01-06T18:28:39.746Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Disconnect / Disable Access", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.890Z", "description": "The organization:\n\n* **AC-18a.** Establishes usage restrictions, configuration/connection requirements, and implementation guidance for wireless access; and\n* **AC-18b.** Authorizes wireless access to the information system prior to allowing such connections.\n\nWireless technologies include, for example, microwave, packet radio (UHF/VHF), 802.11x, and Bluetooth. Wireless networks use authentication protocols (e.g., EAP/TLS, PEAP), which provide credential protection and mutual authentication.", "external_references": [ { @@ -1738,7 +1738,7 @@ } ], "id": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Wireless Access", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1750,7 +1750,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.890Z", "description": "The information system protects wireless access to the system using authentication of [Selection (one or more): users; devices] and encryption.", "external_references": [ { @@ -1759,7 +1759,7 @@ } ], "id": "course-of-action--3e131e82-2abe-4903-af2f-40e0109784db", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Authentication And Encryption", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1770,7 +1770,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.890Z", "description": "[Withdrawn: Incorporated into SI-4].", "external_references": [ { @@ -1779,14 +1779,14 @@ } ], "id": "course-of-action--f95d595b-8aca-4639-bd9a-cc8b2fee7723", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Monitoring Unauthorized Connections", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.891Z", "description": "The organization disables, when not intended for use, wireless networking capabilities internally embedded within information system components prior to issuance and deployment.", "external_references": [ { @@ -1795,14 +1795,14 @@ } ], "id": "course-of-action--e505148c-ed36-445f-84bb-ef191dda341e", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Disable Wireless Networking", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.891Z", "description": "The organization identifies and explicitly authorizes users allowed to independently configure wireless networking capabilities.\nOrganizational authorizations to allow selected users to configure wireless networking capability are enforced in part, by the access enforcement mechanisms employed within organizational information systems.", "external_references": [ { @@ -1811,7 +1811,7 @@ } ], "id": "course-of-action--aee5915b-ddad-4f6e-8b01-4c1cf01e22d5", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Restrict Configurations By Users", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1821,7 +1821,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.891Z", "description": "The organization selects radio antennas and calibrates transmission power levels to reduce the probability that usable signals can be received outside of organization-controlled boundaries.\nActions that may be taken by organizations to limit unauthorized use of wireless communications outside of organization-controlled boundaries include, for example: (i) reducing the power of wireless transmissions so that the transmissions are less likely to emit a signal that can be used by adversaries outside of the physical perimeters of organizations; (ii) employing measures such as TEMPEST to control wireless emanations; and (iii) using directional/beam forming antennas that reduce the likelihood that unintended receivers will be able to intercept signals. Prior to taking such actions, organizations can conduct periodic wireless surveys to understand the radio frequency profile of organizational information systems as well as other systems that may be operating in the area.", "external_references": [ { @@ -1830,7 +1830,7 @@ } ], "id": "course-of-action--e9772f21-5d78-4b48-9c73-de3bb7e9e8d4", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Antennas / Transmission Power Levels", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1840,7 +1840,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.748Z", + "created": "2021-01-13T01:50:48.891Z", "description": "The organization:\n\n* **AC-19a.** Establishes usage restrictions, configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices; and\n* **AC-19b.** Authorizes the connection of mobile devices to organizational information systems.\n\nA mobile device is a computing device that: (i) has a small form factor such that it can easily be carried by a single individual; (ii) is designed to operate without a physical connection (e.g., wirelessly transmit or receive information); (iii) possesses local, non-removable or removable data storage; and (iv) includes a self-contained power source. Mobile devices may also include voice communication capabilities, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations. Examples include smart phones, E-readers, and tablets. Mobile devices are typically associated with a single individual and the device is usually in close proximity to the individual; however, the degree of proximity can vary depending upon on the form factor and size of the device. The processing, storage, and transmission capability of the mobile device may be comparable to or merely a subset of desktop systems, depending upon the nature and intended purpose of the device. Due to the large variety of mobile devices with different technical characteristics and capabilities, organizational restrictions may vary for the different classes/types of such devices. Usage restrictions and specific implementation guidance for mobile devices include, for example, configuration management, device identification and authentication, implementation of mandatory protective software (e.g., malicious code detection, firewall), scanning devices for malicious code, updating virus protection software, scanning for critical software updates and patches, conducting primary operating system (and possibly other resident software) integrity checks, and disabling unnecessary hardware (e.g., wireless, infrared). Organizations are cautioned that the need to provide adequate security for mobile devices goes beyond the requirements in this control. Many safeguards and countermeasures for mobile devices are reflected in other security controls in the catalog allocated in the initial control baselines as starting points for the development of security plans and overlays using the tailoring process. There may also be some degree of overlap in the requirements articulated by the security controls within the different families of controls. AC-20 addresses mobile devices that are not organization-controlled.", "external_references": [ { @@ -1849,7 +1849,7 @@ } ], "id": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "modified": "2021-01-06T18:28:39.748Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Access Control For Mobile Devices", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1861,7 +1861,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.748Z", + "created": "2021-01-13T01:50:48.891Z", "description": "[Withdrawn: Incorporated into MP-7].", "external_references": [ { @@ -1870,14 +1870,14 @@ } ], "id": "course-of-action--19eed0e5-753a-49d5-a5cf-5b6b342d600c", - "modified": "2021-01-06T18:28:39.748Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Use Of Writable / Portable Storage Devices", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.748Z", + "created": "2021-01-13T01:50:48.891Z", "description": "[Withdrawn: Incorporated into MP-7].", "external_references": [ { @@ -1886,14 +1886,14 @@ } ], "id": "course-of-action--2c26e47c-7140-4883-b650-dafcc7dd6406", - "modified": "2021-01-06T18:28:39.748Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Use Of Personally Owned Portable Storage Devices", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.748Z", + "created": "2021-01-13T01:50:48.892Z", "description": "[Withdrawn: Incorporated into MP-7].", "external_references": [ { @@ -1902,14 +1902,14 @@ } ], "id": "course-of-action--ccfde171-e62b-4579-ba4b-87517253369d", - "modified": "2021-01-06T18:28:39.748Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Use Of Portable Storage Devices With No Identifiable Owner", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.749Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization:\n\n* **AC-19 (4)(a)** Prohibits the use of unclassified mobile devices in facilities containing information systems processing, storing, or transmitting classified information unless specifically permitted by the authorizing official; and\n* **AC-19 (4)(b)** Enforces the following restrictions on individuals permitted by the authorizing official to use unclassified mobile devices in facilities containing information systems processing, storing, or transmitting classified information:\n * **AC-19 (4)(b)(1)** Connection of unclassified mobile devices to classified information systems is prohibited;\n * **AC-19 (4)(b)(2)** Connection of unclassified mobile devices to unclassified information systems requires approval from the authorizing official;\n * **AC-19 (4)(b)(3)** Use of internal or external modems or wireless interfaces within the unclassified mobile devices is prohibited; and\n * **AC-19 (4)(b)(4)** Unclassified mobile devices and the information stored on those devices are subject to random reviews and inspections by [Assignment: organization-defined security officials], and if classified information is found, the incident handling policy is followed.\n* **AC-19 (4)(c)** Restricts the connection of classified mobile devices to classified information systems in accordance with [Assignment: organization-defined security policies].\n", "external_references": [ { @@ -1918,14 +1918,14 @@ } ], "id": "course-of-action--ad1a52f9-b19a-422a-a515-b608688ef43f", - "modified": "2021-01-06T18:28:39.749Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Restrictions For Classified Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.749Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization employs [Selection: full-device encryption; container encryption] to protect the confidentiality and integrity of information on [Assignment: organization-defined mobile devices].\nContainer-based encryption provides a more fine-grained approach to the encryption of data/information on mobile devices, including for example, encrypting selected data structures such as files, records, or fields.", "external_references": [ { @@ -1934,7 +1934,7 @@ } ], "id": "course-of-action--dd03deb0-067d-4bc0-9a4a-77d96927d851", - "modified": "2021-01-06T18:28:39.749Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Full Device / Container-Based Encryption", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1945,7 +1945,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.749Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization establishes terms and conditions, consistent with any trust relationships established with other organizations owning, operating, and/or maintaining external information systems, allowing authorized individuals to:\n\n* **AC-20a.** Access the information system from external information systems; and\n* **AC-20b.** Process, store, or transmit organization-controlled information using external information systems.\n\nExternal information systems are information systems or components of information systems that are outside of the authorization boundary established by organizations and for which organizations typically have no direct supervision and authority over the application of required security controls or the assessment of control effectiveness. External information systems include, for example: (i) personally owned information systems/devices (e.g., notebook computers, smart phones, tablets, personal digital assistants); (ii) privately owned computing and communications devices resident in commercial or public facilities (e.g., hotels, train stations, convention centers, shopping malls, or airports); (iii) information systems owned or controlled by nonfederal governmental organizations; and (iv) federal information systems that are not owned by, operated by, or under the direct supervision and authority of organizations. This control also addresses the use of external information systems for the processing, storage, or transmission of organizational information, including, for example, accessing cloud services (e.g., infrastructure as a service, platform as a service, or software as a service) from organizational information systems. For some external information systems (i.e., information systems operated by other federal agencies, including organizations subordinate to those agencies), the trust relationships that have been established between those organizations and the originating organization may be such, that no explicit terms and conditions are required. Information systems within these organizations would not be considered external. These situations occur when, for example, there are pre-existing sharing/trust agreements (either implicit or explicit) established between federal agencies or organizations subordinate to those agencies, or when such trust agreements are specified by applicable laws, Executive Orders, directives, or policies. Authorized individuals include, for example, organizational personnel, contractors, or other individuals with authorized access to organizational information systems and over which organizations have the authority to impose rules of behavior with regard to system access. Restrictions that organizations impose on authorized individuals need not be uniform, as those restrictions may vary depending upon the trust relationships between organizations. Therefore, organizations may choose to impose different security restrictions on contractors than on state, local, or tribal governments. This control does not apply to the use of external information systems to access public interfaces to organizational information systems (e.g., individuals accessing federal information through www.usa.gov). Organizations establish terms and conditions for the use of external information systems in accordance with organizational security policies and procedures. Terms and conditions address as a minimum: types of applications that can be accessed on organizational information systems from external information systems; and the highest security category of information that can be processed, stored, or transmitted on external information systems. If terms and conditions with the owners of external information systems cannot be established, organizations may impose restrictions on organizational personnel using those external systems.", "external_references": [ { @@ -1954,7 +1954,7 @@ } ], "id": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "modified": "2021-01-06T18:28:39.749Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Use Of External Information Systems", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1966,7 +1966,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.750Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization permits authorized individuals to use an external information system to access the information system or to process, store, or transmit organization-controlled information only when the organization:\n\n* **AC-20 (1)(a)** Verifies the implementation of required security controls on the external system as specified in the organization\u00ef\u00bf\u00bds information security policy and security plan; or\n* **AC-20 (1)(b)** Retains approved information system connection or processing agreements with the organizational entity hosting the external information system.\n\nThis control enhancement recognizes that there are circumstances where individuals using external information systems (e.g., contractors, coalition partners) need to access organizational information systems. In those situations, organizations need confidence that the external information systems contain the necessary security safeguards (i.e., security controls), so as not to compromise, damage, or otherwise harm organizational information systems. Verification that the required security controls have been implemented can be achieved, for example, by third-party, independent assessments, attestations, or other means, depending on the confidence level required by organizations.", "external_references": [ { @@ -1975,7 +1975,7 @@ } ], "id": "course-of-action--6e5e2a1d-f279-4523-81a0-34111d4a5355", - "modified": "2021-01-06T18:28:39.750Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Limits On Authorized Use", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -1986,7 +1986,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.750Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization [Selection: restricts; prohibits] the use of organization-controlled portable storage devices by authorized individuals on external information systems.\nLimits on the use of organization-controlled portable storage devices in external information systems include, for example, complete prohibition of the use of such devices or restrictions on how the devices may be used and under what conditions the devices may be used.", "external_references": [ { @@ -1995,7 +1995,7 @@ } ], "id": "course-of-action--076cef43-c88e-425f-8bac-0ca93f64069d", - "modified": "2021-01-06T18:28:39.750Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Portable Storage Devices", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -2006,7 +2006,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.750Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization [Selection: restricts; prohibits] the use of non-organizationally owned information systems, system components, or devices to process, store, or transmit organizational information.\nNon-organizationally owned devices include devices owned by other organizations (e.g., federal/state agencies, contractors) and personally owned devices. There are risks to using non-organizationally owned devices. In some cases, the risk is sufficiently high as to prohibit such use. In other cases, it may be such that the use of non-organizationally owned devices is allowed but restricted in some way. Restrictions include, for example: (i) requiring the implementation of organization-approved security controls prior to authorizing such connections; (ii) limiting access to certain types of information, services, or applications; (iii) using virtualization techniques to limit processing and storage activities to servers or other system components provisioned by the organization; and (iv) agreeing to terms and conditions for usage. For personally owned devices, organizations consult with the Office of the General Counsel regarding legal issues associated with using such devices in operational environments, including, for example, requirements for conducting forensic analyses during investigations after an incident.", "external_references": [ { @@ -2015,14 +2015,14 @@ } ], "id": "course-of-action--762c0c11-1531-4f91-a068-016549071664", - "modified": "2021-01-06T18:28:39.750Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Non-Organizationally Owned Systems / Components / Devices", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.751Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization prohibits the use of [Assignment: organization-defined network accessible storage devices] in external information systems.\nNetwork accessible storage devices in external information systems include, for example, online storage devices in public, hybrid, or community cloud-based systems.", "external_references": [ { @@ -2031,14 +2031,14 @@ } ], "id": "course-of-action--7da7cabc-0bd4-48ae-9f0d-4f3c7feff6e5", - "modified": "2021-01-06T18:28:39.751Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Network Accessible Storage Devices", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.751Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization:\n\n* **AC-21a.** Facilitates information sharing by enabling authorized users to determine whether access authorizations assigned to the sharing partner match the access restrictions on the information for [Assignment: organization-defined information sharing circumstances where user discretion is required]; and\n* **AC-21b.** Employs [Assignment: organization-defined automated mechanisms or manual processes] to assist users in making information sharing/collaboration decisions.\n\nThis control applies to information that may be restricted in some manner (e.g., privileged medical information, contract-sensitive information, proprietary information, personally identifiable information, classified information related to special access programs or compartments) based on some formal or administrative determination. Depending on the particular information-sharing circumstances, sharing partners may be defined at the individual, group, or organizational level. Information may be defined by content, type, security category, or special access program/compartment.", "external_references": [ { @@ -2047,7 +2047,7 @@ } ], "id": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", - "modified": "2021-01-06T18:28:39.751Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Information Sharing", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -2058,7 +2058,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.751Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The information system enforces information-sharing decisions by authorized users based on access authorizations of sharing partners and access restrictions on information to be shared.", "external_references": [ { @@ -2067,14 +2067,14 @@ } ], "id": "course-of-action--c1fd1628-8a31-4f1c-91c9-1e36fbb57e3d", - "modified": "2021-01-06T18:28:39.751Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Automated Decision Support", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.752Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The information system implements information search and retrieval services that enforce [Assignment: organization-defined information sharing restrictions].", "external_references": [ { @@ -2083,14 +2083,14 @@ } ], "id": "course-of-action--3201603a-4a49-4829-97a4-65c3ebb55580", - "modified": "2021-01-06T18:28:39.752Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Information Search And Retrieval", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.752Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization:\n\n* **AC-22a.** Designates individuals authorized to post information onto a publicly accessible information system;\n* **AC-22b.** Trains authorized individuals to ensure that publicly accessible information does not contain nonpublic information;\n* **AC-22c.** Reviews the proposed content of information prior to posting onto the publicly accessible information system to ensure that nonpublic information is not included; and\n* **AC-22d.** Reviews the content on the publicly accessible information system for nonpublic information [Assignment: organization-defined frequency] and removes such information, if discovered.\n\nIn accordance with federal laws, Executive Orders, directives, policies, regulations, standards, and/or guidance, the general public is not authorized access to nonpublic information (e.g., information protected under the Privacy Act and proprietary information). This control addresses information systems that are controlled by the organization and accessible to the general public, typically without identification or authentication. The posting of information on non-organization information systems is covered by organizational policy.", "external_references": [ { @@ -2099,7 +2099,7 @@ } ], "id": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", - "modified": "2021-01-06T18:28:39.752Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Publicly Accessible Content", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -2111,7 +2111,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.753Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization employs [Assignment: organization-defined data mining prevention and detection techniques] for [Assignment: organization-defined data storage objects] to adequately detect and protect against data mining.\nData storage objects include, for example, databases, database records, and database fields. Data mining prevention and detection techniques include, for example: (i) limiting the types of responses provided to database queries; (ii) limiting the number/frequency of database queries to increase the work factor needed to determine the contents of such databases; and (iii) notifying organizational personnel when atypical database queries or accesses occur. This control focuses on the protection of organizational information from data mining while such information resides in organizational data stores. In contrast, AU-13 focuses on monitoring for organizational information that may have been mined or otherwise obtained from data stores and is now available as open source information residing on external sites, for example, through social networking or social media websites.", "external_references": [ { @@ -2120,14 +2120,14 @@ } ], "id": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", - "modified": "2021-01-06T18:28:39.753Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Data Mining Protection", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.753Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The organization establishes procedures to ensure [Assignment: organization-defined access control decisions] are applied to each access request prior to access enforcement.\nAccess control decisions (also known as authorization decisions) occur when authorization information is applied to specific accesses. In contrast, access enforcement occurs when information systems enforce access control decisions. While it is very common to have access control decisions and access enforcement implemented by the same entity, it is not required and it is not always an optimal implementation choice. For some architectures and distributed information systems, different entities may perform access control decisions and access enforcement.", "external_references": [ { @@ -2136,14 +2136,14 @@ } ], "id": "course-of-action--8b76afad-8595-4993-9b1e-82b87bb69405", - "modified": "2021-01-06T18:28:39.753Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Access Control Decisions", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.753Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The information system transmits [Assignment: organization-defined access authorization information] using [Assignment: organization-defined security safeguards] to [Assignment: organization-defined information systems] that enforce access control decisions.\nIn distributed information systems, authorization processes and access control decisions may occur in separate parts of the systems. In such instances, authorization information is transmitted securely so timely access control decisions can be enforced at the appropriate locations. To support the access control decisions, it may be necessary to transmit as part of the access authorization information, supporting security attributes. This is due to the fact that in distributed information systems, there are various access control decisions that need to be made and different entities (e.g., services) make these decisions in a serial fashion, each requiring some security attributes to make the decisions. Protecting access authorization information (i.e., access control decisions) ensures that such information cannot be altered, spoofed, or otherwise compromised during transmission.", "external_references": [ { @@ -2152,14 +2152,14 @@ } ], "id": "course-of-action--f5a96b36-f84c-40ca-b80c-57a832e20315", - "modified": "2021-01-06T18:28:39.753Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Transmit Access Authorization Information", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.753Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The information system enforces access control decisions based on [Assignment: organization-defined security attributes] that do not include the identity of the user or process acting on behalf of the user.\nIn certain situations, it is important that access control decisions can be made without information regarding the identity of the users issuing the requests. These are generally instances where preserving individual privacy is of paramount importance. In other situations, user identification information is simply not needed for access control decisions and, especially in the case of distributed information systems, transmitting such information with the needed degree of assurance may be very expensive or difficult to accomplish.", "external_references": [ { @@ -2168,14 +2168,14 @@ } ], "id": "course-of-action--77e43115-9620-4649-af35-fc3839df8cac", - "modified": "2021-01-06T18:28:39.753Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "No User Or Process Identity", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The information system implements a reference monitor for [Assignment: organization-defined access control policies] that is tamperproof, always invoked, and small enough to be subject to analysis and testing, the completeness of which can be assured.\nInformation is represented internally within information systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are typically associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are typically associated with data structures such as records, buffers, tables, files, inter-process pipes, and communications ports. Reference monitors typically enforce mandatory access control policies\u00ef\u00bf\u00bda type of access control that restricts access to objects based on the identity of subjects or groups to which the subjects belong. The access controls are mandatory because subjects with certain privileges (i.e., access permissions) are restricted from passing those privileges on to any other subjects, either directly or indirectly\u00ef\u00bf\u00bdthat is, the information system strictly enforces the access control policy based on the rule set established by the policy. The tamperproof property of the reference monitor prevents adversaries from compromising the functioning of the mechanism. The always invoked property prevents adversaries from bypassing the mechanism and hence violating the security policy. The smallness property helps to ensure the completeness in the analysis and testing of the mechanism to detect weaknesses or deficiencies (i.e., latent flaws) that would prevent the enforcement of the security policy.", "external_references": [ { @@ -2184,14 +2184,14 @@ } ], "id": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Reference Monitor", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The organization:\n\n* **AT-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **AT-1a.1.** A security awareness and training policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **AT-1a.2.** Procedures to facilitate the implementation of the security awareness and training policy and associated security awareness and training controls; and\n* **AT-1b.** Reviews and updates the current:\n * **AT-1b.1.** Security awareness and training policy [Assignment: organization-defined frequency]; and\n * **AT-1b.2.** Security awareness and training procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the AT family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -2200,7 +2200,7 @@ } ], "id": "course-of-action--b05a27ca-8636-4c35-8c76-dd8466e64e1e", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Security Awareness And Training Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Awareness And Training", @@ -2212,7 +2212,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The organization provides basic security awareness training to information system users (including managers, senior executives, and contractors):\n\n* **AT-2a.** As part of initial training for new users;\n* **AT-2b.** When required by information system changes; and\n* **AT-2c.** [Assignment: organization-defined frequency] thereafter.\n\nOrganizations determine the appropriate content of security awareness training and security awareness techniques based on the specific organizational requirements and the information systems to which personnel have authorized access. The content includes a basic understanding of the need for information security and user actions to maintain security and to respond to suspected security incidents. The content also addresses awareness of the need for operations security. Security awareness techniques can include, for example, displaying posters, offering supplies inscribed with security reminders, generating email advisories/notices from senior organizational officials, displaying logon screen messages, and conducting information security awareness events.", "external_references": [ { @@ -2221,7 +2221,7 @@ } ], "id": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Security Awareness Training", "type": "course-of-action", "x_mitre_family": "Awareness And Training", @@ -2233,7 +2233,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.894Z", "description": "The organization includes practical exercises in security awareness training that simulate actual cyber attacks.\nPractical exercises may include, for example, no-notice social engineering attempts to collect information, gain unauthorized access, or simulate the adverse impact of opening malicious email attachments or invoking, via spear phishing attacks, malicious web links.", "external_references": [ { @@ -2242,14 +2242,14 @@ } ], "id": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.894Z", "name": "Practical Exercises", "type": "course-of-action", "x_mitre_family": "Awareness And Training", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization includes security awareness training on recognizing and reporting potential indicators of insider threat.\nPotential indicators and possible precursors of insider threat can include behaviors such as inordinate, long-term job dissatisfaction, attempts to gain access to information not required for job performance, unexplained access to financial resources, bullying or sexual harassment of fellow employees, workplace violence, and other serious violations of organizational policies, procedures, directives, rules, or practices. Security awareness training includes how to communicate employee and management concerns regarding potential indicators of insider threat through appropriate organizational channels in accordance with established organizational policies and procedures.", "external_references": [ { @@ -2258,7 +2258,7 @@ } ], "id": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Insider Threat", "type": "course-of-action", "x_mitre_family": "Awareness And Training", @@ -2269,7 +2269,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.754Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization provides role-based security training to personnel with assigned security roles and responsibilities:\n\n* **AT-3a.** Before authorizing access to the information system or performing assigned duties;\n* **AT-3b.** When required by information system changes; and\n* **AT-3c.** [Assignment: organization-defined frequency] thereafter.\n\nOrganizations determine the appropriate content of security training based on the assigned roles and responsibilities of individuals and the specific security requirements of organizations and the information systems to which personnel have authorized access. In addition, organizations provide enterprise architects, information system developers, software developers, acquisition/procurement officials, information system managers, system/network administrators, personnel conducting configuration management and auditing activities, personnel performing independent verification and validation activities, security control assessors, and other personnel having access to system-level software, adequate security-related technical training specifically tailored for their assigned duties. Comprehensive role-based training addresses management, operational, and technical roles and responsibilities covering physical, personnel, and technical safeguards and countermeasures. Such training can include for example, policies, procedures, tools, and artifacts for the organizational security roles defined. Organizations also provide the training necessary for individuals to carry out their responsibilities related to operations and supply chain security within the context of organizational information security programs. Role-based security training also applies to contractors providing services to federal agencies.", "external_references": [ { @@ -2278,7 +2278,7 @@ } ], "id": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", - "modified": "2021-01-06T18:28:39.754Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Role-Based Security Training", "type": "course-of-action", "x_mitre_family": "Awareness And Training", @@ -2290,7 +2290,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization provides [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of environmental controls.\nEnvironmental controls include, for example, fire suppression and detection devices/systems, sprinkler systems, handheld fire extinguishers, fixed fire hoses, smoke detectors, temperature/humidity, HVAC, and power within the facility. Organizations identify personnel with specific roles and responsibilities associated with environmental controls requiring specialized training.", "external_references": [ { @@ -2299,14 +2299,14 @@ } ], "id": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Environmental Controls", "type": "course-of-action", "x_mitre_family": "Awareness And Training", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization provides [Assignment: organization-defined personnel or roles] with initial and [Assignment: organization-defined frequency] training in the employment and operation of physical security controls.\nPhysical security controls include, for example, physical access control devices, physical intrusion alarms, monitoring/surveillance equipment, and security guards (deployment and operating procedures). Organizations identify personnel with specific roles and responsibilities associated with physical security controls requiring specialized training.", "external_references": [ { @@ -2315,14 +2315,14 @@ } ], "id": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Physical Security Controls", "type": "course-of-action", "x_mitre_family": "Awareness And Training", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization includes practical exercises in security training that reinforce training objectives.\nPractical exercises may include, for example, security training for software developers that includes simulated cyber attacks exploiting common software vulnerabilities (e.g., buffer overflows), or spear/whale phishing attacks targeted at senior leaders/executives. These types of practical exercises help developers better understand the effects of such vulnerabilities and appreciate the need for security coding standards and processes.", "external_references": [ { @@ -2331,14 +2331,14 @@ } ], "id": "course-of-action--370a9e5f-284f-419e-9383-b7f12e11709a", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Practical Exercises", "type": "course-of-action", "x_mitre_family": "Awareness And Training", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.895Z", "description": "The organization provides training to its personnel on [Assignment: organization-defined indicators of malicious code] to recognize suspicious communications and anomalous behavior in organizational information systems.\nA well-trained workforce provides another organizational safeguard that can be employed as part of a defense-in-depth strategy to protect organizations against malicious code coming in to organizations via email or the web applications. Personnel are trained to look for indications of potentially suspicious email (e.g., receiving an unexpected email, receiving an email containing strange or poor grammar, or receiving an email from an unfamiliar sender but who appears to be from a known sponsor or contractor). Personnel are also trained on how to respond to such suspicious email or web communications (e.g., not opening attachments, not clicking on embedded web links, and checking the source of email addresses). For this process to work effectively, all organizational personnel are trained and made aware of what constitutes suspicious communications. Training personnel on how to recognize anomalous behaviors in organizational information systems can potentially provide early warning for the presence of malicious code. Recognition of such anomalous behavior by organizational personnel can supplement automated malicious code detection and protection tools and systems employed by organizations.", "external_references": [ { @@ -2347,14 +2347,14 @@ } ], "id": "course-of-action--7c71b7d1-0306-4759-a716-6cb0b59c3a03", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.895Z", "name": "Suspicious Communications And Anomalous System Behavior", "type": "course-of-action", "x_mitre_family": "Awareness And Training", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.896Z", "description": "The organization:\n\n* **AT-4a.** Documents and monitors individual information system security training activities including basic security awareness training and specific information system security training; and\n* **AT-4b.** Retains individual training records for [Assignment: organization-defined time period].\n\nDocumentation for specialized training may be maintained by individual supervisors at the option of the organization.", "external_references": [ { @@ -2363,7 +2363,7 @@ } ], "id": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Security Training Records", "type": "course-of-action", "x_mitre_family": "Awareness And Training", @@ -2375,7 +2375,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.755Z", + "created": "2021-01-13T01:50:48.896Z", "description": "[Withdrawn: Incorporated into PM-15].", "external_references": [ { @@ -2384,13 +2384,13 @@ } ], "id": "course-of-action--1dd39767-a67f-4cd5-b2a6-d592d758b5b7", - "modified": "2021-01-06T18:28:39.755Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Contacts With Security Groups And Associations", "type": "course-of-action", "x_mitre_family": "Awareness And Training" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.896Z", "description": "The organization:\n\n* **AU-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **AU-1a.1.** An audit and accountability policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **AU-1a.2.** Procedures to facilitate the implementation of the audit and accountability policy and associated audit and accountability controls; and\n* **AU-1b.** Reviews and updates the current:\n * **AU-1b.1.** Audit and accountability policy [Assignment: organization-defined frequency]; and\n * **AU-1b.2.** Audit and accountability procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the AU family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -2399,7 +2399,7 @@ } ], "id": "course-of-action--ee9bc736-1c94-464e-ad5e-31d011368286", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Audit And Accountability Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2411,7 +2411,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.896Z", "description": "The organization:\n\n* **AU-2a.** Determines that the information system is capable of auditing the following events: [Assignment: organization-defined auditable events];\n* **AU-2b.** Coordinates the security audit function with other organizational entities requiring audit-related information to enhance mutual support and to help guide the selection of auditable events;\n* **AU-2c.** Provides a rationale for why the auditable events are deemed to be adequate to support after-the-fact investigations of security incidents; and\n* **AU-2d.** Determines that the following events are to be audited within the information system: [Assignment: organization-defined audited events (the subset of the auditable events defined in AU-2 a.) along with the frequency of (or situation requiring) auditing for each identified event].\n\nAn event is any observable occurrence in an organizational information system. Organizations identify audit events as those events which are significant and relevant to the security of information systems and the environments in which those systems operate in order to meet specific and ongoing audit needs. Audit events can include, for example, password changes, failed logons, or failed accesses related to information systems, administrative privilege usage, PIV credential usage, or third-party credential usage. In determining the set of auditable events, organizations consider the auditing appropriate for each of the security controls to be implemented. To balance auditing requirements with other information system needs, this control also requires identifying that subset of auditable events that are audited at a given point in time. For example, organizations may determine that information systems must have the capability to log every file access both successful and unsuccessful, but not activate that capability except for specific circumstances due to the potential burden on system performance. Auditing requirements, including the need for auditable events, may be referenced in other security controls and control enhancements. Organizations also include auditable events that are required by applicable federal laws, Executive Orders, directives, policies, regulations, and standards. Audit records can be generated at various levels of abstraction, including at the packet level as information traverses the network. Selecting the appropriate level of abstraction is a critical aspect of an audit capability and can facilitate the identification of root causes to problems. Organizations consider in the definition of auditable events, the auditing necessary to cover related events such as the steps in distributed, transaction-based processes (e.g., processes that are distributed across multiple organizations) and actions that occur in service-oriented architectures.", "external_references": [ { @@ -2420,7 +2420,7 @@ } ], "id": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Audit Events", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2432,7 +2432,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.896Z", "description": "[Withdrawn: Incorporated into AU-12].", "external_references": [ { @@ -2441,14 +2441,14 @@ } ], "id": "course-of-action--4427e496-ed89-43a3-afc4-509c3f331916", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Compilation Of Audit Records From Multiple Sources", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.896Z", "description": "[Withdrawn: Incorporated into AU-12].", "external_references": [ { @@ -2457,14 +2457,14 @@ } ], "id": "course-of-action--cc2345db-6bad-4383-8487-2e4ad459e6e3", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.896Z", "name": "Selection Of Audit Events By Component", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The organization reviews and updates the audited events [Assignment: organization-defined frequency].\nOver time, the events that organizations believe should be audited may change. Reviewing and updating the set of audited events periodically is necessary to ensure that the current set is still necessary and sufficient.", "external_references": [ { @@ -2473,7 +2473,7 @@ } ], "id": "course-of-action--aa57d957-cd11-494a-80e4-2a019aae46f1", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Reviews And Updates", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2484,7 +2484,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.897Z", "description": "[Withdrawn: Incorporated into AC-6 (9)].", "external_references": [ { @@ -2493,14 +2493,14 @@ } ], "id": "course-of-action--9c72593e-62a6-45bb-8063-60a0a720df2a", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Privileged Functions", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.756Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The information system generates audit records containing information that establishes what type of event occurred, when the event occurred, where the event occurred, the source of the event, the outcome of the event, and the identity of any individuals or subjects associated with the event.\nAudit record content that may be necessary to satisfy the requirement of this control, includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked. Event outcomes can include indicators of event success or failure and event-specific results (e.g., the security state of the information system after the event occurred).", "external_references": [ { @@ -2509,7 +2509,7 @@ } ], "id": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", - "modified": "2021-01-06T18:28:39.756Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Content Of Audit Records", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2521,7 +2521,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The information system generates audit records containing the following additional information: [Assignment: organization-defined additional, more detailed information].\nDetailed information that organizations may consider in audit records includes, for example, full text recording of privileged commands or the individual identities of group account users. Organizations consider limiting the additional audit information to only that information explicitly needed for specific audit requirements. This facilitates the use of audit trails and audit logs by not including information that could potentially be misleading or could make it more difficult to locate information of interest.", "external_references": [ { @@ -2530,7 +2530,7 @@ } ], "id": "course-of-action--86999275-4362-4a37-a1d8-4e5a3263f3a5", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Additional Audit Information", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2541,7 +2541,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The information system provides centralized management and configuration of the content to be captured in audit records generated by [Assignment: organization-defined information system components].\nThis control enhancement requires that the content to be captured in audit records be configured from a central location (necessitating automation). Organizations coordinate the selection of required audit content to support the centralized management and configuration capability provided by the information system.", "external_references": [ { @@ -2550,7 +2550,7 @@ } ], "id": "course-of-action--d410f05d-0ee6-46b7-9719-ae37152808fe", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Centralized Management Of Planned Audit Record Content", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2560,7 +2560,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The organization allocates audit record storage capacity in accordance with [Assignment: organization-defined audit record storage requirements].\nOrganizations consider the types of auditing to be performed and the audit processing requirements when allocating audit storage capacity. Allocating sufficient audit storage capacity reduces the likelihood of such capacity being exceeded and resulting in the potential loss or reduction of auditing capability.", "external_references": [ { @@ -2569,7 +2569,7 @@ } ], "id": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Audit Storage Capacity", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2581,7 +2581,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.897Z", "description": "The information system off-loads audit records [Assignment: organization-defined frequency] onto a different system or media than the system being audited.\nOff-loading is a process designed to preserve the confidentiality and integrity of audit records by moving the records from the primary information system to a secondary or alternate system. It is a common process in information systems with limited audit storage capacity; the audit storage is used only in a transitory fashion until the system can communicate with the secondary or alternate system designated for storing the audit records, at which point the information is transferred.", "external_references": [ { @@ -2590,14 +2590,14 @@ } ], "id": "course-of-action--1eb073e8-3a6c-41e2-823d-3cd70f972eca", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.897Z", "name": "Transfer To Alternate Storage", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.898Z", "description": "The information system:\n\n* **AU-5a.** Alerts [Assignment: organization-defined personnel or roles] in the event of an audit processing failure; and\n* **AU-5b.** Takes the following additional actions: [Assignment: organization-defined actions to be taken (e.g., shut down information system, overwrite oldest audit records, stop generating audit records)].\n\nAudit processing failures include, for example, software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded. Organizations may choose to define additional actions for different audit processing failures (e.g., by type, by location, by severity, or a combination of such factors). This control applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the total audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.", "external_references": [ { @@ -2606,7 +2606,7 @@ } ], "id": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.898Z", "name": "Response To Audit Processing Failures", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2618,7 +2618,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.757Z", + "created": "2021-01-13T01:50:48.898Z", "description": "The information system provides a warning to [Assignment: organization-defined personnel, roles, and/or locations] within [Assignment: organization-defined time period] when allocated audit record storage volume reaches [Assignment: organization-defined percentage] of repository maximum audit record storage capacity.\nOrganizations may have multiple audit data storage repositories distributed across multiple information system components, with each repository having different storage volume capacities.", "external_references": [ { @@ -2627,7 +2627,7 @@ } ], "id": "course-of-action--7219790a-a982-4a08-8b36-c0cfe14b4bf1", - "modified": "2021-01-06T18:28:39.757Z", + "modified": "2021-01-13T01:50:48.898Z", "name": "Audit Storage Capacity", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2637,7 +2637,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.758Z", + "created": "2021-01-13T01:50:48.899Z", "description": "The information system provides an alert in [Assignment: organization-defined real-time period] to [Assignment: organization-defined personnel, roles, and/or locations] when the following audit failure events occur: [Assignment: organization-defined audit failure events requiring real-time alerts].\nAlerts provide organizations with urgent messages. Real-time alerts provide these messages at information technology speed (i.e., the time from event detection to alert occurs in seconds or less).", "external_references": [ { @@ -2646,7 +2646,7 @@ } ], "id": "course-of-action--21420534-15f5-4fe2-9461-6caf00083b12", - "modified": "2021-01-06T18:28:39.758Z", + "modified": "2021-01-13T01:50:48.899Z", "name": "Real-Time Alerts", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2656,7 +2656,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.758Z", + "created": "2021-01-13T01:50:48.899Z", "description": "The information system enforces configurable network communications traffic volume thresholds reflecting limits on auditing capacity and [Selection: rejects; delays] network traffic above those thresholds.\nOrganizations have the capability to reject or delay the processing of network communications traffic if auditing such traffic is determined to exceed the storage capacity of the information system audit function. The rejection or delay response is triggered by the established organizational traffic volume thresholds which can be adjusted based on changes to audit storage capacity.", "external_references": [ { @@ -2665,14 +2665,14 @@ } ], "id": "course-of-action--4d124eee-b727-47ac-9e84-e29788eddea8", - "modified": "2021-01-06T18:28:39.758Z", + "modified": "2021-01-13T01:50:48.899Z", "name": "Configurable Traffic Volume Thresholds", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.758Z", + "created": "2021-01-13T01:50:48.899Z", "description": "The information system invokes a [Selection: full system shutdown; partial system shutdown; degraded operational mode with limited mission/business functionality available] in the event of [Assignment: organization-defined audit failures], unless an alternate audit capability exists.\nOrganizations determine the types of audit failures that can trigger automatic information system shutdowns or degraded operations. Because of the importance of ensuring mission/business continuity, organizations may determine that the nature of the audit failure is not so severe that it warrants a complete shutdown of the information system supporting the core organizational missions/business operations. In those instances, partial information system shutdowns or operating in a degraded mode with reduced capability may be viable alternatives.", "external_references": [ { @@ -2681,14 +2681,14 @@ } ], "id": "course-of-action--4c245e5e-e0c8-4cb9-9ff7-068a6e67cd82", - "modified": "2021-01-06T18:28:39.758Z", + "modified": "2021-01-13T01:50:48.899Z", "name": "Shutdown On Failure", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.758Z", + "created": "2021-01-13T01:50:48.899Z", "description": "The organization:\n\n* **AU-6a.** Reviews and analyzes information system audit records [Assignment: organization-defined frequency] for indications of [Assignment: organization-defined inappropriate or unusual activity]; and\n* **AU-6b.** Reports findings to [Assignment: organization-defined personnel or roles].\n\nAudit review, analysis, and reporting covers information security-related auditing performed by organizations including, for example, auditing that results from monitoring of account usage, remote access, wireless connectivity, mobile device connection, configuration settings, system component inventory, use of maintenance tools and nonlocal maintenance, physical access, temperature and humidity, equipment delivery and removal, communications at the information system boundaries, use of mobile code, and use of VoIP. Findings can be reported to organizational entities that include, for example, incident response team, help desk, information security group/department. If organizations are prohibited from reviewing and analyzing audit information or unable to conduct such activities (e.g., in certain national security applications or systems), the review/analysis may be carried out by other organizations granted such authority.", "external_references": [ { @@ -2697,7 +2697,7 @@ } ], "id": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", - "modified": "2021-01-06T18:28:39.758Z", + "modified": "2021-01-13T01:50:48.899Z", "name": "Audit Review, Analysis, And Reporting", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2709,7 +2709,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.758Z", + "created": "2021-01-13T01:50:48.899Z", "description": "The organization employs automated mechanisms to integrate audit review, analysis, and reporting processes to support organizational processes for investigation and response to suspicious activities.\nOrganizational processes benefiting from integrated audit review, analysis, and reporting include, for example, incident response, continuous monitoring, contingency planning, and Inspector General audits.", "external_references": [ { @@ -2718,7 +2718,7 @@ } ], "id": "course-of-action--51950aaa-53a1-45c2-86c5-7a999246e39b", - "modified": "2021-01-06T18:28:39.758Z", + "modified": "2021-01-13T01:50:48.899Z", "name": "Process Integration", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2729,7 +2729,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.759Z", + "created": "2021-01-13T01:50:48.900Z", "description": "[Withdrawn: Incorporated into SI-4].", "external_references": [ { @@ -2738,14 +2738,14 @@ } ], "id": "course-of-action--755416f6-2b81-47f9-bacc-4d656d7b20e8", - "modified": "2021-01-06T18:28:39.759Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Automated Security Alerts", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.759Z", + "created": "2021-01-13T01:50:48.900Z", "description": "The organization analyzes and correlates audit records across different repositories to gain organization-wide situational awareness.\nOrganization-wide situational awareness includes awareness across all three tiers of risk management (i.e., organizational, mission/business process, and information system) and supports cross-organization awareness.", "external_references": [ { @@ -2754,7 +2754,7 @@ } ], "id": "course-of-action--9b407210-ab70-49c0-8bb4-e48f376363b6", - "modified": "2021-01-06T18:28:39.759Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Correlate Audit Repositories", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2765,7 +2765,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.759Z", + "created": "2021-01-13T01:50:48.900Z", "description": "The information system provides the capability to centrally review and analyze audit records from multiple components within the system.\nAutomated mechanisms for centralized reviews and analyses include, for example, Security Information Management products.", "external_references": [ { @@ -2774,14 +2774,14 @@ } ], "id": "course-of-action--fe74966f-3111-4003-b314-a81898334ed7", - "modified": "2021-01-06T18:28:39.759Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Central Review And Analysis", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.759Z", + "created": "2021-01-13T01:50:48.900Z", "description": "The organization integrates analysis of audit records with analysis of [Selection (one or more): vulnerability scanning information; performance data; information system monitoring information; [Assignment: organization-defined data/information collected from other sources]] to further enhance the ability to identify inappropriate or unusual activity.\nThis control enhancement does not require vulnerability scanning, the generation of performance data, or information system monitoring. Rather, the enhancement requires that the analysis of information being otherwise produced in these areas is integrated with the analysis of audit information. Security Event and Information Management System tools can facilitate audit record aggregation/consolidation from multiple information system components as well as audit record correlation and analysis. The use of standardized audit record analysis scripts developed by organizations (with localized script adjustments, as necessary) provides more cost-effective approaches for analyzing audit record information collected. The correlation of audit record information with vulnerability scanning information is important in determining the veracity of vulnerability scans and correlating attack detection events with scanning results. Correlation with performance data can help uncover denial of service attacks or cyber attacks resulting in unauthorized use of resources. Correlation with system monitoring information can assist in uncovering attacks and in better relating audit information to operational situations.", "external_references": [ { @@ -2790,7 +2790,7 @@ } ], "id": "course-of-action--68cfbc36-269d-437d-b4ed-d4ff08075771", - "modified": "2021-01-06T18:28:39.759Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Integration / Scanning And Monitoring Capabilities", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2800,7 +2800,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.760Z", + "created": "2021-01-13T01:50:48.900Z", "description": "The organization correlates information from audit records with information obtained from monitoring physical access to further enhance the ability to identify suspicious, inappropriate, unusual, or malevolent activity.\nThe correlation of physical audit information and audit logs from information systems may assist organizations in identifying examples of suspicious behavior or supporting evidence of such behavior. For example, the correlation of an individual\u00ef\u00bf\u00bds identity for logical access to certain information systems with the additional physical security information that the individual was actually present at the facility when the logical access occurred, may prove to be useful in investigations.", "external_references": [ { @@ -2809,7 +2809,7 @@ } ], "id": "course-of-action--c4d8fd4f-ec75-4c4b-8902-1a0f15c1255a", - "modified": "2021-01-06T18:28:39.760Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Correlation With Physical Monitoring", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2819,7 +2819,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.760Z", + "created": "2021-01-13T01:50:48.900Z", "description": "The organization specifies the permitted actions for each [Selection (one or more): information system process; role; user] associated with the review, analysis, and reporting of audit information.\nOrganizations specify permitted actions for information system processes, roles, and/or users associated with the review, analysis, and reporting of audit records through account management techniques. Specifying permitted actions on audit information is a way to enforce the principle of least privilege. Permitted actions are enforced by the information system and include, for example, read, write, execute, append, and delete.", "external_references": [ { @@ -2828,14 +2828,14 @@ } ], "id": "course-of-action--755ecdd8-f8ef-4cbd-90e2-6dab576480e2", - "modified": "2021-01-06T18:28:39.760Z", + "modified": "2021-01-13T01:50:48.900Z", "name": "Permitted Actions", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.760Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The organization performs a full text analysis of audited privileged commands in a physically distinct component or subsystem of the information system, or other information system that is dedicated to that analysis.\nThis control enhancement requires a distinct environment for the dedicated analysis of audit information related to privileged users without compromising such information on the information system where the users have elevated privileges including the capability to execute privileged commands. Full text analysis refers to analysis that considers the full text of privileged commands (i.e., commands and all parameters) as opposed to analysis that considers only the name of the command. Full text analysis includes, for example, the use of pattern matching and heuristics.", "external_references": [ { @@ -2844,14 +2844,14 @@ } ], "id": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", - "modified": "2021-01-06T18:28:39.760Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Full Text Analysis Of Privileged Commands", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.760Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The organization correlates information from nontechnical sources with audit information to enhance organization-wide situational awareness.\nNontechnical sources include, for example, human resources records documenting organizational policy violations (e.g., sexual harassment incidents, improper use of organizational information assets). Such information can lead organizations to a more directed analytical effort to detect potential malicious insider activity. Due to the sensitive nature of the information available from nontechnical sources, organizations limit access to such information to minimize the potential for the inadvertent release of privacy-related information to individuals that do not have a need to know. Thus, correlation of information from nontechnical sources with audit information generally occurs only when individuals are suspected of being involved in a security incident. Organizations obtain legal advice prior to initiating such actions.", "external_references": [ { @@ -2860,14 +2860,14 @@ } ], "id": "course-of-action--f131eea7-09dc-46c0-82ec-ff7c1f763424", - "modified": "2021-01-06T18:28:39.760Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Correlation With Information From Nontechnical Sources", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.761Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The organization adjusts the level of audit review, analysis, and reporting within the information system when there is a change in risk based on law enforcement information, intelligence information, or other credible sources of information.\nThe frequency, scope, and/or depth of the audit review, analysis, and reporting may be adjusted to meet organizational needs based on new information received.", "external_references": [ { @@ -2876,14 +2876,14 @@ } ], "id": "course-of-action--d842c244-0af1-419a-85ea-8b04eec48775", - "modified": "2021-01-06T18:28:39.761Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Audit Level Adjustment", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.761Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The information system provides an audit reduction and report generation capability that:\n\n* **AU-7a.** Supports on-demand audit review, analysis, and reporting requirements and after-the-fact investigations of security incidents; and\n* **AU-7b.** Does not alter the original content or time ordering of audit records.\n\nAudit reduction is a process that manipulates collected audit information and organizes such information in a summary format that is more meaningful to analysts. Audit reduction and report generation capabilities do not always emanate from the same information system or from the same organizational entities conducting auditing activities. Audit reduction capability can include, for example, modern data mining techniques with advanced data filters to identify anomalous behavior in audit records. The report generation capability provided by the information system can generate customizable reports. Time ordering of audit records can be a significant issue if the granularity of the timestamp in the record is insufficient.", "external_references": [ { @@ -2892,7 +2892,7 @@ } ], "id": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", - "modified": "2021-01-06T18:28:39.761Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Audit Reduction And Report Generation", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2903,7 +2903,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.761Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The information system provides the capability to process audit records for events of interest based on [Assignment: organization-defined audit fields within audit records].\nEvents of interest can be identified by the content of specific audit record fields including, for example, identities of individuals, event types, event locations, event times, event dates, system resources involved, IP addresses involved, or information objects accessed. Organizations may define audit event criteria to any degree of granularity required, for example, locations selectable by general networking location (e.g., by network or subnetwork) or selectable by specific information system component.", "external_references": [ { @@ -2912,7 +2912,7 @@ } ], "id": "course-of-action--d9919e00-c8ee-45f9-a226-c5664b3b90e6", - "modified": "2021-01-06T18:28:39.761Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Automatic Processing", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2923,7 +2923,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.761Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The information system provides the capability to sort and search audit records for events of interest based on the content of [Assignment: organization-defined audit fields within audit records].\nSorting and searching of audit records may be based upon the contents of audit record fields, for example: (i) date/time of events; (ii) user identifiers; (iii) Internet Protocol (IP) addresses involved in the event; (iv) type of event; or (v) event success/failure.", "external_references": [ { @@ -2932,14 +2932,14 @@ } ], "id": "course-of-action--d84c7206-fc91-4fd6-8d93-19e073d557af", - "modified": "2021-01-06T18:28:39.761Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Automatic Sort And Search", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.761Z", + "created": "2021-01-13T01:50:48.901Z", "description": "The information system:\n\n* **AU-8a.** Uses internal system clocks to generate time stamps for audit records; and\n* **AU-8b.** Records time stamps for audit records that can be mapped to Coordinated Universal Time (UTC) or Greenwich Mean Time (GMT) and meets [Assignment: organization-defined granularity of time measurement].\n\nTime stamps generated by the information system include date and time. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC. Granularity of time measurements refers to the degree of synchronization between information system clocks and reference clocks, for example, clocks synchronizing within hundreds of milliseconds or within tens of milliseconds. Organizations may define different time granularities for different system components. Time service can also be critical to other security capabilities such as access control and identification and authentication, depending on the nature of the mechanisms used to support those capabilities.", "external_references": [ { @@ -2948,7 +2948,7 @@ } ], "id": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", - "modified": "2021-01-06T18:28:39.761Z", + "modified": "2021-01-13T01:50:48.901Z", "name": "Time Stamps", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2960,7 +2960,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system:\n\n* **AU-8 (1)(a)** Compares the internal information system clocks [Assignment: organization-defined frequency] with [Assignment: organization-defined authoritative time source]; and\n* **AU-8 (1)(b)** Synchronizes the internal system clocks to the authoritative time source when the time difference is greater than [Assignment: organization-defined time period].\n\nThis control enhancement provides uniformity of time stamps for information systems with multiple system clocks and systems connected over a network.", "external_references": [ { @@ -2969,7 +2969,7 @@ } ], "id": "course-of-action--b69939a0-cd58-4f06-b10d-861be9e0e204", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Synchronization With Authoritative Time Source", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -2980,7 +2980,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system identifies a secondary authoritative time source that is located in a different geographic region than the primary authoritative time source.", "external_references": [ { @@ -2989,14 +2989,14 @@ } ], "id": "course-of-action--a7b3623b-bd5b-4584-a5e8-c0f7129c8f2c", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Secondary Authoritative Time Source", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system protects audit information and audit tools from unauthorized access, modification, and deletion.\nAudit information includes all information (e.g., audit records, audit settings, and audit reports) needed to successfully audit information system activity. This control focuses on technical protection of audit information. Physical protection of audit information is addressed by media protection controls and physical and environmental protection controls.", "external_references": [ { @@ -3005,7 +3005,7 @@ } ], "id": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Protection Of Audit Information", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3017,7 +3017,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system writes audit trails to hardware-enforced, write-once media.\nThis control enhancement applies to the initial generation of audit trails (i.e., the collection of audit records that represents the audit information to be used for detection, analysis, and reporting purposes) and to the backup of those audit trails. The enhancement does not apply to the initial generation of audit records prior to being written to an audit trail. Write-once, read-many (WORM) media includes, for example, Compact Disk-Recordable (CD-R) and Digital Video Disk-Recordable (DVD-R). In contrast, the use of switchable write-protection media such as on tape cartridges or Universal Serial Bus (USB) drives results in write-protected, but not write-once, media.", "external_references": [ { @@ -3026,14 +3026,14 @@ } ], "id": "course-of-action--7217dc64-668f-4fa2-81db-39335804ca3b", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Hardware Write-Once Media", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system backs up audit records [Assignment: organization-defined frequency] onto a physically different system or system component than the system or component being audited.\nThis control enhancement helps to ensure that a compromise of the information system being audited does not also result in a compromise of the audit records.", "external_references": [ { @@ -3042,7 +3042,7 @@ } ], "id": "course-of-action--ab59e2dd-c096-4c54-b71b-d68970f4f823", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Audit Backup On Separate Physical Systems / Components", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3052,7 +3052,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.762Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The information system implements cryptographic mechanisms to protect the integrity of audit information and audit tools.\nCryptographic mechanisms used for protecting the integrity of audit information include, for example, signed hash functions using asymmetric cryptography enabling distribution of the public key to verify the hash information while maintaining the confidentiality of the secret key used to generate the hash.", "external_references": [ { @@ -3061,7 +3061,7 @@ } ], "id": "course-of-action--3af6da32-18f7-4e62-88ba-90872100f5f7", - "modified": "2021-01-06T18:28:39.762Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3071,7 +3071,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.763Z", + "created": "2021-01-13T01:50:48.902Z", "description": "The organization authorizes access to management of audit functionality to only [Assignment: organization-defined subset of privileged users].\nIndividuals with privileged access to an information system and who are also the subject of an audit by that system, may affect the reliability of audit information by inhibiting audit activities or modifying audit records. This control enhancement requires that privileged access be further defined between audit-related privileges and other privileges, thus limiting the users with audit-related privileges.", "external_references": [ { @@ -3080,7 +3080,7 @@ } ], "id": "course-of-action--0a54a5eb-db9e-4dd2-9484-2ca1a46920d4", - "modified": "2021-01-06T18:28:39.763Z", + "modified": "2021-01-13T01:50:48.902Z", "name": "Access By Subset Of Privileged Users", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3091,7 +3091,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.763Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The organization enforces dual authorization for [Selection (one or more): movement; deletion] of [Assignment: organization-defined audit information].\nOrganizations may choose different selection options for different types of audit information. Dual authorization mechanisms require the approval of two authorized individuals in order to execute. Dual authorization may also be known as two-person control.", "external_references": [ { @@ -3100,14 +3100,14 @@ } ], "id": "course-of-action--ff3c93b3-0f4d-42bb-8d5c-8668c637c76f", - "modified": "2021-01-06T18:28:39.763Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Dual Authorization", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.763Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The organization authorizes read-only access to audit information to [Assignment: organization-defined subset of privileged users].\nRestricting privileged user authorizations to read-only helps to limit the potential damage to organizations that could be initiated by such users (e.g., deleting audit records to cover up malicious activity).", "external_references": [ { @@ -3116,14 +3116,14 @@ } ], "id": "course-of-action--84c4b30b-034f-41e9-af7c-b7a150391b9e", - "modified": "2021-01-06T18:28:39.763Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Read Only Access", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.764Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The information system protects against an individual (or process acting on behalf of an individual) falsely denying having performed [Assignment: organization-defined actions to be covered by non-repudiation].\nTypes of individual actions covered by non-repudiation include, for example, creating information, sending and receiving messages, approving information (e.g., indicating concurrence or signing a contract). Non-repudiation protects individuals against later claims by: (i) authors of not having authored particular documents; (ii) senders of not having transmitted messages; (iii) receivers of not having received messages; or (iv) signatories of not having signed documents. Non-repudiation services can be used to determine if information originated from a particular individual, or if an individual took specific actions (e.g., sending an email, signing a contract, approving a procurement request) or received specific information. Organizations obtain non-repudiation services by employing various techniques or mechanisms (e.g., digital signatures, digital message receipts).", "external_references": [ { @@ -3132,7 +3132,7 @@ } ], "id": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", - "modified": "2021-01-06T18:28:39.764Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Non-Repudiation", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3142,7 +3142,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.764Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The information system:\n\n* **AU-10 (1)(a)** Binds the identity of the information producer with the information to [Assignment: organization-defined strength of binding]; and\n* **AU-10 (1)(b)** Provides the means for authorized individuals to determine the identity of the producer of the information.\n\nThis control enhancement supports audit requirements that provide organizational personnel with the means to identify who produced specific information in the event of an information transfer. Organizations determine and approve the strength of the binding between the information producer and the information based on the security category of the information and relevant risk factors.", "external_references": [ { @@ -3151,14 +3151,14 @@ } ], "id": "course-of-action--943a1f55-31da-4cc9-90fe-47f7e7960e84", - "modified": "2021-01-06T18:28:39.764Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Association Of Identities", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.764Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The information system:\n\n* **AU-10 (2)(a)** Validates the binding of the information producer identity to the information at [Assignment: organization-defined frequency]; and\n* **AU-10 (2)(b)** Performs [Assignment: organization-defined actions] in the event of a validation error.\n\nThis control enhancement prevents the modification of information between production and review. The validation of bindings can be achieved, for example, by the use of cryptographic checksums. Organizations determine if validations are in response to user requests or generated automatically.", "external_references": [ { @@ -3167,14 +3167,14 @@ } ], "id": "course-of-action--a8f8befe-e5cb-42aa-bf0a-6956629ccce2", - "modified": "2021-01-06T18:28:39.764Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Validate Binding Of Information Producer Identity", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.764Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The information system maintains reviewer/releaser identity and credentials within the established chain of custody for all information reviewed or released.\nChain of custody is a process that tracks the movement of evidence through its collection, safeguarding, and analysis life cycle by documenting each person who handled the evidence, the date and time it was collected or transferred, and the purpose for the transfer. If the reviewer is a human or if the review function is automated but separate from the release/transfer function, the information system associates the identity of the reviewer of the information to be released with the information and the information label. In the case of human reviews, this control enhancement provides organizational officials the means to identify who reviewed and released the information. In the case of automated reviews, this control enhancement ensures that only approved review functions are employed.", "external_references": [ { @@ -3183,14 +3183,14 @@ } ], "id": "course-of-action--cc36e57e-a6e7-48d6-a0c6-c7f72f3fe437", - "modified": "2021-01-06T18:28:39.764Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Chain Of Custody", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.764Z", + "created": "2021-01-13T01:50:48.903Z", "description": "The information system:\n\n* **AU-10 (4)(a)** Validates the binding of the information reviewer identity to the information at the transfer or release points prior to release/transfer between [Assignment: organization-defined security domains]; and\n* **AU-10 (4)(b)** Performs [Assignment: organization-defined actions] in the event of a validation error.\n\nThis control enhancement prevents the modification of information between review and transfer/release. The validation of bindings can be achieved, for example, by the use of cryptographic checksums. Organizations determine validations are in response to user requests or generated automatically.", "external_references": [ { @@ -3199,14 +3199,14 @@ } ], "id": "course-of-action--e576ceff-7d1e-4270-8dce-7bc384ca4514", - "modified": "2021-01-06T18:28:39.764Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Validate Binding Of Information Reviewer Identity", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.903Z", "description": "[Withdrawn: Incorporated into SI-7].", "external_references": [ { @@ -3215,14 +3215,14 @@ } ], "id": "course-of-action--566ee5d1-7b42-41f1-b501-8a8d2570403e", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.903Z", "name": "Digital Signatures", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The organization retains audit records for [Assignment: organization-defined time period consistent with records retention policy] to provide support for after-the-fact investigations of security incidents and to meet regulatory and organizational information retention requirements.\nOrganizations retain audit records until it is determined that they are no longer needed for administrative, legal, audit, or other operational purposes. This includes, for example, retention and availability of audit records relative to Freedom of Information Act (FOIA) requests, subpoenas, and law enforcement actions. Organizations develop standard categories of audit records relative to such types of actions and standard response processes for each type of action. The National Archives and Records Administration (NARA) General Records Schedules provide federal policy on record retention.", "external_references": [ { @@ -3231,7 +3231,7 @@ } ], "id": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Audit Record Retention", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3243,7 +3243,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The organization employs [Assignment: organization-defined measures] to ensure that long-term audit records generated by the information system can be retrieved.\nMeasures employed by organizations to help facilitate the retrieval of audit records include, for example, converting records to newer formats, retaining equipment capable of reading the records, and retaining necessary documentation to help organizational personnel understand how to interpret the records.", "external_references": [ { @@ -3252,14 +3252,14 @@ } ], "id": "course-of-action--419a9888-674b-49cb-a259-fa9143ef2525", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Long-Term Retrieval Capability", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The information system:\n\n* **AU-12a.** Provides audit record generation capability for the auditable events defined in AU-2 a. at [Assignment: organization-defined information system components];\n* **AU-12b.** Allows [Assignment: organization-defined personnel or roles] to select which auditable events are to be audited by specific components of the information system; and\n* **AU-12c.** Generates audit records for the events defined in AU-2 d. with the content defined in AU-3.\n\nAudit records can be generated from many different information system components. The list of audited events is the set of events for which audits are to be generated. These events are typically a subset of all events for which the information system is capable of generating audit records.", "external_references": [ { @@ -3268,7 +3268,7 @@ } ], "id": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Audit Generation", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3280,7 +3280,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The information system compiles audit records from [Assignment: organization-defined information system components] into a system-wide (logical or physical) audit trail that is time-correlated to within [Assignment: organization-defined level of tolerance for the relationship between time stamps of individual records in the audit trail].\nAudit trails are time-correlated if the time stamps in the individual audit records can be reliably related to the time stamps in other audit records to achieve a time ordering of the records within organizational tolerances.", "external_references": [ { @@ -3289,7 +3289,7 @@ } ], "id": "course-of-action--f09f0bcb-6675-4d6c-9c30-244571f8fecf", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "System-Wide / Time-Correlated Audit Trail", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3299,7 +3299,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.765Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The information system produces a system-wide (logical or physical) audit trail composed of audit records in a standardized format.\nAudit information that is normalized to common standards promotes interoperability and exchange of such information between dissimilar devices and information systems. This facilitates production of event information that can be more readily analyzed and correlated. Standard formats for audit records include, for example, system log records and audit records compliant with Common Event Expressions (CEE). If logging mechanisms within information systems do not conform to standardized formats, systems may convert individual audit records into standardized formats when compiling system-wide audit trails.", "external_references": [ { @@ -3308,14 +3308,14 @@ } ], "id": "course-of-action--756ba0f6-a9fd-4fb5-8b4a-808f3fd59025", - "modified": "2021-01-06T18:28:39.765Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Standardized Formats", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.766Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The information system provides the capability for [Assignment: organization-defined individuals or roles] to change the auditing to be performed on [Assignment: organization-defined information system components] based on [Assignment: organization-defined selectable event criteria] within [Assignment: organization-defined time thresholds].\nThis control enhancement enables organizations to extend or limit auditing as necessary to meet organizational requirements. Auditing that is limited to conserve information system resources may be extended to address certain threat situations. In addition, auditing may be limited to a specific set of events to facilitate audit reduction, analysis, and reporting. Organizations can establish time thresholds in which audit actions are changed, for example, near real-time, within minutes, or within hours.", "external_references": [ { @@ -3324,7 +3324,7 @@ } ], "id": "course-of-action--8dedb8a6-ae09-4928-9394-c13cd4b23ea8", - "modified": "2021-01-06T18:28:39.766Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Changes By Authorized Individuals", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", @@ -3334,7 +3334,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.766Z", + "created": "2021-01-13T01:50:48.904Z", "description": "The organization monitors [Assignment: organization-defined open source information and/or information sites] [Assignment: organization-defined frequency] for evidence of unauthorized disclosure of organizational information.\nOpen source information includes, for example, social networking sites.", "external_references": [ { @@ -3343,14 +3343,14 @@ } ], "id": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", - "modified": "2021-01-06T18:28:39.766Z", + "modified": "2021-01-13T01:50:48.904Z", "name": "Monitoring For Information Disclosure", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.766Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The organization employs automated mechanisms to determine if organizational information has been disclosed in an unauthorized manner.\nAutomated mechanisms can include, for example, automated scripts to monitor new posts on selected websites, and commercial services providing notifications and alerts to organizations.", "external_references": [ { @@ -3359,14 +3359,14 @@ } ], "id": "course-of-action--42b00086-8702-4915-985a-370f1dcd2b9e", - "modified": "2021-01-06T18:28:39.766Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Use Of Automated Tools", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.766Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The organization reviews the open source information sites being monitored [Assignment: organization-defined frequency].", "external_references": [ { @@ -3375,14 +3375,14 @@ } ], "id": "course-of-action--e705b0e3-a924-4c27-8a57-32e05373b37b", - "modified": "2021-01-06T18:28:39.766Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Review Of Monitored Sites", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.767Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The information system provides the capability for authorized users to select a user session to capture/record or view/hear.\nSession audits include, for example, monitoring keystrokes, tracking websites visited, and recording information and/or file transfers. Session auditing activities are developed, integrated, and used in consultation with legal counsel in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, or standards.", "external_references": [ { @@ -3391,14 +3391,14 @@ } ], "id": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", - "modified": "2021-01-06T18:28:39.767Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Session Audit", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.767Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The information system initiates session audits at system start-up.", "external_references": [ { @@ -3407,14 +3407,14 @@ } ], "id": "course-of-action--cdb51f1b-4334-4c21-85d8-7230407c1e00", - "modified": "2021-01-06T18:28:39.767Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "System Start-Up", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.767Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The information system provides the capability for authorized users to capture/record and log content related to a user session.", "external_references": [ { @@ -3423,14 +3423,14 @@ } ], "id": "course-of-action--34dce444-3e67-46d7-bd22-c45a02673f86", - "modified": "2021-01-06T18:28:39.767Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Capture/Record And Log Content", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.767Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The information system provides the capability for authorized users to remotely view/hear all content related to an established user session in real time.", "external_references": [ { @@ -3439,14 +3439,14 @@ } ], "id": "course-of-action--72e48daa-c43e-40ed-9c93-bbb0f284c9e8", - "modified": "2021-01-06T18:28:39.767Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Remote Viewing / Listening", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.768Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The organization provides an alternate audit capability in the event of a failure in primary audit capability that provides [Assignment: organization-defined alternate audit functionality].\nSince an alternate audit capability may be a short-term protection employed until the failure in the primary auditing capability is corrected, organizations may determine that the alternate audit capability need only provide a subset of the primary audit functionality that is impacted by the failure.", "external_references": [ { @@ -3455,14 +3455,14 @@ } ], "id": "course-of-action--1eec44c3-6c67-4ee4-bcb9-d80b82f03f61", - "modified": "2021-01-06T18:28:39.768Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Alternate Audit Capability", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.768Z", + "created": "2021-01-13T01:50:48.905Z", "description": "The organization employs [Assignment: organization-defined methods] for coordinating [Assignment: organization-defined audit information] among external organizations when audit information is transmitted across organizational boundaries.\nWhen organizations use information systems and/or services of external organizations, the auditing capability necessitates a coordinated approach across organizations. For example, maintaining the identity of individuals that requested particular services across organizational boundaries may often be very difficult, and doing so may prove to have significant performance ramifications. Therefore, it is often the case that cross-organizational auditing (e.g., the type of auditing capability provided by service-oriented architectures) simply captures the identity of individuals issuing requests at the initial information system, and subsequent systems record that the requests emanated from authorized individuals.", "external_references": [ { @@ -3471,14 +3471,14 @@ } ], "id": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", - "modified": "2021-01-06T18:28:39.768Z", + "modified": "2021-01-13T01:50:48.905Z", "name": "Cross-Organizational Auditing", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.769Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization requires that the identity of individuals be preserved in cross-organizational audit trails.\nThis control enhancement applies when there is a need to be able to trace actions that are performed across organizational boundaries to a specific individual.", "external_references": [ { @@ -3487,14 +3487,14 @@ } ], "id": "course-of-action--52aa8c0f-eef2-414c-b1d2-87dd6d26966c", - "modified": "2021-01-06T18:28:39.769Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Identity Preservation", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.769Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization provides cross-organizational audit information to [Assignment: organization-defined organizations] based on [Assignment: organization-defined cross-organizational sharing agreements].\nBecause of the distributed nature of the audit information, cross-organization sharing of audit information may be essential for effective analysis of the auditing being performed. For example, the audit records of one organization may not provide sufficient information to determine the appropriate or inappropriate use of organizational information resources by individuals in other organizations. In some instances, only the home organizations of individuals have the appropriate knowledge to make such determinations, thus requiring the sharing of audit information among organizations.", "external_references": [ { @@ -3503,14 +3503,14 @@ } ], "id": "course-of-action--46252abe-9bc9-42b3-8e5c-83b18c963202", - "modified": "2021-01-06T18:28:39.769Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Sharing Of Audit Information", "type": "course-of-action", "x_mitre_family": "Audit And Accountability", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization:\n\n* **CA-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **CA-1a.1.** A security assessment and authorization policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **CA-1a.2.** Procedures to facilitate the implementation of the security assessment and authorization policy and associated security assessment and authorization controls; and\n* **CA-1b.** Reviews and updates the current:\n * **CA-1b.1.** Security assessment and authorization policy [Assignment: organization-defined frequency]; and\n * **CA-1b.2.** Security assessment and authorization procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the CA family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -3519,7 +3519,7 @@ } ], "id": "course-of-action--93c8eee9-ec29-42a6-8c50-ef679d484ff3", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Security Assessment And Authorization Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3531,7 +3531,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization:\n\n* **CA-2a.** Develops a security assessment plan that describes the scope of the assessment including:\n * **CA-2a.1.** Security controls and control enhancements under assessment;\n * **CA-2a.2.** Assessment procedures to be used to determine security control effectiveness; and\n * **CA-2a.3.** Assessment environment, assessment team, and assessment roles and responsibilities;\n* **CA-2b.** Assesses the security controls in the information system and its environment of operation [Assignment: organization-defined frequency] to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security requirements;\n* **CA-2c.** Produces a security assessment report that documents the results of the assessment; and\n* **CA-2d.** Provides the results of the security control assessment to [Assignment: organization-defined individuals or roles].\n\nOrganizations assess security controls in organizational information systems and the environments in which those systems operate as part of: (i) initial and ongoing security authorizations; (ii) FISMA annual assessments; (iii) continuous monitoring; and (iv) system development life cycle activities. Security assessments: (i) ensure that information security is built into organizational information systems; (ii) identify weaknesses and deficiencies early in the development process; (iii) provide essential information needed to make risk-based decisions as part of security authorization processes; and (iv) ensure compliance to vulnerability mitigation procedures. Assessments are conducted on the implemented security controls from Appendix F (main catalog) and Appendix G (Program Management controls) as documented in System Security Plans and Information Security Program Plans. Organizations can use other types of assessment activities such as vulnerability scanning and system monitoring to maintain the security posture of information systems during the entire life cycle. Security assessment reports document assessment results in sufficient detail as deemed necessary by organizations, to determine the accuracy and completeness of the reports and whether the security controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting security requirements. The FISMA requirement for assessing security controls at least annually does not require additional assessment activities to those activities already in place in organizational security authorization processes. Security assessment results are provided to the individuals or roles appropriate for the types of assessments being conducted. For example, assessments conducted in support of security authorization decisions are provided to authorizing officials or authorizing official designated representatives. To satisfy annual assessment requirements, organizations can use assessment results from the following sources: (i) initial or ongoing information system authorizations; (ii) continuous monitoring; or (iii) system development life cycle activities. Organizations ensure that security assessment results are current, relevant to the determination of security control effectiveness, and obtained with the appropriate level of assessor independence. Existing security control assessment results can be reused to the extent that the results are still valid and can also be supplemented with additional assessments as needed. Subsequent to initial authorizations and in accordance with OMB policy, organizations assess security controls during continuous monitoring. Organizations establish the frequency for ongoing security control assessments in accordance with organizational continuous monitoring strategies. Information Assurance Vulnerability Alerts provide useful examples of vulnerability mitigation procedures. External audits (e.g., audits by external entities such as regulatory agencies) are outside the scope of this control.", "external_references": [ { @@ -3540,7 +3540,7 @@ } ], "id": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Security Assessments", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3552,7 +3552,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization employs assessors or assessment teams with [Assignment: organization-defined level of independence] to conduct security control assessments.\nIndependent assessors or assessment teams are individuals or groups who conduct impartial assessments of organizational information systems. Impartiality implies that assessors are free from any perceived or actual conflicts of interest with regard to the development, operation, or management of the organizational information systems under assessment or to the determination of security control effectiveness. To achieve impartiality, assessors should not: (i) create a mutual or conflicting interest with the organizations where the assessments are being conducted; (ii) assess their own work; (iii) act as management or employees of the organizations they are serving; or (iv) place themselves in positions of advocacy for the organizations acquiring their services. Independent assessments can be obtained from elements within organizations or can be contracted to public or private sector entities outside of organizations. Authorizing officials determine the required level of independence based on the security categories of information systems and/or the ultimate risk to organizational operations, organizational assets, or individuals. Authorizing officials also determine if the level of assessor independence provides sufficient assurance that the results are sound and can be used to make credible, risk-based decisions. This includes determining whether contracted security assessment services have sufficient independence, for example, when information system owners are not directly involved in contracting processes or cannot unduly influence the impartiality of assessors conducting assessments. In special situations, for example, when organizations that own the information systems are small or organizational structures require that assessments are conducted by individuals that are in the developmental, operational, or management chain of system owners, independence in assessment processes can be achieved by ensuring that assessment results are carefully reviewed and analyzed by independent teams of experts to validate the completeness, accuracy, integrity, and reliability of the results. Organizations recognize that assessments performed for purposes other than direct support to authorization decisions are, when performed by assessors with sufficient independence, more likely to be useable for such decisions, thereby reducing the need to repeat assessments.", "external_references": [ { @@ -3561,7 +3561,7 @@ } ], "id": "course-of-action--963953b2-6853-4b2a-990d-dd6e19280209", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Independent Assessors", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3572,7 +3572,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization includes as part of security control assessments, [Assignment: organization-defined frequency], [Selection: announced; unannounced], [Selection (one or more): in-depth monitoring; vulnerability scanning; malicious user testing; insider threat assessment; performance/load testing; [Assignment: organization-defined other forms of security assessment]].\nOrganizations can employ information system monitoring, insider threat assessments, malicious user testing, and other forms of testing (e.g., verification and validation) to improve readiness by exercising organizational capabilities and indicating current performance levels as a means of focusing actions to improve security. Organizations conduct assessment activities in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards. Authorizing officials approve the assessment methods in coordination with the organizational risk executive function. Organizations can incorporate vulnerabilities uncovered during assessments into vulnerability remediation processes.", "external_references": [ { @@ -3581,7 +3581,7 @@ } ], "id": "course-of-action--de2d4ae3-19be-4fcb-bba7-27c8f02b545c", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Specialized Assessments", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3591,7 +3591,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization accepts the results of an assessment of [Assignment: organization-defined information system] performed by [Assignment: organization-defined external organization] when the assessment meets [Assignment: organization-defined requirements].\nOrganizations may often rely on assessments of specific information systems by other (external) organizations. Utilizing such existing assessments (i.e., reusing existing assessment evidence) can significantly decrease the time and resources required for organizational assessments by limiting the amount of independent assessment activities that organizations need to perform. The factors that organizations may consider in determining whether to accept assessment results from external organizations can vary. Determinations for accepting assessment results can be based on, for example, past assessment experiences one organization has had with another organization, the reputation that organizations have with regard to assessments, the level of detail of supporting assessment documentation provided, or mandates imposed upon organizations by federal legislation, policies, or directives.", "external_references": [ { @@ -3600,14 +3600,14 @@ } ], "id": "course-of-action--d1b3ab1b-fcf2-4e2b-8d6d-d03d2d0e971d", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "External Organizations", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization:\n\n* **CA-3a.** Authorizes connections from the information system to other information systems through the use of Interconnection Security Agreements;\n* **CA-3b.** Documents, for each interconnection, the interface characteristics, security requirements, and the nature of the information communicated; and\n* **CA-3c.** Reviews and updates Interconnection Security Agreements [Assignment: organization-defined frequency].\n\nThis control applies to dedicated connections between information systems (i.e., system interconnections) and does not apply to transitory, user-controlled connections such as email and website browsing. Organizations carefully consider the risks that may be introduced when information systems are connected to other systems with different security requirements and security controls, both within organizations and external to organizations. Authorizing officials determine the risk associated with information system connections and the appropriate controls employed. If interconnecting systems have the same authorizing official, organizations do not need to develop Interconnection Security Agreements. Instead, organizations can describe the interface characteristics between those interconnecting systems in their respective security plans. If interconnecting systems have different authorizing officials within the same organization, organizations can either develop Interconnection Security Agreements or describe the interface characteristics between systems in the security plans for the respective systems. Organizations may also incorporate Interconnection Security Agreement information into formal contracts, especially for interconnections established between federal agencies and nonfederal (i.e., private sector) organizations. Risk considerations also include information systems sharing the same networks. For certain technologies (e.g., space, unmanned aerial vehicles, and medical devices), there may be specialized connections in place during preoperational testing. Such connections may require Interconnection Security Agreements and be subject to additional security controls.", "external_references": [ { @@ -3616,7 +3616,7 @@ } ], "id": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "System Interconnections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3628,7 +3628,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization prohibits the direct connection of an [Assignment: organization-defined unclassified, national security system] to an external network without the use of [Assignment: organization-defined boundary protection device].\nOrganizations typically do not have control over external networks (e.g., the Internet). Approved boundary protection devices (e.g., routers, firewalls) mediate communications (i.e., information flows) between unclassified national security systems and external networks. This control enhancement is required for organizations processing, storing, or transmitting Controlled Unclassified Information (CUI).", "external_references": [ { @@ -3637,14 +3637,14 @@ } ], "id": "course-of-action--2d5e69eb-e02a-47f7-94e9-97cf0acceccd", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Unclassified National Security System Connections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization prohibits the direct connection of a classified, national security system to an external network without the use of [Assignment: organization-defined boundary protection device].\nOrganizations typically do not have control over external networks (e.g., the Internet). Approved boundary protection devices (e.g., routers, firewalls) mediate communications (i.e., information flows) between classified national security systems and external networks. In addition, approved boundary protection devices (typically managed interface/cross-domain systems) provide information flow enforcement from information systems to external networks.", "external_references": [ { @@ -3653,14 +3653,14 @@ } ], "id": "course-of-action--1c82cafc-ddd4-4da0-be3c-d6630b69541d", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Classified National Security System Connections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization prohibits the direct connection of an [Assignment: organization-defined unclassified, non-national security system] to an external network without the use of [Assignment; organization-defined boundary protection device].\nOrganizations typically do not have control over external networks (e.g., the Internet). Approved boundary protection devices (e.g., routers, firewalls) mediate communications (i.e., information flows) between unclassified non-national security systems and external networks. This control enhancement is required for organizations processing, storing, or transmitting Controlled Unclassified Information (CUI).", "external_references": [ { @@ -3669,14 +3669,14 @@ } ], "id": "course-of-action--119fda97-bcb3-4233-a114-af2fdf5d5584", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Unclassified Non-National Security System Connections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization prohibits the direct connection of an [Assignment: organization-defined information system] to a public network.\nA public network is any network accessible to the general public including, for example, the Internet and organizational extranets with public access.", "external_references": [ { @@ -3685,14 +3685,14 @@ } ], "id": "course-of-action--6f2933ce-d877-4b5d-b592-fd5c5505c298", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Connections To Public Networks", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.771Z", + "created": "2021-01-13T01:50:48.907Z", "description": "The organization employs [Selection: allow-all, deny-by-exception; deny-all, permit-by-exception] policy for allowing [Assignment: organization-defined information systems] to connect to external information systems.\nOrganizations can constrain information system connectivity to external domains (e.g., websites) by employing one of two policies with regard to such connectivity: (i) allow-all, deny by exception, also known as blacklisting (the weaker of the two policies); or (ii) deny-all, allow by exception, also known as whitelisting (the stronger of the two policies). For either policy, organizations determine what exceptions, if any, are acceptable.", "external_references": [ { @@ -3701,7 +3701,7 @@ } ], "id": "course-of-action--aee58a62-c9fd-4a28-905a-b3412aca4dab", - "modified": "2021-01-06T18:28:39.771Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Restrictions On External System Connections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3712,7 +3712,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.907Z", "description": "[Withdrawn: Incorporated into CA-2].", "external_references": [ { @@ -3721,13 +3721,13 @@ } ], "id": "course-of-action--8ae173fc-92ae-49ed-ae90-710652cc8239", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.907Z", "name": "Security Certification", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization:\n\n* **CA-5a.** Develops a plan of action and milestones for the information system to document the organization\u00ef\u00bf\u00bds planned remedial actions to correct weaknesses or deficiencies noted during the assessment of the security controls and to reduce or eliminate known vulnerabilities in the system; and\n* **CA-5b.** Updates existing plan of action and milestones [Assignment: organization-defined frequency] based on the findings from security controls assessments, security impact analyses, and continuous monitoring activities.\n\nPlans of action and milestones are key documents in security authorization packages and are subject to federal reporting requirements established by OMB.", "external_references": [ { @@ -3736,7 +3736,7 @@ } ], "id": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Plan Of Action And Milestones", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3748,7 +3748,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization employs automated mechanisms to help ensure that the plan of action and milestones for the information system is accurate, up to date, and readily available.", "external_references": [ { @@ -3757,14 +3757,14 @@ } ], "id": "course-of-action--4559eaec-88c5-4342-9d52-79f35a73cbe3", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Automation Support For Accuracy / Currency", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization:\n\n* **CA-6a.** Assigns a senior-level executive or manager as the authorizing official for the information system;\n* **CA-6b.** Ensures that the authorizing official authorizes the information system for processing before commencing operations; and\n* **CA-6c.** Updates the security authorization [Assignment: organization-defined frequency].\n\nSecurity authorizations are official management decisions, conveyed through authorization decision documents, by senior organizational officials or executives (i.e., authorizing officials) to authorize operation of information systems and to explicitly accept the risk to organizational operations and assets, individuals, other organizations, and the Nation based on the implementation of agreed-upon security controls. Authorizing officials provide budgetary oversight for organizational information systems or assume responsibility for the mission/business operations supported by those systems. The security authorization process is an inherently federal responsibility and therefore, authorizing officials must be federal employees. Through the security authorization process, authorizing officials assume responsibility and are accountable for security risks associated with the operation and use of organizational information systems. Accordingly, authorizing officials are in positions with levels of authority commensurate with understanding and accepting such information security-related risks. OMB policy requires that organizations conduct ongoing authorizations of information systems by implementing continuous monitoring programs. Continuous monitoring programs can satisfy three-year reauthorization requirements, so separate reauthorization processes are not necessary. Through the employment of comprehensive continuous monitoring processes, critical information contained in authorization packages (i.e., security plans, security assessment reports, and plans of action and milestones) is updated on an ongoing basis, providing authorizing officials and information system owners with an up-to-date status of the security state of organizational information systems and environments of operation. To reduce the administrative cost of security reauthorization, authorizing officials use the results of continuous monitoring processes to the maximum extent possible as the basis for rendering reauthorization decisions.", "external_references": [ { @@ -3773,7 +3773,7 @@ } ], "id": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Security Authorization", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3785,7 +3785,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization develops a continuous monitoring strategy and implements a continuous monitoring program that includes:\n\n* **CA-7a.** Establishment of [Assignment: organization-defined metrics] to be monitored;\n* **CA-7b.** Establishment of [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessments supporting such monitoring;\n* **CA-7c.** Ongoing security control assessments in accordance with the organizational continuous monitoring strategy;\n* **CA-7d.** Ongoing security status monitoring of organization-defined metrics in accordance with the organizational continuous monitoring strategy;\n* **CA-7e.** Correlation and analysis of security-related information generated by assessments and monitoring;\n* **CA-7f.** Response actions to address results of the analysis of security-related information; and\n* **CA-7g.** Reporting the security status of organization and the information system to [Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency].\n\nContinuous monitoring programs facilitate ongoing awareness of threats, vulnerabilities, and information security to support organizational risk management decisions. The terms continuous and ongoing imply that organizations assess/analyze security controls and information security-related risks at a frequency sufficient to support organizational risk-based decisions. The results of continuous monitoring programs generate appropriate risk response actions by organizations. Continuous monitoring programs also allow organizations to maintain the security authorizations of information systems and common controls over time in highly dynamic environments of operation with changing mission/business needs, threats, vulnerabilities, and technologies. Having access to security-related information on a continuing basis through reports/dashboards gives organizational officials the capability to make more effective and timely risk management decisions, including ongoing security authorization decisions. Automation supports more frequent updates to security authorization packages, hardware/software/firmware inventories, and other system information. Effectiveness is further enhanced when continuous monitoring outputs are formatted to provide information that is specific, measurable, actionable, relevant, and timely. Continuous monitoring activities are scaled in accordance with the security categories of information systems.", "external_references": [ { @@ -3794,7 +3794,7 @@ } ], "id": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Continuous Monitoring", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3806,7 +3806,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization employs assessors or assessment teams with [Assignment: organization-defined level of independence] to monitor the security controls in the information system on an ongoing basis.\nOrganizations can maximize the value of assessments of security controls during the continuous monitoring process by requiring that such assessments be conducted by assessors or assessment teams with appropriate levels of independence based on continuous monitoring strategies. Assessor independence provides a degree of impartiality to the monitoring process. To achieve such impartiality, assessors should not: (i) create a mutual or conflicting interest with the organizations where the assessments are being conducted; (ii) assess their own work; (iii) act as management or employees of the organizations they are serving; or (iv) place themselves in advocacy positions for the organizations acquiring their services.", "external_references": [ { @@ -3815,7 +3815,7 @@ } ], "id": "course-of-action--2dc269fe-4600-488d-91f6-6a6980249507", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Independent Assessment", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3826,7 +3826,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "[Withdrawn: Incorporated into CA-2].", "external_references": [ { @@ -3835,14 +3835,14 @@ } ], "id": "course-of-action--502879e9-6036-4447-b598-1cb5c0a1fe04", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Types Of Assessments", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization employs trend analyses to determine if security control implementations, the frequency of continuous monitoring activities, and/or the types of activities used in the continuous monitoring process need to be modified based on empirical data.\nTrend analyses can include, for example, examining recent threat information regarding the types of threat events that have occurred within the organization or across the federal government, success rates of certain types of cyber attacks, emerging vulnerabilities in information technologies, evolving social engineering techniques, results from multiple security control assessments, the effectiveness of configuration settings, and findings from Inspectors General or auditors.", "external_references": [ { @@ -3851,14 +3851,14 @@ } ], "id": "course-of-action--d9aa9c63-3a95-46e1-8eff-52ef2e95d376", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Trend Analyses", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization conducts penetration testing [Assignment: organization-defined frequency] on [Assignment: organization-defined information systems or system components].\nPenetration testing is a specialized type of assessment conducted on information systems or individual system components to identify vulnerabilities that could be exploited by adversaries. Such testing can be used to either validate vulnerabilities or determine the degree of resistance organizational information systems have to adversaries within a set of specified constraints (e.g., time, resources, and/or skills). Penetration testing attempts to duplicate the actions of adversaries in carrying out hostile cyber attacks against organizations and provides a more in-depth analysis of security-related weaknesses/deficiencies. Organizations can also use the results of vulnerability analyses to support penetration testing activities. Penetration testing can be conducted on the hardware, software, or firmware components of an information system and can exercise both physical and technical security controls. A standard method for penetration testing includes, for example: (i) pretest analysis based on full knowledge of the target system; (ii) pretest identification of potential vulnerabilities based on pretest analysis; and (iii) testing designed to determine exploitability of identified vulnerabilities. All parties agree to the rules of engagement before the commencement of penetration testing scenarios. Organizations correlate the penetration testing rules of engagement with the tools, techniques, and procedures that are anticipated to be employed by adversaries carrying out attacks. Organizational risk assessments guide decisions on the level of independence required for personnel conducting penetration testing.", "external_references": [ { @@ -3867,7 +3867,7 @@ } ], "id": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Penetration Testing", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3877,7 +3877,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization employs an independent penetration agent or penetration team to perform penetration testing on the information system or system components.\nIndependent penetration agents or teams are individuals or groups who conduct impartial penetration testing of organizational information systems. Impartiality implies that penetration agents or teams are free from any perceived or actual conflicts of interest with regard to the development, operation, or management of the information systems that are the targets of the penetration testing. Supplemental guidance for CA-2 (1) provides additional information regarding independent assessments that can be applied to penetration testing.", "external_references": [ { @@ -3886,14 +3886,14 @@ } ], "id": "course-of-action--5452049d-a248-4483-9698-7895c4cd3eae", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Independent Penetration Agent Or Team", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization employs [Assignment: organization-defined red team exercises] to simulate attempts by adversaries to compromise organizational information systems in accordance with [Assignment: organization-defined rules of engagement].\nRed team exercises extend the objectives of penetration testing by examining the security posture of organizations and their ability to implement effective cyber defenses. As such, red team exercises reflect simulated adversarial attempts to compromise organizational mission/business functions and provide a comprehensive assessment of the security state of information systems and organizations. Simulated adversarial attempts to compromise organizational missions/business functions and the information systems that support those missions/functions may include technology-focused attacks (e.g., interactions with hardware, software, or firmware components and/or mission/business processes) and social engineering-based attacks (e.g., interactions via email, telephone, shoulder surfing, or personal conversations). While penetration testing may be largely laboratory-based testing, organizations use red team exercises to provide more comprehensive assessments that reflect real-world conditions. Red team exercises can be used to improve security awareness and training and to assess levels of security control effectiveness.", "external_references": [ { @@ -3902,14 +3902,14 @@ } ], "id": "course-of-action--969b2068-f93c-4b4b-a31d-da17890aad1a", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Red Team Exercises", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization:\n\n* **CA-9a.** Authorizes internal connections of [Assignment: organization-defined information system components or classes of components] to the information system; and\n* **CA-9b.** Documents, for each internal connection, the interface characteristics, security requirements, and the nature of the information communicated.\n\nThis control applies to connections between organizational information systems and (separate) constituent system components (i.e., intra-system connections) including, for example, system connections with mobile devices, notebook/desktop computers, printers, copiers, facsimile machines, scanners, sensors, and servers. Instead of authorizing each individual internal connection, organizations can authorize internal connections for a class of components with common characteristics and/or configurations, for example, all digital printers, scanners, and copiers with a specified processing, storage, and transmission capability or all smart phones with a specific baseline configuration.", "external_references": [ { @@ -3918,7 +3918,7 @@ } ], "id": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Internal System Connections", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -3930,7 +3930,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The information system performs security compliance checks on constituent system components prior to the establishment of the internal connection.\nSecurity compliance checks may include, for example, verification of the relevant baseline configuration.", "external_references": [ { @@ -3939,14 +3939,14 @@ } ], "id": "course-of-action--ed179707-9266-43e7-8337-df5bf8bdfd01", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Security Compliance Checks", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization:\n\n* **CM-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **CM-1a.1.** A configuration management policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **CM-1a.2.** Procedures to facilitate the implementation of the configuration management policy and associated configuration management controls; and\n* **CM-1b.** Reviews and updates the current:\n * **CM-1b.1.** Configuration management policy [Assignment: organization-defined frequency]; and\n * **CM-1b.2.** Configuration management procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the CM family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -3955,7 +3955,7 @@ } ], "id": "course-of-action--a3947c1b-ea09-4311-817a-3994899e0ad6", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Configuration Management Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -3967,7 +3967,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization develops, documents, and maintains under configuration control, a current baseline configuration of the information system.\nThis control establishes baseline configurations for information systems and system components including communications and connectivity-related aspects of systems. Baseline configurations are documented, formally reviewed and agreed-upon sets of specifications for information systems or configuration items within those systems. Baseline configurations serve as a basis for future builds, releases, and/or changes to information systems. Baseline configurations include information about information system components (e.g., standard software packages installed on workstations, notebook computers, servers, network components, or mobile devices; current version numbers and patch information on operating systems and applications; and configuration settings/parameters), network topology, and the logical placement of those components within the system architecture. Maintaining baseline configurations requires creating new baselines as organizational information systems change over time. Baseline configurations of information systems reflect the current enterprise architecture.", "external_references": [ { @@ -3976,7 +3976,7 @@ } ], "id": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Baseline Configuration", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -3988,7 +3988,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization reviews and updates the baseline configuration of the information system:\n\n* **CM-2 (1)(a)** [Assignment: organization-defined frequency];\n* **CM-2 (1)(b)** When required due to [Assignment organization-defined circumstances]; and\n* **CM-2 (1)(c)** As an integral part of information system component installations and upgrades.\n", "external_references": [ { @@ -3997,7 +3997,7 @@ } ], "id": "course-of-action--ff46c552-e59a-445e-8a20-e5451117472d", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Reviews And Updates", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4008,7 +4008,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization employs automated mechanisms to maintain an up-to-date, complete, accurate, and readily available baseline configuration of the information system.\nAutomated mechanisms that help organizations maintain consistent baseline configurations for information systems include, for example, hardware and software inventory tools, configuration management tools, and network management tools. Such tools can be deployed and/or allocated as common controls, at the information system level, or at the operating system or component level (e.g., on workstations, servers, notebook computers, network components, or mobile devices). Tools can be used, for example, to track version numbers on operating system applications, types of software installed, and current patch levels. This control enhancement can be satisfied by the implementation of CM-8 (2) for organizations that choose to combine information system component inventory and baseline configuration activities.", "external_references": [ { @@ -4017,7 +4017,7 @@ } ], "id": "course-of-action--be5a9cf1-ea7a-4454-a12c-99169c7b416b", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Automation Support For Accuracy / Currency", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4027,7 +4027,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization retains [Assignment: organization-defined previous versions of baseline configurations of the information system] to support rollback.\nRetaining previous versions of baseline configurations to support rollback may include, for example, hardware, software, firmware, configuration files, and configuration records.", "external_references": [ { @@ -4036,7 +4036,7 @@ } ], "id": "course-of-action--336a4c5e-1f9c-428a-b93d-148d42c39d4d", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Retention Of Previous Configurations", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4047,7 +4047,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.910Z", "description": "[Withdrawn: Incorporated into CM-7].", "external_references": [ { @@ -4056,14 +4056,14 @@ } ], "id": "course-of-action--9856e05d-68ae-4877-a0be-af841364d572", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Unauthorized Software", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.910Z", "description": "[Withdrawn: Incorporated into CM-7].", "external_references": [ { @@ -4072,14 +4072,14 @@ } ], "id": "course-of-action--9ca19e77-3532-499a-ae6c-7445597804a7", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Authorized Software", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization maintains a baseline configuration for information system development and test environments that is managed separately from the operational baseline configuration.\nEstablishing separate baseline configurations for development, testing, and operational environments helps protect information systems from unplanned/unexpected events related to development and testing activities. Separate baseline configurations allow organizations to apply the configuration management that is most appropriate for each type of configuration. For example, management of operational configurations typically emphasizes the need for stability, while management of development/test configurations requires greater flexibility. Configurations in the test environment mirror the configurations in the operational environment to the extent practicable so that the results of the testing are representative of the proposed changes to the operational systems. This control enhancement requires separate configurations but not necessarily separate physical environments.", "external_references": [ { @@ -4088,14 +4088,14 @@ } ], "id": "course-of-action--38a3f700-e1e4-4558-801b-e834999204d2", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Development And Test Environments", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization:\n\n* **CM-2 (7)(a)** Issues [Assignment: organization-defined information systems, system components, or devices] with [Assignment: organization-defined configurations] to individuals traveling to locations that the organization deems to be of significant risk; and\n* **CM-2 (7)(b)** Applies [Assignment: organization-defined security safeguards] to the devices when the individuals return.\n\nWhen it is known that information systems, system components, or devices (e.g., notebook computers, mobile devices) will be located in high-risk areas, additional security controls may be implemented to counter the greater threat in such areas coupled with the lack of physical security relative to organizational-controlled areas. For example, organizational policies and procedures for notebook computers used by individuals departing on and returning from travel include, for example, determining which locations are of concern, defining required configurations for the devices, ensuring that the devices are configured as intended before travel is initiated, and applying specific safeguards to the device after travel is completed. Specially configured notebook computers include, for example, computers with sanitized hard drives, limited applications, and additional hardening (e.g., more stringent configuration settings). Specified safeguards applied to mobile devices upon return from travel include, for example, examining the device for signs of physical tampering and purging/reimaging the hard disk drive. Protecting information residing on mobile devices is covered in the media protection family.", "external_references": [ { @@ -4104,7 +4104,7 @@ } ], "id": "course-of-action--19abf3ef-18b9-4a38-8458-45891f6c2578", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Configure Systems, Components, Or Devices For High-Risk Areas", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4115,7 +4115,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization:\n\n* **CM-3a.** Determines the types of changes to the information system that are configuration-controlled;\n* **CM-3b.** Reviews proposed configuration-controlled changes to the information system and approves or disapproves such changes with explicit consideration for security impact analyses;\n* **CM-3c.** Documents configuration change decisions associated with the information system;\n* **CM-3d.** Implements approved configuration-controlled changes to the information system;\n* **CM-3e.** Retains records of configuration-controlled changes to the information system for [Assignment: organization-defined time period];\n* **CM-3f.** Audits and reviews activities associated with configuration-controlled changes to the information system; and\n* **CM-3g.** Coordinates and provides oversight for configuration change control activities through [Assignment: organization-defined configuration change control element (e.g., committee, board)] that convenes [Selection (one or more): [Assignment: organization-defined frequency]; [Assignment: organization-defined configuration change conditions]].\n\nConfiguration change controls for organizational information systems involve the systematic proposal, justification, implementation, testing, review, and disposition of changes to the systems, including system upgrades and modifications. Configuration change control includes changes to baseline configurations for components and configuration items of information systems, changes to configuration settings for information technology products (e.g., operating systems, applications, firewalls, routers, and mobile devices), unscheduled/unauthorized changes, and changes to remediate vulnerabilities. Typical processes for managing configuration changes to information systems include, for example, Configuration Control Boards that approve proposed changes to systems. For new development information systems or systems undergoing major upgrades, organizations consider including representatives from development organizations on the Configuration Control Boards. Auditing of changes includes activities before and after changes are made to organizational information systems and the auditing activities required to implement such changes.", "external_references": [ { @@ -4124,7 +4124,7 @@ } ], "id": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Configuration Change Control", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4135,7 +4135,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The organization employs automated mechanisms to:\n\n* **CM-3 (1)(a)** Document proposed changes to the information system;\n* **CM-3 (1)(b)** Notify [Assignment: organized-defined approval authorities] of proposed changes to the information system and request change approval;\n* **CM-3 (1)(c)** Highlight proposed changes to the information system that have not been approved or disapproved by [Assignment: organization-defined time period];\n* **CM-3 (1)(d)** Prohibit changes to the information system until designated approvals are received;\n* **CM-3 (1)(e)** Document all changes to the information system; and\n* **CM-3 (1)(f)** Notify [Assignment: organization-defined personnel] when approved changes to the information system are completed.\n", "external_references": [ { @@ -4144,7 +4144,7 @@ } ], "id": "course-of-action--7306d358-187e-4c2d-84e7-1e15d6062db6", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Automated Document / Notification / Prohibition Of Changes", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4154,7 +4154,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The organization tests, validates, and documents changes to the information system before implementing the changes on the operational system.\nChanges to information systems include modifications to hardware, software, or firmware components and configuration settings defined in CM-6. Organizations ensure that testing does not interfere with information system operations. Individuals/groups conducting tests understand organizational security policies and procedures, information system security policies and procedures, and the specific health, safety, and environmental risks associated with particular facilities/processes. Operational systems may need to be taken off-line, or replicated to the extent feasible, before testing can be conducted. If information systems must be taken off-line for testing, the tests are scheduled to occur during planned system outages whenever possible. If testing cannot be conducted on operational systems, organizations employ compensating controls (e.g., testing on replicated systems).", "external_references": [ { @@ -4163,7 +4163,7 @@ } ], "id": "course-of-action--bfc0485f-08f6-4f4c-ac8a-19591aa9fa35", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Test / Validate / Document Changes", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4174,7 +4174,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The organization employs automated mechanisms to implement changes to the current information system baseline and deploys the updated baseline across the installed base.", "external_references": [ { @@ -4183,14 +4183,14 @@ } ], "id": "course-of-action--7a83f164-dc52-45aa-9b91-d0a4de9d1fcc", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Automated Change Implementation", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The organization requires an information security representative to be a member of the [Assignment: organization-defined configuration change control element].\nInformation security representatives can include, for example, senior agency information security officers, information system security officers, or information system security managers. Representation by personnel with information security expertise is important because changes to information system configurations can have unintended side effects, some of which may be security-relevant. Detecting such changes early in the process can help avoid unintended, negative consequences that could ultimately affect the security state of organizational information systems. The configuration change control element in this control enhancement reflects the change control elements defined by organizations in CM-3.", "external_references": [ { @@ -4199,14 +4199,14 @@ } ], "id": "course-of-action--9720c195-677b-42f8-9dfd-fe2174fc7478", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Security Representative", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The information system implements [Assignment: organization-defined security responses] automatically if baseline configurations are changed in an unauthorized manner.\nSecurity responses include, for example, halting information system processing, halting selected system functions, or issuing alerts/notifications to organizational personnel when there is an unauthorized modification of a configuration item.", "external_references": [ { @@ -4215,14 +4215,14 @@ } ], "id": "course-of-action--e1fc974c-51b9-4064-964c-cadde5a9d953", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Automated Security Response", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.911Z", "description": "The organization ensures that cryptographic mechanisms used to provide [Assignment: organization-defined security safeguards] are under configuration management.\nRegardless of the cryptographic means employed (e.g., public key, private key, shared secrets), organizations ensure that there are processes and procedures in place to effectively manage those means. For example, if devices use certificates as a basis for identification and authentication, there needs to be a process in place to address the expiration of those certificates.", "external_references": [ { @@ -4231,14 +4231,14 @@ } ], "id": "course-of-action--c539f3ef-d3c0-431f-8a12-47e3700f96b5", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.911Z", "name": "Cryptography Management", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization analyzes changes to the information system to determine potential security impacts prior to change implementation.\nOrganizational personnel with information security responsibilities (e.g., Information System Administrators, Information System Security Officers, Information System Security Managers, and Information System Security Engineers) conduct security impact analyses. Individuals conducting security impact analyses possess the necessary skills/technical expertise to analyze the changes to information systems and the associated security ramifications. Security impact analysis may include, for example, reviewing security plans to understand security control requirements and reviewing system design documentation to understand control implementation and how specific changes might affect the controls. Security impact analyses may also include assessments of risk to better understand the impact of the changes and to determine if additional security controls are required. Security impact analyses are scaled in accordance with the security categories of the information systems.", "external_references": [ { @@ -4247,7 +4247,7 @@ } ], "id": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Security Impact Analysis", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4259,7 +4259,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization analyzes changes to the information system in a separate test environment before implementation in an operational environment, looking for security impacts due to flaws, weaknesses, incompatibility, or intentional malice.\nSeparate test environment in this context means an environment that is physically or logically isolated and distinct from the operational environment. The separation is sufficient to ensure that activities in the test environment do not impact activities in the operational environment, and information in the operational environment is not inadvertently transmitted to the test environment. Separate environments can be achieved by physical or logical means. If physically separate test environments are not used, organizations determine the strength of mechanism required when implementing logical separation (e.g., separation achieved through virtual machines).", "external_references": [ { @@ -4268,7 +4268,7 @@ } ], "id": "course-of-action--d15ad21b-abd1-4329-a8cf-6477847ed127", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Separate Test Environments", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4278,7 +4278,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization, after the information system is changed, checks the security functions to verify that the functions are implemented correctly, operating as intended, and producing the desired outcome with regard to meeting the security requirements for the system.\nImplementation is this context refers to installing changed code in the operational information system.", "external_references": [ { @@ -4287,14 +4287,14 @@ } ], "id": "course-of-action--80e1b680-cc53-482b-a5a1-dcbba044f925", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Verification Of Security Functions", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization defines, documents, approves, and enforces physical and logical access restrictions associated with changes to the information system.\nAny changes to the hardware, software, and/or firmware components of information systems can potentially have significant effects on the overall security of the systems. Therefore, organizations permit only qualified and authorized individuals to access information systems for purposes of initiating changes, including upgrades and modifications. Organizations maintain records of access to ensure that configuration change control is implemented and to support after-the-fact actions should organizations discover any unauthorized changes. Access restrictions for change also include software libraries. Access restrictions include, for example, physical and logical access controls (see AC-3 and PE-3), workflow automation, media libraries, abstract layers (e.g., changes implemented into third-party interfaces rather than directly into information systems), and change windows (e.g., changes occur only during specified times, making unauthorized changes easy to discover).", "external_references": [ { @@ -4303,7 +4303,7 @@ } ], "id": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Access Restrictions For Change", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4314,7 +4314,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The information system enforces access restrictions and supports auditing of the enforcement actions.", "external_references": [ { @@ -4323,7 +4323,7 @@ } ], "id": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Automated Access Enforcement / Auditing", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4333,7 +4333,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization reviews information system changes [Assignment: organization-defined frequency] and [Assignment: organization-defined circumstances] to determine whether unauthorized changes have occurred.\nIndications that warrant review of information system changes and the specific circumstances justifying such reviews may be obtained from activities carried out by organizations during the configuration change process.", "external_references": [ { @@ -4342,7 +4342,7 @@ } ], "id": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Review System Changes", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4352,7 +4352,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The information system prevents the installation of [Assignment: organization-defined software and firmware components] without verification that the component has been digitally signed using a certificate that is recognized and approved by the organization.\nSoftware and firmware components prevented from installation unless signed with recognized and approved certificates include, for example, software and firmware version updates, patches, service packs, device drivers, and basic input output system (BIOS) updates. Organizations can identify applicable software and firmware components by type, by specific items, or a combination of both. Digital signatures and organizational verification of such signatures, is a method of code authentication.", "external_references": [ { @@ -4361,7 +4361,7 @@ } ], "id": "course-of-action--d34279e8-f702-4be7-9064-2ff27860a011", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Signed Components", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4371,7 +4371,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization enforces dual authorization for implementing changes to [Assignment: organization-defined information system components and system-level information].\nOrganizations employ dual authorization to ensure that any changes to selected information system components and information cannot occur unless two qualified individuals implement such changes. The two individuals possess sufficient skills/expertise to determine if the proposed changes are correct implementations of approved changes. Dual authorization may also be known as two-person control.", "external_references": [ { @@ -4380,14 +4380,14 @@ } ], "id": "course-of-action--9387fb56-bae9-415f-99aa-f43ab48a7d46", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Dual Authorization", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization:\n\n* **CM-5 (5)(a)** Limits privileges to change information system components and system-related information within a production or operational environment; and\n* **CM-5 (5)(b)** Reviews and reevaluates privileges [Assignment: organization-defined frequency].\n\nIn many organizations, information systems support multiple core missions/business functions. Limiting privileges to change information system components with respect to operational systems is necessary because changes to a particular information system component may have far-reaching effects on mission/business processes supported by the system where the component resides. The complex, many-to-many relationships between systems and mission/business processes are in some cases, unknown to developers.", "external_references": [ { @@ -4396,14 +4396,14 @@ } ], "id": "course-of-action--29511b99-c02a-4066-aba9-7df06a318936", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Limit Production / Operational Privileges", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.777Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization limits privileges to change software resident within software libraries.\nSoftware libraries include privileged programs.", "external_references": [ { @@ -4412,14 +4412,14 @@ } ], "id": "course-of-action--cc4c3cc6-d9bf-4fe1-ab99-887546fea81e", - "modified": "2021-01-06T18:28:39.777Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Limit Library Privileges", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.913Z", "description": "[Withdrawn: Incorporated into SI-7].", "external_references": [ { @@ -4428,14 +4428,14 @@ } ], "id": "course-of-action--56d608c4-bfa6-41f7-8ece-d8ad089a4080", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Automatic Implementation Of Security Safeguards", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization:\n\n* **CM-6a.** Establishes and documents configuration settings for information technology products employed within the information system using [Assignment: organization-defined security configuration checklists] that reflect the most restrictive mode consistent with operational requirements;\n* **CM-6b.** Implements the configuration settings;\n* **CM-6c.** Identifies, documents, and approves any deviations from established configuration settings for [Assignment: organization-defined information system components] based on [Assignment: organization-defined operational requirements]; and\n* **CM-6d.** Monitors and controls changes to the configuration settings in accordance with organizational policies and procedures.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the information system that affect the security posture and/or functionality of the system. Information technology products for which security-related configuration settings can be defined include, for example, mainframe computers, servers (e.g., database, electronic mail, authentication, web, proxy, file, domain name), workstations, input/output devices (e.g., scanners, copiers, and printers), network components (e.g., firewalls, routers, gateways, voice and data switches, wireless access points, network appliances, sensors), operating systems, middleware, and applications. Security-related parameters are those parameters impacting the security state of information systems including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: (i) registry settings; (ii) account, file, directory permission settings; and (iii) settings for functions, ports, protocols, services, and remote connections. Organizations establish organization-wide configuration settings and subsequently derive specific settings for information systems. The established settings become part of the systems configuration baseline. Common secure configurations (also referred to as security configuration checklists, lockdown and hardening guides, security reference guides, security technical implementation guides) provide recognized, standardized, and established benchmarks that stipulate secure configuration settings for specific information technology platforms/products and instructions for configuring those information system components to meet operational requirements. Common secure configurations can be developed by a variety of organizations including, for example, information technology product developers, manufacturers, vendors, consortia, academia, industry, federal agencies, and other organizations in the public and private sectors. Common secure configurations include the United States Government Configuration Baseline (USGCB) which affects the implementation of CM-6 and other controls such as AC-19 and CM-7. The Security Content Automation Protocol (SCAP) and the defined standards within the protocol (e.g., Common Configuration Enumeration) provide an effective method to uniquely identify, track, and control configuration settings. OMB establishes federal policy on configuration requirements for federal information systems.", "external_references": [ { @@ -4444,7 +4444,7 @@ } ], "id": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Configuration Settings", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4456,7 +4456,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization employs automated mechanisms to centrally manage, apply, and verify configuration settings for [Assignment: organization-defined information system components].", "external_references": [ { @@ -4465,7 +4465,7 @@ } ], "id": "course-of-action--071541e1-1f18-4e7e-8e20-ead05e305ef7", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Automated Central Management / Application / Verification", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4475,7 +4475,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to respond to unauthorized changes to [Assignment: organization-defined configuration settings].\nResponses to unauthorized changes to configuration settings can include, for example, alerting designated organizational personnel, restoring established configuration settings, or in extreme cases, halting affected information system processing.", "external_references": [ { @@ -4484,7 +4484,7 @@ } ], "id": "course-of-action--6632f4e0-8b68-4c6a-b97d-03c3ad471f97", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Respond To Unauthorized Changes", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4494,7 +4494,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.914Z", "description": "[Withdrawn: Incorporated into SI-7].", "external_references": [ { @@ -4503,14 +4503,14 @@ } ], "id": "course-of-action--8c13249d-12d1-4a57-950f-90ba8e34d2df", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Unauthorized Change Detection", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.914Z", "description": "[Withdrawn: Incorporated into CM-4].", "external_references": [ { @@ -4519,14 +4519,14 @@ } ], "id": "course-of-action--9598fd8c-680c-4bbe-895b-5ba9491632e2", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Conformance Demonstration", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.914Z", "description": "The organization:\n\n* **CM-7a.** Configures the information system to provide only essential capabilities; and\n* **CM-7b.** Prohibits or restricts the use of the following functions, ports, protocols, and/or services: [Assignment: organization-defined prohibited or restricted functions, ports, protocols, and/or services].\n\nInformation systems can provide a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions). Additionally, it is sometimes convenient to provide multiple services from single information system components, but doing so increases risk over limiting the services provided by any one component. Where feasible, organizations limit component functionality to a single function per device (e.g., email servers or web servers, but not both). Organizations review functions and services provided by information systems or individual components of information systems, to determine which functions and services are candidates for elimination (e.g., Voice Over Internet Protocol, Instant Messaging, auto-execute, and file sharing). Organizations consider disabling unused or unnecessary physical and logical ports/protocols (e.g., Universal Serial Bus, File Transfer Protocol, and Hyper Text Transfer Protocol) on information systems to prevent unauthorized connection of devices, unauthorized transfer of information, or unauthorized tunneling. Organizations can utilize network scanning tools, intrusion detection and prevention systems, and end-point protections such as firewalls and host-based intrusion detection systems to identify and prevent the use of prohibited functions, ports, protocols, and services.", "external_references": [ { @@ -4535,7 +4535,7 @@ } ], "id": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Least Functionality", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4547,7 +4547,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.914Z", "description": "The organization:\n\n* **CM-7 (1)(a)** Reviews the information system [Assignment: organization-defined frequency] to identify unnecessary and/or nonsecure functions, ports, protocols, and services; and\n* **CM-7 (1)(b)** Disables [Assignment: organization-defined functions, ports, protocols, and services within the information system deemed to be unnecessary and/or nonsecure].\n\nThe organization can either make a determination of the relative security of the function, port, protocol, and/or service or base the security decision on the assessment of other entities. Bluetooth, FTP, and peer-to-peer networking are examples of less than secure protocols.", "external_references": [ { @@ -4556,7 +4556,7 @@ } ], "id": "course-of-action--5e14dd85-a15c-4c56-bb70-4b8fcb1aba9e", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Periodic Review", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4567,7 +4567,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.914Z", "description": "The information system prevents program execution in accordance with [Selection (one or more): [Assignment: organization-defined policies regarding software program usage and restrictions]; rules authorizing the terms and conditions of software program usage].", "external_references": [ { @@ -4576,7 +4576,7 @@ } ], "id": "course-of-action--732a33b2-5d1b-4039-80fc-250c1b57fb35", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Prevent Program Execution", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4587,7 +4587,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization ensures compliance with [Assignment: organization-defined registration requirements for functions, ports, protocols, and services].\nOrganizations use the registration process to manage, track, and provide oversight for information systems and implemented functions, ports, protocols, and services.", "external_references": [ { @@ -4596,14 +4596,14 @@ } ], "id": "course-of-action--235a20d3-a4ab-451d-973c-33f032440e9f", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Registration Compliance", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization:\n\n* **CM-7 (4)(a)** Identifies [Assignment: organization-defined software programs not authorized to execute on the information system];\n* **CM-7 (4)(b)** Employs an allow-all, deny-by-exception policy to prohibit the execution of unauthorized software programs on the information system; and\n* **CM-7 (4)(c)** Reviews and updates the list of unauthorized software programs [Assignment: organization-defined frequency].\n\nThe process used to identify software programs that are not authorized to execute on organizational information systems is commonly referred to as blacklisting. Organizations can implement CM-7 (5) instead of this control enhancement if whitelisting (the stronger of the two policies) is the preferred approach for restricting software program execution.", "external_references": [ { @@ -4612,7 +4612,7 @@ } ], "id": "course-of-action--c3e59741-0c6f-43fd-95b4-d74133b388d6", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Unauthorized Software / Blacklisting", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4622,7 +4622,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization:\n\n* **CM-7 (5)(a)** Identifies [Assignment: organization-defined software programs authorized to execute on the information system];\n* **CM-7 (5)(b)** Employs a deny-all, permit-by-exception policy to allow the execution of authorized software programs on the information system; and\n* **CM-7 (5)(c)** Reviews and updates the list of authorized software programs [Assignment: organization-defined frequency].\n\nThe process used to identify software programs that are authorized to execute on organizational information systems is commonly referred to as whitelisting. In addition to whitelisting, organizations consider verifying the integrity of white-listed software programs using, for example, cryptographic checksums, digital signatures, or hash functions. Verification of white-listed software can occur either prior to execution or at system startup.", "external_references": [ { @@ -4631,7 +4631,7 @@ } ], "id": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Authorized Software / Whitelisting", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4641,7 +4641,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization:\n\n* **CM-8a.** Develops and documents an inventory of information system components that:\n * **CM-8a.1.** Accurately reflects the current information system;\n * **CM-8a.2.** Includes all components within the authorization boundary of the information system;\n * **CM-8a.3.** Is at the level of granularity deemed necessary for tracking and reporting; and\n * **CM-8a.4.** Includes [Assignment: organization-defined information deemed necessary to achieve effective information system component accountability]; and\n* **CM-8b.** Reviews and updates the information system component inventory [Assignment: organization-defined frequency].\n\nOrganizations may choose to implement centralized information system component inventories that include components from all organizational information systems. In such situations, organizations ensure that the resulting inventories include system-specific information required for proper component accountability (e.g., information system association, information system owner). Information deemed necessary for effective accountability of information system components includes, for example, hardware inventory specifications, software license information, software version numbers, component owners, and for networked components or devices, machine names and network addresses. Inventory specifications include, for example, manufacturer, device type, model, serial number, and physical location.", "external_references": [ { @@ -4650,7 +4650,7 @@ } ], "id": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Information System Component Inventory", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4662,7 +4662,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization updates the inventory of information system components as an integral part of component installations, removals, and information system updates.", "external_references": [ { @@ -4671,7 +4671,7 @@ } ], "id": "course-of-action--ae92e964-6395-4825-b7d2-492c722a6dc5", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Updates During Installations / Removals", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4682,7 +4682,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization employs automated mechanisms to help maintain an up-to-date, complete, accurate, and readily available inventory of information system components.\nOrganizations maintain information system inventories to the extent feasible. Virtual machines, for example, can be difficult to monitor because such machines are not visible to the network when not in use. In such cases, organizations maintain as up-to-date, complete, and accurate an inventory as is deemed reasonable. This control enhancement can be satisfied by the implementation of CM-2 (2) for organizations that choose to combine information system component inventory and baseline configuration activities.", "external_references": [ { @@ -4691,7 +4691,7 @@ } ], "id": "course-of-action--3d87c377-1947-4b4e-b56e-da8e33891faa", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Automated Maintenance", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4701,7 +4701,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization:\n\n* **CM-8 (3)(a)** Employs automated mechanisms [Assignment: organization-defined frequency] to detect the presence of unauthorized hardware, software, and firmware components within the information system; and\n* **CM-8 (3)(b)** Takes the following actions when unauthorized components are detected: [Selection (one or more): disables network access by such components; isolates the components; notifies [Assignment: organization-defined personnel or roles]].\n\nThis control enhancement is applied in addition to the monitoring for unauthorized remote connections and mobile devices. Monitoring for unauthorized system components may be accomplished on an ongoing basis or by the periodic scanning of systems for that purpose. Automated mechanisms can be implemented within information systems or in other separate devices. Isolation can be achieved, for example, by placing unauthorized information system components in separate domains or subnets or otherwise quarantining such components. This type of component isolation is commonly referred to as sandboxing.", "external_references": [ { @@ -4710,7 +4710,7 @@ } ], "id": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Automated Unauthorized Component Detection", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4721,7 +4721,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization includes in the information system component inventory information, a means for identifying by [Selection (one or more): name; position; role], individuals responsible/accountable for administering those components.\nIdentifying individuals who are both responsible and accountable for administering information system components helps to ensure that the assigned components are properly administered and organizations can contact those individuals if some action is required (e.g., component is determined to be the source of a breach/compromise, component needs to be recalled/replaced, or component needs to be relocated).", "external_references": [ { @@ -4730,7 +4730,7 @@ } ], "id": "course-of-action--774a17be-6f12-4b6b-84d7-fee79b175e03", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Accountability Information", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4740,7 +4740,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization verifies that all components within the authorization boundary of the information system are not duplicated in other information system component inventories.\nThis control enhancement addresses the potential problem of duplicate accounting of information system components in large or complex interconnected systems.", "external_references": [ { @@ -4749,7 +4749,7 @@ } ], "id": "course-of-action--e0c8a87f-5d13-422d-a78a-360ecc8c176e", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "No Duplicate Accounting Of Components", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4760,7 +4760,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.780Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization includes assessed component configurations and any approved deviations to current deployed configurations in the information system component inventory.\nThis control enhancement focuses on configuration settings established by organizations for information system components, the specific components that have been assessed to determine compliance with the required configuration settings, and any approved deviations from established configuration settings.", "external_references": [ { @@ -4769,14 +4769,14 @@ } ], "id": "course-of-action--f0f186e4-05ea-42d4-b377-133de16307e6", - "modified": "2021-01-06T18:28:39.780Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Assessed Configurations / Approved Deviations", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.781Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization provides a centralized repository for the inventory of information system components.\nOrganizations may choose to implement centralized information system component inventories that include components from all organizational information systems. Centralized repositories of information system component inventories provide opportunities for efficiencies in accounting for organizational hardware, software, and firmware assets. Such repositories may also help organizations rapidly identify the location and responsible individuals of system components that have been compromised, breached, or are otherwise in need of mitigation actions. Organizations ensure that the resulting centralized inventories include system-specific information required for proper component accountability (e.g., information system association, information system owner).", "external_references": [ { @@ -4785,14 +4785,14 @@ } ], "id": "course-of-action--83ad1211-baaa-4262-a3bd-bcd8236b1840", - "modified": "2021-01-06T18:28:39.781Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Centralized Repository", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.781Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization employs automated mechanisms to support tracking of information system components by geographic location.\nThe use of automated mechanisms to track the location of information system components can increase the accuracy of component inventories. Such capability may also help organizations rapidly identify the location and responsible individuals of system components that have been compromised, breached, or are otherwise in need of mitigation actions.", "external_references": [ { @@ -4801,14 +4801,14 @@ } ], "id": "course-of-action--bb727e68-87c3-42da-acb1-e68c5135f3be", - "modified": "2021-01-06T18:28:39.781Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Automated Location Tracking", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.781Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization:\n\n* **CM-8 (9)(a)** Assigns [Assignment: organization-defined acquired information system components] to an information system; and\n* **CM-8 (9)(b)** Receives an acknowledgement from the information system owner of this assignment.\n\nOrganizations determine the criteria for or types of information system components (e.g., microprocessors, motherboards, software, programmable logic controllers, and network devices) that are subject to this control enhancement.", "external_references": [ { @@ -4817,14 +4817,14 @@ } ], "id": "course-of-action--63fb599f-d1ec-4e9c-8530-aa72dbe72296", - "modified": "2021-01-06T18:28:39.781Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Assignment Of Components To Systems", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.781Z", + "created": "2021-01-13T01:50:48.916Z", "description": "The organization develops, documents, and implements a configuration management plan for the information system that:\n\n* **CM-9a.** Addresses roles, responsibilities, and configuration management processes and procedures;\n* **CM-9b.** Establishes a process for identifying configuration items throughout the system development life cycle and for managing the configuration of the configuration items;\n* **CM-9c.** Defines the configuration items for the information system and places the configuration items under configuration management; and\n* **CM-9d.** Protects the configuration management plan from unauthorized disclosure and modification.\n\nConfiguration management plans satisfy the requirements in configuration management policies while being tailored to individual information systems. Such plans define detailed processes and procedures for how configuration management is used to support system development life cycle activities at the information system level. Configuration management plans are typically developed during the development/acquisition phase of the system development life cycle. The plans describe how to move changes through change management processes, how to update configuration settings and baselines, how to maintain information system component inventories, how to control development, test, and operational environments, and how to develop, release, and update key documents. Organizations can employ templates to help ensure consistent and timely development and implementation of configuration management plans. Such templates can represent a master configuration management plan for the organization at large with subsets of the plan implemented on a system by system basis. Configuration management approval processes include designation of key management stakeholders responsible for reviewing and approving proposed changes to information systems, and personnel that conduct security impact analyses prior to the implementation of changes to the systems. Configuration items are the information system items (hardware, software, firmware, and documentation) to be configuration-managed. As information systems continue through the system development life cycle, new configuration items may be identified and some existing configuration items may no longer need to be under configuration control.", "external_references": [ { @@ -4833,7 +4833,7 @@ } ], "id": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", - "modified": "2021-01-06T18:28:39.781Z", + "modified": "2021-01-13T01:50:48.916Z", "name": "Configuration Management Plan", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4844,7 +4844,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.781Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization assigns responsibility for developing the configuration management process to organizational personnel that are not directly involved in information system development.\nIn the absence of dedicated configuration management teams assigned within organizations, system developers may be tasked to develop configuration management processes using personnel who are not directly involved in system development or integration. This separation of duties ensures that organizations establish and maintain a sufficient degree of independence between the information system development and integration processes and configuration management processes to facilitate quality control and more effective oversight.", "external_references": [ { @@ -4853,14 +4853,14 @@ } ], "id": "course-of-action--f7c21dc0-80f9-444c-8eb3-f14c0c2aa508", - "modified": "2021-01-06T18:28:39.781Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Assignment Of Responsibility", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization:\n\n* **CM-10a.** Uses software and associated documentation in accordance with contract agreements and copyright laws;\n* **CM-10b.** Tracks the use of software and associated documentation protected by quantity licenses to control copying and distribution; and\n* **CM-10c.** Controls and documents the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.\n\nSoftware license tracking can be accomplished by manual methods (e.g., simple spreadsheets) or automated methods (e.g., specialized tracking applications) depending on organizational needs.", "external_references": [ { @@ -4869,7 +4869,7 @@ } ], "id": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Software Usage Restrictions", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4881,7 +4881,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization establishes the following restrictions on the use of open source software: [Assignment: organization-defined restrictions].\nOpen source software refers to software that is available in source code form. Certain software rights normally reserved for copyright holders are routinely provided under software license agreements that permit individuals to study, change, and improve the software. From a security perspective, the major advantage of open source software is that it provides organizations with the ability to examine the source code. However, there are also various licensing issues associated with open source software including, for example, the constraints on derivative use of such software.", "external_references": [ { @@ -4890,14 +4890,14 @@ } ], "id": "course-of-action--e09a386f-5c90-48b0-8d25-37afb8a1b963", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Open Source Software", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization:\n\n* **CM-11a.** Establishes [Assignment: organization-defined policies] governing the installation of software by users;\n* **CM-11b.** Enforces software installation policies through [Assignment: organization-defined methods]; and\n* **CM-11c.** Monitors policy compliance at [Assignment: organization-defined frequency].\n\nIf provided the necessary privileges, users have the ability to install software in organizational information systems. To maintain control over the types of software installed, organizations identify permitted and prohibited actions regarding software installation. Permitted software installations may include, for example, updates and security patches to existing software and downloading applications from organization-approved \u00ef\u00bf\u00bdapp stores.\u00ef\u00bf\u00bd Prohibited software installations may include, for example, software with unknown or suspect pedigrees or software that organizations consider potentially malicious. The policies organizations select governing user-installed software may be organization-developed or provided by some external entity. Policy enforcement methods include procedural methods (e.g., periodic examination of user accounts), automated methods (e.g., configuration settings implemented on organizational information systems), or both.", "external_references": [ { @@ -4906,7 +4906,7 @@ } ], "id": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "User-Installed Software", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -4918,7 +4918,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The information system alerts [Assignment: organization-defined personnel or roles] when the unauthorized installation of software is detected.", "external_references": [ { @@ -4927,14 +4927,14 @@ } ], "id": "course-of-action--e2e0ca2d-6d49-44a8-b61a-b6adaab72da7", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Alerts For Unauthorized Installations", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The information system prohibits user installation of software without explicit privileged status.\nPrivileged status can be obtained, for example, by serving in the role of system administrator.", "external_references": [ { @@ -4943,14 +4943,14 @@ } ], "id": "course-of-action--01b41a1b-083e-4557-80d2-68b279905095", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Prohibit Installation Without Privileged Status", "type": "course-of-action", "x_mitre_family": "Configuration Management", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization:\n\n* **CP-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **CP-1a.1.** A contingency planning policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **CP-1a.2.** Procedures to facilitate the implementation of the contingency planning policy and associated contingency planning controls; and\n* **CP-1b.** Reviews and updates the current:\n * **CP-1b.1.** Contingency planning policy [Assignment: organization-defined frequency]; and\n * **CP-1b.2.** Contingency planning procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the CP family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -4959,7 +4959,7 @@ } ], "id": "course-of-action--e973ba81-c73e-4cf5-865c-6b06e8568756", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Contingency Planning Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -4971,7 +4971,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization:\n\n* **CP-2a.** Develops a contingency plan for the information system that:\n * **CP-2a.1.** Identifies essential missions and business functions and associated contingency requirements;\n * **CP-2a.2.** Provides recovery objectives, restoration priorities, and metrics;\n * **CP-2a.3.** Addresses contingency roles, responsibilities, assigned individuals with contact information;\n * **CP-2a.4.** Addresses maintaining essential missions and business functions despite an information system disruption, compromise, or failure;\n * **CP-2a.5.** Addresses eventual, full information system restoration without deterioration of the security safeguards originally planned and implemented; and\n * **CP-2a.6.** Is reviewed and approved by [Assignment: organization-defined personnel or roles];\n* **CP-2b.** Distributes copies of the contingency plan to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\n* **CP-2c.** Coordinates contingency planning activities with incident handling activities;\n* **CP-2d.** Reviews the contingency plan for the information system [Assignment: organization-defined frequency];\n* **CP-2e.** Updates the contingency plan to address changes to the organization, information system, or environment of operation and problems encountered during contingency plan implementation, execution, or testing;\n* **CP-2f.** Communicates contingency plan changes to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements]; and\n* **CP-2g.** Protects the contingency plan from unauthorized disclosure and modification.\n\nContingency planning for information systems is part of an overall organizational program for achieving continuity of operations for mission/business functions. Contingency planning addresses both information system restoration and implementation of alternative mission/business processes when systems are compromised. The effectiveness of contingency planning is maximized by considering such planning throughout the phases of the system development life cycle. Performing contingency planning on hardware, software, and firmware development can be an effective means of achieving information system resiliency. Contingency plans reflect the degree of restoration required for organizational information systems since not all systems may need to fully recover to achieve the level of continuity of operations desired. Information system recovery objectives reflect applicable laws, Executive Orders, directives, policies, standards, regulations, and guidelines. In addition to information system availability, contingency plans also address other security-related events resulting in a reduction in mission and/or business effectiveness, such as malicious attacks compromising the confidentiality or integrity of information systems. Actions addressed in contingency plans include, for example, orderly/graceful degradation, information system shutdown, fallback to a manual mode, alternate information flows, and operating in modes reserved for when systems are under attack. By closely coordinating contingency planning with incident handling activities, organizations can ensure that the necessary contingency planning activities are in place and activated in the event of a security incident.", "external_references": [ { @@ -4980,7 +4980,7 @@ } ], "id": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Contingency Plan", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -4992,7 +4992,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization coordinates contingency plan development with organizational elements responsible for related plans.\nPlans related to contingency plans for organizational information systems include, for example, Business Continuity Plans, Disaster Recovery Plans, Continuity of Operations Plans, Crisis Communications Plans, Critical Infrastructure Plans, Cyber Incident Response Plans, Insider Threat Implementation Plan, and Occupant Emergency Plans.", "external_references": [ { @@ -5001,7 +5001,7 @@ } ], "id": "course-of-action--0919a2d5-8147-41bc-8147-3111cbdb8ffe", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Coordinate With Related Plans", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5012,7 +5012,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization conducts capacity planning so that necessary capacity for information processing, telecommunications, and environmental support exists during contingency operations.\nCapacity planning is needed because different types of threats (e.g., natural disasters, targeted cyber attacks) can result in a reduction of the available processing, telecommunications, and support services originally intended to support the organizational missions/business functions. Organizations may need to anticipate degraded operations during contingency operations and factor such degradation into capacity planning.", "external_references": [ { @@ -5021,7 +5021,7 @@ } ], "id": "course-of-action--4bece964-52bc-45dc-b736-cd7eb650a311", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Capacity Planning", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5031,7 +5031,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.784Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization plans for the resumption of essential missions and business functions within [Assignment: organization-defined time period] of contingency plan activation.\nOrganizations may choose to carry out the contingency planning activities in this control enhancement as part of organizational business continuity planning including, for example, as part of business impact analyses. The time period for resumption of essential missions/business functions may be dependent on the severity/extent of disruptions to the information system and its supporting infrastructure.", "external_references": [ { @@ -5040,7 +5040,7 @@ } ], "id": "course-of-action--b2d13e57-a2c7-4ec9-ab14-33e8ee62429b", - "modified": "2021-01-06T18:28:39.784Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Resume Essential Missions / Business Functions", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5051,7 +5051,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.784Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization plans for the resumption of all missions and business functions within [Assignment: organization-defined time period] of contingency plan activation.\nOrganizations may choose to carry out the contingency planning activities in this control enhancement as part of organizational business continuity planning including, for example, as part of business impact analyses. The time period for resumption of all missions/business functions may be dependent on the severity/extent of disruptions to the information system and its supporting infrastructure.", "external_references": [ { @@ -5060,7 +5060,7 @@ } ], "id": "course-of-action--7f8eb94f-912f-4366-bf54-35ef595c1962", - "modified": "2021-01-06T18:28:39.784Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Resume All Missions / Business Functions", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5070,7 +5070,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.784Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization plans for the continuance of essential missions and business functions with little or no loss of operational continuity and sustains that continuity until full information system restoration at primary processing and/or storage sites.\nOrganizations may choose to carry out the contingency planning activities in this control enhancement as part of organizational business continuity planning including, for example, as part of business impact analyses. Primary processing and/or storage sites defined by organizations as part of contingency planning may change depending on the circumstances associated with the contingency (e.g., backup sites may become primary sites).", "external_references": [ { @@ -5079,7 +5079,7 @@ } ], "id": "course-of-action--84c6e004-fa01-40e4-bce4-9353292e0615", - "modified": "2021-01-06T18:28:39.784Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Continue Essential Missions / Business Functions", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5089,7 +5089,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.784Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization plans for the transfer of essential missions and business functions to alternate processing and/or storage sites with little or no loss of operational continuity and sustains that continuity through information system restoration to primary processing and/or storage sites.\nOrganizations may choose to carry out the contingency planning activities in this control enhancement as part of organizational business continuity planning including, for example, as part of business impact analyses. Primary processing and/or storage sites defined by organizations as part of contingency planning may change depending on the circumstances associated with the contingency (e.g., backup sites may become primary sites).", "external_references": [ { @@ -5098,14 +5098,14 @@ } ], "id": "course-of-action--7622cb35-7a27-42fe-89ce-5b61a627c041", - "modified": "2021-01-06T18:28:39.784Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Alternate Processing / Storage Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.784Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization coordinates its contingency plan with the contingency plans of external service providers to ensure that contingency requirements can be satisfied.\nWhen the capability of an organization to successfully carry out its core missions/business functions is dependent on external service providers, developing a timely and comprehensive contingency plan may become more challenging. In this situation, organizations coordinate contingency planning activities with the external entities to ensure that the individual plans reflect the overall contingency needs of the organization.", "external_references": [ { @@ -5114,14 +5114,14 @@ } ], "id": "course-of-action--21556e47-390b-42c0-bfed-7a7056009640", - "modified": "2021-01-06T18:28:39.784Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Coordinate With External Service Providers", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.785Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization identifies critical information system assets supporting essential missions and business functions.\nOrganizations may choose to carry out the contingency planning activities in this control enhancement as part of organizational business continuity planning including, for example, as part of business impact analyses. Organizations identify critical information system assets so that additional safeguards and countermeasures can be employed (above and beyond those safeguards and countermeasures routinely implemented) to help ensure that organizational missions/business functions can continue to be conducted during contingency operations. In addition, the identification of critical information assets facilitates the prioritization of organizational resources. Critical information system assets include technical and operational aspects. Technical aspects include, for example, information technology services, information system components, information technology products, and mechanisms. Operational aspects include, for example, procedures (manually executed operations) and personnel (individuals operating technical safeguards and/or executing manual procedures). Organizational program protection plans can provide assistance in identifying critical assets.", "external_references": [ { @@ -5130,7 +5130,7 @@ } ], "id": "course-of-action--6fe6b797-6d71-4fea-b425-e17264ffa8dc", - "modified": "2021-01-06T18:28:39.785Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Identify Critical Assets", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5141,7 +5141,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.785Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization provides contingency training to information system users consistent with assigned roles and responsibilities:\n\n* **CP-3a.** Within [Assignment: organization-defined time period] of assuming a contingency role or responsibility;\n* **CP-3b.** When required by information system changes; and\n* **CP-3c.** [Assignment: organization-defined frequency] thereafter.\n\nContingency training provided by organizations is linked to the assigned roles and responsibilities of organizational personnel to ensure that the appropriate content and level of detail is included in such training. For example, regular users may only need to know when and where to report for duty during contingency operations and if normal duties are affected; system administrators may require additional training on how to set up information systems at alternate processing and storage sites; and managers/senior leaders may receive more specific training on how to conduct mission-essential functions in designated off-site locations and how to establish communications with other governmental entities for purposes of coordination on contingency-related activities. Training for contingency roles/responsibilities reflects the specific continuity requirements in the contingency plan.", "external_references": [ { @@ -5150,7 +5150,7 @@ } ], "id": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", - "modified": "2021-01-06T18:28:39.785Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Contingency Training", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5162,7 +5162,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.785Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization incorporates simulated events into contingency training to facilitate effective response by personnel in crisis situations.", "external_references": [ { @@ -5171,7 +5171,7 @@ } ], "id": "course-of-action--5aeee253-411e-4d42-98b6-c9fe5d56eeba", - "modified": "2021-01-06T18:28:39.785Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Simulated Events", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5181,7 +5181,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.785Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization employs automated mechanisms to provide a more thorough and realistic contingency training environment.", "external_references": [ { @@ -5190,14 +5190,14 @@ } ], "id": "course-of-action--a27798dc-8ecb-42ca-a126-669a41d0248e", - "modified": "2021-01-06T18:28:39.785Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Automated Training Environments", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.785Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization:\n\n* **CP-4a.** Tests the contingency plan for the information system [Assignment: organization-defined frequency] using [Assignment: organization-defined tests] to determine the effectiveness of the plan and the organizational readiness to execute the plan;\n* **CP-4b.** Reviews the contingency plan test results; and\n* **CP-4c.** Initiates corrective actions, if needed.\n\nMethods for testing contingency plans to determine the effectiveness of the plans and to identify potential weaknesses in the plans include, for example, walk-through and tabletop exercises, checklists, simulations (parallel, full interrupt), and comprehensive exercises. Organizations conduct testing based on the continuity requirements in contingency plans and include a determination of the effects on organizational operations, assets, and individuals arising due to contingency operations. Organizations have flexibility and discretion in the breadth, depth, and timelines of corrective actions.", "external_references": [ { @@ -5206,7 +5206,7 @@ } ], "id": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", - "modified": "2021-01-06T18:28:39.785Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Contingency Plan Testing", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5218,7 +5218,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.786Z", + "created": "2021-01-13T01:50:48.919Z", "description": "The organization coordinates contingency plan testing with organizational elements responsible for related plans.\nPlans related to contingency plans for organizational information systems include, for example, Business Continuity Plans, Disaster Recovery Plans, Continuity of Operations Plans, Crisis Communications Plans, Critical Infrastructure Plans, Cyber Incident Response Plans, and Occupant Emergency Plans. This control enhancement does not require organizations to create organizational elements to handle related plans or to align such elements with specific plans. It does require, however, that if such organizational elements are responsible for related plans, organizations should coordinate with those elements.", "external_references": [ { @@ -5227,7 +5227,7 @@ } ], "id": "course-of-action--c9dcbe5b-43cf-4273-a2db-cb11cabffd6c", - "modified": "2021-01-06T18:28:39.786Z", + "modified": "2021-01-13T01:50:48.919Z", "name": "Coordinate With Related Plans", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5238,7 +5238,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.786Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization tests the contingency plan at the alternate processing site:\n\n* **CP-4 (2)(a)** To familiarize contingency personnel with the facility and available resources; and\n* **CP-4 (2)(b)** To evaluate the capabilities of the alternate processing site to support contingency operations.\n", "external_references": [ { @@ -5247,7 +5247,7 @@ } ], "id": "course-of-action--77d8c64f-2a2e-4f93-92e9-20434ad55463", - "modified": "2021-01-06T18:28:39.786Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Alternate Processing Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5257,7 +5257,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.786Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization employs automated mechanisms to more thoroughly and effectively test the contingency plan.\nAutomated mechanisms provide more thorough and effective testing of contingency plans, for example: (i) by providing more complete coverage of contingency issues; (ii) by selecting more realistic test scenarios and environments; and (iii) by effectively stressing the information system and supported missions.", "external_references": [ { @@ -5266,14 +5266,14 @@ } ], "id": "course-of-action--6376c6a7-c636-4f60-a419-bca578d426ee", - "modified": "2021-01-06T18:28:39.786Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Automated Testing", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.786Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization includes a full recovery and reconstitution of the information system to a known state as part of contingency plan testing.", "external_references": [ { @@ -5282,14 +5282,14 @@ } ], "id": "course-of-action--409acd51-d106-4632-993f-8dd0e773871d", - "modified": "2021-01-06T18:28:39.786Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Full Recovery / Reconstitution", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.786Z", + "created": "2021-01-13T01:50:48.920Z", "description": "[Withdrawn: Incorporated into CP-2].", "external_references": [ { @@ -5298,13 +5298,13 @@ } ], "id": "course-of-action--37d387ad-d32c-4d5a-ba89-9f21d7f0c7c3", - "modified": "2021-01-06T18:28:39.786Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Contingency Plan Update", "type": "course-of-action", "x_mitre_family": "Contingency Planning" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization:\n\n* **CP-6a.** Establishes an alternate storage site including necessary agreements to permit the storage and retrieval of information system backup information; and\n* **CP-6b.** Ensures that the alternate storage site provides information security safeguards equivalent to that of the primary site.\n\nAlternate storage sites are sites that are geographically distinct from primary storage sites. An alternate storage site maintains duplicate copies of information and data in the event that the primary storage site is not available. Items covered by alternate storage site agreements include, for example, environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and coordination of delivery/retrieval of backup media. Alternate storage sites reflect the requirements in contingency plans so that organizations can maintain essential missions/business functions despite disruption, compromise, or failure in organizational information systems.", "external_references": [ { @@ -5313,7 +5313,7 @@ } ], "id": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Alternate Storage Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5324,7 +5324,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization identifies an alternate storage site that is separated from the primary storage site to reduce susceptibility to the same threats.\nThreats that affect alternate storage sites are typically defined in organizational assessments of risk and include, for example, natural disasters, structural failures, hostile cyber attacks, and errors of omission/commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate storage sites based on the types of threats that are of concern. For one particular type of threat (i.e., hostile cyber attack), the degree of separation between sites is less relevant.", "external_references": [ { @@ -5333,7 +5333,7 @@ } ], "id": "course-of-action--002c3dd8-4585-4dee-b961-502adbfb30f2", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Separation From Primary Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5344,7 +5344,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization configures the alternate storage site to facilitate recovery operations in accordance with recovery time and recovery point objectives.", "external_references": [ { @@ -5353,7 +5353,7 @@ } ], "id": "course-of-action--9038246a-25b4-40f4-97bd-b6ff0ce340f0", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Recovery Time / Point Objectives", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5363,7 +5363,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization identifies potential accessibility problems to the alternate storage site in the event of an area-wide disruption or disaster and outlines explicit mitigation actions.\nArea-wide disruptions refer to those types of disruptions that are broad in geographic scope (e.g., hurricane, regional power outage) with such determinations made by organizations based on organizational assessments of risk. Explicit mitigation actions include, for example: (i) duplicating backup information at other alternate storage sites if access problems occur at originally designated alternate sites; or (ii) planning for physical access to retrieve backup information if electronic accessibility to the alternate site is disrupted.", "external_references": [ { @@ -5372,7 +5372,7 @@ } ], "id": "course-of-action--022fdb91-cb30-4222-9745-d30fa422bf9d", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Accessibility", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5383,7 +5383,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization:\n\n* **CP-7a.** Establishes an alternate processing site including necessary agreements to permit the transfer and resumption of [Assignment: organization-defined information system operations] for essential missions/business functions within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] when the primary processing capabilities are unavailable;\n* **CP-7b.** Ensures that equipment and supplies required to transfer and resume operations are available at the alternate processing site or contracts are in place to support delivery to the site within the organization-defined time period for transfer/resumption; and\n* **CP-7c.** Ensures that the alternate processing site provides information security safeguards equivalent to those of the primary site.\n\nAlternate processing sites are sites that are geographically distinct from primary processing sites. An alternate processing site provides processing capability in the event that the primary processing site is not available. Items covered by alternate processing site agreements include, for example, environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and coordination for the transfer/assignment of personnel. Requirements are specifically allocated to alternate processing sites that reflect the requirements in contingency plans to maintain essential missions/business functions despite disruption, compromise, or failure in organizational information systems.", "external_references": [ { @@ -5392,7 +5392,7 @@ } ], "id": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Alternate Processing Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5403,7 +5403,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization identifies an alternate processing site that is separated from the primary processing site to reduce susceptibility to the same threats.\nThreats that affect alternate processing sites are typically defined in organizational assessments of risk and include, for example, natural disasters, structural failures, hostile cyber attacks, and errors of omission/commission. Organizations determine what is considered a sufficient degree of separation between primary and alternate processing sites based on the types of threats that are of concern. For one particular type of threat (i.e., hostile cyber attack), the degree of separation between sites is less relevant.", "external_references": [ { @@ -5412,7 +5412,7 @@ } ], "id": "course-of-action--6694b5f9-8ddb-4291-93ee-56e2055c31fa", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Separation From Primary Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5423,7 +5423,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization identifies potential accessibility problems to the alternate processing site in the event of an area-wide disruption or disaster and outlines explicit mitigation actions.\nArea-wide disruptions refer to those types of disruptions that are broad in geographic scope (e.g., hurricane, regional power outage) with such determinations made by organizations based on organizational assessments of risk.", "external_references": [ { @@ -5432,7 +5432,7 @@ } ], "id": "course-of-action--19534617-ac22-42e9-8233-f39670ee587a", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Accessibility", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5443,7 +5443,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization develops alternate processing site agreements that contain priority-of-service provisions in accordance with organizational availability requirements (including recovery time objectives).\nPriority-of-service agreements refer to negotiated agreements with service providers that ensure that organizations receive priority treatment consistent with their availability requirements and the availability of information resources at the alternate processing site.", "external_references": [ { @@ -5452,7 +5452,7 @@ } ], "id": "course-of-action--28089846-e5ad-4f2d-879b-30acf179b4dd", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Priority Of Service", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5463,7 +5463,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization prepares the alternate processing site so that the site is ready to be used as the operational site supporting essential missions and business functions.\nSite preparation includes, for example, establishing configuration settings for information system components at the alternate processing site consistent with the requirements for such settings at the primary site and ensuring that essential supplies and other logistical considerations are in place.", "external_references": [ { @@ -5472,7 +5472,7 @@ } ], "id": "course-of-action--1e094c48-4d86-434d-8ead-46bc4e731802", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Preparation For Use", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5482,7 +5482,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.921Z", "description": "[Withdrawn: Incorporated into CP-7].", "external_references": [ { @@ -5491,14 +5491,14 @@ } ], "id": "course-of-action--91bf0f5b-2e26-44e0-9b2e-8bb0cf608811", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Equivalent Information Security Safeguards", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization plans and prepares for circumstances that preclude returning to the primary processing site.", "external_references": [ { @@ -5507,14 +5507,14 @@ } ], "id": "course-of-action--47af5568-6c03-49d6-9a32-437e118112a7", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Inability To Return To Primary Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization establishes alternate telecommunications services including necessary agreements to permit the resumption of [Assignment: organization-defined information system operations] for essential missions and business functions within [Assignment: organization-defined time period] when the primary telecommunications capabilities are unavailable at either the primary or alternate processing or storage sites.\nThis control applies to telecommunications services (data and voice) for primary and alternate processing and storage sites. Alternate telecommunications services reflect the continuity requirements in contingency plans to maintain essential missions/business functions despite the loss of primary telecommunications services. Organizations may specify different time periods for primary/alternate sites. Alternate telecommunications services include, for example, additional organizational or commercial ground-based circuits/lines or satellites in lieu of ground-based communications. Organizations consider factors such as availability, quality of service, and access when entering into alternate telecommunications agreements.", "external_references": [ { @@ -5523,7 +5523,7 @@ } ], "id": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Telecommunications Services", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5534,7 +5534,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.788Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization:\n\n* **CP-8 (1)(a)** Develops primary and alternate telecommunications service agreements that contain priority-of-service provisions in accordance with organizational availability requirements (including recovery time objectives); and\n* **CP-8 (1)(b)** Requests Telecommunications Service Priority for all telecommunications services used for national security emergency preparedness in the event that the primary and/or alternate telecommunications services are provided by a common carrier.\n\nOrganizations consider the potential mission/business impact in situations where telecommunications service providers are servicing other organizations with similar priority-of-service provisions.", "external_references": [ { @@ -5543,7 +5543,7 @@ } ], "id": "course-of-action--e20639c2-2cc4-4cf3-8250-98cd0255e9e0", - "modified": "2021-01-06T18:28:39.788Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Priority Of Service Provisions", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5554,7 +5554,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization obtains alternate telecommunications services to reduce the likelihood of sharing a single point of failure with primary telecommunications services.", "external_references": [ { @@ -5563,7 +5563,7 @@ } ], "id": "course-of-action--2b3de867-f897-44f5-8501-5f8bfd1cb153", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Single Points Of Failure", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5574,7 +5574,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization obtains alternate telecommunications services from providers that are separated from primary service providers to reduce susceptibility to the same threats.\nThreats that affect telecommunications services are typically defined in organizational assessments of risk and include, for example, natural disasters, structural failures, hostile cyber/physical attacks, and errors of omission/commission. Organizations seek to reduce common susceptibilities by, for example, minimizing shared infrastructure among telecommunications service providers and achieving sufficient geographic separation between services. Organizations may consider using a single service provider in situations where the service provider can provide alternate telecommunications services meeting the separation needs addressed in the risk assessment.", "external_references": [ { @@ -5583,7 +5583,7 @@ } ], "id": "course-of-action--c4c1ef74-0274-4fc3-bf55-472d8ecd9b84", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Separation Of Primary / Alternate Providers", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5593,7 +5593,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization:\n\n* **CP-8 (4)(a)** Requires primary and alternate telecommunications service providers to have contingency plans;\n* **CP-8 (4)(b)** Reviews provider contingency plans to ensure that the plans meet organizational contingency requirements; and\n* **CP-8 (4)(c)** Obtains evidence of contingency testing/training by providers [Assignment: organization-defined frequency].\n\nReviews of provider contingency plans consider the proprietary nature of such plans. In some situations, a summary of provider contingency plans may be sufficient evidence for organizations to satisfy the review requirement. Telecommunications service providers may also participate in ongoing disaster recovery exercises in coordination with the Department of Homeland Security, state, and local governments. Organizations may use these types of activities to satisfy evidentiary requirements related to service provider contingency plan reviews, testing, and training.", "external_references": [ { @@ -5602,7 +5602,7 @@ } ], "id": "course-of-action--b11862d8-781c-44b8-8ee3-7c2b90cab787", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Provider Contingency Plan", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5612,7 +5612,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization tests alternate telecommunication services [Assignment: organization-defined frequency].", "external_references": [ { @@ -5621,14 +5621,14 @@ } ], "id": "course-of-action--52fa324b-526f-43cf-a3fd-a4bb4627ff49", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Alternate Telecommunication Service Testing", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization:\n\n* **CP-9a.** Conducts backups of user-level information contained in the information system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\n* **CP-9b.** Conducts backups of system-level information contained in the information system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\n* **CP-9c.** Conducts backups of information system documentation including security-related documentation [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]; and\n* **CP-9d.** Protects the confidentiality, integrity, and availability of backup information at storage locations.\n\nSystem-level information includes, for example, system-state information, operating system and application software, and licenses. User-level information includes any information other than system-level information. Mechanisms employed by organizations to protect the integrity of information system backups include, for example, digital signatures and cryptographic hashes. Protection of system backup information while in transit is beyond the scope of this control. Information system backups reflect the requirements in contingency plans as well as other organizational requirements for backing up information.", "external_references": [ { @@ -5637,7 +5637,7 @@ } ], "id": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Information System Backup", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5649,7 +5649,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.923Z", "description": "The organization tests backup information [Assignment: organization-defined frequency] to verify media reliability and information integrity.", "external_references": [ { @@ -5658,7 +5658,7 @@ } ], "id": "course-of-action--9f503d13-bba2-46bc-a85b-dab34674e730", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Testing For Reliability / Integrity", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5669,7 +5669,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.923Z", "description": "The organization uses a sample of backup information in the restoration of selected information system functions as part of contingency plan testing.", "external_references": [ { @@ -5678,7 +5678,7 @@ } ], "id": "course-of-action--5b01a93e-73a4-4a47-8ff8-597ad64d936c", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Test Restoration Using Sampling", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5688,7 +5688,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.923Z", "description": "The organization stores backup copies of [Assignment: organization-defined critical information system software and other security-related information] in a separate facility or in a fire-rated container that is not collocated with the operational system.\nCritical information system software includes, for example, operating systems, cryptographic key management systems, and intrusion detection/prevention systems. Security-related information includes, for example, organizational inventories of hardware, software, and firmware components. Alternate storage sites typically serve as separate storage facilities for organizations.", "external_references": [ { @@ -5697,7 +5697,7 @@ } ], "id": "course-of-action--572003a2-fb7d-430d-a40d-bffd2ad16ec6", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Separate Storage For Critical Information", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5707,7 +5707,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.923Z", "description": "[Withdrawn: Incorporated into CP-9].", "external_references": [ { @@ -5716,14 +5716,14 @@ } ], "id": "course-of-action--6e6ef6dc-9b98-4795-9cd9-f98477f35ef1", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Protection From Unauthorized Modification", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.923Z", "description": "The organization transfers information system backup information to the alternate storage site [Assignment: organization-defined time period and transfer rate consistent with the recovery time and recovery point objectives].\nInformation system backup information can be transferred to alternate storage sites either electronically or by physical shipment of storage media.", "external_references": [ { @@ -5732,7 +5732,7 @@ } ], "id": "course-of-action--c32b65fc-d9df-4d92-a071-6064b2839d9d", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Transfer To Alternate Storage Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5742,7 +5742,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.923Z", "description": "The organization accomplishes information system backup by maintaining a redundant secondary system that is not collocated with the primary system and that can be activated without loss of information or disruption to operations.", "external_references": [ { @@ -5751,14 +5751,14 @@ } ], "id": "course-of-action--9469526d-bc32-42dc-883f-e570944e96ad", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.923Z", "name": "Redundant Secondary System", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.924Z", "description": "The organization enforces dual authorization for the deletion or destruction of [Assignment: organization-defined backup information].\nDual authorization ensures that the deletion or destruction of backup information cannot occur unless two qualified individuals carry out the task. Individuals deleting/destroying backup information possess sufficient skills/expertise to determine if the proposed deletion/destruction of backup information reflects organizational policies and procedures. Dual authorization may also be known as two-person control.", "external_references": [ { @@ -5767,14 +5767,14 @@ } ], "id": "course-of-action--53f1cf65-5d8d-482f-b7f9-4c9ce837bdcc", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Dual Authorization", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.924Z", "description": "The organization provides for the recovery and reconstitution of the information system to a known state after a disruption, compromise, or failure.\nRecovery is executing information system contingency plan activities to restore organizational missions/business functions. Reconstitution takes place following recovery and includes activities for returning organizational information systems to fully operational states. Recovery and reconstitution operations reflect mission and business priorities, recovery point/time and reconstitution objectives, and established organizational metrics consistent with contingency plan requirements. Reconstitution includes the deactivation of any interim information system capabilities that may have been needed during recovery operations. Reconstitution also includes assessments of fully restored information system capabilities, reestablishment of continuous monitoring activities, potential information system reauthorizations, and activities to prepare the systems against future disruptions, compromises, or failures. Recovery/reconstitution capabilities employed by organizations can include both automated mechanisms and manual procedures.", "external_references": [ { @@ -5783,7 +5783,7 @@ } ], "id": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Information System Recovery And Reconstitution", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5795,7 +5795,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.924Z", "description": "[Withdrawn: Incorporated into CP-4].", "external_references": [ { @@ -5804,14 +5804,14 @@ } ], "id": "course-of-action--91420ebe-61f8-42f5-854d-c404684174ad", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Contingency Plan Testing", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.924Z", "description": "The information system implements transaction recovery for systems that are transaction-based.\nTransaction-based information systems include, for example, database management systems and transaction processing systems. Mechanisms supporting transaction recovery include, for example, transaction rollback and transaction journaling.", "external_references": [ { @@ -5820,7 +5820,7 @@ } ], "id": "course-of-action--3a40d82d-af8b-4650-9d9f-db8125cb11ae", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Transaction Recovery", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5831,7 +5831,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.924Z", "description": "[Withdrawn: Addressed through tailoring procedures].", "external_references": [ { @@ -5840,14 +5840,14 @@ } ], "id": "course-of-action--02903824-ce10-4ba1-868e-f710346f7403", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Compensating Security Controls", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.924Z", "description": "The organization provides the capability to restore information system components within [Assignment: organization-defined restoration time-periods] from configuration-controlled and integrity-protected information representing a known, operational state for the components.\nRestoration of information system components includes, for example, reimaging which restores components to known, operational states.", "external_references": [ { @@ -5856,7 +5856,7 @@ } ], "id": "course-of-action--4037cdca-578c-4970-b20c-3ea5d04010b0", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Restore Within Time Period", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -5866,7 +5866,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.924Z", "description": "[Withdrawn: Incorporated into SI-13].", "external_references": [ { @@ -5875,14 +5875,14 @@ } ], "id": "course-of-action--3428a7fa-a6b7-4421-a5f9-27bc1436be15", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Failover Capability", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The organization protects backup and restoration hardware, firmware, and software.\nProtection of backup and restoration hardware, firmware, and software components includes both physical and technical safeguards. Backup and restoration software includes, for example, router tables, compilers, and other security-relevant system software.", "external_references": [ { @@ -5891,14 +5891,14 @@ } ], "id": "course-of-action--5da453b3-56af-4fa2-8a72-967a529b9b70", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Component Protection", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.791Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The information system provides the capability to employ [Assignment: organization-defined alternative communications protocols] in support of maintaining continuity of operations.\nContingency plans and the associated training and testing for those plans, incorporate an alternate communications protocol capability as part of increasing the resilience of organizational information systems. Alternate communications protocols include, for example, switching from Transmission Control Protocol/Internet Protocol (TCP/IP) Version 4 to TCP/IP Version 6. Switching communications protocols may affect software applications and therefore, the potential side effects of introducing alternate communications protocols are analyzed prior to implementation.", "external_references": [ { @@ -5907,14 +5907,14 @@ } ], "id": "course-of-action--7bd55054-b1ec-4773-9b6e-857cbba6b956", - "modified": "2021-01-06T18:28:39.791Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Alternate Communications Protocols", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The information system, when [Assignment: organization-defined conditions] are detected, enters a safe mode of operation with [Assignment: organization-defined restrictions of safe mode of operation].\nFor information systems supporting critical missions/business functions including, for example, military operations and weapons systems, civilian space operations, nuclear power plant operations, and air traffic control operations (especially real-time operational environments), organizations may choose to identify certain conditions under which those systems revert to a predefined safe mode of operation. The safe mode of operation, which can be activated automatically or manually, restricts the types of activities or operations information systems could execute when those conditions are encountered. Restriction includes, for example, allowing only certain functions that could be carried out under limited power or with reduced communications bandwidth.", "external_references": [ { @@ -5923,14 +5923,14 @@ } ], "id": "course-of-action--d8baae5e-1591-45de-9f42-b17aa28a1ae6", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Safe Mode", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The organization employs [Assignment: organization-defined alternative or supplemental security mechanisms] for satisfying [Assignment: organization-defined security functions] when the primary means of implementing the security function is unavailable or compromised.\nThis control supports information system resiliency and contingency planning/continuity of operations. To ensure mission/business continuity, organizations can implement alternative or supplemental security mechanisms. These mechanisms may be less effective than the primary mechanisms (e.g., not as easy to use, not as scalable, or not as secure). However, having the capability to readily employ these alternative/supplemental mechanisms enhances overall mission/business continuity that might otherwise be adversely impacted if organizational operations had to be curtailed until the primary means of implementing the functions was restored. Given the cost and level of effort required to provide such alternative capabilities, this control would typically be applied only to critical security capabilities provided by information systems, system components, or information system services. For example, an organization may issue to senior executives and system administrators one-time pads in case multifactor tokens, the organization\u00ef\u00bf\u00bds standard means for secure remote authentication, is compromised.", "external_references": [ { @@ -5939,14 +5939,14 @@ } ], "id": "course-of-action--3fb2b16f-e973-49d8-ae88-de09f98f32f8", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Alternative Security Mechanisms", "type": "course-of-action", "x_mitre_family": "Contingency Planning", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The organization:\n\n* **IA-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **IA-1a.1.** An identification and authentication policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **IA-1a.2.** Procedures to facilitate the implementation of the identification and authentication policy and associated identification and authentication controls; and\n* **IA-1b.** Reviews and updates the current:\n * **IA-1b.1.** Identification and authentication policy [Assignment: organization-defined frequency]; and\n * **IA-1b.2.** Identification and authentication procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the IA family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -5955,7 +5955,7 @@ } ], "id": "course-of-action--1a8ce5e3-1c98-4351-94e8-1b5f7c90fce2", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Identification And Authentication Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -5967,7 +5967,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The information system uniquely identifies and authenticates organizational users (or processes acting on behalf of organizational users).\nOrganizational users include employees or individuals that organizations deem to have equivalent status of employees (e.g., contractors, guest researchers). This control applies to all accesses other than: (i) accesses that are explicitly identified and documented in AC-14; and (ii) accesses that occur through authorized use of group authenticators without individual authentication. Organizations may require unique identification of individuals in group accounts (e.g., shared privilege accounts) or for detailed accountability of individual activity. Organizations employ passwords, tokens, or biometrics to authenticate user identities, or in the case multifactor authentication, or some combination thereof. Access to organizational information systems is defined as either local access or network access. Local access is any access to organizational information systems by users (or processes acting on behalf of users) where such access is obtained by direct connections without the use of networks. Network access is access to organizational information systems by users (or processes acting on behalf of users) where such access is obtained through network connections (i.e., nonlocal accesses). Remote access is a type of network access that involves communication through external networks (e.g., the Internet). Internal networks include local area networks and wide area networks. In addition, the use of encrypted virtual private networks (VPNs) for network connections between organization-controlled endpoints and non-organization controlled endpoints may be treated as internal networks from the perspective of protecting the confidentiality and integrity of information traversing the network. Organizations can satisfy the identification and authentication requirements in this control by complying with the requirements in Homeland Security Presidential Directive 12 consistent with the specific organizational implementation plans. Multifactor authentication requires the use of two or more different factors to achieve authentication. The factors are defined as: (i) something you know (e.g., password, personal identification number [PIN]); (ii) something you have (e.g., cryptographic identification device, token); or (iii) something you are (e.g., biometric). Multifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD common access card. In addition to identifying and authenticating users at the information system level (i.e., at logon), organizations also employ identification and authentication mechanisms at the application level, when necessary, to provide increased information security. Identification and authentication requirements for other than organizational users are described in IA-8.", "external_references": [ { @@ -5976,7 +5976,7 @@ } ], "id": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Identification And Authentication (Organizational Users)", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -5988,7 +5988,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The information system implements multifactor authentication for network access to privileged accounts.", "external_references": [ { @@ -5997,7 +5997,7 @@ } ], "id": "course-of-action--8badeeff-a006-43f0-90ad-3014bb221e95", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Network Access To Privileged Accounts", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6009,7 +6009,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements multifactor authentication for network access to non-privileged accounts.", "external_references": [ { @@ -6018,7 +6018,7 @@ } ], "id": "course-of-action--12815e73-9ba8-4967-8d04-e3d758fcbb5c", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Network Access To Non-Privileged Accounts", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6029,7 +6029,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements multifactor authentication for local access to privileged accounts.", "external_references": [ { @@ -6038,7 +6038,7 @@ } ], "id": "course-of-action--9ec4e40d-73e5-42f5-a9fe-b54972dfe798", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Local Access To Privileged Accounts", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6049,7 +6049,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements multifactor authentication for local access to non-privileged accounts.", "external_references": [ { @@ -6058,7 +6058,7 @@ } ], "id": "course-of-action--08792912-31bc-49d2-b501-6076707f0f79", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Local Access To Non-Privileged Accounts", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6068,7 +6068,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The organization requires individuals to be authenticated with an individual authenticator when a group authenticator is employed.\nRequiring individuals to use individual authenticators as a second level of authentication helps organizations to mitigate the risk of using group authenticators.", "external_references": [ { @@ -6077,14 +6077,14 @@ } ], "id": "course-of-action--552a36ef-d0ff-4fbd-a47f-ed01a9a1257e", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Group Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements multifactor authentication for network access to privileged accounts such that one of the factors is provided by a device separate from the system gaining access and the device meets [Assignment: organization-defined strength of mechanism requirements].", "external_references": [ { @@ -6093,14 +6093,14 @@ } ], "id": "course-of-action--d810a854-8ed8-4c60-b625-d3227790ee9b", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Network Access To Privileged Accounts - Separate Device", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements multifactor authentication for network access to non-privileged accounts such that one of the factors is provided by a device separate from the system gaining access and the device meets [Assignment: organization-defined strength of mechanism requirements].", "external_references": [ { @@ -6109,14 +6109,14 @@ } ], "id": "course-of-action--41657a3e-db8f-44c7-96ff-0ea81c99f811", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Network Access To Non-Privileged Accounts - Separate Device", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements replay-resistant authentication mechanisms for network access to privileged accounts.\nAuthentication processes resist replay attacks if it is impractical to achieve successful authentications by replaying previous authentication messages. Replay-resistant techniques include, for example, protocols that use nonces or challenges such as Transport Layer Security (TLS) and time synchronous or challenge-response one-time authenticators.", "external_references": [ { @@ -6125,7 +6125,7 @@ } ], "id": "course-of-action--ddc2f6cb-5db0-417c-8e4e-0f49a9564e94", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Network Access To Privileged Accounts - Replay Resistant", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6136,7 +6136,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.793Z", + "created": "2021-01-13T01:50:48.926Z", "description": "The information system implements replay-resistant authentication mechanisms for network access to non-privileged accounts.\nAuthentication processes resist replay attacks if it is impractical to achieve successful authentications by recording/replaying previous authentication messages. Replay-resistant techniques include, for example, protocols that use nonces or challenges such as Transport Layer Security (TLS) and time synchronous or challenge-response one-time authenticators.", "external_references": [ { @@ -6145,7 +6145,7 @@ } ], "id": "course-of-action--05673453-e67a-46af-abcd-aec1f77b225f", - "modified": "2021-01-06T18:28:39.793Z", + "modified": "2021-01-13T01:50:48.926Z", "name": "Network Access To Non-Privileged Accounts - Replay Resistant", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6155,7 +6155,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system provides a single sign-on capability for [Assignment: organization-defined information system accounts and services].\nSingle sign-on enables users to log in once and gain access to multiple information system resources. Organizations consider the operational efficiencies provided by single sign-on capabilities with the increased risk from disclosures of single authenticators providing access to multiple system resources.", "external_references": [ { @@ -6164,14 +6164,14 @@ } ], "id": "course-of-action--ff3d9cde-dd82-41b1-8746-87a26f1f091b", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Single Sign-On", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system implements multifactor authentication for remote access to privileged and non-privileged accounts such that one of the factors is provided by a device separate from the system gaining access and the device meets [Assignment: organization-defined strength of mechanism requirements].\nFor remote access to privileged/non-privileged accounts, the purpose of requiring a device that is separate from the information system gaining access for one of the factors during multifactor authentication is to reduce the likelihood of compromising authentication credentials stored on the system. For example, adversaries deploying malicious code on organizational information systems can potentially compromise such credentials resident on the system and subsequently impersonate authorized users.", "external_references": [ { @@ -6180,7 +6180,7 @@ } ], "id": "course-of-action--6f912a54-b3f4-4324-acba-784e11a9e250", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Remote Access - Separate Device", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6191,7 +6191,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system accepts and electronically verifies Personal Identity Verification (PIV) credentials.\nThis control enhancement applies to organizations implementing logical access control systems (LACS) and physical access control systems (PACS). Personal Identity Verification (PIV) credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidance documents. OMB Memorandum 11-11 requires federal agencies to continue implementing the requirements specified in HSPD-12 to enable agency-wide use of PIV credentials.", "external_references": [ { @@ -6200,7 +6200,7 @@ } ], "id": "course-of-action--049c0297-2016-4d8e-ba41-eb96ed00564c", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Acceptance Of Piv Credentials", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6212,7 +6212,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system implements [Assignment: organization-defined out-of-band authentication] under [Assignment: organization-defined conditions].\nOut-of-band authentication (OOBA) refers to the use of two separate communication paths to identify and authenticate users or devices to an information system. The first path (i.e., the in-band path), is used to identify and authenticate users or devices, and generally is the path through which information flows. The second path (i.e., the out-of-band path) is used to independently verify the authentication and/or requested action. For example, a user authenticates via a notebook computer to a remote server to which the user desires access, and requests some action of the server via that communication path. Subsequently, the server contacts the user via the user\u00ef\u00bf\u00bds cell phone to verify that the requested action originated from the user. The user may either confirm the intended action to an individual on the telephone or provide an authentication code via the telephone. This type of authentication can be employed by organizations to mitigate actual or suspected man-in the-middle attacks. The conditions for activation can include, for example, suspicious activities, new threat indicators or elevated threat levels, or the impact level or classification level of information in requested transactions.", "external_references": [ { @@ -6221,14 +6221,14 @@ } ], "id": "course-of-action--a017d46f-b676-491b-bc8c-03696b24ce0a", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Out-Of-Band Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system uniquely identifies and authenticates [Assignment: organization-defined specific and/or types of devices] before establishing a [Selection (one or more): local; remote; network] connection.\nOrganizational devices requiring unique device-to-device identification and authentication may be defined by type, by device, or by a combination of type/device. Information systems typically use either shared known information (e.g., Media Access Control [MAC] or Transmission Control Protocol/Internet Protocol [TCP/IP] addresses) for device identification or organizational authentication solutions (e.g., IEEE 802.1x and Extensible Authentication Protocol [EAP], Radius server with EAP-Transport Layer Security [TLS] authentication, Kerberos) to identify/authenticate devices on local and/or wide area networks. Organizations determine the required strength of authentication mechanisms by the security categories of information systems. Because of the challenges of applying this control on large scale, organizations are encouraged to only apply the control to those limited number (and type) of devices that truly need to support this capability.", "external_references": [ { @@ -6237,7 +6237,7 @@ } ], "id": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Device Identification And Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6248,7 +6248,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system authenticates [Assignment: organization-defined specific devices and/or types of devices] before establishing [Selection (one or more): local; remote; network] connection using bidirectional authentication that is cryptographically based.\nA local connection is any connection with a device communicating without the use of a network. A network connection is any connection with a device that communicates through a network (e.g., local area or wide area network, Internet). A remote connection is any connection with a device communicating through an external network (e.g., the Internet). Bidirectional authentication provides stronger safeguards to validate the identity of other devices for connections that are of greater risk (e.g., remote connections).", "external_references": [ { @@ -6257,14 +6257,14 @@ } ], "id": "course-of-action--4dd648ae-58f8-477b-9972-4a838a1b3543", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Cryptographic Bidirectional Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.927Z", "description": "[Withdrawn: Incorporated into IA-3 (1)].", "external_references": [ { @@ -6273,14 +6273,14 @@ } ], "id": "course-of-action--0c5d4e2a-0ff7-4b8e-bd78-d6879f599047", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Cryptographic Bidirectional Network Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization:\n\n* **IA-3 (3)(a)** Standardizes dynamic address allocation lease information and the lease duration assigned to devices in accordance with [Assignment: organization-defined lease information and lease duration]; and\n* **IA-3 (3)(b)** Audits lease information when assigned to a device.\n\nDHCP-enabled clients obtaining leases for IP addresses from DHCP servers, is a typical example of dynamic address allocation for devices.", "external_references": [ { @@ -6289,14 +6289,14 @@ } ], "id": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Dynamic Address Allocation", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization ensures that device identification and authentication based on attestation is handled by [Assignment: organization-defined configuration management process].\nDevice attestation refers to the identification and authentication of a device based on its configuration and known operating state. This might be determined via some cryptographic hash of the device. If device attestation is the means of identification and authentication, then it is important that patches and updates to the device are handled via a configuration management process such that the those patches/updates are done securely and at the same time do not disrupt the identification and authentication to other devices.", "external_references": [ { @@ -6305,14 +6305,14 @@ } ], "id": "course-of-action--5f81cdb2-7b52-4dd5-8b1c-b042098253d8", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Device Attestation", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization manages information system identifiers by:\n\n* **IA-4a.** Receiving authorization from [Assignment: organization-defined personnel or roles] to assign an individual, group, role, or device identifier;\n* **IA-4b.** Selecting an identifier that identifies an individual, group, role, or device;\n* **IA-4c.** Assigning the identifier to the intended individual, group, role, or device;\n* **IA-4d.** Preventing reuse of identifiers for [Assignment: organization-defined time period]; and\n* **IA-4e.** Disabling the identifier after [Assignment: organization-defined time period of inactivity].\n\nCommon device identifiers include, for example, media access control (MAC), Internet protocol (IP) addresses, or device-unique token identifiers. Management of individual identifiers is not applicable to shared information system accounts (e.g., guest and anonymous accounts). Typically, individual identifiers are the user names of the information system accounts assigned to those individuals. In such instances, the account management activities of AC-2 use account names provided by IA-4. This control also addresses individual identifiers not necessarily associated with information system accounts (e.g., identifiers used in physical security control databases accessed by badge reader systems for access to information systems). Preventing reuse of identifiers implies preventing the assignment of previously used individual, group, role, or device identifiers to different individuals, groups, roles, or devices.", "external_references": [ { @@ -6321,7 +6321,7 @@ } ], "id": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Identifier Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6333,7 +6333,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization prohibits the use of information system account identifiers that are the same as public identifiers for individual electronic mail accounts.\nProhibiting the use of information systems account identifiers that are the same as some public identifier such as the individual identifier section of an electronic mail address, makes it more difficult for adversaries to guess user identifiers on organizational information systems.", "external_references": [ { @@ -6342,14 +6342,14 @@ } ], "id": "course-of-action--946b496f-115a-4a6a-80a1-9e29a706425e", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Prohibit Account Identifiers As Public Identifiers", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.796Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization requires that the registration process to receive an individual identifier includes supervisor authorization.", "external_references": [ { @@ -6358,14 +6358,14 @@ } ], "id": "course-of-action--0f56964d-4ca7-4391-937e-b4bc4410fa5a", - "modified": "2021-01-06T18:28:39.796Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Supervisor Authorization", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.796Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization requires multiple forms of certification of individual identification be presented to the registration authority.\nRequiring multiple forms of identification, such as documentary evidence or a combination of documents and biometrics, reduces the likelihood of individuals using fraudulent identification to establish an identity, or at least increases the work factor of potential adversaries.", "external_references": [ { @@ -6374,14 +6374,14 @@ } ], "id": "course-of-action--7b312d45-467f-43bb-aae9-07e6cea4b9dd", - "modified": "2021-01-06T18:28:39.796Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Multiple Forms Of Certification", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.796Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The organization manages individual identifiers by uniquely identifying each individual as [Assignment: organization-defined characteristic identifying individual status].\nCharacteristics identifying the status of individuals include, for example, contractors and foreign nationals. Identifying the status of individuals by specific characteristics provides additional information about the people with whom organizational personnel are communicating. For example, it might be useful for a government employee to know that one of the individuals on an email message is a contractor.", "external_references": [ { @@ -6390,14 +6390,14 @@ } ], "id": "course-of-action--9d64efbc-b6ee-4f21-a0a8-fcd676148677", - "modified": "2021-01-06T18:28:39.796Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Identify User Status", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The information system dynamically manages identifiers.\nIn contrast to conventional approaches to identification which presume static accounts for preregistered users, many distributed information systems including, for example, service-oriented architectures, rely on establishing identifiers at run time for entities that were previously unknown. In these situations, organizations anticipate and provision for the dynamic establishment of identifiers. Preestablished trust relationships and mechanisms with appropriate authorities to validate identities and related credentials are essential.", "external_references": [ { @@ -6406,14 +6406,14 @@ } ], "id": "course-of-action--50d928ea-d064-497c-8486-858ec1b0af63", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Dynamic Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The organization coordinates with [Assignment: organization-defined external organizations] for cross-organization management of identifiers.\nCross-organization identifier management provides the capability for organizations to appropriately identify individuals, groups, roles, or devices when conducting cross-organization activities involving the processing, storage, or transmission of information.", "external_references": [ { @@ -6422,14 +6422,14 @@ } ], "id": "course-of-action--13dfee8d-d305-4cce-b38b-bd6839f74349", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Cross-Organization Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The organization requires that the registration process to receive an individual identifier be conducted in person before a designated registration authority.\nIn-person registration reduces the likelihood of fraudulent identifiers being issued because it requires the physical presence of individuals and actual face-to-face interactions with designated registration authorities.", "external_references": [ { @@ -6438,14 +6438,14 @@ } ], "id": "course-of-action--762aae47-0202-4079-93f6-b111037ef634", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "In-Person Registration", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The organization manages information system authenticators by:\n\n* **IA-5a.** Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, or device receiving the authenticator;\n* **IA-5b.** Establishing initial authenticator content for authenticators defined by the organization;\n* **IA-5c.** Ensuring that authenticators have sufficient strength of mechanism for their intended use;\n* **IA-5d.** Establishing and implementing administrative procedures for initial authenticator distribution, for lost/compromised or damaged authenticators, and for revoking authenticators;\n* **IA-5e.** Changing default content of authenticators prior to information system installation;\n* **IA-5f.** Establishing minimum and maximum lifetime restrictions and reuse conditions for authenticators;\n* **IA-5g.** Changing/refreshing authenticators [Assignment: organization-defined time period by authenticator type];\n* **IA-5h.** Protecting authenticator content from unauthorized disclosure and modification;\n* **IA-5i.** Requiring individuals to take, and having devices implement, specific security safeguards to protect authenticators; and\n* **IA-5j.** Changing authenticators for group/role accounts when membership to those accounts changes.\n\nIndividual authenticators include, for example, passwords, tokens, biometrics, PKI certificates, and key cards. Initial authenticator content is the actual content (e.g., the initial password) as opposed to requirements about authenticator content (e.g., minimum password length). In many cases, developers ship information system components with factory default authentication credentials to allow for initial installation and configuration. Default authentication credentials are often well known, easily discoverable, and present a significant security risk. The requirement to protect individual authenticators may be implemented via control PL-4 or PS-6 for authenticators in the possession of individuals and by controls AC-3, AC-6, and SC-28 for authenticators stored within organizational information systems (e.g., passwords stored in hashed or encrypted formats, files containing encrypted or hashed passwords accessible with administrator privileges). Information systems support individual authenticator management by organization-defined settings and restrictions for various authenticator characteristics including, for example, minimum password length, password composition, validation time window for time synchronous one-time tokens, and number of allowed rejections during the verification stage of biometric authentication. Specific actions that can be taken to safeguard authenticators include, for example, maintaining possession of individual authenticators, not loaning or sharing individual authenticators with others, and reporting lost, stolen, or compromised authenticators immediately. Authenticator management includes issuing and revoking, when no longer needed, authenticators for temporary access such as that required for remote maintenance. Device authenticators include, for example, certificates and passwords.", "external_references": [ { @@ -6454,7 +6454,7 @@ } ], "id": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Authenticator Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6466,7 +6466,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The information system, for password-based authentication:\n\n* **IA-5 (1)(a)** Enforces minimum password complexity of [Assignment: organization-defined requirements for case sensitivity, number of characters, mix of upper-case letters, lower-case letters, numbers, and special characters, including minimum requirements for each type];\n* **IA-5 (1)(b)** Enforces at least the following number of changed characters when new passwords are created: [Assignment: organization-defined number];\n* **IA-5 (1)(c)** Stores and transmits only cryptographically-protected passwords;\n* **IA-5 (1)(d)** Enforces password minimum and maximum lifetime restrictions of [Assignment: organization-defined numbers for lifetime minimum, lifetime maximum];\n* **IA-5 (1)(e)** Prohibits password reuse for [Assignment: organization-defined number] generations; and\n* **IA-5 (1)(f)** Allows the use of a temporary password for system logons with an immediate change to a permanent password.\n\nThis control enhancement applies to single-factor authentication of individuals using passwords as individual or group authenticators, and in a similar manner, when passwords are part of multifactor authenticators. This control enhancement does not apply when passwords are used to unlock hardware authenticators (e.g., Personal Identity Verification cards). The implementation of such password mechanisms may not meet all of the requirements in the enhancement. Cryptographically-protected passwords include, for example, encrypted versions of passwords and one-way cryptographic hashes of passwords. The number of changed characters refers to the number of changes required with respect to the total number of positions in the current password. Password lifetime restrictions do not apply to temporary passwords. To mitigate certain brute force attacks against passwords, organizations may also consider salting passwords.", "external_references": [ { @@ -6475,7 +6475,7 @@ } ], "id": "course-of-action--f2c6f189-fa2c-4bea-ba8b-6b1e69689418", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Password-Based Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6487,7 +6487,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.798Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The information system, for PKI-based authentication:\n\n* **IA-5 (2)(a)** Validates certifications by constructing and verifying a certification path to an accepted trust anchor including checking certificate status information;\n* **IA-5 (2)(b)** Enforces authorized access to the corresponding private key;\n* **IA-5 (2)(c)** Maps the authenticated identity to the account of the individual or group; and\n* **IA-5 (2)(d)** Implements a local cache of revocation data to support path discovery and validation in case of inability to access revocation information via the network.\n\nStatus information for certification paths includes, for example, certificate revocation lists or certificate status protocol responses. For PIV cards, validation of certifications involves the construction and verification of a certification path to the Common Policy Root trust anchor including certificate policy processing.", "external_references": [ { @@ -6496,7 +6496,7 @@ } ], "id": "course-of-action--75974a66-296e-4a63-9e93-aef263c6c6f9", - "modified": "2021-01-06T18:28:39.798Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Pki-Based Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6507,7 +6507,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.798Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization requires that the registration process to receive [Assignment: organization-defined types of and/or specific authenticators] be conducted [Selection: in person; by a trusted third party] before [Assignment: organization-defined registration authority] with authorization by [Assignment: organization-defined personnel or roles].", "external_references": [ { @@ -6516,7 +6516,7 @@ } ], "id": "course-of-action--d0b9fc02-9a0c-4925-a985-a21c70c83e7b", - "modified": "2021-01-06T18:28:39.798Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "In-Person Or Trusted Third-Party Registration", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6527,7 +6527,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.798Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization employs automated tools to determine if password authenticators are sufficiently strong to satisfy [Assignment: organization-defined requirements].\nThis control enhancement focuses on the creation of strong passwords and the characteristics of such passwords (e.g., complexity) prior to use, the enforcement of which is carried out by organizational information systems in IA-5 (1).", "external_references": [ { @@ -6536,14 +6536,14 @@ } ], "id": "course-of-action--aacc7f93-0d48-4415-9d55-2da09c086989", - "modified": "2021-01-06T18:28:39.798Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "Automated Support For Password Strength Determination", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.798Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization requires developers/installers of information system components to provide unique authenticators or change default authenticators prior to delivery/installation.\nThis control enhancement extends the requirement for organizations to change default authenticators upon information system installation, by requiring developers and/or installers to provide unique authenticators or change default authenticators for system components prior to delivery and/or installation. However, it typically does not apply to the developers of commercial off-the-shelve information technology products. Requirements for unique authenticators can be included in acquisition documents prepared by organizations when procuring information systems or system components.", "external_references": [ { @@ -6552,14 +6552,14 @@ } ], "id": "course-of-action--e5fbf0fc-b9ac-48ba-ab35-a7a8a1d5daa0", - "modified": "2021-01-06T18:28:39.798Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "Change Authenticators Prior To Delivery", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.799Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization protects authenticators commensurate with the security category of the information to which use of the authenticator permits access.\nFor information systems containing multiple security categories of information without reliable physical or logical separation between categories, authenticators used to grant access to the systems are protected commensurate with the highest security category of information on the systems.", "external_references": [ { @@ -6568,14 +6568,14 @@ } ], "id": "course-of-action--bbee9781-683c-423a-aad9-8221272fbe44", - "modified": "2021-01-06T18:28:39.799Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "Protection Of Authenticators", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.799Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization ensures that unencrypted static authenticators are not embedded in applications or access scripts or stored on function keys.\nOrganizations exercise caution in determining whether embedded or stored authenticators are in encrypted or unencrypted form. If authenticators are used in the manner stored, then those representations are considered unencrypted authenticators. This is irrespective of whether that representation is perhaps an encrypted version of something else (e.g., a password).", "external_references": [ { @@ -6584,14 +6584,14 @@ } ], "id": "course-of-action--c05c7214-bac2-4b9e-aafd-342092801f22", - "modified": "2021-01-06T18:28:39.799Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "No Embedded Unencrypted Static Authenticators", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.799Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization implements [Assignment: organization-defined security safeguards] to manage the risk of compromise due to individuals having accounts on multiple information systems.\nWhen individuals have accounts on multiple information systems, there is the risk that the compromise of one account may lead to the compromise of other accounts if individuals use the same authenticators. Possible alternatives include, for example: (i) having different authenticators on all systems; (ii) employing some form of single sign-on mechanism; or (iii) including some form of one-time passwords on all systems.", "external_references": [ { @@ -6600,14 +6600,14 @@ } ], "id": "course-of-action--a9dafc97-eed3-451e-8ba9-71569367bad3", - "modified": "2021-01-06T18:28:39.799Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "Multiple Information System Accounts", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.800Z", + "created": "2021-01-13T01:50:48.930Z", "description": "The organization coordinates with [Assignment: organization-defined external organizations] for cross-organization management of credentials.\nCross-organization management of credentials provides the capability for organizations to appropriately authenticate individuals, groups, roles, or devices when conducting cross-organization activities involving the processing, storage, or transmission of information.", "external_references": [ { @@ -6616,14 +6616,14 @@ } ], "id": "course-of-action--24d5a37f-82e5-4d03-bc19-a550ac6d0e86", - "modified": "2021-01-06T18:28:39.800Z", + "modified": "2021-01-13T01:50:48.930Z", "name": "Cross-Organization Credential Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.800Z", + "created": "2021-01-13T01:50:48.931Z", "description": "The information system dynamically provisions identities.\nAuthentication requires some form of binding between an identity and the authenticator used to confirm the identity. In conventional approaches, this binding is established by pre-provisioning both the identity and the authenticator to the information system. For example, the binding between a username (i.e., identity) and a password (i.e., authenticator) is accomplished by provisioning the identity and authenticator as a pair in the information system. New authentication techniques allow the binding between the identity and the authenticator to be implemented outside an information system. For example, with smartcard credentials, the identity and the authenticator are bound together on the card. Using these credentials, information systems can authenticate identities that have not been pre-provisioned, dynamically provisioning the identity after authentication. In these situations, organizations can anticipate the dynamic provisioning of identities. Preestablished trust relationships and mechanisms with appropriate authorities to validate identities and related credentials are essential.", "external_references": [ { @@ -6632,14 +6632,14 @@ } ], "id": "course-of-action--fbf4c403-e9b2-47f3-8f6f-90b2685aecc8", - "modified": "2021-01-06T18:28:39.800Z", + "modified": "2021-01-13T01:50:48.931Z", "name": "Dynamic Credential Association", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.800Z", + "created": "2021-01-13T01:50:48.931Z", "description": "The information system, for hardware token-based authentication, employs mechanisms that satisfy [Assignment: organization-defined token quality requirements].\nHardware token-based authentication typically refers to the use of PKI-based tokens, such as the U.S. Government Personal Identity Verification (PIV) card. Organizations define specific requirements for tokens, such as working with a particular PKI.", "external_references": [ { @@ -6648,7 +6648,7 @@ } ], "id": "course-of-action--edb7b01b-dff2-4d90-8f3c-cf5a8aace688", - "modified": "2021-01-06T18:28:39.800Z", + "modified": "2021-01-13T01:50:48.931Z", "name": "Hardware Token-Based Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6660,7 +6660,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.800Z", + "created": "2021-01-13T01:50:48.931Z", "description": "The information system, for biometric-based authentication, employs mechanisms that satisfy [Assignment: organization-defined biometric quality requirements].\nUnlike password-based authentication which provides exact matches of user-input passwords to stored passwords, biometric authentication does not provide such exact matches. Depending upon the type of biometric and the type of collection mechanism, there is likely to be some divergence from the presented biometric and stored biometric which serves as the basis of comparison. There will likely be both false positives and false negatives when making such comparisons. The rate at which the false accept and false reject rates are equal is known as the crossover rate. Biometric quality requirements include, for example, acceptable crossover rates, as that essentially reflects the accuracy of the biometric.", "external_references": [ { @@ -6669,14 +6669,14 @@ } ], "id": "course-of-action--0cd038d4-1b68-41aa-84cd-51877f557fd1", - "modified": "2021-01-06T18:28:39.800Z", + "modified": "2021-01-13T01:50:48.931Z", "name": "Biometric-Based Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.931Z", "description": "The information system prohibits the use of cached authenticators after [Assignment: organization-defined time period].", "external_references": [ { @@ -6685,14 +6685,14 @@ } ], "id": "course-of-action--233a6506-bd30-4b9d-9cbc-93b74771736c", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.931Z", "name": "Expiration Of Cached Authenticators", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.931Z", "description": "The organization, for PKI-based authentication, employs a deliberate organization-wide methodology for managing the content of PKI trust stores installed across all platforms including networks, operating systems, browsers, and applications.", "external_references": [ { @@ -6701,14 +6701,14 @@ } ], "id": "course-of-action--5099f587-6f6d-45ad-8c4d-762c22831a3b", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.931Z", "name": "Managing Content Of Pki Trust Stores", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The organization uses only FICAM-approved path discovery and validation products and services.\nFederal Identity, Credential, and Access Management (FICAM)-approved path discovery and validation products and services are those products and services that have been approved through the FICAM conformance program, where applicable.", "external_references": [ { @@ -6717,14 +6717,14 @@ } ], "id": "course-of-action--f91554b0-7851-4aee-9944-3c73f7d3edc0", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Ficam-Approved Products And Services", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system obscures feedback of authentication information during the authentication process to protect the information from possible exploitation/use by unauthorized individuals.\nThe feedback from information systems does not provide information that would allow unauthorized individuals to compromise authentication mechanisms. For some types of information systems or system components, for example, desktops/notebooks with relatively large monitors, the threat (often referred to as shoulder surfing) may be significant. For other types of systems or components, for example, mobile devices with 2-4 inch screens, this threat may be less significant, and may need to be balanced against the increased likelihood of typographic input errors due to the small keyboards. Therefore, the means for obscuring the authenticator feedback is selected accordingly. Obscuring the feedback of authentication information includes, for example, displaying asterisks when users type passwords into input devices, or displaying feedback for a very limited time before fully obscuring it.", "external_references": [ { @@ -6733,7 +6733,7 @@ } ], "id": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Authenticator Feedback", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6745,7 +6745,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system implements mechanisms for authentication to a cryptographic module that meet the requirements of applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance for such authentication.\nAuthentication mechanisms may be required within a cryptographic module to authenticate an operator accessing the module and to verify that the operator is authorized to assume the requested role and perform services within that role.", "external_references": [ { @@ -6754,7 +6754,7 @@ } ], "id": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Cryptographic Module Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6766,7 +6766,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system uniquely identifies and authenticates non-organizational users (or processes acting on behalf of non-organizational users).\nNon-organizational users include information system users other than organizational users explicitly covered by IA-2. These individuals are uniquely identified and authenticated for accesses other than those accesses explicitly identified and documented in AC-14. In accordance with the E-Authentication E-Government initiative, authentication of non-organizational users accessing federal information systems may be required to protect federal, proprietary, or privacy-related information (with exceptions noted for national security systems). Organizations use risk assessments to determine authentication needs and consider scalability, practicality, and security in balancing the need to ensure ease of use for access to federal information and information systems with the need to protect and adequately mitigate risk. IA-2 addresses identification and authentication requirements for access to information systems by organizational users.", "external_references": [ { @@ -6775,7 +6775,7 @@ } ], "id": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Identification And Authentication (Non-Organizational Users)", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6787,7 +6787,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system accepts and electronically verifies Personal Identity Verification (PIV) credentials from other federal agencies.\nThis control enhancement applies to logical access control systems (LACS) and physical access control systems (PACS). Personal Identity Verification (PIV) credentials are those credentials issued by federal agencies that conform to FIPS Publication 201 and supporting guidance documents. OMB Memorandum 11-11 requires federal agencies to continue implementing the requirements specified in HSPD-12 to enable agency-wide use of PIV credentials.", "external_references": [ { @@ -6796,7 +6796,7 @@ } ], "id": "course-of-action--5e9977d6-53ac-439f-a21c-76a00d712c15", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Acceptance Of Piv Credentials From Other Agencies", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6808,7 +6808,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system accepts only FICAM-approved third-party credentials.\nThis control enhancement typically applies to organizational information systems that are accessible to the general public, for example, public-facing websites. Third-party credentials are those credentials issued by nonfederal government entities approved by the Federal Identity, Credential, and Access Management (FICAM) Trust Framework Solutions initiative. Approved third-party credentials meet or exceed the set of minimum federal government-wide technical, security, privacy, and organizational maturity requirements. This allows federal government relying parties to trust such credentials at their approved assurance levels.", "external_references": [ { @@ -6817,7 +6817,7 @@ } ], "id": "course-of-action--c349f360-db32-4db6-b77a-0ebad1906607", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Acceptance Of Third-Party Credentials", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6829,7 +6829,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The organization employs only FICAM-approved information system components in [Assignment: organization-defined information systems] to accept third-party credentials.\nThis control enhancement typically applies to information systems that are accessible to the general public, for example, public-facing websites. FICAM-approved information system components include, for example, information technology products and software libraries that have been approved by the Federal Identity, Credential, and Access Management conformance program.", "external_references": [ { @@ -6838,7 +6838,7 @@ } ], "id": "course-of-action--cc3c98fd-8558-4eb7-861e-dc7fafb39b77", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Use Of Ficam-Approved Products", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6850,7 +6850,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The information system conforms to FICAM-issued profiles.\nThis control enhancement addresses open identity management standards. To ensure that these standards are viable, robust, reliable, sustainable (e.g., available in commercial information technology products), and interoperable as documented, the United States Government assesses and scopes identity management standards and technology implementations against applicable federal legislation, directives, policies, and requirements. The result is FICAM-issued implementation profiles of approved protocols (e.g., FICAM authentication protocols such as SAML 2.0 and OpenID 2.0, as well as other protocols such as the FICAM Backend Attribute Exchange).", "external_references": [ { @@ -6859,7 +6859,7 @@ } ], "id": "course-of-action--1d038194-a829-47b7-842c-3590e3f0f4a0", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Use Of Ficam-Issued Profiles", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -6871,7 +6871,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The information system accepts and electronically verifies Personal Identity Verification-I (PIV-I) credentials.\nThis control enhancement: (i) applies to logical and physical access control systems; and (ii) addresses Non-Federal Issuers (NFIs) of identity cards that desire to interoperate with United States Government Personal Identity Verification (PIV) information systems and that can be trusted by federal government-relying parties. The X.509 certificate policy for the Federal Bridge Certification Authority (FBCA) addresses PIV-I requirements. The PIV-I card is suitable for Assurance Level 4 as defined in OMB Memorandum 04-04 and NIST Special Publication 800-63, and multifactor authentication as defined in NIST Special Publication 800-116. PIV-I credentials are those credentials issued by a PIV-I provider whose PIV-I certificate policy maps to the Federal Bridge PIV-I Certificate Policy. A PIV-I provider is cross-certified (directly or through another PKI bridge) with the FBCA with policies that have been mapped and approved as meeting the requirements of the PIV-I policies defined in the FBCA certificate policy.", "external_references": [ { @@ -6880,14 +6880,14 @@ } ], "id": "course-of-action--c09c3db4-d872-4561-89ad-f1c32a739539", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Acceptance Of Piv-I Credentials", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization identifies and authenticates [Assignment: organization-defined information system services] using [Assignment: organization-defined security safeguards].\nThis control supports service-oriented architectures and other distributed architectural approaches requiring the identification and authentication of information system services. In such architectures, external services often appear dynamically. Therefore, information systems should be able to determine in a dynamic manner, if external providers and associated services are authentic. Safeguards implemented by organizational information systems to validate provider and service authenticity include, for example, information or code signing, provenance graphs, and/or electronic signatures indicating or including the sources of services.", "external_references": [ { @@ -6896,14 +6896,14 @@ } ], "id": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Service Identification And Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization ensures that service providers receive, validate, and transmit identification and authentication information.", "external_references": [ { @@ -6912,14 +6912,14 @@ } ], "id": "course-of-action--f0b678c3-9bdc-4730-bedd-cedc89d2f50e", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Information Exchange", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization ensures that identification and authentication decisions are transmitted between [Assignment: organization-defined services] consistent with organizational policies.\nFor distributed architectures (e.g., service-oriented architectures), the decisions regarding the validation of identification and authentication claims may be made by services separate from the services acting on those decisions. In such situations, it is necessary to provide the identification and authentication decisions (as opposed to the actual identifiers and authenticators) to the services that need to act on those decisions.", "external_references": [ { @@ -6928,14 +6928,14 @@ } ], "id": "course-of-action--a21fda68-3c14-4884-bc94-46e31063b564", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Transmission Of Decisions", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization requires that individuals accessing the information system employ [Assignment: organization-defined supplemental authentication techniques or mechanisms] under specific [Assignment: organization-defined circumstances or situations].\nAdversaries may compromise individual authentication mechanisms and subsequently attempt to impersonate legitimate users. This situation can potentially occur with any authentication mechanisms employed by organizations. To address this threat, organizations may employ specific techniques/mechanisms and establish protocols to assess suspicious behavior (e.g., individuals accessing information that they do not typically access as part of their normal duties, roles, or responsibilities, accessing greater quantities of information than the individuals would routinely access, or attempting to access information from suspicious network addresses). In these situations when certain preestablished conditions or triggers occur, organizations can require selected individuals to provide additional authentication information. Another potential use for adaptive identification and authentication is to increase the strength of mechanism based on the number and/or types of records being accessed.", "external_references": [ { @@ -6944,14 +6944,14 @@ } ], "id": "course-of-action--b462cc38-be11-42c8-b1e5-ce79337fa7e0", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Adaptive Identification And Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization requires users and devices to re-authenticate when [Assignment: organization-defined circumstances or situations requiring re-authentication].\nIn addition to the re-authentication requirements associated with session locks, organizations may require re-authentication of individuals and/or devices in other situations including, for example: (i) when authenticators change; (ii), when roles change; (iii) when security categories of information systems change; (iv), when the execution of privileged functions occurs; (v) after a fixed period of time; or (vi) periodically.", "external_references": [ { @@ -6960,14 +6960,14 @@ } ], "id": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Re-Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization:\n\n* **IR-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **IR-1a.1.** An incident response policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **IR-1a.2.** Procedures to facilitate the implementation of the incident response policy and associated incident response controls; and\n* **IR-1b.** Reviews and updates the current:\n * **IR-1b.1.** Incident response policy [Assignment: organization-defined frequency]; and\n * **IR-1b.2.** Incident response procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the IR family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -6976,7 +6976,7 @@ } ], "id": "course-of-action--67b8f6da-bb18-49cc-88c5-7419537026ab", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Incident Response Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -6988,7 +6988,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization provides incident response training to information system users consistent with assigned roles and responsibilities:\n\n* **IR-2a.** Within [Assignment: organization-defined time period] of assuming an incident response role or responsibility;\n* **IR-2b.** When required by information system changes; and\n* **IR-2c.** [Assignment: organization-defined frequency] thereafter.\n\nIncident response training provided by organizations is linked to the assigned roles and responsibilities of organizational personnel to ensure the appropriate content and level of detail is included in such training. For example, regular users may only need to know who to call or how to recognize an incident on the information system; system administrators may require additional training on how to handle/remediate incidents; and incident responders may receive more specific training on forensics, reporting, system recovery, and restoration. Incident response training includes user training in the identification and reporting of suspicious activities, both from external and internal sources.", "external_references": [ { @@ -6997,7 +6997,7 @@ } ], "id": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Incident Response Training", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7009,7 +7009,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization incorporates simulated events into incident response training to facilitate effective response by personnel in crisis situations.", "external_references": [ { @@ -7018,7 +7018,7 @@ } ], "id": "course-of-action--06f53149-4e00-4202-8451-df49045320c3", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Simulated Events", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7028,7 +7028,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization employs automated mechanisms to provide a more thorough and realistic incident response training environment.", "external_references": [ { @@ -7037,7 +7037,7 @@ } ], "id": "course-of-action--8e4d4b79-9b5a-45cc-bfe0-1c876335748e", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Automated Training Environments", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7047,7 +7047,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization tests the incident response capability for the information system [Assignment: organization-defined frequency] using [Assignment: organization-defined tests] to determine the incident response effectiveness and documents the results.\nOrganizations test incident response capabilities to determine the overall effectiveness of the capabilities and to identify potential weaknesses or deficiencies. Incident response testing includes, for example, the use of checklists, walk-through or tabletop exercises, simulations (parallel/full interrupt), and comprehensive exercises. Incident response testing can also include a determination of the effects on organizational operations (e.g., reduction in mission capabilities), organizational assets, and individuals due to incident response.", "external_references": [ { @@ -7056,7 +7056,7 @@ } ], "id": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Incident Response Testing", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7067,7 +7067,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization employs automated mechanisms to more thoroughly and effectively test the incident response capability.\nOrganizations use automated mechanisms to more thoroughly and effectively test incident response capabilities, for example: (i) by providing more complete coverage of incident response issues; (ii) by selecting more realistic test scenarios and test environments; and (iii) by stressing the response capability.", "external_references": [ { @@ -7076,14 +7076,14 @@ } ], "id": "course-of-action--82caafdd-c7d4-4060-a14d-8d3ad5bad568", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Automated Testing", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization coordinates incident response testing with organizational elements responsible for related plans.\nOrganizational plans related to incident response testing include, for example, Business Continuity Plans, Contingency Plans, Disaster Recovery Plans, Continuity of Operations Plans, Crisis Communications Plans, Critical Infrastructure Plans, and Occupant Emergency Plans.", "external_references": [ { @@ -7092,7 +7092,7 @@ } ], "id": "course-of-action--e48a587f-f370-4c3d-960b-2d6a964e3f1a", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Coordination With Related Plans", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7103,7 +7103,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.934Z", "description": "The organization:\n\n* **IR-4a.** Implements an incident handling capability for security incidents that includes preparation, detection and analysis, containment, eradication, and recovery;\n* **IR-4b.** Coordinates incident handling activities with contingency planning activities; and\n* **IR-4c.** Incorporates lessons learned from ongoing incident handling activities into incident response procedures, training, and testing, and implements the resulting changes accordingly.\n\nOrganizations recognize that incident response capability is dependent on the capabilities of organizational information systems and the mission/business processes being supported by those systems. Therefore, organizations consider incident response as part of the definition, design, and development of mission/business processes and information systems. Incident-related information can be obtained from a variety of sources including, for example, audit monitoring, network monitoring, physical access monitoring, user/administrator reports, and reported supply chain events. Effective incident handling capability includes coordination among many organizational entities including, for example, mission/business owners, information system owners, authorizing officials, human resources offices, physical and personnel security offices, legal departments, operations personnel, procurement offices, and the risk executive (function).", "external_references": [ { @@ -7112,7 +7112,7 @@ } ], "id": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.934Z", "name": "Incident Handling", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7124,7 +7124,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization employs automated mechanisms to support the incident handling process.\nAutomated mechanisms supporting incident handling processes include, for example, online incident management systems.", "external_references": [ { @@ -7133,7 +7133,7 @@ } ], "id": "course-of-action--877b1314-35f6-4725-993b-0c3315527cd4", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Automated Incident Handling Processes", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7144,7 +7144,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.804Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization includes dynamic reconfiguration of [Assignment: organization-defined information system components] as part of the incident response capability.\nDynamic reconfiguration includes, for example, changes to router rules, access control lists, intrusion detection/prevention system parameters, and filter rules for firewalls and gateways. Organizations perform dynamic reconfiguration of information systems, for example, to stop attacks, to misdirect attackers, and to isolate components of systems, thus limiting the extent of the damage from breaches or compromises. Organizations include time frames for achieving the reconfiguration of information systems in the definition of the reconfiguration capability, considering the potential need for rapid response in order to effectively address sophisticated cyber threats.", "external_references": [ { @@ -7153,14 +7153,14 @@ } ], "id": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", - "modified": "2021-01-06T18:28:39.804Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Dynamic Reconfiguration", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization identifies [Assignment: organization-defined classes of incidents] and [Assignment: organization-defined actions to take in response to classes of incidents] to ensure continuation of organizational missions and business functions.\nClasses of incidents include, for example, malfunctions due to design/implementation errors and omissions, targeted malicious attacks, and untargeted malicious attacks. Appropriate incident response actions include, for example, graceful degradation, information system shutdown, fall back to manual mode/alternative technology whereby the system operates differently, employing deceptive measures, alternate information flows, or operating in a mode that is reserved solely for when systems are under attack.", "external_references": [ { @@ -7169,14 +7169,14 @@ } ], "id": "course-of-action--4dedcd21-7ec3-4fbb-b434-44a73f44af13", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Continuity Of Operations", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization correlates incident information and individual incident responses to achieve an organization-wide perspective on incident awareness and response.\nSometimes the nature of a threat event, for example, a hostile cyber attack, is such that it can only be observed by bringing together information from different sources including various reports and reporting procedures established by organizations.", "external_references": [ { @@ -7185,7 +7185,7 @@ } ], "id": "course-of-action--a6185d8b-9284-4655-8f8e-26045d6651d4", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Information Correlation", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7195,7 +7195,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization implements a configurable capability to automatically disable the information system if [Assignment: organization-defined security violations] are detected.", "external_references": [ { @@ -7204,14 +7204,14 @@ } ], "id": "course-of-action--3b3bb4b8-e5fc-475a-8ccd-c9b761402a8b", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Automatic Disabling Of Information System", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization implements incident handling capability for insider threats.\nWhile many organizations address insider threat incidents as an inherent part of their organizational incident response capability, this control enhancement provides additional emphasis on this type of threat and the need for specific incident handling capabilities (as defined within organizations) to provide appropriate and timely responses.", "external_references": [ { @@ -7220,14 +7220,14 @@ } ], "id": "course-of-action--f8a44270-1a3e-4fe6-97db-a89fa46fb828", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Insider Threats - Specific Capabilities", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization coordinates incident handling capability for insider threats across [Assignment: organization-defined components or elements of the organization].\nIncident handling for insider threat incidents (including preparation, detection and analysis, containment, eradication, and recovery) requires close coordination among a variety of organizational components or elements to be effective. These components or elements include, for example, mission/business owners, information system owners, human resources offices, procurement offices, personnel/physical security offices, operations personnel, and risk executive (function). In addition, organizations may require external support from federal, state, and local law enforcement agencies.", "external_references": [ { @@ -7236,14 +7236,14 @@ } ], "id": "course-of-action--0e0fa2f6-ec1a-4acb-b5cd-13c86463046e", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Insider Threats - Intra-Organization Coordination", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization coordinates with [Assignment: organization-defined external organizations] to correlate and share [Assignment: organization-defined incident information] to achieve a cross-organization perspective on incident awareness and more effective incident responses.\nThe coordination of incident information with external organizations including, for example, mission/business partners, military/coalition partners, customers, and multitiered developers, can provide significant benefits. Cross-organizational coordination with respect to incident handling can serve as an important risk management capability. This capability allows organizations to leverage critical information from a variety of sources to effectively respond to information security-related incidents potentially affecting the organization\u00ef\u00bf\u00bds operations, assets, and individuals.", "external_references": [ { @@ -7252,14 +7252,14 @@ } ], "id": "course-of-action--df4f207c-cde3-4ac9-84f8-73a77980afc3", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Correlation With External Organizations", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.805Z", + "created": "2021-01-13T01:50:48.935Z", "description": "The organization employs [Assignment: organization-defined dynamic response capabilities] to effectively respond to security incidents.\nThis control enhancement addresses the deployment of replacement or new capabilities in a timely manner in response to security incidents (e.g., adversary actions during hostile cyber attacks). This includes capabilities implemented at the mission/business process level (e.g., activating alternative mission/business processes) and at the information system level.", "external_references": [ { @@ -7268,14 +7268,14 @@ } ], "id": "course-of-action--06a2c737-cf3e-4443-a20d-afc11b506413", - "modified": "2021-01-06T18:28:39.805Z", + "modified": "2021-01-13T01:50:48.935Z", "name": "Dynamic Response Capability", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization coordinates incident handling activities involving supply chain events with other organizations involved in the supply chain.\nOrganizations involved in supply chain activities include, for example, system/product developers, integrators, manufacturers, packagers, assemblers, distributors, vendors, and resellers. Supply chain incidents include, for example, compromises/breaches involving information system components, information technology products, development processes or personnel, and distribution processes or warehousing facilities.", "external_references": [ { @@ -7284,14 +7284,14 @@ } ], "id": "course-of-action--ec762dc1-d5dd-4268-a91d-2e6804768749", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Supply Chain Coordination", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization tracks and documents information system security incidents.\nDocumenting information system security incidents includes, for example, maintaining records about each incident, the status of the incident, and other pertinent information necessary for forensics, evaluating incident details, trends, and handling. Incident information can be obtained from a variety of sources including, for example, incident reports, incident response teams, audit monitoring, network monitoring, physical access monitoring, and user/administrator reports.", "external_references": [ { @@ -7300,7 +7300,7 @@ } ], "id": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Incident Monitoring", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7312,7 +7312,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization employs automated mechanisms to assist in the tracking of security incidents and in the collection and analysis of incident information.\nAutomated mechanisms for tracking security incidents and collecting/analyzing incident information include, for example, the Einstein network monitoring device and monitoring online Computer Incident Response Centers (CIRCs) or other electronic databases of incidents.", "external_references": [ { @@ -7321,7 +7321,7 @@ } ], "id": "course-of-action--94249e66-a9c3-4609-99c8-079bf2e256c0", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Automated Tracking / Data Collection / Analysis", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7331,7 +7331,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization:\n\n* **IR-6a.** Requires personnel to report suspected security incidents to the organizational incident response capability within [Assignment: organization-defined time period]; and\n* **IR-6b.** Reports security incident information to [Assignment: organization-defined authorities].\n\nThe intent of this control is to address both specific incident reporting requirements within an organization and the formal incident reporting requirements for federal agencies and their subordinate organizations. Suspected security incidents include, for example, the receipt of suspicious email communications that can potentially contain malicious code. The types of security incidents reported, the content and timeliness of the reports, and the designated reporting authorities reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Current federal policy requires that all federal agencies (unless specifically exempted from such requirements) report security incidents to the United States Computer Emergency Readiness Team (US-CERT) within specified time frames designated in the US-CERT Concept of Operations for Federal Cyber Security Incident Handling.", "external_references": [ { @@ -7340,7 +7340,7 @@ } ], "id": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Incident Reporting", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7352,7 +7352,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization employs automated mechanisms to assist in the reporting of security incidents.", "external_references": [ { @@ -7361,7 +7361,7 @@ } ], "id": "course-of-action--5ee5ad18-3512-4d8d-a51b-f4a920826109", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Automated Reporting", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7372,7 +7372,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.806Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization reports information system vulnerabilities associated with reported security incidents to [Assignment: organization-defined personnel or roles].", "external_references": [ { @@ -7381,14 +7381,14 @@ } ], "id": "course-of-action--6b8d1934-5856-48cc-8067-5b3b0415cf1b", - "modified": "2021-01-06T18:28:39.806Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Vulnerabilities Related To Incidents", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.807Z", + "created": "2021-01-13T01:50:48.936Z", "description": "The organization provides security incident information to other organizations involved in the supply chain for information systems or information system components related to the incident.\nOrganizations involved in supply chain activities include, for example, system/product developers, integrators, manufacturers, packagers, assemblers, distributors, vendors, and resellers. Supply chain incidents include, for example, compromises/breaches involving information system components, information technology products, development processes or personnel, and distribution processes or warehousing facilities. Organizations determine the appropriate information to share considering the value gained from support by external organizations with the potential for harm due to sensitive information being released to outside organizations of perhaps questionable trustworthiness.", "external_references": [ { @@ -7397,14 +7397,14 @@ } ], "id": "course-of-action--2a50974a-4d42-43eb-9e05-6972b045ba2e", - "modified": "2021-01-06T18:28:39.807Z", + "modified": "2021-01-13T01:50:48.936Z", "name": "Coordination With Supply Chain", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.807Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization provides an incident response support resource, integral to the organizational incident response capability that offers advice and assistance to users of the information system for the handling and reporting of security incidents.\nIncident response support resources provided by organizations include, for example, help desks, assistance groups, and access to forensics services, when required.", "external_references": [ { @@ -7413,7 +7413,7 @@ } ], "id": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", - "modified": "2021-01-06T18:28:39.807Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Incident Response Assistance", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7425,7 +7425,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.807Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization employs automated mechanisms to increase the availability of incident response-related information and support.\nAutomated mechanisms can provide a push and/or pull capability for users to obtain incident response assistance. For example, individuals might have access to a website to query the assistance capability, or conversely, the assistance capability may have the ability to proactively send information to users (general distribution or targeted) as part of increasing understanding of current response capabilities and support.", "external_references": [ { @@ -7434,7 +7434,7 @@ } ], "id": "course-of-action--ecd80dd4-5245-4684-9018-6460a8a93cea", - "modified": "2021-01-06T18:28:39.807Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Automation Support For Availability Of Information / Support", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7445,7 +7445,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.807Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization:\n\n* **IR-7 (2)(a)** Establishes a direct, cooperative relationship between its incident response capability and external providers of information system protection capability; and\n* **IR-7 (2)(b)** Identifies organizational incident response team members to the external providers.\n\nExternal providers of information system protection capability include, for example, the Computer Network Defense program within the U.S. Department of Defense. External providers help to protect, monitor, analyze, detect, and respond to unauthorized activity within organizational information systems and networks.", "external_references": [ { @@ -7454,14 +7454,14 @@ } ], "id": "course-of-action--663fc3c4-f3a3-4d1c-9c3b-3aa2c1d6e1c9", - "modified": "2021-01-06T18:28:39.807Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Coordination With External Providers", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.807Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization:\n\n* **IR-8a.** Develops an incident response plan that:\n * **IR-8a.1.** Provides the organization with a roadmap for implementing its incident response capability;\n * **IR-8a.2.** Describes the structure and organization of the incident response capability;\n * **IR-8a.3.** Provides a high-level approach for how the incident response capability fits into the overall organization;\n * **IR-8a.4.** Meets the unique requirements of the organization, which relate to mission, size, structure, and functions;\n * **IR-8a.5.** Defines reportable incidents;\n * **IR-8a.6.** Provides metrics for measuring the incident response capability within the organization;\n * **IR-8a.7.** Defines the resources and management support needed to effectively maintain and mature an incident response capability; and\n * **IR-8a.8.** Is reviewed and approved by [Assignment: organization-defined personnel or roles];\n* **IR-8b.** Distributes copies of the incident response plan to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements];\n* **IR-8c.** Reviews the incident response plan [Assignment: organization-defined frequency];\n* **IR-8d.** Updates the incident response plan to address system/organizational changes or problems encountered during plan implementation, execution, or testing;\n* **IR-8e.** Communicates incident response plan changes to [Assignment: organization-defined incident response personnel (identified by name and/or by role) and organizational elements]; and\n* **IR-8f.** Protects the incident response plan from unauthorized disclosure and modification.\n\nIt is important that organizations develop and implement a coordinated approach to incident response. Organizational missions, business functions, strategies, goals, and objectives for incident response help to determine the structure of incident response capabilities. As part of a comprehensive incident response capability, organizations consider the coordination and sharing of information with external organizations, including, for example, external service providers and organizations involved in the supply chain for organizational information systems.", "external_references": [ { @@ -7470,7 +7470,7 @@ } ], "id": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", - "modified": "2021-01-06T18:28:39.807Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Incident Response Plan", "type": "course-of-action", "x_mitre_family": "Incident Response", @@ -7482,7 +7482,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization responds to information spills by:\n\n* **IR-9a.** Identifying the specific information involved in the information system contamination;\n* **IR-9b.** Alerting [Assignment: organization-defined personnel or roles] of the information spill using a method of communication not associated with the spill;\n* **IR-9c.** Isolating the contaminated information system or system component;\n* **IR-9d.** Eradicating the information from the contaminated information system or component;\n* **IR-9e.** Identifying other information systems or system components that may have been subsequently contaminated; and\n* **IR-9f.** Performing other [Assignment: organization-defined actions].\n\nInformation spillage refers to instances where either classified or sensitive information is inadvertently placed on information systems that are not authorized to process such information. Such information spills often occur when information that is initially thought to be of lower sensitivity is transmitted to an information system and then is subsequently determined to be of higher sensitivity. At that point, corrective action is required. The nature of the organizational response is generally based upon the degree of sensitivity of the spilled information (e.g., security category or classification level), the security capabilities of the information system, the specific nature of contaminated storage media, and the access authorizations (e.g., security clearances) of individuals with authorized access to the contaminated system. The methods used to communicate information about the spill after the fact do not involve methods directly associated with the actual spill to minimize the risk of further spreading the contamination before such contamination is isolated and eradicated.", "external_references": [ { @@ -7491,14 +7491,14 @@ } ], "id": "course-of-action--6783cfe1-031d-476c-995f-5226e640c493", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Information Spillage Response", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization assigns [Assignment: organization-defined personnel or roles] with responsibility for responding to information spills.", "external_references": [ { @@ -7507,14 +7507,14 @@ } ], "id": "course-of-action--f71571ba-cd1b-4d35-9d80-9e969f316594", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Responsible Personnel", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization provides information spillage response training [Assignment: organization-defined frequency].", "external_references": [ { @@ -7523,14 +7523,14 @@ } ], "id": "course-of-action--cbc41548-511b-469b-8d54-43246f482fdd", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Training", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.937Z", "description": "The organization implements [Assignment: organization-defined procedures] to ensure that organizational personnel impacted by information spills can continue to carry out assigned tasks while contaminated systems are undergoing corrective actions.\nCorrection actions for information systems contaminated due to information spillages may be very time-consuming. During those periods, personnel may not have access to the contaminated systems, which may potentially affect their ability to conduct organizational business.", "external_references": [ { @@ -7539,14 +7539,14 @@ } ], "id": "course-of-action--d32bd484-744b-4355-a232-d13f854e2af9", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.937Z", "name": "Post-Spill Operations", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization employs [Assignment: organization-defined security safeguards] for personnel exposed to information not within assigned access authorizations.\nSecurity safeguards include, for example, making personnel exposed to spilled information aware of the federal laws, directives, policies, and/or regulations regarding the information and the restrictions imposed based on exposure to such information.", "external_references": [ { @@ -7555,14 +7555,14 @@ } ], "id": "course-of-action--0f4b0846-4682-4f05-8857-00cd29ef7320", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Exposure To Unauthorized Personnel", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization establishes an integrated team of forensic/malicious code analysts, tool developers, and real-time operations personnel.\nHaving an integrated team for incident response facilitates information sharing. Such capability allows organizational personnel, including developers, implementers, and operators, to leverage the team knowledge of the threat in order to implement defensive measures that will enable organizations to deter intrusions more effectively. Moreover, it promotes the rapid detection of intrusions, development of appropriate mitigations, and the deployment of effective defensive measures. For example, when an intrusion is detected, the integrated security analysis team can rapidly develop an appropriate response for operators to implement, correlate the new incident with information on past intrusions, and augment ongoing intelligence development. This enables the team to identify adversary TTPs that are linked to the operations tempo or to specific missions/business functions, and to define responsive actions in a way that does not disrupt the mission/business operations. Ideally, information security analysis teams are distributed within organizations to make the capability more resilient.", "external_references": [ { @@ -7571,14 +7571,14 @@ } ], "id": "course-of-action--a475e150-958c-4d35-b7dc-673663e48d39", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Integrated Information Security Analysis Team", "type": "course-of-action", "x_mitre_family": "Incident Response", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.808Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization:\n\n* **MA-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **MA-1a.1.** A system maintenance policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **MA-1a.2.** Procedures to facilitate the implementation of the system maintenance policy and associated system maintenance controls; and\n* **MA-1b.** Reviews and updates the current:\n * **MA-1b.1.** System maintenance policy [Assignment: organization-defined frequency]; and\n * **MA-1b.2.** System maintenance procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the MA family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -7587,7 +7587,7 @@ } ], "id": "course-of-action--c95fdab5-2a28-4656-96c3-a7e015142ce7", - "modified": "2021-01-06T18:28:39.808Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "System Maintenance Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7599,7 +7599,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization:\n\n* **MA-2a.** Schedules, performs, documents, and reviews records of maintenance and repairs on information system components in accordance with manufacturer or vendor specifications and/or organizational requirements;\n* **MA-2b.** Approves and monitors all maintenance activities, whether performed on site or remotely and whether the equipment is serviced on site or removed to another location;\n* **MA-2c.** Requires that [Assignment: organization-defined personnel or roles] explicitly approve the removal of the information system or system components from organizational facilities for off-site maintenance or repairs;\n* **MA-2d.** Sanitizes equipment to remove all information from associated media prior to removal from organizational facilities for off-site maintenance or repairs;\n* **MA-2e.** Checks all potentially impacted security controls to verify that the controls are still functioning properly following maintenance or repair actions; and\n* **MA-2f.** Includes [Assignment: organization-defined maintenance-related information] in organizational maintenance records.\n\nThis control addresses the information security aspects of the information system maintenance program and applies to all types of maintenance to any system component (including applications) conducted by any local or nonlocal entity (e.g., in-contract, warranty, in-house, software maintenance agreement). System maintenance also includes those components not directly associated with information processing and/or data/information retention such as scanners, copiers, and printers. Information necessary for creating effective maintenance records includes, for example: (i) date and time of maintenance; (ii) name of individuals or group performing the maintenance; (iii) name of escort, if necessary; (iv) a description of the maintenance performed; and (v) information system components/equipment removed or replaced (including identification numbers, if applicable). The level of detail included in maintenance records can be informed by the security categories of organizational information systems. Organizations consider supply chain issues associated with replacement components for information systems.", "external_references": [ { @@ -7608,7 +7608,7 @@ } ], "id": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Controlled Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7620,7 +7620,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.938Z", "description": "[Withdrawn: Incorporated into MA-2].", "external_references": [ { @@ -7629,14 +7629,14 @@ } ], "id": "course-of-action--8374502d-58ff-4dff-8287-5e399faa7292", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Record Content", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization:\n\n* **MA-2 (2)(a)** Employs automated mechanisms to schedule, conduct, and document maintenance and repairs; and\n* **MA-2 (2)(b)** Produces up-to date, accurate, and complete records of all maintenance and repair actions requested, scheduled, in process, and completed.\n", "external_references": [ { @@ -7645,7 +7645,7 @@ } ], "id": "course-of-action--5a59af4a-4be7-44e3-964e-6c633c2791e7", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Automated Maintenance Activities", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7655,7 +7655,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.938Z", "description": "The organization approves, controls, and monitors information system maintenance tools.\nThis control addresses security-related issues associated with maintenance tools used specifically for diagnostic and repair actions on organizational information systems. Maintenance tools can include hardware, software, and firmware items. Maintenance tools are potential vehicles for transporting malicious code, either intentionally or unintentionally, into a facility and subsequently into organizational information systems. Maintenance tools can include, for example, hardware/software diagnostic test equipment and hardware/software packet sniffers. This control does not cover hardware/software components that may support information system maintenance, yet are a part of the system, for example, the software implementing \u00ef\u00bf\u00bdping,\u00ef\u00bf\u00bd \u00ef\u00bf\u00bdls,\u00ef\u00bf\u00bd \u00ef\u00bf\u00bdipconfig,\u00ef\u00bf\u00bd or the hardware and software implementing the monitoring port of an Ethernet switch.", "external_references": [ { @@ -7664,7 +7664,7 @@ } ], "id": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.938Z", "name": "Maintenance Tools", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7675,7 +7675,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization inspects the maintenance tools carried into a facility by maintenance personnel for improper or unauthorized modifications.\nIf, upon inspection of maintenance tools, organizations determine that the tools have been modified in an improper/unauthorized manner or contain malicious code, the incident is handled consistent with organizational policies and procedures for incident handling.", "external_references": [ { @@ -7684,7 +7684,7 @@ } ], "id": "course-of-action--012deeef-7cc6-46e5-9922-3ad54c138597", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Inspect Tools", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7695,7 +7695,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.809Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization checks media containing diagnostic and test programs for malicious code before the media are used in the information system.\nIf, upon inspection of media containing maintenance diagnostic and test programs, organizations determine that the media contain malicious code, the incident is handled consistent with organizational incident handling policies and procedures.", "external_references": [ { @@ -7704,7 +7704,7 @@ } ], "id": "course-of-action--3e451c9e-1e46-47b6-a921-58fa2dc2584a", - "modified": "2021-01-06T18:28:39.809Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Inspect Media", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7715,7 +7715,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization prevents the unauthorized removal of maintenance equipment containing organizational information by:\n\n* **MA-3 (3)(a)** Verifying that there is no organizational information contained on the equipment;\n* **MA-3 (3)(b)** Sanitizing or destroying the equipment;\n* **MA-3 (3)(c)** Retaining the equipment within the facility; or\n* **MA-3 (3)(d)** Obtaining an exemption from [Assignment: organization-defined personnel or roles] explicitly authorizing removal of the equipment from the facility.\n\nOrganizational information includes all information specifically owned by organizations and information provided to organizations in which organizations serve as information stewards.", "external_references": [ { @@ -7724,7 +7724,7 @@ } ], "id": "course-of-action--c372f939-2674-45e5-af6f-d981e98d4f3a", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Prevent Unauthorized Removal", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7734,7 +7734,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The information system restricts the use of maintenance tools to authorized personnel only.\nThis control enhancement applies to information systems that are used to carry out maintenance functions.", "external_references": [ { @@ -7743,14 +7743,14 @@ } ], "id": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Restricted Tool Use", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization:\n\n* **MA-4a.** Approves and monitors nonlocal maintenance and diagnostic activities;\n* **MA-4b.** Allows the use of nonlocal maintenance and diagnostic tools only as consistent with organizational policy and documented in the security plan for the information system;\n* **MA-4c.** Employs strong authenticators in the establishment of nonlocal maintenance and diagnostic sessions;\n* **MA-4d.** Maintains records for nonlocal maintenance and diagnostic activities; and\n* **MA-4e.** Terminates session and network connections when nonlocal maintenance is completed.\n\nNonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the Internet) or an internal network. Local maintenance and diagnostic activities are those activities carried out by individuals physically present at the information system or information system component and not communicating across a network connection. Authentication techniques used in the establishment of nonlocal maintenance and diagnostic sessions reflect the network access requirements in IA-2. Typically, strong authentication requires authenticators that are resistant to replay attacks and employ multifactor authentication. Strong authenticators include, for example, PKI where certificates are stored on a token protected by a password, passphrase, or biometric. Enforcing requirements in MA-4 is accomplished in part by other controls.", "external_references": [ { @@ -7759,7 +7759,7 @@ } ], "id": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Nonlocal Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7771,7 +7771,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization:\n\n* **MA-4 (1)(a)** Audits nonlocal maintenance and diagnostic sessions [Assignment: organization-defined audit events]; and\n* **MA-4 (1)(b)** Reviews the records of the maintenance and diagnostic sessions.\n", "external_references": [ { @@ -7780,14 +7780,14 @@ } ], "id": "course-of-action--a7db71d2-3c98-4a5c-bbe8-a945b1eabc47", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Auditing And Review", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.939Z", "description": "The organization documents in the security plan for the information system, the policies and procedures for the establishment and use of nonlocal maintenance and diagnostic connections.", "external_references": [ { @@ -7796,7 +7796,7 @@ } ], "id": "course-of-action--4ffac7a2-6eca-41c1-8a4e-afc431bc3d71", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.939Z", "name": "Document Nonlocal Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7807,7 +7807,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.810Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The organization:\n\n* **MA-4 (3)(a)** Requires that nonlocal maintenance and diagnostic services be performed from an information system that implements a security capability comparable to the capability implemented on the system being serviced; or\n* **MA-4 (3)(b)** Removes the component to be serviced from the information system prior to nonlocal maintenance or diagnostic services, sanitizes the component (with regard to organizational information) before removal from organizational facilities, and after the service is performed, inspects and sanitizes the component (with regard to potentially malicious software) before reconnecting the component to the information system.\n\nComparable security capability on information systems, diagnostic tools, and equipment providing maintenance services implies that the implemented security controls on those systems, tools, and equipment are at least as comprehensive as the controls on the information system being serviced.", "external_references": [ { @@ -7816,7 +7816,7 @@ } ], "id": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", - "modified": "2021-01-06T18:28:39.810Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Comparable Security / Sanitization", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7826,7 +7826,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The organization protects nonlocal maintenance sessions by:\n\n* **MA-4 (4)(a)** Employing [Assignment: organization-defined authenticators that are replay resistant]; and\n* **MA-4 (4)(b)** Separating the maintenance sessions from other network sessions with the information system by either:\n * **MA-4 (4)(b)(1)** Physically separated communications paths; or\n * **MA-4 (4)(b)(2)** Logically separated communications paths based upon encryption.\n", "external_references": [ { @@ -7835,14 +7835,14 @@ } ], "id": "course-of-action--34ec3fcb-2c65-42f2-a0fc-14a9bdb06fde", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Authentication / Separation Of Maintenance Sessions", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The organization:\n\n* **MA-4 (5)(a)** Requires the approval of each nonlocal maintenance session by [Assignment: organization-defined personnel or roles]; and\n* **MA-4 (5)(b)** Notifies [Assignment: organization-defined personnel or roles] of the date and time of planned nonlocal maintenance.\n\nNotification may be performed by maintenance personnel. Approval of nonlocal maintenance sessions is accomplished by organizational personnel with sufficient information security and information system knowledge to determine the appropriateness of the proposed maintenance.", "external_references": [ { @@ -7851,14 +7851,14 @@ } ], "id": "course-of-action--5c542ef1-d5f1-4b35-89d5-fda91f7f59ea", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Approvals And Notifications", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The information system implements cryptographic mechanisms to protect the integrity and confidentiality of nonlocal maintenance and diagnostic communications.", "external_references": [ { @@ -7867,14 +7867,14 @@ } ], "id": "course-of-action--ae5d39f9-58f1-4e10-bd2a-d00a4c84d013", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The information system implements remote disconnect verification at the termination of nonlocal maintenance and diagnostic sessions.\nRemote disconnect verification ensures that remote connections from nonlocal maintenance sessions have been terminated and are no longer available for use.", "external_references": [ { @@ -7883,14 +7883,14 @@ } ], "id": "course-of-action--6c5e5568-6b01-4d10-ae2e-11d0cb9a739b", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Remote Disconnect Verification", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The organization:\n\n* **MA-5a.** Establishes a process for maintenance personnel authorization and maintains a list of authorized maintenance organizations or personnel;\n* **MA-5b.** Ensures that non-escorted personnel performing maintenance on the information system have required access authorizations; and\n* **MA-5c.** Designates organizational personnel with required access authorizations and technical competence to supervise the maintenance activities of personnel who do not possess the required access authorizations.\n\nThis control applies to individuals performing hardware or software maintenance on organizational information systems, while PE-2 addresses physical access for individuals whose maintenance duties place them within the physical protection perimeter of the systems (e.g., custodial staff, physical plant maintenance personnel). Technical competence of supervising individuals relates to the maintenance performed on the information systems while having required access authorizations refers to maintenance on and near the systems. Individuals not previously identified as authorized maintenance personnel, such as information technology manufacturers, vendors, systems integrators, and consultants, may require privileged access to organizational information systems, for example, when required to conduct maintenance activities with little or no notice. Based on organizational assessments of risk, organizations may issue temporary credentials to these individuals. Temporary credentials may be for one-time use or for very limited time periods.", "external_references": [ { @@ -7899,7 +7899,7 @@ } ], "id": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Maintenance Personnel", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7911,7 +7911,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.811Z", + "created": "2021-01-13T01:50:48.940Z", "description": "The organization:\n\n* **MA-5 (1)(a)** Implements procedures for the use of maintenance personnel that lack appropriate security clearances or are not U.S. citizens, that include the following requirements:\n * **MA-5 (1)(a)(1)** Maintenance personnel who do not have needed access authorizations, clearances, or formal access approvals are escorted and supervised during the performance of maintenance and diagnostic activities on the information system by approved organizational personnel who are fully cleared, have appropriate access authorizations, and are technically qualified;\n * **MA-5 (1)(a)(2)** Prior to initiating maintenance or diagnostic activities by personnel who do not have needed access authorizations, clearances or formal access approvals, all volatile information storage components within the information system are sanitized and all nonvolatile storage media are removed or physically disconnected from the system and secured; and\n* **MA-5 (1)(b)** Develops and implements alternate security safeguards in the event an information system component cannot be sanitized, removed, or disconnected from the system.\n\nThis control enhancement denies individuals who lack appropriate security clearances (i.e., individuals who do not possess security clearances or possess security clearances at a lower level than required) or who are not U.S. citizens, visual and electronic access to any classified information, Controlled Unclassified Information (CUI), or any other sensitive information contained on organizational information systems. Procedures for the use of maintenance personnel can be documented in security plans for the information systems.", "external_references": [ { @@ -7920,7 +7920,7 @@ } ], "id": "course-of-action--024b7217-4367-44c8-9ce7-52df56e2ac36", - "modified": "2021-01-06T18:28:39.811Z", + "modified": "2021-01-13T01:50:48.940Z", "name": "Individuals Without Appropriate Access", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -7930,7 +7930,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization ensures that personnel performing maintenance and diagnostic activities on an information system processing, storing, or transmitting classified information possess security clearances and formal access approvals for at least the highest classification level and for all compartments of information on the system.", "external_references": [ { @@ -7939,14 +7939,14 @@ } ], "id": "course-of-action--94d89de8-9500-4b9a-bc1c-7b91c0370eca", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Security Clearances For Classified Systems", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization ensures that personnel performing maintenance and diagnostic activities on an information system processing, storing, or transmitting classified information are U.S. citizens.", "external_references": [ { @@ -7955,14 +7955,14 @@ } ], "id": "course-of-action--662257c0-6ae0-462e-9c15-7ef725f268bb", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Citizenship Requirements For Classified Systems", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization ensures that:\n\n* **MA-5 (4)(a)** Cleared foreign nationals (i.e., foreign nationals with appropriate security clearances), are used to conduct maintenance and diagnostic activities on classified information systems only when the systems are jointly owned and operated by the United States and foreign allied governments, or owned and operated solely by foreign allied governments; and\n* **MA-5 (4)(b)** Approvals, consents, and detailed operational conditions regarding the use of foreign nationals to conduct maintenance and diagnostic activities on classified information systems are fully documented within Memoranda of Agreements.\n", "external_references": [ { @@ -7971,14 +7971,14 @@ } ], "id": "course-of-action--073a224c-44ad-409f-90f4-a6d7b27ab91e", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Foreign Nationals", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization ensures that non-escorted personnel performing maintenance activities not directly associated with the information system but in the physical proximity of the system, have required access authorizations.\nPersonnel performing maintenance activities in other capacities not directly related to the information system include, for example, physical plant personnel and janitorial personnel.", "external_references": [ { @@ -7987,14 +7987,14 @@ } ], "id": "course-of-action--fcf6ecab-f980-4e47-8615-ef1ce52fc3ce", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Nonsystem-Related Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization obtains maintenance support and/or spare parts for [Assignment: organization-defined information system components] within [Assignment: organization-defined time period] of failure.\nOrganizations specify the information system components that result in increased risk to organizational operations and assets, individuals, other organizations, or the Nation when the functionality provided by those components is not operational. Organizational actions to obtain maintenance support typically include having appropriate contracts in place.", "external_references": [ { @@ -8003,7 +8003,7 @@ } ], "id": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Timely Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", @@ -8014,7 +8014,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.812Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization performs preventive maintenance on [Assignment: organization-defined information system components] at [Assignment: organization-defined time intervals].\nPreventive maintenance includes proactive care and servicing of organizational information systems components for the purpose of maintaining equipment and facilities in satisfactory operating condition. Such maintenance provides for the systematic inspection, tests, measurements, adjustments, parts replacement, detection, and correction of incipient failures either before they occur or before they develop into major defects. The primary goal of preventive maintenance is to avoid/mitigate the consequences of equipment failures. Preventive maintenance is designed to preserve and restore equipment reliability by replacing worn components before they actually fail. Methods of determining what preventive (or other) failure management policies to apply include, for example, original equipment manufacturer (OEM) recommendations, statistical failure records, requirements of codes, legislation, or regulations within a jurisdiction, expert opinion, maintenance that has already been conducted on similar equipment, or measured values and performance indications.", "external_references": [ { @@ -8023,14 +8023,14 @@ } ], "id": "course-of-action--0c4f8afd-3565-4dfe-ba20-93cc57f83479", - "modified": "2021-01-06T18:28:39.812Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Preventive Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.941Z", "description": "The organization performs predictive maintenance on [Assignment: organization-defined information system components] at [Assignment: organization-defined time intervals].\nPredictive maintenance, or condition-based maintenance, attempts to evaluate the condition of equipment by performing periodic or continuous (online) equipment condition monitoring. The goal of predictive maintenance is to perform maintenance at a scheduled point in time when the maintenance activity is most cost-effective and before the equipment loses performance within a threshold. The predictive component of predictive maintenance stems from the goal of predicting the future trend of the equipment's condition. This approach uses principles of statistical process control to determine at what point in the future maintenance activities will be appropriate. Most predictive maintenance inspections are performed while equipment is in service, thereby minimizing disruption of normal system operations. Predictive maintenance can result in substantial cost savings and higher system reliability. Predictive maintenance tends to include measurement of the item. To evaluate equipment condition, predictive maintenance utilizes nondestructive testing technologies such as infrared, acoustic (partial discharge and airborne ultrasonic), corona detection, vibration analysis, sound level measurements, oil analysis, and other specific online tests.", "external_references": [ { @@ -8039,14 +8039,14 @@ } ], "id": "course-of-action--66df5d3c-789b-4c51-8fe6-b9558d5d79a0", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.941Z", "name": "Predictive Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "The organization employs automated mechanisms to transfer predictive maintenance data to a computerized maintenance management system.\nA computerized maintenance management system maintains a computer database of information about the maintenance operations of organizations and automates processing equipment condition data in order to trigger maintenance planning, execution, and reporting.", "external_references": [ { @@ -8055,14 +8055,14 @@ } ], "id": "course-of-action--60dc56a6-076f-46ee-a789-f7023dd2abbe", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Automated Support For Predictive Maintenance", "type": "course-of-action", "x_mitre_family": "Maintenance", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "The organization:\n\n* **MP-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **MP-1a.1.** A media protection policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **MP-1a.2.** Procedures to facilitate the implementation of the media protection policy and associated media protection controls; and\n* **MP-1b.** Reviews and updates the current:\n * **MP-1b.1.** Media protection policy [Assignment: organization-defined frequency]; and\n * **MP-1b.2.** Media protection procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the MP family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -8071,7 +8071,7 @@ } ], "id": "course-of-action--482d682c-4871-44f8-830c-9b2b2ddb9188", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Media Protection Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8083,7 +8083,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "The organization restricts access to [Assignment: organization-defined types of digital and/or non-digital media] to [Assignment: organization-defined personnel or roles].\nInformation system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. Restricting non-digital media access includes, for example, denying access to patient medical records in a community hospital unless the individuals seeking access to such records are authorized healthcare providers. Restricting access to digital media includes, for example, limiting access to design specifications stored on compact disks in the media library to the project leader and the individuals on the development team.", "external_references": [ { @@ -8092,7 +8092,7 @@ } ], "id": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Media Access", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8104,7 +8104,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "[Withdrawn: Incorporated into MP-4 (2)].", "external_references": [ { @@ -8113,14 +8113,14 @@ } ], "id": "course-of-action--37eeb301-b3c9-4b6d-872e-745de189cd10", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Automated Restricted Access", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "[Withdrawn: Incorporated into SC-28 (1)].", "external_references": [ { @@ -8129,14 +8129,14 @@ } ], "id": "course-of-action--65ee07b7-4569-44fd-abf2-c765947f92a3", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.813Z", + "created": "2021-01-13T01:50:48.942Z", "description": "The organization:\n\n* **MP-3a.** Marks information system media indicating the distribution limitations, handling caveats, and applicable security markings (if any) of the information; and\n* **MP-3b.** Exempts [Assignment: organization-defined types of information system media] from marking as long as the media remain within [Assignment: organization-defined controlled areas].\n\nThe term security marking refers to the application/use of human-readable security attributes. The term security labeling refers to the application/use of security attributes with regard to internal data structures within information systems (see AC-16). Information system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. Security marking is generally not required for media containing information determined by organizations to be in the public domain or to be publicly releasable. However, some organizations may require markings for public information indicating that the information is publicly releasable. Marking of information system media reflects applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.", "external_references": [ { @@ -8145,7 +8145,7 @@ } ], "id": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", - "modified": "2021-01-06T18:28:39.813Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Media Marking", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8156,7 +8156,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.942Z", "description": "The organization:\n\n* **MP-4a.** Physically controls and securely stores [Assignment: organization-defined types of digital and/or non-digital media] within [Assignment: organization-defined controlled areas]; and\n* **MP-4b.** Protects information system media until the media are destroyed or sanitized using approved equipment, techniques, and procedures.\n\nInformation system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. Physically controlling information system media includes, for example, conducting inventories, ensuring procedures are in place to allow individuals to check out and return media to the media library, and maintaining accountability for all stored media. Secure storage includes, for example, a locked drawer, desk, or cabinet, or a controlled media library. The type of media storage is commensurate with the security category and/or classification of the information residing on the media. Controlled areas are areas for which organizations provide sufficient physical and procedural safeguards to meet the requirements established for protecting information and/or information systems. For media containing information determined by organizations to be in the public domain, to be publicly releasable, or to have limited or no adverse impact on organizations or individuals if accessed by other than authorized personnel, fewer safeguards may be needed. In these situations, physical access controls provide adequate protection.", "external_references": [ { @@ -8165,7 +8165,7 @@ } ], "id": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.942Z", "name": "Media Storage", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8176,7 +8176,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.943Z", "description": "[Withdrawn: Incorporated into SC-28 (1)].", "external_references": [ { @@ -8185,14 +8185,14 @@ } ], "id": "course-of-action--a74140f9-3916-42ac-98a5-4ea12fc53bb9", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.943Z", "description": "The organization employs automated mechanisms to restrict access to media storage areas and to audit access attempts and access granted.\nAutomated mechanisms can include, for example, keypads on the external entries to media storage areas.", "external_references": [ { @@ -8201,14 +8201,14 @@ } ], "id": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Automated Restricted Access", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.943Z", "description": "The organization:\n\n* **MP-5a.** Protects and controls [Assignment: organization-defined types of information system media] during transport outside of controlled areas using [Assignment: organization-defined security safeguards];\n* **MP-5b.** Maintains accountability for information system media during transport outside of controlled areas;\n* **MP-5c.** Documents activities associated with the transport of information system media; and\n* **MP-5d.** Restricts the activities associated with the transport of information system media to authorized personnel.\n\nInformation system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. This control also applies to mobile devices with information storage capability (e.g., smart phones, tablets, E-readers), that are transported outside of controlled areas. Controlled areas are areas or spaces for which organizations provide sufficient physical and/or procedural safeguards to meet the requirements established for protecting information and/or information systems. Physical and technical safeguards for media are commensurate with the security category or classification of the information residing on the media. Safeguards to protect media during transport include, for example, locked containers and cryptography. Cryptographic mechanisms can provide confidentiality and integrity protections depending upon the mechanisms used. Activities associated with transport include the actual transport as well as those activities such as releasing media for transport and ensuring that media enters the appropriate transport processes. For the actual transport, authorized transport and courier personnel may include individuals from outside the organization (e.g., U.S. Postal Service or a commercial transport or delivery service). Maintaining accountability of media during transport includes, for example, restricting transport activities to authorized personnel, and tracking and/or obtaining explicit records of transport activities as the media moves through the transportation system to prevent and detect loss, destruction, or tampering. Organizations establish documentation requirements for activities associated with the transport of information system media in accordance with organizational assessments of risk to include the flexibility to define different record-keeping methods for the different types of media transport as part of an overall system of transport-related records.", "external_references": [ { @@ -8217,7 +8217,7 @@ } ], "id": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Media Transport", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8228,7 +8228,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.943Z", "description": "[Withdrawn: Incorporated into MP-5].", "external_references": [ { @@ -8237,14 +8237,14 @@ } ], "id": "course-of-action--136bf102-a84d-44d5-a781-3f5e51b00f72", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Protection Outside Of Controlled Areas", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.814Z", + "created": "2021-01-13T01:50:48.943Z", "description": "[Withdrawn: Incorporated into MP-5].", "external_references": [ { @@ -8253,14 +8253,14 @@ } ], "id": "course-of-action--6cccaaf0-e5cf-45a4-a163-8c0e6bc37384", - "modified": "2021-01-06T18:28:39.814Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Documentation Of Activities", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.815Z", + "created": "2021-01-13T01:50:48.943Z", "description": "The organization employs an identified custodian during transport of information system media outside of controlled areas.\nIdentified custodians provide organizations with specific points of contact during the media transport process and facilitate individual accountability. Custodial responsibilities can be transferred from one individual to another as long as an unambiguous custodian is identified at all times.", "external_references": [ { @@ -8269,14 +8269,14 @@ } ], "id": "course-of-action--a235e4c2-4737-4277-978d-dd10bb6d5f2d", - "modified": "2021-01-06T18:28:39.815Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Custodians", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.815Z", + "created": "2021-01-13T01:50:48.943Z", "description": "The information system implements cryptographic mechanisms to protect the confidentiality and integrity of information stored on digital media during transport outside of controlled areas.\nThis control enhancement applies to both portable storage devices (e.g., USB memory sticks, compact disks, digital video disks, external/removable hard disk drives) and mobile devices with storage capability (e.g., smart phones, tablets, E-readers).", "external_references": [ { @@ -8285,7 +8285,7 @@ } ], "id": "course-of-action--f251a109-0056-44fa-a1bb-f2b724582966", - "modified": "2021-01-06T18:28:39.815Z", + "modified": "2021-01-13T01:50:48.943Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8296,7 +8296,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.815Z", + "created": "2021-01-13T01:50:48.944Z", "description": "The organization:\n\n* **MP-6a.** Sanitizes [Assignment: organization-defined information system media] prior to disposal, release out of organizational control, or release for reuse using [Assignment: organization-defined sanitization techniques and procedures] in accordance with applicable federal and organizational standards and policies; and\n* **MP-6b.** Employs sanitization mechanisms with the strength and integrity commensurate with the security category or classification of the information.\n\nThis control applies to all information system media, both digital and non-digital, subject to disposal or reuse, whether or not the media is considered removable. Examples include media found in scanners, copiers, printers, notebook computers, workstations, network components, and mobile devices. The sanitization process removes information from the media such that the information cannot be retrieved or reconstructed. Sanitization techniques, including clearing, purging, cryptographic erase, and destruction, prevent the disclosure of information to unauthorized individuals when such media is reused or released for disposal. Organizations determine the appropriate sanitization methods recognizing that destruction is sometimes necessary when other methods cannot be applied to media requiring sanitization. Organizations use discretion on the employment of approved sanitization techniques and procedures for media containing information deemed to be in the public domain or publicly releasable, or deemed to have no adverse impact on organizations or individuals if released for reuse or disposal. Sanitization of non-digital media includes, for example, removing a classified appendix from an otherwise unclassified document, or redacting selected sections or words from a document by obscuring the redacted sections/words in a manner equivalent in effectiveness to removing them from the document. NSA standards and policies control the sanitization process for media containing classified information.", "external_references": [ { @@ -8305,7 +8305,7 @@ } ], "id": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", - "modified": "2021-01-06T18:28:39.815Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Media Sanitization", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8317,7 +8317,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.815Z", + "created": "2021-01-13T01:50:48.944Z", "description": "The organization reviews, approves, tracks, documents, and verifies media sanitization and disposal actions.\nOrganizations review and approve media to be sanitized to ensure compliance with records-retention policies. Tracking/documenting actions include, for example, listing personnel who reviewed and approved sanitization and disposal actions, types of media sanitized, specific files stored on the media, sanitization methods used, date and time of the sanitization actions, personnel who performed the sanitization, verification actions taken, personnel who performed the verification, and disposal action taken. Organizations verify that the sanitization of the media was effective prior to disposal.", "external_references": [ { @@ -8326,7 +8326,7 @@ } ], "id": "course-of-action--fa84a394-204b-45f9-aebe-7d0762afed10", - "modified": "2021-01-06T18:28:39.815Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Review / Approve / Track / Document / Verify", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8336,7 +8336,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.816Z", + "created": "2021-01-13T01:50:48.944Z", "description": "The organization tests sanitization equipment and procedures [Assignment: organization-defined frequency] to verify that the intended sanitization is being achieved.\nTesting of sanitization equipment and procedures may be conducted by qualified and authorized external entities (e.g., other federal agencies or external service providers).", "external_references": [ { @@ -8345,7 +8345,7 @@ } ], "id": "course-of-action--fc46d78f-bdc4-4036-ae6b-3ba7b9d56e75", - "modified": "2021-01-06T18:28:39.816Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Equipment Testing", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8355,7 +8355,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.816Z", + "created": "2021-01-13T01:50:48.944Z", "description": "The organization applies nondestructive sanitization techniques to portable storage devices prior to connecting such devices to the information system under the following circumstances: [Assignment: organization-defined circumstances requiring sanitization of portable storage devices].\nThis control enhancement applies to digital media containing classified information and Controlled Unclassified Information (CUI). Portable storage devices can be the source of malicious code insertions into organizational information systems. Many of these devices are obtained from unknown and potentially untrustworthy sources and may contain malicious code that can be readily transferred to information systems through USB ports or other entry portals. While scanning such storage devices is always recommended, sanitization provides additional assurance that the devices are free of malicious code to include code capable of initiating zero-day attacks. Organizations consider nondestructive sanitization of portable storage devices when such devices are first purchased from the manufacturer or vendor prior to initial use or when organizations lose a positive chain of custody for the devices.", "external_references": [ { @@ -8364,7 +8364,7 @@ } ], "id": "course-of-action--afba2afa-6c1b-4997-bb3e-97ab7acea515", - "modified": "2021-01-06T18:28:39.816Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Nondestructive Techniques", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8374,7 +8374,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.816Z", + "created": "2021-01-13T01:50:48.944Z", "description": "[Withdrawn: Incorporated into MP-6].", "external_references": [ { @@ -8383,14 +8383,14 @@ } ], "id": "course-of-action--18ed1beb-d91b-4e33-ac8b-d917ba155ff9", - "modified": "2021-01-06T18:28:39.816Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Controlled Unclassified Information", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.816Z", + "created": "2021-01-13T01:50:48.944Z", "description": "[Withdrawn: Incorporated into MP-6].", "external_references": [ { @@ -8399,14 +8399,14 @@ } ], "id": "course-of-action--caff8952-ec7e-4da2-85f5-b188170949c7", - "modified": "2021-01-06T18:28:39.816Z", + "modified": "2021-01-13T01:50:48.944Z", "name": "Classified Information", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "[Withdrawn: Incorporated into MP-6].", "external_references": [ { @@ -8415,14 +8415,14 @@ } ], "id": "course-of-action--39c24329-248f-4758-8dbe-94f214f0b054", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Media Destruction", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization enforces dual authorization for the sanitization of [Assignment: organization-defined information system media].\nOrganizations employ dual authorization to ensure that information system media sanitization cannot occur unless two technically qualified individuals conduct the task. Individuals sanitizing information system media possess sufficient skills/expertise to determine if the proposed sanitization reflects applicable federal/organizational standards, policies, and procedures. Dual authorization also helps to ensure that sanitization occurs as intended, both protecting against errors and false claims of having performed the sanitization actions. Dual authorization may also be known as two-person control.", "external_references": [ { @@ -8431,14 +8431,14 @@ } ], "id": "course-of-action--cb4f8b8c-98e4-4d94-b4ca-b80472ba93e3", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Dual Authorization", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization provides the capability to purge/wipe information from [Assignment: organization-defined information systems, system components, or devices] either remotely or under the following conditions: [Assignment: organization-defined conditions].\nThis control enhancement protects data/information on organizational information systems, system components, or devices (e.g., mobile devices) if such systems, components, or devices are obtained by unauthorized individuals. Remote purge/wipe commands require strong authentication to mitigate the risk of unauthorized individuals purging/wiping the system/component/device. The purge/wipe function can be implemented in a variety of ways including, for example, by overwriting data/information multiple times or by destroying the key necessary to decrypt encrypted data.", "external_references": [ { @@ -8447,14 +8447,14 @@ } ], "id": "course-of-action--8aaeb347-91ef-43dc-8c7b-3ed231011c90", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Remote Purging / Wiping Of Information", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization [Selection: restricts; prohibits] the use of [Assignment: organization-defined types of information system media] on [Assignment: organization-defined information systems or system components] using [Assignment: organization-defined security safeguards].\nInformation system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. This control also applies to mobile devices with information storage capability (e.g., smart phones, tablets, E-readers). In contrast to MP-2, which restricts user access to media, this control restricts the use of certain types of media on information systems, for example, restricting/prohibiting the use of flash drives or external hard disk drives. Organizations can employ technical and nontechnical safeguards (e.g., policies, procedures, rules of behavior) to restrict the use of information system media. Organizations may restrict the use of portable storage devices, for example, by using physical cages on workstations to prohibit access to certain external ports, or disabling/removing the ability to insert, read or write to such devices. Organizations may also limit the use of portable storage devices to only approved devices including, for example, devices provided by the organization, devices provided by other approved organizations, and devices that are not personally owned. Finally, organizations may restrict the use of portable storage devices based on the type of device, for example, prohibiting the use of writeable, portable storage devices, and implementing this restriction by disabling or removing the capability to write to such devices.", "external_references": [ { @@ -8463,7 +8463,7 @@ } ], "id": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Media Use", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8475,7 +8475,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization prohibits the use of portable storage devices in organizational information systems when such devices have no identifiable owner.\nRequiring identifiable owners (e.g., individuals, organizations, or projects) for portable storage devices reduces the risk of using such technologies by allowing organizations to assign responsibility and accountability for addressing known vulnerabilities in the devices (e.g., malicious code insertion).", "external_references": [ { @@ -8484,7 +8484,7 @@ } ], "id": "course-of-action--30ed2302-6064-4ac9-98db-5f1f5bbab636", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Prohibit Use Without Owner", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -8495,7 +8495,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.818Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization prohibits the use of sanitization-resistant media in organizational information systems.\nSanitization-resistance applies to the capability to purge information from media. Certain types of media do not support sanitize commands, or if supported, the interfaces are not supported in a standardized way across these devices. Sanitization-resistant media include, for example, compact flash, embedded flash on boards and devices, solid state drives, and USB removable media.", "external_references": [ { @@ -8504,14 +8504,14 @@ } ], "id": "course-of-action--8a42bc1e-ee34-4e39-8ecd-58e587f88d03", - "modified": "2021-01-06T18:28:39.818Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Prohibit Use Of Sanitization-Resistant Media", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.818Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization:\n\n* **MP-8a.** Establishes [Assignment: organization-defined information system media downgrading process] that includes employing downgrading mechanisms with [Assignment: organization-defined strength and integrity];\n* **MP-8b.** Ensures that the information system media downgrading process is commensurate with the security category and/or classification level of the information to be removed and the access authorizations of the potential recipients of the downgraded information;\n* **MP-8c.** Identifies [Assignment: organization-defined information system media requiring downgrading]; and\n* **MP-8d.** Downgrades the identified information system media using the established process.\n\nThis control applies to all information system media, digital and non-digital, subject to release outside of the organization, whether or not the media is considered removable. The downgrading process, when applied to system media, removes information from the media, typically by security category or classification level, such that the information cannot be retrieved or reconstructed. Downgrading of media includes redacting information to enable wider release and distribution. Downgrading of media also ensures that empty space on the media (e.g., slack space within files) is devoid of information.", "external_references": [ { @@ -8520,14 +8520,14 @@ } ], "id": "course-of-action--7be6b987-d63c-40f0-9025-623af5ecae4f", - "modified": "2021-01-06T18:28:39.818Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Media Downgrading", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.818Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization documents information system media downgrading actions.\nOrganizations can document the media downgrading process by providing information such as the downgrading technique employed, the identification number of the downgraded media, and the identity of the individual that authorized and/or performed the downgrading action.", "external_references": [ { @@ -8536,14 +8536,14 @@ } ], "id": "course-of-action--b28ba623-af4a-4d7d-8576-a8ccaf691177", - "modified": "2021-01-06T18:28:39.818Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Documentation Of Process", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.818Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization employs [Assignment: organization-defined tests] of downgrading equipment and procedures to verify correct performance [Assignment: organization-defined frequency].", "external_references": [ { @@ -8552,14 +8552,14 @@ } ], "id": "course-of-action--7d135d94-9e26-4c98-a6b8-283229c562c5", - "modified": "2021-01-06T18:28:39.818Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Equipment Testing", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.819Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization downgrades information system media containing [Assignment: organization-defined Controlled Unclassified Information (CUI)] prior to public release in accordance with applicable federal and organizational standards and policies.", "external_references": [ { @@ -8568,14 +8568,14 @@ } ], "id": "course-of-action--b2c80f93-eba4-4699-ae42-a715b7e50985", - "modified": "2021-01-06T18:28:39.819Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Controlled Unclassified Information", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.819Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization downgrades information system media containing classified information prior to release to individuals without required access authorizations in accordance with NSA standards and policies.\nDowngrading of classified information uses approved sanitization tools, techniques, and procedures to transfer information confirmed to be unclassified from classified information systems to unclassified media.", "external_references": [ { @@ -8584,14 +8584,14 @@ } ], "id": "course-of-action--e6c4ef1e-1313-48e6-aaf7-16b7a5df904c", - "modified": "2021-01-06T18:28:39.819Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Classified Information", "type": "course-of-action", "x_mitre_family": "Media Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.819Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization:\n\n* **PE-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **PE-1a.1.** A physical and environmental protection policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **PE-1a.2.** Procedures to facilitate the implementation of the physical and environmental protection policy and associated physical and environmental protection controls; and\n* **PE-1b.** Reviews and updates the current:\n * **PE-1b.1.** Physical and environmental protection policy [Assignment: organization-defined frequency]; and\n * **PE-1b.2.** Physical and environmental protection procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the PE family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -8600,7 +8600,7 @@ } ], "id": "course-of-action--30ca9933-ba3a-4bef-9cc2-fe63a9a41c77", - "modified": "2021-01-06T18:28:39.819Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Physical And Environmental Protection Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8612,7 +8612,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.819Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization:\n\n* **PE-2a.** Develops, approves, and maintains a list of individuals with authorized access to the facility where the information system resides;\n* **PE-2b.** Issues authorization credentials for facility access;\n* **PE-2c.** Reviews the access list detailing authorized facility access by individuals [Assignment: organization-defined frequency]; and\n* **PE-2d.** Removes individuals from the facility access list when access is no longer required.\n\nThis control applies to organizational employees and visitors. Individuals (e.g., employees, contractors, and others) with permanent physical access authorization credentials are not considered visitors. Authorization credentials include, for example, badges, identification cards, and smart cards. Organizations determine the strength of authorization credentials needed (including level of forge-proof badges, smart cards, or identification cards) consistent with federal standards, policies, and procedures. This control only applies to areas within facilities that have not been designated as publicly accessible.", "external_references": [ { @@ -8621,7 +8621,7 @@ } ], "id": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", - "modified": "2021-01-06T18:28:39.819Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Physical Access Authorizations", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8633,7 +8633,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.819Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization authorizes physical access to the facility where the information system resides based on position or role.", "external_references": [ { @@ -8642,14 +8642,14 @@ } ], "id": "course-of-action--645ee4d9-669c-4c3c-9ff1-4d16c9d205e7", - "modified": "2021-01-06T18:28:39.819Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Access By Position / Role", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization requires two forms of identification from [Assignment: organization-defined list of acceptable forms of identification] for visitor access to the facility where the information system resides.\nAcceptable forms of government photo identification include, for example, passports, Personal Identity Verification (PIV) cards, and drivers\u00ef\u00bf\u00bd licenses. In the case of gaining access to facilities using automated mechanisms, organizations may use PIV cards, key cards, PINs, and biometrics.", "external_references": [ { @@ -8658,14 +8658,14 @@ } ], "id": "course-of-action--bded0187-f2ff-45cb-b493-ac5aba3cd2ce", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Two Forms Of Identification", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.946Z", "description": "The organization restricts unescorted access to the facility where the information system resides to personnel with [Selection (one or more): security clearances for all information contained within the system; formal access authorizations for all information contained within the system; need for access to all information contained within the system; [Assignment: organization-defined credentials]].\nDue to the highly sensitive nature of classified information stored within certain facilities, it is important that individuals lacking sufficient security clearances, access approvals, or need to know, be escorted by individuals with appropriate credentials to ensure that such information is not exposed or otherwise compromised.", "external_references": [ { @@ -8674,14 +8674,14 @@ } ], "id": "course-of-action--ee1f1fd6-ac0f-4840-8684-57c9f953b888", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.946Z", "name": "Restrict Unescorted Access", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization:\n\n* **PE-3a.** Enforces physical access authorizations at [Assignment: organization-defined entry/exit points to the facility where the information system resides] by;\n * **PE-3a.1.** Verifying individual access authorizations before granting access to the facility; and\n * **PE-3a.2.** Controlling ingress/egress to the facility using [Selection (one or more): [Assignment: organization-defined physical access control systems/devices]; guards];\n* **PE-3b.** Maintains physical access audit logs for [Assignment: organization-defined entry/exit points];\n* **PE-3c.** Provides [Assignment: organization-defined security safeguards] to control access to areas within the facility officially designated as publicly accessible;\n* **PE-3d.** Escorts visitors and monitors visitor activity [Assignment: organization-defined circumstances requiring visitor escorts and monitoring];\n* **PE-3e.** Secures keys, combinations, and other physical access devices;\n* **PE-3f.** Inventories [Assignment: organization-defined physical access devices] every [Assignment: organization-defined frequency]; and\n* **PE-3g.** Changes combinations and keys [Assignment: organization-defined frequency] and/or when keys are lost, combinations are compromised, or individuals are transferred or terminated.\n\nThis control applies to organizational employees and visitors. Individuals (e.g., employees, contractors, and others) with permanent physical access authorization credentials are not considered visitors. Organizations determine the types of facility guards needed including, for example, professional physical security staff or other personnel such as administrative staff or information system users. Physical access devices include, for example, keys, locks, combinations, and card readers. Safeguards for publicly accessible areas within organizational facilities include, for example, cameras, monitoring by guards, and isolating selected information systems and/or system components in secured areas. Physical access control systems comply with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance. The Federal Identity, Credential, and Access Management Program provides implementation guidance for identity, credential, and access management capabilities for physical access control systems. Organizations have flexibility in the types of audit logs employed. Audit logs can be procedural (e.g., a written log of individuals accessing the facility and when such access occurred), automated (e.g., capturing ID provided by a PIV card), or some combination thereof. Physical access points can include facility access points, interior access points to information systems and/or components requiring supplemental access controls, or both. Components of organizational information systems (e.g., workstations, terminals) may be located in areas designated as publicly accessible with organizations safeguarding access to such devices.", "external_references": [ { @@ -8690,7 +8690,7 @@ } ], "id": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Physical Access Control", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8702,7 +8702,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization enforces physical access authorizations to the information system in addition to the physical access controls for the facility at [Assignment: organization-defined physical spaces containing one or more components of the information system].\nThis control enhancement provides additional physical security for those areas within facilities where there is a concentration of information system components (e.g., server rooms, media storage areas, data and communications centers).", "external_references": [ { @@ -8711,7 +8711,7 @@ } ], "id": "course-of-action--f7707962-7cc6-4c67-99e1-99822b09be02", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Information System Access", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8721,7 +8721,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization performs security checks [Assignment: organization-defined frequency] at the physical boundary of the facility or information system for unauthorized exfiltration of information or removal of information system components.\nOrganizations determine the extent, frequency, and/or randomness of security checks to adequately mitigate risk associated with exfiltration.", "external_references": [ { @@ -8730,14 +8730,14 @@ } ], "id": "course-of-action--696f5cf5-b1ba-4883-b28f-23c7c124a4a5", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Facility / Information System Boundaries", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization employs guards and/or alarms to monitor every physical access point to the facility where the information system resides 24 hours per day, 7 days per week.", "external_references": [ { @@ -8746,14 +8746,14 @@ } ], "id": "course-of-action--6a40e9bf-8c20-45c3-a061-53949ba3976d", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Continuous Guards / Alarms / Monitoring", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.820Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization uses lockable physical casings to protect [Assignment: organization-defined information system components] from unauthorized physical access.", "external_references": [ { @@ -8762,14 +8762,14 @@ } ], "id": "course-of-action--d4fc42e2-b8c8-433e-b6ce-549ae86071c8", - "modified": "2021-01-06T18:28:39.820Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Lockable Casings", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to [Selection (one or more): detect; prevent] physical tampering or alteration of [Assignment: organization-defined hardware components] within the information system.\nOrganizations may implement tamper detection/prevention at selected hardware components or tamper detection at some components and tamper prevention at other components. Tamper detection/prevention activities can employ many types of anti-tamper technologies including, for example, tamper-detection seals and anti-tamper coatings. Anti-tamper programs help to detect hardware alterations through counterfeiting and other supply chain-related risks.", "external_references": [ { @@ -8778,14 +8778,14 @@ } ], "id": "course-of-action--162ca9af-54ee-4322-9688-46f7cd3c0962", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Tamper Protection", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.947Z", "description": "The organization employs a penetration testing process that includes [Assignment: organization-defined frequency], unannounced attempts to bypass or circumvent security controls associated with physical access points to the facility.", "external_references": [ { @@ -8794,14 +8794,14 @@ } ], "id": "course-of-action--b693457b-6a0c-4262-8159-f90979fe3c09", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.947Z", "name": "Facility Penetration Testing", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The organization controls physical access to [Assignment: organization-defined information system distribution and transmission lines] within organizational facilities using [Assignment: organization-defined security safeguards].\nPhysical security safeguards applied to information system distribution and transmission lines help to prevent accidental damage, disruption, and physical tampering. In addition, physical safeguards may be necessary to help prevent eavesdropping or in transit modification of unencrypted transmissions. Security safeguards to control physical access to system distribution and transmission lines include, for example: (i) locked wiring closets; (ii) disconnected or locked spare jacks; and/or (iii) protection of cabling by conduit or cable trays.", "external_references": [ { @@ -8810,7 +8810,7 @@ } ], "id": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Access Control For Transmission Medium", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8821,7 +8821,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The organization controls physical access to information system output devices to prevent unauthorized individuals from obtaining the output.\nControlling physical access to output devices includes, for example, placing output devices in locked rooms or other secured areas and allowing access to authorized individuals only, and placing output devices in locations that can be monitored by organizational personnel. Monitors, printers, copiers, scanners, facsimile machines, and audio devices are examples of information system output devices.", "external_references": [ { @@ -8830,7 +8830,7 @@ } ], "id": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Access Control For Output Devices", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8841,7 +8841,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The organization:\n\n* **PE-5 (1)(a)** Controls physical access to output from [Assignment: organization-defined output devices]; and\n* **PE-5 (1)(b)** Ensures that only authorized individuals receive output from the device.\n\nControlling physical access to selected output devices includes, for example, placing printers, copiers, and facsimile machines in controlled areas with keypad access controls or limiting access to individuals with certain types of badges.", "external_references": [ { @@ -8850,14 +8850,14 @@ } ], "id": "course-of-action--61bbf829-82b9-4e5b-ab6d-285d6dbb1785", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Access To Output By Authorized Individuals", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The information system:\n\n* **PE-5 (2)(a)** Controls physical access to output from [Assignment: organization-defined output devices]; and\n* **PE-5 (2)(b)** Links individual identity to receipt of the output from the device.\n\nControlling physical access to selected output devices includes, for example, installing security functionality on printers, copiers, and facsimile machines that allows organizations to implement authentication (e.g., using a PIN or hardware token) on output devices prior to the release of output to individuals.", "external_references": [ { @@ -8866,14 +8866,14 @@ } ], "id": "course-of-action--b7fbba2f-535b-4cc0-b741-217e8a8613ce", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Access To Output By Individual Identity", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.821Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The organization marks [Assignment: organization-defined information system output devices] indicating the appropriate security marking of the information permitted to be output from the device.\nOutputs devices include, for example, printers, monitors, facsimile machines, scanners, copiers, and audio devices. This control enhancement is generally applicable to information system output devices other than mobiles devices.", "external_references": [ { @@ -8882,14 +8882,14 @@ } ], "id": "course-of-action--3261e0e5-1d60-4e39-8c45-8f2e6fe5c551", - "modified": "2021-01-06T18:28:39.821Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Marking Output Devices", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.948Z", "description": "The organization:\n\n* **PE-6a.** Monitors physical access to the facility where the information system resides to detect and respond to physical security incidents;\n* **PE-6b.** Reviews physical access logs [Assignment: organization-defined frequency] and upon occurrence of [Assignment: organization-defined events or potential indications of events]; and\n* **PE-6c.** Coordinates results of reviews and investigations with the organizational incident response capability.\n\nOrganizational incident response capabilities include investigations of and responses to detected physical security incidents. Security incidents include, for example, apparent security violations or suspicious physical access activities. Suspicious physical access activities include, for example: (i) accesses outside of normal work hours; (ii) repeated accesses to areas not normally accessed; (iii) accesses for unusual lengths of time; and (iv) out-of-sequence accesses.", "external_references": [ { @@ -8898,7 +8898,7 @@ } ], "id": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.948Z", "name": "Monitoring Physical Access", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8910,7 +8910,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization monitors physical intrusion alarms and surveillance equipment.", "external_references": [ { @@ -8919,7 +8919,7 @@ } ], "id": "course-of-action--ea840204-4660-414a-9b19-a06d29afb743", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Intrusion Alarms / Surveillance Equipment", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8930,7 +8930,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization employs automated mechanisms to recognize [Assignment: organization-defined classes/types of intrusions] and initiate [Assignment: organization-defined response actions].", "external_references": [ { @@ -8939,14 +8939,14 @@ } ], "id": "course-of-action--bd95cde7-79ea-47db-9a2a-b19aaa3845b9", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Automated Intrusion Recognition / Responses", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization employs video surveillance of [Assignment: organization-defined operational areas] and retains video recordings for [Assignment: organization-defined time period].\nThis control enhancement focuses on recording surveillance video for purposes of subsequent review, if circumstances so warrant (e.g., a break-in detected by other means). It does not require monitoring surveillance video although organizations may choose to do so. Note that there may be legal considerations when performing and retaining video surveillance, especially if such surveillance is in a public location.", "external_references": [ { @@ -8955,14 +8955,14 @@ } ], "id": "course-of-action--a71b79a0-89bd-4c69-8275-516994bdbb95", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Video Surveillance", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization monitors physical access to the information system in addition to the physical access monitoring of the facility as [Assignment: organization-defined physical spaces containing one or more components of the information system].\nThis control enhancement provides additional monitoring for those areas within facilities where there is a concentration of information system components (e.g., server rooms, media storage areas, communications centers).", "external_references": [ { @@ -8971,7 +8971,7 @@ } ], "id": "course-of-action--52d4530d-22e2-404d-88ae-dec559c3f713", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Monitoring Physical Access To Information Systems", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -8981,7 +8981,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.822Z", + "created": "2021-01-13T01:50:48.949Z", "description": "[Withdrawn: Incorporated into PE-2 and PE-3].", "external_references": [ { @@ -8990,13 +8990,13 @@ } ], "id": "course-of-action--5748c524-6ab1-4b5d-b0f0-d2e4e445d557", - "modified": "2021-01-06T18:28:39.822Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Visitor Control", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization:\n\n* **PE-8a.** Maintains visitor access records to the facility where the information system resides for [Assignment: organization-defined time period]; and\n* **PE-8b.** Reviews visitor access records [Assignment: organization-defined frequency].\n\nVisitor access records include, for example, names and organizations of persons visiting, visitor signatures, forms of identification, dates of access, entry and departure times, purposes of visits, and names and organizations of persons visited. Visitor access records are not required for publicly accessible areas.", "external_references": [ { @@ -9005,7 +9005,7 @@ } ], "id": "course-of-action--3d48742f-6d63-432b-8e16-6a4ec7fda080", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Visitor Access Records", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9017,7 +9017,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.949Z", "description": "The organization employs automated mechanisms to facilitate the maintenance and review of visitor access records.", "external_references": [ { @@ -9026,7 +9026,7 @@ } ], "id": "course-of-action--19c8a3a5-a1e9-4758-b1d2-c416c65007d4", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.949Z", "name": "Automated Records Maintenance / Review", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9036,7 +9036,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.950Z", "description": "[Withdrawn: Incorporated into PE-2].", "external_references": [ { @@ -9045,14 +9045,14 @@ } ], "id": "course-of-action--c119fbed-d87a-43a4-850d-956cfe27b72f", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Physical Access Records", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.950Z", "description": "The organization protects power equipment and power cabling for the information system from damage and destruction.\nOrganizations determine the types of protection necessary for power equipment and cabling employed at different locations both internal and external to organizational facilities and environments of operation. This includes, for example, generators and power cabling outside of buildings, internal cabling and uninterruptable power sources within an office or data center, and power sources for self-contained entities such as vehicles and satellites.", "external_references": [ { @@ -9061,7 +9061,7 @@ } ], "id": "course-of-action--a7212714-cefb-4b57-bbf3-f530735c4277", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Power Equipment And Cabling", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9072,7 +9072,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.950Z", "description": "The organization employs redundant power cabling paths that are physically separated by [Assignment: organization-defined distance].\nPhysically separate, redundant power cables help to ensure that power continues to flow in the event one of the cables is cut or otherwise damaged.", "external_references": [ { @@ -9081,14 +9081,14 @@ } ], "id": "course-of-action--f987c2d1-3fc0-497e-bab3-4a5d20236907", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Redundant Cabling", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.950Z", "description": "The organization employs automatic voltage controls for [Assignment: organization-defined critical information system components].", "external_references": [ { @@ -9097,14 +9097,14 @@ } ], "id": "course-of-action--7dd1ba99-0581-4294-94fc-2a17718c1e26", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Automatic Voltage Controls", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.823Z", + "created": "2021-01-13T01:50:48.950Z", "description": "The organization:\n\n* **PE-10a.** Provides the capability of shutting off power to the information system or individual system components in emergency situations;\n* **PE-10b.** Places emergency shutoff switches or devices in [Assignment: organization-defined location by information system or system component] to facilitate safe and easy access for personnel; and\n* **PE-10c.** Protects emergency power shutoff capability from unauthorized activation.\n\nThis control applies primarily to facilities containing concentrations of information system resources including, for example, data centers, server rooms, and mainframe computer rooms.", "external_references": [ { @@ -9113,7 +9113,7 @@ } ], "id": "course-of-action--ca9f70e5-afca-4d60-b977-176a88af7499", - "modified": "2021-01-06T18:28:39.823Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Emergency Shutoff", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9124,7 +9124,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.824Z", + "created": "2021-01-13T01:50:48.950Z", "description": "[Withdrawn: Incorporated into PE-10].", "external_references": [ { @@ -9133,14 +9133,14 @@ } ], "id": "course-of-action--c89ac3a1-95a6-479e-bf14-1d5dab0f16b4", - "modified": "2021-01-06T18:28:39.824Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Accidental / Unauthorized Activation", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.824Z", + "created": "2021-01-13T01:50:48.950Z", "description": "The organization provides a short-term uninterruptible power supply to facilitate [Selection (one or more): an orderly shutdown of the information system; transition of the information system to long-term alternate power] in the event of a primary power source loss.", "external_references": [ { @@ -9149,7 +9149,7 @@ } ], "id": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", - "modified": "2021-01-06T18:28:39.824Z", + "modified": "2021-01-13T01:50:48.950Z", "name": "Emergency Power", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9160,7 +9160,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.824Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization provides a long-term alternate power supply for the information system that is capable of maintaining minimally required operational capability in the event of an extended loss of the primary power source.\nThis control enhancement can be satisfied, for example, by the use of a secondary commercial power supply or other external power supply. Long-term alternate power supplies for the information system can be either manually or automatically activated.", "external_references": [ { @@ -9169,7 +9169,7 @@ } ], "id": "course-of-action--a6b78fb2-19b2-4cc5-9e37-4fed59e8dc2b", - "modified": "2021-01-06T18:28:39.824Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Long-Term Alternate Power Supply - Minimal Operational Capability", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9179,7 +9179,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.824Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization provides a long-term alternate power supply for the information system that is:\n\n* **PE-11 (2)(a)** Self-contained;\n* **PE-11 (2)(b)** Not reliant on external power generation; and\n* **PE-11 (2)(c)** Capable of maintaining [Selection: minimally required operational capability; full operational capability] in the event of an extended loss of the primary power source.\n\nThis control enhancement can be satisfied, for example, by the use of one or more generators with sufficient capacity to meet the needs of the organization. Long-term alternate power supplies for organizational information systems are either manually or automatically activated.", "external_references": [ { @@ -9188,14 +9188,14 @@ } ], "id": "course-of-action--cc31a370-9673-4f75-8c8a-a702d2aa037b", - "modified": "2021-01-06T18:28:39.824Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Long-Term Alternate Power Supply - Self-Contained", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.824Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization employs and maintains automatic emergency lighting for the information system that activates in the event of a power outage or disruption and that covers emergency exits and evacuation routes within the facility.\nThis control applies primarily to facilities containing concentrations of information system resources including, for example, data centers, server rooms, and mainframe computer rooms.", "external_references": [ { @@ -9204,7 +9204,7 @@ } ], "id": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", - "modified": "2021-01-06T18:28:39.824Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Emergency Lighting", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9216,7 +9216,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.825Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization provides emergency lighting for all areas within the facility supporting essential missions and business functions.", "external_references": [ { @@ -9225,14 +9225,14 @@ } ], "id": "course-of-action--06b39748-8045-45f1-b6fa-e17a80691702", - "modified": "2021-01-06T18:28:39.825Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Essential Missions / Business Functions", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.825Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization employs and maintains fire suppression and detection devices/systems for the information system that are supported by an independent energy source.\nThis control applies primarily to facilities containing concentrations of information system resources including, for example, data centers, server rooms, and mainframe computer rooms. Fire suppression and detection devices/systems include, for example, sprinkler systems, handheld fire extinguishers, fixed fire hoses, and smoke detectors.", "external_references": [ { @@ -9241,7 +9241,7 @@ } ], "id": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", - "modified": "2021-01-06T18:28:39.825Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Fire Protection", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9253,7 +9253,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.825Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization employs fire detection devices/systems for the information system that activate automatically and notify [Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders] in the event of a fire.\nOrganizations can identify specific personnel, roles, and emergency responders in the event that individuals on the notification list must have appropriate access authorizations and/or clearances, for example, to obtain access to facilities where classified operations are taking place or where there are information systems containing classified information.", "external_references": [ { @@ -9262,7 +9262,7 @@ } ], "id": "course-of-action--1f23b597-b04b-4a5b-8465-1116d42e7aec", - "modified": "2021-01-06T18:28:39.825Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Detection Devices / Systems", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9272,7 +9272,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.825Z", + "created": "2021-01-13T01:50:48.951Z", "description": "The organization employs fire suppression devices/systems for the information system that provide automatic notification of any activation to Assignment: organization-defined personnel or roles] and [Assignment: organization-defined emergency responders].\nOrganizations can identify specific personnel, roles, and emergency responders in the event that individuals on the notification list must have appropriate access authorizations and/or clearances, for example, to obtain access to facilities where classified operations are taking place or where there are information systems containing classified information.", "external_references": [ { @@ -9281,7 +9281,7 @@ } ], "id": "course-of-action--7c856805-e494-4d37-99d0-bb642c91176b", - "modified": "2021-01-06T18:28:39.825Z", + "modified": "2021-01-13T01:50:48.951Z", "name": "Suppression Devices / Systems", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9291,7 +9291,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.826Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization employs an automatic fire suppression capability for the information system when the facility is not staffed on a continuous basis.", "external_references": [ { @@ -9300,7 +9300,7 @@ } ], "id": "course-of-action--8e9b5509-b5cc-4837-b4d5-4bc021034050", - "modified": "2021-01-06T18:28:39.826Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Automatic Fire Suppression", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9311,7 +9311,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.826Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization ensures that the facility undergoes [Assignment: organization-defined frequency] inspections by authorized and qualified inspectors and resolves identified deficiencies within [Assignment: organization-defined time period].", "external_references": [ { @@ -9320,14 +9320,14 @@ } ], "id": "course-of-action--a62ca521-8564-43f2-8e46-8a15c67c5d32", - "modified": "2021-01-06T18:28:39.826Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Inspections", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.826Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization:\n\n* **PE-14a.** Maintains temperature and humidity levels within the facility where the information system resides at [Assignment: organization-defined acceptable levels]; and\n* **PE-14b.** Monitors temperature and humidity levels [Assignment: organization-defined frequency].\n\nThis control applies primarily to facilities containing concentrations of information system resources, for example, data centers, server rooms, and mainframe computer rooms.", "external_references": [ { @@ -9336,7 +9336,7 @@ } ], "id": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", - "modified": "2021-01-06T18:28:39.826Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Temperature And Humidity Controls", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9348,7 +9348,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization employs automatic temperature and humidity controls in the facility to prevent fluctuations potentially harmful to the information system.", "external_references": [ { @@ -9357,14 +9357,14 @@ } ], "id": "course-of-action--93cad613-f81d-4638-b70e-edca89d3fa8f", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Automatic Controls", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization employs temperature and humidity monitoring that provides an alarm or notification of changes potentially harmful to personnel or equipment.", "external_references": [ { @@ -9373,14 +9373,14 @@ } ], "id": "course-of-action--94c93bbc-0189-4799-8a5a-87767a2f6058", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Monitoring With Alarms / Notifications", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization protects the information system from damage resulting from water leakage by providing master shutoff or isolation valves that are accessible, working properly, and known to key personnel.\nThis control applies primarily to facilities containing concentrations of information system resources including, for example, data centers, server rooms, and mainframe computer rooms. Isolation valves can be employed in addition to or in lieu of master shutoff valves to shut off water supplies in specific areas of concern, without affecting entire organizations.", "external_references": [ { @@ -9389,7 +9389,7 @@ } ], "id": "course-of-action--1cef57a1-3242-4d2a-8d7c-5e2aba5c2868", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Water Damage Protection", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9401,7 +9401,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.952Z", "description": "The organization employs automated mechanisms to detect the presence of water in the vicinity of the information system and alerts [Assignment: organization-defined personnel or roles].\nAutomated mechanisms can include, for example, water detection sensors, alarms, and notification systems.", "external_references": [ { @@ -9410,7 +9410,7 @@ } ], "id": "course-of-action--13314c8d-134e-47d9-a781-e82781f02d13", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.952Z", "name": "Automation Support", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9420,7 +9420,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization authorizes, monitors, and controls [Assignment: organization-defined types of information system components] entering and exiting the facility and maintains records of those items.\nEffectively enforcing authorizations for entry and exit of information system components may require restricting access to delivery areas and possibly isolating the areas from the information system and media libraries.", "external_references": [ { @@ -9429,7 +9429,7 @@ } ], "id": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Delivery And Removal", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9441,7 +9441,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.827Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization:\n\n* **PE-17a.** Employs [Assignment: organization-defined security controls] at alternate work sites;\n* **PE-17b.** Assesses as feasible, the effectiveness of security controls at alternate work sites; and\n* **PE-17c.** Provides a means for employees to communicate with information security personnel in case of security incidents or problems.\n\nAlternate work sites may include, for example, government facilities or private residences of employees. While commonly distinct from alternative processing sites, alternate work sites may provide readily available alternate locations as part of contingency operations. Organizations may define different sets of security controls for specific alternate work sites or types of sites depending on the work-related activities conducted at those sites. This control supports the contingency planning activities of organizations and the federal telework initiative.", "external_references": [ { @@ -9450,7 +9450,7 @@ } ], "id": "course-of-action--a86bdbd9-e76b-4564-89ba-47ea249cdc01", - "modified": "2021-01-06T18:28:39.827Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Alternate Work Site", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9461,7 +9461,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization positions information system components within the facility to minimize potential damage from [Assignment: organization-defined physical and environmental hazards] and to minimize the opportunity for unauthorized access.\nPhysical and environmental hazards include, for example, flooding, fire, tornados, earthquakes, hurricanes, acts of terrorism, vandalism, electromagnetic pulse, electrical interference, and other forms of incoming electromagnetic radiation. In addition, organizations consider the location of physical entry points where unauthorized individuals, while not being granted access, might nonetheless be in close proximity to information systems and therefore increase the potential for unauthorized access to organizational communications (e.g., through the use of wireless sniffers or microphones).", "external_references": [ { @@ -9470,7 +9470,7 @@ } ], "id": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Location Of Information System Components", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", @@ -9480,7 +9480,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization plans the location or site of the facility where the information system resides with regard to physical and environmental hazards and for existing facilities, considers the physical and environmental hazards in its risk mitigation strategy.", "external_references": [ { @@ -9489,14 +9489,14 @@ } ], "id": "course-of-action--10cebdc9-6b42-4e01-832a-3c67e6e6f1f1", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Facility Site", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization protects the information system from information leakage due to electromagnetic signals emanations.\nInformation leakage is the intentional or unintentional release of information to an untrusted environment from electromagnetic signals emanations. Security categories or classifications of information systems (with respect to confidentiality) and organizational security policies guide the selection of security controls employed to protect systems against information leakage due to electromagnetic signals emanations.", "external_references": [ { @@ -9505,14 +9505,14 @@ } ], "id": "course-of-action--55747843-3102-4363-815a-0fad0d8b4cbe", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Information Leakage", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization ensures that information system components, associated data communications, and networks are protected in accordance with national emissions and TEMPEST policies and procedures based on the security category or classification of the information.", "external_references": [ { @@ -9521,14 +9521,14 @@ } ], "id": "course-of-action--2dfd7eb4-10e1-4621-831b-2124006b1bf1", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "National Emissions / Tempest Policies And Procedures", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.953Z", "description": "The organization:\n\n* **PE-20a.** Employs [Assignment: organization-defined asset location technologies] to track and monitor the location and movement of [Assignment: organization-defined assets] within [Assignment: organization-defined controlled areas]; and\n* **PE-20b.** Ensures that asset location technologies are employed in accordance with applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance.\n\nAsset location technologies can help organizations ensure that critical assets such as vehicles or essential information system components remain in authorized locations. Organizations consult with the Office of the General Counsel and the Senior Agency Official for Privacy (SAOP)/Chief Privacy Officer (CPO) regarding the deployment and use of asset location technologies to address potential privacy concerns.", "external_references": [ { @@ -9537,14 +9537,14 @@ } ], "id": "course-of-action--822c3c3f-0f9b-42f2-bf84-9ff7b3ca4a39", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.953Z", "name": "Asset Monitoring And Tracking", "type": "course-of-action", "x_mitre_family": "Physical And Environmental Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.954Z", "description": "The organization:\n\n* **PL-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **PL-1a.1.** A security planning policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **PL-1a.2.** Procedures to facilitate the implementation of the security planning policy and associated security planning controls; and\n* **PL-1b.** Reviews and updates the current:\n * **PL-1b.1.** Security planning policy [Assignment: organization-defined frequency]; and\n * **PL-1b.2.** Security planning procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the PL family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -9553,7 +9553,7 @@ } ], "id": "course-of-action--26e26e62-29ee-4274-af3d-e20d83c7656d", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "Security Planning Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9565,7 +9565,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.828Z", + "created": "2021-01-13T01:50:48.954Z", "description": "The organization:\n\n* **PL-2a.** Develops a security plan for the information system that:\n * **PL-2a.1.** Is consistent with the organization\u00ef\u00bf\u00bds enterprise architecture;\n * **PL-2a.2.** Explicitly defines the authorization boundary for the system;\n * **PL-2a.3.** Describes the operational context of the information system in terms of missions and business processes;\n * **PL-2a.4.** Provides the security categorization of the information system including supporting rationale;\n * **PL-2a.5.** Describes the operational environment for the information system and relationships with or connections to other information systems;\n * **PL-2a.6.** Provides an overview of the security requirements for the system;\n * **PL-2a.7.** Identifies any relevant overlays, if applicable;\n * **PL-2a.8.** Describes the security controls in place or planned for meeting those requirements including a rationale for the tailoring decisions; and\n * **PL-2a.9.** Is reviewed and approved by the authorizing official or designated representative prior to plan implementation;\n* **PL-2b.** Distributes copies of the security plan and communicates subsequent changes to the plan to [Assignment: organization-defined personnel or roles];\n* **PL-2c.** Reviews the security plan for the information system [Assignment: organization-defined frequency];\n* **PL-2d.** Updates the plan to address changes to the information system/environment of operation or problems identified during plan implementation or security control assessments; and\n* **PL-2e.** Protects the security plan from unauthorized disclosure and modification.\n\nSecurity plans relate security requirements to a set of security controls and control enhancements. Security plans also describe, at a high level, how the security controls and control enhancements meet those security requirements, but do not provide detailed, technical descriptions of the specific design or implementation of the controls/enhancements. Security plans contain sufficient information (including the specification of parameter values for assignment and selection statements either explicitly or by reference) to enable a design and implementation that is unambiguously compliant with the intent of the plans and subsequent determinations of risk to organizational operations and assets, individuals, other organizations, and the Nation if the plan is implemented as intended. Organizations can also apply tailoring guidance to the security control baselines in Appendix D and CNSS Instruction 1253 to develop overlays for community-wide use or to address specialized requirements, technologies, or missions/environments of operation (e.g., DoD-tactical, Federal Public Key Infrastructure, or Federal Identity, Credential, and Access Management, space operations). Appendix I provides guidance on developing overlays. Security plans need not be single documents; the plans can be a collection of various documents including documents that already exist. Effective security plans make extensive use of references to policies, procedures, and additional documents (e.g., design and implementation specifications) where more detailed information can be obtained. This reduces the documentation requirements associated with security programs and maintains security-related information in other established management/operational areas related to enterprise architecture, system development life cycle, systems engineering, and acquisition. For example, security plans do not contain detailed contingency plan or incident response plan information but instead provide explicitly or by reference, sufficient information to define what needs to be accomplished by those plans.", "external_references": [ { @@ -9574,7 +9574,7 @@ } ], "id": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", - "modified": "2021-01-06T18:28:39.828Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "System Security Plan", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9586,7 +9586,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.954Z", "description": "[Withdrawn: Incorporated into PL-7].", "external_references": [ { @@ -9595,14 +9595,14 @@ } ], "id": "course-of-action--6e488068-567e-48fe-a233-fdfdf13dfa81", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "Concept Of Operations", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.954Z", "description": "[Withdrawn: Incorporated into PL-8].", "external_references": [ { @@ -9611,14 +9611,14 @@ } ], "id": "course-of-action--08ef9aaf-40e7-4887-9709-7d6a70f44039", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "Functional Architecture", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.954Z", "description": "The organization plans and coordinates security-related activities affecting the information system with [Assignment: organization-defined individuals or groups] before conducting such activities in order to reduce the impact on other organizational entities.\nSecurity-related activities include, for example, security assessments, audits, hardware and software maintenance, patch management, and contingency plan testing. Advance planning and coordination includes emergency and nonemergency (i.e., planned or nonurgent unplanned) situations. The process defined by organizations to plan and coordinate security-related activities can be included in security plans for information systems or other documents, as appropriate.", "external_references": [ { @@ -9627,7 +9627,7 @@ } ], "id": "course-of-action--ec9533d6-9fbc-4845-9bbe-2689e24b17cb", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "Plan / Coordinate With Other Organizational Entities", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9638,7 +9638,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.954Z", "description": "[Withdrawn: Incorporated into PL-2].", "external_references": [ { @@ -9647,13 +9647,13 @@ } ], "id": "course-of-action--503406cd-48b4-44b7-a851-eb5a3fe938ec", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "System Security Plan Update", "type": "course-of-action", "x_mitre_family": "Planning" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.954Z", "description": "The organization:\n\n* **PL-4a.** Establishes and makes readily available to individuals requiring access to the information system, the rules that describe their responsibilities and expected behavior with regard to information and information system usage;\n* **PL-4b.** Receives a signed acknowledgment from such individuals, indicating that they have read, understand, and agree to abide by the rules of behavior, before authorizing access to information and the information system;\n* **PL-4c.** Reviews and updates the rules of behavior [Assignment: organization-defined frequency]; and\n* **PL-4d.** Requires individuals who have signed a previous version of the rules of behavior to read and re-sign when the rules of behavior are revised/updated.\n\nThis control enhancement applies to organizational users. Organizations consider rules of behavior based on individual user roles and responsibilities, differentiating, for example, between rules that apply to privileged users and rules that apply to general users. Establishing rules of behavior for some types of non-organizational users including, for example, individuals who simply receive data/information from federal information systems, is often not feasible given the large number of such users and the limited nature of their interactions with the systems. Rules of behavior for both organizational and non-organizational users can also be established in AC-8, System Use Notification. PL-4 b. (the signed acknowledgment portion of this control) may be satisfied by the security awareness training and role-based security training programs conducted by organizations if such training includes rules of behavior. Organizations can use electronic signatures for acknowledging rules of behavior.", "external_references": [ { @@ -9662,7 +9662,7 @@ } ], "id": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.954Z", "name": "Rules Of Behavior", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9674,7 +9674,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization includes in the rules of behavior, explicit restrictions on the use of social media/networking sites and posting organizational information on public websites.\nThis control enhancement addresses rules of behavior related to the use of social media/networking sites: (i) when organizational personnel are using such sites for official duties or in the conduct of official business; (ii) when organizational information is involved in social media/networking transactions; and (iii) when personnel are accessing social media/networking sites from organizational information systems. Organizations also address specific rules that prevent unauthorized entities from obtaining and/or inferring non-public organizational information (e.g., system account information, personally identifiable information) from social media/networking sites.", "external_references": [ { @@ -9683,7 +9683,7 @@ } ], "id": "course-of-action--4e0a45ea-75b2-49ca-aa5a-e059f66a0312", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Social Media And Networking Restrictions", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9694,7 +9694,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.829Z", + "created": "2021-01-13T01:50:48.955Z", "description": "[Withdrawn: Incorporated into Appendix J, AR-2].", "external_references": [ { @@ -9703,13 +9703,13 @@ } ], "id": "course-of-action--dd394ecb-e5c5-435f-b56d-22172651b9ff", - "modified": "2021-01-06T18:28:39.829Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Privacy Impact Assessment", "type": "course-of-action", "x_mitre_family": "Planning" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "[Withdrawn: Incorporated into PL-2].", "external_references": [ { @@ -9718,13 +9718,13 @@ } ], "id": "course-of-action--271deaf2-5bc7-4e5b-8a04-686a30f427eb", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Security-Related Activity Planning", "type": "course-of-action", "x_mitre_family": "Planning" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization:\n\n* **PL-7a.** Develops a security Concept of Operations (CONOPS) for the information system containing at a minimum, how the organization intends to operate the system from the perspective of information security; and\n* **PL-7b.** Reviews and updates the CONOPS [Assignment: organization-defined frequency].\n\nThe security CONOPS may be included in the security plan for the information system or in other system development life cycle-related documents, as appropriate. Changes to the CONOPS are reflected in ongoing updates to the security plan, the information security architecture, and other appropriate organizational documents (e.g., security specifications for procurements/acquisitions, system development life cycle documents, and systems/security engineering documents).", "external_references": [ { @@ -9733,14 +9733,14 @@ } ], "id": "course-of-action--e40125a2-f3a2-4177-9ee5-d3dc40b3bc94", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Security Concept Of Operations", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization:\n\n* **PL-8a.** Develops an information security architecture for the information system that:\n * **PL-8a.1.** Describes the overall philosophy, requirements, and approach to be taken with regard to protecting the confidentiality, integrity, and availability of organizational information;\n * **PL-8a.2.** Describes how the information security architecture is integrated into and supports the enterprise architecture; and\n * **PL-8a.3.** Describes any information security assumptions about, and dependencies on, external services;\n* **PL-8b.** Reviews and updates the information security architecture [Assignment: organization-defined frequency] to reflect updates in the enterprise architecture; and\n* **PL-8c.** Ensures that planned information security architecture changes are reflected in the security plan, the security Concept of Operations (CONOPS), and organizational procurements/acquisitions.\n\nThis control addresses actions taken by organizations in the design and development of information systems. The information security architecture at the individual information system level is consistent with and complements the more global, organization-wide information security architecture described in PM-7 that is integral to and developed as part of the enterprise architecture. The information security architecture includes an architectural description, the placement/allocation of security functionality (including security controls), security-related information for external interfaces, information being exchanged across the interfaces, and the protection mechanisms associated with each interface. In addition, the security architecture can include other important security-related information, for example, user roles and access privileges assigned to each role, unique security requirements, the types of information processed, stored, and transmitted by the information system, restoration priorities of information and information system services, and any other specific protection needs. In today\u00ef\u00bf\u00bds modern architecture, it is becoming less common for organizations to control all information resources. There are going to be key dependencies on external information services and service providers. Describing such dependencies in the information security architecture is important to developing a comprehensive mission/business protection strategy. Establishing, developing, documenting, and maintaining under configuration control, a baseline configuration for organizational information systems is critical to implementing and maintaining an effective information security architecture. The development of the information security architecture is coordinated with the Senior Agency Official for Privacy (SAOP)/Chief Privacy Officer (CPO) to ensure that security controls needed to support privacy requirements are identified and effectively implemented. PL-8 is primarily directed at organizations (i.e., internally focused) to help ensure that organizations develop an information security architecture for the information system, and that the security architecture is integrated with or tightly coupled to the enterprise architecture through the organization-wide information security architecture. In contrast, SA-17 is primarily directed at external information technology product/system developers and integrators (although SA-17 could be used internally within organizations for in-house system development). SA-17, which is complementary to PL-8, is selected when organizations outsource the development of information systems or information system components to external entities, and there is a need to demonstrate/show consistency with the organization\u00ef\u00bf\u00bds enterprise architecture and information security architecture.", "external_references": [ { @@ -9749,7 +9749,7 @@ } ], "id": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Information Security Architecture", "type": "course-of-action", "x_mitre_family": "Planning", @@ -9760,7 +9760,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization designs its security architecture using a defense-in-depth approach that:\n\n* **PL-8 (1)(a)** Allocates [Assignment: organization-defined security safeguards] to [Assignment: organization-defined locations and architectural layers]; and\n* **PL-8 (1)(b)** Ensures that the allocated security safeguards operate in a coordinated and mutually reinforcing manner.\n\nOrganizations strategically allocate security safeguards (procedural, technical, or both) in the security architecture so that adversaries have to overcome multiple safeguards to achieve their objective. Requiring adversaries to defeat multiple mechanisms makes it more difficult to successfully attack critical information resources (i.e., increases adversary work factor) and also increases the likelihood of detection. The coordination of allocated safeguards is essential to ensure that an attack that involves one safeguard does not create adverse unintended consequences (e.g., lockout, cascading alarms) by interfering with another safeguard. Placement of security safeguards is a key activity. Greater asset criticality or information value merits additional layering. Thus, an organization may choose to place anti-virus software at organizational boundary layers, email/web servers, notebook computers, and workstations to maximize the number of related safeguards adversaries must penetrate before compromising the information and information systems.", "external_references": [ { @@ -9769,14 +9769,14 @@ } ], "id": "course-of-action--fee898d2-1192-4ff3-9e8b-77673258c4b7", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Defense-In-Depth", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization requires that [Assignment: organization-defined security safeguards] allocated to [Assignment: organization-defined locations and architectural layers] are obtained from different suppliers.\nDifferent information technology products have different strengths and weaknesses. Providing a broad spectrum of products complements the individual offerings. For example, vendors offering malicious code protection typically update their products at different times, often developing solutions for known viruses, Trojans, or worms according to their priorities and development schedules. By having different products at different locations (e.g., server, boundary, desktop) there is an increased likelihood that at least one will detect the malicious code.", "external_references": [ { @@ -9785,14 +9785,14 @@ } ], "id": "course-of-action--30005af5-0218-4d18-904e-8e3723f6df72", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Supplier Diversity", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization centrally manages [Assignment: organization-defined security controls and related processes].\nCentral management refers to the organization-wide management and implementation of selected security controls and related processes. Central management includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed security controls and processes. As central management of security controls is generally associated with common controls, such management promotes and facilitates standardization of security control implementations and management and judicious use of organizational resources. Centrally-managed security controls and processes may also meet independence requirements for assessments in support of initial and ongoing authorizations to operate as part of organizational continuous monitoring. As part of the security control selection process, organizations determine which controls may be suitable for central management based on organizational resources and capabilities. Organizations consider that it may not always be possible to centrally manage every aspect of a security control. In such cases, the security control is treated as a hybrid control with the control managed and implemented either centrally or at the information system level. Controls and control enhancements that are candidates for full or partial central management include, but are not limited to: AC-2 (1) (2) (3) (4); AC-17 (1) (2) (3) (9); AC-18 (1) (3) (4) (5); AC-19 (4); AC-22; AC-23; AT-2 (1) (2); AT-3 (1) (2) (3); AT-4; AU-6 (1) (3) (5) (6) (9); AU-7 (1) (2); AU-11, AU-13, AU-16, CA-2 (1) (2) (3); CA-3 (1) (2) (3); CA-7 (1); CA-9; CM-2 (1) (2); CM-3 (1) (4); CM-4; CM-6 (1); CM-7 (4) (5); CM-8 (all); CM-9 (1); CM-10; CM-11; CP-7 (all); CP-8 (all); SC-43; SI-2; SI-3; SI-7; and SI-8.", "external_references": [ { @@ -9801,14 +9801,14 @@ } ], "id": "course-of-action--659e8dc2-8385-459c-80fc-b9c2dd798c2e", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Central Management", "type": "course-of-action", "x_mitre_family": "Planning", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization:\n\n* **PS-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **PS-1a.1.** A personnel security policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **PS-1a.2.** Procedures to facilitate the implementation of the personnel security policy and associated personnel security controls; and\n* **PS-1b.** Reviews and updates the current:\n * **PS-1b.1.** Personnel security policy [Assignment: organization-defined frequency]; and\n * **PS-1b.2.** Personnel security procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the PS family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -9817,7 +9817,7 @@ } ], "id": "course-of-action--5c5c83e6-a2a0-488d-86f9-5c58440a8c3c", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Personnel Security Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9829,7 +9829,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization:\n\n* **PS-2a.** Assigns a risk designation to all organizational positions;\n* **PS-2b.** Establishes screening criteria for individuals filling those positions; and\n* **PS-2c.** Reviews and updates position risk designations [Assignment: organization-defined frequency].\n\nPosition risk designations reflect Office of Personnel Management policy and guidance. Risk designations can guide and inform the types of authorizations individuals receive when accessing organizational information and information systems. Position screening criteria include explicit information security role appointment requirements (e.g., training, security clearances).", "external_references": [ { @@ -9838,7 +9838,7 @@ } ], "id": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Position Risk Designation", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9850,7 +9850,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization:\n\n* **PS-3a.** Screens individuals prior to authorizing access to the information system; and\n* **PS-3b.** Rescreens individuals according to [Assignment: organization-defined conditions requiring rescreening and, where rescreening is so indicated, the frequency of such rescreening].\n\nPersonnel screening and rescreening activities reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, guidance, and specific criteria established for the risk designations of assigned positions. Organizations may define different rescreening conditions and frequencies for personnel accessing information systems based on types of information processed, stored, or transmitted by the systems.", "external_references": [ { @@ -9859,7 +9859,7 @@ } ], "id": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Personnel Screening", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9871,7 +9871,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization ensures that individuals accessing an information system processing, storing, or transmitting classified information are cleared and indoctrinated to the highest classification level of the information to which they have access on the system.", "external_references": [ { @@ -9880,14 +9880,14 @@ } ], "id": "course-of-action--6c9a732d-09b7-48a6-9cde-c003b82c3f57", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Classified Information", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.956Z", "description": "The organization ensures that individuals accessing an information system processing, storing, or transmitting types of classified information which require formal indoctrination, are formally indoctrinated for all of the relevant types of information to which they have access on the system.\nTypes of classified information requiring formal indoctrination include, for example, Special Access Program (SAP), Restricted Data (RD), and Sensitive Compartment Information (SCI).", "external_references": [ { @@ -9896,14 +9896,14 @@ } ], "id": "course-of-action--2978ea3c-51eb-493d-bb79-27f6b2930914", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.956Z", "name": "Formal Indoctrination", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization ensures that individuals accessing an information system processing, storing, or transmitting information requiring special protection:\n\n* **PS-3 (3)(a)** Have valid access authorizations that are demonstrated by assigned official government duties; and\n* **PS-3 (3)(b)** Satisfy [Assignment: organization-defined additional personnel screening criteria].\n\nOrganizational information requiring special protection includes, for example, Controlled Unclassified Information (CUI) and Sources and Methods Information (SAMI). Personnel security criteria include, for example, position sensitivity background screening requirements.", "external_references": [ { @@ -9912,14 +9912,14 @@ } ], "id": "course-of-action--fc202adf-2d7e-419b-9244-496893b8cec3", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Information With Special Protection Measures", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.831Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization, upon termination of individual employment:\n\n* **PS-4a.** Disables information system access within [Assignment: organization-defined time period];\n* **PS-4b.** Terminates/revokes any authenticators/credentials associated with the individual;\n* **PS-4c.** Conducts exit interviews that include a discussion of [Assignment: organization-defined information security topics];\n* **PS-4d.** Retrieves all security-related organizational information system-related property;\n* **PS-4e.** Retains access to organizational information and information systems formerly controlled by terminated individual; and\n* **PS-4f.** Notifies [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period].\n\nInformation system-related property includes, for example, hardware authentication tokens, system administration technical manuals, keys, identification cards, and building passes. Exit interviews ensure that terminated individuals understand the security constraints imposed by being former employees and that proper accountability is achieved for information system-related property. Security topics of interest at exit interviews can include, for example, reminding terminated individuals of nondisclosure agreements and potential limitations on future employment. Exit interviews may not be possible for some terminated individuals, for example, in cases related to job abandonment, illnesses, and nonavailability of supervisors. Exit interviews are important for individuals with security clearances. Timely execution of termination actions is essential for individuals terminated for cause. In certain situations, organizations consider disabling the information system accounts of individuals that are being terminated prior to the individuals being notified.", "external_references": [ { @@ -9928,7 +9928,7 @@ } ], "id": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", - "modified": "2021-01-06T18:28:39.831Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Personnel Termination", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9940,7 +9940,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.832Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization:\n\n* **PS-4 (1)(a)** Notifies terminated individuals of applicable, legally binding post-employment requirements for the protection of organizational information; and\n* **PS-4 (1)(b)** Requires terminated individuals to sign an acknowledgment of post-employment requirements as part of the organizational termination process.\n\nOrganizations consult with the Office of the General Counsel regarding matters of post-employment requirements on terminated individuals.", "external_references": [ { @@ -9949,14 +9949,14 @@ } ], "id": "course-of-action--58fd0570-7c05-4d65-891c-8ed42855ef5a", - "modified": "2021-01-06T18:28:39.832Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Post-Employment Requirements", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.832Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization employs automated mechanisms to notify [Assignment: organization-defined personnel or roles] upon termination of an individual.\nIn organizations with a large number of employees, not all personnel who need to know about termination actions receive the appropriate notifications\u00ef\u00bf\u00bdor, if such notifications are received, they may not occur in a timely manner. Automated mechanisms can be used to send automatic alerts or notifications to specific organizational personnel or roles (e.g., management personnel, supervisors, personnel security officers, information security officers, systems administrators, or information technology administrators) when individuals are terminated. Such automatic alerts or notifications can be conveyed in a variety of ways, including, for example, telephonically, via electronic mail, via text message, or via websites.", "external_references": [ { @@ -9965,7 +9965,7 @@ } ], "id": "course-of-action--187b2e93-7776-4cbc-a66e-f8732db9cf68", - "modified": "2021-01-06T18:28:39.832Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Automated Notification", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9975,7 +9975,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.832Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization:\n\n* **PS-5a.** Reviews and confirms ongoing operational need for current logical and physical access authorizations to information systems/facilities when individuals are reassigned or transferred to other positions within the organization;\n* **PS-5b.** Initiates [Assignment: organization-defined transfer or reassignment actions] within [Assignment: organization-defined time period following the formal transfer action];\n* **PS-5c.** Modifies access authorization as needed to correspond with any changes in operational need due to reassignment or transfer; and\n* **PS-5d.** Notifies [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period].\n\nThis control applies when reassignments or transfers of individuals are permanent or of such extended durations as to make the actions warranted. Organizations define actions appropriate for the types of reassignments or transfers, whether permanent or extended. Actions that may be required for personnel transfers or reassignments to other positions within organizations include, for example: (i) returning old and issuing new keys, identification cards, and building passes; (ii) closing information system accounts and establishing new accounts; (iii) changing information system access authorizations (i.e., privileges); and (iv) providing for access to official records to which individuals had access at previous work locations and in previous information system accounts.", "external_references": [ { @@ -9984,7 +9984,7 @@ } ], "id": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", - "modified": "2021-01-06T18:28:39.832Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Personnel Transfer", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -9996,7 +9996,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.832Z", + "created": "2021-01-13T01:50:48.957Z", "description": "The organization:\n\n* **PS-6a.** Develops and documents access agreements for organizational information systems;\n* **PS-6b.** Reviews and updates the access agreements [Assignment: organization-defined frequency]; and\n* **PS-6c.** Ensures that individuals requiring access to organizational information and information systems:\n * **PS-6c.1.** Sign appropriate access agreements prior to being granted access; and\n * **PS-6c.2.** Re-sign access agreements to maintain access to organizational information systems when access agreements have been updated or [Assignment: organization-defined frequency].\n\nAccess agreements include, for example, nondisclosure agreements, acceptable use agreements, rules of behavior, and conflict-of-interest agreements. Signed access agreements include an acknowledgement that individuals have read, understand, and agree to abide by the constraints associated with organizational information systems to which access is authorized. Organizations can use electronic signatures to acknowledge access agreements unless specifically prohibited by organizational policy.", "external_references": [ { @@ -10005,7 +10005,7 @@ } ], "id": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", - "modified": "2021-01-06T18:28:39.832Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Access Agreements", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -10017,7 +10017,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.957Z", "description": "[Withdrawn: Incorporated into PS-3].", "external_references": [ { @@ -10026,14 +10026,14 @@ } ], "id": "course-of-action--5ebc0507-1e83-4119-8d12-01ad2067e12e", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.957Z", "name": "Information Requiring Special Protection", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization ensures that access to classified information requiring special protection is granted only to individuals who:\n\n* **PS-6 (2)(a)** Have a valid access authorization that is demonstrated by assigned official government duties;\n* **PS-6 (2)(b)** Satisfy associated personnel security criteria; and\n* **PS-6 (2)(c)** Have read, understood, and signed a nondisclosure agreement.\n\nClassified information requiring special protection includes, for example, collateral information, Special Access Program (SAP) information, and Sensitive Compartmented Information (SCI). Personnel security criteria reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance.", "external_references": [ { @@ -10042,14 +10042,14 @@ } ], "id": "course-of-action--63c8bd7d-380e-44a9-8dff-173aa5febbb5", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Classified Information Requiring Special Protection", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization:\n\n* **PS-6 (3)(a)** Notifies individuals of applicable, legally binding post-employment requirements for protection of organizational information; and\n* **PS-6 (3)(b)** Requires individuals to sign an acknowledgment of these requirements, if applicable, as part of granting initial access to covered information.\n\nOrganizations consult with the Office of the General Counsel regarding matters of post-employment requirements on terminated individuals.", "external_references": [ { @@ -10058,14 +10058,14 @@ } ], "id": "course-of-action--8a786907-b895-448c-9035-c961020ee162", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Post-Employment Requirements", "type": "course-of-action", "x_mitre_family": "Personnel Security", "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization:\n\n* **PS-7a.** Establishes personnel security requirements including security roles and responsibilities for third-party providers;\n* **PS-7b.** Requires third-party providers to comply with personnel security policies and procedures established by the organization;\n* **PS-7c.** Documents personnel security requirements;\n* **PS-7d.** Requires third-party providers to notify [Assignment: organization-defined personnel or roles] of any personnel transfers or terminations of third-party personnel who possess organizational credentials and/or badges, or who have information system privileges within [Assignment: organization-defined time period]; and\n* **PS-7e.** Monitors provider compliance.\n\nThird-party providers include, for example, service bureaus, contractors, and other organizations providing information system development, information technology services, outsourced applications, and network and security management. Organizations explicitly include personnel security requirements in acquisition-related documents. Third-party providers may have personnel working at organizational facilities with credentials, badges, or information system privileges issued by organizations. Notifications of third-party personnel changes ensure appropriate termination of privileges and credentials. Organizations define the transfers and terminations deemed reportable by security-related characteristics that include, for example, functions, roles, and nature of credentials/privileges associated with individuals transferred or terminated.", "external_references": [ { @@ -10074,7 +10074,7 @@ } ], "id": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Third-Party Personnel Security", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -10086,7 +10086,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization:\n\n* **PS-8a.** Employs a formal sanctions process for individuals failing to comply with established information security policies and procedures; and\n* **PS-8b.** Notifies [Assignment: organization-defined personnel or roles] within [Assignment: organization-defined time period] when a formal employee sanctions process is initiated, identifying the individual sanctioned and the reason for the sanction.\n\nOrganizational sanctions processes reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Sanctions processes are described in access agreements and can be included as part of general personnel policies and procedures for organizations. Organizations consult with the Office of the General Counsel regarding matters of employee sanctions.", "external_references": [ { @@ -10095,7 +10095,7 @@ } ], "id": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Personnel Sanctions", "type": "course-of-action", "x_mitre_family": "Personnel Security", @@ -10107,7 +10107,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.833Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization:\n\n* **RA-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **RA-1a.1.** A risk assessment policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **RA-1a.2.** Procedures to facilitate the implementation of the risk assessment policy and associated risk assessment controls; and\n* **RA-1b.** Reviews and updates the current:\n * **RA-1b.1.** Risk assessment policy [Assignment: organization-defined frequency]; and\n * **RA-1b.2.** Risk assessment procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the RA family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -10116,7 +10116,7 @@ } ], "id": "course-of-action--418ec7e3-16b8-4d1d-bae1-c3e7647cce8b", - "modified": "2021-01-06T18:28:39.833Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Risk Assessment Policy And Procedures", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10128,7 +10128,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.958Z", "description": "The organization:\n\n* **RA-2a.** Categorizes information and the information system in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance;\n* **RA-2b.** Documents the security categorization results (including supporting rationale) in the security plan for the information system; and\n* **RA-2c.** Ensures that the authorizing official or authorizing official designated representative reviews and approves the security categorization decision.\n\nClearly defined authorization boundaries are a prerequisite for effective security categorization decisions. Security categories describe the potential adverse impacts to organizational operations, organizational assets, and individuals if organizational information and information systems are comprised through a loss of confidentiality, integrity, or availability. Organizations conduct the security categorization process as an organization-wide activity with the involvement of chief information officers, senior information security officers, information system owners, mission/business owners, and information owners/stewards. Organizations also consider the potential adverse impacts to other organizations and, in accordance with the USA PATRIOT Act of 2001 and Homeland Security Presidential Directives, potential national-level adverse impacts. Security categorization processes carried out by organizations facilitate the development of inventories of information assets, and along with CM-8, mappings to specific information system components where information is processed, stored, or transmitted.", "external_references": [ { @@ -10137,7 +10137,7 @@ } ], "id": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.958Z", "name": "Security Categorization", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10149,7 +10149,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization:\n\n* **RA-3a.** Conducts an assessment of risk, including the likelihood and magnitude of harm, from the unauthorized access, use, disclosure, disruption, modification, or destruction of the information system and the information it processes, stores, or transmits;\n* **RA-3b.** Documents risk assessment results in [Selection: security plan; risk assessment report; [Assignment: organization-defined document]];\n* **RA-3c.** Reviews risk assessment results [Assignment: organization-defined frequency];\n* **RA-3d.** Disseminates risk assessment results to [Assignment: organization-defined personnel or roles]; and\n* **RA-3e.** Updates the risk assessment [Assignment: organization-defined frequency] or whenever there are significant changes to the information system or environment of operation (including the identification of new threats and vulnerabilities), or other conditions that may impact the security state of the system.\n\nClearly defined authorization boundaries are a prerequisite for effective risk assessments. Risk assessments take into account threats, vulnerabilities, likelihood, and impact to organizational operations and assets, individuals, other organizations, and the Nation based on the operation and use of information systems. Risk assessments also take into account risk from external parties (e.g., service providers, contractors operating information systems on behalf of the organization, individuals accessing organizational information systems, outsourcing entities). In accordance with OMB policy and related E-authentication initiatives, authentication of public users accessing federal information systems may also be required to protect nonpublic or privacy-related information. As such, organizational assessments of risk also address public access to federal information systems. Risk assessments (either formal or informal) can be conducted at all three tiers in the risk management hierarchy (i.e., organization level, mission/business process level, or information system level) and at any phase in the system development life cycle. Risk assessments can also be conducted at various steps in the Risk Management Framework, including categorization, security control selection, security control implementation, security control assessment, information system authorization, and security control monitoring. RA-3 is noteworthy in that the control must be partially implemented prior to the implementation of other controls in order to complete the first two steps in the Risk Management Framework. Risk assessments can play an important role in security control selection processes, particularly during the application of tailoring guidance, which includes security control supplementation.", "external_references": [ { @@ -10158,7 +10158,7 @@ } ], "id": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Risk Assessment", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10170,7 +10170,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "[Withdrawn: Incorporated into RA-3].", "external_references": [ { @@ -10179,13 +10179,13 @@ } ], "id": "course-of-action--03d18ffd-470e-4976-8228-f80cda42bb43", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Risk Assessment Update", "type": "course-of-action", "x_mitre_family": "Risk Assessment" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization:\n\n* **RA-5a.** Scans for vulnerabilities in the information system and hosted applications [Assignment: organization-defined frequency and/or randomly in accordance with organization-defined process] and when new vulnerabilities potentially affecting the system/applications are identified and reported;\n* **RA-5b.** Employs vulnerability scanning tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:\n * **RA-5b.1.** Enumerating platforms, software flaws, and improper configurations;\n * **RA-5b.2.** Formatting checklists and test procedures; and\n * **RA-5b.3.** Measuring vulnerability impact;\n* **RA-5c.** Analyzes vulnerability scan reports and results from security control assessments;\n* **RA-5d.** Remediates legitimate vulnerabilities [Assignment: organization-defined response times] in accordance with an organizational assessment of risk; and\n* **RA-5e.** Shares information obtained from the vulnerability scanning process and security control assessments with [Assignment: organization-defined personnel or roles] to help eliminate similar vulnerabilities in other information systems (i.e., systemic weaknesses or deficiencies).\n\nSecurity categorization of information systems guides the frequency and comprehensiveness of vulnerability scans. Organizations determine the required vulnerability scanning for all information system components, ensuring that potential sources of vulnerabilities such as networked printers, scanners, and copiers are not overlooked. Vulnerability analyses for custom software applications may require additional approaches such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Organizations can employ these analysis approaches in a variety of tools (e.g., web-based application scanners, static analysis tools, binary analyzers) and in source code reviews. Vulnerability scanning includes, for example: (i) scanning for patch levels; (ii) scanning for functions, ports, protocols, and services that should not be accessible to users or devices; and (iii) scanning for improperly configured or incorrectly operating information flow control mechanisms. Organizations consider using tools that express vulnerabilities in the Common Vulnerabilities and Exposures (CVE) naming convention and that use the Open Vulnerability Assessment Language (OVAL) to determine/test for the presence of vulnerabilities. Suggested sources for vulnerability information include the Common Weakness Enumeration (CWE) listing and the National Vulnerability Database (NVD). In addition, security control assessments such as red team exercises provide other sources of potential vulnerabilities for which to scan. Organizations also consider using tools that express vulnerability impact by the Common Vulnerability Scoring System (CVSS).", "external_references": [ { @@ -10194,7 +10194,7 @@ } ], "id": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Vulnerability Scanning", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10206,7 +10206,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization employs vulnerability scanning tools that include the capability to readily update the information system vulnerabilities to be scanned.\nThe vulnerabilities to be scanned need to be readily updated as new vulnerabilities are discovered, announced, and scanning methods developed. This updating process helps to ensure that potential vulnerabilities in the information system are identified and addressed as quickly as possible.", "external_references": [ { @@ -10215,7 +10215,7 @@ } ], "id": "course-of-action--2832f2db-4b09-4ca8-af8a-3616a97765a6", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Update Tool Capability", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10226,7 +10226,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization updates the information system vulnerabilities scanned [Selection (one or more): [Assignment: organization-defined frequency]; prior to a new scan; when new vulnerabilities are identified and reported].", "external_references": [ { @@ -10235,7 +10235,7 @@ } ], "id": "course-of-action--8dd6a0e1-45c0-4b2d-b9fe-065b942e36d8", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Update By Frequency / Prior To New Scan / When Identified", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10246,7 +10246,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization employs vulnerability scanning procedures that can identify the breadth and depth of coverage (i.e., information system components scanned and vulnerabilities checked).", "external_references": [ { @@ -10255,14 +10255,14 @@ } ], "id": "course-of-action--638c2976-8d66-4455-b293-cb7cf7e206fd", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Breadth / Depth Of Coverage", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization determines what information about the information system is discoverable by adversaries and subsequently takes [Assignment: organization-defined corrective actions].\nDiscoverable information includes information that adversaries could obtain without directly compromising or breaching the information system, for example, by collecting information the system is exposing or by conducting extensive searches of the web. Corrective actions can include, for example, notifying appropriate organizational personnel, removing designated information, or changing the information system to make designated information less relevant or attractive to adversaries.", "external_references": [ { @@ -10271,7 +10271,7 @@ } ], "id": "course-of-action--82d8702d-ab63-4606-a13a-1961c3b83c80", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Discoverable Information", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10281,7 +10281,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The information system implements privileged access authorization to [Assignment: organization-identified information system components] for selected [Assignment: organization-defined vulnerability scanning activities].\nIn certain situations, the nature of the vulnerability scanning may be more intrusive or the information system component that is the subject of the scanning may contain highly sensitive information. Privileged access authorization to selected system components facilitates more thorough vulnerability scanning and also protects the sensitive nature of such scanning.", "external_references": [ { @@ -10290,7 +10290,7 @@ } ], "id": "course-of-action--b75acc84-8bcc-4a61-921f-97c588ea3bda", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Privileged Access", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -10301,7 +10301,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.960Z", "description": "The organization employs automated mechanisms to compare the results of vulnerability scans over time to determine trends in information system vulnerabilities.", "external_references": [ { @@ -10310,14 +10310,14 @@ } ], "id": "course-of-action--8b3dd183-c43e-4693-a44d-e36aafb04efd", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Automated Trend Analyses", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.960Z", "description": "[Withdrawn: Incorporated into CM-8].", "external_references": [ { @@ -10326,14 +10326,14 @@ } ], "id": "course-of-action--1d188a84-4402-4ba1-a582-91521a1e74d3", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Automated Detection And Notification Of Unauthorized Components", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.835Z", + "created": "2021-01-13T01:50:48.960Z", "description": "The organization reviews historic audit logs to determine if a vulnerability identified in the information system has been previously exploited.", "external_references": [ { @@ -10342,14 +10342,14 @@ } ], "id": "course-of-action--7525fae1-a264-41f1-adf0-3d4961ac6da1", - "modified": "2021-01-06T18:28:39.835Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Review Historic Audit Logs", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.960Z", "description": "[Withdrawn: Incorporated into CA-8].", "external_references": [ { @@ -10358,14 +10358,14 @@ } ], "id": "course-of-action--13962aaf-dac9-4a9e-8dce-4b9528b81407", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Penetration Testing And Analyses", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.960Z", "description": "The organization correlates the output from vulnerability scanning tools to determine the presence of multi-vulnerability/multi-hop attack vectors.", "external_references": [ { @@ -10374,14 +10374,14 @@ } ], "id": "course-of-action--cd50e0e9-8d31-4bba-838b-6d325dcaff18", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Correlate Scanning Information", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.960Z", "description": "The organization employs a technical surveillance countermeasures survey at [Assignment: organization-defined locations] [Selection (one or more): [Assignment: organization-defined frequency]; [Assignment: organization-defined events or indicators occur]].\nTechnical surveillance countermeasures surveys are performed by qualified personnel to detect the presence of technical surveillance devices/hazards and to identify technical security weaknesses that could aid in the conduct of technical penetrations of surveyed facilities. Such surveys provide evaluations of the technical security postures of organizations and facilities and typically include thorough visual, electronic, and physical examinations in and about surveyed facilities. The surveys also provide useful input into risk assessments and organizational exposure to potential adversaries.", "external_references": [ { @@ -10390,14 +10390,14 @@ } ], "id": "course-of-action--b871b598-c8a2-4fd6-b94c-887c63554be5", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "Technical Surveillance Countermeasures Survey", "type": "course-of-action", "x_mitre_family": "Risk Assessment", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.960Z", "description": "The organization:\n\n* **SA-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **SA-1a.1.** A system and services acquisition policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **SA-1a.2.** Procedures to facilitate the implementation of the system and services acquisition policy and associated system and services acquisition controls; and\n* **SA-1b.** Reviews and updates the current:\n * **SA-1b.1.** System and services acquisition policy [Assignment: organization-defined frequency]; and\n * **SA-1b.2.** System and services acquisition procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the SA family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -10406,7 +10406,7 @@ } ], "id": "course-of-action--d43cf49e-312f-45e3-9bb7-f3d8093d1efc", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.960Z", "name": "System And Services Acquisition Policy And Procedures", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10418,7 +10418,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization:\n\n* **SA-2a.** Determines information security requirements for the information system or information system service in mission/business process planning;\n* **SA-2b.** Determines, documents, and allocates the resources required to protect the information system or information system service as part of its capital planning and investment control process; and\n* **SA-2c.** Establishes a discrete line item for information security in organizational programming and budgeting documentation.\n\nResource allocation for information security includes funding for the initial information system or information system service acquisition and funding for the sustainment of the system/service.", "external_references": [ { @@ -10427,7 +10427,7 @@ } ], "id": "course-of-action--3754871c-a6e4-4e8b-9f50-1803384fbadd", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Allocation Of Resources", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10439,7 +10439,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization:\n\n* **SA-3a.** Manages the information system using [Assignment: organization-defined system development life cycle] that incorporates information security considerations;\n* **SA-3b.** Defines and documents information security roles and responsibilities throughout the system development life cycle;\n* **SA-3c.** Identifies individuals having information security roles and responsibilities; and\n* **SA-3d.** Integrates the organizational information security risk management process into system development life cycle activities.\n\nA well-defined system development life cycle provides the foundation for the successful development, implementation, and operation of organizational information systems. To apply the required security controls within the system development life cycle requires a basic understanding of information security, threats, vulnerabilities, adverse impacts, and risk to critical missions/business functions. The security engineering principles in SA-8 cannot be properly applied if individuals that design, code, and test information systems and system components (including information technology products) do not understand security. Therefore, organizations include qualified personnel, for example, chief information security officers, security architects, security engineers, and information system security officers in system development life cycle activities to ensure that security requirements are incorporated into organizational information systems. It is equally important that developers include individuals on the development team that possess the requisite security expertise and skills to ensure that needed security capabilities are effectively integrated into the information system. Security awareness and training programs can help ensure that individuals having key security roles and responsibilities have the appropriate experience, skills, and expertise to conduct assigned system development life cycle activities. The effective integration of security requirements into enterprise architecture also helps to ensure that important security considerations are addressed early in the system development life cycle and that those considerations are directly related to the organizational mission/business processes. This process also facilitates the integration of the information security architecture into the enterprise architecture, consistent with organizational risk management and information security strategies.", "external_references": [ { @@ -10448,7 +10448,7 @@ } ], "id": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "System Development Life Cycle", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10460,7 +10460,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization includes the following requirements, descriptions, and criteria, explicitly or by reference, in the acquisition contract for the information system, system component, or information system service in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, guidelines, and organizational mission/business needs:\n\n* **SA-4a.** Security functional requirements;\n* **SA-4b.** Security strength requirements;\n* **SA-4c.** Security assurance requirements;\n* **SA-4d.** Security-related documentation requirements;\n* **SA-4e.** Requirements for protecting security-related documentation;\n* **SA-4f.** Description of the information system development environment and environment in which the system is intended to operate; and\n* **SA-4g.** Acceptance criteria.\n\nInformation system components are discrete, identifiable information technology assets (e.g., hardware, software, or firmware) that represent the building blocks of an information system. Information system components include commercial information technology products. Security functional requirements include security capabilities, security functions, and security mechanisms. Security strength requirements associated with such capabilities, functions, and mechanisms include degree of correctness, completeness, resistance to direct attack, and resistance to tampering or bypass. Security assurance requirements include: (i) development processes, procedures, practices, and methodologies; and (ii) evidence from development and assessment activities providing grounds for confidence that the required security functionality has been implemented and the required security strength has been achieved. Security documentation requirements address all phases of the system development life cycle. Security functionality, assurance, and documentation requirements are expressed in terms of security controls and control enhancements that have been selected through the tailoring process. The security control tailoring process includes, for example, the specification of parameter values through the use of assignment and selection statements and the specification of platform dependencies and implementation information. Security documentation provides user and administrator guidance regarding the implementation and operation of security controls. The level of detail required in security documentation is based on the security category or classification level of the information system and the degree to which organizations depend on the stated security capability, functions, or mechanisms to meet overall risk response expectations (as defined in the organizational risk management strategy). Security requirements can also include organizationally mandated configuration settings specifying allowed functions, ports, protocols, and services. Acceptance criteria for information systems, information system components, and information system services are defined in the same manner as such criteria for any organizational acquisition or procurement. The Federal Acquisition Regulation (FAR) Section 7.103 contains information security requirements from FISMA.", "external_references": [ { @@ -10469,7 +10469,7 @@ } ], "id": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Acquisition Process", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10481,7 +10481,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization requires the developer of the information system, system component, or information system service to provide a description of the functional properties of the security controls to be employed.\nFunctional properties of security controls describe the functionality (i.e., security capability, functions, or mechanisms) visible at the interfaces of the controls and specifically exclude functionality and data structures internal to the operation of the controls.", "external_references": [ { @@ -10490,7 +10490,7 @@ } ], "id": "course-of-action--cf8e7240-fa34-4a6f-ba98-70fecb9b5483", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Functional Properties Of Security Controls", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10501,7 +10501,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization requires the developer of the information system, system component, or information system service to provide design and implementation information for the security controls to be employed that includes: [Selection (one or more): security-relevant external system interfaces; high-level design; low-level design; source code or hardware schematics; [Assignment: organization-defined design/implementation information]] at [Assignment: organization-defined level of detail].\nOrganizations may require different levels of detail in design and implementation documentation for security controls employed in organizational information systems, system components, or information system services based on mission/business requirements, requirements for trustworthiness/resiliency, and requirements for analysis and testing. Information systems can be partitioned into multiple subsystems. Each subsystem within the system can contain one or more modules. The high-level design for the system is expressed in terms of multiple subsystems and the interfaces between subsystems providing security-relevant functionality. The low-level design for the system is expressed in terms of modules with particular emphasis on software and firmware (but not excluding hardware) and the interfaces between modules providing security-relevant functionality. Source code and hardware schematics are typically referred to as the implementation representation of the information system.", "external_references": [ { @@ -10510,7 +10510,7 @@ } ], "id": "course-of-action--be874b02-a6c7-451f-9a6c-206eae3babce", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Design / Implementation Information For Security Controls", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10521,7 +10521,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization requires the developer of the information system, system component, or information system service to demonstrate the use of a system development life cycle that includes [Assignment: organization-defined state-of-the-practice system/security engineering methods, software development methods, testing/evaluation/validation techniques, and quality control processes].\nFollowing a well-defined system development life cycle that includes state-of-the-practice software development methods, systems/security engineering methods, quality control processes, and testing, evaluation, and validation techniques helps to reduce the number and severity of latent errors within information systems, system components, and information system services. Reducing the number/severity of such errors reduces the number of vulnerabilities in those systems, components, and services.", "external_references": [ { @@ -10530,14 +10530,14 @@ } ], "id": "course-of-action--3ff445d1-54bb-46a9-9be9-03aa622c6b57", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Development Methods / Techniques / Practices", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "[Withdrawn: Incorporated into CM-8 (9)].", "external_references": [ { @@ -10546,14 +10546,14 @@ } ], "id": "course-of-action--64e89e70-fd61-4087-8a1f-e19d247cd847", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Assignment Of Components To Systems", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-4 (5)(a)** Deliver the system, component, or service with [Assignment: organization-defined security configurations] implemented; and\n* **SA-4 (5)(b)** Use the configurations as the default for any subsequent system, component, or service reinstallation or upgrade.\n\nSecurity configurations include, for example, the U.S. Government Configuration Baseline (USGCB) and any limitations on functions, ports, protocols, and services. Security characteristics include, for example, requiring that all default passwords have been changed.", "external_references": [ { @@ -10562,14 +10562,14 @@ } ], "id": "course-of-action--467ffd92-1aa5-487a-95ff-0801b6f4c353", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "System / Component / Service Configurations", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.838Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization:\n\n* **SA-4 (6)(a)** Employs only government off-the-shelf (GOTS) or commercial off-the-shelf (COTS) information assurance (IA) and IA-enabled information technology products that compose an NSA-approved solution to protect classified information when the networks used to transmit the information are at a lower classification level than the information being transmitted; and\n* **SA-4 (6)(b)** Ensures that these products have been evaluated and/or validated by NSA or in accordance with NSA-approved procedures.\n\nCOTS IA or IA-enabled information technology products used to protect classified information by cryptographic means may be required to use NSA-approved key management.", "external_references": [ { @@ -10578,14 +10578,14 @@ } ], "id": "course-of-action--8446c8db-d1fa-4245-976e-b329f299e22f", - "modified": "2021-01-06T18:28:39.838Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Use Of Information Assurance Products", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.838Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization:\n\n* **SA-4 (7)(a)** Limits the use of commercially provided information assurance (IA) and IA-enabled information technology products to those products that have been successfully evaluated against a National Information Assurance partnership (NIAP)-approved Protection Profile for a specific technology type, if such a profile exists; and\n* **SA-4 (7)(b)** Requires, if no NIAP-approved Protection Profile exists for a specific technology type but a commercially provided information technology product relies on cryptographic functionality to enforce its security policy, that the cryptographic module is FIPS-validated.\n", "external_references": [ { @@ -10594,14 +10594,14 @@ } ], "id": "course-of-action--9b5253d6-4e0b-45a3-992d-5d4756c55899", - "modified": "2021-01-06T18:28:39.838Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Niap-Approved Protection Profiles", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.838Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization requires the developer of the information system, system component, or information system service to produce a plan for the continuous monitoring of security control effectiveness that contains [Assignment: organization-defined level of detail].\nThe objective of continuous monitoring plans is to determine if the complete set of planned, required, and deployed security controls within the information system, system component, or information system service continue to be effective over time based on the inevitable changes that occur. Developer continuous monitoring plans include a sufficient level of detail such that the information can be incorporated into the continuous monitoring strategies and programs implemented by organizations.", "external_references": [ { @@ -10610,14 +10610,14 @@ } ], "id": "course-of-action--11e197ff-a986-4cff-b03b-8cb239b7bbb5", - "modified": "2021-01-06T18:28:39.838Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Continuous Monitoring Plan", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.838Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization requires the developer of the information system, system component, or information system service to identify early in the system development life cycle, the functions, ports, protocols, and services intended for organizational use.\nThe identification of functions, ports, protocols, and services early in the system development life cycle (e.g., during the initial requirements definition and design phases) allows organizations to influence the design of the information system, information system component, or information system service. This early involvement in the life cycle helps organizations to avoid or minimize the use of functions, ports, protocols, or services that pose unnecessarily high risks and understand the trade-offs involved in blocking specific ports, protocols, or services (or when requiring information system service providers to do so). Early identification of functions, ports, protocols, and services avoids costly retrofitting of security controls after the information system, system component, or information system service has been implemented. SA-9 describes requirements for external information system services with organizations identifying which functions, ports, protocols, and services are provided from external sources.", "external_references": [ { @@ -10626,7 +10626,7 @@ } ], "id": "course-of-action--73324d1d-42e8-4bc8-978e-b92a53d064bd", - "modified": "2021-01-06T18:28:39.838Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Functions / Ports / Protocols / Services In Use", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10637,7 +10637,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.838Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization employs only information technology products on the FIPS 201-approved products list for Personal Identity Verification (PIV) capability implemented within organizational information systems.", "external_references": [ { @@ -10646,7 +10646,7 @@ } ], "id": "course-of-action--a877e3f6-bb3d-40c4-9353-25e59509c3f1", - "modified": "2021-01-06T18:28:39.838Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Use Of Approved Piv Products", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10658,7 +10658,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.839Z", + "created": "2021-01-13T01:50:48.962Z", "description": "The organization:\n\n* **SA-5a.** Obtains administrator documentation for the information system, system component, or information system service that describes:\n * **SA-5a.1.** Secure configuration, installation, and operation of the system, component, or service;\n * **SA-5a.2.** Effective use and maintenance of security functions/mechanisms; and\n * **SA-5a.3.** Known vulnerabilities regarding configuration and use of administrative (i.e., privileged) functions;\n* **SA-5b.** Obtains user documentation for the information system, system component, or information system service that describes:\n * **SA-5b.1.** User-accessible security functions/mechanisms and how to effectively use those security functions/mechanisms;\n * **SA-5b.2.** Methods for user interaction, which enables individuals to use the system, component, or service in a more secure manner; and\n * **SA-5b.3.** User responsibilities in maintaining the security of the system, component, or service;\n* **SA-5c.** Documents attempts to obtain information system, system component, or information system service documentation when such documentation is either unavailable or nonexistent and takes [Assignment: organization-defined actions] in response;\n* **SA-5d.** Protects documentation as required, in accordance with the risk management strategy; and\n* **SA-5e.** Distributes documentation to [Assignment: organization-defined personnel or roles].\n\nThis control helps organizational personnel understand the implementation and operation of security controls associated with information systems, system components, and information system services. Organizations consider establishing specific measures to determine the quality/completeness of the content provided. The inability to obtain needed documentation may occur, for example, due to the age of the information system/component or lack of support from developers and contractors. In those situations, organizations may need to recreate selected documentation if such documentation is essential to the effective implementation or operation of security controls. The level of protection provided for selected information system, component, or service documentation is commensurate with the security category or classification of the system. For example, documentation associated with a key DoD weapons system or command and control system would typically require a higher level of protection than a routine administrative system. Documentation that addresses information system vulnerabilities may also require an increased level of protection. Secure operation of the information system, includes, for example, initially starting the system and resuming secure system operation after any lapse in system operation.", "external_references": [ { @@ -10667,7 +10667,7 @@ } ], "id": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", - "modified": "2021-01-06T18:28:39.839Z", + "modified": "2021-01-13T01:50:48.962Z", "name": "Information System Documentation", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10679,7 +10679,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.839Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into SA-4 (1)].", "external_references": [ { @@ -10688,14 +10688,14 @@ } ], "id": "course-of-action--884a533e-76b2-4ebf-9342-5b80c7d40b78", - "modified": "2021-01-06T18:28:39.839Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Functional Properties Of Security Controls", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.839Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into SA-4 (2)].", "external_references": [ { @@ -10704,14 +10704,14 @@ } ], "id": "course-of-action--e57ae81d-8bf9-4ba7-a28b-ac012ab92434", - "modified": "2021-01-06T18:28:39.839Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Security-Relevant External System Interfaces", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.839Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into SA-4 (2)].", "external_references": [ { @@ -10720,14 +10720,14 @@ } ], "id": "course-of-action--31262e15-7c24-4b4f-9e41-6574b044c267", - "modified": "2021-01-06T18:28:39.839Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "High-Level Design", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.839Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into SA-4 (2)].", "external_references": [ { @@ -10736,14 +10736,14 @@ } ], "id": "course-of-action--b177dd05-6ff6-4481-a3dd-ebd36b154e40", - "modified": "2021-01-06T18:28:39.839Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Low-Level Design", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.840Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into SA-4 (2)].", "external_references": [ { @@ -10752,14 +10752,14 @@ } ], "id": "course-of-action--4fe48d03-0be9-4179-9aee-9f360f5ca226", - "modified": "2021-01-06T18:28:39.840Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Source Code", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.840Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into CM-10 and SI-7].", "external_references": [ { @@ -10768,13 +10768,13 @@ } ], "id": "course-of-action--6e2f667e-3855-4f35-8c9a-31f09c938f95", - "modified": "2021-01-06T18:28:39.840Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Software Usage Restrictions", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition" }, { - "created": "2021-01-06T18:28:39.840Z", + "created": "2021-01-13T01:50:48.963Z", "description": "[Withdrawn: Incorporated into CM-11 and SI-7].", "external_references": [ { @@ -10783,13 +10783,13 @@ } ], "id": "course-of-action--ac1ba180-3247-4de2-b867-865562c4e6bc", - "modified": "2021-01-06T18:28:39.840Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "User-Installed Software", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition" }, { - "created": "2021-01-06T18:28:39.841Z", + "created": "2021-01-13T01:50:48.963Z", "description": "The organization applies information system security engineering principles in the specification, design, development, implementation, and modification of the information system.\nOrganizations apply security engineering principles primarily to new development information systems or systems undergoing major upgrades. For legacy systems, organizations apply security engineering principles to system upgrades and modifications to the extent feasible, given the current state of hardware, software, and firmware within those systems. Security engineering principles include, for example: (i) developing layered protections; (ii) establishing sound security policy, architecture, and controls as the foundation for design; (iii) incorporating security requirements into the system development life cycle; (iv) delineating physical and logical security boundaries; (v) ensuring that system developers are trained on how to build secure software; (vi) tailoring security controls to meet organizational and operational needs; (vii) performing threat modeling to identify use cases, threat agents, attack vectors, and attack patterns as well as compensating controls and design patterns needed to mitigate risk; and (viii) reducing risk to acceptable levels, thus enabling informed risk management decisions.", "external_references": [ { @@ -10798,7 +10798,7 @@ } ], "id": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "modified": "2021-01-06T18:28:39.841Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Security Engineering Principles", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10809,7 +10809,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.841Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization:\n\n* **SA-9a.** Requires that providers of external information system services comply with organizational information security requirements and employ [Assignment: organization-defined security controls] in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance;\n* **SA-9b.** Defines and documents government oversight and user roles and responsibilities with regard to external information system services; and\n* **SA-9c.** Employs [Assignment: organization-defined processes, methods, and techniques] to monitor security control compliance by external service providers on an ongoing basis.\n\nExternal information system services are services that are implemented outside of the authorization boundaries of organizational information systems. This includes services that are used by, but not a part of, organizational information systems. FISMA and OMB policy require that organizations using external service providers that are processing, storing, or transmitting federal information or operating information systems on behalf of the federal government ensure that such providers meet the same security requirements that federal agencies are required to meet. Organizations establish relationships with external service providers in a variety of ways including, for example, through joint ventures, business partnerships, contracts, interagency agreements, lines of business arrangements, licensing agreements, and supply chain exchanges. The responsibility for managing risks from the use of external information system services remains with authorizing officials. For services external to organizations, a chain of trust requires that organizations establish and retain a level of confidence that each participating provider in the potentially complex consumer-provider relationship provides adequate protection for the services rendered. The extent and nature of this chain of trust varies based on the relationships between organizations and the external providers. Organizations document the basis for trust relationships so the relationships can be monitored over time. External information system services documentation includes government, service providers, end user security roles and responsibilities, and service-level agreements. Service-level agreements define expectations of performance for security controls, describe measurable outcomes, and identify remedies and response requirements for identified instances of noncompliance.", "external_references": [ { @@ -10818,7 +10818,7 @@ } ], "id": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", - "modified": "2021-01-06T18:28:39.841Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "External Information System Services", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10830,7 +10830,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.841Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization:\n\n* **SA-9 (1)(a)** Conducts an organizational assessment of risk prior to the acquisition or outsourcing of dedicated information security services; and\n* **SA-9 (1)(b)** Ensures that the acquisition or outsourcing of dedicated information security services is approved by [Assignment: organization-defined personnel or roles].\n\nDedicated information security services include, for example, incident monitoring, analysis and response, operation of information security-related devices such as firewalls, or key management services.", "external_references": [ { @@ -10839,14 +10839,14 @@ } ], "id": "course-of-action--2d4e0503-f49b-4ede-8436-3e0507e1a460", - "modified": "2021-01-06T18:28:39.841Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Risk Assessments / Organizational Approvals", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.842Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization requires providers of [Assignment: organization-defined external information system services] to identify the functions, ports, protocols, and other services required for the use of such services.\nInformation from external service providers regarding the specific functions, ports, protocols, and services used in the provision of such services can be particularly useful when the need arises to understand the trade-offs involved in restricting certain functions/services or blocking certain ports/protocols.", "external_references": [ { @@ -10855,7 +10855,7 @@ } ], "id": "course-of-action--c3b2ad51-bd6a-4d62-899f-8efd59e66268", - "modified": "2021-01-06T18:28:39.842Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Identification Of Functions / Ports / Protocols / Services", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10866,7 +10866,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.842Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization establishes, documents, and maintains trust relationships with external service providers based on [Assignment: organization-defined security requirements, properties, factors, or conditions defining acceptable trust relationships].\nThe degree of confidence that the risk from using external services is at an acceptable level depends on the trust that organizations place in the external providers, individually or in combination. Trust relationships can help organization to gain increased levels of confidence that participating service providers are providing adequate protection for the services rendered. Such relationships can be complicated due to the number of potential entities participating in the consumer-provider interactions, subordinate relationships and levels of trust, and the types of interactions between the parties. In some cases, the degree of trust is based on the amount of direct control organizations are able to exert on external service providers with regard to employment of security controls necessary for the protection of the service/information and the evidence brought forth as to the effectiveness of those controls. The level of control is typically established by the terms and conditions of the contracts or service-level agreements and can range from extensive control (e.g., negotiating contracts or agreements that specify security requirements for the providers) to very limited control (e.g., using contracts or service-level agreements to obtain commodity services such as commercial telecommunications services). In other cases, levels of trust are based on factors that convince organizations that required security controls have been employed and that determinations of control effectiveness exist. For example, separately authorized external information system services provided to organizations through well-established business relationships may provide degrees of trust in such services within the tolerable risk range of the organizations using the services. External service providers may also outsource selected services to other external entities, making the trust relationship more difficult and complicated to manage. Depending on the nature of the services, organizations may find it very difficult to place significant trust in external providers. This is not due to any inherent untrustworthiness on the part of providers, but to the intrinsic level of risk in the services.", "external_references": [ { @@ -10875,14 +10875,14 @@ } ], "id": "course-of-action--1af043b9-f3d7-4d48-804d-ea9f2b7abfb1", - "modified": "2021-01-06T18:28:39.842Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Establish / Maintain Trust Relationship With Providers", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.842Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to ensure that the interests of [Assignment: organization-defined external service providers] are consistent with and reflect organizational interests.\nAs organizations increasingly use external service providers, the possibility exists that the interests of the service providers may diverge from organizational interests. In such situations, simply having the correct technical, procedural, or operational safeguards in place may not be sufficient if the service providers that implement and control those safeguards are not operating in a manner consistent with the interests of the consuming organizations. Possible actions that organizations might take to address such concerns include, for example, requiring background checks for selected service provider personnel, examining ownership records, employing only trustworthy service providers (i.e., providers with which organizations have had positive experiences), and conducting periodic/unscheduled visits to service provider facilities.", "external_references": [ { @@ -10891,14 +10891,14 @@ } ], "id": "course-of-action--77d915f0-8aad-4113-a74d-f60d631d908b", - "modified": "2021-01-06T18:28:39.842Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Consistent Interests Of Consumers And Providers", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.842Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization restricts the location of [Selection (one or more): information processing; information/data; information system services] to [Assignment: organization-defined locations] based on [Assignment: organization-defined requirements or conditions].\nThe location of information processing, information/data storage, or information system services that are critical to organizations can have a direct impact on the ability of those organizations to successfully execute their missions/business functions. This situation exists when external providers control the location of processing, storage or services. The criteria external providers use for the selection of processing, storage, or service locations may be different from organizational criteria. For example, organizations may want to ensure that data/information storage locations are restricted to certain locations to facilitate incident response activities (e.g., forensic analyses, after-the-fact investigations) in case of information security breaches/compromises. Such incident response activities may be adversely affected by the governing laws or protocols in the locations where processing and storage occur and/or the locations from which information system services emanate.", "external_references": [ { @@ -10907,14 +10907,14 @@ } ], "id": "course-of-action--588e7b59-a403-4c43-bc0a-b2e40fac6a4b", - "modified": "2021-01-06T18:28:39.842Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Processing, Storage, And Service Location", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.843Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-10a.** Perform configuration management during system, component, or service [Selection (one or more): design; development; implementation; operation];\n* **SA-10b.** Document, manage, and control the integrity of changes to [Assignment: organization-defined configuration items under configuration management];\n* **SA-10c.** Implement only organization-approved changes to the system, component, or service;\n* **SA-10d.** Document approved changes to the system, component, or service and the potential security impacts of such changes; and\n* **SA-10e.** Track security flaws and flaw resolution within the system, component, or service and report findings to [Assignment: organization-defined personnel].\n\nThis control also applies to organizations conducting internal information systems development and integration. Organizations consider the quality and completeness of the configuration management activities conducted by developers as evidence of applying effective security safeguards. Safeguards include, for example, protecting from unauthorized modification or destruction, the master copies of all material used to generate security-relevant portions of the system hardware, software, and firmware. Maintaining the integrity of changes to the information system, information system component, or information system service requires configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes. Configuration items that are placed under configuration management (if existence/use is required by other security controls) include: the formal model; the functional, high-level, and low-level design specifications; other design data; implementation documentation; source code and hardware schematics; the running version of the object code; tools for comparing new versions of security-relevant hardware descriptions and software/firmware source code with previous versions; and test fixtures and documentation. Depending on the mission/business needs of organizations and the nature of the contractual relationships in place, developers may provide configuration management support during the operations and maintenance phases of the life cycle.", "external_references": [ { @@ -10923,7 +10923,7 @@ } ], "id": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "modified": "2021-01-06T18:28:39.843Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Developer Configuration Management", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -10934,7 +10934,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.843Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to enable integrity verification of software and firmware components.\nThis control enhancement allows organizations to detect unauthorized changes to software and firmware components through the use of tools, techniques, and/or mechanisms provided by developers. Integrity checking mechanisms can also address counterfeiting of software and firmware components. Organizations verify the integrity of software and firmware components, for example, through secure one-way hashes provided by developers. Delivered software and firmware components also include any updates to such components.", "external_references": [ { @@ -10943,14 +10943,14 @@ } ], "id": "course-of-action--38304f6b-578b-4892-8a32-19008dd0379c", - "modified": "2021-01-06T18:28:39.843Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Software / Firmware Integrity Verification", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.843Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization provides an alternate configuration management process using organizational personnel in the absence of a dedicated developer configuration management team.\nAlternate configuration management processes may be required, for example, when organizations use commercial off-the-shelf (COTS) information technology products. Alternate configuration management processes include organizational personnel that: (i) are responsible for reviewing/approving proposed changes to information systems, system components, and information system services; and (ii) conduct security impact analyses prior to the implementation of any changes to systems, components, or services (e.g., a configuration control board that considers security impacts of changes during development and includes representatives of both the organization and the developer, when applicable).", "external_references": [ { @@ -10959,14 +10959,14 @@ } ], "id": "course-of-action--8e678e8f-b7fb-4506-b227-aa9c63d18cfd", - "modified": "2021-01-06T18:28:39.843Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Alternative Configuration Management Processes", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.844Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to enable integrity verification of hardware components.\nThis control enhancement allows organizations to detect unauthorized changes to hardware components through the use of tools, techniques, and/or mechanisms provided by developers. Organizations verify the integrity of hardware components, for example, with hard-to-copy labels and verifiable serial numbers provided by developers, and by requiring the implementation of anti-tamper technologies. Delivered hardware components also include updates to such components.", "external_references": [ { @@ -10975,14 +10975,14 @@ } ], "id": "course-of-action--11011997-c3fd-4074-9fd6-8c784def38a8", - "modified": "2021-01-06T18:28:39.844Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Hardware Integrity Verification", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.844Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to employ tools for comparing newly generated versions of security-relevant hardware descriptions and software/firmware source and object code with previous versions.\nThis control enhancement addresses changes to hardware, software, and firmware components between versions during development. In contrast, SA-10 (1) and SA-10 (3) allow organizations to detect unauthorized changes to hardware, software, and firmware components through the use of tools, techniques, and/or mechanisms provided by developers.", "external_references": [ { @@ -10991,14 +10991,14 @@ } ], "id": "course-of-action--a3aa5d2f-dd1c-4c9f-9dae-aa4486404856", - "modified": "2021-01-06T18:28:39.844Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Trusted Generation", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.844Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to maintain the integrity of the mapping between the master build data (hardware drawings and software/firmware code) describing the current version of security-relevant hardware, software, and firmware and the on-site master copy of the data for the current version.\nThis control enhancement addresses changes to hardware, software, and firmware components during initial development and during system life cycle updates. Maintaining the integrity between the master copies of security-relevant hardware, software, and firmware (including designs and source code) and the equivalent data in master copies on-site in operational environments is essential to ensure the availability of organizational information systems supporting critical missions and/or business functions.", "external_references": [ { @@ -11007,14 +11007,14 @@ } ], "id": "course-of-action--43850135-3d84-4071-8f5a-dc54e8dae86b", - "modified": "2021-01-06T18:28:39.844Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Mapping Integrity For Version Control", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.845Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to execute procedures for ensuring that security-relevant hardware, software, and firmware updates distributed to the organization are exactly as specified by the master copies.\nThe trusted distribution of security-relevant hardware, software, and firmware updates helps to ensure that such updates are faithful representations of the master copies maintained by the developer and have not been tampered with during distribution.", "external_references": [ { @@ -11023,14 +11023,14 @@ } ], "id": "course-of-action--d5ac017e-396d-4617-89df-b22563254c64", - "modified": "2021-01-06T18:28:39.845Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Trusted Distribution", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.845Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-11a.** Create and implement a security assessment plan;\n* **SA-11b.** Perform [Selection (one or more): unit; integration; system; regression] testing/evaluation at [Assignment: organization-defined depth and coverage];\n* **SA-11c.** Produce evidence of the execution of the security assessment plan and the results of the security testing/evaluation;\n* **SA-11d.** Implement a verifiable flaw remediation process; and\n* **SA-11e.** Correct flaws identified during security testing/evaluation.\n\nDevelopmental security testing/evaluation occurs at all post-design phases of the system development life cycle. Such testing/evaluation confirms that the required security controls are implemented correctly, operating as intended, enforcing the desired security policy, and meeting established security requirements. Security properties of information systems may be affected by the interconnection of system components or changes to those components. These interconnections or changes (e.g., upgrading or replacing applications and operating systems) may adversely affect previously implemented security controls. This control provides additional types of security testing/evaluation that developers can conduct to reduce or eliminate potential flaws. Testing custom software applications may require approaches such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Developers can employ these analysis approaches in a variety of tools (e.g., web-based application scanners, static analysis tools, binary analyzers) and in source code reviews. Security assessment plans provide the specific activities that developers plan to carry out including the types of analyses, testing, evaluation, and reviews of software and firmware components, the degree of rigor to be applied, and the types of artifacts produced during those processes. The depth of security testing/evaluation refers to the rigor and level of detail associated with the assessment process (e.g., black box, gray box, or white box testing). The coverage of security testing/evaluation refers to the scope (i.e., number and type) of the artifacts included in the assessment process. Contracts specify the acceptance criteria for security assessment plans, flaw remediation processes, and the evidence that the plans/processes have been diligently applied. Methods for reviewing and protecting assessment plans, evidence, and documentation are commensurate with the security category or classification level of the information system. Contracts may specify documentation protection requirements.", "external_references": [ { @@ -11039,7 +11039,7 @@ } ], "id": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "modified": "2021-01-06T18:28:39.845Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Developer Security Testing And Evaluation", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -11050,7 +11050,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.846Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to employ static code analysis tools to identify common flaws and document the results of the analysis.\nStatic code analysis provides a technology and methodology for security reviews. Such analysis can be used to identify security vulnerabilities and enforce security coding practices. Static code analysis is most effective when used early in the development process, when each code change can be automatically scanned for potential weaknesses. Static analysis can provide clear remediation guidance along with defects to enable developers to fix such defects. Evidence of correct implementation of static analysis can include, for example, aggregate defect density for critical defect types, evidence that defects were inspected by developers or security professionals, and evidence that defects were fixed. An excessively high density of ignored findings (commonly referred to as ignored or false positives) indicates a potential problem with the analysis process or tool. In such cases, organizations weigh the validity of the evidence against evidence from other sources.", "external_references": [ { @@ -11059,14 +11059,14 @@ } ], "id": "course-of-action--8a8575c2-cd06-42c4-b22d-a1ef322d5573", - "modified": "2021-01-06T18:28:39.846Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Static Code Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.846Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to perform threat and vulnerability analyses and subsequent testing/evaluation of the as-built system, component, or service.\nApplications may deviate significantly from the functional and design specifications created during the requirements and design phases of the system development life cycle. Therefore, threat and vulnerability analyses of information systems, system components, and information system services prior to delivery are critical to the effective operation of those systems, components, and services. Threat and vulnerability analyses at this phase of the life cycle help to ensure that design or implementation changes have been accounted for, and that any new vulnerabilities created as a result of those changes have been reviewed and mitigated.", "external_references": [ { @@ -11075,14 +11075,14 @@ } ], "id": "course-of-action--c9097f98-8ea6-432c-85f0-1a9b7b721907", - "modified": "2021-01-06T18:28:39.846Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Threat And Vulnerability Analyses", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.846Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization:\n\n* **SA-11 (3)(a)** Requires an independent agent satisfying [Assignment: organization-defined independence criteria] to verify the correct implementation of the developer security assessment plan and the evidence produced during security testing/evaluation; and\n* **SA-11 (3)(b)** Ensures that the independent agent is either provided with sufficient information to complete the verification process or granted the authority to obtain such information.\n\nIndependent agents have the necessary qualifications (i.e., expertise, skills, training, and experience) to verify the correct implementation of developer security assessment plans.", "external_references": [ { @@ -11091,14 +11091,14 @@ } ], "id": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", - "modified": "2021-01-06T18:28:39.846Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Independent Verification Of Assessment Plans / Evidence", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.846Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization requires the developer of the information system, system component, or information system service to perform a manual code review of [Assignment: organization-defined specific code] using [Assignment: organization-defined processes, procedures, and/or techniques].\nManual code reviews are usually reserved for the critical software and firmware components of information systems. Such code reviews are uniquely effective at identifying weaknesses that require knowledge of the application\u00ef\u00bf\u00bds requirements or context which are generally unavailable to more automated analytic tools and techniques such as static or dynamic analysis. Components benefiting from manual review include for example, verifying access control matrices against application controls and reviewing more detailed aspects of cryptographic implementations and controls.", "external_references": [ { @@ -11107,14 +11107,14 @@ } ], "id": "course-of-action--3ee83308-2bde-4cb8-9d57-6b35801b9e41", - "modified": "2021-01-06T18:28:39.846Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Manual Code Reviews", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization requires the developer of the information system, system component, or information system service to perform penetration testing at [Assignment: organization-defined breadth/depth] and with [Assignment: organization-defined constraints].\nPenetration testing is an assessment methodology in which assessors, using all available information technology product and/or information system documentation (e.g., product/system design specifications, source code, and administrator/operator manuals) and working under specific constraints, attempt to circumvent implemented security features of information technology products and information systems. Penetration testing can include, for example, white, gray, or black box testing with analyses performed by skilled security professionals simulating adversary actions. The objective of penetration testing is to uncover potential vulnerabilities in information technology products and information systems resulting from implementation errors, configuration faults, or other operational deployment weaknesses or deficiencies. Penetration tests can be performed in conjunction with automated and manual code reviews to provide greater levels of analysis than would ordinarily be possible.", "external_references": [ { @@ -11123,14 +11123,14 @@ } ], "id": "course-of-action--b3aeeb5e-cca2-48c3-bdd2-c6aeb49328bd", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Penetration Testing", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization requires the developer of the information system, system component, or information system service to perform attack surface reviews.\nAttack surfaces of information systems are exposed areas that make those systems more vulnerable to cyber attacks. This includes any accessible areas where weaknesses or deficiencies in information systems (including the hardware, software, and firmware components) provide opportunities for adversaries to exploit vulnerabilities. Attack surface reviews ensure that developers: (i) analyze both design and implementation changes to information systems; and (ii) mitigate attack vectors generated as a result of the changes. Correction of identified flaws includes, for example, deprecation of unsafe functions.", "external_references": [ { @@ -11139,14 +11139,14 @@ } ], "id": "course-of-action--e0975d56-9282-4816-9627-a6a626cfe051", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Attack Surface Reviews", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization requires the developer of the information system, system component, or information system service to verify that the scope of security testing/evaluation provides complete coverage of required security controls at [Assignment: organization-defined depth of testing/evaluation].\nVerifying that security testing/evaluation provides complete coverage of required security controls can be accomplished by a variety of analytic techniques ranging from informal to formal. Each of these techniques provides an increasing level of assurance corresponding to the degree of formality of the analysis. Rigorously demonstrating security control coverage at the highest levels of assurance can be provided by the use of formal modeling and analysis techniques including correlation between control implementation and corresponding test cases.", "external_references": [ { @@ -11155,14 +11155,14 @@ } ], "id": "course-of-action--8ff8ccec-d28a-4275-928a-11acd459eb53", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Verify Scope Of Testing / Evaluation", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization requires the developer of the information system, system component, or information system service to employ dynamic code analysis tools to identify common flaws and document the results of the analysis.\nDynamic code analysis provides run-time verification of software programs, using tools capable of monitoring programs for memory corruption, user privilege issues, and other potential security problems. Dynamic code analysis employs run-time tools to help to ensure that security functionality performs in the manner in which it was designed. A specialized type of dynamic analysis, known as fuzz testing, induces program failures by deliberately introducing malformed or random data into software programs. Fuzz testing strategies derive from the intended use of applications and the functional and design specifications for the applications. To understand the scope of dynamic code analysis and hence the assurance provided, organizations may also consider conducting code coverage analysis (checking the degree to which the code has been tested using metrics such as percent of subroutines tested or percent of program statements called during execution of the test suite) and/or concordance analysis (checking for words that are out of place in software code such as non-English language words or derogatory terms).", "external_references": [ { @@ -11171,14 +11171,14 @@ } ], "id": "course-of-action--80bb3d91-c455-4993-9fdc-38af93860069", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Dynamic Code Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization protects against supply chain threats to the information system, system component, or information system service by employing [Assignment: organization-defined security safeguards] as part of a comprehensive, defense-in-breadth information security strategy.\nInformation systems (including system components that compose those systems) need to be protected throughout the system development life cycle (i.e., during design, development, manufacturing, packaging, assembly, distribution, system integration, operations, maintenance, and retirement). Protection of organizational information systems is accomplished through threat awareness, by the identification, management, and reduction of vulnerabilities at each phase of the life cycle and the use of complementary, mutually reinforcing strategies to respond to risk. Organizations consider implementing a standardized process to address supply chain risk with respect to information systems and system components, and to educate the acquisition workforce on threats, risk, and required security controls. Organizations use the acquisition/procurement processes to require supply chain entities to implement necessary security safeguards to: (i) reduce the likelihood of unauthorized modifications at each stage in the supply chain; and (ii) protect information systems and information system components, prior to taking delivery of such systems/components. This control also applies to information system services. Security safeguards include, for example: (i) security controls for development systems, development facilities, and external connections to development systems; (ii) vetting development personnel; and (iii) use of tamper-evident packaging during shipping/warehousing. Methods for reviewing and protecting development plans, evidence, and documentation are commensurate with the security category or classification level of the information system. Contracts may specify documentation protection requirements.", "external_references": [ { @@ -11187,7 +11187,7 @@ } ], "id": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Supply Chain Protection", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -11197,7 +11197,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.848Z", + "created": "2021-01-13T01:50:48.967Z", "description": "The organization employs [Assignment: organization-defined tailored acquisition strategies, contract tools, and procurement methods] for the purchase of the information system, system component, or information system service from suppliers.\nThe use of acquisition and procurement processes by organizations early in the system development life cycle provides an important vehicle to protect the supply chain. Organizations use available all-source intelligence analysis to inform the tailoring of acquisition strategies, tools, and methods. There are a number of different tools and techniques available (e.g., obscuring the end use of an information system or system component, using blind or filtered buys). Organizations also consider creating incentives for suppliers who: (i) implement required security safeguards; (ii) promote transparency into their organizational processes and security practices; (iii) provide additional vetting of the processes and security practices of subordinate suppliers, critical information system components, and services; (iv) restrict purchases from specific suppliers or countries; and (v) provide contract language regarding the prohibition of tainted or counterfeit components. In addition, organizations consider minimizing the time between purchase decisions and required delivery to limit opportunities for adversaries to corrupt information system components or products. Finally, organizations can use trusted/controlled distribution, delivery, and warehousing options to reduce supply chain risk (e.g., requiring tamper-evident packaging of information system components during shipping and warehousing).", "external_references": [ { @@ -11206,14 +11206,14 @@ } ], "id": "course-of-action--2fe3f279-787a-4616-97d0-aaf69ab3f352", - "modified": "2021-01-06T18:28:39.848Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Acquisition Strategies / Tools / Methods", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.848Z", + "created": "2021-01-13T01:50:48.967Z", "description": "The organization conducts a supplier review prior to entering into a contractual agreement to acquire the information system, system component, or information system service.\nSupplier reviews include, for example: (i) analysis of supplier processes used to design, develop, test, implement, verify, deliver, and support information systems, system components, and information system services; and (ii) assessment of supplier training and experience in developing systems, components, or services with the required security capability. These reviews provide organizations with increased levels of visibility into supplier activities during the system development life cycle to promote more effective supply chain risk management. Supplier reviews can also help to determine whether primary suppliers have security safeguards in place and a practice for vetting subordinate suppliers, for example, second- and third-tier suppliers, and any subcontractors.", "external_references": [ { @@ -11222,14 +11222,14 @@ } ], "id": "course-of-action--d01cf00e-df03-4c50-8c29-ad1be7022128", - "modified": "2021-01-06T18:28:39.848Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Supplier Reviews", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.848Z", + "created": "2021-01-13T01:50:48.967Z", "description": "[Withdrawn: Incorporated into SA-12 (1)].", "external_references": [ { @@ -11238,14 +11238,14 @@ } ], "id": "course-of-action--facc8858-fd5d-4dfe-8566-9586c5bb16ae", - "modified": "2021-01-06T18:28:39.848Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Trusted Shipping And Warehousing", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.848Z", + "created": "2021-01-13T01:50:48.967Z", "description": "[Withdrawn: Incorporated into SA-12 (13)].", "external_references": [ { @@ -11254,14 +11254,14 @@ } ], "id": "course-of-action--c5b00042-7490-4430-86ae-c26da4507084", - "modified": "2021-01-06T18:28:39.848Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Diversity Of Suppliers", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.849Z", + "created": "2021-01-13T01:50:48.967Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to limit harm from potential adversaries identifying and targeting the organizational supply chain.\nSupply chain risk is part of the advanced persistent threat (APT). Security safeguards and countermeasures to reduce the probability of adversaries successfully identifying and targeting the supply chain include, for example: (i) avoiding the purchase of custom configurations to reduce the risk of acquiring information systems, components, or products that have been corrupted via supply chain actions targeted at specific organizations; (ii) employing a diverse set of suppliers to limit the potential harm from any given supplier in the supply chain; (iii) employing approved vendor lists with standing reputations in industry, and (iv) using procurement carve outs (i.e., exclusions to commitments or obligations).", "external_references": [ { @@ -11270,14 +11270,14 @@ } ], "id": "course-of-action--9ceddafe-0d4d-4467-9390-dee49afdad9f", - "modified": "2021-01-06T18:28:39.849Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Limitation Of Harm", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.849Z", + "created": "2021-01-13T01:50:48.967Z", "description": "[Withdrawn: Incorporated into SA-12 (1)].", "external_references": [ { @@ -11286,14 +11286,14 @@ } ], "id": "course-of-action--c65c7e0a-1b79-47b9-88e7-15358d377d18", - "modified": "2021-01-06T18:28:39.849Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Minimizing Procurement Time", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.849Z", + "created": "2021-01-13T01:50:48.967Z", "description": "The organization conducts an assessment of the information system, system component, or information system service prior to selection, acceptance, or update.\nAssessments include, for example, testing, evaluations, reviews, and analyses. Independent, third-party entities or organizational personnel conduct assessments of systems, components, products, tools, and services. Organizations conduct assessments to uncover unintentional vulnerabilities and intentional vulnerabilities including, for example, malicious code, malicious processes, defective software, and counterfeits. Assessments can include, for example, static analyses, dynamic analyses, simulations, white, gray, and black box testing, fuzz testing, penetration testing, and ensuring that components or services are genuine (e.g., using tags, cryptographic hash verifications, or digital signatures). Evidence generated during security assessments is documented for follow-on actions carried out by organizations.", "external_references": [ { @@ -11302,14 +11302,14 @@ } ], "id": "course-of-action--9808bb33-f5bf-4107-a2f9-a453a811e9c1", - "modified": "2021-01-06T18:28:39.849Z", + "modified": "2021-01-13T01:50:48.967Z", "name": "Assessments Prior To Selection / Acceptance / Update", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.849Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization uses all-source intelligence analysis of suppliers and potential suppliers of the information system, system component, or information system service.\nAll-source intelligence analysis is employed by organizations to inform engineering, acquisition, and risk management decisions. All-source intelligence consists of intelligence products and/or organizations and activities that incorporate all sources of information, most frequently including human intelligence, imagery intelligence, measurement and signature intelligence, signals intelligence, and open source data in the production of finished intelligence. Where available, such information is used to analyze the risk of both intentional and unintentional vulnerabilities from development, manufacturing, and delivery processes, people, and the environment. This review is performed on suppliers at multiple tiers in the supply chain sufficient to manage risks.", "external_references": [ { @@ -11318,14 +11318,14 @@ } ], "id": "course-of-action--950d3fe9-dcf3-4ec9-abc6-317a407ecacf", - "modified": "2021-01-06T18:28:39.849Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Use Of All-Source Intelligence", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.850Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization employs [Assignment: organization-defined Operations Security (OPSEC) safeguards] in accordance with classification guides to protect supply chain-related information for the information system, system component, or information system service.\nSupply chain information includes, for example: user identities; uses for information systems, information system components, and information system services; supplier identities; supplier processes; security requirements; design specifications; testing and evaluation results; and system/component configurations. This control enhancement expands the scope of OPSEC to include suppliers and potential suppliers. OPSEC is a process of identifying critical information and subsequently analyzing friendly actions attendant to operations and other activities to: (i) identify those actions that can be observed by potential adversaries; (ii) determine indicators that adversaries might obtain that could be interpreted or pieced together to derive critical information in sufficient time to cause harm to organizations; (iii) implement safeguards or countermeasures to eliminate or reduce to an acceptable level, exploitable vulnerabilities; and (iv) consider how aggregated information may compromise the confidentiality of users or uses of the supply chain. OPSEC may require organizations to withhold critical mission/business information from suppliers and may include the use of intermediaries to hide the end use, or users, of information systems, system components, or information system services.", "external_references": [ { @@ -11334,14 +11334,14 @@ } ], "id": "course-of-action--dba6c679-5ab9-4738-9bb2-c737ce4ef786", - "modified": "2021-01-06T18:28:39.850Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Operations Security", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.850Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to validate that the information system or system component received is genuine and has not been altered.\nFor some information system components, especially hardware, there are technical means to help determine if the components are genuine or have been altered. Security safeguards used to validate the authenticity of information systems and information system components include, for example, optical/nanotechnology tagging and side-channel analysis. For hardware, detailed bill of material information can highlight the elements with embedded logic complete with component and production location.", "external_references": [ { @@ -11350,14 +11350,14 @@ } ], "id": "course-of-action--ffb532a3-ec96-44f8-9ffb-e08a9562b168", - "modified": "2021-01-06T18:28:39.850Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Validate As Genuine And Not Altered", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.851Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization employs [Selection (one or more): organizational analysis, independent third-party analysis, organizational penetration testing, independent third-party penetration testing] of [Assignment: organization-defined supply chain elements, processes, and actors] associated with the information system, system component, or information system service.\nThis control enhancement addresses analysis and/or testing of the supply chain, not just delivered items. Supply chain elements are information technology products or product components that contain programmable logic and that are critically important to information system functions. Supply chain processes include, for example: (i) hardware, software, and firmware development processes; (ii) shipping/handling procedures; (iii) personnel and physical security programs; (iv) configuration management tools/measures to maintain provenance; or (v) any other programs, processes, or procedures associated with the production/distribution of supply chain elements. Supply chain actors are individuals with specific roles and responsibilities in the supply chain. The evidence generated during analyses and testing of supply chain elements, processes, and actors is documented and used to inform organizational risk management activities and decisions.", "external_references": [ { @@ -11366,14 +11366,14 @@ } ], "id": "course-of-action--7754e274-6c2d-4a41-8046-8c943b39b529", - "modified": "2021-01-06T18:28:39.851Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Penetration Testing / Analysis Of Elements, Processes, And Actors", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.851Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization establishes inter-organizational agreements and procedures with entities involved in the supply chain for the information system, system component, or information system service.\nThe establishment of inter-organizational agreements and procedures provides for notification of supply chain compromises. Early notification of supply chain compromises that can potentially adversely affect or have adversely affected organizational information systems, including critical system components, is essential for organizations to provide appropriate responses to such incidents.", "external_references": [ { @@ -11382,14 +11382,14 @@ } ], "id": "course-of-action--4f9c583c-10fc-47b0-857e-ffd7f42ecc6d", - "modified": "2021-01-06T18:28:39.851Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Inter-Organizational Agreements", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.851Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to ensure an adequate supply of [Assignment: organization-defined critical information system components].\nAdversaries can attempt to impede organizational operations by disrupting the supply of critical information system components or corrupting supplier operations. Safeguards to ensure adequate supplies of critical information system components include, for example: (i) the use of multiple suppliers throughout the supply chain for the identified critical components; and (ii) stockpiling of spare components to ensure operation during mission-critical times.", "external_references": [ { @@ -11398,14 +11398,14 @@ } ], "id": "course-of-action--26cb95b5-297a-497a-b653-6617252d1cfd", - "modified": "2021-01-06T18:28:39.851Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Critical Information System Components", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.851Z", + "created": "2021-01-13T01:50:48.968Z", "description": "The organization establishes and retains unique identification of [Assignment: organization-defined supply chain elements, processes, and actors] for the information system, system component, or information system service.\nKnowing who and what is in the supply chains of organizations is critical to gaining visibility into what is happening within such supply chains, as well as monitoring and identifying high-risk events and activities. Without reasonable visibility and traceability into supply chains (i.e., elements, processes, and actors), it is very difficult for organizations to understand and therefore manage risk, and to reduce the likelihood of adverse events. Uniquely identifying acquirer and integrator roles, organizations, personnel, mission and element processes, testing and evaluation procedures, delivery mechanisms, support mechanisms, communications/delivery paths, and disposal/final disposition activities as well as the components and tools used, establishes a foundational identity structure for assessment of supply chain activities. For example, labeling (using serial numbers) and tagging (using radio-frequency identification [RFID] tags) individual supply chain elements including software packages, modules, and hardware devices, and processes associated with those elements can be used for this purpose. Identification methods are sufficient to support the provenance in the event of a supply chain issue or adverse supply chain event.", "external_references": [ { @@ -11414,14 +11414,14 @@ } ], "id": "course-of-action--aa4569d6-2841-4517-ae05-0ac4bc3b0dd1", - "modified": "2021-01-06T18:28:39.851Z", + "modified": "2021-01-13T01:50:48.968Z", "name": "Identity And Traceability", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.851Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization establishes a process to address weaknesses or deficiencies in supply chain elements identified during independent or organizational assessments of such elements.\nEvidence generated during independent or organizational assessments of supply chain elements (e.g., penetration testing, audits, verification/validation activities) is documented and used in follow-on processes implemented by organizations to respond to the risks related to the identified weaknesses and deficiencies. Supply chain elements include, for example, supplier development processes and supplier distribution systems.", "external_references": [ { @@ -11430,14 +11430,14 @@ } ], "id": "course-of-action--0c879942-c199-462a-8799-00ae56ef7aea", - "modified": "2021-01-06T18:28:39.851Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Processes To Address Weaknesses Or Deficiencies", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization:\n\n* **SA-13a.** Describes the trustworthiness required in the [Assignment: organization-defined information system, information system component, or information system service] supporting its critical missions/business functions; and\n* **SA-13b.** Implements [Assignment: organization-defined assurance overlay] to achieve such trustworthiness.\n\nThis control helps organizations to make explicit trustworthiness decisions when designing, developing, and implementing information systems that are needed to conduct critical organizational missions/business functions. Trustworthiness is a characteristic/property of an information system that expresses the degree to which the system can be expected to preserve the confidentiality, integrity, and availability of the information it processes, stores, or transmits. Trustworthy information systems are systems that are capable of being trusted to operate within defined levels of risk despite the environmental disruptions, human errors, and purposeful attacks that are expected to occur in the specified environments of operation. Trustworthy systems are important to mission/business success. Two factors affecting the trustworthiness of information systems include: (i) security functionality (i.e., the security features, functions, and/or mechanisms employed within the system and its environment of operation); and (ii) security assurance (i.e., the grounds for confidence that the security functionality is effective in its application). Developers, implementers, operators, and maintainers of organizational information systems can increase the level of assurance (and trustworthiness), for example, by employing well-defined security policy models, structured and rigorous hardware, software, and firmware development techniques, sound system/security engineering principles, and secure configuration settings (defined by a set of assurance-related security controls in Appendix E). Assurance is also based on the assessment of evidence produced during the system development life cycle. Critical missions/business functions are supported by high-impact systems and the associated assurance requirements for such systems. The additional assurance controls in Table E-4 in Appendix E (designated as optional) can be used to develop and implement high-assurance solutions for specific information systems and system components using the concept of overlays described in Appendix I. Organizations select assurance overlays that have been developed, validated, and approved for community adoption (e.g., cross-organization, governmentwide), limiting the development of such overlays on an organization-by-organization basis. Organizations can conduct criticality analyses as described in SA-14, to determine the information systems, system components, or information system services that require high-assurance solutions. Trustworthiness requirements and assurance overlays can be described in the security plans for organizational information systems.", "external_references": [ { @@ -11446,14 +11446,14 @@ } ], "id": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Trustworthiness", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization identifies critical information system components and functions by performing a criticality analysis for [Assignment: organization-defined information systems, information system components, or information system services] at [Assignment: organization-defined decision points in the system development life cycle].\nCriticality analysis is a key tenet of supply chain risk management and informs the prioritization of supply chain protection activities such as attack surface reduction, use of all-source intelligence, and tailored acquisition strategies. Information system engineers can conduct an end-to-end functional decomposition of an information system to identify mission-critical functions and components. The functional decomposition includes the identification of core organizational missions supported by the system, decomposition into the specific functions to perform those missions, and traceability to the hardware, software, and firmware components that implement those functions, including when the functions are shared by many components within and beyond the information system boundary. Information system components that allow for unmediated access to critical components or functions are considered critical due to the inherent vulnerabilities such components create. Criticality is assessed in terms of the impact of the function or component failure on the ability of the component to complete the organizational missions supported by the information system. A criticality analysis is performed whenever an architecture or design is being developed or modified, including upgrades.", "external_references": [ { @@ -11462,14 +11462,14 @@ } ], "id": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Criticality Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "[Withdrawn: Incorporated into SA-20].", "external_references": [ { @@ -11478,14 +11478,14 @@ } ], "id": "course-of-action--e865399f-bbea-4fe2-b9ba-bdfe19e38f2f", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Critical Components With No Viable Alternative Sourcing", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization:\n\n* **SA-15a.** Requires the developer of the information system, system component, or information system service to follow a documented development process that:\n * **SA-15a.1.** Explicitly addresses security requirements;\n * **SA-15a.2.** Identifies the standards and tools used in the development process;\n * **SA-15a.3.** Documents the specific tool options and tool configurations used in the development process; and\n * **SA-15a.4.** Documents, manages, and ensures the integrity of changes to the process and/or tools used in development; and\n* **SA-15b.** Reviews the development process, standards, tools, and tool options/configurations [Assignment: organization-defined frequency] to determine if the process, standards, tools, and tool options/configurations selected and employed can satisfy [Assignment: organization-defined security requirements].\n\nDevelopment tools include, for example, programming languages and computer-aided design (CAD) systems. Reviews of development processes can include, for example, the use of maturity models to determine the potential effectiveness of such processes. Maintaining the integrity of changes to tools and processes enables accurate supply chain risk assessment and mitigation, and requires robust configuration control throughout the life cycle (including design, development, transport, delivery, integration, and maintenance) to track authorized changes and prevent unauthorized changes.", "external_references": [ { @@ -11494,7 +11494,7 @@ } ], "id": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Development Process, Standards, And Tools", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -11504,7 +11504,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.853Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-15 (1)(a)** Define quality metrics at the beginning of the development process; and\n* **SA-15 (1)(b)** Provide evidence of meeting the quality metrics [Selection (one or more): [Assignment: organization-defined frequency]; [Assignment: organization-defined program review milestones]; upon delivery].\n\nOrganizations use quality metrics to establish minimum acceptable levels of information system quality. Metrics may include quality gates which are collections of completion criteria or sufficiency standards representing the satisfactory execution of particular phases of the system development project. A quality gate, for example, may require the elimination of all compiler warnings or an explicit determination that the warnings have no impact on the effectiveness of required security capabilities. During the execution phases of development projects, quality gates provide clear, unambiguous indications of progress. Other metrics apply to the entire development project. These metrics can include defining the severity thresholds of vulnerabilities, for example, requiring no known vulnerabilities in the delivered information system with a Common Vulnerability Scoring System (CVSS) severity of Medium or High.", "external_references": [ { @@ -11513,14 +11513,14 @@ } ], "id": "course-of-action--e9863b6b-73b2-4d63-afc6-941d5b203562", - "modified": "2021-01-06T18:28:39.853Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Quality Metrics", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.853Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization requires the developer of the information system, system component, or information system service to select and employ a security tracking tool for use during the development process.\nInformation system development teams select and deploy security tracking tools, including, for example, vulnerability/work item tracking systems that facilitate assignment, sorting, filtering, and tracking of completed work items or tasks associated with system development processes.", "external_references": [ { @@ -11529,14 +11529,14 @@ } ], "id": "course-of-action--22e42812-ea85-40d9-aa88-d28ed380bcac", - "modified": "2021-01-06T18:28:39.853Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Security Tracking Tools", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.853Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization requires the developer of the information system, system component, or information system service to perform a criticality analysis at [Assignment: organization-defined breadth/depth] and at [Assignment: organization-defined decision points in the system development life cycle].\nThis control enhancement provides developer input to the criticality analysis performed by organizations in SA-14. Developer input is essential to such analysis because organizations may not have access to detailed design documentation for information system components that are developed as commercial off-the-shelf (COTS) information technology products (e.g., functional specifications, high-level designs, low-level designs, and source code/hardware schematics).", "external_references": [ { @@ -11545,14 +11545,14 @@ } ], "id": "course-of-action--c73d31a1-1359-456a-b950-a8b2b8a57f91", - "modified": "2021-01-06T18:28:39.853Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Criticality Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.853Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires that developers perform threat modeling and a vulnerability analysis for the information system at [Assignment: organization-defined breadth/depth] that:\n\n* **SA-15 (4)(a)** Uses [Assignment: organization-defined information concerning impact, environment of operations, known or assumed threats, and acceptable risk levels];\n* **SA-15 (4)(b)** Employs [Assignment: organization-defined tools and methods]; and\n* **SA-15 (4)(c)** Produces evidence that meets [Assignment: organization-defined acceptance criteria].\n", "external_references": [ { @@ -11561,14 +11561,14 @@ } ], "id": "course-of-action--7a3fd8c9-04eb-4580-ae50-edad6be18902", - "modified": "2021-01-06T18:28:39.853Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Threat Modeling / Vulnerability Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.854Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires the developer of the information system, system component, or information system service to reduce attack surfaces to [Assignment: organization-defined thresholds].\nAttack surface reduction is closely aligned with developer threat and vulnerability analyses and information system architecture and design. Attack surface reduction is a means of reducing risk to organizations by giving attackers less opportunity to exploit weaknesses or deficiencies (i.e., potential vulnerabilities) within information systems, information system components, and information system services. Attack surface reduction includes, for example, applying the principle of least privilege, employing layered defenses, applying the principle of least functionality (i.e., restricting ports, protocols, functions, and services), deprecating unsafe functions, and eliminating application programming interfaces (APIs) that are vulnerable to cyber attacks.", "external_references": [ { @@ -11577,14 +11577,14 @@ } ], "id": "course-of-action--225b80a7-09ed-4056-843f-0d09130a403a", - "modified": "2021-01-06T18:28:39.854Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Attack Surface Reduction", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.854Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires the developer of the information system, system component, or information system service to implement an explicit process to continuously improve the development process.\nDevelopers of information systems, information system components, and information system services consider the effectiveness/efficiency of current development processes for meeting quality objectives and addressing security capabilities in current threat environments.", "external_references": [ { @@ -11593,14 +11593,14 @@ } ], "id": "course-of-action--ce9d393a-7386-4cf3-9af5-f74372800409", - "modified": "2021-01-06T18:28:39.854Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Continuous Improvement", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.854Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-15 (7)(a)** Perform an automated vulnerability analysis using [Assignment: organization-defined tools];\n* **SA-15 (7)(b)** Determine the exploitation potential for discovered vulnerabilities;\n* **SA-15 (7)(c)** Determine potential risk mitigations for delivered vulnerabilities; and\n* **SA-15 (7)(d)** Deliver the outputs of the tools and results of the analysis to [Assignment: organization-defined personnel or roles].\n", "external_references": [ { @@ -11609,14 +11609,14 @@ } ], "id": "course-of-action--623708fe-33c7-4f71-a3af-549abd8f4173", - "modified": "2021-01-06T18:28:39.854Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Automated Vulnerability Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.854Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires the developer of the information system, system component, or information system service to use threat modeling and vulnerability analyses from similar systems, components, or services to inform the current development process.\nAnalysis of vulnerabilities found in similar software applications can inform potential design or implementation issues for information systems under development. Similar information systems or system components may exist within developer organizations. Authoritative vulnerability information is available from a variety of public and private sector sources including, for example, the National Vulnerability Database.", "external_references": [ { @@ -11625,14 +11625,14 @@ } ], "id": "course-of-action--e21ac505-fd6e-4da6-b152-37a22e40fc03", - "modified": "2021-01-06T18:28:39.854Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Reuse Of Threat / Vulnerability Information", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization approves, documents, and controls the use of live data in development and test environments for the information system, system component, or information system service.\nThe use of live data in preproduction environments can result in significant risk to organizations. Organizations can minimize such risk by using test or dummy data during the development and testing of information systems, information system components, and information system services.", "external_references": [ { @@ -11641,14 +11641,14 @@ } ], "id": "course-of-action--6c3d6fa8-1fd7-47d0-85d3-d2156872c112", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Use Of Live Data", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.970Z", "description": "The organization requires the developer of the information system, system component, or information system service to provide an incident response plan.\nThe incident response plan for developers of information systems, system components, and information system services is incorporated into organizational incident response plans to provide the type of incident response information not readily available to organizations. Such information may be extremely helpful, for example, when organizations respond to vulnerabilities in commercial off-the-shelf (COTS) information technology products.", "external_references": [ { @@ -11657,14 +11657,14 @@ } ], "id": "course-of-action--1ee6301e-d181-4d2a-bb88-288d2250f2c9", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.970Z", "name": "Incident Response Plan", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system or system component to archive the system or component to be released or delivered together with the corresponding evidence supporting the final security review.\nArchiving relevant documentation from the development process can provide a readily available baseline of information that can be helpful during information system/component upgrades or modifications.", "external_references": [ { @@ -11673,14 +11673,14 @@ } ], "id": "course-of-action--a7563839-c921-4654-be2c-5d685157eaf5", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Archive Information System / Component", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to provide [Assignment: organization-defined training] on the correct use and operation of the implemented security functions, controls, and/or mechanisms.\nThis control applies to external and internal (in-house) developers. Training of personnel is an essential element to ensure the effectiveness of security controls implemented within organizational information systems. Training options include, for example, classroom-style training, web-based/computer-based training, and hands-on training. Organizations can also request sufficient training materials from developers to conduct in-house training or offer self-training to organizational personnel. Organizations determine the type of training necessary and may require different types of training for different security functions, controls, or mechanisms.", "external_references": [ { @@ -11689,7 +11689,7 @@ } ], "id": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Developer-Provided Training", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -11699,7 +11699,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to produce a design specification and security architecture that:\n\n* **SA-17a.** Is consistent with and supportive of the organization\u00ef\u00bf\u00bds security architecture which is established within and is an integrated part of the organization\u00ef\u00bf\u00bds enterprise architecture;\n* **SA-17b.** Accurately and completely describes the required security functionality, and the allocation of security controls among physical and logical components; and\n* **SA-17c.** Expresses how individual security functions, mechanisms, and services work together to provide required security capabilities and a unified approach to protection.\n\nThis control is primarily directed at external developers, although it could also be used for internal (in-house) development. In contrast, PL-8 is primarily directed at internal developers to help ensure that organizations develop an information security architecture and such security architecture is integrated or tightly coupled to the enterprise architecture. This distinction is important if/when organizations outsource the development of information systems, information system components, or information system services to external entities, and there is a requirement to demonstrate consistency with the organization\u00ef\u00bf\u00bds enterprise architecture and information security architecture.", "external_references": [ { @@ -11708,7 +11708,7 @@ } ], "id": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Developer Security Architecture And Design", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -11718,7 +11718,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-17 (1)(a)** Produce, as an integral part of the development process, a formal policy model describing the [Assignment: organization-defined elements of organizational security policy] to be enforced; and\n* **SA-17 (1)(b)** Prove that the formal policy model is internally consistent and sufficient to enforce the defined elements of the organizational security policy when implemented.\n\nFormal models describe specific behaviors or security policies using formal languages, thus enabling the correctness of those behaviors/policies to be formally proven. Not all components of information systems can be modeled, and generally, formal specifications are scoped to specific behaviors or policies of interest (e.g., nondiscretionary access control policies). Organizations choose the particular formal modeling language and approach based on the nature of the behaviors/policies to be described and the available tools. Formal modeling tools include, for example, Gypsy and Zed.", "external_references": [ { @@ -11727,14 +11727,14 @@ } ], "id": "course-of-action--083bfae6-0d99-41b2-895f-8e2676c16b53", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Formal Policy Model", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.856Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-17 (2)(a)** Define security-relevant hardware, software, and firmware; and\n* **SA-17 (2)(b)** Provide a rationale that the definition for security-relevant hardware, software, and firmware is complete.\n\nSecurity-relevant hardware, software, and firmware represent the portion of the information system, component, or service that must be trusted to perform correctly in order to maintain required security properties.", "external_references": [ { @@ -11743,14 +11743,14 @@ } ], "id": "course-of-action--662de11b-418f-40e6-8bd5-0b82d2a3e4f7", - "modified": "2021-01-06T18:28:39.856Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Security-Relevant Components", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.856Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-17 (3)(a)** Produce, as an integral part of the development process, a formal top-level specification that specifies the interfaces to security-relevant hardware, software, and firmware in terms of exceptions, error messages, and effects;\n* **SA-17 (3)(b)** Show via proof to the extent feasible with additional informal demonstration as necessary, that the formal top-level specification is consistent with the formal policy model;\n* **SA-17 (3)(c)** Show via informal demonstration, that the formal top-level specification completely covers the interfaces to security-relevant hardware, software, and firmware;\n* **SA-17 (3)(d)** Show that the formal top-level specification is an accurate description of the implemented security-relevant hardware, software, and firmware; and\n* **SA-17 (3)(e)** Describe the security-relevant hardware, software, and firmware mechanisms not addressed in the formal top-level specification but strictly internal to the security-relevant hardware, software, and firmware.\n\nCorrespondence is an important part of the assurance gained through modeling. It demonstrates that the implementation is an accurate transformation of the model, and that any additional code or implementation details present have no impact on the behaviors or policies being modeled. Formal methods can be used to show that the high-level security properties are satisfied by the formal information system description, and that the formal system description is correctly implemented by a description of some lower level, for example a hardware description. Consistency between the formal top-level specification and the formal policy models is generally not amenable to being fully proven. Therefore, a combination of formal/informal methods may be needed to show such consistency. Consistency between the formal top-level specification and the implementation may require the use of an informal demonstration due to limitations in the applicability of formal methods to prove that the specification accurately reflects the implementation. Hardware, software, and firmware mechanisms strictly internal to security-relevant hardware, software, and firmware include, for example, mapping registers and direct memory input/output.", "external_references": [ { @@ -11759,14 +11759,14 @@ } ], "id": "course-of-action--5ed15491-c5c8-4f63-a743-ba6cd1c63e9a", - "modified": "2021-01-06T18:28:39.856Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Formal Correspondence", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.856Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-17 (4)(a)** Produce, as an integral part of the development process, an informal descriptive top-level specification that specifies the interfaces to security-relevant hardware, software, and firmware in terms of exceptions, error messages, and effects;\n* **SA-17 (4)(b)** Show via [Selection: informal demonstration, convincing argument with formal methods as feasible] that the descriptive top-level specification is consistent with the formal policy model;\n* **SA-17 (4)(c)** Show via informal demonstration, that the descriptive top-level specification completely covers the interfaces to security-relevant hardware, software, and firmware;\n* **SA-17 (4)(d)** Show that the descriptive top-level specification is an accurate description of the interfaces to security-relevant hardware, software, and firmware; and\n* **SA-17 (4)(e)** Describe the security-relevant hardware, software, and firmware mechanisms not addressed in the descriptive top-level specification but strictly internal to the security-relevant hardware, software, and firmware.\n\nCorrespondence is an important part of the assurance gained through modeling. It demonstrates that the implementation is an accurate transformation of the model, and that any additional code or implementation details present has no impact on the behaviors or policies being modeled. Consistency between the descriptive top-level specification (i.e., high-level/low-level design) and the formal policy model is generally not amenable to being fully proven. Therefore, a combination of formal/informal methods may be needed to show such consistency. Hardware, software, and firmware mechanisms strictly internal to security-relevant hardware, software, and firmware include, for example, mapping registers and direct memory input/output.", "external_references": [ { @@ -11775,14 +11775,14 @@ } ], "id": "course-of-action--b226db2a-51e3-4d8a-bc2d-fcabf341ecac", - "modified": "2021-01-06T18:28:39.856Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Informal Correspondence", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.856Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-17 (5)(a)** Design and structure the security-relevant hardware, software, and firmware to use a complete, conceptually simple protection mechanism with precisely defined semantics; and\n* **SA-17 (5)(b)** Internally structure the security-relevant hardware, software, and firmware with specific regard for this mechanism.\n", "external_references": [ { @@ -11791,14 +11791,14 @@ } ], "id": "course-of-action--c65a679d-5ddb-41ee-a630-260cfe43698c", - "modified": "2021-01-06T18:28:39.856Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Conceptually Simple Design", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.856Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization requires the developer of the information system, system component, or information system service to structure security-relevant hardware, software, and firmware to facilitate testing.", "external_references": [ { @@ -11807,14 +11807,14 @@ } ], "id": "course-of-action--654226fb-bad4-4518-838a-dde8837257a6", - "modified": "2021-01-06T18:28:39.856Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Structure For Testing", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization requires the developer of the information system, system component, or information system service to structure security-relevant hardware, software, and firmware to facilitate controlling access with least privilege.", "external_references": [ { @@ -11823,14 +11823,14 @@ } ], "id": "course-of-action--268cd6f6-fc29-449c-8611-30ad8e78ecbb", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Structure For Least Privilege", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization implements a tamper protection program for the information system, system component, or information system service.\nAnti-tamper technologies and techniques provide a level of protection for critical information systems, system components, and information technology products against a number of related threats including modification, reverse engineering, and substitution. Strong identification combined with tamper resistance and/or tamper detection is essential to protecting information systems, components, and products during distribution and when in use.", "external_references": [ { @@ -11839,14 +11839,14 @@ } ], "id": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Tamper Resistance And Detection", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization employs anti-tamper technologies and techniques during multiple phases in the system development life cycle including design, development, integration, operations, and maintenance.\nOrganizations use a combination of hardware and software techniques for tamper resistance and detection. Organizations employ obfuscation and self-checking, for example, to make reverse engineering and modifications more difficult, time-consuming, and expensive for adversaries. Customization of information systems and system components can make substitutions easier to detect and therefore limit damage.", "external_references": [ { @@ -11855,14 +11855,14 @@ } ], "id": "course-of-action--0df6b413-f7a9-4807-b9f9-5fadffa5bd46", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Multiple Phases Of Sdlc", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization inspects [Assignment: organization-defined information systems, system components, or devices] [Selection (one or more): at random; at [Assignment: organization-defined frequency], upon [Assignment: organization-defined indications of need for inspection]] to detect tampering.\nThis control enhancement addresses both physical and logical tampering and is typically applied to mobile devices, notebook computers, or other system components taken out of organization-controlled areas. Indications of need for inspection include, for example, when individuals return from travel to high-risk locations.", "external_references": [ { @@ -11871,14 +11871,14 @@ } ], "id": "course-of-action--9dd55610-a77c-4d00-9c48-bd18ea510983", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Inspection Of Information Systems, Components, Or Devices", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization:\n\n* **SA-19a.** Develops and implements anti-counterfeit policy and procedures that include the means to detect and prevent counterfeit components from entering the information system; and\n* **SA-19b.** Reports counterfeit information system components to [Selection (one or more): source of counterfeit component; [Assignment: organization-defined external reporting organizations]; [Assignment: organization-defined personnel or roles]].\n\nSources of counterfeit components include, for example, manufacturers, developers, vendors, and contractors. Anti-counterfeiting policy and procedures support tamper resistance and provide a level of protection against the introduction of malicious code. External reporting organizations include, for example, US-CERT.", "external_references": [ { @@ -11887,14 +11887,14 @@ } ], "id": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Component Authenticity", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.858Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization trains [Assignment: organization-defined personnel or roles] to detect counterfeit information system components (including hardware, software, and firmware).", "external_references": [ { @@ -11903,14 +11903,14 @@ } ], "id": "course-of-action--a4dc7d17-4ac3-4690-a109-9734b0b15511", - "modified": "2021-01-06T18:28:39.858Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Anti-Counterfeit Training", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.858Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization maintains configuration control over [Assignment: organization-defined information system components] awaiting service/repair and serviced/repaired components awaiting return to service.", "external_references": [ { @@ -11919,14 +11919,14 @@ } ], "id": "course-of-action--41e57bbe-1902-4682-ab51-f8e0a157d5fd", - "modified": "2021-01-06T18:28:39.858Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Configuration Control For Component Service / Repair", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.858Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization disposes of information system components using [Assignment: organization-defined techniques and methods].\nProper disposal of information system components helps to prevent such components from entering the gray market.", "external_references": [ { @@ -11935,14 +11935,14 @@ } ], "id": "course-of-action--0bbdef49-236d-4c9b-928a-68577c22a16f", - "modified": "2021-01-06T18:28:39.858Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Component Disposal", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.858Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization scans for counterfeit information system components [Assignment: organization-defined frequency].", "external_references": [ { @@ -11951,14 +11951,14 @@ } ], "id": "course-of-action--7f474adb-c167-4ab6-b984-ddd0fd4a44c4", - "modified": "2021-01-06T18:28:39.858Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Anti-Counterfeit Scanning", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.859Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization re-implements or custom develops [Assignment: organization-defined critical information system components].\nOrganizations determine that certain information system components likely cannot be trusted due to specific threats to and vulnerabilities in those components, and for which there are no viable security controls to adequately mitigate the resulting risk. Re-implementation or custom development of such components helps to satisfy requirements for higher assurance. This is accomplished by initiating changes to system components (including hardware, software, and firmware) such that the standard attacks by adversaries are less likely to succeed. In situations where no alternative sourcing is available and organizations choose not to re-implement or custom develop critical information system components, additional safeguards can be employed (e.g., enhanced auditing, restrictions on source code and system utility access, and protection from deletion of system and application files.", "external_references": [ { @@ -11967,14 +11967,14 @@ } ], "id": "course-of-action--270cc3cf-691a-4ae6-804f-30d7d0515496", - "modified": "2021-01-06T18:28:39.859Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Customized Development Of Critical Components", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.859Z", + "created": "2021-01-13T01:50:48.973Z", "description": "The organization requires that the developer of [Assignment: organization-defined information system, system component, or information system service]:\n\n* **SA-21a.** Have appropriate access authorizations as determined by assigned [Assignment: organization-defined official government duties]; and\n* **SA-21b.** Satisfy [Assignment: organization-defined additional personnel screening criteria].\n\nBecause the information system, system component, or information system service may be employed in critical activities essential to the national and/or economic security interests of the United States, organizations have a strong interest in ensuring that the developer is trustworthy. The degree of trust required of the developer may need to be consistent with that of the individuals accessing the information system/component/service once deployed. Examples of authorization and personnel screening criteria include clearance, satisfactory background checks, citizenship, and nationality. Trustworthiness of developers may also include a review and analysis of company ownership and any relationships the company has with entities potentially affecting the quality/reliability of the systems, components, or services being developed.", "external_references": [ { @@ -11983,14 +11983,14 @@ } ], "id": "course-of-action--130ef39e-7266-4145-9e5c-fb3737413cd7", - "modified": "2021-01-06T18:28:39.859Z", + "modified": "2021-01-13T01:50:48.973Z", "name": "Developer Screening", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.859Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The organization requires the developer of the information system, system component, or information system service take [Assignment: organization-defined actions] to ensure that the required access authorizations and screening criteria are satisfied.\nSatisfying required access authorizations and personnel screening criteria includes, for example, providing a listing of all the individuals authorized to perform development activities on the selected information system, system component, or information system service so that organizations can validate that the developer has satisfied the necessary authorization and screening requirements.", "external_references": [ { @@ -11999,14 +11999,14 @@ } ], "id": "course-of-action--d57f4fe4-c62c-44f3-a54b-73a8c84997c1", - "modified": "2021-01-06T18:28:39.859Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Validation Of Screening", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.859Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The organization:\n\n* **SA-22a.** Replaces information system components when support for the components is no longer available from the developer, vendor, or manufacturer; and\n* **SA-22b.** Provides justification and documents approval for the continued use of unsupported system components required to satisfy mission/business needs.\n\nSupport for information system components includes, for example, software patches, firmware updates, replacement parts, and maintenance contracts. Unsupported components (e.g., when vendors are no longer providing critical software patches), provide a substantial opportunity for adversaries to exploit new weaknesses discovered in the currently installed components. Exceptions to replacing unsupported system components may include, for example, systems that provide critical mission/business capability where newer technologies are not available or where the systems are so isolated that installing replacement components is not an option.", "external_references": [ { @@ -12015,14 +12015,14 @@ } ], "id": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "modified": "2021-01-06T18:28:39.859Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Unsupported System Components", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.861Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The organization provides [Selection (one or more): in-house support; [Assignment: organization-defined support from external providers]] for unsupported information system components.\nThis control enhancement addresses the need to provide continued support for selected information system components that are no longer supported by the original developers, vendors, or manufacturers when such components remain essential to mission/business operations. Organizations can establish in-house support, for example, by developing customized patches for critical software components or secure the services of external providers who through contractual relationships, provide ongoing support for the designated unsupported components. Such contractual relationships can include, for example, Open Source Software value-added vendors.", "external_references": [ { @@ -12031,14 +12031,14 @@ } ], "id": "course-of-action--ba7d24ca-c4af-4449-91cb-c2f83b5b157b", - "modified": "2021-01-06T18:28:39.861Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Alternative Sources For Continued Support", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.861Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The organization:\n\n* **SC-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **SC-1a.1.** A system and communications protection policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **SC-1a.2.** Procedures to facilitate the implementation of the system and communications protection policy and associated system and communications protection controls; and\n* **SC-1b.** Reviews and updates the current:\n * **SC-1b.1.** System and communications protection policy [Assignment: organization-defined frequency]; and\n * **SC-1b.2.** System and communications protection procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the SC family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -12047,7 +12047,7 @@ } ], "id": "course-of-action--72da9921-7b1b-40f0-bc40-f68c2f2c0703", - "modified": "2021-01-06T18:28:39.861Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "System And Communications Protection Policy And Procedures", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12059,7 +12059,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.861Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system separates user functionality (including user interface services) from information system management functionality.\nInformation system management functionality includes, for example, functions necessary to administer databases, network components, workstations, or servers, and typically requires privileged user access. The separation of user functionality from information system management functionality is either physical or logical. Organizations implement separation of system management-related functionality from user functionality by using different computers, different central processing units, different instances of operating systems, different network addresses, virtualization techniques, or combinations of these or other methods, as appropriate. This type of separation includes, for example, web administrative interfaces that use separate authentication methods for users of any other information system resources. Separation of system and user functionality may include isolating administrative interfaces on different domains and with additional access controls.", "external_references": [ { @@ -12068,7 +12068,7 @@ } ], "id": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", - "modified": "2021-01-06T18:28:39.861Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Application Partitioning", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12079,7 +12079,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.861Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system prevents the presentation of information system management-related functionality at an interface for non-privileged users.\nThis control enhancement ensures that administration options (e.g., administrator privileges) are not available to general users (including prohibiting the use of the grey-out option commonly used to eliminate accessibility to such information). Such restrictions include, for example, not presenting administration options until users establish sessions with administrator privileges.", "external_references": [ { @@ -12088,14 +12088,14 @@ } ], "id": "course-of-action--629e0a9a-3348-43c0-b363-518c0447ea83", - "modified": "2021-01-06T18:28:39.861Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Interfaces For Non-Privileged Users", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system isolates security functions from nonsecurity functions.\nThe information system isolates security functions from nonsecurity functions by means of an isolation boundary (implemented via partitions and domains). Such isolation controls access to and protects the integrity of the hardware, software, and firmware that perform those security functions. Information systems implement code separation (i.e., separation of security functions from nonsecurity functions) in a number of ways, including, for example, through the provision of security kernels via processor rings or processor modes. For non-kernel code, security function isolation is often achieved through file system protections that serve to protect the code on disk, and address space protections that protect executing code. Information systems restrict access to security functions through the use of access control mechanisms and by implementing least privilege capabilities. While the ideal is for all of the code within the security function isolation boundary to only contain security-relevant code, it is sometimes necessary to include nonsecurity functions within the isolation boundary as an exception.", "external_references": [ { @@ -12104,7 +12104,7 @@ } ], "id": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Security Function Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12114,7 +12114,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system utilizes underlying hardware separation mechanisms to implement security function isolation.\nUnderlying hardware separation mechanisms include, for example, hardware ring architectures, commonly implemented within microprocessors, and hardware-enforced address segmentation used to support logically distinct storage objects with separate attributes (i.e., readable, writeable).", "external_references": [ { @@ -12123,14 +12123,14 @@ } ], "id": "course-of-action--903ec6ed-d32b-40f1-9654-47fec33d9c48", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Hardware Separation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The information system isolates security functions enforcing access and information flow control from nonsecurity functions and from other security functions.\nSecurity function isolation occurs as a result of implementation; the functions can still be scanned and monitored. Security functions that are potentially isolated from access and flow control enforcement functions include, for example, auditing, intrusion detection, and anti-virus functions.", "external_references": [ { @@ -12139,14 +12139,14 @@ } ], "id": "course-of-action--36a69592-007c-4fc7-91dd-400a00aac6c5", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Access / Flow Control Functions", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The organization minimizes the number of nonsecurity functions included within the isolation boundary containing security functions.\nIn those instances where it is not feasible to achieve strict isolation of nonsecurity functions from security functions, it is necessary to take actions to minimize the nonsecurity-relevant functions within the security function boundary. Nonsecurity functions contained within the isolation boundary are considered security-relevant because errors or maliciousness in such software, by virtue of being within the boundary, can impact the security functions of organizational information systems. The design objective is that the specific portions of information systems providing information security are of minimal size/complexity. Minimizing the number of nonsecurity functions in the security-relevant components of information systems allows designers and implementers to focus only on those functions which are necessary to provide the desired security capability (typically access enforcement). By minimizing nonsecurity functions within the isolation boundaries, the amount of code that must be trusted to enforce security policies is reduced, thus contributing to understandability.", "external_references": [ { @@ -12155,14 +12155,14 @@ } ], "id": "course-of-action--062fdeca-d65f-4f74-9687-62452304acea", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Minimize Nonsecurity Functionality", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The organization implements security functions as largely independent modules that maximize internal cohesiveness within modules and minimize coupling between modules.\nThe reduction in inter-module interactions helps to constrain security functions and to manage complexity. The concepts of coupling and cohesion are important with respect to modularity in software design. Coupling refers to the dependencies that one module has on other modules. Cohesion refers to the relationship between the different functions within a particular module. Good software engineering practices rely on modular decomposition, layering, and minimization to reduce and manage complexity, thus producing software modules that are highly cohesive and loosely coupled.", "external_references": [ { @@ -12171,14 +12171,14 @@ } ], "id": "course-of-action--1ba56810-06a7-41bd-90df-bd28f7a53547", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Module Coupling And Cohesiveness", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The organization implements security functions as a layered structure minimizing interactions between layers of the design and avoiding any dependence by lower layers on the functionality or correctness of higher layers.\nThe implementation of layered structures with minimized interactions among security functions and non-looping layers (i.e., lower-layer functions do not depend on higher-layer functions) further enables the isolation of security functions and management of complexity.", "external_references": [ { @@ -12187,14 +12187,14 @@ } ], "id": "course-of-action--f4c8aacd-f251-4db8-9a1a-9bd8f8b67fb0", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Layered Structures", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The information system prevents unauthorized and unintended information transfer via shared system resources.\nThis control prevents information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection. This control does not address: (i) information remanence which refers to residual representation of data that has been nominally erased or removed; (ii) covert channels (including storage and/or timing channels) where shared resources are manipulated to violate information flow restrictions; or (iii) components within information systems for which there are only single users/roles.", "external_references": [ { @@ -12203,7 +12203,7 @@ } ], "id": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Information In Shared Resources", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12214,7 +12214,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.975Z", "description": "[Withdrawn: Incorporated into SC-4].", "external_references": [ { @@ -12223,14 +12223,14 @@ } ], "id": "course-of-action--7e2ea06b-36af-4c4e-9530-9c7fce5607b9", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Security Levels", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The information system prevents unauthorized information transfer via shared resources in accordance with [Assignment: organization-defined procedures] when system processing explicitly switches between different information classification levels or security categories.\nThis control enhancement applies when there are explicit changes in information processing levels during information system operations, for example, during multilevel processing and periods processing with information at different classification levels or security categories. Organization-defined procedures may include, for example, approved sanitization processes for electronically stored information.", "external_references": [ { @@ -12239,14 +12239,14 @@ } ], "id": "course-of-action--482d7ae4-f883-4046-af30-8f3b1ef9b77b", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Periods Processing", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system protects against or limits the effects of the following types of denial of service attacks: [Assignment: organization-defined types of denial of service attacks or references to sources for such information] by employing [Assignment: organization-defined security safeguards].\nA variety of technologies exist to limit, or in some cases, eliminate the effects of denial of service attacks. For example, boundary protection devices can filter certain types of packets to protect information system components on internal organizational networks from being directly affected by denial of service attacks. Employing increased capacity and bandwidth combined with service redundancy may also reduce the susceptibility to denial of service attacks.", "external_references": [ { @@ -12255,7 +12255,7 @@ } ], "id": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Denial Of Service Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12267,7 +12267,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system restricts the ability of individuals to launch [Assignment: organization-defined denial of service attacks] against other information systems.\nRestricting the ability of individuals to launch denial of service attacks requires that the mechanisms used for such attacks are unavailable. Individuals of concern can include, for example, hostile insiders or external adversaries that have successfully breached the information system and are using the system as a platform to launch cyber attacks on third parties. Organizations can restrict the ability of individuals to connect and transmit arbitrary information on the transport medium (i.e., network, wireless spectrum). Organizations can also limit the ability of individuals to use excessive information system resources. Protection against individuals having the ability to launch denial of service attacks may be implemented on specific information systems or on boundary devices prohibiting egress to potential target systems.", "external_references": [ { @@ -12276,14 +12276,14 @@ } ], "id": "course-of-action--8ba7d1c5-504a-4b35-bd10-c1035db424cc", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Restrict Internal Users", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.864Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system manages excess capacity, bandwidth, or other redundancy to limit the effects of information flooding denial of service attacks.\nManaging excess capacity ensures that sufficient capacity is available to counter flooding attacks. Managing excess capacity may include, for example, establishing selected usage priorities, quotas, or partitioning.", "external_references": [ { @@ -12292,14 +12292,14 @@ } ], "id": "course-of-action--73dbf26e-392f-453a-ad9f-b174c10f6f4d", - "modified": "2021-01-06T18:28:39.864Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Excess Capacity / Bandwidth / Redundancy", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.864Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The organization:\n\n* **SC-5 (3)(a)** Employs [Assignment: organization-defined monitoring tools] to detect indicators of denial of service attacks against the information system; and\n* **SC-5 (3)(b)** Monitors [Assignment: organization-defined information system resources] to determine if sufficient resources exist to prevent effective denial of service attacks.\n\nOrganizations consider utilization and capacity of information system resources when managing risk from denial of service due to malicious attacks. Denial of service attacks can originate from external or internal sources. Information system resources sensitive to denial of service include, for example, physical disk storage, memory, and CPU cycles. Common safeguards to prevent denial of service attacks related to storage utilization and capacity include, for example, instituting disk quotas, configuring information systems to automatically alert administrators when specific storage capacity thresholds are reached, using file compression technologies to maximize available storage space, and imposing separate partitions for system and user data.", "external_references": [ { @@ -12308,14 +12308,14 @@ } ], "id": "course-of-action--a14d8743-bd95-4783-ac70-9c57c6701a8f", - "modified": "2021-01-06T18:28:39.864Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Detection / Monitoring", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.864Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system protects the availability of resources by allocating [Assignment: organization-defined resources] by [Selection (one or more); priority; quota; [Assignment: organization-defined security safeguards]].\nPriority protection helps prevent lower-priority processes from delaying or interfering with the information system servicing any higher-priority processes. Quotas prevent users or processes from obtaining more than predetermined amounts of resources. This control does not apply to information system components for which there are only single users/roles.", "external_references": [ { @@ -12324,14 +12324,14 @@ } ], "id": "course-of-action--8503a2f3-4779-4d32-bd23-e19d898cd01a", - "modified": "2021-01-06T18:28:39.864Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Resource Availability", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.864Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system:\n\n* **SC-7a.** Monitors and controls communications at the external boundary of the system and at key internal boundaries within the system;\n* **SC-7b.** Implements subnetworks for publicly accessible system components that are [Selection: physically; logically] separated from internal organizational networks; and\n* **SC-7c.** Connects to external networks or information systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security architecture.\n\nManaged interfaces include, for example, gateways, routers, firewalls, guards, network-based malicious code analysis and virtualization systems, or encrypted tunnels implemented within a security architecture (e.g., routers protecting firewalls or application gateways residing on protected subnetworks). Subnetworks that are physically or logically separated from internal networks are referred to as demilitarized zones or DMZs. Restricting or prohibiting interfaces within organizational information systems includes, for example, restricting external web traffic to designated web servers within managed interfaces and prohibiting external traffic that appears to be spoofing internal addresses. Organizations consider the shared nature of commercial telecommunications services in the implementation of security controls associated with the use of such services. Commercial telecommunications services are commonly based on network components and consolidated management systems shared by all attached commercial customers, and may also include third party-provided access lines and other service elements. Such transmission services may represent sources of increased risk despite contract security provisions.", "external_references": [ { @@ -12340,7 +12340,7 @@ } ], "id": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "modified": "2021-01-06T18:28:39.864Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Boundary Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12352,7 +12352,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.865Z", + "created": "2021-01-13T01:50:48.977Z", "description": "[Withdrawn: Incorporated into SC-7].", "external_references": [ { @@ -12361,14 +12361,14 @@ } ], "id": "course-of-action--d2c588a9-6d33-4716-9737-e52117c43f8a", - "modified": "2021-01-06T18:28:39.865Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Physically Separated Subnetworks", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.865Z", + "created": "2021-01-13T01:50:48.977Z", "description": "[Withdrawn: Incorporated into SC-7].", "external_references": [ { @@ -12377,14 +12377,14 @@ } ], "id": "course-of-action--03134bef-b308-40cf-8fa0-f99c7ed7c517", - "modified": "2021-01-06T18:28:39.865Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Public Access", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.865Z", + "created": "2021-01-13T01:50:48.977Z", "description": "The organization limits the number of external network connections to the information system.\nLimiting the number of external network connections facilitates more comprehensive monitoring of inbound and outbound communications traffic. The Trusted Internet Connection (TIC) initiative is an example of limiting the number of external network connections.", "external_references": [ { @@ -12393,7 +12393,7 @@ } ], "id": "course-of-action--0848e0da-6d3e-4677-88e5-f75e895b47a5", - "modified": "2021-01-06T18:28:39.865Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Access Points", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12404,7 +12404,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.865Z", + "created": "2021-01-13T01:50:48.977Z", "description": "The organization:\n\n* **SC-7 (4)(a)** Implements a managed interface for each external telecommunication service;\n* **SC-7 (4)(b)** Establishes a traffic flow policy for each managed interface;\n* **SC-7 (4)(c)** Protects the confidentiality and integrity of the information being transmitted across each interface;\n* **SC-7 (4)(d)** Documents each exception to the traffic flow policy with a supporting mission/business need and duration of that need; and\n* **SC-7 (4)(e)** Reviews exceptions to the traffic flow policy [Assignment: organization-defined frequency] and removes exceptions that are no longer supported by an explicit mission/business need.\n", "external_references": [ { @@ -12413,7 +12413,7 @@ } ], "id": "course-of-action--d606d6d8-a063-4c4e-be48-5478f4ba2fdd", - "modified": "2021-01-06T18:28:39.865Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "External Telecommunications Services", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12424,7 +12424,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.866Z", + "created": "2021-01-13T01:50:48.977Z", "description": "The information system at managed interfaces denies network communications traffic by default and allows network communications traffic by exception (i.e., deny all, permit by exception).\nThis control enhancement applies to both inbound and outbound network communications traffic. A deny-all, permit-by-exception network communications traffic policy ensures that only those connections which are essential and approved are allowed.", "external_references": [ { @@ -12433,7 +12433,7 @@ } ], "id": "course-of-action--f840ca2d-ee37-47b0-80bc-25f10ee43725", - "modified": "2021-01-06T18:28:39.866Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Deny By Default / Allow By Exception", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12444,7 +12444,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.866Z", + "created": "2021-01-13T01:50:48.977Z", "description": "[Withdrawn: Incorporated into SC-7 (18)].", "external_references": [ { @@ -12453,14 +12453,14 @@ } ], "id": "course-of-action--fc111b13-7ce2-4c0d-b16f-5166b39d5331", - "modified": "2021-01-06T18:28:39.866Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Response To Recognized Failures", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.867Z", + "created": "2021-01-13T01:50:48.977Z", "description": "The information system, in conjunction with a remote device, prevents the device from simultaneously establishing non-remote connections with the system and communicating via some other connection to resources in external networks.\nThis control enhancement is implemented within remote devices (e.g., notebook computers) through configuration settings to disable split tunneling in those devices, and by preventing those configuration settings from being readily configurable by users. This control enhancement is implemented within the information system by the detection of split tunneling (or of configuration settings that allow split tunneling) in the remote device, and by prohibiting the connection if the remote device is using split tunneling. Split tunneling might be desirable by remote users to communicate with local information system resources such as printers/file servers. However, split tunneling would in effect allow unauthorized external connections, making the system more vulnerable to attack and to exfiltration of organizational information. The use of VPNs for remote connections, when adequately provisioned with appropriate security controls, may provide the organization with sufficient assurance that it can effectively treat such connections as non-remote connections from the confidentiality and integrity perspective. VPNs thus provide a means for allowing non-remote communications paths from remote devices. The use of an adequately provisioned VPN does not eliminate the need for preventing split tunneling.", "external_references": [ { @@ -12469,7 +12469,7 @@ } ], "id": "course-of-action--326b704c-2fbc-42b4-af17-1482a87867b9", - "modified": "2021-01-06T18:28:39.867Z", + "modified": "2021-01-13T01:50:48.977Z", "name": "Prevent Split Tunneling For Remote Devices", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12480,7 +12480,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.867Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The information system routes [Assignment: organization-defined internal communications traffic] to [Assignment: organization-defined external networks] through authenticated proxy servers at managed interfaces.\nExternal networks are networks outside of organizational control. A proxy server is a server (i.e., information system or application) that acts as an intermediary for clients requesting information system resources (e.g., files, connections, web pages, or services) from other organizational servers. Client requests established through an initial connection to the proxy server are evaluated to manage complexity and to provide additional protection by limiting direct connectivity. Web content filtering devices are one of the most common proxy servers providing access to the Internet. Proxy servers support logging individual Transmission Control Protocol (TCP) sessions and blocking specific Uniform Resource Locators (URLs), domain names, and Internet Protocol (IP) addresses. Web proxies can be configured with organization-defined lists of authorized and unauthorized websites.", "external_references": [ { @@ -12489,7 +12489,7 @@ } ], "id": "course-of-action--6e992125-0888-44c2-bf32-b2a26a632212", - "modified": "2021-01-06T18:28:39.867Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Route Traffic To Authenticated Proxy Servers", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12499,7 +12499,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.867Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The information system:\n\n* **SC-7 (9)(a)** Detects and denies outgoing communications traffic posing a threat to external information systems; and\n* **SC-7 (9)(b)** Audits the identity of internal users associated with denied communications.\n\nDetecting outgoing communications traffic from internal actions that may pose threats to external information systems is sometimes termed extrusion detection. Extrusion detection at information system boundaries as part of managed interfaces includes the analysis of incoming and outgoing communications traffic searching for indications of internal threats to the security of external systems. Such threats include, for example, traffic indicative of denial of service attacks and traffic containing malicious code.", "external_references": [ { @@ -12508,14 +12508,14 @@ } ], "id": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", - "modified": "2021-01-06T18:28:39.867Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Restrict Threatening Outgoing Communications Traffic", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.867Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The organization prevents the unauthorized exfiltration of information across managed interfaces.\nSafeguards implemented by organizations to prevent unauthorized exfiltration of information from information systems include, for example: (i) strict adherence to protocol formats; (ii) monitoring for beaconing from information systems; (iii) monitoring for steganography; (iv) disconnecting external network interfaces except when explicitly needed; (v) disassembling and reassembling packet headers; and (vi) employing traffic profile analysis to detect deviations from the volume/types of traffic expected within organizations or call backs to command and control centers. Devices enforcing strict adherence to protocol formats include, for example, deep packet inspection firewalls and XML gateways. These devices verify adherence to protocol formats and specification at the application layer and serve to identify vulnerabilities that cannot be detected by devices operating at the network or transport layers. This control enhancement is closely associated with cross-domain solutions and system guards enforcing information flow requirements.", "external_references": [ { @@ -12524,14 +12524,14 @@ } ], "id": "course-of-action--1ccc1298-f453-4317-926e-1226d76b7eab", - "modified": "2021-01-06T18:28:39.867Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Prevent Unauthorized Exfiltration", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.867Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The information system only allows incoming communications from [Assignment: organization-defined authorized sources] to be routed to [Assignment: organization-defined authorized destinations].\nThis control enhancement provides determinations that source and destination address pairs represent authorized/allowed communications. Such determinations can be based on several factors including, for example, the presence of source/destination address pairs in lists of authorized/allowed communications, the absence of address pairs in lists of unauthorized/disallowed pairs, or meeting more general rules for authorized/allowed source/destination pairs.", "external_references": [ { @@ -12540,14 +12540,14 @@ } ], "id": "course-of-action--c5b993fa-040b-4887-8d76-5d12d6a14ac9", - "modified": "2021-01-06T18:28:39.867Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Restrict Incoming Communications Traffic", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The organization implements [Assignment: organization-defined host-based boundary protection mechanisms] at [Assignment: organization-defined information system components].\nHost-based boundary protection mechanisms include, for example, host-based firewalls. Information system components employing host-based boundary protection mechanisms include, for example, servers, workstations, and mobile devices.", "external_references": [ { @@ -12556,14 +12556,14 @@ } ], "id": "course-of-action--21431823-507b-4c57-9e56-37788ff6bd06", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Host-Based Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The organization isolates [Assignment: organization-defined information security tools, mechanisms, and support components] from other internal information system components by implementing physically separate subnetworks with managed interfaces to other components of the system.\nPhysically separate subnetworks with managed interfaces are useful, for example, in isolating computer network defenses from critical operational processing networks to prevent adversaries from discovering the analysis and forensics techniques of organizations.", "external_references": [ { @@ -12572,14 +12572,14 @@ } ], "id": "course-of-action--22a70625-c58f-4f36-97aa-06a4659e0a40", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Isolation Of Security Tools / Mechanisms / Support Components", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.978Z", "description": "The organization protects against unauthorized physical connections at [Assignment: organization-defined managed interfaces].\nInformation systems operating at different security categories or classification levels may share common physical and environmental controls, since the systems may share space within organizational facilities. In practice, it is possible that these separate information systems may share common equipment rooms, wiring closets, and cable distribution paths. Protection against unauthorized physical connections can be achieved, for example, by employing clearly identified and physically separated cable trays, connection frames, and patch panels for each side of managed interfaces with physical access controls enforcing limited authorized access to these items.", "external_references": [ { @@ -12588,14 +12588,14 @@ } ], "id": "course-of-action--3bcb0c27-4aef-4546-9bfb-e2ab59452165", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.978Z", "name": "Protects Against Unauthorized Physical Connections", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system routes all networked, privileged accesses through a dedicated, managed interface for purposes of access control and auditing.", "external_references": [ { @@ -12604,14 +12604,14 @@ } ], "id": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Route Privileged Network Accesses", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system prevents discovery of specific system components composing a managed interface.\nThis control enhancement protects network addresses of information system components that are part of managed interfaces from discovery through common tools and techniques used to identify devices on networks. Network addresses are not available for discovery (e.g., network address not published or entered in domain name systems), requiring prior knowledge for access. Another obfuscation technique is to periodically change network addresses.", "external_references": [ { @@ -12620,14 +12620,14 @@ } ], "id": "course-of-action--fc82e631-0190-4fcc-9c77-8959e405ee82", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Prevent Discovery Of Components / Devices", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.868Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system enforces adherence to protocol formats.\nInformation system components that enforce protocol formats include, for example, deep packet inspection firewalls and XML gateways. Such system components verify adherence to protocol formats/specifications (e.g., IEEE) at the application layer and identify significant vulnerabilities that cannot be detected by devices operating at the network or transport layers.", "external_references": [ { @@ -12636,14 +12636,14 @@ } ], "id": "course-of-action--9c46ccd2-9e0d-4577-8c82-3b34cfbc8108", - "modified": "2021-01-06T18:28:39.868Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Automated Enforcement Of Protocol Formats", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.869Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system fails securely in the event of an operational failure of a boundary protection device.\nFail secure is a condition achieved by employing information system mechanisms to ensure that in the event of operational failures of boundary protection devices at managed interfaces (e.g., routers, firewalls, guards, and application gateways residing on protected subnetworks commonly referred to as demilitarized zones), information systems do not enter into unsecure states where intended security properties no longer hold. Failures of boundary protection devices cannot lead to, or cause information external to the devices to enter the devices, nor can failures permit unauthorized information releases.", "external_references": [ { @@ -12652,7 +12652,7 @@ } ], "id": "course-of-action--ef95e238-29ae-4eb5-86f8-a94e467a68ef", - "modified": "2021-01-06T18:28:39.869Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Fail Secure", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12662,7 +12662,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.869Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system blocks both inbound and outbound communications traffic between [Assignment: organization-defined communication clients] that are independently configured by end users and external service providers.\nCommunication clients independently configured by end users and external service providers include, for example, instant messaging clients. Traffic blocking does not apply to communication clients that are configured by organizations to perform authorized functions.", "external_references": [ { @@ -12671,14 +12671,14 @@ } ], "id": "course-of-action--d521ac7f-7eca-4d49-a7e0-e4f2e2f3fd19", - "modified": "2021-01-06T18:28:39.869Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Blocks Communication From Non-Organizationally Configured Hosts", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.869Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system provides the capability to dynamically isolate/segregate [Assignment: organization-defined information system components] from other components of the system.\nThe capability to dynamically isolate or segregate certain internal components of organizational information systems is useful when it is necessary to partition or separate certain components of dubious origin from those components possessing greater trustworthiness. Component isolation reduces the attack surface of organizational information systems. Isolation of selected information system components is also a means of limiting the damage from successful cyber attacks when those attacks occur.", "external_references": [ { @@ -12687,14 +12687,14 @@ } ], "id": "course-of-action--6c96bcd9-35e4-4728-9d4e-c5f602766a94", - "modified": "2021-01-06T18:28:39.869Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Dynamic Isolation / Segregation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.870Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The organization employs boundary protection mechanisms to separate [Assignment: organization-defined information system components] supporting [Assignment: organization-defined missions and/or business functions].\nOrganizations can isolate information system components performing different missions and/or business functions. Such isolation limits unauthorized information flows among system components and also provides the opportunity to deploy greater levels of protection for selected components. Separating system components with boundary protection mechanisms provides the capability for increased protection of individual components and to more effectively control information flows between those components. This type of enhanced protection limits the potential harm from cyber attacks and errors. The degree of separation provided varies depending upon the mechanisms chosen. Boundary protection mechanisms include, for example, routers, gateways, and firewalls separating system components into physically separate networks or subnetworks, cross-domain devices separating subnetworks, virtualization techniques, and encrypting information flows among system components using distinct encryption keys.", "external_references": [ { @@ -12703,7 +12703,7 @@ } ], "id": "course-of-action--a6828341-9dbb-4755-ba6a-1db22e8cd940", - "modified": "2021-01-06T18:28:39.870Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Isolation Of Information System Components", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12713,7 +12713,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.870Z", + "created": "2021-01-13T01:50:48.979Z", "description": "The information system implements separate network addresses (i.e., different subnets) to connect to systems in different security domains.\nDecomposition of information systems into subnets helps to provide the appropriate level of protection for network connections to different security domains containing information with different security categories or classification levels.", "external_references": [ { @@ -12722,14 +12722,14 @@ } ], "id": "course-of-action--a9001242-2b69-4544-944a-3e85840f7e9a", - "modified": "2021-01-06T18:28:39.870Z", + "modified": "2021-01-13T01:50:48.979Z", "name": "Separate Subnets For Connecting To Different Security Domains", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.870Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system disables feedback to senders on protocol format validation failure.\nDisabling feedback to senders when there is a failure in protocol validation format prevents adversaries from obtaining information which would otherwise be unavailable.", "external_references": [ { @@ -12738,14 +12738,14 @@ } ], "id": "course-of-action--0c1bfee1-6320-49cb-b09b-dda50be4a4f0", - "modified": "2021-01-06T18:28:39.870Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Disable Sender Feedback On Protocol Validation Failure", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.871Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system protects the [Selection (one or more): confidentiality; integrity] of transmitted information.\nThis control applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. Protecting the confidentiality and/or integrity of organizational information can be accomplished by physical means (e.g., by employing protected distribution systems) or by logical means (e.g., employing encryption techniques). Organizations relying on commercial providers offering transmission services as commodity services rather than as fully dedicated services (i.e., services which can be highly specialized to individual customer needs), may find it difficult to obtain the necessary assurances regarding the implementation of needed security controls for transmission confidentiality/integrity. In such situations, organizations determine what types of confidentiality/integrity services are available in standard, commercial telecommunication service packages. If it is infeasible or impractical to obtain the necessary security controls and assurances of control effectiveness through appropriate contracting vehicles, organizations implement appropriate compensating security controls or explicitly accept the additional risk.", "external_references": [ { @@ -12754,7 +12754,7 @@ } ], "id": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "modified": "2021-01-06T18:28:39.871Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Transmission Confidentiality And Integrity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12765,7 +12765,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.871Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system implements cryptographic mechanisms to [Selection (one or more): prevent unauthorized disclosure of information; detect changes to information] during transmission unless otherwise protected by [Assignment: organization-defined alternative physical safeguards].\nEncrypting information for transmission protects information from unauthorized disclosure and modification. Cryptographic mechanisms implemented to protect information integrity include, for example, cryptographic hash functions which have common application in digital signatures, checksums, and message authentication codes. Alternative physical security safeguards include, for example, protected distribution systems.", "external_references": [ { @@ -12774,7 +12774,7 @@ } ], "id": "course-of-action--def52ac9-8ea1-4397-92fa-b929d07325fa", - "modified": "2021-01-06T18:28:39.871Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Cryptographic Or Alternate Physical Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12785,7 +12785,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.871Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system maintains the [Selection (one or more): confidentiality; integrity] of information during preparation for transmission and during reception.\nInformation can be either unintentionally or maliciously disclosed or modified during preparation for transmission or during reception including, for example, during aggregation, at protocol transformation points, and during packing/unpacking. These unauthorized disclosures or modifications compromise the confidentiality or integrity of the information.", "external_references": [ { @@ -12794,14 +12794,14 @@ } ], "id": "course-of-action--d79d3cc2-e5ca-4661-b9c6-1823d210b004", - "modified": "2021-01-06T18:28:39.871Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Pre / Post Transmission Handling", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.871Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system implements cryptographic mechanisms to protect message externals unless otherwise protected by [Assignment: organization-defined alternative physical safeguards].\nThis control enhancement addresses protection against unauthorized disclosure of information. Message externals include, for example, message headers/routing information. This control enhancement prevents the exploitation of message externals and applies to both internal and external networks or links that may be visible to individuals who are not authorized users. Header/routing information is sometimes transmitted unencrypted because the information is not properly identified by organizations as having significant value or because encrypting the information can result in lower network performance and/or higher costs. Alternative physical safeguards include, for example, protected distribution systems.", "external_references": [ { @@ -12810,14 +12810,14 @@ } ], "id": "course-of-action--d3dbbc7c-417d-492b-b17f-72d2fd2b2718", - "modified": "2021-01-06T18:28:39.871Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Cryptographic Protection For Message Externals", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.872Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system implements cryptographic mechanisms to conceal or randomize communication patterns unless otherwise protected by [Assignment: organization-defined alternative physical safeguards].\nThis control enhancement addresses protection against unauthorized disclosure of information. Communication patterns include, for example, frequency, periods, amount, and predictability. Changes to communications patterns can reveal information having intelligence value especially when combined with other available information related to missions/business functions supported by organizational information systems. This control enhancement prevents the derivation of intelligence based on communications patterns and applies to both internal and external networks or links that may be visible to individuals who are not authorized users. Encrypting the links and transmitting in continuous, fixed/random patterns prevents the derivation of intelligence from the system communications patterns. Alternative physical safeguards include, for example, protected distribution systems.", "external_references": [ { @@ -12826,14 +12826,14 @@ } ], "id": "course-of-action--4b042a69-6b37-4844-aaec-e75af42e9080", - "modified": "2021-01-06T18:28:39.872Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Conceal / Randomize Communications", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.872Z", + "created": "2021-01-13T01:50:48.980Z", "description": "[Withdrawn: Incorporated into SC-8].", "external_references": [ { @@ -12842,13 +12842,13 @@ } ], "id": "course-of-action--d298a0f4-9090-451b-a5d6-22b9cbe8e57c", - "modified": "2021-01-06T18:28:39.872Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Transmission Confidentiality", "type": "course-of-action", "x_mitre_family": "System And Communications Protection" }, { - "created": "2021-01-06T18:28:39.872Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The information system terminates the network connection associated with a communications session at the end of the session or after [Assignment: organization-defined time period] of inactivity.\nThis control applies to both internal and external networks. Terminating network connections associated with communications sessions include, for example, de-allocating associated TCP/IP address/port pairs at the operating system level, or de-allocating networking assignments at the application level if multiple application sessions are using a single, operating system-level network connection. Time periods of inactivity may be established by organizations and include, for example, time periods by type of network access or for specific network accesses.", "external_references": [ { @@ -12857,7 +12857,7 @@ } ], "id": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "modified": "2021-01-06T18:28:39.872Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Network Disconnect", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12868,7 +12868,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.872Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The information system establishes a trusted communications path between the user and the following security functions of the system: [Assignment: organization-defined security functions to include at a minimum, information system authentication and re-authentication].\nTrusted paths are mechanisms by which users (through input devices) can communicate directly with security functions of information systems with the requisite assurance to support information security policies. The mechanisms can be activated only by users or the security functions of organizational information systems. User responses via trusted paths are protected from modifications by or disclosure to untrusted applications. Organizations employ trusted paths for high-assurance connections between security functions of information systems and users (e.g., during system logons). Enforcement of trusted communications paths is typically provided via an implementation that meets the reference monitor concept.", "external_references": [ { @@ -12877,14 +12877,14 @@ } ], "id": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", - "modified": "2021-01-06T18:28:39.872Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Trusted Path", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.873Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The information system provides a trusted communications path that is logically isolated and distinguishable from other paths.", "external_references": [ { @@ -12893,14 +12893,14 @@ } ], "id": "course-of-action--d627974a-6eb7-4676-9ad2-76ffe1149ce9", - "modified": "2021-01-06T18:28:39.873Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Logical Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.873Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The organization establishes and manages cryptographic keys for required cryptography employed within the information system in accordance with [Assignment: organization-defined requirements for key generation, distribution, storage, access, and destruction].\nCryptographic key management and establishment can be performed using manual procedures or automated mechanisms with supporting manual procedures. Organizations define key management requirements in accordance with applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance, specifying appropriate options, levels, and parameters. Organizations manage trust stores to ensure that only approved trust anchors are in such trust stores. This includes certificates with visibility external to organizational information systems and certificates related to the internal operations of systems.", "external_references": [ { @@ -12909,7 +12909,7 @@ } ], "id": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "modified": "2021-01-06T18:28:39.873Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Cryptographic Key Establishment And Management", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12921,7 +12921,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.873Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The organization maintains availability of information in the event of the loss of cryptographic keys by users.\nEscrowing of encryption keys is a common practice for ensuring availability in the event of loss of keys (e.g., due to forgotten passphrase).", "external_references": [ { @@ -12930,7 +12930,7 @@ } ], "id": "course-of-action--de996922-0ce6-4f20-9f7f-6973408ee2d1", - "modified": "2021-01-06T18:28:39.873Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Availability", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -12940,7 +12940,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.874Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The organization produces, controls, and distributes symmetric cryptographic keys using [Selection: NIST FIPS-compliant; NSA-approved] key management technology and processes.", "external_references": [ { @@ -12949,14 +12949,14 @@ } ], "id": "course-of-action--525f0f1f-48f0-491f-81c9-88f4022d2ec7", - "modified": "2021-01-06T18:28:39.874Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Symmetric Keys", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.874Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The organization produces, controls, and distributes asymmetric cryptographic keys using [Selection: NSA-approved key management technology and processes; approved PKI Class 3 certificates or prepositioned keying material; approved PKI Class 3 or Class 4 certificates and hardware security tokens that protect the user\u00ef\u00bf\u00bds private key].", "external_references": [ { @@ -12965,14 +12965,14 @@ } ], "id": "course-of-action--3a8d4626-95b5-46fd-93ff-3d01a5afae69", - "modified": "2021-01-06T18:28:39.874Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Asymmetric Keys", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.874Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-12].", "external_references": [ { @@ -12981,14 +12981,14 @@ } ], "id": "course-of-action--9ee93bf6-616b-45bc-9414-079255fbeeda", - "modified": "2021-01-06T18:28:39.874Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Pki Certificates", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-12].", "external_references": [ { @@ -12997,14 +12997,14 @@ } ], "id": "course-of-action--90528b9f-8586-4343-8718-27119602e4c9", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Pki Certificates / Hardware Tokens", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "The information system implements [Assignment: organization-defined cryptographic uses and type of cryptography required for each use] in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.\nCryptography can be employed to support a variety of security solutions including, for example, the protection of classified and Controlled Unclassified Information, the provision of digital signatures, and the enforcement of information separation when authorized individuals have the necessary clearances for such information but lack the necessary formal access approvals. Cryptography can also be used to support random number generation and hash generation. Generally applicable cryptographic standards include FIPS-validated cryptography and NSA-approved cryptography. This control does not impose any requirements on organizations to use cryptography. However, if cryptography is required based on the selection of other security controls, organizations define each type of cryptographic use and the type of cryptography required (e.g., protection of classified information: NSA-approved cryptography; provision of digital signatures: FIPS-validated cryptography).", "external_references": [ { @@ -13013,7 +13013,7 @@ } ], "id": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13025,7 +13025,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-13].", "external_references": [ { @@ -13034,14 +13034,14 @@ } ], "id": "course-of-action--6233dcea-26ae-442e-a941-0ab14d4e6bda", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Fips-Validated Cryptography", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-13].", "external_references": [ { @@ -13050,14 +13050,14 @@ } ], "id": "course-of-action--e17b0dc2-78dc-45e5-950a-8c3623b1cb02", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Nsa-Approved Cryptography", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-13].", "external_references": [ { @@ -13066,14 +13066,14 @@ } ], "id": "course-of-action--1c8905e8-4809-461f-9f92-86956c69d30e", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Individuals Without Formal Access Approvals", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.982Z", "description": "[Withdrawn: Incorporated into SC-13].", "external_references": [ { @@ -13082,14 +13082,14 @@ } ], "id": "course-of-action--4719418a-9dae-45ff-abd8-241cbf1a876b", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.982Z", "name": "Digital Signatures", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.875Z", + "created": "2021-01-13T01:50:48.983Z", "description": "[Withdrawn: Capability provided by AC-2, AC-3, AC-5, AC-6, SI-3, SI-4, SI-5, SI-7, SI-10].", "external_references": [ { @@ -13098,13 +13098,13 @@ } ], "id": "course-of-action--095aa38d-00ce-4091-a36a-1a0540238107", - "modified": "2021-01-06T18:28:39.875Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Public Access Protections", "type": "course-of-action", "x_mitre_family": "System And Communications Protection" }, { - "created": "2021-01-06T18:28:39.876Z", + "created": "2021-01-13T01:50:48.983Z", "description": "The information system:\n\n* **SC-15a.** Prohibits remote activation of collaborative computing devices with the following exceptions: [Assignment: organization-defined exceptions where remote activation is to be allowed]; and\n* **SC-15b.** Provides an explicit indication of use to users physically present at the devices.\n\nCollaborative computing devices include, for example, networked white boards, cameras, and microphones. Explicit indication of use includes, for example, signals to users when collaborative computing devices are activated.", "external_references": [ { @@ -13113,7 +13113,7 @@ } ], "id": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", - "modified": "2021-01-06T18:28:39.876Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Collaborative Computing Devices", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13125,7 +13125,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.876Z", + "created": "2021-01-13T01:50:48.983Z", "description": "The information system provides physical disconnect of collaborative computing devices in a manner that supports ease of use.\nFailing to physically disconnect from collaborative computing devices can result in subsequent compromises of organizational information. Providing easy methods to physically disconnect from such devices after a collaborative computing session helps to ensure that participants actually carry out the disconnect activity without having to go through complex and tedious procedures.", "external_references": [ { @@ -13134,14 +13134,14 @@ } ], "id": "course-of-action--988e7887-9a5a-4559-b7c0-62db1e27ba42", - "modified": "2021-01-06T18:28:39.876Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Physical Disconnect", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.876Z", + "created": "2021-01-13T01:50:48.983Z", "description": "[Withdrawn: Incorporated into SC-7].", "external_references": [ { @@ -13150,14 +13150,14 @@ } ], "id": "course-of-action--ff2ecdd1-3333-4ab7-a7f5-0df311d71160", - "modified": "2021-01-06T18:28:39.876Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Blocking Inbound / Outbound Communications Traffic", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.876Z", + "created": "2021-01-13T01:50:48.983Z", "description": "The organization disables or removes collaborative computing devices from [Assignment: organization-defined information systems or information system components] in [Assignment: organization-defined secure work areas].\nFailing to disable or remove collaborative computing devices from information systems or information system components can result in subsequent compromises of organizational information including, for example, eavesdropping on conversations.", "external_references": [ { @@ -13166,14 +13166,14 @@ } ], "id": "course-of-action--9efcb82f-f07e-4936-9655-d6d59cab279f", - "modified": "2021-01-06T18:28:39.876Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Disabling / Removal In Secure Work Areas", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.876Z", + "created": "2021-01-13T01:50:48.983Z", "description": "The information system provides an explicit indication of current participants in [Assignment: organization-defined online meetings and teleconferences].\nThis control enhancement helps to prevent unauthorized individuals from participating in collaborative computing sessions without the explicit knowledge of other participants.", "external_references": [ { @@ -13182,14 +13182,14 @@ } ], "id": "course-of-action--40cf76a9-2a03-4c16-af73-803be5661f85", - "modified": "2021-01-06T18:28:39.876Z", + "modified": "2021-01-13T01:50:48.983Z", "name": "Explicitly Indicate Current Participants", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The information system associates [Assignment: organization-defined security attributes] with information exchanged between information systems and between system components.\nSecurity attributes can be explicitly or implicitly associated with the information contained in organizational information systems or system components.", "external_references": [ { @@ -13198,14 +13198,14 @@ } ], "id": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Transmission Of Security Attributes", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The information system validates the integrity of transmitted security attributes.\nThis control enhancement ensures that the verification of the integrity of transmitted information includes security attributes.", "external_references": [ { @@ -13214,14 +13214,14 @@ } ], "id": "course-of-action--6b9239f9-ba06-4516-ad8b-f59e6e17097d", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Integrity Validation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The organization issues public key certificates under an [Assignment: organization-defined certificate policy] or obtains public key certificates from an approved service provider.\nFor all certificates, organizations manage information system trust stores to ensure only approved trust anchors are in the trust stores. This control addresses both certificates with visibility external to organizational information systems and certificates related to the internal operations of systems, for example, application-specific time services.", "external_references": [ { @@ -13230,7 +13230,7 @@ } ], "id": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Public Key Infrastructure Certificates", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13241,7 +13241,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The organization:\n\n* **SC-18a.** Defines acceptable and unacceptable mobile code and mobile code technologies;\n* **SC-18b.** Establishes usage restrictions and implementation guidance for acceptable mobile code and mobile code technologies; and\n* **SC-18c.** Authorizes, monitors, and controls the use of mobile code within the information system.\n\nDecisions regarding the employment of mobile code within organizational information systems are based on the potential for the code to cause damage to the systems if used maliciously. Mobile code technologies include, for example, Java, JavaScript, ActiveX, Postscript, PDF, Shockwave movies, Flash animations, and VBScript. Usage restrictions and implementation guidance apply to both the selection and use of mobile code installed on servers and mobile code downloaded and executed on individual workstations and devices (e.g., smart phones). Mobile code policy and procedures address preventing the development, acquisition, or introduction of unacceptable mobile code within organizational information systems.", "external_references": [ { @@ -13250,7 +13250,7 @@ } ], "id": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Mobile Code", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13261,7 +13261,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.878Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The information system identifies [Assignment: organization-defined unacceptable mobile code] and takes [Assignment: organization-defined corrective actions].\nCorrective actions when unacceptable mobile code is detected include, for example, blocking, quarantine, or alerting administrators. Blocking includes, for example, preventing transmission of word processing files with embedded macros when such macros have been defined to be unacceptable mobile code.", "external_references": [ { @@ -13270,14 +13270,14 @@ } ], "id": "course-of-action--b6ff76c4-1d1b-4026-9714-fb653e1cd1ec", - "modified": "2021-01-06T18:28:39.878Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Identify Unacceptable Code / Take Corrective Actions", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.878Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The organization ensures that the acquisition, development, and use of mobile code to be deployed in the information system meets [Assignment: organization-defined mobile code requirements].", "external_references": [ { @@ -13286,14 +13286,14 @@ } ], "id": "course-of-action--c6a41a32-f536-4cb1-b226-43a39d91506d", - "modified": "2021-01-06T18:28:39.878Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Acquisition / Development / Use", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.878Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The information system prevents the download and execution of [Assignment: organization-defined unacceptable mobile code].", "external_references": [ { @@ -13302,14 +13302,14 @@ } ], "id": "course-of-action--a4daaa7c-d5d1-4a47-b60d-9bbc0f1dc410", - "modified": "2021-01-06T18:28:39.878Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Prevent Downloading / Execution", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.878Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system prevents the automatic execution of mobile code in [Assignment: organization-defined software applications] and enforces [Assignment: organization-defined actions] prior to executing the code.\nActions enforced before executing mobile code, include, for example, prompting users prior to opening electronic mail attachments. Preventing automatic execution of mobile code includes, for example, disabling auto execute features on information system components employing portable storage devices such as Compact Disks (CDs), Digital Video Disks (DVDs), and Universal Serial Bus (USB) devices.", "external_references": [ { @@ -13318,14 +13318,14 @@ } ], "id": "course-of-action--07fddef8-050c-414b-a466-9a0cd1f34a29", - "modified": "2021-01-06T18:28:39.878Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Prevent Automatic Execution", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The organization allows execution of permitted mobile code only in confined virtual machine environments.", "external_references": [ { @@ -13334,14 +13334,14 @@ } ], "id": "course-of-action--81833f78-bc10-4849-b92b-753a26c4a8e5", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Allow Execution Only In Confined Environments", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The organization:\n\n* **SC-19a.** Establishes usage restrictions and implementation guidance for Voice over Internet Protocol (VoIP) technologies based on the potential to cause damage to the information system if used maliciously; and\n* **SC-19b.** Authorizes, monitors, and controls the use of VoIP within the information system.\n", "external_references": [ { @@ -13350,7 +13350,7 @@ } ], "id": "course-of-action--48521e2d-539f-48ff-976c-728833c50549", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Voice Over Internet Protocol", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13361,7 +13361,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system:\n\n* **SC-20a.** Provides additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and\n* **SC-20b.** Provides the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains, when operating as part of a distributed, hierarchical namespace.\n\nThis control enables external clients including, for example, remote Internet clients, to obtain origin authentication and integrity verification assurances for the host/service name to network address resolution information obtained through the service. Information systems that provide name and address resolution services include, for example, domain name system (DNS) servers. Additional artifacts include, for example, DNS Security (DNSSEC) digital signatures and cryptographic keys. DNS resource records are examples of authoritative data. The means to indicate the security status of child zones includes, for example, the use of delegation signer resource records in the DNS. The DNS security controls reflect (and are referenced from) OMB Memorandum 08-23. Information systems that use technologies other than the DNS to map between host/service names and network addresses provide other means to assure the authenticity and integrity of response data.", "external_references": [ { @@ -13370,7 +13370,7 @@ } ], "id": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Secure Name / Address Resolution Service (Authoritative Source)", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13382,7 +13382,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "[Withdrawn: Incorporated into SC-20].", "external_references": [ { @@ -13391,14 +13391,14 @@ } ], "id": "course-of-action--1bbb2fbb-4e13-4101-b91f-6c1e1742a425", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Child Subspaces", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system provides data origin and integrity protection artifacts for internal name/address resolution queries.", "external_references": [ { @@ -13407,14 +13407,14 @@ } ], "id": "course-of-action--d0c82eda-6ca8-4855-8003-d466a25b8d06", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Data Origin / Integrity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system requests and performs data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.\nEach client of name resolution services either performs this validation on its own, or has authenticated channels to trusted validation providers. Information systems that provide name and address resolution services for local clients include, for example, recursive resolving or caching domain name system (DNS) servers. DNS client resolvers either perform validation of DNSSEC signatures, or clients use authenticated channels to recursive resolvers that perform such validations. Information systems that use technologies other than the DNS to map between host/service names and network addresses provide other means to enable clients to verify the authenticity and integrity of response data.", "external_references": [ { @@ -13423,7 +13423,7 @@ } ], "id": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Secure Name / Address Resolution Service (Recursive Or Caching Resolver)", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13435,7 +13435,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "[Withdrawn: Incorporated into SC-21].", "external_references": [ { @@ -13444,14 +13444,14 @@ } ], "id": "course-of-action--16dbf9b5-a830-423b-a6d5-d00f942c53a2", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Data Origin / Integrity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal/external role separation.\nInformation systems that provide name and address resolution services include, for example, domain name system (DNS) servers. To eliminate single points of failure and to enhance redundancy, organizations employ at least two authoritative domain name system servers, one configured as the primary server and the other configured as the secondary server. Additionally, organizations typically deploy the servers in two geographically separated network subnetworks (i.e., not located in the same physical facility). For role separation, DNS servers with internal roles only process name and address resolution requests from within organizations (i.e., from internal clients). DNS servers with external roles only process name and address resolution information requests from clients external to organizations (i.e., on external networks including the Internet). Organizations specify clients that can access authoritative DNS servers in particular roles (e.g., by address ranges, explicit lists).", "external_references": [ { @@ -13460,7 +13460,7 @@ } ], "id": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Architecture And Provisioning For Name / Address Resolution Service", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13472,7 +13472,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information system protects the authenticity of communications sessions.\nThis control addresses communications protection at the session, versus packet level (e.g., sessions in service-oriented architectures providing web-based services) and establishes grounds for confidence at both ends of communications sessions in ongoing identities of other parties and in the validity of information transmitted. Authenticity protection includes, for example, protecting against man-in-the-middle attacks/session hijacking and the insertion of false information into sessions.", "external_references": [ { @@ -13481,7 +13481,7 @@ } ], "id": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Session Authenticity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13492,7 +13492,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information system invalidates session identifiers upon user logout or other session termination.\nThis control enhancement curtails the ability of adversaries from capturing and continuing to employ previously valid session IDs.", "external_references": [ { @@ -13501,14 +13501,14 @@ } ], "id": "course-of-action--97017652-2dd6-4f55-bcdb-9d02ad677de1", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Invalidate Session Identifiers At Logout", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "[Withdrawn: Incorporated into AC-12 (1)].", "external_references": [ { @@ -13517,14 +13517,14 @@ } ], "id": "course-of-action--1f32b2d0-7d70-41bf-93fb-a160896103b4", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "User-Initiated Logouts / Message Displays", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.881Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information system generates a unique session identifier for each session with [Assignment: organization-defined randomness requirements] and recognizes only session identifiers that are system-generated.\nThis control enhancement curtails the ability of adversaries from reusing previously valid session IDs. Employing the concept of randomness in the generation of unique session identifiers helps to protect against brute-force attacks to determine future session identifiers.", "external_references": [ { @@ -13533,14 +13533,14 @@ } ], "id": "course-of-action--878c9438-4c75-44d1-a0ce-8df08b268abb", - "modified": "2021-01-06T18:28:39.881Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Unique Session Identifiers With Randomization", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.881Z", + "created": "2021-01-13T01:50:48.986Z", "description": "[Withdrawn: Incorporated into SC-23 (3)].", "external_references": [ { @@ -13549,14 +13549,14 @@ } ], "id": "course-of-action--4bad35ca-97f1-42cc-a8bc-d81a8019836c", - "modified": "2021-01-06T18:28:39.881Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Unique Session Identifiers With Randomization", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.881Z", + "created": "2021-01-13T01:50:48.987Z", "description": "The information system only allows the use of [Assignment: organization-defined certificate authorities] for verification of the establishment of protected sessions.\nReliance on certificate authorities (CAs) for the establishment of secure sessions includes, for example, the use of Secure Socket Layer (SSL) and/or Transport Layer Security (TLS) certificates. These certificates, after verification by the respective certificate authorities, facilitate the establishment of protected sessions between web clients and web servers.", "external_references": [ { @@ -13565,14 +13565,14 @@ } ], "id": "course-of-action--082c739f-4637-4eda-9b1b-69ac29f71e1e", - "modified": "2021-01-06T18:28:39.881Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Allowed Certificate Authorities", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.882Z", + "created": "2021-01-13T01:50:48.987Z", "description": "The information system fails to a [Assignment: organization-defined known-state] for [Assignment: organization-defined types of failures] preserving [Assignment: organization-defined system state information] in failure.\nFailure in a known state addresses security concerns in accordance with the mission/business needs of organizations. Failure in a known secure state helps to prevent the loss of confidentiality, integrity, or availability of information in the event of failures of organizational information systems or system components. Failure in a known safe state helps to prevent systems from failing to a state that may cause injury to individuals or destruction to property. Preserving information system state information facilitates system restart and return to the operational mode of organizations with less disruption of mission/business processes.", "external_references": [ { @@ -13581,7 +13581,7 @@ } ], "id": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", - "modified": "2021-01-06T18:28:39.882Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Fail In Known State", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13591,7 +13591,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.882Z", + "created": "2021-01-13T01:50:48.987Z", "description": "The organization employs [Assignment: organization-defined information system components] with minimal functionality and information storage.\nThe deployment of information system components with reduced/minimal functionality (e.g., diskless nodes and thin client technologies) reduces the need to secure every user endpoint, and may reduce the exposure of information, information systems, and services to cyber attacks.", "external_references": [ { @@ -13600,14 +13600,14 @@ } ], "id": "course-of-action--dbc9bb19-8dae-4bde-8754-ad7774ddfeb1", - "modified": "2021-01-06T18:28:39.882Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Thin Nodes", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.882Z", + "created": "2021-01-13T01:50:48.987Z", "description": "The information system includes components specifically designed to be the target of malicious attacks for the purpose of detecting, deflecting, and analyzing such attacks.\nA honeypot is set up as a decoy to attract adversaries and to deflect their attacks away from the operational systems supporting organizational missions/business function. Depending upon the specific usage of the honeypot, consultation with the Office of the General Counsel before deployment may be needed.", "external_references": [ { @@ -13616,14 +13616,14 @@ } ], "id": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", - "modified": "2021-01-06T18:28:39.882Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Honeypots", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.883Z", + "created": "2021-01-13T01:50:48.987Z", "description": "[Withdrawn: Incorporated into SC-35].", "external_references": [ { @@ -13632,14 +13632,14 @@ } ], "id": "course-of-action--bd65789c-746a-4963-ac2e-bda98fd33184", - "modified": "2021-01-06T18:28:39.883Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Detection Of Malicious Code", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.883Z", + "created": "2021-01-13T01:50:48.988Z", "description": "The information system includes: [Assignment: organization-defined platform-independent applications].\nPlatforms are combinations of hardware and software used to run software applications. Platforms include: (i) operating systems; (ii) the underlying computer architectures, or (iii) both. Platform-independent applications are applications that run on multiple platforms. Such applications promote portability and reconstitution on different platforms, increasing the availability of critical functions within organizations while information systems with specific operating systems are under attack.", "external_references": [ { @@ -13648,14 +13648,14 @@ } ], "id": "course-of-action--4fa12fcf-c615-4cd2-8cb7-af94b93ad777", - "modified": "2021-01-06T18:28:39.883Z", + "modified": "2021-01-13T01:50:48.988Z", "name": "Platform-Independent Applications", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.883Z", + "created": "2021-01-13T01:50:48.988Z", "description": "The information system protects the [Selection (one or more): confidentiality; integrity] of [Assignment: organization-defined information at rest].\nThis control addresses the confidentiality and integrity of information at rest and covers user information and system information. Information at rest refers to the state of information when it is located on storage devices as specific components of information systems. System-related information requiring protection includes, for example, configurations or rule sets for firewalls, gateways, intrusion detection/prevention systems, filtering routers, and authenticator content. Organizations may employ different mechanisms to achieve confidentiality and integrity protections, including the use of cryptographic mechanisms and file share scanning. Integrity protection can be achieved, for example, by implementing Write-Once-Read-Many (WORM) technologies. Organizations may also employ other security controls including, for example, secure off-line storage in lieu of online storage when adequate protection of information at rest cannot otherwise be achieved and/or continuous monitoring to identify malicious code at rest.", "external_references": [ { @@ -13664,7 +13664,7 @@ } ], "id": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "modified": "2021-01-06T18:28:39.883Z", + "modified": "2021-01-13T01:50:48.988Z", "name": "Protection Of Information At Rest", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -13675,7 +13675,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.884Z", + "created": "2021-01-13T01:50:48.988Z", "description": "The information system implements cryptographic mechanisms to prevent unauthorized disclosure and modification of [Assignment: organization-defined information] on [Assignment: organization-defined information system components].\nSelection of cryptographic mechanisms is based on the need to protect the confidentiality and integrity of organizational information. The strength of mechanism is commensurate with the security category and/or classification of the information. This control enhancement applies to significant concentrations of digital media in organizational areas designated for media storage and also to limited quantities of media generally associated with information system components in operational environments (e.g., portable storage devices, mobile devices). Organizations have the flexibility to either encrypt all information on storage devices (i.e., full disk encryption) or encrypt specific data structures (e.g., files, records, or fields). Organizations employing cryptographic mechanisms to protect information at rest also consider cryptographic key management solutions.", "external_references": [ { @@ -13684,14 +13684,14 @@ } ], "id": "course-of-action--b21f1426-f2a0-4be6-8a07-8904c8c818d6", - "modified": "2021-01-06T18:28:39.884Z", + "modified": "2021-01-13T01:50:48.988Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.884Z", + "created": "2021-01-13T01:50:48.988Z", "description": "The organization removes from online storage and stores off-line in a secure location [Assignment: organization-defined information].\nRemoving organizational information from online information system storage to off-line storage eliminates the possibility of individuals gaining unauthorized access to the information through a network. Therefore, organizations may choose to move information to off-line storage in lieu of protecting such information in online storage.", "external_references": [ { @@ -13700,14 +13700,14 @@ } ], "id": "course-of-action--70a89650-c37f-436e-ba9f-fdfba03f07be", - "modified": "2021-01-06T18:28:39.884Z", + "modified": "2021-01-13T01:50:48.988Z", "name": "Off-Line Storage", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.884Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs a diverse set of information technologies for [Assignment: organization-defined information system components] in the implementation of the information system.\nIncreasing the diversity of information technologies within organizational information systems reduces the impact of potential exploitations of specific technologies and also defends against common mode failures, including those failures induced by supply chain attacks. Diversity in information technologies also reduces the likelihood that the means adversaries use to compromise one information system component will be equally effective against other system components, thus further increasing the adversary work factor to successfully complete planned cyber attacks. An increase in diversity may add complexity and management overhead which could ultimately lead to mistakes and unauthorized configurations.", "external_references": [ { @@ -13716,14 +13716,14 @@ } ], "id": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", - "modified": "2021-01-06T18:28:39.884Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Heterogeneity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs virtualization techniques to support the deployment of a diversity of operating systems and applications that are changed [Assignment: organization-defined frequency].\nWhile frequent changes to operating systems and applications pose configuration management challenges, the changes can result in an increased work factor for adversaries in order to carry out successful cyber attacks. Changing virtual operating systems or applications, as opposed to changing actual operating systems/applications, provide virtual changes that impede attacker success while reducing configuration management efforts. In addition, virtualization techniques can assist organizations in isolating untrustworthy software and/or software of dubious provenance into confined execution environments.", "external_references": [ { @@ -13732,14 +13732,14 @@ } ], "id": "course-of-action--2d06ab08-358c-4412-afaf-a3393f0f8f48", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Virtualization Techniques", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs [Assignment: organization-defined concealment and misdirection techniques] for [Assignment: organization-defined information systems] at [Assignment: organization-defined time periods] to confuse and mislead adversaries.\nConcealment and misdirection techniques can significantly reduce the targeting capability of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete cyber attacks. For example, virtualization techniques provide organizations with the ability to disguise information systems, potentially reducing the likelihood of successful attacks without the cost of having multiple platforms. Increased use of concealment/misdirection techniques including, for example, randomness, uncertainty, and virtualization, may sufficiently confuse and mislead adversaries and subsequently increase the risk of discovery and/or exposing tradecraft. Concealment/misdirection techniques may also provide organizations additional time to successfully perform core missions and business functions. Because of the time and effort required to support concealment/misdirection techniques, it is anticipated that such techniques would be used by organizations on a very limited basis.", "external_references": [ { @@ -13748,14 +13748,14 @@ } ], "id": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Concealment And Misdirection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "[Withdrawn: Incorporated into SC-29 (1)].", "external_references": [ { @@ -13764,14 +13764,14 @@ } ], "id": "course-of-action--e48a0e5c-daf5-49e0-ae80-66daa6857d1b", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Virtualization Techniques", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs [Assignment: organization-defined techniques] to introduce randomness into organizational operations and assets.\nRandomness introduces increased levels of uncertainty for adversaries regarding the actions organizations take in defending against cyber attacks. Such actions may impede the ability of adversaries to correctly target information resources of organizations supporting critical missions/business functions. Uncertainty may also cause adversaries to hesitate before initiating or continuing attacks. Misdirection techniques involving randomness include, for example, performing certain routine actions at different times of day, employing different information technologies (e.g., browsers, search engines), using different suppliers, and rotating roles and responsibilities of organizational personnel.", "external_references": [ { @@ -13780,14 +13780,14 @@ } ], "id": "course-of-action--fbda47be-c806-44f5-9833-90f7a902fa26", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Randomness", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization changes the location of [Assignment: organization-defined processing and/or storage] [Selection: [Assignment: organization-defined time frequency]; at random time intervals]].\nAdversaries target critical organizational missions/business functions and the information resources supporting those missions and functions while at the same time, trying to minimize exposure of their existence and tradecraft. The static, homogeneous, and deterministic nature of organizational information systems targeted by adversaries, make such systems more susceptible to cyber attacks with less adversary cost and effort to be successful. Changing organizational processing and storage locations (sometimes referred to as moving target defense) addresses the advanced persistent threat (APT) using techniques such as virtualization, distributed processing, and replication. This enables organizations to relocate the information resources (i.e., processing and/or storage) supporting critical missions and business functions. Changing locations of processing activities and/or storage sites introduces uncertainty into the targeting activities by adversaries. This uncertainty increases the work factor of adversaries making compromises or breaches to organizational information systems much more difficult and time-consuming, and increases the chances that adversaries may inadvertently disclose aspects of tradecraft while attempting to locate critical organizational resources.", "external_references": [ { @@ -13796,14 +13796,14 @@ } ], "id": "course-of-action--b6ea8f4d-9cbf-4879-9aaf-1594d9cb386d", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Change Processing / Storage Locations", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs realistic, but misleading information in [Assignment: organization-defined information system components] with regard to its security state or posture.\nThis control enhancement misleads potential adversaries regarding the nature and extent of security safeguards deployed by organizations. As a result, adversaries may employ incorrect (and as a result ineffective) attack techniques. One way of misleading adversaries is for organizations to place misleading information regarding the specific security controls deployed in external information systems that are known to be accessed or targeted by adversaries. Another technique is the use of deception nets (e.g., honeynets, virtualized environments) that mimic actual aspects of organizational information systems but use, for example, out-of-date software configurations.", "external_references": [ { @@ -13812,14 +13812,14 @@ } ], "id": "course-of-action--25bc6e7c-8347-4cf9-8ad9-4a5dcfe37ce7", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Misleading Information", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization employs [Assignment: organization-defined techniques] to hide or conceal [Assignment: organization-defined information system components].\nBy hiding, disguising, or otherwise concealing critical information system components, organizations may be able to decrease the probability that adversaries target and successfully compromise those assets. Potential means for organizations to hide and/or conceal information system components include, for example, configuration of routers or the use of honeynets or virtualization techniques.", "external_references": [ { @@ -13828,14 +13828,14 @@ } ], "id": "course-of-action--af72253b-0beb-4b53-a380-4b3626cccdb5", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Concealment Of System Components", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization:\n\n* **SC-31a.** Performs a covert channel analysis to identify those aspects of communications within the information system that are potential avenues for covert [Selection (one or more): storage; timing] channels; and\n* **SC-31b.** Estimates the maximum bandwidth of those channels.\n\nDevelopers are in the best position to identify potential areas within systems that might lead to covert channels. Covert channel analysis is a meaningful activity when there is the potential for unauthorized information flows across security domains, for example, in the case of information systems containing export-controlled information and having connections to external networks (i.e., networks not controlled by organizations). Covert channel analysis is also meaningful for multilevel secure (MLS) information systems, multiple security level (MSL) systems, and cross-domain systems.", "external_references": [ { @@ -13844,14 +13844,14 @@ } ], "id": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Covert Channel Analysis", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization tests a subset of the identified covert channels to determine which channels are exploitable.", "external_references": [ { @@ -13860,14 +13860,14 @@ } ], "id": "course-of-action--f46882ad-b537-4063-95d6-98ae2b212d05", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Test Covert Channels For Exploitability", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization reduces the maximum bandwidth for identified covert [Selection (one or more); storage; timing] channels to [Assignment: organization-defined values].\nInformation system developers are in the best position to reduce the maximum bandwidth for identified covert storage and timing channels.", "external_references": [ { @@ -13876,14 +13876,14 @@ } ], "id": "course-of-action--88ff1dde-5bfa-45d0-9b41-dd137cff042c", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Maximum Bandwidth", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization measures the bandwidth of [Assignment: organization-defined subset of identified covert channels] in the operational environment of the information system.\nThis control enhancement addresses covert channel bandwidth in operational environments versus developmental environments. Measuring covert channel bandwidth in operational environments helps organizations to determine how much information can be covertly leaked before such leakage adversely affects organizational missions/business functions. Covert channel bandwidth may be significantly different when measured in those settings that are independent of the particular environments of operation (e.g., laboratories or development environments).", "external_references": [ { @@ -13892,14 +13892,14 @@ } ], "id": "course-of-action--6e9d7430-907a-43ed-862f-012c20c325e5", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Measure Bandwidth In Operational Environments", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization partitions the information system into [Assignment: organization-defined information system components] residing in separate physical domains or environments based on [Assignment: organization-defined circumstances for physical separation of components].\nInformation system partitioning is a part of a defense-in-depth protection strategy. Organizations determine the degree of physical separation of system components from physically distinct components in separate racks in the same room, to components in separate rooms for the more critical components, to more significant geographical separation of the most critical components. Security categorization can guide the selection of appropriate candidates for domain partitioning. Managed interfaces restrict or prohibit network access and information flow among partitioned information system components.", "external_references": [ { @@ -13908,14 +13908,14 @@ } ], "id": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Information System Partitioning", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.990Z", "description": "[Withdrawn: Incorporated into SC-8].", "external_references": [ { @@ -13924,13 +13924,13 @@ } ], "id": "course-of-action--24c8e214-8e4a-46c9-92f4-7a0d82af2914", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Transmission Preparation Integrity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The information system at [Assignment: organization-defined information system components]:\n\n* **SC-34a.** Loads and executes the operating environment from hardware-enforced, read-only media; and\n* **SC-34b.** Loads and executes [Assignment: organization-defined applications] from hardware-enforced, read-only media.\n\nThe term operating environment is defined as the specific code that hosts applications, for example, operating systems, executives, or monitors including virtual machine monitors (i.e., hypervisors). It can also include certain applications running directly on hardware platforms. Hardware-enforced, read-only media include, for example, Compact Disk-Recordable (CD-R)/Digital Video Disk-Recordable (DVD-R) disk drives and one-time programmable read-only memory. The use of non-modifiable storage ensures the integrity of software from the point of creation of the read-only image. The use of reprogrammable read-only memory can be accepted as read-only media provided: (i) integrity can be adequately protected from the point of initial writing to the insertion of the memory into the information system; and (ii) there are reliable hardware protections against reprogramming the memory while installed in organizational information systems.", "external_references": [ { @@ -13939,14 +13939,14 @@ } ], "id": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Non-Modifiable Executable Programs", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization employs [Assignment: organization-defined information system components] with no writeable storage that is persistent across component restart or power on/off.\nThis control enhancement: (i) eliminates the possibility of malicious code insertion via persistent, writeable storage within the designated information system components; and (ii) applies to both fixed and removable storage, with the latter being addressed directly or as specific restrictions imposed through access controls for mobile devices.", "external_references": [ { @@ -13955,14 +13955,14 @@ } ], "id": "course-of-action--92803874-2a01-4183-b0f6-3d30cf06c626", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "No Writable Storage", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization protects the integrity of information prior to storage on read-only media and controls the media after such information has been recorded onto the media.\nSecurity safeguards prevent the substitution of media into information systems or the reprogramming of programmable read-only media prior to installation into the systems. Security safeguards include, for example, a combination of prevention, detection, and response.", "external_references": [ { @@ -13971,14 +13971,14 @@ } ], "id": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Integrity Protection / Read-Only Media", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization:\n\n* **SC-34 (3)(a)** Employs hardware-based, write-protect for [Assignment: organization-defined information system firmware components]; and\n* **SC-34 (3)(b)** Implements specific procedures for [Assignment: organization-defined authorized individuals] to manually disable hardware write-protect for firmware modifications and re-enable the write-protect prior to returning to operational mode.\n", "external_references": [ { @@ -13987,14 +13987,14 @@ } ], "id": "course-of-action--3200cd15-e902-4431-823e-f80ea925bb10", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Hardware-Based Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The information system includes components that proactively seek to identify malicious websites and/or web-based malicious code.\nHoneyclients differ from honeypots in that the components actively probe the Internet in search of malicious code (e.g., worms) contained on external websites. As with honeypots, honeyclients require some supporting isolation measures (e.g., virtualization) to ensure that any malicious code discovered during the search and subsequently executed does not infect organizational information systems.", "external_references": [ { @@ -14003,14 +14003,14 @@ } ], "id": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Honeyclients", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization distributes [Assignment: organization-defined processing and storage] across multiple physical locations.\nDistributing processing and storage across multiple physical locations provides some degree of redundancy or overlap for organizations, and therefore increases the work factor of adversaries to adversely impact organizational operations, assets, and individuals. This control does not assume a single primary processing or storage location, and thus allows for parallel processing and storage.", "external_references": [ { @@ -14019,14 +14019,14 @@ } ], "id": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Distributed Processing And Storage", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization employs polling techniques to identify potential faults, errors, or compromises to [Assignment: organization-defined distributed processing and storage components].\nDistributed processing and/or storage may be employed to reduce opportunities for adversaries to successfully compromise the confidentiality, integrity, or availability of information and information systems. However, distribution of processing and/or storage components does not prevent adversaries from compromising one (or more) of the distributed components. Polling compares the processing results and/or storage content from the various distributed components and subsequently voting on the outcomes. Polling identifies potential faults, errors, or compromises in distributed processing and/or storage components.", "external_references": [ { @@ -14035,14 +14035,14 @@ } ], "id": "course-of-action--fd2be2b2-92b4-4df1-9e7f-a794342744be", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Polling Techniques", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization employs [Assignment: organization-defined out-of-band channels] for the physical delivery or electronic transmission of [Assignment: organization-defined information, information system components, or devices] to [Assignment: organization-defined individuals or information systems].\nOut-of-band channels include, for example, local (nonnetwork) accesses to information systems, network paths physically separate from network paths used for operational traffic, or nonelectronic paths such as the US Postal Service. This is in contrast with using the same channels (i.e., in-band channels) that carry routine operational traffic. Out-of-band channels do not have the same vulnerability/exposure as in-band channels, and hence the confidentiality, integrity, or availability compromises of in-band channels will not compromise the out-of-band channels. Organizations may employ out-of-band channels in the delivery or transmission of many organizational items including, for example, identifiers/authenticators, configuration management changes for hardware, firmware, or software, cryptographic key management information, security updates, system/data backups, maintenance information, and malicious code protection updates.", "external_references": [ { @@ -14051,14 +14051,14 @@ } ], "id": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Out-Of-Band Channels", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The organization employs [Assignment: organization-defined security safeguards] to ensure that only [Assignment: organization-defined individuals or information systems] receive the [Assignment: organization-defined information, information system components, or devices].\nTechniques and/or methods employed by organizations to ensure that only designated information systems or individuals receive particular information, system components, or devices include, for example, sending authenticators via courier service but requiring recipients to show some form of government-issued photographic identification as a condition of receipt.", "external_references": [ { @@ -14067,14 +14067,14 @@ } ], "id": "course-of-action--bf31c03c-2423-40fd-96f0-f11d84138bd9", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Ensure Delivery / Transmission", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The organization employs [Assignment: organization-defined operations security safeguards] to protect key organizational information throughout the system development life cycle.\nOperations security (OPSEC) is a systematic process by which potential adversaries can be denied information about the capabilities and intentions of organizations by identifying, controlling, and protecting generally unclassified information that specifically relates to the planning and execution of sensitive organizational activities. The OPSEC process involves five steps: (i) identification of critical information (e.g., the security categorization process); (ii) analysis of threats; (iii) analysis of vulnerabilities; (iv) assessment of risks; and (v) the application of appropriate countermeasures. OPSEC safeguards are applied to both organizational information systems and the environments in which those systems operate. OPSEC safeguards help to protect the confidentiality of key information including, for example, limiting the sharing of information with suppliers and potential suppliers of information system components, information technology products and services, and with other non-organizational elements and individuals. Information critical to mission/business success includes, for example, user identities, element uses, suppliers, supply chain processes, functional and security requirements, system design specifications, testing protocols, and security control implementation details.", "external_references": [ { @@ -14083,14 +14083,14 @@ } ], "id": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Operations Security", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system maintains a separate execution domain for each executing process.\nInformation systems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each information system process has a distinct address space so that communication between processes is performed in a manner controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces. This capability is available in most commercial operating systems that employ multi-state processor technologies.", "external_references": [ { @@ -14099,7 +14099,7 @@ } ], "id": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Process Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -14111,7 +14111,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.889Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system implements underlying hardware separation mechanisms to facilitate process separation.\nHardware-based separation of information system processes is generally less susceptible to compromise than software-based separation, thus providing greater assurance that the separation will be enforced. Underlying hardware separation mechanisms include, for example, hardware memory management.", "external_references": [ { @@ -14120,14 +14120,14 @@ } ], "id": "course-of-action--bf8c68fe-8743-4043-ac06-4ff086aaad67", - "modified": "2021-01-06T18:28:39.889Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Hardware Separation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.889Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system maintains a separate execution domain for each thread in [Assignment: organization-defined multi-threaded processing].", "external_references": [ { @@ -14136,14 +14136,14 @@ } ], "id": "course-of-action--233a37e2-4efa-4ebf-8132-825b2832f1c5", - "modified": "2021-01-06T18:28:39.889Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Thread Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.889Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system protects external and internal [Assignment: organization-defined wireless links] from [Assignment: organization-defined types of signal parameter attacks or references to sources for such attacks].\nThis control applies to internal and external wireless communication links that may be visible to individuals who are not authorized information system users. Adversaries can exploit the signal parameters of wireless links if such links are not adequately protected. There are many ways to exploit the signal parameters of wireless links to gain intelligence, deny service, or to spoof users of organizational information systems. This control reduces the impact of attacks that are unique to wireless systems. If organizations rely on commercial service providers for transmission services as commodity items rather than as fully dedicated services, it may not be possible to implement this control.", "external_references": [ { @@ -14152,14 +14152,14 @@ } ], "id": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", - "modified": "2021-01-06T18:28:39.889Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Wireless Link Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.889Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system implements cryptographic mechanisms that achieve [Assignment: organization-defined level of protection] against the effects of intentional electromagnetic interference.\nThis control enhancement protects against intentional jamming that might deny or impair communications by ensuring that wireless spread spectrum waveforms used to provide anti-jam protection are not predictable by unauthorized individuals. The control enhancement may also coincidentally help to mitigate the effects of unintentional jamming due to interference from legitimate transmitters sharing the same spectrum. Mission requirements, projected threats, concept of operations, and applicable legislation, directives, regulations, policies, standards, and guidelines determine levels of wireless link availability and performance/cryptography needed.", "external_references": [ { @@ -14168,14 +14168,14 @@ } ], "id": "course-of-action--bf3171ce-e3d4-4090-aba6-e837b2c5f808", - "modified": "2021-01-06T18:28:39.889Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Electromagnetic Interference", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.889Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The information system implements cryptographic mechanisms to reduce the detection potential of wireless links to [Assignment: organization-defined level of reduction].\nThis control enhancement is needed for covert communications and protecting wireless transmitters from being geo-located by their transmissions. The control enhancement ensures that spread spectrum waveforms used to achieve low probability of detection are not predictable by unauthorized individuals. Mission requirements, projected threats, concept of operations, and applicable legislation, directives, regulations, policies, standards, and guidelines determine the levels to which wireless links should be undetectable.", "external_references": [ { @@ -14184,14 +14184,14 @@ } ], "id": "course-of-action--67ffba0c-3a40-48e4-af5e-b5db35cc9123", - "modified": "2021-01-06T18:28:39.889Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Reduce Detection Potential", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The information system implements cryptographic mechanisms to identify and reject wireless transmissions that are deliberate attempts to achieve imitative or manipulative communications deception based on signal parameters.\nThis control enhancement ensures that the signal parameters of wireless transmissions are not predictable by unauthorized individuals. Such unpredictability reduces the probability of imitative or manipulative communications deception based upon signal parameters alone.", "external_references": [ { @@ -14200,14 +14200,14 @@ } ], "id": "course-of-action--0a17ffe4-9892-4e7e-8342-67ca9022ad63", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Imitative Or Manipulative Communications Deception", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The information system implements cryptographic mechanisms to prevent the identification of [Assignment: organization-defined wireless transmitters] by using the transmitter signal parameters.\nRadio fingerprinting techniques identify the unique signal parameters of transmitters to fingerprint such transmitters for purposes of tracking and mission/user identification. This control enhancement protects against the unique identification of wireless transmitters for purposes of intelligence exploitation by ensuring that anti-fingerprinting alterations to signal parameters are not predictable by unauthorized individuals. This control enhancement helps assure mission success when anonymity is required.", "external_references": [ { @@ -14216,14 +14216,14 @@ } ], "id": "course-of-action--abe4fb7e-450d-4e2a-9f4c-2950558c298f", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Signal Parameter Identification", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The organization physically disables or removes [Assignment: organization-defined connection ports or input/output devices] on [Assignment: organization-defined information systems or information system components].\nConnection ports include, for example, Universal Serial Bus (USB) and Firewire (IEEE 1394). Input/output (I/O) devices include, for example, Compact Disk (CD) and Digital Video Disk (DVD) drives. Physically disabling or removing such connection ports and I/O devices helps prevent exfiltration of information from information systems and the introduction of malicious code into systems from those ports/devices.", "external_references": [ { @@ -14232,14 +14232,14 @@ } ], "id": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Port And I/O Device Access", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The information system:\n\n* **SC-42a.** Prohibits the remote activation of environmental sensing capabilities with the following exceptions: [Assignment: organization-defined exceptions where remote activation of sensors is allowed]; and\n* **SC-42b.** Provides an explicit indication of sensor use to [Assignment: organization-defined class of users].\n\nThis control often applies to types of information systems or system components characterized as mobile devices, for example, smart phones, tablets, and E-readers. These systems often include sensors that can collect and record data regarding the environment where the system is in use. Sensors that are embedded within mobile devices include, for example, cameras, microphones, Global Positioning System (GPS) mechanisms, and accelerometers. While the sensors on mobiles devices provide an important function, if activated covertly, such devices can potentially provide a means for adversaries to learn valuable information about individuals and organizations. For example, remotely activating the GPS function on a mobile device could provide an adversary with the ability to track the specific movements of an individual.", "external_references": [ { @@ -14248,14 +14248,14 @@ } ], "id": "course-of-action--792d8a5c-c104-4be2-a374-f426bb89d889", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Sensor Capability And Data", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The organization ensures that the information system is configured so that data or information collected by the [Assignment: organization-defined sensors] is only reported to authorized individuals or roles.\nIn situations where sensors are activated by authorized individuals (e.g., end users), it is still possible that the data/information collected by the sensors will be sent to unauthorized entities.", "external_references": [ { @@ -14264,14 +14264,14 @@ } ], "id": "course-of-action--cee53ff2-1a66-435a-91f0-0cad67499a09", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Reporting To Authorized Individuals Or Roles", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The organization employs the following measures: [Assignment: organization-defined measures], so that data or information collected by [Assignment: organization-defined sensors] is only used for authorized purposes.\nInformation collected by sensors for a specific authorized purpose potentially could be misused for some unauthorized purpose. For example, GPS sensors that are used to support traffic navigation could be misused to track movements of individuals. Measures to mitigate such activities include, for example, additional training to ensure that authorized parties do not abuse their authority, or (in the case where sensor data/information is maintained by external parties) contractual restrictions on the use of the data/information.", "external_references": [ { @@ -14280,14 +14280,14 @@ } ], "id": "course-of-action--fc53ae51-c545-430b-8f9e-f57320e2bac9", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Authorized Use", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization prohibits the use of devices possessing [Assignment: organization-defined environmental sensing capabilities] in [Assignment: organization-defined facilities, areas, or systems].\nFor example, organizations may prohibit individuals from bringing cell phones or digital cameras into certain facilities or specific controlled areas within facilities where classified information is stored or sensitive conversations are taking place.", "external_references": [ { @@ -14296,14 +14296,14 @@ } ], "id": "course-of-action--005f9232-6793-46a8-a633-a19f7a985dfc", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Prohibit Use Of Devices", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization:\n\n* **SC-43a.** Establishes usage restrictions and implementation guidance for [Assignment: organization-defined information system components] based on the potential to cause damage to the information system if used maliciously; and\n* **SC-43b.** Authorizes, monitors, and controls the use of such components within the information system.\n\nInformation system components include hardware, software, or firmware components (e.g., Voice Over Internet Protocol, mobile code, digital copiers, printers, scanners, optical devices, wireless technologies, mobile devices).", "external_references": [ { @@ -14312,14 +14312,14 @@ } ], "id": "course-of-action--44d1406d-f511-4f6d-adb3-ed9e18882713", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Usage Restrictions", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization employs a detonation chamber capability within [Assignment: organization-defined information system, system component, or location].\nDetonation chambers, also known as dynamic execution environments, allow organizations to open email attachments, execute untrusted or suspicious applications, and execute Universal Resource Locator (URL) requests in the safety of an isolated environment or virtualized sandbox. These protected and isolated execution environments provide a means of determining whether the associated attachments/applications contain malicious code. While related to the concept of deception nets, the control is not intended to maintain a long-term environment in which adversaries can operate and their actions can be observed. Rather, it is intended to quickly identify malicious code and reduce the likelihood that the code is propagated to user environments of operation (or prevent such propagation completely).", "external_references": [ { @@ -14328,14 +14328,14 @@ } ], "id": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Detonation Chambers", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization:\n\n* **SI-1a.** Develops, documents, and disseminates to [Assignment: organization-defined personnel or roles]:\n * **SI-1a.1.** A system and information integrity policy that addresses purpose, scope, roles, responsibilities, management commitment, coordination among organizational entities, and compliance; and\n * **SI-1a.2.** Procedures to facilitate the implementation of the system and information integrity policy and associated system and information integrity controls; and\n* **SI-1b.** Reviews and updates the current:\n * **SI-1b.1.** System and information integrity policy [Assignment: organization-defined frequency]; and\n * **SI-1b.2.** System and information integrity procedures [Assignment: organization-defined frequency].\n\nThis control addresses the establishment of policy and procedures for the effective implementation of selected security controls and control enhancements in the SI family. Policy and procedures reflect applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance. Security program policies and procedures at the organization level may make the need for system-specific policies and procedures unnecessary. The policy can be included as part of the general information security policy for organizations or conversely, can be represented by multiple policies reflecting the complex nature of certain organizations. The procedures can be established for the security program in general and for particular information systems, if needed. The organizational risk management strategy is a key factor in establishing policy and procedures.", "external_references": [ { @@ -14344,7 +14344,7 @@ } ], "id": "course-of-action--8c982806-f742-434c-8c4e-86eed693d937", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "System And Information Integrity Policy And Procedures", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14356,7 +14356,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization:\n\n* **SI-2a.** Identifies, reports, and corrects information system flaws;\n* **SI-2b.** Tests software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;\n* **SI-2c.** Installs security-relevant software and firmware updates within [Assignment: organization-defined time period] of the release of the updates; and\n* **SI-2d.** Incorporates flaw remediation into the organizational configuration management process.\n\nOrganizations identify information systems affected by announced software flaws including potential vulnerabilities resulting from those flaws, and report this information to designated organizational personnel with information security responsibilities. Security-relevant software updates include, for example, patches, service packs, hot fixes, and anti-virus signatures. Organizations also address flaws discovered during security assessments, continuous monitoring, incident response activities, and system error handling. Organizations take advantage of available resources such as the Common Weakness Enumeration (CWE) or Common Vulnerabilities and Exposures (CVE) databases in remediating flaws discovered in organizational information systems. By incorporating flaw remediation into ongoing configuration management processes, required/anticipated remediation actions can be tracked and verified. Flaw remediation actions that can be tracked and verified include, for example, determining whether organizations follow US-CERT guidance and Information Assurance Vulnerability Alerts. Organization-defined time periods for updating security-relevant software and firmware may vary based on a variety of factors including, for example, the security category of the information system or the criticality of the update (i.e., severity of the vulnerability related to the discovered flaw). Some types of flaw remediation may require more testing than other types. Organizations determine the degree and type of testing needed for the specific type of flaw remediation activity under consideration and also the types of changes that are to be configuration-managed. In some situations, organizations may determine that the testing of software and/or firmware updates is not necessary or practical, for example, when implementing simple anti-virus signature updates. Organizations may also consider in testing decisions, whether security-relevant software or firmware updates are obtained from authorized sources with appropriate digital signatures.", "external_references": [ { @@ -14365,7 +14365,7 @@ } ], "id": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Flaw Remediation", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14377,7 +14377,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization centrally manages the flaw remediation process.\nCentral management is the organization-wide management and implementation of flaw remediation processes. Central management includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed flaw remediation security controls.", "external_references": [ { @@ -14386,7 +14386,7 @@ } ], "id": "course-of-action--b1fde7f7-05a1-4284-be97-26a2637e5cbb", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Central Management", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14396,7 +14396,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization employs automated mechanisms [Assignment: organization-defined frequency] to determine the state of information system components with regard to flaw remediation.", "external_references": [ { @@ -14405,7 +14405,7 @@ } ], "id": "course-of-action--57d1610e-6089-40ad-89f6-d16e5b7a7385", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Automated Flaw Remediation Status", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14416,7 +14416,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization:\n\n* **SI-2 (3)(a)** Measures the time between flaw identification and flaw remediation; and\n* **SI-2 (3)(b)** Establishes [Assignment: organization-defined benchmarks] for taking corrective actions.\n\nThis control enhancement requires organizations to determine the current time it takes on the average to correct information system flaws after such flaws have been identified, and subsequently establish organizational benchmarks (i.e., time frames) for taking corrective actions. Benchmarks can be established by type of flaw and/or severity of the potential vulnerability if the flaw can be exploited.", "external_references": [ { @@ -14425,14 +14425,14 @@ } ], "id": "course-of-action--28b7727a-9c28-42c2-bb4a-72812e2dd593", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Time To Remediate Flaws / Benchmarks For Corrective Actions", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "[Withdrawn: Incorporated into SI-2].", "external_references": [ { @@ -14441,14 +14441,14 @@ } ], "id": "course-of-action--f7a05c4d-87d7-4b51-a6f4-15c1b58c89d8", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Automated Patch Management Tools", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "The organization installs [Assignment: organization-defined security-relevant software and firmware updates] automatically to [Assignment: organization-defined information system components].\nDue to information system integrity and availability concerns, organizations give careful consideration to the methodology used to carry out automatic updates. Organizations must balance the need to ensure that the updates are installed as soon as possible with the need to maintain configuration management and with any mission or operational impacts that automatic updates might impose.", "external_references": [ { @@ -14457,14 +14457,14 @@ } ], "id": "course-of-action--5090a78c-dec2-4a8b-a058-31301652fd84", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Automatic Software / Firmware Updates", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "The organization removes [Assignment: organization-defined software and firmware components] after updated versions have been installed.\nPrevious versions of software and/or firmware components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software and/or firmware automatically from the information system.", "external_references": [ { @@ -14473,14 +14473,14 @@ } ], "id": "course-of-action--6be9aba1-c1ea-4afd-847d-07762fde512c", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Removal Of Previous Versions Of Software / Firmware", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "The organization:\n\n* **SI-3a.** Employs malicious code protection mechanisms at information system entry and exit points to detect and eradicate malicious code;\n* **SI-3b.** Updates malicious code protection mechanisms whenever new releases are available in accordance with organizational configuration management policy and procedures;\n* **SI-3c.** Configures malicious code protection mechanisms to:\n * **SI-3c.1.** Perform periodic scans of the information system [Assignment: organization-defined frequency] and real-time scans of files from external sources at [Selection (one or more); endpoint; network entry/exit points] as the files are downloaded, opened, or executed in accordance with organizational security policy; and\n * **SI-3c.2.** [Selection (one or more): block malicious code; quarantine malicious code; send alert to administrator; [Assignment: organization-defined action]] in response to malicious code detection; and\n* **SI-3d.** Addresses the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the information system.\n\nInformation system entry and exit points include, for example, firewalls, electronic mail servers, web servers, proxy servers, remote-access servers, workstations, notebook computers, and mobile devices. Malicious code includes, for example, viruses, worms, Trojan horses, and spyware. Malicious code can also be encoded in various formats (e.g., UUENCODE, Unicode), contained within compressed or hidden files, or hidden in files using steganography. Malicious code can be transported by different means including, for example, web accesses, electronic mail, electronic mail attachments, and portable storage devices. Malicious code insertions occur through the exploitation of information system vulnerabilities. Malicious code protection mechanisms include, for example, anti-virus signature definitions and reputation-based technologies. A variety of technologies and methods exist to limit or eliminate the effects of malicious code. Pervasive configuration management and comprehensive software integrity controls may be effective in preventing execution of unauthorized code. In addition to commercial off-the-shelf software, malicious code may also be present in custom-built software. This could include, for example, logic bombs, back doors, and other types of cyber attacks that could affect organizational missions/business functions. Traditional malicious code protection mechanisms cannot always detect such code. In these situations, organizations rely instead on other safeguards including, for example, secure coding practices, configuration management and control, trusted procurement processes, and monitoring practices to help ensure that software does not perform functions other than the functions intended. Organizations may determine that in response to the detection of malicious code, different actions may be warranted. For example, organizations can define actions in response to malicious code detection during periodic scans, actions in response to detection of malicious downloads, and/or actions in response to detection of maliciousness when attempting to open or execute files.", "external_references": [ { @@ -14489,7 +14489,7 @@ } ], "id": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Malicious Code Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14501,7 +14501,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "The organization centrally manages malicious code protection mechanisms.\nCentral management is the organization-wide management and implementation of malicious code protection mechanisms. Central management includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed flaw malicious code protection security controls.", "external_references": [ { @@ -14510,7 +14510,7 @@ } ], "id": "course-of-action--05501743-0615-49e7-b4aa-4088562d0307", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Central Management", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14521,7 +14521,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.011Z", "description": "The information system automatically updates malicious code protection mechanisms.\nMalicious code protection mechanisms include, for example, signature definitions. Due to information system integrity and availability concerns, organizations give careful consideration to the methodology used to carry out automatic updates.", "external_references": [ { @@ -14530,7 +14530,7 @@ } ], "id": "course-of-action--7640a9c1-29c4-4660-974d-dfd7f5a5686a", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.011Z", "name": "Automatic Updates", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14541,7 +14541,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "[Withdrawn: Incorporated into AC-6 (10)].", "external_references": [ { @@ -14550,14 +14550,14 @@ } ], "id": "course-of-action--5a9aff59-613f-404c-b6c1-94d9341afa43", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Non-Privileged Users", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "The information system updates malicious code protection mechanisms only when directed by a privileged user.\nThis control enhancement may be appropriate for situations where for reasons of security or operational continuity, updates are only applied when selected/approved by designated organizational personnel.", "external_references": [ { @@ -14566,14 +14566,14 @@ } ], "id": "course-of-action--40b4a7d9-136e-4937-b9f0-6ea261991c55", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Updates Only By Privileged Users", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "[Withdrawn: Incorporated into MP-7].", "external_references": [ { @@ -14582,14 +14582,14 @@ } ], "id": "course-of-action--65feaa0f-81cf-4804-9806-29b41291ac44", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Portable Storage Devices", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "The organization:\n\n* **SI-3 (6)(a)** Tests malicious code protection mechanisms [Assignment: organization-defined frequency] by introducing a known benign, non-spreading test case into the information system; and\n* **SI-3 (6)(b)** Verifies that both detection of the test case and associated incident reporting occur.\n", "external_references": [ { @@ -14598,14 +14598,14 @@ } ], "id": "course-of-action--5d574aac-0d4b-4105-ac9b-3a0426daed3b", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Testing / Verification", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "The information system implements nonsignature-based malicious code detection mechanisms.\nNonsignature-based detection mechanisms include, for example, the use of heuristics to detect, analyze, and describe the characteristics or behavior of malicious code and to provide safeguards against malicious code for which signatures do not yet exist or for which existing signatures may not be effective. This includes polymorphic malicious code (i.e., code that changes signatures when it replicates). This control enhancement does not preclude the use of signature-based detection mechanisms.", "external_references": [ { @@ -14614,14 +14614,14 @@ } ], "id": "course-of-action--ff03cee1-8e60-40af-9c71-cfb5efb9abff", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Nonsignature-Based Detection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.893Z", + "created": "2021-01-13T01:50:49.012Z", "description": "The information system detects [Assignment: organization-defined unauthorized operating system commands] through the kernel application programming interface at [Assignment: organization-defined information system hardware components] and [Selection (one or more): issues a warning; audits the command execution; prevents the execution of the command].\nThis control enhancement can also be applied to critical interfaces other than kernel-based interfaces, including for example, interfaces with virtual machines and privileged applications. Unauthorized operating system commands include, for example, commands for kernel functions from information system processes that are not trusted to initiate such commands, or commands for kernel functions that are suspicious even though commands of that type are reasonable for processes to initiate. Organizations can define the malicious commands to be detected by a combination of command types, command classes, or specific instances of commands. Organizations can define hardware components by specific component, component type, location in the network, or combination therein. Organizations may select different actions for different types/classes/specific instances of potentially malicious commands.", "external_references": [ { @@ -14630,14 +14630,14 @@ } ], "id": "course-of-action--86336018-6e64-44bb-bfaa-7391899ecec4", - "modified": "2021-01-06T18:28:39.893Z", + "modified": "2021-01-13T01:50:49.012Z", "name": "Detect Unauthorized Commands", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The information system implements [Assignment: organization-defined security safeguards] to authenticate [Assignment: organization-defined remote commands].\nThis control enhancement protects against unauthorized commands and replay of authorized commands. This capability is important for those remote information systems whose loss, malfunction, misdirection, or exploitation would have immediate and/or serious consequences (e.g., injury or death, property damage, loss of high-valued assets or sensitive information, or failure of important missions/business functions). Authentication safeguards for remote commands help to ensure that information systems accept and execute in the order intended, only authorized commands, and that unauthorized commands are rejected. Cryptographic mechanisms can be employed, for example, to authenticate remote commands.", "external_references": [ { @@ -14646,14 +14646,14 @@ } ], "id": "course-of-action--b94ea74b-a157-4b9c-ad84-d911ee2640c0", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Authenticate Remote Commands", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization:\n\n* **SI-3 (10)(a)** Employs [Assignment: organization-defined tools and techniques] to analyze the characteristics and behavior of malicious code; and\n* **SI-3 (10)(b)** Incorporates the results from malicious code analysis into organizational incident response and flaw remediation processes.\n\nThe application of selected malicious code analysis tools and techniques provides organizations with a more in-depth understanding of adversary tradecraft (i.e., tactics, techniques, and procedures) and the functionality and purpose of specific instances of malicious code. Understanding the characteristics of malicious code facilitates more effective organizational responses to current and future threats. Organizations can conduct malicious code analyses by using reverse engineering techniques or by monitoring the behavior of executing code.", "external_references": [ { @@ -14662,14 +14662,14 @@ } ], "id": "course-of-action--1b4d8689-ade6-4cc9-8fe7-065a45515b85", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Malicious Code Analysis", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization:\n\n* **SI-4a.** Monitors the information system to detect:\n * **SI-4a.1.** Attacks and indicators of potential attacks in accordance with [Assignment: organization-defined monitoring objectives]; and\n * **SI-4a.2.** Unauthorized local, network, and remote connections;\n* **SI-4b.** Identifies unauthorized use of the information system through [Assignment: organization-defined techniques and methods];\n* **SI-4c.** Deploys monitoring devices:\n * **SI-4c.1.** Strategically within the information system to collect organization-determined essential information; and\n * **SI-4c.2.** At ad hoc locations within the system to track specific types of transactions of interest to the organization;\n* **SI-4d.** Protects information obtained from intrusion-monitoring tools from unauthorized access, modification, and deletion;\n* **SI-4e.** Heightens the level of information system monitoring activity whenever there is an indication of increased risk to organizational operations and assets, individuals, other organizations, or the Nation based on law enforcement information, intelligence information, or other credible sources of information;\n* **SI-4f.** Obtains legal opinion with regard to information system monitoring activities in accordance with applicable federal laws, Executive Orders, directives, policies, or regulations; and\n* **SI-4g.** Provides [Assignment: organization-defined information system monitoring information] to [Assignment: organization-defined personnel or roles] [Selection (one or more): as needed; [Assignment: organization-defined frequency]].\n\nInformation system monitoring includes external and internal monitoring. External monitoring includes the observation of events occurring at the information system boundary (i.e., part of perimeter defense and boundary protection). Internal monitoring includes the observation of events occurring within the information system. Organizations can monitor information systems, for example, by observing audit activities in real time or by observing other system aspects such as access patterns, characteristics of access, and other actions. The monitoring objectives may guide determination of the events. Information system monitoring capability is achieved through a variety of tools and techniques (e.g., intrusion detection systems, intrusion prevention systems, malicious code protection software, scanning tools, audit record monitoring software, network monitoring software). Strategic locations for monitoring devices include, for example, selected perimeter locations and near server farms supporting critical applications, with such devices typically being employed at the managed interfaces associated with controls SC-7 and AC-17. Einstein network monitoring devices from the Department of Homeland Security can also be included as monitoring devices. The granularity of monitoring information collected is based on organizational monitoring objectives and the capability of information systems to support such objectives. Specific types of transactions of interest include, for example, Hyper Text Transfer Protocol (HTTP) traffic that bypasses HTTP proxies. Information system monitoring is an integral part of organizational continuous monitoring and incident response programs. Output from system monitoring serves as input to continuous monitoring and incident response programs. A network connection is any connection with a device that communicates through a network (e.g., local area network, Internet). A remote connection is any connection with a device communicating through an external network (e.g., the Internet). Local, network, and remote connections can be either wired or wireless.", "external_references": [ { @@ -14678,7 +14678,7 @@ } ], "id": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Information System Monitoring", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14690,7 +14690,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization connects and configures individual intrusion detection tools into an information system-wide intrusion detection system.", "external_references": [ { @@ -14699,14 +14699,14 @@ } ], "id": "course-of-action--ef71d41c-43d7-44f3-8e25-88b1c6400186", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "System-Wide Intrusion Detection System", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization employs automated tools to support near real-time analysis of events.\nAutomated tools include, for example, host-based, network-based, transport-based, or storage-based event monitoring tools or Security Information and Event Management (SIEM) technologies that provide real time analysis of alerts and/or notifications generated by organizational information systems.", "external_references": [ { @@ -14715,7 +14715,7 @@ } ], "id": "course-of-action--1a5b6f83-8c04-4a9f-88bd-dabef32125f8", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Automated Tools For Real-Time Analysis", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14726,7 +14726,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization employs automated tools to integrate intrusion detection tools into access control and flow control mechanisms for rapid response to attacks by enabling reconfiguration of these mechanisms in support of attack isolation and elimination.", "external_references": [ { @@ -14735,14 +14735,14 @@ } ], "id": "course-of-action--099dece0-8dd4-4400-9df6-7fd2747f4092", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Automated Tool Integration", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The information system monitors inbound and outbound communications traffic [Assignment: organization-defined frequency] for unusual or unauthorized activities or conditions.\nUnusual/unauthorized activities or conditions related to information system inbound and outbound communications traffic include, for example, internal traffic that indicates the presence of malicious code within organizational information systems or propagating among system components, the unauthorized exporting of information, or signaling to external information systems. Evidence of malicious code is used to identify potentially compromised information systems or information system components.", "external_references": [ { @@ -14751,7 +14751,7 @@ } ], "id": "course-of-action--66c877be-93c3-48a3-8e9a-dda28c4b06c4", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Inbound And Outbound Communications Traffic", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14762,7 +14762,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.014Z", "description": "The information system alerts [Assignment: organization-defined personnel or roles] when the following indications of compromise or potential compromise occur: [Assignment: organization-defined compromise indicators].\nAlerts may be generated from a variety of sources, including, for example, audit records or inputs from malicious code protection mechanisms, intrusion detection or prevention mechanisms, or boundary protection devices such as firewalls, gateways, and routers. Alerts can be transmitted, for example, telephonically, by electronic mail messages, or by text messaging. Organizational personnel on the notification list can include, for example, system administrators, mission/business owners, system owners, or information system security officers.", "external_references": [ { @@ -14771,7 +14771,7 @@ } ], "id": "course-of-action--3ddebb51-ddcf-4f3d-9449-b5088c24826f", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.014Z", "name": "System-Generated Alerts", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -14782,7 +14782,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.014Z", "description": "[Withdrawn: Incorporated into AC-6 (10)].", "external_references": [ { @@ -14791,14 +14791,14 @@ } ], "id": "course-of-action--acf050e8-a959-4bb9-92d9-48c4a043db80", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.014Z", "name": "Restrict Non-Privileged Users", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.014Z", "description": "The information system notifies [Assignment: organization-defined incident response personnel (identified by name and/or by role)] of detected suspicious events and takes [Assignment: organization-defined least-disruptive actions to terminate suspicious events].\nLeast-disruptive actions may include, for example, initiating requests for human responses.", "external_references": [ { @@ -14807,14 +14807,14 @@ } ], "id": "course-of-action--a38d3f14-56d4-4cad-8eb1-62a3d57b6477", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.014Z", "name": "Automated Response To Suspicious Events", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.014Z", "description": "[Withdrawn: Incorporated into SI-4].", "external_references": [ { @@ -14823,14 +14823,14 @@ } ], "id": "course-of-action--f93e33a5-6147-42bc-a919-4ceac3fe0c1e", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.014Z", "name": "Protection Of Monitoring Information", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.014Z", "description": "The organization tests intrusion-monitoring tools [Assignment: organization-defined frequency].\nTesting intrusion-monitoring tools is necessary to ensure that the tools are operating correctly and continue to meet the monitoring objectives of organizations. The frequency of testing depends on the types of tools used by organizations and methods of deployment.", "external_references": [ { @@ -14839,14 +14839,14 @@ } ], "id": "course-of-action--b1ed4311-8f18-4508-a257-dd717c51abc7", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.014Z", "name": "Testing Of Monitoring Tools", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.895Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization makes provisions so that [Assignment: organization-defined encrypted communications traffic] is visible to [Assignment: organization-defined information system monitoring tools].\nOrganizations balance the potentially conflicting needs for encrypting communications traffic and for having insight into such traffic from a monitoring perspective. For some organizations, the need to ensure the confidentiality of communications traffic is paramount; for others, mission-assurance is of greater concern. Organizations determine whether the visibility requirement applies to internal encrypted traffic, encrypted traffic intended for external destinations, or a subset of the traffic types.", "external_references": [ { @@ -14855,14 +14855,14 @@ } ], "id": "course-of-action--d220b27f-2634-461b-a012-9ee49ee0bc27", - "modified": "2021-01-06T18:28:39.895Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Visibility Of Encrypted Communications", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.896Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization analyzes outbound communications traffic at the external boundary of the information system and selected [Assignment: organization-defined interior points within the system (e.g., subnetworks, subsystems)] to discover anomalies.\nAnomalies within organizational information systems include, for example, large file transfers, long-time persistent connections, unusual protocols and ports in use, and attempted communications with suspected malicious external addresses.", "external_references": [ { @@ -14871,14 +14871,14 @@ } ], "id": "course-of-action--b73e7f5e-7c93-4b27-a99a-26f62fa62626", - "modified": "2021-01-06T18:28:39.896Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Analyze Communications Traffic Anomalies", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.896Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization employs automated mechanisms to alert security personnel of the following inappropriate or unusual activities with security implications: [Assignment: organization-defined activities that trigger alerts].\nThis control enhancement focuses on the security alerts generated by organizations and transmitted using automated means. In contrast to the alerts generated by information systems in SI-4 (5), which tend to focus on information sources internal to the systems (e.g., audit records), the sources of information for this enhancement can include other entities as well (e.g., suspicious activity reports, reports on potential insider threats).", "external_references": [ { @@ -14887,14 +14887,14 @@ } ], "id": "course-of-action--1ca4142b-1acf-459e-99f7-296e71ae5fb6", - "modified": "2021-01-06T18:28:39.896Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Automated Alerts", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.896Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization:\n\n* **SI-4 (13)(a)** Analyzes communications traffic/event patterns for the information system;\n* **SI-4 (13)(b)** Develops profiles representing common traffic patterns and/or events; and\n* **SI-4 (13)(c)** Uses the traffic/event profiles in tuning system-monitoring devices to reduce the number of false positives and the number of false negatives.\n", "external_references": [ { @@ -14903,14 +14903,14 @@ } ], "id": "course-of-action--4a4a8699-fd35-4d1c-9066-dc8995930616", - "modified": "2021-01-06T18:28:39.896Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Analyze Traffic / Event Patterns", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.896Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization employs a wireless intrusion detection system to identify rogue wireless devices and to detect attack attempts and potential compromises/breaches to the information system.\nWireless signals may radiate beyond the confines of organization-controlled facilities. Organizations proactively search for unauthorized wireless connections including the conduct of thorough scans for unauthorized wireless access points. Scans are not limited to those areas within facilities containing information systems, but also include areas outside of facilities as needed, to verify that unauthorized wireless access points are not connected to the systems.", "external_references": [ { @@ -14919,14 +14919,14 @@ } ], "id": "course-of-action--44e48cd2-ae55-4dd8-9061-5c3ad84c5e38", - "modified": "2021-01-06T18:28:39.896Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Wireless Intrusion Detection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.896Z", + "created": "2021-01-13T01:50:49.015Z", "description": "The organization employs an intrusion detection system to monitor wireless communications traffic as the traffic passes from wireless to wireline networks.", "external_references": [ { @@ -14935,14 +14935,14 @@ } ], "id": "course-of-action--158e4a17-eb80-481b-8755-80823887c423", - "modified": "2021-01-06T18:28:39.896Z", + "modified": "2021-01-13T01:50:49.015Z", "name": "Wireless To Wireline Communications", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization correlates information from monitoring tools employed throughout the information system.\nCorrelating information from different monitoring tools can provide a more comprehensive view of information system activity. The correlation of monitoring tools that usually work in isolation (e.g., host monitoring, network monitoring, anti-virus software) can provide an organization-wide view and in so doing, may reveal otherwise unseen attack patterns. Understanding the capabilities/limitations of diverse monitoring tools and how to maximize the utility of information generated by those tools can help organizations to build, operate, and maintain effective monitoring programs.", "external_references": [ { @@ -14951,14 +14951,14 @@ } ], "id": "course-of-action--9a644f50-2e19-42a3-a315-61b9a428ff3d", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Correlate Monitoring Information", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization correlates information from monitoring physical, cyber, and supply chain activities to achieve integrated, organization-wide situational awareness.\nThis control enhancement correlates monitoring information from a more diverse set of information sources to achieve integrated situational awareness. Integrated situational awareness from a combination of physical, cyber, and supply chain monitoring activities enhances the capability of organizations to more quickly detect sophisticated cyber attacks and investigate the methods and techniques employed to carry out such attacks. In contrast to SI-4 (16) which correlates the various cyber monitoring information, this control enhancement correlates monitoring beyond just the cyber domain. Such monitoring may help reveal attacks on organizations that are operating across multiple attack vectors.", "external_references": [ { @@ -14967,14 +14967,14 @@ } ], "id": "course-of-action--57e14d03-8de3-4eec-ba1e-0ad4de1d638d", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Integrated Situational Awareness", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization analyzes outbound communications traffic at the external boundary of the information system (i.e., system perimeter) and at [Assignment: organization-defined interior points within the system (e.g., subsystems, subnetworks)] to detect covert exfiltration of information.\nCovert means that can be used for the unauthorized exfiltration of organizational information include, for example, steganography.", "external_references": [ { @@ -14983,14 +14983,14 @@ } ], "id": "course-of-action--bb04a02b-be65-4b04-8447-c9fc9d247fdb", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Analyze Traffic / Covert Exfiltration", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization implements [Assignment: organization-defined additional monitoring] of individuals who have been identified by [Assignment: organization-defined sources] as posing an increased level of risk.\nIndications of increased risk from individuals can be obtained from a variety of sources including, for example, human resource records, intelligence agencies, law enforcement organizations, and/or other credible sources. The monitoring of individuals is closely coordinated with management, legal, security, and human resources officials within organizations conducting such monitoring and complies with federal legislation, Executive Orders, policies, directives, regulations, and standards.", "external_references": [ { @@ -14999,14 +14999,14 @@ } ], "id": "course-of-action--15a70c97-aa80-4d2f-a060-c756a2771d2a", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Individuals Posing Greater Risk", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization implements [Assignment: organization-defined additional monitoring] of privileged users.", "external_references": [ { @@ -15015,14 +15015,14 @@ } ], "id": "course-of-action--14c038eb-fd30-4b72-b9c4-3fb464cc070f", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Privileged Users", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization implements [Assignment: organization-defined additional monitoring] of individuals during [Assignment: organization-defined probationary period].", "external_references": [ { @@ -15031,14 +15031,14 @@ } ], "id": "course-of-action--5fa5c644-fb36-4ea3-a27e-845a16acbe0f", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Probationary Periods", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.897Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The information system detects network services that have not been authorized or approved by [Assignment: organization-defined authorization or approval processes] and [Selection (one or more): audits; alerts [Assignment: organization-defined personnel or roles]].\nUnauthorized or unapproved network services include, for example, services in service-oriented architectures that lack organizational verification or validation and therefore may be unreliable or serve as malicious rogues for valid services.", "external_references": [ { @@ -15047,14 +15047,14 @@ } ], "id": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", - "modified": "2021-01-06T18:28:39.897Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Unauthorized Network Services", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.016Z", "description": "The organization implements [Assignment: organization-defined host-based monitoring mechanisms] at [Assignment: organization-defined information system components].\nInformation system components where host-based monitoring can be implemented include, for example, servers, workstations, and mobile devices. Organizations consider employing host-based monitoring mechanisms from multiple information technology product developers.", "external_references": [ { @@ -15063,14 +15063,14 @@ } ], "id": "course-of-action--5496696e-085b-4643-908b-071efe6ea3c7", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.016Z", "name": "Host-Based Devices", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The information system discovers, collects, distributes, and uses indicators of compromise.\nIndicators of compromise (IOC) are forensic artifacts from intrusions that are identified on organizational information systems (at the host or network level). IOCs provide organizations with valuable information on objects or information systems that have been compromised. IOCs for the discovery of compromised hosts can include for example, the creation of registry key values. IOCs for network traffic include, for example, Universal Resource Locator (URL) or protocol elements that indicate malware command and control servers. The rapid distribution and adoption of IOCs can improve information security by reducing the time that information systems and organizations are vulnerable to the same exploit or attack.", "external_references": [ { @@ -15079,14 +15079,14 @@ } ], "id": "course-of-action--4bfec462-22f8-4963-ba93-9e58e55c428d", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Indicators Of Compromise", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization:\n\n* **SI-5a.** Receives information system security alerts, advisories, and directives from [Assignment: organization-defined external organizations] on an ongoing basis;\n* **SI-5b.** Generates internal security alerts, advisories, and directives as deemed necessary;\n* **SI-5c.** Disseminates security alerts, advisories, and directives to: [Selection (one or more): [Assignment: organization-defined personnel or roles]; [Assignment: organization-defined elements within the organization]; [Assignment: organization-defined external organizations]]; and\n* **SI-5d.** Implements security directives in accordance with established time frames, or notifies the issuing organization of the degree of noncompliance.\n\nThe United States Computer Emergency Readiness Team (US-CERT) generates security alerts and advisories to maintain situational awareness across the federal government. Security directives are issued by OMB or other designated organizations with the responsibility and authority to issue such directives. Compliance to security directives is essential due to the critical nature of many of these directives and the potential immediate adverse effects on organizational operations and assets, individuals, other organizations, and the Nation should the directives not be implemented in a timely manner. External organizations include, for example, external mission/business partners, supply chain partners, external service providers, and other peer/supporting organizations.", "external_references": [ { @@ -15095,7 +15095,7 @@ } ], "id": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Security Alerts, Advisories, And Directives", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15107,7 +15107,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization employs automated mechanisms to make security alert and advisory information available throughout the organization.\nThe significant number of changes to organizational information systems and the environments in which those systems operate requires the dissemination of security-related information to a variety of organizational entities that have a direct interest in the success of organizational missions and business functions. Based on the information provided by the security alerts and advisories, changes may be required at one or more of the three tiers related to the management of information security risk including the governance level, mission/business process/enterprise architecture level, and the information system level.", "external_references": [ { @@ -15116,7 +15116,7 @@ } ], "id": "course-of-action--0d9924d9-2b02-474b-9160-4fff27fbfc7c", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Automated Alerts And Advisories", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15126,7 +15126,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The information system:\n\n* **SI-6a.** Verifies the correct operation of [Assignment: organization-defined security functions];\n* **SI-6b.** Performs this verification [Selection (one or more): [Assignment: organization-defined system transitional states]; upon command by user with appropriate privilege; [Assignment: organization-defined frequency]];\n* **SI-6c.** Notifies [Assignment: organization-defined personnel or roles] of failed security verification tests; and\n* **SI-6d.** [Selection (one or more): shuts the information system down; restarts the information system; [Assignment: organization-defined alternative action(s)]] when anomalies are discovered.\n\nTransitional states for information systems include, for example, system startup, restart, shutdown, and abort. Notifications provided by information systems include, for example, electronic alerts to system administrators, messages to local computer consoles, and/or hardware indications such as lights.", "external_references": [ { @@ -15135,7 +15135,7 @@ } ], "id": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Security Function Verification", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15145,7 +15145,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.899Z", + "created": "2021-01-13T01:50:49.017Z", "description": "[Withdrawn: Incorporated into SI-6].", "external_references": [ { @@ -15154,14 +15154,14 @@ } ], "id": "course-of-action--89e33fe5-e700-45c1-a81b-f98fe41cdd53", - "modified": "2021-01-06T18:28:39.899Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Notification Of Failed Security Tests", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.899Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The information system implements automated mechanisms to support the management of distributed security testing.", "external_references": [ { @@ -15170,14 +15170,14 @@ } ], "id": "course-of-action--4a23ddaf-0e26-4c04-a52e-db06ac5ce62f", - "modified": "2021-01-06T18:28:39.899Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Automation Support For Distributed Testing", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.899Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization reports the results of security function verification to [Assignment: organization-defined personnel or roles].\nOrganizational personnel with potential interest in security function verification results include, for example, senior information security officers, information system security managers, and information systems security officers.", "external_references": [ { @@ -15186,14 +15186,14 @@ } ], "id": "course-of-action--b7caf1f1-5e6d-4b91-a944-efa53da088f1", - "modified": "2021-01-06T18:28:39.899Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Report Verification Results", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.899Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization employs integrity verification tools to detect unauthorized changes to [Assignment: organization-defined software, firmware, and information].\nUnauthorized changes to software, firmware, and information can occur due to errors or malicious activity (e.g., tampering). Software includes, for example, operating systems (with key internal components such as kernels, drivers), middleware, and applications. Firmware includes, for example, the Basic Input Output System (BIOS). Information includes metadata such as security attributes associated with information. State-of-the-practice integrity-checking mechanisms (e.g., parity checks, cyclical redundancy checks, cryptographic hashes) and associated tools can automatically monitor the integrity of information systems and hosted applications.", "external_references": [ { @@ -15202,7 +15202,7 @@ } ], "id": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "modified": "2021-01-06T18:28:39.899Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Software, Firmware, And Information Integrity", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15213,7 +15213,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The information system performs an integrity check of [Assignment: organization-defined software, firmware, and information] [Selection (one or more): at startup; at [Assignment: organization-defined transitional states or security-relevant events]; [Assignment: organization-defined frequency]].\nSecurity-relevant events include, for example, the identification of a new threat to which organizational information systems are susceptible, and the installation of new hardware, software, or firmware. Transitional states include, for example, system startup, restart, shutdown, and abort.", "external_references": [ { @@ -15222,7 +15222,7 @@ } ], "id": "course-of-action--fa67c613-bc91-4ddb-9ca8-d14c1783df6d", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Integrity Checks", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15233,7 +15233,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The organization employs automated tools that provide notification to [Assignment: organization-defined personnel or roles] upon discovering discrepancies during integrity verification.\nThe use of automated tools to report integrity violations and to notify organizational personnel in a timely matter is an essential precursor to effective risk response. Personnel having an interest in integrity violations include, for example, mission/business owners, information system owners, systems administrators, software developers, systems integrators, and information security officers.", "external_references": [ { @@ -15242,7 +15242,7 @@ } ], "id": "course-of-action--f03b8b3c-47bd-4599-a805-7c6995119927", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Automated Notifications Of Integrity Violations", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15252,7 +15252,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The organization employs centrally managed integrity verification tools.", "external_references": [ { @@ -15261,14 +15261,14 @@ } ], "id": "course-of-action--d4d48f96-6a1e-4ce2-88db-4ab35b6b475b", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Centrally-Managed Integrity Tools", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "[Withdrawn: Incorporated into SA-12].", "external_references": [ { @@ -15277,14 +15277,14 @@ } ], "id": "course-of-action--2575345d-623a-4d84-93e2-4dd7d5343157", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Tamper-Evident Packaging", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The information system automatically [Selection (one or more): shuts the information system down; restarts the information system; implements [Assignment: organization-defined security safeguards]] when integrity violations are discovered.\nOrganizations may define different integrity checking and anomaly responses: (i) by type of information (e.g., firmware, software, user data); (ii) by specific information (e.g., boot firmware, boot firmware for a specific types of machines); or (iii) a combination of both. Automatic implementation of specific safeguards within organizational information systems includes, for example, reversing the changes, halting the information system, or triggering audit alerts when unauthorized modifications to critical security files occur.", "external_references": [ { @@ -15293,7 +15293,7 @@ } ], "id": "course-of-action--8dc5afb1-d3d6-4dec-8370-f7dead6401a9", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Automated Response To Integrity Violations", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15303,7 +15303,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.900Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The information system implements cryptographic mechanisms to detect unauthorized changes to software, firmware, and information.\nCryptographic mechanisms used for the protection of integrity include, for example, digital signatures and the computation and application of signed hashes using asymmetric cryptography, protecting the confidentiality of the key used to generate the hash, and using the public key to verify the hash information.", "external_references": [ { @@ -15312,14 +15312,14 @@ } ], "id": "course-of-action--f77c68ee-9b5e-4892-8b3f-6bbef43ba796", - "modified": "2021-01-06T18:28:39.900Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Cryptographic Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.018Z", "description": "The organization incorporates the detection of unauthorized [Assignment: organization-defined security-relevant changes to the information system] into the organizational incident response capability.\nThis control enhancement helps to ensure that detected events are tracked, monitored, corrected, and available for historical purposes. Maintaining historical records is important both for being able to identify and discern adversary actions over an extended period of time and for possible legal actions. Security-relevant changes include, for example, unauthorized changes to established configuration settings or unauthorized elevation of information system privileges.", "external_references": [ { @@ -15328,7 +15328,7 @@ } ], "id": "course-of-action--04ed85c0-9508-4874-9084-f663c142d138", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.018Z", "name": "Integration Of Detection And Response", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15339,7 +15339,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The information system, upon detection of a potential integrity violation, provides the capability to audit the event and initiates the following actions: [Selection (one or more): generates an audit record; alerts current user; alerts [Assignment: organization-defined personnel or roles]; [Assignment: organization-defined other actions]].\nOrganizations select response actions based on types of software, specific software, or information for which there are potential integrity violations.", "external_references": [ { @@ -15348,14 +15348,14 @@ } ], "id": "course-of-action--ebcd50a0-c818-4170-bb86-1f49025e8637", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Auditing Capability For Significant Events", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The information system verifies the integrity of the boot process of [Assignment: organization-defined devices].\nEnsuring the integrity of boot processes is critical to starting devices in known/trustworthy states. Integrity verification mechanisms provide organizational personnel with assurance that only trusted code is executed during boot processes.", "external_references": [ { @@ -15364,14 +15364,14 @@ } ], "id": "course-of-action--678c29c1-58b2-4385-a1d7-e3384a3fcd5f", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Verify Boot Process", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The information system implements [Assignment: organization-defined security safeguards] to protect the integrity of boot firmware in [Assignment: organization-defined devices].\nUnauthorized modifications to boot firmware may be indicative of a sophisticated, targeted cyber attack. These types of cyber attacks can result in a permanent denial of service (e.g., if the firmware is corrupted) or a persistent malicious code presence (e.g., if code is embedded within the firmware). Devices can protect the integrity of the boot firmware in organizational information systems by: (i) verifying the integrity and authenticity of all updates to the boot firmware prior to applying changes to the boot devices; and (ii) preventing unauthorized processes from modifying the boot firmware.", "external_references": [ { @@ -15380,14 +15380,14 @@ } ], "id": "course-of-action--671a953d-a56b-4cf3-9a02-f854441c2953", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Protection Of Boot Firmware", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The organization requires that [Assignment: organization-defined user-installed software] execute in a confined physical or virtual machine environment with limited privileges.\nOrganizations identify software that may be of greater concern with regard to origin or potential for containing malicious code. For this type of software, user installations occur in confined environments of operation to limit or contain damage from malicious code that may be executed.", "external_references": [ { @@ -15396,14 +15396,14 @@ } ], "id": "course-of-action--e67988e9-f342-410d-8fe2-507fa70b07eb", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Confined Environments With Limited Privileges", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.901Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The organization requires that the integrity of [Assignment: organization-defined user-installed software] be verified prior to execution.\nOrganizations verify the integrity of user-installed software prior to execution to reduce the likelihood of executing malicious code or code that contains errors from unauthorized modifications. Organizations consider the practicality of approaches to verifying software integrity including, for example, availability of checksums of adequate trustworthiness from software developers or vendors.", "external_references": [ { @@ -15412,14 +15412,14 @@ } ], "id": "course-of-action--9ba8dc35-f604-4d68-8b79-67f9a0661f66", - "modified": "2021-01-06T18:28:39.901Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Integrity Verification", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The organization allows execution of binary or machine-executable code obtained from sources with limited or no warranty and without the provision of source code only in confined physical or virtual machine environments and with the explicit approval of [Assignment: organization-defined personnel or roles].\nThis control enhancement applies to all sources of binary or machine-executable code including, for example, commercial software/firmware and open source software.", "external_references": [ { @@ -15428,14 +15428,14 @@ } ], "id": "course-of-action--744928b3-f992-46fc-8df8-9dcddc9d9aa4", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Code Execution In Protected Environments", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The organization:\n\n* **SI-7 (14)(a)** Prohibits the use of binary or machine-executable code from sources with limited or no warranty and without the provision of source code; and\n* **SI-7 (14)(b)** Provides exceptions to the source code requirement only for compelling mission/operational requirements and with the approval of the authorizing official.\n\nThis control enhancement applies to all sources of binary or machine-executable code including, for example, commercial software/firmware and open source software. Organizations assess software products without accompanying source code from sources with limited or no warranty for potential security impacts. The assessments address the fact that these types of software products may be very difficult to review, repair, or extend, given that organizations, in most cases, do not have access to the original source code, and there may be no owners who could make such repairs on behalf of organizations.", "external_references": [ { @@ -15444,7 +15444,7 @@ } ], "id": "course-of-action--9ef87738-5f2c-4e69-8edf-1dfb8c2d95d4", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Binary Or Machine Executable Code", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15454,7 +15454,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.019Z", "description": "The information system implements cryptographic mechanisms to authenticate [Assignment: organization-defined software or firmware components] prior to installation.\nCryptographic authentication includes, for example, verifying that software or firmware components have been digitally signed using certificates recognized and approved by organizations. Code signing is an effective method to protect against malicious code.", "external_references": [ { @@ -15463,14 +15463,14 @@ } ], "id": "course-of-action--96abd1f1-484d-4bf2-b255-c4ae46b6d518", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.019Z", "name": "Code Authentication", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The organization does not allow processes to execute without supervision for more than [Assignment: organization-defined time period].\nThis control enhancement addresses processes for which normal execution periods can be determined and situations in which organizations exceed such periods. Supervision includes, for example, operating system timers, automated responses, or manual oversight and response when information system process anomalies occur.", "external_references": [ { @@ -15479,14 +15479,14 @@ } ], "id": "course-of-action--69701b1b-cffa-495c-9a26-cf845e21fad4", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Time Limit On Process Execution W/O Supervision", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The organization:\n\n* **SI-8a.** Employs spam protection mechanisms at information system entry and exit points to detect and take action on unsolicited messages; and\n* **SI-8b.** Updates spam protection mechanisms when new releases are available in accordance with organizational configuration management policy and procedures.\n\nInformation system entry and exit points include, for example, firewalls, electronic mail servers, web servers, proxy servers, remote-access servers, workstations, mobile devices, and notebook/laptop computers. Spam can be transported by different means including, for example, electronic mail, electronic mail attachments, and web accesses. Spam protection mechanisms include, for example, signature definitions.", "external_references": [ { @@ -15495,7 +15495,7 @@ } ], "id": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Spam Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15506,7 +15506,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The organization centrally manages spam protection mechanisms.\nCentral management is the organization-wide management and implementation of spam protection mechanisms. Central management includes planning, implementing, assessing, authorizing, and monitoring the organization-defined, centrally managed spam protection security controls.", "external_references": [ { @@ -15515,7 +15515,7 @@ } ], "id": "course-of-action--ae3cd676-2e90-4b69-8531-24d8fe501546", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Central Management", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15526,7 +15526,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The information system automatically updates spam protection mechanisms.", "external_references": [ { @@ -15535,7 +15535,7 @@ } ], "id": "course-of-action--f78219ca-a80a-4fff-afdc-2d4ee5fe1840", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Automatic Updates", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15546,7 +15546,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The information system implements spam protection mechanisms with a learning capability to more effectively identify legitimate communications traffic.\nLearning mechanisms include, for example, Bayesian filters that respond to user inputs identifying specific traffic as spam or legitimate by updating algorithm parameters and thereby more accurately separating types of traffic.", "external_references": [ { @@ -15555,14 +15555,14 @@ } ], "id": "course-of-action--8a20935c-0758-459f-a610-8849a0a5ac12", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Continuous Learning Capability", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "[Withdrawn: Incorporated into AC-2, AC-3, AC-5, AC-6].", "external_references": [ { @@ -15571,13 +15571,13 @@ } ], "id": "course-of-action--d160b768-10e4-403e-90f3-4e28f128a5c7", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Information Input Restrictions", "type": "course-of-action", "x_mitre_family": "System And Information Integrity" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The information system checks the validity of [Assignment: organization-defined information inputs].\nChecking the valid syntax and semantics of information system inputs (e.g., character set, length, numerical range, and acceptable values) verifies that inputs match specified definitions for format and content. Software applications typically follow well-defined protocols that use structured messages (i.e., commands or queries) to communicate between software modules or system components. Structured messages can contain raw or unstructured data interspersed with metadata or control information. If software applications use attacker-supplied inputs to construct structured messages without properly encoding such messages, then the attacker could insert malicious commands or special characters that can cause the data to be interpreted as control information or metadata. Consequently, the module or component that receives the tainted output will perform the wrong operations or otherwise interpret the data incorrectly. Prescreening inputs prior to passing to interpreters prevents the content from being unintentionally interpreted as commands. Input validation helps to ensure accurate and correct inputs and prevent attacks such as cross-site scripting and a variety of injection attacks.", "external_references": [ { @@ -15586,7 +15586,7 @@ } ], "id": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Information Input Validation", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15597,7 +15597,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The information system:\n\n* **SI-10 (1)(a)** Provides a manual override capability for input validation of [Assignment: organization-defined inputs];\n* **SI-10 (1)(b)** Restricts the use of the manual override capability to only [Assignment: organization-defined authorized individuals]; and\n* **SI-10 (1)(c)** Audits the use of the manual override capability.\n", "external_references": [ { @@ -15606,14 +15606,14 @@ } ], "id": "course-of-action--b8224160-2a6e-414d-ae64-5cb1fa5d9e15", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Manual Override Capability", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization ensures that input validation errors are reviewed and resolved within [Assignment: organization-defined time period].\nResolution of input validation errors includes, for example, correcting systemic causes of errors and resubmitting transactions with corrected input.", "external_references": [ { @@ -15622,14 +15622,14 @@ } ], "id": "course-of-action--86a4ccb9-da32-47b0-ac4e-dc85908961bf", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Review / Resolution Of Errors", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The information system behaves in a predictable and documented manner that reflects organizational and system objectives when invalid inputs are received.\nA common vulnerability in organizational information systems is unpredictable behavior when invalid inputs are received. This control enhancement ensures that there is predictable behavior in the face of invalid inputs by specifying information system responses that facilitate transitioning the system to known states without adverse, unintended side effects.", "external_references": [ { @@ -15638,14 +15638,14 @@ } ], "id": "course-of-action--80c8ccb2-8e75-40ab-b652-e77490eb7ded", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Predictable Behavior", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization accounts for timing interactions among information system components in determining appropriate responses for invalid inputs.\nIn addressing invalid information system inputs received across protocol interfaces, timing interactions become relevant, where one protocol needs to consider the impact of the error response on other protocols within the protocol stack. For example, 802.11 standard wireless network protocols do not interact well with Transmission Control Protocols (TCP) when packets are dropped (which could be due to invalid packet input). TCP assumes packet losses are due to congestion, while packets lost over 802.11 links are typically dropped due to collisions or noise on the link. If TCP makes a congestion response, it takes precisely the wrong action in response to a collision event. Adversaries may be able to use apparently acceptable individual behaviors of the protocols in concert to achieve adverse effects through suitable construction of invalid input.", "external_references": [ { @@ -15654,14 +15654,14 @@ } ], "id": "course-of-action--21b34a5b-94a6-4ae7-85b0-ce1c2bfa78f0", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Review / Timing Interactions", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization restricts the use of information inputs to [Assignment: organization-defined trusted sources] and/or [Assignment: organization-defined formats].\nThis control enhancement applies the concept of whitelisting to information inputs. Specifying known trusted sources for information inputs and acceptable formats for such inputs can reduce the probability of malicious activity.", "external_references": [ { @@ -15670,14 +15670,14 @@ } ], "id": "course-of-action--6ac4663f-5cee-40b6-b7cb-57d6286cdd63", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Restrict Inputs To Trusted Sources And Approved Formats", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The information system:\n\n* **SI-11a.** Generates error messages that provide information necessary for corrective actions without revealing information that could be exploited by adversaries; and\n* **SI-11b.** Reveals error messages only to [Assignment: organization-defined personnel or roles].\n\nOrganizations carefully consider the structure/content of error messages. The extent to which information systems are able to identify and handle error conditions is guided by organizational policy and operational requirements. Information that could be exploited by adversaries includes, for example, erroneous logon attempts with passwords entered by mistake as the username, mission/business information that can be derived from (if not stated explicitly by) information recorded, and personal information such as account numbers, social security numbers, and credit card numbers. In addition, error messages may provide a covert channel for transmitting information.", "external_references": [ { @@ -15686,7 +15686,7 @@ } ], "id": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Error Handling", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15697,7 +15697,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization handles and retains information within the information system and information output from the system in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and operational requirements.\nInformation handling and retention requirements cover the full life cycle of information, in some cases extending beyond the disposal of information systems. The National Archives and Records Administration provides guidance on records retention.", "external_references": [ { @@ -15706,7 +15706,7 @@ } ], "id": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Information Handling And Retention", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15718,7 +15718,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization:\n\n* **SI-13a.** Determines mean time to failure (MTTF) for [Assignment: organization-defined information system components] in specific environments of operation; and\n* **SI-13b.** Provides substitute information system components and a means to exchange active and standby components at [Assignment: organization-defined MTTF substitution criteria].\n\nWhile MTTF is primarily a reliability issue, this control addresses potential failures of specific information system components that provide security capability. Failure rates reflect installation-specific consideration, not industry-average. Organizations define criteria for substitution of information system components based on MTTF value with consideration for resulting potential harm from component failures. Transfer of responsibilities between active and standby components does not compromise safety, operational readiness, or security capability (e.g., preservation of state variables). Standby components remain available at all times except for maintenance issues or recovery failures in progress.", "external_references": [ { @@ -15727,14 +15727,14 @@ } ], "id": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Predictable Failure Prevention", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization takes information system components out of service by transferring component responsibilities to substitute components no later than [Assignment: organization-defined fraction or percentage] of mean time to failure.", "external_references": [ { @@ -15743,14 +15743,14 @@ } ], "id": "course-of-action--95f79ef0-1834-4ca9-8330-fdee284e45ce", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Transferring Component Responsibilities", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.905Z", + "created": "2021-01-13T01:50:49.022Z", "description": "[Withdrawn: Incorporated into SI-7 (16)].", "external_references": [ { @@ -15759,14 +15759,14 @@ } ], "id": "course-of-action--c7b88561-e929-49e5-bd39-b0899f240d4e", - "modified": "2021-01-06T18:28:39.905Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Time Limit On Process Execution Without Supervision", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.905Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The organization manually initiates transfers between active and standby information system components [Assignment: organization-defined frequency] if the mean time to failure exceeds [Assignment: organization-defined time period].", "external_references": [ { @@ -15775,14 +15775,14 @@ } ], "id": "course-of-action--34449970-9671-47a0-b75f-55c691ac3f39", - "modified": "2021-01-06T18:28:39.905Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Manual Transfer Between Components", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.905Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The organization, if information system component failures are detected:\n\n* **SI-13 (4)(a)** Ensures that the standby components are successfully and transparently installed within [Assignment: organization-defined time period]; and\n* **SI-13 (4)(b)** [Selection (one or more): activates [Assignment: organization-defined alarm]; automatically shuts down the information system].\n\nAutomatic or manual transfer of components from standby to active mode can occur, for example, upon detection of component failures.", "external_references": [ { @@ -15791,14 +15791,14 @@ } ], "id": "course-of-action--ef0addb3-034e-4d1b-9c73-ca96a0c9c609", - "modified": "2021-01-06T18:28:39.905Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Standby Component Installation / Notification", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.905Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The organization provides [Selection: real-time; near real-time] [Assignment: organization-defined failover capability] for the information system.\nFailover refers to the automatic switchover to an alternate information system upon the failure of the primary information system. Failover capability includes, for example, incorporating mirrored information system operations at alternate processing sites or periodic data mirroring at regular intervals defined by recovery time periods of organizations.", "external_references": [ { @@ -15807,14 +15807,14 @@ } ], "id": "course-of-action--1390ea46-a6bf-4cfb-8967-19f63fda83a3", - "modified": "2021-01-06T18:28:39.905Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Failover Capability", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.905Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The organization implements non-persistent [Assignment: organization-defined information system components and services] that are initiated in a known state and terminated [Selection (one or more): upon end of session of use; periodically at [Assignment: organization-defined frequency]].\nThis control mitigates risk from advanced persistent threats (APTs) by significantly reducing the targeting capability of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete cyber attacks. By implementing the concept of non-persistence for selected information system components, organizations can provide a known state computing resource for a specific period of time that does not give adversaries sufficient time on target to exploit vulnerabilities in organizational information systems and the environments in which those systems operate. Since the advanced persistent threat is a high-end threat with regard to capability, intent, and targeting, organizations assume that over an extended period of time, a percentage of cyber attacks will be successful. Non-persistent information system components and services are activated as required using protected information and terminated periodically or upon the end of sessions. Non-persistence increases the work factor of adversaries in attempting to compromise or breach organizational information systems. Non-persistent system components can be implemented, for example, by periodically re-imaging components or by using a variety of common virtualization techniques. Non-persistent services can be implemented using virtualization techniques as part of virtual machines or as new instances of processes on physical machines (either persistent or non-persistent).The benefit of periodic refreshes of information system components/services is that it does not require organizations to first determine whether compromises of components or services have occurred (something that may often be difficult for organizations to determine). The refresh of selected information system components and services occurs with sufficient frequency to prevent the spread or intended impact of attacks, but not with such frequency that it makes the information system unstable. In some instances, refreshes of critical components and services may be done periodically in order to hinder the ability of adversaries to exploit optimum windows of vulnerabilities.", "external_references": [ { @@ -15823,14 +15823,14 @@ } ], "id": "course-of-action--67d96f22-5a53-4c2b-869d-48fd07a5e703", - "modified": "2021-01-06T18:28:39.905Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Non-Persistence", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The organization ensures that software and data employed during information system component and service refreshes are obtained from [Assignment: organization-defined trusted sources].\nTrusted sources include, for example, software/data from write-once, read-only media or from selected off-line secure storage facilities.", "external_references": [ { @@ -15839,14 +15839,14 @@ } ], "id": "course-of-action--cbd6124b-bcc7-4640-976c-30e769b9d99b", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Refresh From Trusted Sources", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The information system validates information output from [Assignment: organization-defined software programs and/or applications] to ensure that the information is consistent with the expected content.\nCertain types of cyber attacks (e.g., SQL injections) produce output results that are unexpected or inconsistent with the output results that would normally be expected from software programs or applications. This control enhancement focuses on detecting extraneous content, preventing such extraneous content from being displayed, and alerting monitoring tools that anomalous behavior has been discovered.", "external_references": [ { @@ -15855,14 +15855,14 @@ } ], "id": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Information Output Filtering", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The information system implements [Assignment: organization-defined security safeguards] to protect its memory from unauthorized code execution.\nSome adversaries launch attacks with the intent of executing code in non-executable regions of memory or in memory locations that are prohibited. Security safeguards employed to protect memory include, for example, data execution prevention and address space layout randomization. Data execution prevention safeguards can either be hardware-enforced or software-enforced with hardware providing the greater strength of mechanism.", "external_references": [ { @@ -15871,7 +15871,7 @@ } ], "id": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Memory Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -15882,7 +15882,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The information system implements [Assignment: organization-defined fail-safe procedures] when [Assignment: organization-defined failure conditions occur].\nFailure conditions include, for example, loss of communications among critical system components or between system components and operational facilities. Fail-safe procedures include, for example, alerting operator personnel and providing specific instructions on subsequent steps to take (e.g., do nothing, reestablish system settings, shut down processes, restart the system, or contact designated organizational personnel).", "external_references": [ { @@ -15891,14 +15891,14 @@ } ], "id": "course-of-action--b57d1942-ba97-4ec9-b5c1-be4ed11c7780", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Fail-Safe Procedures", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The organization:\n\n* **PM-1a.** Develops and disseminates an organization-wide information security program plan that:\n * **PM-1a.1.** Provides an overview of the requirements for the security program and a description of the security program management controls and common controls in place or planned for meeting those requirements;\n * **PM-1a.2.** Includes the identification and assignment of roles, responsibilities, management commitment, coordination among organizational entities, and compliance;\n * **PM-1a.3.** Reflects coordination among organizational entities responsible for the different aspects of information security (i.e., technical, physical, personnel, cyber-physical); and\n * **PM-1a.4.** Is approved by a senior official with responsibility and accountability for the risk being incurred to organizational operations (including mission, functions, image, and reputation), organizational assets, individuals, other organizations, and the Nation;\n* **PM-1b.** Reviews the organization-wide information security program plan [Assignment: organization-defined frequency];\n* **PM-1c.** Updates the plan to address organizational changes and problems identified during plan implementation or security control assessments; and\n* **PM-1d.** Protects the information security program plan from unauthorized disclosure and modification.\n\nInformation security program plans can be represented in single documents or compilations of documents at the discretion of organizations. The plans document the program management controls and organization-defined common controls. Information security program plans provide sufficient information about the program management controls/common controls (including specification of parameters for any assignment and selection statements either explicitly or by reference) to enable implementations that are unambiguously compliant with the intent of the plans and a determination of the risk to be incurred if the plans are implemented as intended. The security plans for individual information systems and the organization-wide information security program plan together, provide complete coverage for all security controls employed within the organization. Common controls are documented in an appendix to the organization\u00ef\u00bf\u00bds information security program plan unless the controls are included in a separate security plan for an information system (e.g., security controls employed as part of an intrusion detection system providing organization-wide boundary protection inherited by one or more organizational information systems). The organization-wide information security program plan will indicate which separate security plans contain descriptions of common controls. Organizations have the flexibility to describe common controls in a single document or in multiple documents. In the case of multiple documents, the documents describing common controls are included as attachments to the information security program plan. If the information security program plan contains multiple documents, the organization specifies in each document the organizational official or officials responsible for the development, implementation, assessment, authorization, and monitoring of the respective common controls. For example, the organization may require that the Facilities Management Office develop, implement, assess, authorize, and continuously monitor common physical and environmental protection controls from the PE family when such controls are not associated with a particular information system but instead, support multiple information systems.", "external_references": [ { @@ -15907,13 +15907,13 @@ } ], "id": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Information Security Program Plan", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.907Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The organization appoints a senior information security officer with the mission and resources to coordinate, develop, implement, and maintain an organization-wide information security program.\nThe security officer described in this control is an organizational official. For a federal agency (as defined in applicable federal laws, Executive Orders, directives, policies, or regulations) this official is the Senior Agency Information Security Officer. Organizations may also refer to this official as the Senior Information Security Officer or Chief Information Security Officer.", "external_references": [ { @@ -15922,13 +15922,13 @@ } ], "id": "course-of-action--7c25fea5-7e02-41d5-9f12-ba4698a87309", - "modified": "2021-01-06T18:28:39.907Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Senior Information Security Officer", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.907Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The organization:\n\n* **PM-3a.** Ensures that all capital planning and investment requests include the resources needed to implement the information security program and documents all exceptions to this requirement;\n* **PM-3b.** Employs a business case/Exhibit 300/Exhibit 53 to record the resources required; and\n* **PM-3c.** Ensures that information security resources are available for expenditure as planned.\n\nOrganizations consider establishing champions for information security efforts and as part of including the necessary resources, assign specialized expertise and resources as needed. Organizations may designate and empower an Investment Review Board (or similar group) to manage and provide oversight for the information security-related aspects of the capital planning and investment control process.", "external_references": [ { @@ -15937,13 +15937,13 @@ } ], "id": "course-of-action--cd08a0a4-c488-4063-bf70-3f159a3c3460", - "modified": "2021-01-06T18:28:39.907Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Information Security Resources", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.907Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The organization:\n\n* **PM-4a.** Implements a process for ensuring that plans of action and milestones for the security program and associated organizational information systems:\n * **PM-4a.1.** Are developed and maintained;\n * **PM-4a.2.** Document the remedial information security actions to adequately respond to risk to organizational operations and assets, individuals, other organizations, and the Nation; and\n * **PM-4a.3.** Are reported in accordance with OMB FISMA reporting requirements.\n* **PM-4b.** Reviews plans of action and milestones for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.\n\nThe plan of action and milestones is a key document in the information security program and is subject to federal reporting requirements established by OMB. With the increasing emphasis on organization-wide risk management across all three tiers in the risk management hierarchy (i.e., organization, mission/business process, and information system), organizations view plans of action and milestones from an organizational perspective, prioritizing risk response actions and ensuring consistency with the goals and objectives of the organization. Plan of action and milestones updates are based on findings from security control assessments and continuous monitoring activities. OMB FISMA reporting guidance contains instructions regarding organizational plans of action and milestones.", "external_references": [ { @@ -15952,13 +15952,13 @@ } ], "id": "course-of-action--b734078f-a009-4f48-ad74-4df3a6cc1aa1", - "modified": "2021-01-06T18:28:39.907Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Plan Of Action And Milestones Process", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.907Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The organization develops and maintains an inventory of its information systems.\nThis control addresses the inventory requirements in FISMA. OMB provides guidance on developing information systems inventories and associated reporting requirements. For specific information system inventory reporting requirements, organizations consult OMB annual FISMA reporting guidance.", "external_references": [ { @@ -15967,13 +15967,13 @@ } ], "id": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", - "modified": "2021-01-06T18:28:39.907Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Information System Inventory", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.908Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization develops, monitors, and reports on the results of information security measures of performance.\nMeasures of performance are outcome-based metrics used by an organization to measure the effectiveness or efficiency of the information security program and the security controls employed in support of the program.", "external_references": [ { @@ -15982,13 +15982,13 @@ } ], "id": "course-of-action--6883f672-0527-4047-8314-9c984dbd3def", - "modified": "2021-01-06T18:28:39.908Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Information Security Measures Of Performance", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.908Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization develops an enterprise architecture with consideration for information security and the resulting risk to organizational operations, organizational assets, individuals, other organizations, and the Nation.\nThe enterprise architecture developed by the organization is aligned with the Federal Enterprise Architecture. The integration of information security requirements and associated security controls into the organization\u00ef\u00bf\u00bds enterprise architecture helps to ensure that security considerations are addressed by organizations early in the system development life cycle and are directly and explicitly related to the organization\u00ef\u00bf\u00bds mission/business processes. This process of security requirements integration also embeds into the enterprise architecture, an integral information security architecture consistent with organizational risk management and information security strategies. For PM-7, the information security architecture is developed at a system-of-systems level (organization-wide), representing all of the organizational information systems. For PL-8, the information security architecture is developed at a level representing an individual information system but at the same time, is consistent with the information security architecture defined for the organization. Security requirements and security control integration are most effectively accomplished through the application of the Risk Management Framework and supporting security standards and guidelines. The Federal Segment Architecture Methodology provides guidance on integrating information security requirements and security controls into enterprise architectures.", "external_references": [ { @@ -15997,13 +15997,13 @@ } ], "id": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", - "modified": "2021-01-06T18:28:39.908Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Enterprise Architecture", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.908Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization addresses information security issues in the development, documentation, and updating of a critical infrastructure and key resources protection plan.\nProtection strategies are based on the prioritization of critical assets and resources. The requirement and guidance for defining critical infrastructure and key resources and for preparing an associated critical infrastructure protection plan are found in applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.", "external_references": [ { @@ -16012,13 +16012,13 @@ } ], "id": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", - "modified": "2021-01-06T18:28:39.908Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Critical Infrastructure Plan", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.908Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization:\n\n* **PM-9a.** Develops a comprehensive strategy to manage risk to organizational operations and assets, individuals, other organizations, and the Nation associated with the operation and use of information systems;\n* **PM-9b.** Implements the risk management strategy consistently across the organization; and\n* **PM-9c.** Reviews and updates the risk management strategy [Assignment: organization-defined frequency] or as required, to address organizational changes.\n\nAn organization-wide risk management strategy includes, for example, an unambiguous expression of the risk tolerance for the organization, acceptable risk assessment methodologies, risk mitigation strategies, a process for consistently evaluating risk across the organization with respect to the organization\u00ef\u00bf\u00bds risk tolerance, and approaches for monitoring risk over time. The use of a risk executive function can facilitate consistent, organization-wide application of the risk management strategy. The organization-wide risk management strategy can be informed by risk-related inputs from other sources both internal and external to the organization to ensure the strategy is both broad-based and comprehensive.", "external_references": [ { @@ -16027,13 +16027,13 @@ } ], "id": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", - "modified": "2021-01-06T18:28:39.908Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Risk Management Strategy", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.908Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization:\n\n* **PM-10a.** Manages (i.e., documents, tracks, and reports) the security state of organizational information systems and the environments in which those systems operate through security authorization processes;\n* **PM-10b.** Designates individuals to fulfill specific roles and responsibilities within the organizational risk management process; and\n* **PM-10c.** Fully integrates the security authorization processes into an organization-wide risk management program.\n\nSecurity authorization processes for information systems and environments of operation require the implementation of an organization-wide risk management process, a Risk Management Framework, and associated security standards and guidelines. Specific roles within the risk management process include an organizational risk executive (function) and designated authorizing officials for each organizational information system and common control provider. Security authorization processes are integrated with organizational continuous monitoring processes to facilitate ongoing understanding and acceptance of risk to organizational operations and assets, individuals, other organizations, and the Nation.", "external_references": [ { @@ -16042,13 +16042,13 @@ } ], "id": "course-of-action--c83fb118-1599-4125-89d8-e4d0b557997f", - "modified": "2021-01-06T18:28:39.908Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Security Authorization Process", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.909Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization:\n\n* **PM-11a.** Defines mission/business processes with consideration for information security and the resulting risk to organizational operations, organizational assets, individuals, other organizations, and the Nation; and\n* **PM-11b.** Determines information protection needs arising from the defined mission/business processes and revises the processes as necessary, until achievable protection needs are obtained.\n\nInformation protection needs are technology-independent, required capabilities to counter threats to organizations, individuals, or the Nation through the compromise of information (i.e., loss of confidentiality, integrity, or availability). Information protection needs are derived from the mission/business needs defined by the organization, the mission/business processes selected to meet the stated needs, and the organizational risk management strategy. Information protection needs determine the required security controls for the organization and the associated information systems supporting the mission/business processes. Inherent in defining an organization\u00ef\u00bf\u00bds information protection needs is an understanding of the level of adverse impact that could result if a compromise of information occurs. The security categorization process is used to make such potential impact determinations. Mission/business process definitions and associated information protection requirements are documented by the organization in accordance with organizational policy and procedure.", "external_references": [ { @@ -16057,13 +16057,13 @@ } ], "id": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", - "modified": "2021-01-06T18:28:39.909Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Mission/Business Process Definition", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.909Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization implements an insider threat program that includes a cross-discipline insider threat incident handling team.\nOrganizations handling classified information are required, under Executive Order 13587 and the National Policy on Insider Threat, to establish insider threat programs. The standards and guidelines that apply to insider threat programs in classified environments can also be employed effectively to improve the security of Controlled Unclassified Information in non-national security systems. Insider threat programs include security controls to detect and prevent malicious insider activity through the centralized integration and analysis of both technical and non-technical information to identify potential insider threat concerns. A senior organizational official is designated by the department/agency head as the responsible individual to implement and provide oversight for the program. In addition to the centralized integration and analysis capability, insider threat programs as a minimum, prepare department/agency insider threat policies and implementation plans, conduct host-based user monitoring of individual employee activities on government-owned classified computers, provide insider threat awareness training to employees, receive access to information from all offices within the department/agency (e.g., human resources, legal, physical security, personnel security, information technology, information system security, and law enforcement) for insider threat analysis, and conduct self-assessments of department/agency insider threat posture. Insider threat programs can leverage the existence of incident handling teams organizations may already have in place, such as computer security incident response teams. Human resources records are especially important in this effort, as there is compelling evidence to show that some types of insider crimes are often preceded by nontechnical behaviors in the workplace (e.g., ongoing patterns of disgruntled behavior and conflicts with coworkers and other colleagues). These precursors can better inform and guide organizational officials in more focused, targeted monitoring efforts. The participation of a legal team is important to ensure that all monitoring activities are performed in accordance with appropriate legislation, directives, regulations, policies, standards, and guidelines.", "external_references": [ { @@ -16072,13 +16072,13 @@ } ], "id": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", - "modified": "2021-01-06T18:28:39.909Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Insider Threat Program", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.909Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization establishes an information security workforce development and improvement program.\nInformation security workforce development and improvement programs include, for example: (i) defining the knowledge and skill levels needed to perform information security duties and tasks; (ii) developing role-based training programs for individuals assigned information security roles and responsibilities; and (iii) providing standards for measuring and building individual qualifications for incumbents and applicants for information security-related positions. Such workforce programs can also include associated information security career paths to encourage: (i) information security professionals to advance in the field and fill positions with greater responsibility; and (ii) organizations to fill information security-related positions with qualified personnel. Information security workforce development and improvement programs are complementary to organizational security awareness and training programs. Information security workforce development and improvement programs focus on developing and institutionalizing core information security capabilities of selected personnel needed to protect organizational operations, assets, and individuals.", "external_references": [ { @@ -16087,13 +16087,13 @@ } ], "id": "course-of-action--563b3e57-4cee-421d-a855-af88fa643a36", - "modified": "2021-01-06T18:28:39.909Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Information Security Workforce", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.909Z", + "created": "2021-01-13T01:50:49.024Z", "description": "The organization:\n\n* **PM-14a.** Implements a process for ensuring that organizational plans for conducting security testing, training, and monitoring activities associated with organizational information systems:\n * **PM-14a.1.** Are developed and maintained; and\n * **PM-14a.2.** Continue to be executed in a timely manner;\n* **PM-14b.** Reviews testing, training, and monitoring plans for consistency with the organizational risk management strategy and organization-wide priorities for risk response actions.\n\nThis control ensures that organizations provide oversight for the security testing, training, and monitoring activities conducted organization-wide and that those activities are coordinated. With the importance of continuous monitoring programs, the implementation of information security across the three tiers of the risk management hierarchy, and the widespread use of common controls, organizations coordinate and consolidate the testing and monitoring activities that are routinely conducted as part of ongoing organizational assessments supporting a variety of security controls. Security training activities, while typically focused on individual information systems and specific roles, also necessitate coordination across all organizational elements. Testing, training, and monitoring plans and activities are informed by current threat and vulnerability assessments.", "external_references": [ { @@ -16102,13 +16102,13 @@ } ], "id": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", - "modified": "2021-01-06T18:28:39.909Z", + "modified": "2021-01-13T01:50:49.024Z", "name": "Testing, Training, And Monitoring", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.909Z", + "created": "2021-01-13T01:50:49.025Z", "description": "The organization establishes and institutionalizes contact with selected groups and associations within the security community:\n\n* **PM-15a.** To facilitate ongoing security education and training for organizational personnel;\n* **PM-15b.** To maintain currency with recommended security practices, techniques, and technologies; and\n* **PM-15c.** To share current security-related information including threats, vulnerabilities, and incidents.\n\nOngoing contact with security groups and associations is of paramount importance in an environment of rapidly changing technologies and threats. Security groups and associations include, for example, special interest groups, forums, professional associations, news groups, and/or peer groups of security professionals in similar organizations. Organizations select groups and associations based on organizational missions/business functions. Organizations share threat, vulnerability, and incident information consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.", "external_references": [ { @@ -16117,13 +16117,13 @@ } ], "id": "course-of-action--3fdce913-c30e-43d2-af19-458b773e8875", - "modified": "2021-01-06T18:28:39.909Z", + "modified": "2021-01-13T01:50:49.025Z", "name": "Contacts With Security Groups And Associations", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.910Z", + "created": "2021-01-13T01:50:49.025Z", "description": "The organization implements a threat awareness program that includes a cross-organization information-sharing capability.\nBecause of the constantly changing and increasing sophistication of adversaries, especially the advanced persistent threat (APT), it is becoming more likely that adversaries may successfully breach or compromise organizational information systems. One of the best techniques to address this concern is for organizations to share threat information. This can include, for example, sharing threat events (i.e., tactics, techniques, and procedures) that organizations have experienced, mitigations that organizations have found are effective against certain types of threats, threat intelligence (i.e., indications and warnings about threats that are likely to occur). Threat information sharing may be bilateral (e.g., government-commercial cooperatives, government-government cooperatives), or multilateral (e.g., organizations taking part in threat-sharing consortia). Threat information may be highly sensitive requiring special agreements and protection, or less sensitive and freely shared.", "external_references": [ { @@ -16132,20103 +16132,20103 @@ } ], "id": "course-of-action--b497e16c-b1dc-4a5f-b6d3-cb680ec80d80", - "modified": "2021-01-06T18:28:39.910Z", + "modified": "2021-01-13T01:50:49.025Z", "name": "Threat Awareness Program", "type": "course-of-action", "x_mitre_family": "Program Management" }, { - "created": "2021-01-06T18:28:39.911Z", + "created": "2021-01-13T01:50:49.026Z", "id": "relationship--c5b13900-bd19-4e84-a39a-6338ddf5dcf0", - "modified": "2021-01-06T18:28:39.911Z", + "modified": "2021-01-13T01:50:49.026Z", "relationship_type": "related-to", "source_ref": "course-of-action--82799557-6fcb-4216-9670-27a10409d208", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--7364e327-4a61-4fae-889b-c520fa6bd490", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--dce7ae41-58a5-4133-9dbd-4eb41407212f", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--bbe0c58c-d9ed-4de2-ba99-56a043f97c32", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--1a4d5647-d662-4e70-8860-4eed9d9abbee", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--4d3853c4-c812-4956-8387-df2851b6d407", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.027Z", "id": "relationship--12a0a827-9368-4c65-83dc-c6ac1d2b4bce", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.027Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.912Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--a7070d87-adb0-4702-a03f-6ea7525dbd9e", - "modified": "2021-01-06T18:28:39.912Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--da959059-64f2-4abd-b8c4-2db10fbd2d30", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--cdaf4eb9-fa1d-42e4-b5af-94604a4ed214", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--bfcd8beb-41f1-4df3-91fe-295e5fc92338", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--4a4f380a-ce68-44c9-9776-8d97841ac741", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--6dd5c71e-5632-423e-bdd2-de16c47cea28", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.028Z", "id": "relationship--a4d61a84-606e-432d-b57d-71949d5d16ab", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.028Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.913Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--38327cb1-ca8a-4f60-ae78-7d4cfa82e97e", - "modified": "2021-01-06T18:28:39.913Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--ae44f126-be89-4391-aead-25d0512aafc7", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--68501655-712c-423e-8cc3-732b07f771c7", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--29edaf1f-476f-45a6-8afe-39315ba0fc7c", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--ed27c26c-bd8d-450c-99d8-c453b6b4d411", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--4c97c844-92ec-4546-9ccf-1c92014dff6e", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.914Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--d08ca961-0eeb-4bf8-aed9-534cfab24abb", - "modified": "2021-01-06T18:28:39.914Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.915Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--b70f5ae6-ce09-4ee4-b66c-4d30d37c8e17", - "modified": "2021-01-06T18:28:39.915Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "related-to", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.915Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--b806f1a9-1765-4e15-af68-f7f515d63b73", - "modified": "2021-01-06T18:28:39.915Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c5ddb1a7-5b02-4004-ad60-ecbf38122981", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.915Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--7ddcdd9b-aa8e-498e-8fa7-7b8b5802de43", - "modified": "2021-01-06T18:28:39.915Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--97748aa6-ee51-421a-8655-4079ccf74efb", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.915Z", + "created": "2021-01-13T01:50:49.029Z", "id": "relationship--6a0cafd2-0374-469c-9249-15377594479e", - "modified": "2021-01-06T18:28:39.915Z", + "modified": "2021-01-13T01:50:49.029Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--df3d6c61-ebcf-46b9-9cfb-f022818e55bc", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.915Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--76e5c178-b40e-4770-918a-19dea3c8b29f", - "modified": "2021-01-06T18:28:39.915Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2d4eba0d-9222-4bb6-8eb6-5f4539d71bbd", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.916Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--f7655cca-e635-4036-9eca-172d4ca90628", - "modified": "2021-01-06T18:28:39.916Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "related-to", "source_ref": "course-of-action--2d4eba0d-9222-4bb6-8eb6-5f4539d71bbd", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.916Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--5211d633-d2cc-48b9-ab86-17fa817ef83c", - "modified": "2021-01-06T18:28:39.916Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "related-to", "source_ref": "course-of-action--2d4eba0d-9222-4bb6-8eb6-5f4539d71bbd", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.916Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--4b79c9ec-e763-4313-975a-eba84aba9dfc", - "modified": "2021-01-06T18:28:39.916Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1bc79890-8fbc-4a77-9d0b-e1729ca640c7", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.916Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--209003d1-0144-4540-b60d-80baf3599278", - "modified": "2021-01-06T18:28:39.916Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "related-to", "source_ref": "course-of-action--1bc79890-8fbc-4a77-9d0b-e1729ca640c7", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.917Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--07c4f2cb-f3ba-486c-a040-fcee2327d9b2", - "modified": "2021-01-06T18:28:39.917Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--93ace6dd-d0c9-4c4d-9f62-5572303efe90", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.917Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--d9fc6a39-2cc2-4622-88e9-fe96aa666d41", - "modified": "2021-01-06T18:28:39.917Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "related-to", "source_ref": "course-of-action--93ace6dd-d0c9-4c4d-9f62-5572303efe90", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.917Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--2c10aa74-abc7-43ac-9a1d-6b25c5e449b1", - "modified": "2021-01-06T18:28:39.917Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--142e197e-bb16-443b-a149-d9ed102efdc8", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.917Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--7cb686dc-0645-417f-8ea0-085d4af2333d", - "modified": "2021-01-06T18:28:39.917Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b90badd3-2e33-443d-a2f5-62623c6d886a", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.918Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--336e8d30-d2eb-4ddf-aaea-8794fdd7d47e", - "modified": "2021-01-06T18:28:39.918Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "related-to", "source_ref": "course-of-action--b90badd3-2e33-443d-a2f5-62623c6d886a", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.918Z", + "created": "2021-01-13T01:50:49.030Z", "id": "relationship--e2a8ee3e-a4bb-4c45-9473-4297c45bdaa6", - "modified": "2021-01-06T18:28:39.918Z", + "modified": "2021-01-13T01:50:49.030Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8eb60f8c-e877-4c18-8cc1-ef93f29d61b3", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.918Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--b26139a2-8b23-4cc1-8041-67b6fbf016f6", - "modified": "2021-01-06T18:28:39.918Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--02f0ae9f-c235-4e3a-ba4f-e3c1ff0709be", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.918Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--2894a1a1-f0a0-47aa-b934-632958a3342e", - "modified": "2021-01-06T18:28:39.918Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e6dc10d0-01e9-4336-9e5d-22bad4cb67b5", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.919Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--7d7628e7-4c4e-4d38-9e53-d5aab48880be", - "modified": "2021-01-06T18:28:39.919Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--377e0686-a338-4173-8f82-2d6cb31cc69e", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.919Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--4388b826-de67-47cc-a69c-88b26fd39909", - "modified": "2021-01-06T18:28:39.919Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "related-to", "source_ref": "course-of-action--377e0686-a338-4173-8f82-2d6cb31cc69e", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.919Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--16e71515-aac3-4027-a8e5-ba330da86d6a", - "modified": "2021-01-06T18:28:39.919Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fab59432-ccbc-47b8-b66a-677afb635b75", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.919Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--cee6503d-ba10-400b-a85a-04f65b809a7f", - "modified": "2021-01-06T18:28:39.919Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "related-to", "source_ref": "course-of-action--fab59432-ccbc-47b8-b66a-677afb635b75", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.920Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--f0380407-0eb1-4471-a3d9-92cf394234dd", - "modified": "2021-01-06T18:28:39.920Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.920Z", + "created": "2021-01-13T01:50:49.031Z", "id": "relationship--8fa87792-7b01-4955-9793-9fa7f2a28219", - "modified": "2021-01-06T18:28:39.920Z", + "modified": "2021-01-13T01:50:49.031Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.920Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--e4cd0b98-332e-47d3-b6d6-55c49d7a5e1f", - "modified": "2021-01-06T18:28:39.920Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.920Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--22ab5b97-5beb-4615-9563-5110d81d7fad", - "modified": "2021-01-06T18:28:39.920Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.920Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--f2a1877a-aac1-4690-bf0b-ca397572a80e", - "modified": "2021-01-06T18:28:39.920Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.921Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--2ca334ad-a075-4494-b595-5a67336db35f", - "modified": "2021-01-06T18:28:39.921Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.921Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--8a6865e8-2dba-4ab0-99db-7976973b991a", - "modified": "2021-01-06T18:28:39.921Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.921Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--c91288a6-5b62-487b-b3ba-9f4623762495", - "modified": "2021-01-06T18:28:39.921Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.921Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--c9d24b91-1315-4e4c-9653-250ba08cd09f", - "modified": "2021-01-06T18:28:39.921Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.922Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--ca98db15-934c-4abb-8b03-4fe1848189b1", - "modified": "2021-01-06T18:28:39.922Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.922Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--777b692c-93a4-407e-a684-8aefd5d88638", - "modified": "2021-01-06T18:28:39.922Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.922Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--855c8c87-d41f-4af5-899f-c99e82b80adb", - "modified": "2021-01-06T18:28:39.922Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.922Z", + "created": "2021-01-13T01:50:49.032Z", "id": "relationship--e35e477b-df70-4eb5-826b-6525bbb56970", - "modified": "2021-01-06T18:28:39.922Z", + "modified": "2021-01-13T01:50:49.032Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.922Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--3e3966cb-2222-41e8-a25c-b7aeb83792ed", - "modified": "2021-01-06T18:28:39.922Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.923Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--96254245-8ace-4811-8885-1b2bb3d95721", - "modified": "2021-01-06T18:28:39.923Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.923Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--f26c86d3-8d5b-4e21-913c-ff943c3722c6", - "modified": "2021-01-06T18:28:39.923Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.923Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--556a7708-c144-4055-b6ff-4f3bb4ddf4a1", - "modified": "2021-01-06T18:28:39.923Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.923Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--d01f381e-3b06-4eaa-a3c6-33f560208289", - "modified": "2021-01-06T18:28:39.923Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.924Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--0fc789aa-c0be-4b80-9122-4db3efcb9e21", - "modified": "2021-01-06T18:28:39.924Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.924Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--2adf606c-fb5c-4e3c-bd2a-7cda2bd63b3e", - "modified": "2021-01-06T18:28:39.924Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d1e266a6-35dc-4c8f-80b6-43e365d33d39", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.924Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--3e5e93be-3df1-43a3-9f29-d034a1fe274b", - "modified": "2021-01-06T18:28:39.924Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--63a62627-7ece-4def-a821-7cf4d9d8f46d", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.924Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--ee52fe69-e59f-40c3-a64e-424a0de5769f", - "modified": "2021-01-06T18:28:39.924Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--63a62627-7ece-4def-a821-7cf4d9d8f46d", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.925Z", + "created": "2021-01-13T01:50:49.033Z", "id": "relationship--00f966b9-90b2-473e-8b64-a9c9dfe01e64", - "modified": "2021-01-06T18:28:39.925Z", + "modified": "2021-01-13T01:50:49.033Z", "relationship_type": "related-to", "source_ref": "course-of-action--63a62627-7ece-4def-a821-7cf4d9d8f46d", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.925Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--e8d90908-b124-4d08-b057-85e51c364196", - "modified": "2021-01-06T18:28:39.925Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e616455e-c4c7-4260-9fe3-4826774d5b91", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.925Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--3e8cdf16-9f48-47df-b9b1-eeef7a420330", - "modified": "2021-01-06T18:28:39.925Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "related-to", "source_ref": "course-of-action--e616455e-c4c7-4260-9fe3-4826774d5b91", "target_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.925Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--72d1a7eb-45df-41dc-adae-4b7526a24b6c", - "modified": "2021-01-06T18:28:39.925Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "related-to", "source_ref": "course-of-action--e616455e-c4c7-4260-9fe3-4826774d5b91", "target_ref": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.926Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--6a66b402-30cd-4028-94fa-bd69ee31e27c", - "modified": "2021-01-06T18:28:39.926Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f80e9f71-397b-4c63-aa73-57cc6e8486c6", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.926Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--81f62ae8-09b0-460c-bac3-a2fff8aaaea1", - "modified": "2021-01-06T18:28:39.926Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3c89750f-21ee-4f40-aa88-4b38f52c8150", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.926Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--1a4ef869-db2f-4477-b661-95b25dd580a1", - "modified": "2021-01-06T18:28:39.926Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "related-to", "source_ref": "course-of-action--3c89750f-21ee-4f40-aa88-4b38f52c8150", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.926Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--3ab79807-1329-44df-a1ed-a691b494a67f", - "modified": "2021-01-06T18:28:39.926Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cbbd4caf-5cd3-428b-8646-e3d33e631912", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.927Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--1ac1a189-6b2b-4ff0-b209-edb4e23bf2e2", - "modified": "2021-01-06T18:28:39.927Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--20de3cbe-ea41-476d-8d37-509523a0cc6a", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.927Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--e9ead45e-1d38-4aac-8053-615160dc2b0f", - "modified": "2021-01-06T18:28:39.927Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0218a669-b188-44a5-95c4-3e0329a28ec2", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.927Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--77f5838e-090e-4041-981b-bf3a6444f88f", - "modified": "2021-01-06T18:28:39.927Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--44e74c5e-7d77-49ae-bf38-4b213e73954f", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.927Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--d5301d3a-ac06-4d33-abd4-2bfdef20ae7b", - "modified": "2021-01-06T18:28:39.927Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--dd2ad56c-80ca-4b39-a4cf-ef3da33ddf22", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.928Z", + "created": "2021-01-13T01:50:49.034Z", "id": "relationship--10ebeeaa-60f3-424f-aab1-f594716ddf31", - "modified": "2021-01-06T18:28:39.928Z", + "modified": "2021-01-13T01:50:49.034Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd2ad56c-80ca-4b39-a4cf-ef3da33ddf22", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.928Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--8a5058dc-e98d-4cb7-b735-a7aa0990514d", - "modified": "2021-01-06T18:28:39.928Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd2ad56c-80ca-4b39-a4cf-ef3da33ddf22", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.928Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--9ab8eceb-2cf7-4ecf-8cb0-e0c91463212e", - "modified": "2021-01-06T18:28:39.928Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.928Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--0b32c440-7527-4e8c-a5fb-60ea2f8c54e3", - "modified": "2021-01-06T18:28:39.928Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.928Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--d9672222-2521-4cee-8aa5-fb8b3e5d8f5b", - "modified": "2021-01-06T18:28:39.928Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--f52fa070-3bc4-4f49-9631-c3fc782b0f76", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--65b3c79f-e44c-493a-ab87-5bf8dc89b522", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--62df1f45-c1c6-46f6-9dcf-b320e2153b3a", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--5a537a86-cb3b-4e5c-8bdd-15389f25f73c", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--92b8d953-59de-453a-b731-a317b08e73f1", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--4b05e54e-fe18-4a01-bb57-4e74472b499a", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.035Z", "id": "relationship--70068e65-d369-4bc8-bf22-a75b6d847c8b", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.035Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.929Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--0f881300-ef08-4ac5-a116-ec8b9a45288f", - "modified": "2021-01-06T18:28:39.929Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "related-to", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--677b79aa-6725-4fef-aaba-a9e3160c91e1", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--605e9789-938a-4a1c-8c4b-a861493a29a7", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--b570d7d2-2266-4246-8727-23ae503d25a5", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "related-to", "source_ref": "course-of-action--605e9789-938a-4a1c-8c4b-a861493a29a7", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--2c19ee1a-4be7-44f6-a6b5-c04b3c35f612", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ffb6bca4-1c1c-4076-8c3b-4609fd36a10d", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--6b5d86c4-c73c-4b8f-bc52-3f317ea650d0", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--986b083f-33f0-4759-a60b-68f0ed711696", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--a27a6155-cb61-4c30-90a3-d9d20e6f6fd6", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "related-to", "source_ref": "course-of-action--986b083f-33f0-4759-a60b-68f0ed711696", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--41d5c790-de69-49b2-977a-ce41e8b6f9dd", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e5130b47-0ab4-4afa-98ca-5c6b113ec05d", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--fc0e44ad-32ef-43bd-905d-61eaf9e7d746", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "related-to", "source_ref": "course-of-action--e5130b47-0ab4-4afa-98ca-5c6b113ec05d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--eada55ff-b729-4432-bcf1-9c76fe0ff72e", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0922581c-0595-45e6-973a-78e5b98f58af", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.930Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--65cc9438-bef8-433c-a7b9-de6c20023ccc", - "modified": "2021-01-06T18:28:39.930Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--073ef3dc-9659-4241-9cc7-208797310725", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.036Z", "id": "relationship--3dd010c5-bdd8-4bbb-8d51-03e7fc290f09", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.036Z", "relationship_type": "related-to", "source_ref": "course-of-action--073ef3dc-9659-4241-9cc7-208797310725", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--f086d022-8570-438b-816d-bd004cad6262", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "related-to", "source_ref": "course-of-action--073ef3dc-9659-4241-9cc7-208797310725", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--53e7d576-9ffb-4a2c-83a5-eb7eaaeb57b5", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bdbbdaab-71dd-4d4f-8751-f3120d8cb3f3", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--58ed9427-51cf-45cc-a282-5cc76ef93540", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f7085306-3570-4432-89a9-70398342c4b5", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--5e00e18b-cfe9-41b9-a477-c8c0ea2a6d63", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7171c97a-0184-46f5-9196-cfce4480eff9", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.931Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--73a31cc9-cb15-4f6e-80cc-3c3961e46baf", - "modified": "2021-01-06T18:28:39.931Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--56389fba-9273-4c13-ae0e-e1e0e6acef8c", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.932Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--3c0b8f39-740a-40eb-9903-81e39b8f272a", - "modified": "2021-01-06T18:28:39.932Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1d73d8cb-1d33-4c2a-a810-7ae3d0fc6173", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.932Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--869cc002-e52a-44cc-8e87-e3583762859a", - "modified": "2021-01-06T18:28:39.932Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--44a8343f-316a-4d18-8b00-eb679b9f3d11", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.932Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--39b197e3-0036-4805-833f-4b8407406650", - "modified": "2021-01-06T18:28:39.932Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3f993faa-ff0b-4d3f-98b3-701f9ada6c69", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.932Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--b4521284-1635-4884-bd63-7c7bf190e72e", - "modified": "2021-01-06T18:28:39.932Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c4f85dae-ac3f-4589-a6c7-af5c7b136d95", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.932Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--22281187-a8c7-4cc8-b0c8-4c5424246003", - "modified": "2021-01-06T18:28:39.932Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4a4917dd-aa29-439c-be29-f988e21e042f", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.933Z", + "created": "2021-01-13T01:50:49.037Z", "id": "relationship--9573c09d-9d1e-4142-8395-94389014dd0b", - "modified": "2021-01-06T18:28:39.933Z", + "modified": "2021-01-13T01:50:49.037Z", "relationship_type": "related-to", "source_ref": "course-of-action--4a4917dd-aa29-439c-be29-f988e21e042f", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.933Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--ff7086c2-803c-47c8-88e4-3195675e28fe", - "modified": "2021-01-06T18:28:39.933Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--53d76553-1a70-43af-abfb-fbddf8d05533", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.933Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--9ae66b39-555c-4fc0-8f3d-0c0d9931a927", - "modified": "2021-01-06T18:28:39.933Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.933Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--28b0f1eb-25d0-4389-83cf-2f3b79f58b9d", - "modified": "2021-01-06T18:28:39.933Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.933Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--4b964e23-3d07-4a26-811b-4f2a8771fcc1", - "modified": "2021-01-06T18:28:39.933Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--33105e96-7fb9-49a2-9519-0284149d6f58", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--cdaadafe-61c3-49ae-bb15-88dfff26eb59", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--64a254c2-71ef-407a-bd9f-50803c79841a", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--9023f9bf-5742-472a-bbdf-949b325a41d5", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--62fe0633-d2b1-4ee3-8248-659ea832dfd2", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--0d9abb51-0149-43b9-aafc-07b9dee427b3", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--62fe0633-d2b1-4ee3-8248-659ea832dfd2", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--da1dca8a-fc2e-4e9a-9aa1-63ddc42f9c3d", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "related-to", "source_ref": "course-of-action--62fe0633-d2b1-4ee3-8248-659ea832dfd2", "target_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--174dae18-ea35-486b-bac7-fbc4c3a9c14f", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c7a0b547-aeeb-4f0f-8778-835b9f56556c", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.934Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--3eba74aa-c4f2-4e1a-b1e4-c2cfebd0e1bf", - "modified": "2021-01-06T18:28:39.934Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2480cc5f-159f-454e-8670-3ab06b032740", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.038Z", "id": "relationship--3e4994d8-d6e4-4095-9744-a2e6238bea8d", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.038Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8005c894-4ab4-4197-8605-b421ec9e8601", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--e09087de-46e8-404a-8445-9736a3527e99", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3699bdc3-5b09-4f70-bb11-3bd1ea06f76c", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--1d8459a2-f393-4524-bf9b-58ca822c5c30", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--c032b7c2-364c-4b61-9a77-734b7bb2c3dc", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--dcbf946c-5efe-47d1-8671-b681d70dcf15", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--1d3d1e38-fd1c-4f6b-96bb-bc14d4a4db23", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--bf5c8e54-b9f1-4a29-9da2-cd306af9adab", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.935Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--9a66a167-7a87-4eda-8e7c-4783155ed18a", - "modified": "2021-01-06T18:28:39.935Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.936Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--b77eb986-0d7d-45a8-8a5d-2a6598181287", - "modified": "2021-01-06T18:28:39.936Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.936Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--c19174a1-05d1-4f50-be78-fe9e65c3a117", - "modified": "2021-01-06T18:28:39.936Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.936Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--8d1ffac7-abc8-4fa4-86a6-778784dcf0ad", - "modified": "2021-01-06T18:28:39.936Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.936Z", + "created": "2021-01-13T01:50:49.039Z", "id": "relationship--d84e8d9b-eea0-471a-a677-adc39a13b5c3", - "modified": "2021-01-06T18:28:39.936Z", + "modified": "2021-01-13T01:50:49.039Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.937Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--81df1e52-1fe0-4632-a597-0dd1f6288b93", - "modified": "2021-01-06T18:28:39.937Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.937Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--56387046-ff46-4b19-9d7a-bc0495bf25e6", - "modified": "2021-01-06T18:28:39.937Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a63e02dd-78ae-44cd-bfe9-5de3e6a05915", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.937Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--35c88eee-d160-467d-aa3e-36baae937049", - "modified": "2021-01-06T18:28:39.937Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--a63e02dd-78ae-44cd-bfe9-5de3e6a05915", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.937Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--18eb425e-f662-4e6f-abc2-5569d22740a8", - "modified": "2021-01-06T18:28:39.937Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--a63e02dd-78ae-44cd-bfe9-5de3e6a05915", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--afdbe7e0-7a57-47c1-b114-d583c13aa1f6", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--a63e02dd-78ae-44cd-bfe9-5de3e6a05915", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--f100980a-a09b-48b5-9f3c-69c87fe0f899", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a69e7652-84e6-463e-8913-41d1dc1dbabb", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--93c62cd5-387d-4897-a314-5316e1e568f1", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--a69e7652-84e6-463e-8913-41d1dc1dbabb", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--6e168aa2-e7e0-4a72-be7f-280481ffdb73", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7c2025ad-0515-4fe0-a08c-d54eed8a3c74", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--13fceb8a-e8c3-429d-9717-b75bfb9986da", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--7c2025ad-0515-4fe0-a08c-d54eed8a3c74", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.938Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--5a0ff01a-87be-4766-8f78-b984a1817df3", - "modified": "2021-01-06T18:28:39.938Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.040Z", "id": "relationship--16047518-f543-417d-a82c-1bcc333f81fa", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.040Z", "relationship_type": "related-to", "source_ref": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--90ebd636-93fd-42df-9f89-04cb05291249", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--3d9da055-0f6b-4c5c-bbbb-963528b50458", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--c60a2653-5245-479a-b8bb-36fd08784d2b", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--0337b210-9701-435c-83b8-be4190bd5f93", "target_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--11c7b7a6-8ad2-441f-a781-5ec05b00a2e5", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f20cdc32-61ce-4332-9beb-40ea73170753", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.939Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--74568e48-8f7c-4504-8d1d-50803e504571", - "modified": "2021-01-06T18:28:39.939Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--f20cdc32-61ce-4332-9beb-40ea73170753", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--9a3d554f-759d-40cc-a75a-14ea6e1c85b7", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--57790262-7466-476f-8e28-e0651e7c8aff", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--bc6052b9-d938-4b00-ba0c-38dba37c99ee", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--57790262-7466-476f-8e28-e0651e7c8aff", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--86c1bed8-2d1a-45d3-8d13-06fe52f25036", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d213faed-ffd9-42a3-8e66-b50483cfdf33", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--fc221f75-f2fd-4e42-abb3-08dc52547a4d", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--d213faed-ffd9-42a3-8e66-b50483cfdf33", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--bc6d2b70-e9b4-447e-a6ac-8deb33292786", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--407481a6-2912-4e19-8f55-4f646aad88f1", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--7f99d756-a801-4b1a-99af-969ff511df92", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e920e73b-b22d-4772-88be-abf304ee0ac5", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.940Z", + "created": "2021-01-13T01:50:49.041Z", "id": "relationship--d8233629-2dbb-4c66-abaa-1767c3cec0a9", - "modified": "2021-01-06T18:28:39.940Z", + "modified": "2021-01-13T01:50:49.041Z", "relationship_type": "related-to", "source_ref": "course-of-action--e920e73b-b22d-4772-88be-abf304ee0ac5", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--e2f76664-35c3-4c10-bddd-3184f555e254", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a7ba5e7c-907a-40c5-b6ca-b173137866a2", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--847b2fc6-0e3b-468a-959f-f33fdbb2ebcd", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--ee7e63a7-7392-4e6c-997f-eab5e30b81b9", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--def4fea1-01a1-457e-bf42-85eac3e49383", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--ed46765c-8e42-48fb-aabb-fdf43fbde828", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--70af758c-74dd-4858-b323-9788ff43403d", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--26506d7f-4d61-4de3-8fc1-24303205749e", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--8809caf2-9c03-4f01-ab99-6783a782f33f", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--9c103f8d-56ba-43bf-8ecc-edefb9b56241", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.941Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--130b6e3d-363f-4a4e-980f-3bdddef44ed6", - "modified": "2021-01-06T18:28:39.941Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--20bceba2-eb6b-4cbc-a704-70c7fa5a0924", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.042Z", "id": "relationship--bd8162f9-95c5-4903-af5a-245165867071", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.042Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee09b661-51e0-472d-a57b-63ad9510344c", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--189d40d6-bb95-4532-83c9-faa69c22b557", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "related-to", "source_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--be10e88b-834d-43e6-9f19-38e685280d8e", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "related-to", "source_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--6a0b259b-8e82-4fa6-9897-084f6218c9ff", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b4d340e2-573b-48d6-9665-d2d58a22ef23", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--d48dc619-86c7-47ca-bdb4-ca89887ef5bd", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ab1fba76-cbaf-42b5-82f3-86afed86b75f", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.942Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--456ef330-c4e9-4110-b7a5-c237e0485514", - "modified": "2021-01-06T18:28:39.942Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--79f33838-4138-4e88-9caa-7fe40918882a", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.943Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--2c56120b-54b2-4773-838f-4514be255ddc", - "modified": "2021-01-06T18:28:39.943Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e2e33dda-b88b-4aba-9c8b-641d6c19d93e", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.943Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--f6e18476-b3a9-452e-8297-34e9c1cd7714", - "modified": "2021-01-06T18:28:39.943Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "related-to", "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.943Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--b2840264-2c9c-4a38-a1b6-a20b01bf32dc", - "modified": "2021-01-06T18:28:39.943Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6f9d9940-e4fc-4a53-9d95-fce93b1c3b82", "target_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.943Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--474e034a-dd8f-4c17-86ab-65499ece5731", - "modified": "2021-01-06T18:28:39.943Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "related-to", "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", "target_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--a9828f33-9094-4f53-9770-7a27b2bd1642", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "related-to", "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.043Z", "id": "relationship--70e12997-9096-4fdc-9f80-bd608f9227d9", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.043Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8ce9ddf9-9fdf-4e3c-bd9a-530116ae6acd", "target_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--7430c4bc-948e-4811-a4d7-f5630fac28ba", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--ec7f76a3-88ca-47cd-90ac-99d4f998b0d4", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--34f98f13-e570-44cb-b43f-edb91e5a7298", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3ed720d8-4bcf-4eee-8b6a-331eeddbe031", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--8a26062f-204f-45b4-8f56-0ac222e79ec8", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--945fd6d3-363d-4fca-bc68-e79a908a449d", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--bdab5a28-447d-40ae-bd49-596799179732", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.944Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--837fc9b8-15f2-4076-b495-5393bc69c9a0", - "modified": "2021-01-06T18:28:39.944Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--73869e2b-8028-4d42-9233-75e7ca060ae7", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--96f12ace-fff8-43f9-93eb-2cadb805f6e7", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--84eb99d7-4e02-4b7c-9afe-eeaa7d30d798", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.044Z", "id": "relationship--98f91e1f-12ea-4219-8da6-52228d2da33e", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.044Z", "relationship_type": "related-to", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--d8e73405-5501-409a-9016-940a15be6934", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c6709e4b-4243-43af-a147-95782276ecbe", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--e60a6931-fc5c-4942-82b4-2f92ccefad8f", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "related-to", "source_ref": "course-of-action--c6709e4b-4243-43af-a147-95782276ecbe", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--a543536e-44b5-43bc-b92f-40cd15f0c5b7", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a168aabd-10b9-40b8-b43d-8768e6000b66", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--132d6d8c-d6d6-4396-b0a4-ddcb62be1650", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "related-to", "source_ref": "course-of-action--a168aabd-10b9-40b8-b43d-8768e6000b66", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.945Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--4848bd70-376a-49e4-9dbf-044bc999ab62", - "modified": "2021-01-06T18:28:39.945Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "related-to", "source_ref": "course-of-action--a168aabd-10b9-40b8-b43d-8768e6000b66", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--ee952d76-938a-42fe-ba8a-670c7c8ca793", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--71b415da-e1b4-4e41-973b-b739f983b1ee", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--493adf2b-c6dc-4cf9-996e-76a467b14115", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--87d29891-c704-4ffb-8fd8-618aeadb798f", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--e2950411-5915-4d0e-b6a3-e935945eecaa", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e22d60de-89f7-4789-aac4-47cd1e3b30fd", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--40507374-467a-4f07-8d34-f90b92e48fe1", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--dbbf0bf2-039c-4c1b-9563-ebc6bc9b5f11", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--60cf3337-dfa0-4934-856a-1e1e98bf004a", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--87ff32f6-e5ff-4d1a-88e7-131032cf50d4", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.045Z", "id": "relationship--4e8eca08-a4eb-4908-9734-e62a7aae7a86", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.045Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e77cd425-47f2-4b52-8ee1-5a75de2c39b5", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--5c48664f-a84c-41ea-9c2f-e94aa692122f", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4e700b05-c78b-4600-8f44-6305dcb7fe85", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.946Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--371b895e-4626-44df-b244-ae30406193ce", - "modified": "2021-01-06T18:28:39.946Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cfebc252-20c0-4932-8b57-ae734ef9edff", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--327ce8bb-9f78-4509-96c3-587572914985", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--424cd6e3-d768-4f8c-b07c-9b6ad7c0dfa8", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--7a0053b8-896b-48bb-86f5-24f21e3dab68", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--4c1e8664-a594-4cdb-8d90-ed36c0755cdd", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--dfe572c6-e8fb-433f-8901-30666f7c87d7", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--9d6f550b-0542-4641-a384-ab5e3160c055", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.947Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--30f70807-312b-4a1f-b58c-abdaf7e4a0f9", - "modified": "2021-01-06T18:28:39.947Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--f7be33bb-cb8d-4be9-bf33-f57c3efb55a6", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.046Z", "id": "relationship--4e84073a-b67e-4fa9-bbfe-299fe3524abd", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.046Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--8e5359b1-34d6-46f6-82a4-61c047c3cdfb", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--53858da2-b717-4644-b0a3-a390f66dae99", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--f8ba62c1-5b7e-4121-9d06-74f11dd0292c", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.948Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--9fe47a14-348a-48b3-b960-f698987dc18c", - "modified": "2021-01-06T18:28:39.948Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--a86bdbd9-e76b-4564-89ba-47ea249cdc01", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--bfbae778-403d-4d37-9fa1-f1fd291e9dc9", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--26f25444-3cdf-4127-98a7-4e62a7de03d2", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--a7b0ab74-e3fe-49d8-9374-22f5654204af", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--dda7d2a4-eb4f-4539-a38e-ffd1e6190371", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5e412a9c-0f77-4dbf-819d-4041d247e608", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--5992228d-c462-45dd-a1ec-6af817ab83c8", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e412a9c-0f77-4dbf-819d-4041d247e608", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.949Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--cb7ae14b-d519-4ce9-b630-268e70fb7fcb", - "modified": "2021-01-06T18:28:39.949Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e412a9c-0f77-4dbf-819d-4041d247e608", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.950Z", + "created": "2021-01-13T01:50:49.047Z", "id": "relationship--42c83d2d-00a3-47ec-b150-a167ceb309c9", - "modified": "2021-01-06T18:28:39.950Z", + "modified": "2021-01-13T01:50:49.047Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2ec1e070-7ac4-4568-a3c7-2a023a5cb93e", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.950Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--4195718c-e5da-41c9-9a56-b3ccad9872ca", - "modified": "2021-01-06T18:28:39.950Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ec1e070-7ac4-4568-a3c7-2a023a5cb93e", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.950Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--04588e11-2760-4cf5-a942-c6e375db32e9", - "modified": "2021-01-06T18:28:39.950Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ec1e070-7ac4-4568-a3c7-2a023a5cb93e", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.950Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--9b824542-e591-40c1-8a84-953261a202c3", - "modified": "2021-01-06T18:28:39.950Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ec1e070-7ac4-4568-a3c7-2a023a5cb93e", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--76e904ca-1959-49b7-ae1d-8b5962273a47", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0711e0ad-f663-4132-a70d-0ea74f0c081d", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--8fc8e114-3c1f-42d5-9a6d-dd7bb2a6eca5", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--0711e0ad-f663-4132-a70d-0ea74f0c081d", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--aceaa13e-c48a-4a71-b94e-19396d90fcd0", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8f484c19-2d92-493c-abbe-caffe71d0668", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--96e67f2f-ea89-4f9b-934a-295c0d813632", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--8f484c19-2d92-493c-abbe-caffe71d0668", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--ea277da8-2c40-4db3-ba39-bb8f7d77ae8e", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5d7e335c-f36c-424e-83da-b396d5b32551", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--aa5514cc-8797-488d-a379-faafb540dc19", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1647023a-9301-4347-b048-ec74068f9985", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--3a75f2ee-7a8f-44f4-a1a8-dd29111c6bf5", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--1647023a-9301-4347-b048-ec74068f9985", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.951Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--86fcc8d1-420c-4fac-9d41-b0622ff255fd", - "modified": "2021-01-06T18:28:39.951Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--1647023a-9301-4347-b048-ec74068f9985", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.952Z", + "created": "2021-01-13T01:50:49.048Z", "id": "relationship--1792a811-c30e-4cf1-af0d-73450866c04a", - "modified": "2021-01-06T18:28:39.952Z", + "modified": "2021-01-13T01:50:49.048Z", "relationship_type": "related-to", "source_ref": "course-of-action--1647023a-9301-4347-b048-ec74068f9985", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.952Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--1637b8bc-6dd7-4852-b79a-cead96a04162", - "modified": "2021-01-06T18:28:39.952Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--62573825-1925-4ebb-ba0a-e345124afce5", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.952Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--ddcf42d1-9725-44ae-a6ae-4f560728191e", - "modified": "2021-01-06T18:28:39.952Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2bafd293-a932-46e3-a2cc-87c4bb6d5a22", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.952Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--ff51a5cc-e0a3-4368-94d6-d5a01a16126e", - "modified": "2021-01-06T18:28:39.952Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--edf22cec-6a0e-458c-8db7-bedef68dbbca", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.952Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--aa923588-7276-4d62-a30f-84ef1e602f33", - "modified": "2021-01-06T18:28:39.952Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--c173f3c0-6c8a-4357-b37c-9d6481609466", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--d3af4a11-1e36-4598-8b78-9ac070f7de96", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--33ebdf40-4639-4a27-9213-b2ef3a4d3123", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--66314d11-7b81-43b3-8ad0-56415da133d8", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--d1044b61-2145-42d8-b437-6b8b28b317fb", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.049Z", "id": "relationship--26b080b4-4da3-4a06-9557-4ab2aadfc895", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.049Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.953Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--96626849-ee10-446c-abe1-27ed6fc075ed", - "modified": "2021-01-06T18:28:39.953Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--18b9d899-d02f-46aa-9576-1f5f5ce057ec", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--343e445f-f815-40f4-8f0c-72eefff9495e", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--49a6d79b-be3e-4ae9-93f5-a82a81ad5f47", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--965c9cee-516e-46ab-85ba-b6e3f02c2651", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--e6acfae9-3128-4bac-beab-37b5b6da8166", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3e131e82-2abe-4903-af2f-40e0109784db", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--80d85f6e-af00-47bd-b209-343c2072e6e1", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--3e131e82-2abe-4903-af2f-40e0109784db", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--023a5cbe-6dd3-40a3-b36a-839846a25cf7", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--3e131e82-2abe-4903-af2f-40e0109784db", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--6abec5ea-7bf6-4501-ae6b-41245ab43b6a", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f95d595b-8aca-4639-bd9a-cc8b2fee7723", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.954Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--988760c5-265f-48c6-8cf8-729ebf30c3f8", - "modified": "2021-01-06T18:28:39.954Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e505148c-ed36-445f-84bb-ef191dda341e", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.050Z", "id": "relationship--180ec547-6330-487a-aa6c-5778e7341f3f", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.050Z", "relationship_type": "related-to", "source_ref": "course-of-action--e505148c-ed36-445f-84bb-ef191dda341e", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--f563b959-8378-408f-99c2-0361651bddf3", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--aee5915b-ddad-4f6e-8b01-4c1cf01e22d5", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--1379216d-3b3a-49e6-b273-cc1779cfb3ab", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--aee5915b-ddad-4f6e-8b01-4c1cf01e22d5", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--0f804530-6449-4707-959c-df56dc9eaef1", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--aee5915b-ddad-4f6e-8b01-4c1cf01e22d5", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--ad00b1ef-3638-4eef-b3c1-ae942d754083", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e9772f21-5d78-4b48-9c73-de3bb7e9e8d4", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--b7aa5611-921e-41b6-b571-9374329be791", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9772f21-5d78-4b48-9c73-de3bb7e9e8d4", "target_ref": "course-of-action--55747843-3102-4363-815a-0fad0d8b4cbe", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--37a50a55-4595-4832-998c-14ed834a0f9f", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.955Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--0a53f6e1-d341-4af7-b1f8-d9c5b0b726e6", - "modified": "2021-01-06T18:28:39.955Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--72f3bf76-921e-49ab-adb5-ead97f4aa16f", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--096bd986-2b95-4a37-885a-5bc75586ee44", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--7ab3ae86-c269-431f-8b8c-ca5cc3f5ae8b", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--7faddc75-381a-403f-b0cc-863512de8933", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.051Z", "id": "relationship--70c914b5-5e36-4191-bc3d-9a356efe1454", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.051Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.956Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--092731ff-c14c-46d4-a8c8-d9b4c702b367", - "modified": "2021-01-06T18:28:39.956Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--0daf2c55-fc34-4ecd-96a1-1d28a66cadee", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--5d89d4e5-0aaf-4f1c-ae35-fa68b40c6c98", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--2acdfb5c-e242-4772-bb0a-42d6c1374ed3", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--6e863061-5983-4b66-996c-4072314084e0", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--57715b4c-1802-4f6b-9c14-b825f45e5188", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--07e8485c-c874-445e-ba35-d3190de99943", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--44d1406d-f511-4f6d-adb3-ed9e18882713", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--e86a2fce-9a3d-4e77-a6cf-495dff882c0d", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--1a6d6a5a-b4b9-4949-9b0d-ab25f5371969", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "related-to", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.957Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--f071c0cf-2a52-48a6-952b-36637a9f9b48", - "modified": "2021-01-06T18:28:39.957Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--19eed0e5-753a-49d5-a5cf-5b6b342d600c", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.052Z", "id": "relationship--b0598ec4-16d9-4069-a917-58b198f30e58", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.052Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2c26e47c-7140-4883-b650-dafcc7dd6406", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--fc803c6c-903f-4378-8442-c86624f51494", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ccfde171-e62b-4579-ba4b-87517253369d", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--49d07001-89e0-4a5b-8701-fa148bc48cfd", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ad1a52f9-b19a-422a-a515-b608688ef43f", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--3cf61336-e88d-4a1e-a3f7-7c7cd3cf1218", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--ad1a52f9-b19a-422a-a515-b608688ef43f", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--a1b37552-775b-45d0-9883-5741527eb248", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--ad1a52f9-b19a-422a-a515-b608688ef43f", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--14e0bc16-a977-47f7-896a-968aa5ad4205", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--dd03deb0-067d-4bc0-9a4a-77d96927d851", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--202e71df-d974-4780-bfb3-c82561b93b33", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd03deb0-067d-4bc0-9a4a-77d96927d851", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.958Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--9a0bb7c7-cd2d-4a18-a681-d13191b4058a", - "modified": "2021-01-06T18:28:39.958Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd03deb0-067d-4bc0-9a4a-77d96927d851", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--61e14804-7ded-4f7c-a8ef-6552d49c5061", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd03deb0-067d-4bc0-9a4a-77d96927d851", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--67254c1d-ce44-4217-90da-a6fd7e900093", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--17ef96e7-4969-4eca-a480-878501517998", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--bbf0cd8e-0af2-420d-aaaf-b58664827f32", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.053Z", "id": "relationship--1d17c664-eb2f-4854-a420-49d4d38e931a", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.053Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--6f5e034c-a9f9-4dda-80ca-b693187225fc", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--fe1e63e5-bc4c-4a99-a062-a93887b913a2", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "related-to", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.959Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--c9c950a7-18e0-445d-9cb1-66c8ce2eb40d", - "modified": "2021-01-06T18:28:39.959Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6e5e2a1d-f279-4523-81a0-34111d4a5355", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--9d5f1071-dacd-4cb7-81b8-ffb1a0cf3ac9", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e5e2a1d-f279-4523-81a0-34111d4a5355", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--bee774ac-6444-4eb5-9bb2-dba899442af4", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--076cef43-c88e-425f-8bac-0ca93f64069d", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--96220d11-561b-4404-95e2-73b20bad0662", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--762c0c11-1531-4f91-a068-016549071664", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--32afb527-9aa5-4c76-b1ac-30e59ad08bca", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7da7cabc-0bd4-48ae-9f0d-4f3c7feff6e5", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--c78955b8-10f2-4f69-8e28-33bac4d4f84e", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "related-to", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--7bc2e4bf-d384-4814-b8ac-f3088c0c57f9", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c1fd1628-8a31-4f1c-91c9-1e36fbb57e3d", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--7cd44613-73a8-4854-96dd-59a9096043bc", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3201603a-4a49-4829-97a4-65c3ebb55580", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.054Z", "id": "relationship--4b100076-ef73-48a5-94a3-e85f1ba5aa25", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.054Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.960Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--988da32d-f304-4888-89c2-c552acd4fd0e", - "modified": "2021-01-06T18:28:39.960Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--c49d5f15-36a3-41e6-906e-569b1fd46367", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--a2b48e7e-3fc4-4ff5-bffb-fd02eefad980", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--5bc6ffec-e4b6-44fb-8339-b23e119a47c8", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cc77576-c898-4e09-a632-92672e9d2010", "target_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--02100296-a9cd-4336-a23b-579b5813315a", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f5a96b36-f84c-40ca-b80c-57a832e20315", "target_ref": "course-of-action--8b76afad-8595-4993-9b1e-82b87bb69405", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--1e0d0430-f91d-446a-b262-308e6435ad8c", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--77e43115-9620-4649-af35-fc3839df8cac", "target_ref": "course-of-action--8b76afad-8595-4993-9b1e-82b87bb69405", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--2bc61edc-25cd-4767-9435-68817b0ad769", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--2fc9aae2-d313-4345-a8a6-790b591a47ca", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--10a65abe-3f18-46c3-bb6d-1c7566a1d99e", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.961Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--fd84e384-88ea-4a1f-bb96-a70a76da8187", - "modified": "2021-01-06T18:28:39.961Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "target_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--c6afe9a2-085a-4c52-9067-f7185dabc3f6", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--b05a27ca-8636-4c35-8c76-dd8466e64e1e", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.055Z", "id": "relationship--ad122bfd-ce86-4839-9dc4-2b27f5c1cc28", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.055Z", "relationship_type": "related-to", "source_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--f7ed5335-dfcc-4001-ba9f-ebaecc6e9e14", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "target_ref": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--336215d3-61b1-46bf-8605-8689eb54a683", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--740e0e1d-d87e-4910-b20e-4c355e36607a", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--567cd78b-0f14-4b16-812c-04d0b52b2978", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--adad303f-596e-4484-925b-422cfe29cb33", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.962Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--1af53c8b-4478-483c-b38b-5dad7c2792e4", - "modified": "2021-01-06T18:28:39.962Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--ecf795f1-4c98-4e77-a6eb-b4d783075f74", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--0320f609-1590-4850-9d62-163992c201fd", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--183dbad2-8d12-4948-89c8-2477b38cc0d2", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--ce368ab7-ac93-44d8-9021-f46b6399af02", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.056Z", "id": "relationship--2d2a7687-5e13-4889-a114-2a69a1a779f2", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.056Z", "relationship_type": "related-to", "source_ref": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", "target_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--72d90daa-09b8-4b42-89b0-2113d3b1ce9a", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--9d75b07b-331c-4f69-a6f4-ab687b746162", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--a701a9e8-8617-43f2-bb21-f8639489dbd8", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.963Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--d4744421-5cb1-4203-b7b7-a23af03157c8", - "modified": "2021-01-06T18:28:39.963Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--94c41887-94e0-450a-abe2-97a0ea2e1290", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--988dde9a-cd3d-4fb5-a519-541b0d96a3cb", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--2000b914-346e-4f4e-9e38-452dfb604670", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--492fc9a8-f851-482a-a388-f5b93bfcc264", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--04ea9017-361d-43fc-8c1d-d09ef85da441", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.964Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--82edebcc-5669-466a-89f6-079a6964582b", - "modified": "2021-01-06T18:28:39.964Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "target_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--8f90fbb6-9c17-409d-8b5c-2f203c2b83e2", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--517f3e78-e19f-4765-855d-3fb41374685e", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", "target_ref": "course-of-action--30ca9933-ba3a-4bef-9cc2-fe63a9a41c77", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.057Z", "id": "relationship--c28d7893-8323-4694-9f4f-0b9832153726", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.057Z", "relationship_type": "related-to", "source_ref": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", "target_ref": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--e721ebde-4c85-4682-98d7-b568fe179c40", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", "target_ref": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--3baf4118-efc6-48e7-a383-42b0bc1eb389", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--dcaff6d8-13c2-46ed-b09e-7bd768ccbea5", "target_ref": "course-of-action--1cef57a1-3242-4d2a-8d7c-5e2aba5c2868", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.965Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--af1eedb0-a552-415f-adec-472f86872297", - "modified": "2021-01-06T18:28:39.965Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.966Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--efaa0594-2526-48df-960a-e04f389619f8", - "modified": "2021-01-06T18:28:39.966Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.966Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--415e7559-deca-48d9-abde-b462a1fdf53a", - "modified": "2021-01-06T18:28:39.966Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.966Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--2b8daf0e-1039-4ccf-93d0-62e2bd416eab", - "modified": "2021-01-06T18:28:39.966Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.966Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--d3d5242f-ee8a-45c7-8c71-c06a42bd42b9", - "modified": "2021-01-06T18:28:39.966Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--2dc0d19f-a701-4570-ad20-1d03aa8de99c", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--32ebdaec-1b6b-48b7-acba-b13885a42283", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--370a9e5f-284f-419e-9383-b7f12e11709a", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--177eb208-804c-4e84-a0ff-9c2bb45684d0", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7c71b7d1-0306-4759-a716-6cb0b59c3a03", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--dbb56980-9172-4506-95a8-1ff22a942ae5", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.058Z", "id": "relationship--70c0f8c7-99e6-49d3-85e0-02b4cbcce75b", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.058Z", "relationship_type": "related-to", "source_ref": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--72c3033f-f065-4c54-9d67-9ad306b843e5", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--7e36ade8-95b5-4ee8-9027-2e465437b628", "target_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.967Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--7610467f-3686-4729-9f63-b36091bb1a1e", - "modified": "2021-01-06T18:28:39.967Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee9bc736-1c94-464e-ad5e-31d011368286", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--21b14fbe-3aae-42fc-8d2d-fa68d6b202a0", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--9d3e8a3a-3437-400f-a0bd-5b7308ca93f6", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--f1e171ae-9888-4165-9ef5-952a8ca75e8a", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--6810d7e4-207a-4301-8142-5c21125d9a84", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--ac702eca-48ca-4565-a9dc-cb7ef2c33d61", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--f80dcd35-f05f-460c-baa0-527e87f7fbe7", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.968Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--40de5eb5-d361-49ed-9573-6ae28c235c3b", - "modified": "2021-01-06T18:28:39.968Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--ef74a6d8-699f-4c09-b538-579c24963e03", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "related-to", "source_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--79232bf7-49f3-48b1-8d92-f420b83fd786", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4427e496-ed89-43a3-afc4-509c3f331916", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.059Z", "id": "relationship--e61703f0-28a3-43be-9c3b-bcfb3c718a1e", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.059Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc2345db-6bad-4383-8487-2e4ad459e6e3", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--46b3fdf8-b05d-4601-a65f-ac02f94b6143", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--aa57d957-cd11-494a-80e4-2a019aae46f1", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--3bec6ea3-1fe1-425a-b116-0f2ce4f7aa2a", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9c72593e-62a6-45bb-8063-60a0a720df2a", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.969Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--3d943cf3-4bda-489b-b469-549294818972", - "modified": "2021-01-06T18:28:39.969Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--29612ee4-6f8d-4ff6-ab0d-b494510db270", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "target_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--9e389081-56c5-441e-8a21-7886f6f1fc66", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--1659beb5-ad92-4809-bd9f-611724d7525e", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "target_ref": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--729351ef-3f3b-47bd-bc55-017a33b56982", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--86999275-4362-4a37-a1d8-4e5a3263f3a5", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--6caa44a6-d552-40f6-864e-f508c35b4182", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d410f05d-0ee6-46b7-9719-ae37152808fe", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.970Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--3906c657-f3bc-4e44-89fe-ad76f5a44c48", - "modified": "2021-01-06T18:28:39.970Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--d410f05d-0ee6-46b7-9719-ae37152808fe", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--0159891a-dda6-4921-95d4-c5249471176d", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--d410f05d-0ee6-46b7-9719-ae37152808fe", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.060Z", "id": "relationship--0fa7dcbf-8621-485c-a94c-7a751c321f45", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.060Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--0e019c72-d6ec-40b5-9e13-c63eb7449fee", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--bc532a28-1e64-4792-819d-9caab67b1db6", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--a8e7600b-58b5-41e1-864e-97a11c10d665", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--d97e2e27-d6ff-43ae-8554-d288bc7cf612", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.971Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--1439c01c-28d9-4b06-8d33-426b1abafa55", - "modified": "2021-01-06T18:28:39.971Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--284dc9c8-5f86-431d-8181-a3776c63f5bf", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1eb073e8-3a6c-41e2-823d-3cd70f972eca", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--256fa67e-9ee1-4d24-b6e4-c2fc32d4a941", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--a9e727b3-2d30-4b99-8fec-b5d039f8489b", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "related-to", "source_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "target_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--ce86fc27-c2ad-4402-b14f-30d154baa700", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7219790a-a982-4a08-8b36-c0cfe14b4bf1", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--45294cdb-3191-49f6-9c0e-bfd6068c63ec", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--21420534-15f5-4fe2-9461-6caf00083b12", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.061Z", "id": "relationship--dae222f5-09ea-4f42-8a6c-bff933a8e862", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.061Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4d124eee-b727-47ac-9e84-e29788eddea8", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--404eb9b1-466f-48f5-8987-7a44f83e1ede", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4c245e5e-e0c8-4cb9-9ff7-068a6e67cd82", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.972Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--da2846f2-ffc2-4a76-a211-eb4a0076e853", - "modified": "2021-01-06T18:28:39.972Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--4c245e5e-e0c8-4cb9-9ff7-068a6e67cd82", "target_ref": "course-of-action--1eec44c3-6c67-4ee4-bcb9-d80b82f03f61", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.973Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--27140224-d997-4a06-bac3-5c669ccc374a", - "modified": "2021-01-06T18:28:39.973Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.973Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--ce12844b-b7b1-4046-92e8-449dd86267d8", - "modified": "2021-01-06T18:28:39.973Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.973Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--49c074f4-3672-4814-81c9-5dd4aa91a717", - "modified": "2021-01-06T18:28:39.973Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.974Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--597eb183-46bf-4468-99a5-a751cafd73de", - "modified": "2021-01-06T18:28:39.974Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.974Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--9a26cd90-f21e-4aa0-907a-3894c84d8df4", - "modified": "2021-01-06T18:28:39.974Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.974Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--b9239109-d18a-49a8-960e-4d4f0d5fb480", - "modified": "2021-01-06T18:28:39.974Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.974Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--7fa1ec1a-4547-44f2-b65a-262940b85775", - "modified": "2021-01-06T18:28:39.974Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--14ceb0c2-ff82-4393-a4a5-146a61ccee8f", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.062Z", "id": "relationship--ddd86464-a612-47a0-b09c-db1cb51ef484", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.062Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--6cabb872-71cb-4cdc-a20a-f248a4d0b2ec", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--4e4b990a-14e3-48df-b377-acab26e401a8", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--7a7dd0f1-716f-4f1d-bcc2-9c25dbfb1c02", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--db9af5e9-3c90-47a1-ada5-b66b38124856", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.975Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--11995bd5-78f1-4a39-b3ab-736d3e71b782", - "modified": "2021-01-06T18:28:39.975Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.976Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--fd93759f-546b-4a32-b9a1-f4460b986117", - "modified": "2021-01-06T18:28:39.976Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.976Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--30bb476f-de3c-42ce-9c62-bdd27b0d8904", - "modified": "2021-01-06T18:28:39.976Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.976Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--76d89e21-ecd5-49b9-9c2a-6f88ed195237", - "modified": "2021-01-06T18:28:39.976Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.976Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--a99e1fa4-1d2c-4ff0-a1c1-533673dfffd6", - "modified": "2021-01-06T18:28:39.976Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.976Z", + "created": "2021-01-13T01:50:49.063Z", "id": "relationship--c59d7e8f-dea1-480e-bec1-70db36873b23", - "modified": "2021-01-06T18:28:39.976Z", + "modified": "2021-01-13T01:50:49.063Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--93510979-17c6-40e0-9cf8-f2a858f48ca8", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--38eb6fff-a121-4ad6-a730-598a1dd66069", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--ea56f008-3a6f-438c-853d-414cdb6cd110", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--ec69aec5-f4e9-4977-ada1-4e91177efad1", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--5a17b524-14f7-401d-94cf-94cb075fb230", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--e8557b8a-cf46-4d4a-ab30-f2b7d3217f74", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--48521e2d-539f-48ff-976c-728833c50549", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--8a76ccdc-340c-44a1-95a2-108e5548bcb8", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.977Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--f6d52d5a-67da-4337-9a8a-c5ce12c8f958", - "modified": "2021-01-06T18:28:39.977Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--9131a3cd-0b41-4599-9e8e-5fbe26c0fc25", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--fc92f35d-2515-4fbe-bf16-db0130dd0971", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--51950aaa-53a1-45c2-86c5-7a999246e39b", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.064Z", "id": "relationship--0ed563a9-5b9f-4cf2-87fd-d3fcd9b104b8", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.064Z", "relationship_type": "related-to", "source_ref": "course-of-action--51950aaa-53a1-45c2-86c5-7a999246e39b", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--a77d4aa3-d9a0-416c-9ff8-d79f1c539020", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--51950aaa-53a1-45c2-86c5-7a999246e39b", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--11aeb139-dd33-4803-8801-11bc49f8e60c", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--755416f6-2b81-47f9-bacc-4d656d7b20e8", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--121b03be-774e-43d6-adb2-197395fd79d1", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9b407210-ab70-49c0-8bb4-e48f376363b6", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.978Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--2daeed94-3bb0-4027-86e2-8d128d8fc916", - "modified": "2021-01-06T18:28:39.978Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--9b407210-ab70-49c0-8bb4-e48f376363b6", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--b121f50c-31ac-4599-b54b-1682f5969a0a", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--9b407210-ab70-49c0-8bb4-e48f376363b6", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--037b0196-6d36-4bc2-9ae8-3a47d903a266", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fe74966f-3111-4003-b314-a81898334ed7", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--fd6228fb-0662-4f25-9895-202a68993035", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--fe74966f-3111-4003-b314-a81898334ed7", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--20fa7c11-d822-48e0-b229-6cf0979139d3", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--fe74966f-3111-4003-b314-a81898334ed7", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--a31d077b-9766-4ade-84c6-40bfecb4ded6", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--68cfbc36-269d-437d-b4ed-d4ff08075771", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--9306fb99-2e55-4a17-a05c-eb952937e68a", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--68cfbc36-269d-437d-b4ed-d4ff08075771", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.065Z", "id": "relationship--d1a24713-44be-4f7c-983f-277c2b556a2d", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.065Z", "relationship_type": "related-to", "source_ref": "course-of-action--68cfbc36-269d-437d-b4ed-d4ff08075771", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.979Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--4f0944d8-28a0-4636-bd75-3275291fda5a", - "modified": "2021-01-06T18:28:39.979Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--68cfbc36-269d-437d-b4ed-d4ff08075771", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--cbe19fde-4027-4ed1-a5fc-8c7e06464239", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c4d8fd4f-ec75-4c4b-8902-1a0f15c1255a", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--fea140d5-f070-4667-bc78-1aa26c174ff0", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--755ecdd8-f8ef-4cbd-90e2-6dab576480e2", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--ca49cf18-4521-4f49-99c9-cb74bc80de66", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--0f29ecfd-96ae-48e7-b3fa-cdd702bbb3cb", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--9489d3de-bfd5-417e-ba82-551e578b0687", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--0370edf6-b6b4-49e8-ae80-a3ebb6294c52", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--30b00586-8042-464c-964e-6b2742829bcb", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--b4c3fb03-36ef-467a-9d90-81266e95c38b", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--986fe767-2ade-4018-bb3f-168c60dbd558", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f131eea7-09dc-46c0-82ec-ff7c1f763424", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.980Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--7ef197fb-ce52-42db-a961-ea98308bbe9f", - "modified": "2021-01-06T18:28:39.980Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--f131eea7-09dc-46c0-82ec-ff7c1f763424", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--acc61a5d-a4b3-45fa-b3b7-a9627e4377ab", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d842c244-0af1-419a-85ea-8b04eec48775", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.066Z", "id": "relationship--803aea1e-bcf8-46dc-a3fd-619a3e89b107", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.066Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--71911b14-cfd7-40b5-a4e1-3a5867260b58", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d9919e00-c8ee-45f9-a226-c5664b3b90e6", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--1bf3bd6d-7bb7-46ac-9365-cc1c8251acc6", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--d9919e00-c8ee-45f9-a226-c5664b3b90e6", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--99193e81-6929-48ab-a78e-aabff3690039", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--d9919e00-c8ee-45f9-a226-c5664b3b90e6", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--3db5f9ba-8c85-4b01-95d6-31cc01c144db", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d84c7206-fc91-4fd6-8d93-19e073d557af", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.981Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--f3cf7305-656c-4633-ab1e-3ac516d130ca", - "modified": "2021-01-06T18:28:39.981Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.982Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--089d83ee-7e65-4fc2-bd0d-d4f8ca308b88", - "modified": "2021-01-06T18:28:39.982Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.982Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--1ea8b49f-9a70-4f28-9944-243bcb5df6b7", - "modified": "2021-01-06T18:28:39.982Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b69939a0-cd58-4f06-b10d-861be9e0e204", "target_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.982Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--047651e6-fcce-4ae0-bccf-c7043c92136d", - "modified": "2021-01-06T18:28:39.982Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a7b3623b-bd5b-4584-a5e8-c0f7129c8f2c", "target_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.982Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--53138d31-22ea-46e7-b052-a542659e7a41", - "modified": "2021-01-06T18:28:39.982Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.982Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--3e49f4a7-86a4-43fd-aefd-e2ad1c39a122", - "modified": "2021-01-06T18:28:39.982Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.067Z", "id": "relationship--5a36c494-0bdd-4d86-8437-4cf2f4121e95", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.067Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--3601754a-ed62-4d21-a07c-58d40fc3ea37", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--681e8780-fcef-4b13-9284-a2f639b00a50", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--06bb879a-976b-41d9-9af4-1ceab3085550", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--4a196358-c914-4363-8951-137aecf83140", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.983Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--4db5edbf-18e2-4b4a-86fa-2d7d4c2ab290", - "modified": "2021-01-06T18:28:39.983Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7217dc64-668f-4fa2-81db-39335804ca3b", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.984Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--97382c02-291f-4587-9731-4ea19172abe6", - "modified": "2021-01-06T18:28:39.984Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--7217dc64-668f-4fa2-81db-39335804ca3b", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.984Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--09ce2f6c-0b93-4e04-bc64-76782a3830ed", - "modified": "2021-01-06T18:28:39.984Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--7217dc64-668f-4fa2-81db-39335804ca3b", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.984Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--8b34c6c2-168d-4473-a134-9851373ab997", - "modified": "2021-01-06T18:28:39.984Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ab59e2dd-c096-4c54-b71b-d68970f4f823", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:39.984Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--af5ffc49-b4cd-47e7-aa29-7586fbd6f300", - "modified": "2021-01-06T18:28:39.984Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--ab59e2dd-c096-4c54-b71b-d68970f4f823", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.013Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--01b7c9f8-879a-4381-8241-4e66cf586fb5", - "modified": "2021-01-06T18:28:40.013Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--ab59e2dd-c096-4c54-b71b-d68970f4f823", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.013Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--64f61d3b-cb94-4e67-a759-7a4330c413e5", - "modified": "2021-01-06T18:28:40.013Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "related-to", "source_ref": "course-of-action--ab59e2dd-c096-4c54-b71b-d68970f4f823", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.013Z", + "created": "2021-01-13T01:50:49.068Z", "id": "relationship--a638ac72-2469-4ebd-97eb-187ffa04782e", - "modified": "2021-01-06T18:28:40.013Z", + "modified": "2021-01-13T01:50:49.068Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3af6da32-18f7-4e62-88ba-90872100f5f7", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.013Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--d373ef6d-64bb-487f-8b4f-8b46bb1ac09f", - "modified": "2021-01-06T18:28:40.013Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--3af6da32-18f7-4e62-88ba-90872100f5f7", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--91d6f809-0940-4175-b764-906c03ff3fad", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--3af6da32-18f7-4e62-88ba-90872100f5f7", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--a65d11f1-cd02-4f0f-920d-8be6c3193d0b", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--3af6da32-18f7-4e62-88ba-90872100f5f7", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--2a7ab94c-c804-4952-9ec8-2d81ad186e3a", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0a54a5eb-db9e-4dd2-9484-2ca1a46920d4", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--85a96f3c-cd88-4cd3-8b18-4f601485cae2", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a54a5eb-db9e-4dd2-9484-2ca1a46920d4", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--21f4c265-1896-47dd-bd85-a05a06e441d1", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ff3c93b3-0f4d-42bb-8d5c-8668c637c76f", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.014Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--d4a0e8d4-0f76-4063-a139-b7e592ee2168", - "modified": "2021-01-06T18:28:40.014Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--ff3c93b3-0f4d-42bb-8d5c-8668c637c76f", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.015Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--05b392c2-453e-429c-a47a-64bb65308a84", - "modified": "2021-01-06T18:28:40.015Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--ff3c93b3-0f4d-42bb-8d5c-8668c637c76f", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.015Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--0ad432f4-c165-4de8-a2ab-a497961f3008", - "modified": "2021-01-06T18:28:40.015Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--84c4b30b-034f-41e9-af7c-b7a150391b9e", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.015Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--cf50e882-3e76-4c96-a406-650904b9c5f4", - "modified": "2021-01-06T18:28:40.015Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.015Z", + "created": "2021-01-13T01:50:49.069Z", "id": "relationship--07c85efb-7639-43a3-8934-cafdbc121e2f", - "modified": "2021-01-06T18:28:40.015Z", + "modified": "2021-01-13T01:50:49.069Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.016Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--8bce1637-499f-4464-a65f-378ab9bb2077", - "modified": "2021-01-06T18:28:40.016Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.016Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--3e4de67b-a1ff-4680-a914-2fa20c65dd75", - "modified": "2021-01-06T18:28:40.016Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.016Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--b64c2d1f-d690-4126-985e-c15256367dd2", - "modified": "2021-01-06T18:28:40.016Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.016Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--4f7d68f3-3086-43a4-aa62-09ea9488e582", - "modified": "2021-01-06T18:28:40.016Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--2cb55682-7377-41eb-950e-bb0640d3dc1a", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--943a1f55-31da-4cc9-90fe-47f7e7960e84", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--2a92db59-3e4e-4959-abd2-1e45e12600e0", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--943a1f55-31da-4cc9-90fe-47f7e7960e84", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--bfec1be1-2e38-4258-902b-11364a6763d9", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--943a1f55-31da-4cc9-90fe-47f7e7960e84", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--0b55b693-d136-4164-a8a6-35af6364547a", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a8f8befe-e5cb-42aa-bf0a-6956629ccce2", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--8179a7ee-0025-49f6-93e1-3462185c6f96", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--a8f8befe-e5cb-42aa-bf0a-6956629ccce2", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.017Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--56f49af9-228c-48a1-a57d-fb3bec9697da", - "modified": "2021-01-06T18:28:40.017Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--a8f8befe-e5cb-42aa-bf0a-6956629ccce2", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.070Z", "id": "relationship--0b9e643c-3fcf-485b-b72a-35bf14051d59", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.070Z", "relationship_type": "related-to", "source_ref": "course-of-action--a8f8befe-e5cb-42aa-bf0a-6956629ccce2", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--85b01341-a120-4142-be80-015bb00eb5d2", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc36e57e-a6e7-48d6-a0c6-c7f72f3fe437", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--6fe5c6a1-0df9-467d-8cc1-b86f0ec1a692", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc36e57e-a6e7-48d6-a0c6-c7f72f3fe437", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--1ec0d388-0218-43cb-badf-d552e511e964", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc36e57e-a6e7-48d6-a0c6-c7f72f3fe437", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--cc029160-921b-402b-a7a7-4856db33fbe4", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e576ceff-7d1e-4270-8dce-7bc384ca4514", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--6eec63b1-db25-4d58-9df1-7f7bc25b1dab", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--e576ceff-7d1e-4270-8dce-7bc384ca4514", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--f11242aa-9bb1-400e-87fe-54e1887158f7", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--e576ceff-7d1e-4270-8dce-7bc384ca4514", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.018Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--c10be796-05ff-44d1-93ab-48e53e860ea3", - "modified": "2021-01-06T18:28:40.018Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--566ee5d1-7b42-41f1-b501-8a8d2570403e", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--626b6b3a-8be4-4731-9b93-b9118c7820a3", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--e9620856-67c0-4701-9063-ffc24cf16c12", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--d7ffdd0a-34e9-4636-99a4-9eba24a45aca", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.071Z", "id": "relationship--0090506e-f946-49f9-bd68-b97aa02a0971", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.071Z", "relationship_type": "related-to", "source_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--c00868a2-c193-44d6-913c-c97f6ee820c7", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--419a9888-674b-49cb-a259-fa9143ef2525", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.019Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--a32ecfae-e159-4ac9-b2ca-c8e62c5b8d0f", - "modified": "2021-01-06T18:28:40.019Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.020Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--b76294ff-4ff6-4824-87ec-2fa66d00c1e3", - "modified": "2021-01-06T18:28:40.020Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.020Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--9fe373f2-0d3a-4748-98dc-3fd50df4ba88", - "modified": "2021-01-06T18:28:40.020Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.020Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--1f7c23aa-2841-46bf-8f01-e8b809d142f8", - "modified": "2021-01-06T18:28:40.020Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.020Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--b48488a4-75b5-45eb-b254-528b4030dc84", - "modified": "2021-01-06T18:28:40.020Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.020Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--8515df8e-94c3-4458-a613-feec49923aed", - "modified": "2021-01-06T18:28:40.020Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f09f0bcb-6675-4d6c-9c30-244571f8fecf", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.021Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--45cff565-8f23-4bab-92a5-ffdb971feb2a", - "modified": "2021-01-06T18:28:40.021Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--f09f0bcb-6675-4d6c-9c30-244571f8fecf", "target_ref": "course-of-action--b03a9f34-a6c2-4c29-b0bb-b2c9880e14b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.021Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--8515df8e-94c3-4458-a613-feec49923aed", - "modified": "2021-01-06T18:28:40.021Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "related-to", "source_ref": "course-of-action--f09f0bcb-6675-4d6c-9c30-244571f8fecf", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.021Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--7403dc0e-04c2-47c2-86cf-803993ba859c", - "modified": "2021-01-06T18:28:40.021Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--756ba0f6-a9fd-4fb5-8b4a-808f3fd59025", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.021Z", + "created": "2021-01-13T01:50:49.072Z", "id": "relationship--1af8fea0-1956-4302-8b27-44a2981a7e47", - "modified": "2021-01-06T18:28:40.021Z", + "modified": "2021-01-13T01:50:49.072Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8dedb8a6-ae09-4928-9394-c13cd4b23ea8", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.021Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--45161453-28da-41bc-967d-6d7a11cd2b15", - "modified": "2021-01-06T18:28:40.021Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--8dedb8a6-ae09-4928-9394-c13cd4b23ea8", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--f4a8ae86-7f45-44d9-8ec8-c336eec74d2d", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--63a5b282-f29e-4767-8f77-0a65fd76b8c9", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--97229ef9-7059-4598-bd3b-0e700b76a9d6", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--42b00086-8702-4915-985a-370f1dcd2b9e", "target_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--22bbaa7a-47ae-4f46-9331-37290662d10c", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e705b0e3-a924-4c27-8a57-32e05373b37b", "target_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--e180ee12-d2f5-4e8c-926e-1e42f2b1cabe", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--fc03745c-b4bd-4b07-8a4d-fd3cd10bb9f0", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "target_ref": "course-of-action--403e1634-9fee-463d-a3ad-0287b5736c31", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--bb6e481d-4f24-4d69-93e5-90c133abc030", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.022Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--58902a62-ee6b-45b1-9bf5-2651fefe50eb", - "modified": "2021-01-06T18:28:40.022Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--ab94d4d9-86b2-4113-9cd6-5954f4de3e1b", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "related-to", "source_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.073Z", "id": "relationship--47198bbe-6bb7-4a6d-b5af-546a7df71e84", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.073Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cdb51f1b-4334-4c21-85d8-7230407c1e00", "target_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--7c6bbd47-97aa-4d28-b0d4-0c02ae4257a8", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--34dce444-3e67-46d7-bd22-c45a02673f86", "target_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--33852164-d3f1-41cc-b77d-e8d66b8887cc", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--72e48daa-c43e-40ed-9c93-bbb0f284c9e8", "target_ref": "course-of-action--f6a3820a-79f4-43d0-b0b9-bce542d23d7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--ce5001cc-9bf2-4706-96ea-570ce02a3806", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "related-to", "source_ref": "course-of-action--1eec44c3-6c67-4ee4-bcb9-d80b82f03f61", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--d251f366-0308-411e-8d9f-44d3d13217e2", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "related-to", "source_ref": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--6f0e3464-a418-470d-acf8-99122bd03365", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--52aa8c0f-eef2-414c-b1d2-87dd6d26966c", "target_ref": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.023Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--7852588b-4b6c-4bec-89d4-d5df0ecf3821", - "modified": "2021-01-06T18:28:40.023Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--46252abe-9bc9-42b3-8e5c-83b18c963202", "target_ref": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.074Z", "id": "relationship--289bae74-4f70-40f7-aab4-114f60475411", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.074Z", "relationship_type": "related-to", "source_ref": "course-of-action--93c8eee9-ec29-42a6-8c50-ef679d484ff3", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--1e308c60-bb1b-44d3-a9e3-2397177d18af", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--01af6990-92aa-4202-acd3-dbc45d8cb0bf", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--90adaa10-2b03-4307-a4f3-85f27cf6aaf2", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--10d166e5-574d-49ba-9f75-562341eb53e1", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--61c40857-9567-4788-8a6c-2968e2bb2088", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--7287450d-6d30-41c6-8bf3-e3c34910c4ac", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.024Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--7e30462a-57b8-4059-8193-a7c6c72f8364", - "modified": "2021-01-06T18:28:40.024Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.025Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--1d487617-5788-4eaa-850e-0b0454c9d555", - "modified": "2021-01-06T18:28:40.025Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.025Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--8d4b9ba9-8577-4c1b-b2d7-dfbca9697aae", - "modified": "2021-01-06T18:28:40.025Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--963953b2-6853-4b2a-990d-dd6e19280209", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.025Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--be913e3b-82cf-4d86-a57a-f90985eba797", - "modified": "2021-01-06T18:28:40.025Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--de2d4ae3-19be-4fcb-bba7-27c8f02b545c", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.025Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--1616f081-b88f-4227-bde4-09e7ad1796aa", - "modified": "2021-01-06T18:28:40.025Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--de2d4ae3-19be-4fcb-bba7-27c8f02b545c", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.026Z", + "created": "2021-01-13T01:50:49.075Z", "id": "relationship--192a6bba-8074-4319-9a80-aac7276120cd", - "modified": "2021-01-06T18:28:40.026Z", + "modified": "2021-01-13T01:50:49.075Z", "relationship_type": "related-to", "source_ref": "course-of-action--de2d4ae3-19be-4fcb-bba7-27c8f02b545c", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.026Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--69efa17c-76a3-49d8-a128-eb63dd674e4a", - "modified": "2021-01-06T18:28:40.026Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d1b3ab1b-fcf2-4e2b-8d6d-d03d2d0e971d", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.026Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--ff96e2d1-56be-48c8-ba50-60d88d2e2ac3", - "modified": "2021-01-06T18:28:40.026Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.026Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--ce61df20-afca-40fd-ae82-bbeec20291d4", - "modified": "2021-01-06T18:28:40.026Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.026Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--a9fb7fc7-25bc-4b02-b12d-dea528966fb8", - "modified": "2021-01-06T18:28:40.026Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--c04c4a30-3ebd-41ba-b0af-9fed318332c6", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--13d332b1-9497-47e3-a8c1-c5c3aee6f815", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--afea1576-7411-46d1-9e7b-55eaf3507371", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--fb0662ca-8092-43ff-88e8-f6870253872e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--e95083fe-412f-4478-9f3e-390af7efe013", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--4fda8453-487e-48df-960f-3c39cedbef7f", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.027Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--24518ff8-a3ac-4576-bde6-75ca5681889d", - "modified": "2021-01-06T18:28:40.027Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.028Z", + "created": "2021-01-13T01:50:49.076Z", "id": "relationship--b6f358fa-d076-4485-8927-481ed12e0089", - "modified": "2021-01-06T18:28:40.028Z", + "modified": "2021-01-13T01:50:49.076Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.028Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--7c0594a4-8f4a-4dec-bf1a-bc2837a78f57", - "modified": "2021-01-06T18:28:40.028Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.028Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--c31afe57-508e-425f-8c79-ec8093a6ee4e", - "modified": "2021-01-06T18:28:40.028Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2d5e69eb-e02a-47f7-94e9-97cf0acceccd", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.028Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--eb075863-29be-4b93-807c-01cbba4af1cc", - "modified": "2021-01-06T18:28:40.028Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1c82cafc-ddd4-4da0-be3c-d6630b69541d", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.028Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--e6cb45ae-fbe5-4912-acfe-16c9523ccdfd", - "modified": "2021-01-06T18:28:40.028Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--119fda97-bcb3-4233-a114-af2fdf5d5584", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.029Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--595620ea-fba0-4fb3-9d16-009564aabfb5", - "modified": "2021-01-06T18:28:40.029Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6f2933ce-d877-4b5d-b592-fd5c5505c298", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.029Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--d8bea9d0-f37b-48be-af56-3985ca6fa46e", - "modified": "2021-01-06T18:28:40.029Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--aee58a62-c9fd-4a28-905a-b3412aca4dab", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.029Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--fda62260-25a8-4598-bc9b-10e7a221fa09", - "modified": "2021-01-06T18:28:40.029Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--aee58a62-c9fd-4a28-905a-b3412aca4dab", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.029Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--2f7f0ff3-a8dc-4131-b531-3096236dd2b7", - "modified": "2021-01-06T18:28:40.029Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.030Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--1409a13d-393e-4b93-a3a3-230e4bf50899", - "modified": "2021-01-06T18:28:40.030Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.030Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--9b720ee6-84f7-4ff8-a26a-d0f4a88c8309", - "modified": "2021-01-06T18:28:40.030Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.030Z", + "created": "2021-01-13T01:50:49.077Z", "id": "relationship--968761c8-6e40-4538-9f69-11701e5b86ec", - "modified": "2021-01-06T18:28:40.030Z", + "modified": "2021-01-13T01:50:49.077Z", "relationship_type": "related-to", "source_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "target_ref": "course-of-action--b734078f-a009-4f48-ad74-4df3a6cc1aa1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.030Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--be14e373-51d9-4928-86fa-11b34bdb05d0", - "modified": "2021-01-06T18:28:40.030Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4559eaec-88c5-4342-9d52-79f35a73cbe3", "target_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.030Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--c6dabd14-c62b-42fd-94e4-8e196af635ad", - "modified": "2021-01-06T18:28:40.030Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--7de1e0f0-5939-47f9-a244-f5ab5bc99237", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--e4b23f5f-a758-487c-a26e-b936f55685aa", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--01bc97dd-2adf-48cb-aec2-d7e7380e1fbc", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "target_ref": "course-of-action--c83fb118-1599-4125-89d8-e4d0b557997f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--2ad26649-884b-4042-9491-54ab3699d341", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--da638ffc-67d6-4a40-af4e-049cc6fe25d7", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.031Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--5739cad9-c472-405e-ba2c-19ab9a058e46", - "modified": "2021-01-06T18:28:40.031Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--19898f0a-035c-475d-95bc-f19499515497", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--95566c81-546b-4cfe-98f3-0f152048cbea", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--c02fb569-aafa-44da-ac79-ab6a071ec7d1", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--6883f672-0527-4047-8314-9c984dbd3def", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.078Z", "id": "relationship--45fb453b-46ab-468d-84e3-878886c0371a", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.078Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--d4db7113-3909-4006-b96f-144e694d0801", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.032Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--b28f891b-beba-4a59-9de0-7708aecb90c4", - "modified": "2021-01-06T18:28:40.032Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.033Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--8dfd604a-86af-4479-bb46-f7fd9ac8f50e", - "modified": "2021-01-06T18:28:40.033Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.033Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--57143c91-4926-4290-a826-14ccf228da07", - "modified": "2021-01-06T18:28:40.033Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.033Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--7a73af73-2496-4d3d-8de5-5487b0757d57", - "modified": "2021-01-06T18:28:40.033Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.033Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--eeb5e85d-056b-410f-8f7a-fba09c2e0f5f", - "modified": "2021-01-06T18:28:40.033Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2dc269fe-4600-488d-91f6-6a6980249507", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--0bae4c23-601c-4d3b-9b85-718e86612138", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--502879e9-6036-4447-b598-1cb5c0a1fe04", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--956519e8-dd28-498e-b1c3-7caaec56806a", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d9aa9c63-3a95-46e1-8eff-52ef2e95d376", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--ad7528c1-9bd0-46c9-a10a-afe4a6c892f9", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--662acc4f-259a-4e29-a95b-ae98a0869ea3", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5452049d-a248-4483-9698-7895c4cd3eae", "target_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.079Z", "id": "relationship--4e86e3e3-24d9-4abd-a3fb-f2c1e0811b71", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.079Z", "relationship_type": "related-to", "source_ref": "course-of-action--5452049d-a248-4483-9698-7895c4cd3eae", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--173283e9-5467-4b12-9c2d-841b20f01ab3", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--969b2068-f93c-4b4b-a31d-da17890aad1a", "target_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.034Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--e0120057-5fc3-4218-93b2-a024919c40f7", - "modified": "2021-01-06T18:28:40.034Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.035Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--4aebbea4-7002-45d2-8ab1-f60f3461f08c", - "modified": "2021-01-06T18:28:40.035Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.035Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--6eb5cf36-f5c9-49d1-9ca8-d5f649cb19e3", - "modified": "2021-01-06T18:28:40.035Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.035Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--23471466-37fa-49bb-8019-7b350c4fef0e", - "modified": "2021-01-06T18:28:40.035Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.035Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--07daf749-8465-42b7-a87e-0e26fca818f1", - "modified": "2021-01-06T18:28:40.035Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.035Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--cbc476d9-79a5-4e1f-a444-a77db74163c4", - "modified": "2021-01-06T18:28:40.035Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--ab94af36-4671-457e-a1c5-8485f72c5558", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--f269c7cc-7f11-436f-83fb-f31bed588cd8", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--29bfbed5-be3f-4bf7-936a-68c734e46d5b", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.080Z", "id": "relationship--cd999c7b-b2fc-401f-aa21-306634be97ef", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.080Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--e737ab28-79c3-4128-82d5-33fcf4533f45", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.036Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--72b863b6-8898-48cd-b13d-c963a7ce0845", - "modified": "2021-01-06T18:28:40.036Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ed179707-9266-43e7-8337-df5bf8bdfd01", "target_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.037Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--7d7efbbe-0ba0-446f-a5e3-43c7fb7d9033", - "modified": "2021-01-06T18:28:40.037Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--ed179707-9266-43e7-8337-df5bf8bdfd01", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.037Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--cb2efb89-2393-4f70-8c52-277551fa3868", - "modified": "2021-01-06T18:28:40.037Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--a3947c1b-ea09-4311-817a-3994899e0ad6", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.037Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--e847bb57-4862-49ef-b4ad-db2aab8bbc12", - "modified": "2021-01-06T18:28:40.037Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.037Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--451ce095-cd42-4e09-b70c-ef8f02998219", - "modified": "2021-01-06T18:28:40.037Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.038Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--27468e54-7582-487b-9317-58c27cb29c5b", - "modified": "2021-01-06T18:28:40.038Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.038Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--a25c796f-436d-4e32-a65c-a24b4236454f", - "modified": "2021-01-06T18:28:40.038Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.038Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--90586f18-da2e-49f0-9650-3438684dbb33", - "modified": "2021-01-06T18:28:40.038Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.039Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--d03c877f-57c1-4b6b-a81f-8376d789addb", - "modified": "2021-01-06T18:28:40.039Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.039Z", + "created": "2021-01-13T01:50:49.081Z", "id": "relationship--838f9b0e-3df7-430e-8b5e-29ad720e6cc9", - "modified": "2021-01-06T18:28:40.039Z", + "modified": "2021-01-13T01:50:49.081Z", "relationship_type": "related-to", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.039Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--39e38923-c3df-422f-8bb6-550eefe9bcec", - "modified": "2021-01-06T18:28:40.039Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ff46c552-e59a-445e-8a20-e5451117472d", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.039Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--472d7fc5-a36e-4c4a-8e09-5312bf241196", - "modified": "2021-01-06T18:28:40.039Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "related-to", "source_ref": "course-of-action--ff46c552-e59a-445e-8a20-e5451117472d", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--e3327804-8fed-4cd5-98e5-ccb83dbbf671", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--be5a9cf1-ea7a-4454-a12c-99169c7b416b", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--24a082bf-85c5-4db2-be70-8b1244bed905", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "related-to", "source_ref": "course-of-action--be5a9cf1-ea7a-4454-a12c-99169c7b416b", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--3ae93aa4-5747-487f-bf42-49c556aa419c", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "related-to", "source_ref": "course-of-action--be5a9cf1-ea7a-4454-a12c-99169c7b416b", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--ed3c1d80-417c-4206-9f95-81c0e6d2054c", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--336a4c5e-1f9c-428a-b93d-148d42c39d4d", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--3430a3d8-24a2-4ccc-9a0c-98f7f9637031", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9856e05d-68ae-4877-a0be-af841364d572", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--24f718b2-7b3e-44a8-a337-29cfd46cfad6", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ca19e77-3532-499a-ae6c-7445597804a7", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.040Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--1a1d1778-76ca-4336-982c-22c0f2fc2389", - "modified": "2021-01-06T18:28:40.040Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--38a3f700-e1e4-4558-801b-e834999204d2", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--8b2e8ad2-a846-4533-9aff-10675d9f2a14", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "related-to", "source_ref": "course-of-action--38a3f700-e1e4-4558-801b-e834999204d2", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.082Z", "id": "relationship--adecc04f-1211-414b-b5e7-28418938ad0e", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.082Z", "relationship_type": "related-to", "source_ref": "course-of-action--38a3f700-e1e4-4558-801b-e834999204d2", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--4879dcb7-f091-40b3-8e66-3ac489646f30", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--38a3f700-e1e4-4558-801b-e834999204d2", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--505a3a6b-2b27-4ef4-8557-bc78a8306593", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--19abf3ef-18b9-4a38-8458-45891f6c2578", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--80dd4ee4-0c7c-4029-9ea1-08f634d7dd0d", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--671a1cd4-3d87-496d-a29b-327cf9f0bf75", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.041Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--297e5fcd-d6fa-43ae-9630-9bcec4a92c1e", - "modified": "2021-01-06T18:28:40.041Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.042Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--9e9a9d1b-8654-4b5f-bbfb-1c974c73e061", - "modified": "2021-01-06T18:28:40.042Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.042Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--d613136c-28fb-4404-b9ae-a41378951ecf", - "modified": "2021-01-06T18:28:40.042Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.042Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--40ca3853-7075-40c2-b81a-dd2e6328b5d2", - "modified": "2021-01-06T18:28:40.042Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.042Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--c9ae4b4c-b866-4218-9a9d-3ea7b2d9cc1a", - "modified": "2021-01-06T18:28:40.042Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.043Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--e93268cb-01bb-4d5b-a89a-bd653cc6c178", - "modified": "2021-01-06T18:28:40.043Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.043Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--7f03fc21-3dc9-4fc1-96b3-e8faf31473fc", - "modified": "2021-01-06T18:28:40.043Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "related-to", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.043Z", + "created": "2021-01-13T01:50:49.083Z", "id": "relationship--77d42df0-5ac2-4502-9d32-5871a4511dbe", - "modified": "2021-01-06T18:28:40.043Z", + "modified": "2021-01-13T01:50:49.083Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7306d358-187e-4c2d-84e7-1e15d6062db6", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.043Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--4131d087-c58d-46b2-863a-a6a25713c25d", - "modified": "2021-01-06T18:28:40.043Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bfc0485f-08f6-4f4c-ac8a-19591aa9fa35", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--b735e9b8-3be0-4904-96ed-abc6f95920ce", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7a83f164-dc52-45aa-9b91-d0a4de9d1fcc", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--22be370c-8bba-4d3c-a904-f3ec709093cc", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9720c195-677b-42f8-9dfd-fe2174fc7478", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--4bc1c571-05bf-4645-a499-88676fe42fef", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e1fc974c-51b9-4064-964c-cadde5a9d953", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--92a493a9-1007-4c93-87a8-a64dd77484f1", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c539f3ef-d3c0-431f-8a12-47e3700f96b5", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--97c33881-6573-4155-b590-48d8627f3265", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--c539f3ef-d3c0-431f-8a12-47e3700f96b5", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.044Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--e8ff91ee-c620-4841-b329-82e66b277e92", - "modified": "2021-01-06T18:28:40.044Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--d5b54cd4-7226-4a6a-9d14-a9363ad76b5c", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--529cf510-5e9d-4d6d-a656-e499712f60f0", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--7578af8f-2504-421e-a945-3ae2c65c1034", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.084Z", "id": "relationship--78fa8c29-500f-4b55-b11a-5b1b31af05b4", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.084Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--f73a2373-a230-42a6-8e22-ca3edc7e7e45", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.045Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--ed12bdb8-e061-49d0-8873-bb6d22af9a0c", - "modified": "2021-01-06T18:28:40.045Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--384a7925-15c4-4c4d-871b-83d7b5ffc01b", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--c1ac49e5-079c-4b08-b8c4-efebc7197088", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d15ad21b-abd1-4329-a8cf-6477847ed127", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--d7c15fca-1da3-4789-ba8b-cf7607691c1d", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--d15ad21b-abd1-4329-a8cf-6477847ed127", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--e4aadd48-c1af-4834-980b-0571eea568cf", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--d15ad21b-abd1-4329-a8cf-6477847ed127", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--b8087f57-0319-448d-aa56-e7fc9b04558e", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--d15ad21b-abd1-4329-a8cf-6477847ed127", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--1d746c6c-d551-40c9-8ceb-2835e6aeeeab", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--80e1b680-cc53-482b-a5a1-dcbba044f925", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--637a9dfe-5bd2-4097-ba6c-8f4416ee09fd", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--80e1b680-cc53-482b-a5a1-dcbba044f925", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.046Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--de8ca319-02a1-4766-aebe-79250b0bfe61", - "modified": "2021-01-06T18:28:40.046Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.085Z", "id": "relationship--669a8fcc-59b8-4053-a04d-e6d80c266c1c", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.085Z", "relationship_type": "related-to", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--071b1f6d-e585-425a-b38e-af5806c44f34", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--6fb560f2-03f8-4841-9fea-787b32be4a72", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--6f261361-4e4f-4cac-b911-524bfaba276c", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--f51fba9c-3b65-4c06-b2f8-07f7338cbe57", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--a7f019d3-5291-49d3-b463-cb705bf90504", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--c6a7e055-4d47-46c8-8a4a-0fc217712d48", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.047Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--113268ea-e1e9-4a2a-85d4-54d05eea01b9", - "modified": "2021-01-06T18:28:40.047Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--03674447-929a-401d-926a-b1fd86943fff", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--c74118b7-9552-4e84-b005-d730e498ad16", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--cca642bf-d3d6-44b3-bd41-4a5444377ae5", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--5ab259f9-69f0-4773-9306-a1cf26d6309b", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.086Z", "id": "relationship--b9623b3b-64e5-46bd-a395-e81f2fa237f8", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.086Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--c74118b7-9552-4e84-b005-d730e498ad16", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.048Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--84abbe9d-9d5b-4a0a-907f-0ceeb801f369", - "modified": "2021-01-06T18:28:40.048Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.049Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--5a99a177-4b65-4d5a-b0fc-a3223d750bb0", - "modified": "2021-01-06T18:28:40.049Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb371640-2dba-469c-83f7-92dcf45302eb", "target_ref": "course-of-action--3d48742f-6d63-432b-8e16-6a4ec7fda080", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.049Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--c7d5208a-347d-46a1-92f0-ffc496fd1a5c", - "modified": "2021-01-06T18:28:40.049Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d34279e8-f702-4be7-9064-2ff27860a011", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.049Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--3b517602-9cde-4f7a-ab9a-86e6779ddc06", - "modified": "2021-01-06T18:28:40.049Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--d34279e8-f702-4be7-9064-2ff27860a011", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.049Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--50c5240b-18ea-4b69-95c5-c3c378b5e1e6", - "modified": "2021-01-06T18:28:40.049Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--d34279e8-f702-4be7-9064-2ff27860a011", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.049Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--7823f6ea-2887-4207-a223-570ffee3e64c", - "modified": "2021-01-06T18:28:40.049Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--d34279e8-f702-4be7-9064-2ff27860a011", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.050Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--97ca7073-344e-41a8-b631-e9e2ef24bc91", - "modified": "2021-01-06T18:28:40.050Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9387fb56-bae9-415f-99aa-f43ab48a7d46", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.050Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--08b11f80-1558-4b21-8f15-ff319d6d8cc7", - "modified": "2021-01-06T18:28:40.050Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--9387fb56-bae9-415f-99aa-f43ab48a7d46", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.050Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--9eb6710a-9854-4bce-8d0e-1cfe33e4cbf3", - "modified": "2021-01-06T18:28:40.050Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--9387fb56-bae9-415f-99aa-f43ab48a7d46", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.050Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--3d750f73-c7bf-419c-be69-ef6387cd6ecb", - "modified": "2021-01-06T18:28:40.050Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--29511b99-c02a-4066-aba9-7df06a318936", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.051Z", + "created": "2021-01-13T01:50:49.087Z", "id": "relationship--4e459ae2-126d-476c-8296-1ed0dc67df2f", - "modified": "2021-01-06T18:28:40.051Z", + "modified": "2021-01-13T01:50:49.087Z", "relationship_type": "related-to", "source_ref": "course-of-action--29511b99-c02a-4066-aba9-7df06a318936", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.051Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--bfe0de7f-1f83-411b-8dbe-3e726b8ca958", - "modified": "2021-01-06T18:28:40.051Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc4c3cc6-d9bf-4fe1-ab99-887546fea81e", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.051Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--ff0a2d63-02f2-4065-9781-dd2f802db8ee", - "modified": "2021-01-06T18:28:40.051Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc4c3cc6-d9bf-4fe1-ab99-887546fea81e", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.051Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--87e62297-de06-4a07-841f-688e73e95da5", - "modified": "2021-01-06T18:28:40.051Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--56d608c4-bfa6-41f7-8ece-d8ad089a4080", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.052Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--00f4f3dc-59ef-44b5-8665-48a90b745a0d", - "modified": "2021-01-06T18:28:40.052Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.052Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--3df08a0b-4cc9-47aa-9e5b-2592056917b9", - "modified": "2021-01-06T18:28:40.052Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.052Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--e64820da-01b6-46a7-aac5-3fc2fc12ce1e", - "modified": "2021-01-06T18:28:40.052Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.052Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--fb107c7e-94b8-4948-9744-0318386a2418", - "modified": "2021-01-06T18:28:40.052Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--41fed9ea-8407-41be-95ec-f92cd4cc3a77", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--ce8bafb9-8385-4577-8cad-a1dc738184e3", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--071541e1-1f18-4e7e-8e20-ead05e305ef7", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.088Z", "id": "relationship--4eace5c1-72af-4056-bfb0-94e28ea52fe5", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.088Z", "relationship_type": "related-to", "source_ref": "course-of-action--071541e1-1f18-4e7e-8e20-ead05e305ef7", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--a40d4b4a-d28c-4524-a667-824ef0f037f4", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--071541e1-1f18-4e7e-8e20-ead05e305ef7", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--0903408e-7c9f-4553-85d5-9330c1fa6064", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6632f4e0-8b68-4c6a-b97d-03c3ad471f97", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--2543a788-fac8-4bba-a0f8-4a9a1e20091b", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--6632f4e0-8b68-4c6a-b97d-03c3ad471f97", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.053Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--b2f551e5-99ae-4599-9ee5-d5be1acd8168", - "modified": "2021-01-06T18:28:40.053Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--6632f4e0-8b68-4c6a-b97d-03c3ad471f97", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.054Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--ee80f925-e8db-4589-b0ae-6d97621e490d", - "modified": "2021-01-06T18:28:40.054Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8c13249d-12d1-4a57-950f-90ba8e34d2df", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.054Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--e4a9b2c5-c7fa-446b-a9b8-4d8f929d16da", - "modified": "2021-01-06T18:28:40.054Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9598fd8c-680c-4bbe-895b-5ba9491632e2", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.054Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--29256fea-0ef9-448c-9cb3-c793478eedcf", - "modified": "2021-01-06T18:28:40.054Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.054Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--a1199b51-3f2f-45ed-b934-057c8eefc7d6", - "modified": "2021-01-06T18:28:40.054Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--d838ee4a-6ff2-46ab-9319-55b15fe1deb1", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--3aaf1932-5eff-4037-8210-f92492416ff5", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.089Z", "id": "relationship--4ae88301-598f-4ff3-90fd-12c3ff95de84", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.089Z", "relationship_type": "related-to", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--d06133a2-b0bc-4202-903c-2d1c5132c4ea", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5e14dd85-a15c-4c56-bb70-4b8fcb1aba9e", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--f80ddf27-151c-431a-a1ab-0ac287e5ec8a", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e14dd85-a15c-4c56-bb70-4b8fcb1aba9e", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--d06133a2-b0bc-4202-903c-2d1c5132c4ea", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e14dd85-a15c-4c56-bb70-4b8fcb1aba9e", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.055Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--39374992-96fb-482f-ac80-54421349f657", - "modified": "2021-01-06T18:28:40.055Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e14dd85-a15c-4c56-bb70-4b8fcb1aba9e", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--e2cd5dcc-865b-4856-99cf-67359f9dee13", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--732a33b2-5d1b-4039-80fc-250c1b57fb35", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--38756561-9e73-476f-a908-fec7e0d7f7d1", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--732a33b2-5d1b-4039-80fc-250c1b57fb35", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--46311f50-cfd3-4202-b1d0-a341922bf256", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--732a33b2-5d1b-4039-80fc-250c1b57fb35", "target_ref": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--011b49b3-364a-49cc-b91c-eda9cba10e0f", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--235a20d3-a4ab-451d-973c-33f032440e9f", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--d5404336-a72e-41fb-a4a3-2768ebd3b410", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c3e59741-0c6f-43fd-95b4-d74133b388d6", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--ec94c988-4c7e-4c8f-be2c-33e653aceebc", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--c3e59741-0c6f-43fd-95b4-d74133b388d6", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--b89f1914-301a-4ca3-895b-b197d8cd1695", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--c3e59741-0c6f-43fd-95b4-d74133b388d6", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.090Z", "id": "relationship--22f05db0-f105-4f57-af59-b868ff4598f6", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.090Z", "relationship_type": "related-to", "source_ref": "course-of-action--c3e59741-0c6f-43fd-95b4-d74133b388d6", "target_ref": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.056Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--02df2397-5b2b-4305-bffb-cdf0ba24fe77", - "modified": "2021-01-06T18:28:40.056Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--3fd96382-16ba-4757-8dd1-42c5f5791937", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--043e860b-674b-4069-b447-3fde117f9487", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--accc2275-f09a-4b03-b0f6-4ce1a69da90c", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--d16c97ae-7cbc-4bd6-bf75-593a63360c21", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--2bf9715a-af19-4508-8bf5-b097e309a744", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--ae8c2213-0a7c-4bd6-ba18-23d08d52ab1c", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.057Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--0085f262-7f64-4c8f-8f21-25affa291f17", - "modified": "2021-01-06T18:28:40.057Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--ba457e7b-de02-4f03-adf8-46982a4fa194", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--d64d8b04-2766-454f-b5e0-6b70fe37f154", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--e73925ec-3c60-4d96-b307-3be1aaf83435", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.091Z", "id": "relationship--5f4fde4a-6b4c-4c3b-9296-08c19b720545", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.091Z", "relationship_type": "related-to", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "course-of-action--5564485e-9a51-46af-a447-cd3c5d41340e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--4478c693-0e1f-41af-b58f-272afa46bf67", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ae92e964-6395-4825-b7d2-492c722a6dc5", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--0c9d8134-3717-4b46-bb8d-2866dabaebfa", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3d87c377-1947-4b4e-b56e-da8e33891faa", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--92d65bf6-62a2-4208-8b19-e56d11847bf3", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--3d87c377-1947-4b4e-b56e-da8e33891faa", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.058Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--81ea85f3-2af7-49a8-996d-d33aaea99f3d", - "modified": "2021-01-06T18:28:40.058Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--48dc6b11-2751-4edf-889a-90f8b8411506", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--ff6d8c16-5e75-44df-ae0f-70126b9e96be", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--79280233-7657-47ad-81f6-d40c1fe60699", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--65637684-7562-4e69-bc22-a4311c78ab20", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--41696bee-b2ca-4bd4-aded-9957ee96a89e", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--d54257f8-5583-424b-a530-e2d9ad04cf3b", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.092Z", "id": "relationship--809ab065-9ddc-4be3-b6ba-1fff2ab023ae", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.092Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.059Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--a597189e-304b-4982-bf16-bc1fe79658a2", - "modified": "2021-01-06T18:28:40.059Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "related-to", "source_ref": "course-of-action--14982fd8-cc34-4c1b-8b56-0ef0edf3faa4", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--bd0bd43c-e41e-455b-8aad-9a0fa1742a85", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--774a17be-6f12-4b6b-84d7-fee79b175e03", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--54b2ffba-7b5b-4310-a54b-85c0cdf8f685", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e0c8a87f-5d13-422d-a78a-360ecc8c176e", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--73a3bfa5-8ebf-40ba-aa7a-3f97eba1ee6f", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f0f186e4-05ea-42d4-b377-133de16307e6", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--338322fc-f5d7-44c1-bd83-cc994933ce00", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "related-to", "source_ref": "course-of-action--f0f186e4-05ea-42d4-b377-133de16307e6", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--3ba45730-fd2a-467a-ac41-53d4810d1add", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "related-to", "source_ref": "course-of-action--f0f186e4-05ea-42d4-b377-133de16307e6", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.060Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--70ac0325-c7a2-42eb-9faf-420301ae72bb", - "modified": "2021-01-06T18:28:40.060Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--83ad1211-baaa-4262-a3bd-bcd8236b1840", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--85359688-fdf8-41cd-b859-d212a786a033", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bb727e68-87c3-42da-acb1-e68c5135f3be", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--8eec1035-22d1-4514-9079-7d0aa065e7d5", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--63fb599f-d1ec-4e9c-8530-aa72dbe72296", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--b5b1e1aa-0172-49f2-b70e-74f5da7cf4c9", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "related-to", "source_ref": "course-of-action--63fb599f-d1ec-4e9c-8530-aa72dbe72296", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.093Z", "id": "relationship--7d14aab4-77ce-4c44-8f99-b798f39fe386", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.093Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--f297d7d0-84f7-4567-b2ee-8b67186332ec", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.061Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--65b6e413-b663-4fc0-88f5-e602dd3327cc", - "modified": "2021-01-06T18:28:40.061Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--b87c3e58-f712-4672-bdcb-51877b78f6b7", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--d8cf4d9b-d2e1-45e2-9d4c-579147391d0a", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--ae61a019-a7f7-4e30-8597-5c2aee46bbe4", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--5f07fb39-b659-4ca5-858e-dd1ab3c91497", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f7c21dc0-80f9-444c-8eb3-f14c0c2aa508", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--7b29995d-43b6-408c-913a-10cf62db69e8", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--f2878c0f-af5d-424e-82db-1f38df72d84a", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--98690e70-a66c-4932-bb1f-bad54b9bd861", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--a683d361-9a31-4a4f-b072-8a42548efc50", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e09a386f-5c90-48b0-8d25-37afb8a1b963", "target_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.062Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--bb95bce8-328e-4d44-acfe-ed91b627c7dd", - "modified": "2021-01-06T18:28:40.062Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.094Z", "id": "relationship--f510ef8c-2c23-49db-9cb4-e0740ea7581b", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.094Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--3d93809b-d937-4a0e-8654-b56155245ca1", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--cb73f1a6-7ed3-4731-b31e-62e8e0cfa021", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--38a25979-6dee-4ceb-b527-eee9342170ea", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--b5a02ddd-07d2-4644-a68d-8b58230d25ff", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--2f2a2a5c-e5a3-442a-b260-97884bd060fb", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--1b976b0f-d81a-4c84-a43d-68988753ee42", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e2e0ca2d-6d49-44a8-b61a-b6adaab72da7", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--3bc0495a-0872-40ba-adef-e25ec32b6fbd", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e0ca2d-6d49-44a8-b61a-b6adaab72da7", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.063Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--6031b60e-8488-46f0-b2dc-d6e6e23f7cf7", - "modified": "2021-01-06T18:28:40.063Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e0ca2d-6d49-44a8-b61a-b6adaab72da7", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--6b68205f-1515-4724-b74b-2b7cb55eb172", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--01b41a1b-083e-4557-80d2-68b279905095", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--fab03da8-d420-4a81-9d79-ec8784b436f7", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--01b41a1b-083e-4557-80d2-68b279905095", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.095Z", "id": "relationship--67aa6890-5139-4ea4-a005-d99c53e92e7b", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.095Z", "relationship_type": "related-to", "source_ref": "course-of-action--e973ba81-c73e-4cf5-865c-6b06e8568756", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--9fe5d0c1-1bae-4541-9781-2e8f5a9aa7c0", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--91b54b90-cf82-4ac9-bd31-8688ed34f4ea", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--afe32126-47c1-4b0f-880a-ecfced9fdf3e", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--aa828a83-5d4d-4a6a-8dc9-1da84299e3a4", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.064Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--8f3db0a5-af80-454b-a828-94fbf0b8af27", - "modified": "2021-01-06T18:28:40.064Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.065Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--d42eb4b0-c417-4fc3-87ea-e772ed92ed43", - "modified": "2021-01-06T18:28:40.065Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.065Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--2072b67b-e074-46ef-a2f6-b15f8ae738fe", - "modified": "2021-01-06T18:28:40.065Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.065Z", + "created": "2021-01-13T01:50:49.096Z", "id": "relationship--ce838976-14c2-47dd-a49f-e2d7dd21c4da", - "modified": "2021-01-06T18:28:40.065Z", + "modified": "2021-01-13T01:50:49.096Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.065Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--3d275dce-26d7-488b-9446-2b5fd36c5d41", - "modified": "2021-01-06T18:28:40.065Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.065Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--8ade8edc-3484-449a-a470-6000a973ee39", - "modified": "2021-01-06T18:28:40.065Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--3a124048-6dfa-4cc2-8897-2571edeff230", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--b7fcaf70-e956-4bb2-8e13-e5dcaf5fc477", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--f2a09c56-6aff-4ec3-a2c0-f8933d9ece3c", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--ea975f03-1680-4c78-9bc5-6eacbb384bdb", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0919a2d5-8147-41bc-8147-3111cbdb8ffe", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--1872acd6-34c7-4729-ac9d-ce29d7851233", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4bece964-52bc-45dc-b736-cd7eb650a311", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.066Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--8a3307b7-5655-49f1-ba08-02da3f33b6d7", - "modified": "2021-01-06T18:28:40.066Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b2d13e57-a2c7-4ec9-ab14-33e8ee62429b", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--4403bce6-e618-46f5-b8b3-d2d506322444", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "related-to", "source_ref": "course-of-action--b2d13e57-a2c7-4ec9-ab14-33e8ee62429b", "target_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.097Z", "id": "relationship--287a5d1a-2f9c-4953-8d8b-1230dd6dd859", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.097Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7f8eb94f-912f-4366-bf54-35ef595c1962", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--51fc0882-72dc-44c3-a004-333adaa7c60d", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--7f8eb94f-912f-4366-bf54-35ef595c1962", "target_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--d22e2ceb-68b3-400d-a1ed-90d9463b4ac8", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--84c6e004-fa01-40e4-bce4-9353292e0615", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--3f5f80ff-5306-465d-8a90-8bc2715256be", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--84c6e004-fa01-40e4-bce4-9353292e0615", "target_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.067Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--5d873b1a-4efb-479c-8f43-15aa255fc777", - "modified": "2021-01-06T18:28:40.067Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7622cb35-7a27-42fe-89ce-5b61a627c041", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--13075827-96c0-4b05-ac9c-1e5c47e29b0d", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--7622cb35-7a27-42fe-89ce-5b61a627c041", "target_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--a30616e7-0a69-47b1-8032-cbc81a854db1", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--21556e47-390b-42c0-bfed-7a7056009640", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--a2f4cef2-e26d-438f-bb4b-0cecd8a2ecd0", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--21556e47-390b-42c0-bfed-7a7056009640", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--eb532f2b-c313-43cb-9cb3-e21a30b7617a", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6fe6b797-6d71-4fea-b425-e17264ffa8dc", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--56784e8c-368f-4566-b2db-f8ed09ff0482", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fe6b797-6d71-4fea-b425-e17264ffa8dc", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--bc3fac3f-6bb4-448a-acd4-3b0e41852793", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fe6b797-6d71-4fea-b425-e17264ffa8dc", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.068Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--831fb7bc-4e0e-4c0a-afb0-3c5956de44ff", - "modified": "2021-01-06T18:28:40.068Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.069Z", + "created": "2021-01-13T01:50:49.098Z", "id": "relationship--e05d0b3d-a330-4e9e-b298-285c3412b1a7", - "modified": "2021-01-06T18:28:40.069Z", + "modified": "2021-01-13T01:50:49.098Z", "relationship_type": "related-to", "source_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.069Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--a6ed154e-c3a8-4674-8123-f19b1328a334", - "modified": "2021-01-06T18:28:40.069Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.069Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--cb7b4620-a50b-4fe7-a08e-4d4b488eebce", - "modified": "2021-01-06T18:28:40.069Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "target_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.069Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--4c43d11c-c0e5-4e91-ba80-2fe89699f7b4", - "modified": "2021-01-06T18:28:40.069Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5aeee253-411e-4d42-98b6-c9fe5d56eeba", "target_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.069Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--e37524f1-b200-4e59-99bb-4c406886dfdb", - "modified": "2021-01-06T18:28:40.069Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a27798dc-8ecb-42ca-a126-669a41d0248e", "target_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.070Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--d11b8ac0-55c7-4835-aa86-aaf7c0fc67ca", - "modified": "2021-01-06T18:28:40.070Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.070Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--f950d2ea-f4d4-4bb3-bf5e-6969a30c7931", - "modified": "2021-01-06T18:28:40.070Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "target_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.070Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--ccbf1a1b-62a0-42be-83d2-d360bb45d9bf", - "modified": "2021-01-06T18:28:40.070Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.070Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--5ebd0a86-fd6b-4d16-bc22-474b89a10f26", - "modified": "2021-01-06T18:28:40.070Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c9dcbe5b-43cf-4273-a2db-cb11cabffd6c", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.070Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--704a87d8-a700-429b-80d4-439fbdd9e1fb", - "modified": "2021-01-06T18:28:40.070Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--c9dcbe5b-43cf-4273-a2db-cb11cabffd6c", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--d04a9a8a-9466-46a6-b626-e93b925dac67", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "related-to", "source_ref": "course-of-action--c9dcbe5b-43cf-4273-a2db-cb11cabffd6c", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.099Z", "id": "relationship--6179080d-2ea5-436a-bbfc-b45816dd1e06", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.099Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--77d8c64f-2a2e-4f93-92e9-20434ad55463", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--d4da0cbd-ead6-4de3-bdb4-1f09da97ac8a", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--77d8c64f-2a2e-4f93-92e9-20434ad55463", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--88f9d1b2-0634-4f29-8b33-697b40fcf8e1", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6376c6a7-c636-4f60-a419-bca578d426ee", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--94655d14-5df5-4674-8afa-33d3ee61b9e0", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--409acd51-d106-4632-993f-8dd0e773871d", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--6a20b25a-022c-4cc9-a67b-addeb8941893", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--409acd51-d106-4632-993f-8dd0e773871d", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.071Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--bd214220-ad4b-4b5b-9816-2c82b0f3f240", - "modified": "2021-01-06T18:28:40.071Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--409acd51-d106-4632-993f-8dd0e773871d", "target_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.072Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--2550a161-9558-4e3f-803f-fc503b08149b", - "modified": "2021-01-06T18:28:40.072Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.072Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--0f28f630-55c1-4643-8f29-ef43aa1f45e3", - "modified": "2021-01-06T18:28:40.072Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.072Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--c1ef6e65-b4d9-44a7-bef8-6fcafd16cc75", - "modified": "2021-01-06T18:28:40.072Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.072Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--cbf2aaa9-577a-4431-a14a-929f4d504dfe", - "modified": "2021-01-06T18:28:40.072Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.072Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--ee2f74d8-1398-498b-96f6-c6a0e7bf60ab", - "modified": "2021-01-06T18:28:40.072Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "related-to", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.073Z", + "created": "2021-01-13T01:50:49.100Z", "id": "relationship--549b3477-e786-4e46-aeea-b5408cead6c9", - "modified": "2021-01-06T18:28:40.073Z", + "modified": "2021-01-13T01:50:49.100Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--002c3dd8-4585-4dee-b961-502adbfb30f2", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.073Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--ac04ffc7-3a5a-4bc4-be28-bf8667f0046f", - "modified": "2021-01-06T18:28:40.073Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--002c3dd8-4585-4dee-b961-502adbfb30f2", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.073Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--d346edef-9513-4822-8494-394cdf69ffe3", - "modified": "2021-01-06T18:28:40.073Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9038246a-25b4-40f4-97bd-b6ff0ce340f0", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.073Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--57dc3836-ecca-4f26-a179-78bd6996ea5b", - "modified": "2021-01-06T18:28:40.073Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--022fdb91-cb30-4222-9745-d30fa422bf9d", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.073Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--d20cf6e5-322b-46eb-b373-d0b0c25f0b9e", - "modified": "2021-01-06T18:28:40.073Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--022fdb91-cb30-4222-9745-d30fa422bf9d", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--d0dd141a-6d93-4f9d-a06f-8ab2933b1be9", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--d9bf8e9c-7d59-4fc5-bddc-67ac831d374f", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--145ddea9-ba1a-4300-8627-8da5eec74c16", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--b25517fd-588f-4fac-9c4d-090b55579320", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--c97612bf-8967-4285-bb60-182c96c1d0fc", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--ea073432-3c36-4437-9287-6777c9f57544", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.074Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--15971d38-fb8d-47b6-983f-ce9373d4b564", - "modified": "2021-01-06T18:28:40.074Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6694b5f9-8ddb-4291-93ee-56e2055c31fa", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.101Z", "id": "relationship--bc284de9-0e8d-4b27-916e-017a6d385dfa", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.101Z", "relationship_type": "related-to", "source_ref": "course-of-action--6694b5f9-8ddb-4291-93ee-56e2055c31fa", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--6204e8c6-717e-4d3b-aba4-6f67d4be535d", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--19534617-ac22-42e9-8233-f39670ee587a", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--290f434b-bcb5-4595-bb7d-ec631d9f2ad1", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--19534617-ac22-42e9-8233-f39670ee587a", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--26394a88-f9f8-4a19-9888-1ce692482ecf", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--28089846-e5ad-4f2d-879b-30acf179b4dd", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--e7c9d46c-8785-4f67-99c5-d54e2fca32fa", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1e094c48-4d86-434d-8ead-46bc4e731802", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--cfd921a5-21fc-4dc2-87a4-fd150943a635", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--1e094c48-4d86-434d-8ead-46bc4e731802", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--73595674-85e6-411b-b444-5b2ec6d5811e", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--1e094c48-4d86-434d-8ead-46bc4e731802", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.075Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--d8d0eacb-fa4a-4828-b380-14438c87f057", - "modified": "2021-01-06T18:28:40.075Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--91bf0f5b-2e26-44e0-9b2e-8bb0cf608811", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--be9e062f-5b90-4a35-90bb-220ac264d61d", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--47af5568-6c03-49d6-9a32-437e118112a7", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--61f46b49-9d40-4d2d-9b94-f84f47b6119a", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--45607286-2b65-400a-bd06-6e61f2acbe7e", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.102Z", "id": "relationship--11cd9576-19dc-4d9e-9016-81d8067e416e", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.102Z", "relationship_type": "related-to", "source_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--66e1e6c9-7ee9-4f77-986a-fe6e3d5b5913", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e20639c2-2cc4-4cf3-8250-98cd0255e9e0", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--5efe006f-ac79-4e57-aa28-ce28e8b29152", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2b3de867-f897-44f5-8501-5f8bfd1cb153", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--b653a8c3-00a9-433f-8060-2b3ebde1e652", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c4c1ef74-0274-4fc3-bf55-472d8ecd9b84", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.076Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--cfb17a7f-bc7a-4bc8-9f61-6986dc1f104c", - "modified": "2021-01-06T18:28:40.076Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b11862d8-781c-44b8-8ee3-7c2b90cab787", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--3922508a-c3f6-4ab6-af39-5b1f1ed526be", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--52fa324b-526f-43cf-a3fd-a4bb4627ff49", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--f5c49e96-ad30-41b3-a070-146685754897", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--8379ee49-b529-4d27-ab73-9f3ebb0d231c", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--e10ff431-73b3-4c22-832f-3a5c0d7413cc", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--228600ae-d70f-40fd-bca1-e5aea234f149", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--3cf283e4-d546-46e2-81c5-69440ef35be5", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--9476ff47-eec2-461b-be02-7578d131a3fc", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9f503d13-bba2-46bc-a85b-dab34674e730", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.103Z", "id": "relationship--dcd7f1a3-9691-4b55-b4d6-c6e02964f629", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.103Z", "relationship_type": "related-to", "source_ref": "course-of-action--9f503d13-bba2-46bc-a85b-dab34674e730", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.077Z", + "created": "2021-01-13T01:50:49.104Z", "id": "relationship--995eada0-5215-456f-8d01-6488e879dd12", - "modified": "2021-01-06T18:28:40.077Z", + "modified": "2021-01-13T01:50:49.104Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5b01a93e-73a4-4a47-8ff8-597ad64d936c", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.104Z", "id": "relationship--dc6042ec-8d06-4904-b031-267405d4ad83", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.104Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b01a93e-73a4-4a47-8ff8-597ad64d936c", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.104Z", "id": "relationship--b5fb161c-1a76-487f-8a39-0ea8057804a2", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.104Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--572003a2-fb7d-430d-a40d-bffd2ad16ec6", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.104Z", "id": "relationship--cdeb4181-06ec-4a0f-bff2-9542d16fb56a", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.104Z", "relationship_type": "related-to", "source_ref": "course-of-action--572003a2-fb7d-430d-a40d-bffd2ad16ec6", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--7a3bf6fb-70cf-46f1-ab53-d91a120cf4c7", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--572003a2-fb7d-430d-a40d-bffd2ad16ec6", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--39abf543-a56d-49dd-aa6e-598be18e57cc", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6e6ef6dc-9b98-4795-9cd9-f98477f35ef1", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--d0c43a09-b199-4d5b-8c73-67212644ddb6", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c32b65fc-d9df-4d92-a071-6064b2839d9d", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--c2730783-e26f-40b4-bc52-d836044944f7", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9469526d-bc32-42dc-883f-e570944e96ad", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--d1ddca51-40ab-47c7-9f96-7dde7eab8d6c", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--9469526d-bc32-42dc-883f-e570944e96ad", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.078Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--3ec2f7e7-4d60-4c13-9f8b-0234a9ac133d", - "modified": "2021-01-06T18:28:40.078Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--9469526d-bc32-42dc-883f-e570944e96ad", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--47ff40a9-543d-4781-a7d5-79a32ef8d394", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--53f1cf65-5d8d-482f-b7f9-4c9ce837bdcc", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--2838cedf-d090-448b-8fc8-fda4faef0598", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--53f1cf65-5d8d-482f-b7f9-4c9ce837bdcc", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--6a1e3c77-b2d7-4660-bc96-c5b442cecbe7", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--53f1cf65-5d8d-482f-b7f9-4c9ce837bdcc", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--1144fcf6-c510-41ea-92d3-fa0f84894cfa", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--cb6df34e-9660-44a6-a9ba-dda5e06d770d", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.079Z", + "created": "2021-01-13T01:50:49.105Z", "id": "relationship--40194fad-54db-4bc9-8626-dfa34c597590", - "modified": "2021-01-06T18:28:40.079Z", + "modified": "2021-01-13T01:50:49.105Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.080Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--90f05fed-be37-46da-a604-0bd7e0d0cec1", - "modified": "2021-01-06T18:28:40.080Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.080Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--a2151aa8-1b81-44e6-b69f-08374bf9830c", - "modified": "2021-01-06T18:28:40.080Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.080Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--ac49fc4a-d9b0-4148-afdf-4e84fba42454", - "modified": "2021-01-06T18:28:40.080Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.080Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--01f584dd-4f3c-42dd-9e3a-315288c3f131", - "modified": "2021-01-06T18:28:40.080Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.080Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--e2ea7be7-23ed-4807-93e1-4ddbcf259452", - "modified": "2021-01-06T18:28:40.080Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.081Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--2857f199-40cf-45d2-85e8-7242b825764a", - "modified": "2021-01-06T18:28:40.081Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--91420ebe-61f8-42f5-854d-c404684174ad", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.081Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--678b88b6-80dc-4e85-82aa-052052d2096c", - "modified": "2021-01-06T18:28:40.081Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3a40d82d-af8b-4650-9d9f-db8125cb11ae", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.081Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--15775f54-70ec-4a46-ab66-41c6894071e3", - "modified": "2021-01-06T18:28:40.081Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--02903824-ce10-4ba1-868e-f710346f7403", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.081Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--e5fb3624-6e49-452a-8581-e6fdc1ea45cd", - "modified": "2021-01-06T18:28:40.081Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4037cdca-578c-4970-b20c-3ea5d04010b0", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.081Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--54c357b0-4a33-4847-a331-8bf69dc5fce4", - "modified": "2021-01-06T18:28:40.081Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "related-to", "source_ref": "course-of-action--4037cdca-578c-4970-b20c-3ea5d04010b0", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.082Z", + "created": "2021-01-13T01:50:49.106Z", "id": "relationship--8ac51f01-324e-4472-baa7-2d8768baa5fa", - "modified": "2021-01-06T18:28:40.082Z", + "modified": "2021-01-13T01:50:49.106Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3428a7fa-a6b7-4421-a5f9-27bc1436be15", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.082Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--c49d4188-709a-4e96-97db-336f64a2b5da", - "modified": "2021-01-06T18:28:40.082Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5da453b3-56af-4fa2-8a72-967a529b9b70", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.082Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--4868117e-0113-4db3-ba2c-a7d8868849d1", - "modified": "2021-01-06T18:28:40.082Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--5da453b3-56af-4fa2-8a72-967a529b9b70", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.082Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--28d511df-78c9-4a9e-96d7-5608f8e38ca9", - "modified": "2021-01-06T18:28:40.082Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--5da453b3-56af-4fa2-8a72-967a529b9b70", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.082Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--2450fadf-6a44-4333-958a-8de82a9c8362", - "modified": "2021-01-06T18:28:40.082Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--5da453b3-56af-4fa2-8a72-967a529b9b70", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.083Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--e5a9f684-509d-4eaa-859a-f31bd4607926", - "modified": "2021-01-06T18:28:40.083Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--3fb2b16f-e973-49d8-ae88-de09f98f32f8", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.083Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--8f607a4b-1d75-4dc8-b9f0-e8beab90c6e6", - "modified": "2021-01-06T18:28:40.083Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--1a8ce5e3-1c98-4351-94e8-1b5f7c90fce2", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.083Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--6dfeb373-ae87-467e-9cd9-031958d16a11", - "modified": "2021-01-06T18:28:40.083Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.083Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--eecb6de0-5ce2-46e8-a555-a42ce433e7f0", - "modified": "2021-01-06T18:28:40.083Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--9c81c1a6-2c42-427f-9afb-386283d75b94", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--2f7839fa-f1c0-44d5-ada1-14b26ba7f666", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.107Z", "id": "relationship--17e5eada-8aa6-428e-a76d-0f6e4a61d82c", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.107Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--9ec7e3a9-6a3c-4b08-886c-2da041168b4c", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--17187ceb-95dd-4b0d-9a8f-81496c6e5852", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.084Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--0a2eb4c8-6c8a-408e-a5ea-563bee48c14b", - "modified": "2021-01-06T18:28:40.084Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "related-to", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--c7371208-c88f-4a38-94a3-5fb15c5dc22d", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8badeeff-a006-43f0-90ad-3014bb221e95", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--5aa36a4b-1c79-4776-9b2f-eaa606c06e16", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "related-to", "source_ref": "course-of-action--8badeeff-a006-43f0-90ad-3014bb221e95", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--634af9ea-d4b6-482e-8cfa-1e107773ed93", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--12815e73-9ba8-4967-8d04-e3d758fcbb5c", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--03bfa157-4bd7-4b3d-8e31-4573553fffa2", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ec4e40d-73e5-42f5-a9fe-b54972dfe798", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--c970a922-b6aa-49da-becd-9577dbdb1229", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "related-to", "source_ref": "course-of-action--9ec4e40d-73e5-42f5-a9fe-b54972dfe798", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--f8a7627a-f22d-4158-9466-60eb0ce19b73", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--08792912-31bc-49d2-b501-6076707f0f79", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.085Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--db9e4e47-ad58-4c24-bfcd-14f6dd96c40a", - "modified": "2021-01-06T18:28:40.085Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--552a36ef-d0ff-4fbd-a47f-ed01a9a1257e", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.086Z", + "created": "2021-01-13T01:50:49.108Z", "id": "relationship--62e55daa-2513-40e1-aa65-e11cf792305a", - "modified": "2021-01-06T18:28:40.086Z", + "modified": "2021-01-13T01:50:49.108Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d810a854-8ed8-4c60-b625-d3227790ee9b", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.086Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--f1030a42-9fd0-4b3b-ad0d-2c30df459fd7", - "modified": "2021-01-06T18:28:40.086Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "related-to", "source_ref": "course-of-action--d810a854-8ed8-4c60-b625-d3227790ee9b", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.086Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--8c04664b-a73a-4496-a0f1-256f74acfcb9", - "modified": "2021-01-06T18:28:40.086Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--41657a3e-db8f-44c7-96ff-0ea81c99f811", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.086Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--26d03fc6-3ede-40f1-835e-bc386ce03956", - "modified": "2021-01-06T18:28:40.086Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ddc2f6cb-5db0-417c-8e4e-0f49a9564e94", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.086Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--a8c4f951-b231-41e6-b274-4ac30dfbc5f8", - "modified": "2021-01-06T18:28:40.086Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--05673453-e67a-46af-abcd-aec1f77b225f", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.087Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--c9e9810d-1cca-49b2-b1b6-7c30d1cbe912", - "modified": "2021-01-06T18:28:40.087Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ff3d9cde-dd82-41b1-8746-87a26f1f091b", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.087Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--440cab56-239c-44b5-96e0-ee723b9f60b7", - "modified": "2021-01-06T18:28:40.087Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6f912a54-b3f4-4324-acba-784e11a9e250", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.087Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--a87ed993-bc07-47db-8d1b-1a3449f2a4b6", - "modified": "2021-01-06T18:28:40.087Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "related-to", "source_ref": "course-of-action--6f912a54-b3f4-4324-acba-784e11a9e250", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.087Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--3454bf8a-27e2-44d0-b541-eb3e551ca547", - "modified": "2021-01-06T18:28:40.087Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--049c0297-2016-4d8e-ba41-eb96ed00564c", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.088Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--731770a5-bd42-4747-93e8-22714eff2462", - "modified": "2021-01-06T18:28:40.088Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "related-to", "source_ref": "course-of-action--049c0297-2016-4d8e-ba41-eb96ed00564c", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.088Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--df7bcc5f-7803-4866-b762-167578c912cf", - "modified": "2021-01-06T18:28:40.088Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "related-to", "source_ref": "course-of-action--049c0297-2016-4d8e-ba41-eb96ed00564c", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.088Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--ae062066-22a4-40ec-99c7-2c594f8529d2", - "modified": "2021-01-06T18:28:40.088Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "related-to", "source_ref": "course-of-action--049c0297-2016-4d8e-ba41-eb96ed00564c", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.088Z", + "created": "2021-01-13T01:50:49.109Z", "id": "relationship--36d26c16-43a2-4080-b933-8e3915f534b1", - "modified": "2021-01-06T18:28:40.088Z", + "modified": "2021-01-13T01:50:49.109Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a017d46f-b676-491b-bc8c-03696b24ce0a", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.089Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--cc7834e3-65f8-4836-80dd-b9836560a078", - "modified": "2021-01-06T18:28:40.089Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--a017d46f-b676-491b-bc8c-03696b24ce0a", "target_ref": "course-of-action--b462cc38-be11-42c8-b1e5-ce79337fa7e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.089Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--caaeba40-ba28-4554-975b-a3202f6468f0", - "modified": "2021-01-06T18:28:40.089Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--a017d46f-b676-491b-bc8c-03696b24ce0a", "target_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.089Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--92ce1a39-468c-4ebb-9819-20c028528bcb", - "modified": "2021-01-06T18:28:40.089Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--a017d46f-b676-491b-bc8c-03696b24ce0a", "target_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.090Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--14678705-835d-4939-b897-6d3c5546369c", - "modified": "2021-01-06T18:28:40.090Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.090Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--b1d775de-3e9d-48c7-9852-8bb9eca95857", - "modified": "2021-01-06T18:28:40.090Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.090Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--54cf473b-a41f-4234-ae2f-aeeff39d843d", - "modified": "2021-01-06T18:28:40.090Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.090Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--bd658127-4296-4533-a6a5-9e06d39ccaae", - "modified": "2021-01-06T18:28:40.090Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.091Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--c18cacb9-d772-49ff-9e14-9d7535d72351", - "modified": "2021-01-06T18:28:40.091Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.091Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--01010f13-cdc2-452a-92f3-57f590590791", - "modified": "2021-01-06T18:28:40.091Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.091Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--4cd7c1e4-c621-4546-8f52-a72ace35ec07", - "modified": "2021-01-06T18:28:40.091Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4dd648ae-58f8-477b-9972-4a838a1b3543", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.091Z", + "created": "2021-01-13T01:50:49.110Z", "id": "relationship--a33ee6ec-2830-42ac-b78f-73e1347148a5", - "modified": "2021-01-06T18:28:40.091Z", + "modified": "2021-01-13T01:50:49.110Z", "relationship_type": "related-to", "source_ref": "course-of-action--4dd648ae-58f8-477b-9972-4a838a1b3543", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.092Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--ecf0f575-3a06-4d59-960c-8c615c53eca0", - "modified": "2021-01-06T18:28:40.092Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--4dd648ae-58f8-477b-9972-4a838a1b3543", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.092Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--5de79714-3e86-4fab-8c08-858334b071a9", - "modified": "2021-01-06T18:28:40.092Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--4dd648ae-58f8-477b-9972-4a838a1b3543", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.092Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--d33b261b-289b-4e41-9305-83da5f522d44", - "modified": "2021-01-06T18:28:40.092Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0c5d4e2a-0ff7-4b8e-bd78-d6879f599047", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.092Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--5c42268b-13aa-48c2-8243-24d589796f0f", - "modified": "2021-01-06T18:28:40.092Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.093Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--4a3abc1d-0cea-429b-8531-4b8d1ff0ba9e", - "modified": "2021-01-06T18:28:40.093Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.093Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--16ede43b-a521-4fde-8a01-55eaf662f261", - "modified": "2021-01-06T18:28:40.093Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.093Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--4027c8c1-1da0-4837-9602-2be3f7b75e78", - "modified": "2021-01-06T18:28:40.093Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.093Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--f0b27071-b13b-4270-b11a-01fd89873d1c", - "modified": "2021-01-06T18:28:40.093Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--10621ee5-2a9c-436b-8859-2a4eb1076711", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.094Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--200bcd22-bbbe-4b96-9eaf-2b9c70cbb92f", - "modified": "2021-01-06T18:28:40.094Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5f81cdb2-7b52-4dd5-8b1c-b042098253d8", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.094Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--57bbe006-f22f-4b42-9211-0a6cf16b50b6", - "modified": "2021-01-06T18:28:40.094Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.094Z", + "created": "2021-01-13T01:50:49.111Z", "id": "relationship--fb197ef7-e365-46d0-bb75-fd33fbd3cb6f", - "modified": "2021-01-06T18:28:40.094Z", + "modified": "2021-01-13T01:50:49.111Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.094Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--75fdba2e-6a09-416e-a99d-68f049a11a72", - "modified": "2021-01-06T18:28:40.094Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.094Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--f70d2172-11bb-4bbd-a0aa-d5f9952f16b2", - "modified": "2021-01-06T18:28:40.094Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.095Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--ca4b6cb1-d9a2-48a3-a07b-403f7b905962", - "modified": "2021-01-06T18:28:40.095Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.095Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--4ece551e-f43a-4641-89b0-0956af53b716", - "modified": "2021-01-06T18:28:40.095Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.095Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--e957cc54-7aa1-4001-a8e7-546333f8ae85", - "modified": "2021-01-06T18:28:40.095Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--946b496f-115a-4a6a-80a1-9e29a706425e", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.095Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--75392772-b133-4255-988d-0d8d396bf616", - "modified": "2021-01-06T18:28:40.095Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--946b496f-115a-4a6a-80a1-9e29a706425e", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.095Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--6e8f04a8-5d7b-46bb-86b0-fc324c7b88f9", - "modified": "2021-01-06T18:28:40.095Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0f56964d-4ca7-4391-937e-b4bc4410fa5a", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.096Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--2c209f0a-a468-4123-946f-2b8e020bfd18", - "modified": "2021-01-06T18:28:40.096Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7b312d45-467f-43bb-aae9-07e6cea4b9dd", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.096Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--e1f660d9-0164-4e10-bfa8-9c8cec4d7d6c", - "modified": "2021-01-06T18:28:40.096Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9d64efbc-b6ee-4f21-a0a8-fcd676148677", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.096Z", + "created": "2021-01-13T01:50:49.112Z", "id": "relationship--a196a340-4fb1-427d-96e5-3c765a37adeb", - "modified": "2021-01-06T18:28:40.096Z", + "modified": "2021-01-13T01:50:49.112Z", "relationship_type": "related-to", "source_ref": "course-of-action--9d64efbc-b6ee-4f21-a0a8-fcd676148677", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.096Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--7142032d-2e60-4283-a871-72d387e2f7af", - "modified": "2021-01-06T18:28:40.096Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--50d928ea-d064-497c-8486-858ec1b0af63", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.097Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--c92e6fff-262c-4330-a959-5c1abf009fee", - "modified": "2021-01-06T18:28:40.097Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--50d928ea-d064-497c-8486-858ec1b0af63", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.097Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--75da3280-f699-420b-8fa3-caf7d5514e96", - "modified": "2021-01-06T18:28:40.097Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--13dfee8d-d305-4cce-b38b-bd6839f74349", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.097Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--ccac6901-bb15-4f31-ada2-441f3bc2dde4", - "modified": "2021-01-06T18:28:40.097Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--762aae47-0202-4079-93f6-b111037ef634", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.097Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--b1e89e38-61c6-4794-8191-752561eb30b6", - "modified": "2021-01-06T18:28:40.097Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.098Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--9431964e-9e5f-43ca-b486-5e4ddb4a5858", - "modified": "2021-01-06T18:28:40.098Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.098Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--99a7a6d7-4a4d-4d8b-a810-abaa9b45d09f", - "modified": "2021-01-06T18:28:40.098Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.098Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--03817b9e-2b6d-4667-8c6c-e98e116c77c0", - "modified": "2021-01-06T18:28:40.098Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.098Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--63d72eb6-3633-4846-a90d-402c3ed70420", - "modified": "2021-01-06T18:28:40.098Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.099Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--c8346a8d-3c28-4202-a950-c226ced4a2b8", - "modified": "2021-01-06T18:28:40.099Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.099Z", + "created": "2021-01-13T01:50:49.113Z", "id": "relationship--7596834a-9bcc-4895-841c-04abea2424f8", - "modified": "2021-01-06T18:28:40.099Z", + "modified": "2021-01-13T01:50:49.113Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.099Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--720c5575-bc96-4089-8006-5520e29a0135", - "modified": "2021-01-06T18:28:40.099Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.100Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--213fef5d-8d54-43e0-b5e6-287081294658", - "modified": "2021-01-06T18:28:40.100Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.100Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--a6e48490-8617-45ae-bdf6-0babad969a06", - "modified": "2021-01-06T18:28:40.100Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.100Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--df8e9e56-5b02-4653-a936-2e1f8a45ca32", - "modified": "2021-01-06T18:28:40.100Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.101Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--134b868c-558e-468c-981c-e8685ebc7310", - "modified": "2021-01-06T18:28:40.101Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.101Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--52835788-4aec-4a8b-ad1c-10111e65d6f8", - "modified": "2021-01-06T18:28:40.101Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.101Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--17776266-3b95-40d0-9124-eefca90daca1", - "modified": "2021-01-06T18:28:40.101Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.101Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--b2859e19-eaf2-4002-b444-711669999df1", - "modified": "2021-01-06T18:28:40.101Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f2c6f189-fa2c-4bea-ba8b-6b1e69689418", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.102Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--0c937c2c-1abd-4b5b-ae3e-3f2daafe4bd3", - "modified": "2021-01-06T18:28:40.102Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--f2c6f189-fa2c-4bea-ba8b-6b1e69689418", "target_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.102Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--e21c9799-e37c-4b1e-a2a9-15dc23a638bc", - "modified": "2021-01-06T18:28:40.102Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--75974a66-296e-4a63-9e93-aef263c6c6f9", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.102Z", + "created": "2021-01-13T01:50:49.114Z", "id": "relationship--5b2553fb-3ca1-401f-9620-46db867680a3", - "modified": "2021-01-06T18:28:40.102Z", + "modified": "2021-01-13T01:50:49.114Z", "relationship_type": "related-to", "source_ref": "course-of-action--75974a66-296e-4a63-9e93-aef263c6c6f9", "target_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.102Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--32853422-bb0a-4aac-9f50-6dff50ac8fa4", - "modified": "2021-01-06T18:28:40.102Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d0b9fc02-9a0c-4925-a985-a21c70c83e7b", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--7cc753ac-ef73-4ff0-b795-eef09964a909", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--aacc7f93-0d48-4415-9d55-2da09c086989", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--c49f9974-e70a-46c9-879e-7c5dcaf3e8f2", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "related-to", "source_ref": "course-of-action--aacc7f93-0d48-4415-9d55-2da09c086989", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--020a46c9-f1bf-4990-a2e2-c8012b4d05df", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "related-to", "source_ref": "course-of-action--aacc7f93-0d48-4415-9d55-2da09c086989", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--cd6501d1-1e6e-42ee-8f0e-2602528b62f2", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "related-to", "source_ref": "course-of-action--aacc7f93-0d48-4415-9d55-2da09c086989", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--7c39ffc7-2654-44d4-8e8e-68ea41e69cd0", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e5fbf0fc-b9ac-48ba-ab35-a7a8a1d5daa0", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--c6945967-d1e4-4056-b033-f0798423e493", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bbee9781-683c-423a-aad9-8221272fbe44", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--c916269f-dbe5-4692-a24d-ec8066afd424", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c05c7214-bac2-4b9e-aafd-342092801f22", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.103Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--26fbd8f0-4e2f-4cb2-878d-16cbf7f1b038", - "modified": "2021-01-06T18:28:40.103Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a9dafc97-eed3-451e-8ba9-71569367bad3", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--2ca20741-f1a3-4c54-be8a-27bc0b84eb04", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--24d5a37f-82e5-4d03-bc19-a550ac6d0e86", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--63fc5985-049d-4537-8af6-79a5e7a0d0c9", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fbf4c403-e9b2-47f3-8f6f-90b2685aecc8", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.115Z", "id": "relationship--559264e0-bfdf-4317-894f-968043f77ada", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.115Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--edb7b01b-dff2-4d90-8f3c-cf5a8aace688", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--0eb0d0ef-7cc4-4e72-87ff-cd3b8bfd9a58", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0cd038d4-1b68-41aa-84cd-51877f557fd1", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--9ccb5af4-46df-40ee-b3ba-adc372cecacb", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--233a6506-bd30-4b9d-9cbc-93b74771736c", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--2b23bedc-52ae-4b75-9af4-16d06270d8ae", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5099f587-6f6d-45ad-8c4d-762c22831a3b", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.104Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--0ce500c6-75c2-4b45-9243-018f7dd0eb17", - "modified": "2021-01-06T18:28:40.104Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f91554b0-7851-4aee-9944-3c73f7d3edc0", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--6662b115-cb6e-414c-b8d7-11d6d5005ea1", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--19525697-f245-408d-ae07-d25b0e4a6e6b", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--c765873a-02e2-4638-941b-51c77821c196", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--6daaa11c-d6dd-44b5-bbb4-6ea9a29afacd", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--e74f1ccd-0c96-42a3-9c4a-61fe397c22f1", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.105Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--0b62ee6d-52ed-43c6-bcd3-ce20e858872a", - "modified": "2021-01-06T18:28:40.105Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.106Z", + "created": "2021-01-13T01:50:49.116Z", "id": "relationship--8b013020-516d-4ebe-99fa-4e2ce13526f6", - "modified": "2021-01-06T18:28:40.106Z", + "modified": "2021-01-13T01:50:49.116Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.106Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--6334940c-a858-4cd8-bd16-2b774fdfe693", - "modified": "2021-01-06T18:28:40.106Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.106Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--7b8f258f-f420-43cc-ba9b-b2e9e11c4314", - "modified": "2021-01-06T18:28:40.106Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.106Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--f0642d24-0561-4e50-8aa5-fca7ff0e783b", - "modified": "2021-01-06T18:28:40.106Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.106Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--b105d1e4-84c7-424a-a2e5-1bfece3e7ac0", - "modified": "2021-01-06T18:28:40.106Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.107Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--4c1bddd0-533a-4849-870d-1bb7e0d25ec4", - "modified": "2021-01-06T18:28:40.107Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.107Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--22ba2772-46ad-4111-bd3f-5340ff6d3d9b", - "modified": "2021-01-06T18:28:40.107Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.107Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--ba50cf96-f7af-4b78-952b-5866b7aac67c", - "modified": "2021-01-06T18:28:40.107Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.107Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--cd9099d0-3af7-4339-a941-1a657800ab4b", - "modified": "2021-01-06T18:28:40.107Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5e9977d6-53ac-439f-a21c-76a00d712c15", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.108Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--f2e3fb1b-eee0-4be4-9e30-1b782cee6bcd", - "modified": "2021-01-06T18:28:40.108Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e9977d6-53ac-439f-a21c-76a00d712c15", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.108Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--96b38eb1-4fb8-40c9-8517-4255234ff21c", - "modified": "2021-01-06T18:28:40.108Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e9977d6-53ac-439f-a21c-76a00d712c15", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.108Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--c5cb7886-0c1f-4c64-b9da-bf4136a4269d", - "modified": "2021-01-06T18:28:40.108Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e9977d6-53ac-439f-a21c-76a00d712c15", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.108Z", + "created": "2021-01-13T01:50:49.117Z", "id": "relationship--0d9d4a8e-2cb3-4c12-acd3-2a944ee31275", - "modified": "2021-01-06T18:28:40.108Z", + "modified": "2021-01-13T01:50:49.117Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c349f360-db32-4db6-b77a-0ebad1906607", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--178f99f1-8979-4c27-9097-00dcc8266320", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--c349f360-db32-4db6-b77a-0ebad1906607", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--d8b7a4fb-0bf0-46d9-9abe-ef3ac1660f61", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc3c98fd-8558-4eb7-861e-dc7fafb39b77", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--beecb5df-c408-4ef5-9481-b87a271bd2ad", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc3c98fd-8558-4eb7-861e-dc7fafb39b77", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--00a96087-36b3-47dc-bc2a-e5c8492c35a3", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1d038194-a829-47b7-842c-3590e3f0f4a0", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--09b7867a-fcd2-4244-a9a4-6b9d1e03c1ca", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d038194-a829-47b7-842c-3590e3f0f4a0", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.109Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--11953dc0-a463-48e9-9b8b-39dec9dac78c", - "modified": "2021-01-06T18:28:40.109Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c09c3db4-d872-4561-89ad-f1c32a739539", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--5cabe0a4-ebdb-4e47-af15-d98c5a7622c6", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--c09c3db4-d872-4561-89ad-f1c32a739539", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--7148d2ba-da9e-434d-94eb-8dd283724683", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f0b678c3-9bdc-4730-bedd-cedc89d2f50e", "target_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--dc858dd8-c6b1-486f-a06f-b1fc28e8eebb", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a21fda68-3c14-4884-bc94-46e31063b564", "target_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--27965eb4-5588-4ef3-864c-d528d1f6f894", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--a21fda68-3c14-4884-bc94-46e31063b564", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.118Z", "id": "relationship--895ab6e8-04ee-4fac-902f-ff2d13b6d355", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.118Z", "relationship_type": "related-to", "source_ref": "course-of-action--b462cc38-be11-42c8-b1e5-ce79337fa7e0", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--12f2166e-e8a4-411f-a656-2f071c4f8cfd", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--b462cc38-be11-42c8-b1e5-ce79337fa7e0", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--2a276884-1436-42c2-84d4-90b99c10d6fb", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", "target_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.110Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--b7fc4f6e-693c-4c24-b265-7fac94122ac1", - "modified": "2021-01-06T18:28:40.110Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--67b8f6da-bb18-49cc-88c5-7419537026ab", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--e4337733-a22f-4dd7-a33d-f9f6c12ec1ca", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--af4bbdd3-a981-43af-b1ba-ea1ddf763378", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "target_ref": "course-of-action--2164114d-26a4-4788-be41-6b1b5bfd0ed7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--66003a8c-7d49-4a84-9a18-f233e2c77075", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "related-to", "source_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--33cb5dab-f55d-4e4d-9272-2267b00f6f56", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--06f53149-4e00-4202-8451-df49045320c3", "target_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.119Z", "id": "relationship--1841b3dd-f01f-42df-a9b9-975f7b0abfe4", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.119Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8e4d4b79-9b5a-45cc-bfe0-1c876335748e", "target_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--45e0c282-cbb3-4346-99c3-f9c855bb0af8", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.111Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--3e5aa97a-7fc5-47cf-9716-bc27d51e93d1", - "modified": "2021-01-06T18:28:40.111Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--c56bd410-66e8-4cc2-b5ad-9fc0e54a040a", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--82caafdd-c7d4-4060-a14d-8d3ad5bad568", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--8f95ea98-f120-4500-a4ce-36fe9711feb6", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--82caafdd-c7d4-4060-a14d-8d3ad5bad568", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--45b3e73b-1f7f-4f2e-b4c0-bba458036b19", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e48a587f-f370-4c3d-960b-2d6a964e3f1a", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--8a424590-935c-4363-9bb8-e46f136ca5f0", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--3b001151-493c-4b6e-ae7c-464537481b4b", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--5f623fee-8d10-48db-a8b6-d827e5665270", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--b795cf38-00cc-4a7e-b887-0f379005e2cd", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--bcce1e27-ba53-469e-b354-5950488dd976", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--dc05c6a3-bc53-460b-8830-9aef2b9be0d4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.112Z", + "created": "2021-01-13T01:50:49.120Z", "id": "relationship--b3b1cd94-188a-45e3-b4d7-e5ffa60a27c8", - "modified": "2021-01-06T18:28:40.112Z", + "modified": "2021-01-13T01:50:49.120Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--8c08ddcf-2df5-4570-922a-0c6c5ce4f4c8", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--91bd7768-6811-40d7-b9d5-19cfeb578bd2", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--55fa8882-989c-4211-8deb-775efde59523", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--d82735d4-6c5b-45bb-b079-661be4efa913", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--351fb22f-4659-4fdf-a1d7-3df183a40417", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--c9742c1c-f466-4996-9906-a2be40929204", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--3dc9c3e8-6830-4f73-9089-2f595ac48a83", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.113Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--5e39f0b0-9c5b-49a0-950c-8f9f443078ce", - "modified": "2021-01-06T18:28:40.113Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--877b1314-35f6-4725-993b-0c3315527cd4", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--fca96143-4708-4cc0-bd2e-d9664a743f58", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--be4311c2-6c83-45df-b752-12e743120259", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.121Z", "id": "relationship--25a63d82-ea28-4794-bc77-590b7b05bd43", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.121Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--7852b61d-ca10-44b8-8b9f-46c66203eb26", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--a20a62a8-1d18-4310-97c8-8408f7c7c9c0", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--3e456de0-e03d-4cbc-b72f-fe0a8f7964ca", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.114Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--57a4d58b-6a69-4dc7-8918-8fbf8f3dab73", - "modified": "2021-01-06T18:28:40.114Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ba80ce0-5bb0-4298-bc8c-59df553480eb", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--bddc7ca6-02b4-4942-996d-2446a72d7fac", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4dedcd21-7ec3-4fbb-b434-44a73f44af13", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--caee09a7-ffe3-4721-bc9e-b8133743e1d9", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a6185d8b-9284-4655-8f8e-26045d6651d4", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--0da6b7ba-982c-4547-85e5-b893f7b71883", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3b3bb4b8-e5fc-475a-8ccd-c9b761402a8b", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--0615d775-308f-4ce0-a88a-08a96e4f95cb", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f8a44270-1a3e-4fe6-97db-a89fa46fb828", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--3cb26022-fcd3-4fd0-b006-87e956dd0827", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0e0fa2f6-ec1a-4acb-b5cd-13c86463046e", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--747f073c-3b68-496d-884e-36885523e058", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--df4f207c-cde3-4ac9-84f8-73a77980afc3", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--3863cfd2-6bc3-4788-bbae-3b4c2b4555d5", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--06a2c737-cf3e-4443-a20d-afc11b506413", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.115Z", + "created": "2021-01-13T01:50:49.122Z", "id": "relationship--a645ddd7-ac4c-46c1-9669-ce8ca518ac77", - "modified": "2021-01-06T18:28:40.115Z", + "modified": "2021-01-13T01:50:49.122Z", "relationship_type": "related-to", "source_ref": "course-of-action--06a2c737-cf3e-4443-a20d-afc11b506413", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.116Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--a73eb8fd-8327-4584-80b9-31f46703ffd4", - "modified": "2021-01-06T18:28:40.116Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ec762dc1-d5dd-4268-a91d-2e6804768749", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.116Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--b098174d-65a5-4be1-9a57-d1d3781356cf", - "modified": "2021-01-06T18:28:40.116Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.116Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--a3452207-868f-44ca-beec-397f757edcc5", - "modified": "2021-01-06T18:28:40.116Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.116Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--fb5aa9d8-90f7-43c0-9cda-5e672406a97d", - "modified": "2021-01-06T18:28:40.116Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.116Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--1ad53b77-b908-42c9-8175-44b55d16794c", - "modified": "2021-01-06T18:28:40.116Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--6b977517-1415-4ab1-aab6-6d98ac5f431b", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--1da46286-577d-48fe-a811-1b370bf609af", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--5420faf7-8344-4495-9cdc-1c60f8924e4c", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--f51b0d7c-02e2-41db-91d2-c3c1782aa1ee", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--eed9b340-0688-4fb5-b0b7-e0f7bf7eab7b", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--94249e66-a9c3-4609-99c8-079bf2e256c0", "target_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.123Z", "id": "relationship--f9d33ab7-57c2-4b0d-86f8-da086931d441", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.123Z", "relationship_type": "related-to", "source_ref": "course-of-action--94249e66-a9c3-4609-99c8-079bf2e256c0", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.117Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--f5cf2879-efa7-4fe1-a657-dcffc7c1a050", - "modified": "2021-01-06T18:28:40.117Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--94249e66-a9c3-4609-99c8-079bf2e256c0", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.118Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--8d7c1b92-fc4b-4d16-92ab-7e7ea391527a", - "modified": "2021-01-06T18:28:40.118Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.118Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--6026c5cc-7c58-4649-b290-eafaaa2bbad5", - "modified": "2021-01-06T18:28:40.118Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "target_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.118Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--686c6fe6-5fec-4827-b110-a6159764158c", - "modified": "2021-01-06T18:28:40.118Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.118Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--ed282ab0-d89f-4d56-a55d-3de300b0a34e", - "modified": "2021-01-06T18:28:40.118Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5ee5ad18-3512-4d8d-a51b-f4a920826109", "target_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.118Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--b82de74a-dd45-4329-abc3-5d63f500d87f", - "modified": "2021-01-06T18:28:40.118Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--5ee5ad18-3512-4d8d-a51b-f4a920826109", "target_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.119Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--2c648e85-78ef-4b19-9b07-63a2f2b02fed", - "modified": "2021-01-06T18:28:40.119Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6b8d1934-5856-48cc-8067-5b3b0415cf1b", "target_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.119Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--6321bb8a-2efe-4fa0-8108-d0071c83abe2", - "modified": "2021-01-06T18:28:40.119Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2a50974a-4d42-43eb-9e05-6972b045ba2e", "target_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.119Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--38fed8a5-09b6-40db-8e56-7262e5e7836e", - "modified": "2021-01-06T18:28:40.119Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.119Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--0f050e07-0887-4607-8949-a0f5d580a552", - "modified": "2021-01-06T18:28:40.119Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.120Z", + "created": "2021-01-13T01:50:49.124Z", "id": "relationship--94db4922-c877-427b-9016-6b2c29cf8cb8", - "modified": "2021-01-06T18:28:40.120Z", + "modified": "2021-01-13T01:50:49.124Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "target_ref": "course-of-action--f3fb33af-d82d-4d04-9b0a-125c3c7a67d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.120Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--8813fb1a-17aa-4aef-90c0-e3c3d485bf5a", - "modified": "2021-01-06T18:28:40.120Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.120Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--710b172d-f7ed-4ab2-be91-b0a5e778929e", - "modified": "2021-01-06T18:28:40.120Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.120Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--495f85c0-9455-4650-8800-7d8a78402462", - "modified": "2021-01-06T18:28:40.120Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ecd80dd4-5245-4684-9018-6460a8a93cea", "target_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.120Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--494a778f-7a8c-4b8c-9090-3d7cccefad07", - "modified": "2021-01-06T18:28:40.120Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--663fc3c4-f3a3-4d1c-9c3b-3aa2c1d6e1c9", "target_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.121Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--9976f860-5b98-4ba5-b4bd-6b8f9ad03046", - "modified": "2021-01-06T18:28:40.121Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "related-to", "source_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.121Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--6a947154-62f0-40b6-a169-79b59003d2bc", - "modified": "2021-01-06T18:28:40.121Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "related-to", "source_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.121Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--fedadf1f-9bcd-4fc5-8efe-a052d4593b78", - "modified": "2021-01-06T18:28:40.121Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "related-to", "source_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.121Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--89603a39-84cb-45a1-b278-908abc16f9a8", - "modified": "2021-01-06T18:28:40.121Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f71571ba-cd1b-4d35-9d80-9e969f316594", "target_ref": "course-of-action--6783cfe1-031d-476c-995f-5226e640c493", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--a13bc53a-2205-42f6-ad59-128df9dcc1e0", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cbc41548-511b-469b-8d54-43246f482fdd", "target_ref": "course-of-action--6783cfe1-031d-476c-995f-5226e640c493", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--eed01d52-3423-4d7f-b3c9-461f26020147", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d32bd484-744b-4355-a232-d13f854e2af9", "target_ref": "course-of-action--6783cfe1-031d-476c-995f-5226e640c493", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.125Z", "id": "relationship--22001c40-d023-440b-957d-2a0ed61209c5", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.125Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0f4b0846-4682-4f05-8857-00cd29ef7320", "target_ref": "course-of-action--6783cfe1-031d-476c-995f-5226e640c493", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--09b23682-6508-41b4-adf8-49945dd8d35f", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c95fdab5-2a28-4656-96c3-a7e015142ce7", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--7ab647ef-6404-47b2-9a3e-e6a0b39f4e92", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.122Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--4bfda21b-5b7a-4e7c-9448-eecb4a33f694", - "modified": "2021-01-06T18:28:40.122Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--83930482-7da7-4d9e-8336-40ef299908bc", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--59f2e266-3962-4ea5-bf26-6c2b3231157b", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--d4571959-707b-46a5-a0d6-a046283c84c9", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--2752d4cc-645c-49c7-887d-ebb815f8fdb6", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--63588095-0d0f-463d-82ed-a0bf3710204a", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--5077ca62-3b5e-45b3-a14f-8c8378e09417", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8374502d-58ff-4dff-8287-5e399faa7292", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.123Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--fc44a4a7-c382-4365-8c21-6dfaac87cc80", - "modified": "2021-01-06T18:28:40.123Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5a59af4a-4be7-44e3-964e-6c633c2791e7", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--c5eb5be2-953c-4f1e-ba57-3054763cdf31", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--5a59af4a-4be7-44e3-964e-6c633c2791e7", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.126Z", "id": "relationship--a91d52fb-7f08-4103-9f80-05182a2e47ed", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.126Z", "relationship_type": "related-to", "source_ref": "course-of-action--5a59af4a-4be7-44e3-964e-6c633c2791e7", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--1e8399d6-231d-49f2-8e4b-fb79530a3cf6", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "related-to", "source_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--0272193b-abd1-450e-af78-169f9a2abd3b", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "related-to", "source_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--4bb1d787-f27f-4c12-b8cf-6fae8225c140", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "related-to", "source_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--32a5c1ba-b0c4-4795-becf-a8721b349dfc", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--012deeef-7cc6-46e5-9922-3ad54c138597", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--10057f6a-b011-4d14-ae43-3cbb8ff7bfc1", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "related-to", "source_ref": "course-of-action--012deeef-7cc6-46e5-9922-3ad54c138597", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--baaa854e-dff1-46d1-a835-de8a3e4031a9", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3e451c9e-1e46-47b6-a921-58fa2dc2584a", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.124Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--ac32cd58-5a1a-4d22-9688-8d7e9455a399", - "modified": "2021-01-06T18:28:40.124Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "related-to", "source_ref": "course-of-action--3e451c9e-1e46-47b6-a921-58fa2dc2584a", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--18cc60f2-d91f-4907-b9dd-b81ba2f7831e", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c372f939-2674-45e5-af6f-d981e98d4f3a", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.127Z", "id": "relationship--098248d0-283e-4524-921f-71cc957acfc6", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.127Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--fe902b6f-6535-4d99-9969-cc002d1845a3", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--84404a52-d9e8-44a5-8167-f29d802e3272", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--f1cf6c3c-3478-46fd-b3c3-4e257ced1684", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--23478516-b9fa-495c-ba22-a6d74fd7acde", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--2cb0db81-1e2a-4c0a-9b9a-b530e09acf87", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--c53e463c-59f0-419f-9bc3-3038d9ed28cd", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--6271c91f-5d01-41e6-acee-06e2fd02610c", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.125Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--e29c7f05-bda5-48da-9ba5-cde944ecb459", - "modified": "2021-01-06T18:28:40.125Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--0a932e09-5a7f-4fca-9514-da0acf325679", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--11eb3e7c-91a4-44d1-b926-c6fdc4cd6da7", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--fcdb5721-89bb-420a-b43a-008bafd80e73", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.128Z", "id": "relationship--739dad89-7de2-44d9-95f3-7a9329c6d2ed", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.128Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--701a9aec-59e2-41d7-a7e2-ef3c71ed57a0", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--e60e1205-93a0-4903-8755-e4c11567604a", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--35683d85-22be-45fc-9db9-f7217bd0c3c5", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--f76225f0-5537-430a-a1de-811d1b1eb6bc", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.126Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--b39a9376-5532-42b8-807c-b49543c05cd1", - "modified": "2021-01-06T18:28:40.126Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--54307db0-bff4-4aec-b5d4-fcbe80d981bc", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--ff361939-1cad-45c4-8914-685bb70a30a5", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--f93b4dbd-3d10-4b9d-b0d4-1fba18ac4100", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--7cc0d77b-998b-46df-afa8-78ca52b9dfae", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--dca87d4f-729f-4064-b95b-4a7fac83f386", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "target_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.127Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--7766e776-9b06-4f22-91f6-a83ed30828c6", - "modified": "2021-01-06T18:28:40.127Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a7db71d2-3c98-4a5c-bbe8-a945b1eabc47", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.129Z", "id": "relationship--65c475bc-8b22-480f-a857-e8426ed43921", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.129Z", "relationship_type": "related-to", "source_ref": "course-of-action--a7db71d2-3c98-4a5c-bbe8-a945b1eabc47", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--19abebdf-bac9-44e5-a886-6bf0d495ce29", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--a7db71d2-3c98-4a5c-bbe8-a945b1eabc47", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--3b776b98-edb4-43d7-877a-e8f399908ac2", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--a7db71d2-3c98-4a5c-bbe8-a945b1eabc47", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--14d7510f-db95-445b-a910-ad581f85dfaa", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4ffac7a2-6eca-41c1-8a4e-afc431bc3d71", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--e6e5ca8a-41d4-4e03-a62b-1f4f0c48a883", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.128Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--fa6ce52e-3fe8-440d-ab0f-ab4c59ce73d6", - "modified": "2021-01-06T18:28:40.128Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--bd715dfd-cb49-4cef-a4ec-bd2578d01565", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--312ca8e5-77fc-4afa-8859-2c7f8c9508b4", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--3bc30dea-4d58-41c5-98b2-3558935ceed0", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc26b43a-4c2b-46db-8927-8f476fb19fe5", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--57b33fbf-9936-49e9-a9d7-993e1a572d27", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--34ec3fcb-2c65-42f2-a0fc-14a9bdb06fde", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--1b48c337-f958-48cf-9f37-4aa5e51fb2ee", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "related-to", "source_ref": "course-of-action--34ec3fcb-2c65-42f2-a0fc-14a9bdb06fde", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.130Z", "id": "relationship--0291758f-01e8-4661-9ea0-e9e9185100ef", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.130Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5c542ef1-d5f1-4b35-89d5-fda91f7f59ea", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--8b2e535b-2e4a-4240-b966-5f18677307a2", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ae5d39f9-58f1-4e10-bd2a-d00a4c84d013", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--69de7fe8-ea26-4392-a401-732f7f9490ad", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae5d39f9-58f1-4e10-bd2a-d00a4c84d013", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.129Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--9fbc92e5-78ff-48c6-b018-2d3d551f425d", - "modified": "2021-01-06T18:28:40.129Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae5d39f9-58f1-4e10-bd2a-d00a4c84d013", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--ee8c2f32-bed4-42f9-b9a6-4e603fee7f4b", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6c5e5568-6b01-4d10-ae2e-11d0cb9a739b", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--a2eeaf40-4ea0-41fb-9b16-68bde3667435", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--6c5e5568-6b01-4d10-ae2e-11d0cb9a739b", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--9846a938-178c-4122-ab9c-7fdbfbf74cfa", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--09d27668-148f-4e12-9764-6705a263e37e", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--86f0e94e-cc23-4817-ac41-d4f434ea3a58", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--d28a3612-a3b3-42ae-ac1b-b6c411fbf705", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.130Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--8d8ecb67-2839-42ff-b9ab-d402f4652ede", - "modified": "2021-01-06T18:28:40.130Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.131Z", "id": "relationship--9094513c-eec0-4ce5-a545-78061191d199", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.131Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--a64f219f-88ad-43a1-9922-7fcb530570a8", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--6e5c7a76-0992-4931-8e6f-50ed2d3021c4", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--024b7217-4367-44c8-9ce7-52df56e2ac36", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--62e07bba-7662-4ab3-874e-ebdf95007603", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--024b7217-4367-44c8-9ce7-52df56e2ac36", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--88009861-38b2-40b6-9a7f-40e8cdfd9676", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--024b7217-4367-44c8-9ce7-52df56e2ac36", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--2564f104-7f1c-42c8-a153-fc978f8cd59c", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--94d89de8-9500-4b9a-bc1c-7b91c0370eca", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.131Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--36f224c9-d54f-4625-a7d3-c83aa34bec97", - "modified": "2021-01-06T18:28:40.131Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--94d89de8-9500-4b9a-bc1c-7b91c0370eca", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--263ff06a-f47f-47ed-9adb-299999fc0794", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--662257c0-6ae0-462e-9c15-7ef725f268bb", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--100dc744-4711-4e08-8f0f-611d697525ea", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--662257c0-6ae0-462e-9c15-7ef725f268bb", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--92c80abe-bcbd-4783-9445-56b47c5c3c45", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--073a224c-44ad-409f-90f4-a6d7b27ab91e", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--461a25d6-4bb4-4bcf-9b08-28e99bb08832", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--073a224c-44ad-409f-90f4-a6d7b27ab91e", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--f111637d-b5c3-4508-85a7-dfb500dbfac4", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fcf6ecab-f980-4e47-8615-ef1ce52fc3ce", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.132Z", + "created": "2021-01-13T01:50:49.132Z", "id": "relationship--64dfee78-88a4-42c0-aa8c-7ffe68b51f81", - "modified": "2021-01-06T18:28:40.132Z", + "modified": "2021-01-13T01:50:49.132Z", "relationship_type": "related-to", "source_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.133Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--8646eec4-d90b-4a64-becb-33daafae1609", - "modified": "2021-01-06T18:28:40.133Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.133Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--fbc0ea81-eeba-4e82-87c1-c07c1140ef64", - "modified": "2021-01-06T18:28:40.133Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.133Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--3e033818-16e4-46bb-9ea7-4d2af36d9643", - "modified": "2021-01-06T18:28:40.133Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.133Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--0e0bb2a0-a75a-407c-8c0e-9ee474ef85cc", - "modified": "2021-01-06T18:28:40.133Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--595909ca-7504-48f9-968d-1b7f78f1bb8c", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0c4f8afd-3565-4dfe-ba20-93cc57f83479", "target_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--beb15942-76e6-4e23-bfa1-5c0a675a5418", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--66df5d3c-789b-4c51-8fe6-b9558d5d79a0", "target_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--250fb2cd-0765-4eba-9fd3-a28772763bbc", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--60dc56a6-076f-46ee-a789-f7023dd2abbe", "target_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--4887ef11-41f1-4d0e-9fa1-b1cc90f97968", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--482d682c-4871-44f8-830c-9b2b2ddb9188", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--a6aec21b-aecd-4d61-91b4-512a3a4b3065", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.134Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--72a89cad-cae4-4da5-82aa-e5854889018c", - "modified": "2021-01-06T18:28:40.134Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.133Z", "id": "relationship--58af3a9b-64bc-4675-8e80-fccf965679a6", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.133Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--74bb9f3d-1470-4cce-b039-d3185819a96b", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--b9433e53-2053-4c24-92ac-d6c4f867e36b", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--80b85151-fb36-4972-8622-3fb2f1c9a756", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--95bee3d2-4008-4e5e-b1f1-45a0f9499c4a", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--37eeb301-b3c9-4b6d-872e-745de189cd10", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--707b8e0a-0a87-4731-89c3-86ee1b778dbe", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--65ee07b7-4569-44fd-abf2-c765947f92a3", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.135Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--e3fe236c-cd03-4c6f-9c0c-c5d72f8a2822", - "modified": "2021-01-06T18:28:40.135Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.136Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--79ec31e5-f8a0-482c-90e3-f56e3abb8f33", - "modified": "2021-01-06T18:28:40.136Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.136Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--ae5f739f-edad-4702-adb1-ba867e341c4d", - "modified": "2021-01-06T18:28:40.136Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.136Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--96e6f2d8-1c4c-4c2a-8283-c6d992fc1bc2", - "modified": "2021-01-06T18:28:40.136Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.136Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--3dba9f95-7fe8-48db-934d-26a722ad8049", - "modified": "2021-01-06T18:28:40.136Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.136Z", + "created": "2021-01-13T01:50:49.134Z", "id": "relationship--0ddf5876-5c84-4ed1-bdee-91583a27a793", - "modified": "2021-01-06T18:28:40.136Z", + "modified": "2021-01-13T01:50:49.134Z", "relationship_type": "related-to", "source_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.137Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--1cd9caf3-5c3d-4d1a-97cd-9f575366adae", - "modified": "2021-01-06T18:28:40.137Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.137Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--d4ff490e-0a81-40da-b741-439100d91a34", - "modified": "2021-01-06T18:28:40.137Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.137Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--f1f96f79-adc8-43f7-b25d-70cba3493688", - "modified": "2021-01-06T18:28:40.137Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a74140f9-3916-42ac-98a5-4ea12fc53bb9", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.137Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--efc48af4-3173-4726-a91f-689262cdfe30", - "modified": "2021-01-06T18:28:40.137Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--3e36d39c-d7fd-4be9-8eec-44b6c3f25a69", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--9df114e2-9cd2-4b9d-8de5-2011d157f203", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--e001d3b7-c248-482f-b99d-9631aef9d31c", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--1334a324-78fd-49ef-b74b-deb868b5f54a", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--0e349791-efb5-41f9-b6db-d11d9a890701", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--93084eab-15f1-4d0e-ae64-9904b51ad41c", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--8545dbc7-e41b-4342-8f48-348dc2336516", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.138Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--6bedaa05-2215-4dd5-aa71-cbff75cb1cdb", - "modified": "2021-01-06T18:28:40.138Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--88713206-7975-4744-a2be-758b9dc325ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.135Z", "id": "relationship--e18d2376-78a5-41d2-a1a5-597cf2da8c9b", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.135Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--c49aebb1-7bdb-4d66-b35b-b0b49ace1804", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--c23bf180-6fdd-4012-b7c8-bc541465db56", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--2c9c9d53-e5f8-43c5-96f7-c30d38ed9825", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--10e2f6f9-0773-4049-ad84-45e7a0c340e7", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--46bb89f8-a681-401c-a344-508b7dac76f4", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--136bf102-a84d-44d5-a781-3f5e51b00f72", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--013006b5-b88d-4eee-94a2-5193cc59c10e", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6cccaaf0-e5cf-45a4-a163-8c0e6bc37384", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--b4fafa05-26be-48f5-8ca1-a25164770374", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a235e4c2-4737-4277-978d-dd10bb6d5f2d", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.139Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--04e1d54f-d502-4513-a75d-abadcb711fcd", - "modified": "2021-01-06T18:28:40.139Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f251a109-0056-44fa-a1bb-f2b724582966", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--7b83a8e0-c26f-4e5f-9fe9-6872b14873a9", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--f251a109-0056-44fa-a1bb-f2b724582966", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.136Z", "id": "relationship--d923e19a-d06b-4681-bf6a-b6d5e137bda6", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.136Z", "relationship_type": "related-to", "source_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--de976240-65ed-4fb6-aad2-84ec3b97008a", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "related-to", "source_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--b195b7dd-4a6d-4fc8-bac6-0a06664fa2aa", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "related-to", "source_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--8b2a2cc3-9b75-4283-9e64-b0af461ce43c", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "related-to", "source_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "target_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--0fe2bbfe-6912-4c09-bcdc-b0800c236820", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fa84a394-204b-45f9-aebe-7d0762afed10", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--24b84e88-35fd-4fe6-9b45-c8b200cc5cb2", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa84a394-204b-45f9-aebe-7d0762afed10", "target_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--39170651-6b6f-49b7-8d67-94f639cc8989", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fc46d78f-bdc4-4036-ae6b-3ba7b9d56e75", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.140Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--107c6a32-3558-47be-b9fa-a255ae78664a", - "modified": "2021-01-06T18:28:40.140Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--afba2afa-6c1b-4997-bb3e-97ab7acea515", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--a30b4a5e-bbbe-4653-82d8-f762acd26aa1", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "related-to", "source_ref": "course-of-action--afba2afa-6c1b-4997-bb3e-97ab7acea515", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--c7449b82-c820-4a4f-9b5b-5e80a773fdfe", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--18ed1beb-d91b-4e33-ac8b-d917ba155ff9", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--dc58e2ec-b2b1-4cac-8f01-081495a591fe", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--caff8952-ec7e-4da2-85f5-b188170949c7", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.137Z", "id": "relationship--bbc8692a-9f0e-4941-8a37-13f09da0fbb4", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.137Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--39c24329-248f-4758-8dbe-94f214f0b054", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--c82b42b0-a218-4930-bedf-a794552a34fb", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cb4f8b8c-98e4-4d94-b4ca-b80472ba93e3", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--6b499483-31b1-4f01-8306-549b255bc1fa", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--cb4f8b8c-98e4-4d94-b4ca-b80472ba93e3", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.141Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--bc0056e6-f9f0-4643-9611-adea6de537d3", - "modified": "2021-01-06T18:28:40.141Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--cb4f8b8c-98e4-4d94-b4ca-b80472ba93e3", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--0b4621b3-1ca0-4415-8de0-1bc4e7ef3ac9", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8aaeb347-91ef-43dc-8c7b-3ed231011c90", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--9e61d5a3-6399-4b02-887b-d61d525a1e7d", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--0e2e088b-7e8c-4f35-9e13-3d9dd9b03825", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--b5c5d1b8-a91b-4540-9225-08b1c036be64", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--30ed2302-6064-4ac9-98db-5f1f5bbab636", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--35072f9c-b205-46d7-8cac-39f6d5a0d55b", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--30ed2302-6064-4ac9-98db-5f1f5bbab636", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--886c3d22-0e5e-4bf2-bc94-18b5433fb575", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8a42bc1e-ee34-4e39-8ecd-58e587f88d03", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.142Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--208509b5-8640-4fe2-9cc1-c7d8a88d31ee", - "modified": "2021-01-06T18:28:40.142Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "related-to", "source_ref": "course-of-action--8a42bc1e-ee34-4e39-8ecd-58e587f88d03", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--aeaf4fe5-cb4c-4621-adb2-f0e3bb07864c", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b28ba623-af4a-4d7d-8576-a8ccaf691177", "target_ref": "course-of-action--7be6b987-d63c-40f0-9025-623af5ecae4f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.138Z", "id": "relationship--804319f7-6fa4-4155-93bf-b0ebd9d0c90d", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.138Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7d135d94-9e26-4c98-a6b8-283229c562c5", "target_ref": "course-of-action--7be6b987-d63c-40f0-9025-623af5ecae4f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--a2819cca-1509-4752-a793-49a520dc9360", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b2c80f93-eba4-4699-ae42-a715b7e50985", "target_ref": "course-of-action--7be6b987-d63c-40f0-9025-623af5ecae4f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--97d13fc0-114c-44e2-b477-43b3d78fead9", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e6c4ef1e-1313-48e6-aaf7-16b7a5df904c", "target_ref": "course-of-action--7be6b987-d63c-40f0-9025-623af5ecae4f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--295f2f96-98bd-44f8-a2f6-8d3237a7e6f5", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--30ca9933-ba3a-4bef-9cc2-fe63a9a41c77", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--8a039b9c-5c74-402a-b26e-584a702d2d75", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--5a88f1ad-45da-4120-9375-20b107b90b84", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.143Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--5c8fb726-2f0b-4f67-946e-c8bb6bddcb91", - "modified": "2021-01-06T18:28:40.143Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--c515151a-dbab-4b1e-9c60-5f4fa733704b", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--645ee4d9-669c-4c3c-9ff1-4d16c9d205e7", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--532d13d8-1ecb-4b50-9cc6-89295a16c90d", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--645ee4d9-669c-4c3c-9ff1-4d16c9d205e7", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--70e9a5f2-8d76-4d3e-91f5-7d3c1641e197", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--645ee4d9-669c-4c3c-9ff1-4d16c9d205e7", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--1c7ef8d9-d550-448e-bd0c-8c0a8344c250", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "related-to", "source_ref": "course-of-action--645ee4d9-669c-4c3c-9ff1-4d16c9d205e7", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.139Z", "id": "relationship--998ab310-d264-4502-8385-9c087e9e7322", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.139Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bded0187-f2ff-45cb-b493-ac5aba3cd2ce", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.144Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--190dd0bf-7cdc-4270-a4ed-630c62290bd0", - "modified": "2021-01-06T18:28:40.144Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--bded0187-f2ff-45cb-b493-ac5aba3cd2ce", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.145Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--196d7717-200f-4a37-8231-1bc385dfd377", - "modified": "2021-01-06T18:28:40.145Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--bded0187-f2ff-45cb-b493-ac5aba3cd2ce", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.145Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--399bf220-f02d-4674-8aec-73b59088db17", - "modified": "2021-01-06T18:28:40.145Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--bded0187-f2ff-45cb-b493-ac5aba3cd2ce", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.145Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--656c26aa-154a-4b97-bb18-1a022aff503d", - "modified": "2021-01-06T18:28:40.145Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ee1f1fd6-ac0f-4840-8684-57c9f953b888", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.145Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--e53f6372-0f19-42ab-abd4-e06cbf0fb2e3", - "modified": "2021-01-06T18:28:40.145Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee1f1fd6-ac0f-4840-8684-57c9f953b888", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.145Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--d64142c3-9bac-4fa4-bf62-ce8673031476", - "modified": "2021-01-06T18:28:40.145Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--ee1f1fd6-ac0f-4840-8684-57c9f953b888", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.146Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--1ab447c8-2bf9-4e82-a8c5-f744e24a69b5", - "modified": "2021-01-06T18:28:40.146Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.146Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--d4667aec-4df4-4822-982b-e68ac1cfa696", - "modified": "2021-01-06T18:28:40.146Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.146Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--5611c545-fca7-4577-a6ac-1655610c060b", - "modified": "2021-01-06T18:28:40.146Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.146Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--8525b27c-6ccb-401f-8cf6-11a1121b2d1d", - "modified": "2021-01-06T18:28:40.146Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.147Z", + "created": "2021-01-13T01:50:49.140Z", "id": "relationship--aec075ed-7b2a-433b-bc74-8523a3af7168", - "modified": "2021-01-06T18:28:40.147Z", + "modified": "2021-01-13T01:50:49.140Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.147Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--e05dd653-4bbe-4544-8e7f-89b86ef7144c", - "modified": "2021-01-06T18:28:40.147Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.147Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--58fb4463-9314-4e12-a0c6-ad65187c3b57", - "modified": "2021-01-06T18:28:40.147Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.147Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--ca42b833-140a-4b27-8376-028f63902a2b", - "modified": "2021-01-06T18:28:40.147Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.147Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--476ee67f-c500-4bd7-b14b-8e10b88b6d24", - "modified": "2021-01-06T18:28:40.147Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.148Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--1a7db545-a993-48e8-975c-a7d1dee78247", - "modified": "2021-01-06T18:28:40.148Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f7707962-7cc6-4c67-99e1-99822b09be02", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.148Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--02f4ccc9-920a-4bd6-b8e5-d61c9765c102", - "modified": "2021-01-06T18:28:40.148Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--f7707962-7cc6-4c67-99e1-99822b09be02", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.148Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--ec8f1402-28e4-45d4-8e55-ffc7a05ddd2f", - "modified": "2021-01-06T18:28:40.148Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--696f5cf5-b1ba-4883-b28f-23c7c124a4a5", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.148Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--87f5ad8f-8525-4765-bb14-943161b26857", - "modified": "2021-01-06T18:28:40.148Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--696f5cf5-b1ba-4883-b28f-23c7c124a4a5", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.149Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--c5ad3302-0954-464f-98c6-a7872111d91b", - "modified": "2021-01-06T18:28:40.149Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "related-to", "source_ref": "course-of-action--696f5cf5-b1ba-4883-b28f-23c7c124a4a5", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.149Z", + "created": "2021-01-13T01:50:49.141Z", "id": "relationship--d211bae4-0f83-47e4-a758-01c1c3c9f487", - "modified": "2021-01-06T18:28:40.149Z", + "modified": "2021-01-13T01:50:49.141Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6a40e9bf-8c20-45c3-a061-53949ba3976d", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.149Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--122dd175-148e-42b1-96fb-87d368ab5132", - "modified": "2021-01-06T18:28:40.149Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--6a40e9bf-8c20-45c3-a061-53949ba3976d", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.150Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--84686cad-0430-409c-b875-d0cef0ce99b3", - "modified": "2021-01-06T18:28:40.150Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--6a40e9bf-8c20-45c3-a061-53949ba3976d", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.150Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--18389ff2-b7b8-4a02-9e96-b203dffb3362", - "modified": "2021-01-06T18:28:40.150Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d4fc42e2-b8c8-433e-b6ce-549ae86071c8", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.150Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--f1b3d83d-d1d4-4d8e-a3c9-e96c2e1b7dbf", - "modified": "2021-01-06T18:28:40.150Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--162ca9af-54ee-4322-9688-46f7cd3c0962", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.150Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--cabae93a-348c-4f1f-98ad-ced7bfd523ae", - "modified": "2021-01-06T18:28:40.150Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--162ca9af-54ee-4322-9688-46f7cd3c0962", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.151Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--18aaa812-fe55-4e15-a927-4231abafdd5c", - "modified": "2021-01-06T18:28:40.151Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b693457b-6a0c-4262-8159-f90979fe3c09", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.151Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--4965e4fa-b36b-42d4-bdc3-80e132fae374", - "modified": "2021-01-06T18:28:40.151Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--b693457b-6a0c-4262-8159-f90979fe3c09", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.151Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--bb651daa-02bf-4ab0-91f3-e78cbddffa86", - "modified": "2021-01-06T18:28:40.151Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--b693457b-6a0c-4262-8159-f90979fe3c09", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.151Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--51d22ab7-c349-4201-a3db-d97e1386a285", - "modified": "2021-01-06T18:28:40.151Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.151Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--723e0078-72c8-4dd4-b1df-25007ce8ff8e", - "modified": "2021-01-06T18:28:40.151Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.152Z", + "created": "2021-01-13T01:50:49.142Z", "id": "relationship--4cfa996d-0e6c-4158-bef3-27bbaa2edf24", - "modified": "2021-01-06T18:28:40.152Z", + "modified": "2021-01-13T01:50:49.142Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.152Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--94a863ed-9706-4476-9e42-81b78d9c101d", - "modified": "2021-01-06T18:28:40.152Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.152Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--9236a828-c4aa-4381-a9ca-420580fbab5f", - "modified": "2021-01-06T18:28:40.152Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.152Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--b6752f25-b1c3-49b8-9f20-b868aa487883", - "modified": "2021-01-06T18:28:40.152Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--6a168457-97d0-4933-aa90-70c7caf852c4", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--cca551a5-d169-443e-bb2f-e702d36d9f0a", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--c26c68ee-586e-45e5-94aa-e9ac8d04e74e", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--377f162f-663f-4955-8d40-86ec4ea3b474", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--bf192a9d-b5d4-463c-b7df-fe8626bba383", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "related-to", "source_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "target_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.153Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--3ab68842-4146-4bbb-9424-63a9526b48c2", - "modified": "2021-01-06T18:28:40.153Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--61bbf829-82b9-4e5b-ab6d-285d6dbb1785", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--9fdf058e-63cd-471a-ad3a-c6cdfa814fa1", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b7fbba2f-535b-4cc0-b741-217e8a8613ce", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.143Z", "id": "relationship--73be9746-f276-47cc-bac3-dcee5dfcb369", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.143Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3261e0e5-1d60-4e39-8c45-8f2e6fe5c551", "target_ref": "course-of-action--fd39bb0a-29c2-41e1-b37d-aed245159335", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--85fb1e6d-f795-4cc4-a67f-bf53bdefc26d", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--1a28231c-720c-4292-9b11-1a2f9c6d11ad", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--74ab25a8-85c2-4016-b159-67ee3d69f705", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--967d3623-9058-4889-b4eb-08ce79851e8e", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ea840204-4660-414a-9b19-a06d29afb743", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.154Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--5a859d02-d193-4d07-b02c-cb758ec6a210", - "modified": "2021-01-06T18:28:40.154Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bd95cde7-79ea-47db-9a2a-b19aaa3845b9", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--abe592db-a9c4-4b8a-8ff3-99427eb9a9e9", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--bd95cde7-79ea-47db-9a2a-b19aaa3845b9", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--4b609c4d-8b34-45fd-a240-dc944882a70a", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a71b79a0-89bd-4c69-8275-516994bdbb95", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--7368d33a-8c14-4480-976a-a09b6d9dd443", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--52d4530d-22e2-404d-88ae-dec559c3f713", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--7fa3802e-bdc7-4b09-9dd1-a48b8dc20468", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--52d4530d-22e2-404d-88ae-dec559c3f713", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--76ff095f-e724-46eb-a83a-05e90bdf70cf", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "related-to", "source_ref": "course-of-action--52d4530d-22e2-404d-88ae-dec559c3f713", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.144Z", "id": "relationship--15ce4f83-c2bd-426c-b471-6bc05904e4dd", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.144Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--19c8a3a5-a1e9-4758-b1d2-c416c65007d4", "target_ref": "course-of-action--3d48742f-6d63-432b-8e16-6a4ec7fda080", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--796a4ce6-9687-472b-86ed-239f1574f116", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c119fbed-d87a-43a4-850d-956cfe27b72f", "target_ref": "course-of-action--3d48742f-6d63-432b-8e16-6a4ec7fda080", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--46e136b3-e221-4113-abf9-ba489b636fae", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "related-to", "source_ref": "course-of-action--a7212714-cefb-4b57-bbf3-f530735c4277", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.155Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--a29d4258-8ae3-4c51-b83c-1c74e308c0ff", - "modified": "2021-01-06T18:28:40.155Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f987c2d1-3fc0-497e-bab3-4a5d20236907", "target_ref": "course-of-action--a7212714-cefb-4b57-bbf3-f530735c4277", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.156Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--d72f06f6-b91f-4fd8-88de-04ec58e8e34f", - "modified": "2021-01-06T18:28:40.156Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7dd1ba99-0581-4294-94fc-2a17718c1e26", "target_ref": "course-of-action--a7212714-cefb-4b57-bbf3-f530735c4277", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.157Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--f215f839-96f9-4a46-a859-94261de469d9", - "modified": "2021-01-06T18:28:40.157Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "related-to", "source_ref": "course-of-action--ca9f70e5-afca-4d60-b977-176a88af7499", "target_ref": "course-of-action--1cef57a1-3242-4d2a-8d7c-5e2aba5c2868", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.157Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--23eab298-554f-4100-80c4-6599d905f9e7", - "modified": "2021-01-06T18:28:40.157Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c89ac3a1-95a6-479e-bf14-1d5dab0f16b4", "target_ref": "course-of-action--ca9f70e5-afca-4d60-b977-176a88af7499", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.157Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--a2fb5694-488a-4e6e-b469-3a30e54dd616", - "modified": "2021-01-06T18:28:40.157Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "related-to", "source_ref": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.157Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--605d477e-d2b8-43a3-972b-fa032b87574f", - "modified": "2021-01-06T18:28:40.157Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "related-to", "source_ref": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.157Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--db2aaf67-a6d7-4d40-bbc9-d6e31d11d990", - "modified": "2021-01-06T18:28:40.157Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "related-to", "source_ref": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--c42eec1c-33a0-4548-979b-560a3c9b310c", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a6b78fb2-19b2-4cc5-9e37-4fed59e8dc2b", "target_ref": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.145Z", "id": "relationship--fc1c85f6-ccdb-41c6-840a-551fa61080f1", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.145Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cc31a370-9673-4f75-8c8a-a702d2aa037b", "target_ref": "course-of-action--7567fbff-2cdd-494c-8fb0-429fdbc309cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--05a22bfa-a26e-4082-9da2-9e8bd98a1b33", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "related-to", "source_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--e3037f15-67e1-454b-b7a9-a436f0387822", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "related-to", "source_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--3f842574-d0b5-4520-b1b7-e326ef9df046", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--06b39748-8045-45f1-b6fa-e17a80691702", "target_ref": "course-of-action--bc0d42da-057c-45a7-83f2-c8498b206b6c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--bbff0491-4dae-4d6f-88c2-50858611bc5d", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1f23b597-b04b-4a5b-8465-1116d42e7aec", "target_ref": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.158Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--b73e2891-38c4-41d8-a0d9-958d16ceb33c", - "modified": "2021-01-06T18:28:40.158Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7c856805-e494-4d37-99d0-bb642c91176b", "target_ref": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--54a64691-4278-425f-bd04-ceb785066709", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8e9b5509-b5cc-4837-b4d5-4bc021034050", "target_ref": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--687b25d7-ccf2-474e-bcb6-2e5d0f1c83ab", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a62ca521-8564-43f2-8e46-8a15c67c5d32", "target_ref": "course-of-action--6cb26aad-3916-4876-97d3-82c6b847bc44", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--fabf3ea7-606d-4e22-b32f-5fd36da6cc70", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "related-to", "source_ref": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--13a5e2c3-0a1e-4f8a-9e84-4b996d842939", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--93cad613-f81d-4638-b70e-edca89d3fa8f", "target_ref": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--bc022853-37fe-4019-8af6-104b6e2ffd0e", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--94c93bbc-0189-4799-8a5a-87767a2f6058", "target_ref": "course-of-action--18dcce88-71ff-4e68-b953-2bbb93bf6361", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.146Z", "id": "relationship--589f359f-df8d-4834-9372-ba7d5faceddc", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.146Z", "relationship_type": "related-to", "source_ref": "course-of-action--1cef57a1-3242-4d2a-8d7c-5e2aba5c2868", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.159Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--c99393b5-bd54-4270-81ca-42e5bc5cc893", - "modified": "2021-01-06T18:28:40.159Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--13314c8d-134e-47d9-a781-e82781f02d13", "target_ref": "course-of-action--1cef57a1-3242-4d2a-8d7c-5e2aba5c2868", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--9bad0b55-e5ee-491d-a974-460e5a79bbfb", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--d45d31a7-1d99-4ea3-bb4d-e6b958478463", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--4da7e303-670d-4cea-9df5-3271399016e1", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "target_ref": "course-of-action--d244111b-6f24-4b0a-a923-19d4d4859ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--868d3cf2-78d2-4969-8d91-0c78a33ec969", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--1d7f0099-fd74-4564-8b41-860624112c6c", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--34c643d4-ab5d-433c-88f7-faf0bedf8f31", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--a86bdbd9-e76b-4564-89ba-47ea249cdc01", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--aa98077d-d876-4325-8ae5-f3e6db829350", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--a86bdbd9-e76b-4564-89ba-47ea249cdc01", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--51ac46ba-e478-455a-b500-ab967a5a3870", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.160Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--8e660dd1-61bc-416c-8f24-7cd402b9ced0", - "modified": "2021-01-06T18:28:40.160Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "target_ref": "course-of-action--55747843-3102-4363-815a-0fad0d8b4cbe", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.147Z", "id": "relationship--1a0c15d4-5aae-407d-abde-87fe3a5db848", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.147Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--9d0ea80e-8f17-4dd2-a11f-4d701348adee", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--10cebdc9-6b42-4e01-832a-3c67e6e6f1f1", "target_ref": "course-of-action--d3be405e-5c3a-49a2-8ec6-764c9e0d1973", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--2c2de72c-924a-45d0-9b20-b3b9edf359af", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--10cebdc9-6b42-4e01-832a-3c67e6e6f1f1", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--db7ac8f7-4c24-4590-8ac5-ebb3a532812f", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2dfd7eb4-10e1-4621-831b-2124006b1bf1", "target_ref": "course-of-action--55747843-3102-4363-815a-0fad0d8b4cbe", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--d5a400d2-7461-4a11-a37f-c85691ca7d9d", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--822c3c3f-0f9b-42f2-bf84-9ff7b3ca4a39", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--feeb551e-d0f0-4937-8ec7-a92299b27473", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--26e26e62-29ee-4274-af3d-e20d83c7656d", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--92fa1a82-4896-4411-8c6b-9687f653d72e", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.161Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--867bf590-70d6-4dba-8d1f-d7eb3793a323", - "modified": "2021-01-06T18:28:40.161Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--87073880-0a34-4148-932f-46ffa6a90c8d", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--30e12976-f487-4e91-baf1-766802be66a0", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--7cd4302b-dea3-415e-a057-439d98a16582", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--442ab7b0-e9c4-4625-a0bf-b05446745fe2", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.148Z", "id": "relationship--301abddb-329b-41d6-a164-a9022e40f4b1", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.148Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.162Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--090d020f-baa4-42aa-a910-301ed790ac88", - "modified": "2021-01-06T18:28:40.162Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.163Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--f5583576-1178-45fb-9ede-87d1db515d54", - "modified": "2021-01-06T18:28:40.163Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.163Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--d53f00f0-381d-4b72-b8f8-f7d63489f30b", - "modified": "2021-01-06T18:28:40.163Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.163Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--35a1b8ab-f0ca-4097-93dc-2a86610d681d", - "modified": "2021-01-06T18:28:40.163Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.163Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--48cc8f84-ef4c-47b4-b672-0d7cfd7b1eae", - "modified": "2021-01-06T18:28:40.163Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.164Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--3ed4ce1b-c31c-434d-b0db-f0ec5037e711", - "modified": "2021-01-06T18:28:40.164Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--93f0e0a8-81b2-435e-a6af-6c57051267d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.164Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--cccc9682-2d36-413e-ba2f-8ef599dc1fda", - "modified": "2021-01-06T18:28:40.164Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.164Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--c6bbff0b-caa6-4356-94af-f04f651b1f35", - "modified": "2021-01-06T18:28:40.164Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.164Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--29a1a5e3-f591-4a19-b094-9b501b1453c7", - "modified": "2021-01-06T18:28:40.164Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.165Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--076fafce-8bd6-49ad-b863-e9a866e35509", - "modified": "2021-01-06T18:28:40.165Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--e40125a2-f3a2-4177-9ee5-d3dc40b3bc94", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.165Z", + "created": "2021-01-13T01:50:49.149Z", "id": "relationship--740cee07-774e-4a23-b139-090f029dfff5", - "modified": "2021-01-06T18:28:40.165Z", + "modified": "2021-01-13T01:50:49.149Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.165Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--b280b6e5-86fe-4a07-9cca-5518462ac785", - "modified": "2021-01-06T18:28:40.165Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.165Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--776bdc33-19e9-4c79-a606-56124d84a877", - "modified": "2021-01-06T18:28:40.165Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.165Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--5f58e1e2-d85e-45a3-adc7-cbe2bed15378", - "modified": "2021-01-06T18:28:40.165Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.166Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--a749b4bc-60d6-4ed3-aadf-d6aa31800981", - "modified": "2021-01-06T18:28:40.166Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.166Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--e2100ec7-98b0-4a2f-8331-98ea4cd3b5bb", - "modified": "2021-01-06T18:28:40.166Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.166Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--01c6ab58-d8ec-43d7-bdf9-83a635daab75", - "modified": "2021-01-06T18:28:40.166Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.166Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--376630af-6956-4ced-8cf0-c539fe53a32b", - "modified": "2021-01-06T18:28:40.166Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6e488068-567e-48fe-a233-fdfdf13dfa81", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--fa14fa20-d988-4411-8dff-bf7d0b42b706", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--08ef9aaf-40e7-4887-9709-7d6a70f44039", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--8f91cec0-103b-4e5c-beaa-8d821f24d8b1", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ec9533d6-9fbc-4845-9bbe-2689e24b17cb", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--ad815c9f-0f21-4bb8-b2b0-5e9225c06018", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--ec9533d6-9fbc-4845-9bbe-2689e24b17cb", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.150Z", "id": "relationship--eee56faf-032a-4e51-a528-95b22206cd5c", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.150Z", "relationship_type": "related-to", "source_ref": "course-of-action--ec9533d6-9fbc-4845-9bbe-2689e24b17cb", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--8f9d9ffb-4fc8-46ba-b356-ce4d2a90102c", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--040f2f41-2837-4766-9dc3-5dfa3b63670c", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.167Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--55de0c52-8da9-4e6b-ad83-7394ed60b2b9", - "modified": "2021-01-06T18:28:40.167Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--46819d95-42d1-46c2-a1d9-d637664ff37a", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--b10d97b5-2650-47fc-beb3-d1d3dbcdc495", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--7c1584b8-1c1d-4606-91f2-1d8ecddc6d76", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--3ef877e5-ab64-425e-a17e-511df3ad6afc", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--1e5a0cce-e2fd-44f4-9371-1b561ac2a7a3", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--91f264bb-c167-42a5-94ef-5566f63b8a3e", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--8a4d29d2-c723-4418-bab7-d627fe559d70", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.168Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--5c5635a2-eaac-40e1-b7d3-6a9abe42514e", - "modified": "2021-01-06T18:28:40.168Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--293d2bf0-09fe-474f-bd92-e6372bbba531", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.151Z", "id": "relationship--7a09bb8c-5483-4b4b-a3e7-cb06549f0296", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.151Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--c4b21d53-9245-41e5-9248-c7c3f722fb5d", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--189de330-e7f7-4cba-82de-590df21f233e", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--7c2f9c2e-c32d-4a39-a011-a0fe81f16a9f", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--743b0184-e6c0-4e30-84ae-7c72dae5133d", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.169Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--c09cb7d0-c80f-456a-983c-9d7b016e53ab", - "modified": "2021-01-06T18:28:40.169Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--797c4ab2-9145-428a-9660-096277d6783a", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--9bcde3d0-926c-4371-b96b-204dc9f961ef", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4e0a45ea-75b2-49ca-aa5a-e059f66a0312", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--24a7189a-92f7-45c3-bfac-0a514b7724fb", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--e40125a2-f3a2-4177-9ee5-d3dc40b3bc94", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--17eac0d7-128a-4d20-9eb3-5ff7f345d464", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.152Z", "id": "relationship--8bc58156-9aba-4a6d-a282-c482468c9615", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.152Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--0029dda8-d1ee-4f6d-b762-d110a1bfc8cf", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.170Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--98b4157e-b593-4176-9f8a-d3bc2a748048", - "modified": "2021-01-06T18:28:40.170Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--262163bb-923a-402a-b02b-f33bec859a93", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--078be5c2-34d7-4389-b7ee-c1b56d0fe8b5", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--407bbe1c-93d8-436c-9156-fc2ea9130337", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fee898d2-1192-4ff3-9e8b-77673258c4b7", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--8e1244dc-e4d1-4fd2-9fae-1edb19bbf65c", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--fee898d2-1192-4ff3-9e8b-77673258c4b7", "target_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--4422a9f4-4d31-4d6a-b1f6-38e50f4b0d66", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--fee898d2-1192-4ff3-9e8b-77673258c4b7", "target_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--5fd40421-fbd1-45e2-accf-476020d5e6f4", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--30005af5-0218-4d18-904e-8e3723f6df72", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.171Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--11150521-2ad0-4787-b7cd-74bda6edd48a", - "modified": "2021-01-06T18:28:40.171Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--30005af5-0218-4d18-904e-8e3723f6df72", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--ff642b06-a68b-4c68-a0c1-ba4ea66420e3", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--5c5c83e6-a2a0-488d-86f9-5c58440a8c3c", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.153Z", "id": "relationship--e1f51991-b0d3-452c-a7f5-b406793c4eb2", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.153Z", "relationship_type": "related-to", "source_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--cccda3a5-ec77-4697-aedd-00e06bebd621", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--4cc5f757-b2d8-402e-be09-425050f9dfae", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--20d5f106-3b09-4c73-a674-f225093c29e6", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--f10a304d-e0b9-4bc1-a9e9-efa2d4115dac", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--a0457ee0-81a1-459b-b6fa-d537305c8242", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.172Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--bc31d6e1-1416-4797-9753-daa7221b7c63", - "modified": "2021-01-06T18:28:40.172Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--a1bc86cd-6659-4ca6-b566-99b7f30d99b1", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6c9a732d-09b7-48a6-9cde-c003b82c3f57", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--c28bf7ca-7286-4e57-8a1b-e264226409f0", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--6c9a732d-09b7-48a6-9cde-c003b82c3f57", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--af53bfa6-ce84-4b5e-aa68-6bc7c1c7d04b", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--6c9a732d-09b7-48a6-9cde-c003b82c3f57", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--35e65b20-8883-40c2-9e92-14bfeafde705", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2978ea3c-51eb-493d-bb79-27f6b2930914", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--24803469-bbc7-47dd-abed-e1a5a701123f", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--2978ea3c-51eb-493d-bb79-27f6b2930914", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.154Z", "id": "relationship--7c9a1c53-3213-4c95-94e0-12be5f6fa254", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.154Z", "relationship_type": "related-to", "source_ref": "course-of-action--2978ea3c-51eb-493d-bb79-27f6b2930914", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--929e5766-d78c-4406-82b6-a0bd62c7a1de", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fc202adf-2d7e-419b-9244-496893b8cec3", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--76eaa373-3f0b-46d5-8643-4b84aa9bcce5", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.173Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--d9bc91aa-7a14-4dc0-837d-c24466a88208", - "modified": "2021-01-06T18:28:40.173Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--086bc81f-f636-41c5-8656-aa493f3ac25f", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--6ae44c54-2341-448d-82b4-3481b16337b6", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "target_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--3676db63-f8fa-4a7b-a609-6bd9f5d636d9", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--7a296101-da9e-428d-a5a2-3e3771d49f77", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--58fd0570-7c05-4d65-891c-8ed42855ef5a", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--d726ccec-1ff9-42a6-bb5d-00b4d2cb31e7", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--187b2e93-7776-4cbc-a66e-f8732db9cf68", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--fb27cee5-0d0c-443f-b227-920d9447866b", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--735c075c-c7a1-488b-b552-b04dfa3daee5", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.155Z", "id": "relationship--d0a7b42c-f241-41d4-b607-76f88260fa01", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.155Z", "relationship_type": "related-to", "source_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.174Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--00dda7bd-2e8f-40d0-9534-9ad365eefb60", - "modified": "2021-01-06T18:28:40.174Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--57152d93-4dde-4718-a7e9-0f6354d6f6a5", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--06805c3c-a5b4-447f-8447-43ad274a510d", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--f5618cd9-f273-4fac-a01f-42f0db4f9dbe", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--a38804cc-d411-48a8-9288-0c47211419dd", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--c3e35fab-bca4-43af-b807-1aac907024ca", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "target_ref": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--64feae03-ffb0-468f-b710-bce6112289cf", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5ebc0507-1e83-4119-8d12-01ad2067e12e", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--da04bf42-7ab5-4fbc-ab46-2de47b488290", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--63c8bd7d-380e-44a9-8dff-173aa5febbb5", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--e5aa5d09-6b96-49a1-8c18-500727f79b51", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8a786907-b895-448c-9035-c961020ee162", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.175Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--f281b496-03e3-4b6f-a5b3-ef2909a345bd", - "modified": "2021-01-06T18:28:40.175Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.156Z", "id": "relationship--6a07d4be-a5ec-4fd6-b499-9729dc9d4ef4", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.156Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--accea3ff-c0cc-4ebd-ac29-acb2b59b1691", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--375d7fd2-c16a-4cf4-82ee-70efb33f7322", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--2fe5430b-76f4-4dce-90ab-bd3d51d6f121", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--6070b56a-4e5a-499a-85e5-bdd9fdef968a", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--dfa4790b-5d5d-4750-ba02-b976c0e6575c", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "target_ref": "course-of-action--130ef39e-7266-4145-9e5c-fb3737413cd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--993996c1-efd9-46d9-b1de-9d615ced1e66", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--d3edcc3b-5b0b-4cc0-bf34-4a967bbfd3cf", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", "target_ref": "course-of-action--1d54319c-a5e4-431b-aaab-078057dadbbf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.176Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--a35ed53f-93d9-4c5e-8e61-b6598d7e57ce", - "modified": "2021-01-06T18:28:40.176Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--418ec7e3-16b8-4d1d-bae1-c3e7647cce8b", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--01132709-d72d-47ed-ae22-c2f191eaed6f", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--985280cd-bc81-407b-9de7-fbd671774c15", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.157Z", "id": "relationship--cc2ccb19-6b44-4f27-9ee2-771e763b064d", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.157Z", "relationship_type": "related-to", "source_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--5ada6701-9bdd-4f80-91e3-c22407e77f9d", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--cdaabd06-e54e-4669-8cc0-3ea6ee1ba583", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--9f3d8873-d31a-441a-8d85-9bb63382e44e", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--80aa6f0e-e0c4-49f9-8c54-2fa369bbd5fc", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.177Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--e5167a67-d35d-4063-ac20-d26df886b9f8", - "modified": "2021-01-06T18:28:40.177Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--4e54f742-37aa-4cab-9b85-fb9446bd39c7", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--e3328fce-d928-4c55-b69a-bf3b9c7bfbbf", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--2167e7ee-dbaf-4dc4-8253-9849c16132fd", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--4dca207b-6b3a-4bc8-9c3e-1ca3fc959162", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--dffdc6a0-ff22-49c9-bfbe-997624f9c298", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.158Z", "id": "relationship--7e0885c2-1555-496d-b1a2-6af4f10aba4d", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.158Z", "relationship_type": "related-to", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--71ec94bb-2e0b-451e-92e4-766b317fd46d", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2832f2db-4b09-4ca8-af8a-3616a97765a6", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--76b48e56-5eb2-48be-9a0e-d552d9d9968a", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "related-to", "source_ref": "course-of-action--2832f2db-4b09-4ca8-af8a-3616a97765a6", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.178Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--019470b5-8474-481e-9b6f-f30de492f851", - "modified": "2021-01-06T18:28:40.178Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "related-to", "source_ref": "course-of-action--2832f2db-4b09-4ca8-af8a-3616a97765a6", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--fc542b4e-44f4-4240-ab18-ac9af2ce0de9", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8dd6a0e1-45c0-4b2d-b9fe-065b942e36d8", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--786a6e6c-6d0b-4b79-b4d9-cb59a91d514b", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "related-to", "source_ref": "course-of-action--8dd6a0e1-45c0-4b2d-b9fe-065b942e36d8", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--4aefaa5d-e549-4b80-9ea5-b5f533fe60df", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "related-to", "source_ref": "course-of-action--8dd6a0e1-45c0-4b2d-b9fe-065b942e36d8", "target_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--60e7223a-f7c8-4afc-aff7-707b1d2acab9", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--638c2976-8d66-4455-b293-cb7cf7e206fd", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--c391f815-f38d-45ed-9349-dbbb4e81bb3e", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--82d8702d-ab63-4606-a13a-1961c3b83c80", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.179Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--12a38e62-62a7-48dd-9270-a3d03d0b1a19", - "modified": "2021-01-06T18:28:40.179Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "related-to", "source_ref": "course-of-action--82d8702d-ab63-4606-a13a-1961c3b83c80", "target_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--3678daaa-59c1-4928-903c-54dab8276538", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b75acc84-8bcc-4a61-921f-97c588ea3bda", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.159Z", "id": "relationship--1270e5bb-766b-405d-8649-e1e4959aad88", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.159Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8b3dd183-c43e-4693-a44d-e36aafb04efd", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--2b225df5-a537-468c-8f39-f59ccdd83f57", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b3dd183-c43e-4693-a44d-e36aafb04efd", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--38b519f9-3897-4114-a5fa-e2bcdd241ec0", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b3dd183-c43e-4693-a44d-e36aafb04efd", "target_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--2907b433-fc09-4b2c-87d1-9efda670b31c", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b3dd183-c43e-4693-a44d-e36aafb04efd", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--cc1e4de8-c1bc-4cd7-a9f6-ba497c6efc3c", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1d188a84-4402-4ba1-a582-91521a1e74d3", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--fc3abb43-8d6d-4276-9c9d-77e28535c4a3", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7525fae1-a264-41f1-adf0-3d4961ac6da1", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.180Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--46e34046-01b2-48bb-851d-19498b34b134", - "modified": "2021-01-06T18:28:40.180Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--7525fae1-a264-41f1-adf0-3d4961ac6da1", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--acde3b59-64be-45df-a467-7414d3cabbeb", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--13962aaf-dac9-4a9e-8dce-4b9528b81407", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--c6f4ea66-bde6-4770-9c28-06b2cc64c5ce", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cd50e0e9-8d31-4bba-838b-6d325dcaff18", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--43539bfd-cac9-4810-846f-299eef961ae7", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--d43cf49e-312f-45e3-9bb7-f3d8093d1efc", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--c97a3b9e-080a-48fc-a5b4-24ccc510fa91", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--3754871c-a6e4-4e8b-9f50-1803384fbadd", "target_ref": "course-of-action--cd08a0a4-c488-4063-bf70-3f159a3c3460", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.160Z", "id": "relationship--5e320e7a-6d70-4f02-aa82-bcea07193962", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.160Z", "relationship_type": "related-to", "source_ref": "course-of-action--3754871c-a6e4-4e8b-9f50-1803384fbadd", "target_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--80e858b1-b56e-4a08-8565-9b4ed32d1388", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.181Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--8b9461d9-3887-4679-975f-2e98806c636a", - "modified": "2021-01-06T18:28:40.181Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.182Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--990184e5-dc60-40d8-86a8-cf47e7a80a24", - "modified": "2021-01-06T18:28:40.182Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.182Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--63d7ceb3-7878-46d3-8b8d-a827d5060ac3", - "modified": "2021-01-06T18:28:40.182Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.182Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--8dec8060-2fe6-48d3-a1b2-f6a4fe0b31fd", - "modified": "2021-01-06T18:28:40.182Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--44a0dbcb-2a46-4d49-9a24-07daf59c2d2a", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--87a0c40f-8ed2-4e8a-9c95-919c79bdbd6b", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--5bcd4c52-483a-4fc7-9135-010e93071f20", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--53c1adad-1ef8-4a54-b3b5-04ae2cf608c5", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--6d910617-4b65-40a5-8ab1-c83bea1f4966", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.183Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--cfa8867f-ab42-43c5-96b8-df5248f9fa8b", - "modified": "2021-01-06T18:28:40.183Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "related-to", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.161Z", "id": "relationship--64a54576-bb53-4382-bc5a-703f78dfd534", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.161Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cf8e7240-fa34-4a6f-ba98-70fecb9b5483", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--e049c0fb-4433-4d67-94cc-d33d841f5727", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "related-to", "source_ref": "course-of-action--cf8e7240-fa34-4a6f-ba98-70fecb9b5483", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--fecf8bf4-ee5b-4e40-96bb-e981a7af7729", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--be874b02-a6c7-451f-9a6c-206eae3babce", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--e95e8918-365f-408f-b558-fdbe6e822d9e", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "related-to", "source_ref": "course-of-action--be874b02-a6c7-451f-9a6c-206eae3babce", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--fdda0041-0c78-453b-a6b3-8ee9ec45b6d2", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3ff445d1-54bb-46a9-9be9-03aa622c6b57", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--1f5e800b-b83a-40fe-8bb0-f744ff077566", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ff445d1-54bb-46a9-9be9-03aa622c6b57", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.184Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--296599d1-8302-4dcd-aab4-c96e84b5e519", - "modified": "2021-01-06T18:28:40.184Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--64e89e70-fd61-4087-8a1f-e19d247cd847", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--b8b3538a-a079-465f-a916-4143141c2fb1", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--467ffd92-1aa5-487a-95ff-0801b6f4c353", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--289e22d0-7fce-4adf-a86e-853c68b41d20", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "related-to", "source_ref": "course-of-action--467ffd92-1aa5-487a-95ff-0801b6f4c353", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--131a7bac-84d7-4bc7-baa9-a762efab52ff", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8446c8db-d1fa-4245-976e-b329f299e22f", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.162Z", "id": "relationship--7a6779a8-6ddd-4146-8996-a335ed944d33", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.162Z", "relationship_type": "related-to", "source_ref": "course-of-action--8446c8db-d1fa-4245-976e-b329f299e22f", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--75e4f1ce-f5fb-4a1f-8e14-7f9dd220b77c", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "related-to", "source_ref": "course-of-action--8446c8db-d1fa-4245-976e-b329f299e22f", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--30a342e8-94ea-48b9-9738-f3abdbc9bb05", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "related-to", "source_ref": "course-of-action--8446c8db-d1fa-4245-976e-b329f299e22f", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--7a35c849-1ab9-4c59-8451-dd0c9c84d29b", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9b5253d6-4e0b-45a3-992d-5d4756c55899", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.185Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--fd2774b8-c858-4846-afb1-575af41e46a3", - "modified": "2021-01-06T18:28:40.185Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "related-to", "source_ref": "course-of-action--9b5253d6-4e0b-45a3-992d-5d4756c55899", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--a6531ae4-892b-4862-b021-e5466cea908d", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "related-to", "source_ref": "course-of-action--9b5253d6-4e0b-45a3-992d-5d4756c55899", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--b45cea63-73ec-4134-b13e-0e4a3c29b66c", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--11e197ff-a986-4cff-b03b-8cb239b7bbb5", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.163Z", "id": "relationship--7e2f7a74-ddfe-4014-8423-f78518da89e6", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.163Z", "relationship_type": "related-to", "source_ref": "course-of-action--11e197ff-a986-4cff-b03b-8cb239b7bbb5", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--be20db28-6944-417b-8410-2dd4a07aba5a", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--73324d1d-42e8-4bc8-978e-b92a53d064bd", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--bbaa0d22-e2d7-4c00-b0ba-2036240390a2", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--73324d1d-42e8-4bc8-978e-b92a53d064bd", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--80ced81e-b92f-40a2-a7f8-a3aec4b6a21c", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--73324d1d-42e8-4bc8-978e-b92a53d064bd", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--9ac8941c-7d41-4a11-a31a-37571f92b29f", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a877e3f6-bb3d-40c4-9353-25e59509c3f1", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.186Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--b2f95634-6fc8-492a-b8fd-171cee7cc3db", - "modified": "2021-01-06T18:28:40.186Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--a877e3f6-bb3d-40c4-9353-25e59509c3f1", "target_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--415fe422-7589-4b27-9d7f-439dfdf63f74", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--a877e3f6-bb3d-40c4-9353-25e59509c3f1", "target_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--9bcb4a5c-705c-4afd-a990-f15c8f2d0a50", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--0e03ff25-55c9-4c0f-98de-38e18af43eef", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--995f775b-bea0-45d1-ba04-12635ccd65dc", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.164Z", "id": "relationship--aabb0ef7-ce67-403d-9256-d6363706de15", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.164Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--fa2ed162-64a5-41ce-af2e-dcef3f0e91e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.187Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--395c50bc-19be-4b4b-8e04-7140a69c37c1", - "modified": "2021-01-06T18:28:40.187Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--41941cf2-5bcd-49eb-b421-d5d5660695eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--ee0d4008-93db-4d74-ac60-7000f9410315", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--a23d6d85-e9c4-4e81-8d43-7ca156e6f40d", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--af0df979-4e31-45d0-9da5-613b94f5853b", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--884a533e-76b2-4ebf-9342-5b80c7d40b78", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--e5470b91-8bd7-43cf-b555-9fd2d092f471", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e57ae81d-8bf9-4ba7-a28b-ac012ab92434", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--b8c2e59a-5c71-4421-95c7-0a45d7a1fc6e", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--31262e15-7c24-4b4f-9e41-6574b044c267", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--e2cadaee-1549-42ab-a39e-7e6d2eb3f2f3", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b177dd05-6ff6-4481-a3dd-ebd36b154e40", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--edc7c7b9-5de6-4f77-b9f0-559e0ee68d92", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4fe48d03-0be9-4179-9aee-9f360f5ca226", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--5315f4f0-f0be-4229-8042-eca087d139b8", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.188Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--cee42e74-1f12-45a3-953d-a7f538412e01", - "modified": "2021-01-06T18:28:40.188Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.165Z", "id": "relationship--25d9647e-8382-4f4a-ad87-62f42b0275cd", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.165Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--5f43cf10-3204-41f7-a8f4-896addd98fa6", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--6ffab0a2-69a1-47b3-912f-c82d5e81d89d", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--ebe7934b-e375-429e-98ee-839a6952fdf0", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--4cd9035e-0f32-4d28-b313-478ce610265e", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--232ac338-bdcb-41e5-a6a0-c2438a7bd290", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "target_ref": "course-of-action--7a27e508-ec64-4ebd-a060-9b6473ca3e14", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--7ded0862-7917-41c3-a4a1-c246ce932e46", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "target_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.189Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--0c16b430-720f-4c8f-bc70-bd204b35e0df", - "modified": "2021-01-06T18:28:40.189Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2d4e0503-f49b-4ede-8436-3e0507e1a460", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--dd7f2cfa-eb68-4c59-8f21-add37f6ceadd", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--2d4e0503-f49b-4ede-8436-3e0507e1a460", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--275270c8-29b7-4f29-965c-dbc6e7c88b6c", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "related-to", "source_ref": "course-of-action--2d4e0503-f49b-4ede-8436-3e0507e1a460", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.166Z", "id": "relationship--56376979-64c8-4d03-9af5-39dc7835caa8", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.166Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c3b2ad51-bd6a-4d62-899f-8efd59e66268", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--662b8d9e-d695-4a94-84a5-e9996bf05aa5", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--c3b2ad51-bd6a-4d62-899f-8efd59e66268", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--d4b5d05f-15f5-4530-a400-e1a11862e54f", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1af043b9-f3d7-4d48-804d-ea9f2b7abfb1", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--fc0dcaf2-110d-45f3-9ed2-47e12f4aa3ba", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--77d915f0-8aad-4113-a74d-f60d631d908b", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--886edd67-143a-4beb-a3e3-701981697c2d", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--588e7b59-a403-4c43-bc0a-b2e40fac6a4b", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--e13e0dad-29e5-4db9-9c04-d62a4a105165", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.190Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--a727877c-1b2e-4a4d-880d-b4bc04680e04", - "modified": "2021-01-06T18:28:40.190Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--3ba88e90-bedc-4261-9434-c4cbafb120a1", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--2ecd80d9-b132-4e41-bf0f-ae0875cabdfa", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--2707f52a-5b60-4b6a-976b-f6c885c5e5cd", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--79346e17-9f0a-405c-b426-71449f6c35a4", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--38304f6b-578b-4892-8a32-19008dd0379c", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.167Z", "id": "relationship--72bb5ae5-e4e4-40e6-8e73-3f0ca19becb1", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.167Z", "relationship_type": "related-to", "source_ref": "course-of-action--38304f6b-578b-4892-8a32-19008dd0379c", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--61126c24-5b64-49bf-aa06-3e1f70b7ab1b", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8e678e8f-b7fb-4506-b227-aa9c63d18cfd", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--cd9559cb-9c55-428f-a026-70446d8bf60a", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--11011997-c3fd-4074-9fd6-8c784def38a8", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--5ee0782a-0a88-4c3e-9600-bacb899807b4", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--11011997-c3fd-4074-9fd6-8c784def38a8", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.191Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--fdd0d910-7786-4761-b886-dd38ca3baa60", - "modified": "2021-01-06T18:28:40.191Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a3aa5d2f-dd1c-4c9f-9dae-aa4486404856", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--6c7e65e3-ca31-4315-8e59-7f3033d08efa", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--43850135-3d84-4071-8f5a-dc54e8dae86b", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--f38c9fba-79da-449c-8213-a0e283a21929", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d5ac017e-396d-4617-89df-b22563254c64", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--a97c5203-655d-4f98-99a3-e7ea731e39f8", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--312f5f38-4d86-4d18-8773-53cfdb4e0359", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--460adf0d-0727-423a-b1bf-8ee09f8461cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--5ceff498-3c6f-470c-b098-1f90b4daa915", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--b75efdf8-1cfd-4625-a822-a3c37e337061", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.168Z", "id": "relationship--af09ee7e-fcea-415e-af05-e5409492b4da", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.168Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--f68f6ef6-ea2d-4136-8461-fff4dcbd7eb5", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.192Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--60573b42-d050-40ff-a094-753f6e9bbf65", - "modified": "2021-01-06T18:28:40.192Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8a8575c2-cd06-42c4-b22d-a1ef322d5573", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--64a4229f-8874-4ef9-a24c-0bea9708fe5d", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c9097f98-8ea6-432c-85f0-1a9b7b721907", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--0466e725-103a-4553-99ae-64d9a66162cf", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--c9097f98-8ea6-432c-85f0-1a9b7b721907", "target_ref": "course-of-action--3fdce913-c30e-43d2-af19-458b773e8875", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--5003a769-4305-4501-bd27-0c8b6448babe", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--c9097f98-8ea6-432c-85f0-1a9b7b721907", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--02aae6e4-7d65-46cf-b397-bc4329226d4b", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--0db78b5f-4846-491d-8076-7afc5afb829e", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--00d129eb-1d43-41b6-a3f4-860f3d5af256", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--d89bf6d2-a733-4f70-9d54-8a6aa539d279", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.193Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--fbf49533-c45d-4fc5-b235-21120dfc7a15", - "modified": "2021-01-06T18:28:40.193Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "related-to", "source_ref": "course-of-action--af28e5b1-8c46-43b7-8adc-f7f610763c73", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.169Z", "id": "relationship--ce55c344-5c72-4acd-8b2d-cad2c13ce21c", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.169Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3ee83308-2bde-4cb8-9d57-6b35801b9e41", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--691b8bb6-bf21-48be-ac17-07114ab82d8d", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b3aeeb5e-cca2-48c3-bdd2-c6aeb49328bd", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--bdd7a206-2d6a-47b3-bd16-b3a189f7da0a", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e0975d56-9282-4816-9627-a6a626cfe051", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--c9ff6461-1838-4787-82bd-00196c11ed2a", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8ff8ccec-d28a-4275-928a-11acd459eb53", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--c4e06b19-cdba-41ed-8ed0-975dcb5d6bd5", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--80bb3d91-c455-4993-9fdc-38af93860069", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--8c93e6ec-f77b-4a4e-a561-b2d711318bb2", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--996a380f-3316-4fe2-94f5-a58a548aca82", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.194Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--de995708-686f-49b1-af7f-f3e4cb3c5ac2", - "modified": "2021-01-06T18:28:40.194Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--ef8f50af-3b01-43ad-ac04-7a9923649102", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--eb84dffb-ba30-49ca-a19c-fa0088ad696c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--bd5c3e61-a158-447f-8041-81870a7359e7", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--18d2ca42-2ec9-48ce-bf51-91a288490bb5", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--c0c660f8-961d-4ac8-82d6-1c4a84cfc65e", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.170Z", "id": "relationship--ba2aa00b-ebbd-4c6f-8990-80f2279be54a", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.170Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--be918747-5a7b-4686-a9b6-8d06789d3b6f", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--2dbf675a-e4b1-4071-b4f2-b1d46946cbaa", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--6520cb2e-7bef-41b2-a33a-c7bd8b845712", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.195Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--82867337-7cf0-4ef3-ac7d-30364eb8f822", - "modified": "2021-01-06T18:28:40.195Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--2d94eb8e-6082-419a-ae6b-7d13542d8e8f", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--0d37fe99-1bdf-40a4-8c33-155a8d74ca0e", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--053d2d08-6a6c-45d9-849f-38ae38f5f706", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--d9f2740e-fa8d-48a0-b549-bcc90ca5fe1f", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--7843c774-ff77-4f20-a139-426856b42bd8", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--229151b2-b4b9-424d-9af8-8a5d108bf90b", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2fe3f279-787a-4616-97d0-aaf69ab3f352", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.171Z", "id": "relationship--d6a4e9bb-23f7-4912-9227-a92efeeb0815", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.171Z", "relationship_type": "related-to", "source_ref": "course-of-action--2fe3f279-787a-4616-97d0-aaf69ab3f352", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--bc8fd8b9-902e-4fe0-8fb4-b4f3ef6d1f3f", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d01cf00e-df03-4c50-8c29-ad1be7022128", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.196Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--e9ae3624-78fa-4a38-8457-eb570b238ae3", - "modified": "2021-01-06T18:28:40.196Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--facc8858-fd5d-4dfe-8566-9586c5bb16ae", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--88688ac4-efc4-48be-915d-5a99c577b506", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c5b00042-7490-4430-86ae-c26da4507084", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--43d6884c-b8a8-41ae-a8b6-fb1c4511c517", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ceddafe-0d4d-4467-9390-dee49afdad9f", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--23329f86-3205-4c8e-a97f-d81ed1eeb933", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c65c7e0a-1b79-47b9-88e7-15358d377d18", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--894096b1-3d84-4fab-945d-bd60a7adb721", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9808bb33-f5bf-4107-a2f9-a453a811e9c1", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--4cd77c22-319e-4364-8eab-1c2eacb7fb75", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "related-to", "source_ref": "course-of-action--9808bb33-f5bf-4107-a2f9-a453a811e9c1", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--5a6d3960-3549-4ce4-8b42-f042ddcda591", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "related-to", "source_ref": "course-of-action--9808bb33-f5bf-4107-a2f9-a453a811e9c1", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.197Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--76de26a5-a7f7-4882-8c65-44c7ac0d97d3", - "modified": "2021-01-06T18:28:40.197Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--950d3fe9-dcf3-4ec9-abc6-317a407ecacf", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--8c821208-dbfe-48a8-b75f-04d8383472a9", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "related-to", "source_ref": "course-of-action--950d3fe9-dcf3-4ec9-abc6-317a407ecacf", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--77c6f24b-aa31-4a9f-9ad2-79dafc3d4acd", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--dba6c679-5ab9-4738-9bb2-c737ce4ef786", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.172Z", "id": "relationship--4d648f17-b444-4db7-8959-b0fbe2e38e0f", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.172Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ffb532a3-ec96-44f8-9ffb-e08a9562b168", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--21d317dd-3637-437c-ae1d-a3394983108c", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7754e274-6c2d-4a41-8046-8c943b39b529", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--e6a5bb65-6ede-4aad-b1db-9cd9cb901c2c", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--7754e274-6c2d-4a41-8046-8c943b39b529", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.198Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--b6d861c7-b6c0-4227-bf31-c8db955e3210", - "modified": "2021-01-06T18:28:40.198Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4f9c583c-10fc-47b0-857e-ffd7f42ecc6d", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--444e7e6a-133d-48ca-9cac-782420635c0c", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--26cb95b5-297a-497a-b653-6617252d1cfd", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--0b3268b0-9cf7-4d53-bbe1-9372b13390f9", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--aa4569d6-2841-4517-ae05-0ac4bc3b0dd1", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--00c17aca-2c79-4a74-963f-bd0b31fcf33f", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0c879942-c199-462a-8799-00ae56ef7aea", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--00f81f78-610e-4b91-8703-ca59ba01cae6", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--ddf3fef5-a9c4-4359-b233-bcc3fd7bbd7b", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--bde2888e-63a8-480a-bc49-7715eefea246", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.199Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--a7beb79c-9317-4583-bbca-b08911e2beac", - "modified": "2021-01-06T18:28:40.199Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.173Z", "id": "relationship--00b5b774-3b60-4da7-98f7-f555916846e9", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.173Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--af2711fe-17e8-4d05-b44f-43d78b055174", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--a40c945d-d9d8-4ace-9f25-1f2cbc39c9be", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--1f98795f-87f0-430f-bb1d-bc78eb8756ad", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--fcd102a7-1c8a-40e5-a910-34c8cf4abdd2", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--981a294e-334d-4ebb-bc23-b3f47e6c1a29", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.200Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--dc930886-8962-453c-a0ff-bd8ade9d68b3", - "modified": "2021-01-06T18:28:40.200Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--40b9d985-4ff8-481a-ba72-acea89e12727", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--bd4bc82a-02fe-47c8-ae6e-bdf0ac01a369", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--ddc9c95e-b628-43b9-9116-183db864bec2", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "course-of-action--270cc3cf-691a-4ae6-804f-30d7d0515496", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--8abcac63-bb2a-41ab-883f-1fb598abd386", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e865399f-bbea-4fe2-b9ba-bdfe19e38f2f", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--7554d082-93ea-41a1-af15-a0fec89b301b", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.174Z", "id": "relationship--cbddbe58-fcf8-490e-ac0c-1a41d63128ed", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.174Z", "relationship_type": "related-to", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--966a0e9b-e770-471d-a92c-a4be8d3215ed", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e9863b6b-73b2-4d63-afc6-941d5b203562", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--778b23e1-ad8d-4bbf-ab3c-c9ecaf26b3a3", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--22e42812-ea85-40d9-aa88-d28ed380bcac", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.201Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--566a6590-61e5-4b9b-9732-510c73ea8247", - "modified": "2021-01-06T18:28:40.201Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c73d31a1-1359-456a-b950-a8b2b8a57f91", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--f4b45045-ba47-4d89-9d93-cf43c80db945", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "related-to", "source_ref": "course-of-action--c73d31a1-1359-456a-b950-a8b2b8a57f91", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--f5c27c9c-e415-4fed-840f-f4e89863702d", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "related-to", "source_ref": "course-of-action--c73d31a1-1359-456a-b950-a8b2b8a57f91", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--2af10f7c-660c-47af-8b38-3de7739b89fd", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7a3fd8c9-04eb-4580-ae50-edad6be18902", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--678a3740-579b-4c61-aff4-2ce32b2f0f66", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a3fd8c9-04eb-4580-ae50-edad6be18902", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--5654cf7c-3b4a-4a0e-8d24-fa8b688b5f89", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--225b80a7-09ed-4056-843f-0d09130a403a", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--78c4ec75-1da1-461b-a137-1ca8b3cf6cd6", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "related-to", "source_ref": "course-of-action--225b80a7-09ed-4056-843f-0d09130a403a", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.202Z", + "created": "2021-01-13T01:50:49.175Z", "id": "relationship--5f93b02d-bb10-495f-bf4b-effe6c61af77", - "modified": "2021-01-06T18:28:40.202Z", + "modified": "2021-01-13T01:50:49.175Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ce9d393a-7386-4cf3-9af5-f74372800409", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--62a671ce-ead7-41b9-8966-c0875d390a07", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--623708fe-33c7-4f71-a3af-549abd8f4173", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--7638870c-b9f7-41d7-a9fc-88da148c1bca", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--623708fe-33c7-4f71-a3af-549abd8f4173", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--d828aa85-a5b3-415d-8125-774728fb0674", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e21ac505-fd6e-4da6-b152-37a22e40fc03", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--0ac9c29e-5827-41b1-aab5-f8c0578a2b2d", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6c3d6fa8-1fd7-47d0-85d3-d2156872c112", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--f28adcd4-7d98-4691-9757-b65791049ff8", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1ee6301e-d181-4d2a-bb88-288d2250f2c9", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--3b0521c6-0893-4f6f-8214-87a6c3a0e586", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ee6301e-d181-4d2a-bb88-288d2250f2c9", "target_ref": "course-of-action--70e46959-a3b8-4ee2-a29f-a06f0cdffa37", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--3fccb952-0e4b-4567-8676-7f0f11cd59cf", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a7563839-c921-4654-be2c-5d685157eaf5", "target_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--da13fd5b-2406-43ac-9c30-fbcc2d2f7490", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.203Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--3e87646f-061b-462c-9948-169d84359f01", - "modified": "2021-01-06T18:28:40.203Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--de70b387-681f-4047-9a5a-c63898ee4437", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.176Z", "id": "relationship--63fb0c08-b6b2-47f5-9da1-d16997e75a52", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.176Z", "relationship_type": "related-to", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--b35c78ba-0088-4bfd-9b1f-96e633f6563a", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--8ace2fb4-5bb4-4b0b-ad94-3cfac8507e10", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--e5768b9d-7e24-4857-a6bc-9b71243df12f", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--e7506655-3fc9-48e8-9bea-d44dc83b0283", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--083bfae6-0d99-41b2-895f-8e2676c16b53", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--9e8b4a5d-3363-4afb-9165-e2ace3043ab4", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--662de11b-418f-40e6-8bd5-0b82d2a3e4f7", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--08ad4144-3ca2-4025-b738-8b9af2aa73ec", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--662de11b-418f-40e6-8bd5-0b82d2a3e4f7", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.204Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--490bca2d-9299-4c98-be6f-2f462cef5ee5", - "modified": "2021-01-06T18:28:40.204Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5ed15491-c5c8-4f63-a743-ba6cd1c63e9a", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--967bfcfb-03dc-4a89-bebc-ba68e9f9cbf3", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--5ed15491-c5c8-4f63-a743-ba6cd1c63e9a", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--078a3e7d-644c-4acc-9da4-1cccfe242c3f", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b226db2a-51e3-4d8a-bc2d-fcabf341ecac", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--78ac914c-a839-43be-9e5f-fe655d169183", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "related-to", "source_ref": "course-of-action--b226db2a-51e3-4d8a-bc2d-fcabf341ecac", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.177Z", "id": "relationship--9a8ba350-dfe1-4d38-979d-e205a12c7562", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.177Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c65a679d-5ddb-41ee-a630-260cfe43698c", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--9b48aa97-9ee4-4f53-99fb-b2932f1b4fd4", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--c65a679d-5ddb-41ee-a630-260cfe43698c", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--f4339dbe-a7ee-41af-be34-f5d1bff2a1d9", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--654226fb-bad4-4518-838a-dde8837257a6", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--fd1c9e72-d1b6-4446-a4da-4279e78fd6cb", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--654226fb-bad4-4518-838a-dde8837257a6", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--49acbac5-61f6-4ed5-9974-178f6c250f51", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--268cd6f6-fc29-449c-8611-30ad8e78ecbb", "target_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.205Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--1645a437-34db-488f-a83a-f471503af5ba", - "modified": "2021-01-06T18:28:40.205Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--268cd6f6-fc29-449c-8611-30ad8e78ecbb", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--3526c64e-4936-413d-8962-e47024681d33", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--268cd6f6-fc29-449c-8611-30ad8e78ecbb", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--62849872-ad82-4a3f-a948-42b67e140b98", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--e4e0eefa-8a24-4235-8463-50d9e0cf7815", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--3aa4477f-d138-4f98-a2d0-2adfedfcd9c3", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--b1f800e8-69ea-43c5-967a-ce3982669fc6", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0df6b413-f7a9-4807-b9f9-5fadffa5bd46", "target_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.178Z", "id": "relationship--77af4961-cbec-4305-bb42-122d1959564a", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.178Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df6b413-f7a9-4807-b9f9-5fadffa5bd46", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--63b870e6-f2f3-4f9b-8f2a-2105ab5fbb65", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9dd55610-a77c-4d00-9c48-bd18ea510983", "target_ref": "course-of-action--6fcd046d-6747-4e0f-8e84-fcce2fe71fdf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--62562509-440a-4f74-bafc-3726fa998423", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--9dd55610-a77c-4d00-9c48-bd18ea510983", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.206Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--b6c5e0e3-7974-4886-a68f-2d7dc3344411", - "modified": "2021-01-06T18:28:40.206Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--66d88dd1-295f-4479-9217-cc9bbc65e9e7", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--368ae1fc-8846-4435-adf5-e0d7aa4592a9", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--f19d7e6f-d746-45ae-8ab3-62b4871ebd6a", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a4dc7d17-4ac3-4690-a109-9734b0b15511", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--718c82f5-e5ea-4786-a704-c6b1be1d2a27", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--41e57bbe-1902-4682-ab51-f8e0a157d5fd", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--08bc3f4f-e2f3-4c03-b898-6df171b333fb", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0bbdef49-236d-4c9b-928a-68577c22a16f", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--7f6c3cfb-1156-4c6e-bb2f-5466bf709e70", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7f474adb-c167-4ab6-b984-ddd0fd4a44c4", "target_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--31bf8cea-1399-48dd-a3a8-0e24a3c769d1", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--270cc3cf-691a-4ae6-804f-30d7d0515496", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.179Z", "id": "relationship--60b0b7e6-d7e2-4cef-bdc6-221186f5b7fb", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.179Z", "relationship_type": "related-to", "source_ref": "course-of-action--270cc3cf-691a-4ae6-804f-30d7d0515496", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.207Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--07769bcf-5b78-4917-9f3f-271d0897a411", - "modified": "2021-01-06T18:28:40.207Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--270cc3cf-691a-4ae6-804f-30d7d0515496", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--d9004490-e298-4119-b71c-d7ce04b90ce3", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--130ef39e-7266-4145-9e5c-fb3737413cd7", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--473f917a-f3a0-4f8b-84e3-063c168fe1ac", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--130ef39e-7266-4145-9e5c-fb3737413cd7", "target_ref": "course-of-action--2e34fef2-9827-463b-8d71-3c93a3d2852f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--8c8b3534-903d-4534-adb9-3f7cd79335ac", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d57f4fe4-c62c-44f3-a54b-73a8c84997c1", "target_ref": "course-of-action--130ef39e-7266-4145-9e5c-fb3737413cd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--128a0057-1722-4caa-84fc-0f105e558b8c", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--b08fdfbd-b0b1-4678-9f47-f31c4cb444f5", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--9deaf8ad-77b1-4b11-aa5d-3da7b499ddb7", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ba7d24ca-c4af-4449-91cb-c2f83b5b157b", "target_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--04829c52-6257-40c4-93f5-5fcddea2a534", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--72da9921-7b1b-40f0-bc40-f68c2f2c0703", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.208Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--25c812eb-d219-43dd-b0ae-95219848e4a1", - "modified": "2021-01-06T18:28:40.208Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--46f6b2bd-5b2d-4a9d-bf77-1f8995ec97c4", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.180Z", "id": "relationship--1d93f3c5-cb06-4bff-9125-14ffa09df72f", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.180Z", "relationship_type": "related-to", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--bef226a3-9c80-4c50-a9bc-9f0f75d0c421", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--629e0a9a-3348-43c0-b363-518c0447ea83", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--794eb761-8a55-4bab-b336-ef8316040f1b", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--629e0a9a-3348-43c0-b363-518c0447ea83", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--8a279263-cffd-4439-bc43-f3cc289b87dc", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--0bb90275-a45a-489a-a2c7-a3f97e722d6a", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--ed0f9a2c-5391-4c68-a22f-2f6a18610b5b", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--ba3dd09b-1c89-4448-b306-008d74f11267", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.209Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--e08b37b8-2a13-4e23-8871-f12b8a64bdd4", - "modified": "2021-01-06T18:28:40.209Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--60e66e0c-e9d1-4ad8-9f3b-361ea2f4c69b", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--0e22469b-1dba-44c1-811a-7990ea2fb95f", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--6c1b9f4a-20a1-4d9d-b3b8-5fa8717c5f6f", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--9d90293e-6744-4213-b7f4-e20959109983", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.181Z", "id": "relationship--69df5ce0-54a3-49f1-965d-daab7d0134c4", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.181Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--903ec6ed-d32b-40f1-9654-47fec33d9c48", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--1111c34d-1513-4a86-8267-3374f896ce60", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--36a69592-007c-4fc7-91dd-400a00aac6c5", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--ef01183b-6563-40d6-aae5-8244651d5e87", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--062fdeca-d65f-4f74-9687-62452304acea", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--40a4697d-b42a-4eb2-9cee-4205309ccf16", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1ba56810-06a7-41bd-90df-bd28f7a53547", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.210Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--b236b697-ccf2-4bac-8c1d-2056bf8cab9a", - "modified": "2021-01-06T18:28:40.210Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f4c8aacd-f251-4db8-9a1a-9bd8f8b67fb0", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--67df84d1-d92f-4f65-a853-627b1f0d39e7", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "related-to", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--a6926e88-8ce2-49a6-aaca-bc8f42061c28", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "related-to", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--762fa385-cccb-4b3f-b4eb-2df37cd0a3d4", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "related-to", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "course-of-action--c7c90bc6-0ed2-40ac-8f7c-c871bd767482", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--2fc1dda9-6383-4abf-8444-c4a22ba541b0", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7e2ea06b-36af-4c4e-9530-9c7fce5607b9", "target_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--d82d2438-9940-4509-8132-2daae49556ff", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--482d7ae4-f883-4046-af30-8f3b1ef9b77b", "target_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--176102a8-fc8a-4f04-96b3-8dd251f80a7c", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "related-to", "source_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "target_ref": "course-of-action--8503a2f3-4779-4d32-bd23-e19d898cd01a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.182Z", "id": "relationship--3ed97c62-a28c-4c80-8592-b8ad66e7931f", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.182Z", "relationship_type": "related-to", "source_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--31a7d13e-9be4-43e7-98f4-f68fa34a052f", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8ba7d1c5-504a-4b35-bd10-c1035db424cc", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.211Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--5a0e54b0-c863-4dbf-990d-f5b912822daf", - "modified": "2021-01-06T18:28:40.211Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--73dbf26e-392f-453a-ad9f-b174c10f6f4d", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--c09237b3-f55a-4812-8a7e-d36d1f64496a", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a14d8743-bd95-4783-ac70-9c57c6701a8f", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--e5c0fe68-4236-487c-a6f4-5678d02ad869", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--a14d8743-bd95-4783-ac70-9c57c6701a8f", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--e61cda1c-3d33-4421-a509-2798a2d0e673", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--a14d8743-bd95-4783-ac70-9c57c6701a8f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--62d24514-29dd-4cc4-873c-656d44b2af26", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--de0dfa40-135c-4e6b-abcd-8d4c8e393226", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--7dde820b-e173-4226-8d39-29182048c134", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--a9e37dc4-fab4-43b0-8022-4f77af68a349", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.183Z", "id": "relationship--f5e6b3e6-d4f9-40e4-a214-ed2a41509ca5", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.183Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--ef3b9c10-0b84-456c-bea8-49fdce690b40", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--dfbeca46-e7af-44c0-ae83-98de9242c94a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.212Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--8959b1bc-241b-4356-90e1-f05b4f94509d", - "modified": "2021-01-06T18:28:40.212Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--fee4051e-38dd-46b9-90a7-8c02f28001ea", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--8bf43007-b1ab-40b0-a337-64ba47507b2a", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--31cf5ee9-d1dc-47b4-9912-6755421afcbd", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--a53532bb-985b-4246-aea7-194403988833", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d2c588a9-6d33-4716-9737-e52117c43f8a", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--bcb26fe2-1862-4164-8144-a5dfbab493f4", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--03134bef-b308-40cf-8fa0-f99c7ed7c517", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--23d3b764-bcd3-4ade-a9b6-e1c2b813f36c", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0848e0da-6d3e-4677-88e5-f75e895b47a5", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--2a42ab6f-f226-423f-83ed-26b6d9bd8d95", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d606d6d8-a063-4c4e-be48-5478f4ba2fdd", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.213Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--721c0a47-52be-403b-8d9b-66de51340538", - "modified": "2021-01-06T18:28:40.213Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "related-to", "source_ref": "course-of-action--d606d6d8-a063-4c4e-be48-5478f4ba2fdd", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.184Z", "id": "relationship--dfddbe0a-774d-4530-acec-86d65b65976c", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.184Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f840ca2d-ee37-47b0-80bc-25f10ee43725", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--c4d2fb2f-142e-4cce-9511-44d947e33c87", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fc111b13-7ce2-4c0d-b16f-5166b39d5331", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--efcd7e04-568f-4193-8836-f94bbf55401d", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--326b704c-2fbc-42b4-af17-1482a87867b9", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--40ca9bc7-8382-4a2c-b3f1-4da59b444ded", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6e992125-0888-44c2-bf32-b2a26a632212", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--0aaae414-3c1d-4dbb-8591-fa0bc34f4925", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e992125-0888-44c2-bf32-b2a26a632212", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.214Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--25e22270-1b21-4a83-8f09-fab3a7bf55ff", - "modified": "2021-01-06T18:28:40.214Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e992125-0888-44c2-bf32-b2a26a632212", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--2af344e8-fd74-45b2-8e8e-de2240586ec5", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--df8bd7cf-2950-4475-9f13-ab4b97642f00", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--b298c0c4-dffb-42c1-b5b7-6102a7f132c7", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--1d4ce0bf-2c3f-41f9-b412-32f04b510bf2", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--d2a1a02e-1829-44fc-af6c-550a591719f2", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.185Z", "id": "relationship--9eaa378c-4ea3-41cb-aeb8-776e44014144", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.185Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--3612f535-407d-4fc9-a2ad-66a8724232f5", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--1514502e-cd64-4e81-9460-da1b7b66db85", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--73a4e777-4cb3-40aa-9169-aeae0fb8260a", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1ccc1298-f453-4317-926e-1226d76b7eab", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.215Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--f7dbf054-566d-4bf8-a65a-99858b1a6fb9", - "modified": "2021-01-06T18:28:40.215Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ccc1298-f453-4317-926e-1226d76b7eab", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--dba3da0f-b2fb-4d95-a6da-dc835dc6f18d", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c5b993fa-040b-4887-8d76-5d12d6a14ac9", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--2f542850-9062-44ce-b072-76b615d1cba6", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--c5b993fa-040b-4887-8d76-5d12d6a14ac9", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--2f8f5b32-8f4d-4dbb-9157-b3b53d008a4d", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--21431823-507b-4c57-9e56-37788ff6bd06", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--4599023e-17ec-4d0a-ac21-99293d6fc152", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--22a70625-c58f-4f36-97aa-06a4659e0a40", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--439ecd93-4f92-4561-af1b-9ed2736e8d33", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--22a70625-c58f-4f36-97aa-06a4659e0a40", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--e65f2d24-1d06-45e1-aabd-3075c0d8d932", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--22a70625-c58f-4f36-97aa-06a4659e0a40", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.216Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--64a72f4a-37c3-4fb7-b0f9-cb8e630cd9b2", - "modified": "2021-01-06T18:28:40.216Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--22a70625-c58f-4f36-97aa-06a4659e0a40", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--12c99675-d676-43ca-9c05-3e37b096beab", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3bcb0c27-4aef-4546-9bfb-e2ab59452165", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.186Z", "id": "relationship--c58f16a7-5620-449d-b4cb-12ddc75a884b", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.186Z", "relationship_type": "related-to", "source_ref": "course-of-action--3bcb0c27-4aef-4546-9bfb-e2ab59452165", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--045278eb-50f4-4fa1-86cd-0714bb0a3365", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--3bcb0c27-4aef-4546-9bfb-e2ab59452165", "target_ref": "course-of-action--55747843-3102-4363-815a-0fad0d8b4cbe", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--1fae8a21-49b1-43d2-9d85-29fc3ae15bdc", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--1cb413d4-784d-47b5-9def-1cc13645b9e2", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--701c8b46-4d6a-4624-91bc-3f19ad9723b9", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--c4d7cd44-217b-4b9b-9765-fb353b6b0171", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.217Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--bb0934c2-054c-4936-9231-4d9c07e49a4f", - "modified": "2021-01-06T18:28:40.217Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--a0d7b3a0-1cbe-4a31-a127-7397f57ae18b", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--20066c04-2113-4733-9839-3686bb65a942", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fc82e631-0190-4fcc-9c77-8959e405ee82", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--638c7da4-a030-4fb2-aa3e-af3650333b3f", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9c46ccd2-9e0d-4577-8c82-3b34cfbc8108", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--53b735c2-7cf6-4d44-9608-720e0d41970c", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--9c46ccd2-9e0d-4577-8c82-3b34cfbc8108", "target_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--41cb5665-1743-4163-a69f-58bbadfd8e18", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ef95e238-29ae-4eb5-86f8-a94e467a68ef", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.187Z", "id": "relationship--1a449150-9da0-4d76-a647-38045d389a64", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.187Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef95e238-29ae-4eb5-86f8-a94e467a68ef", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--85eacbf1-7a4a-43c2-b2cc-fbdc9d4892c3", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef95e238-29ae-4eb5-86f8-a94e467a68ef", "target_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--da842ba5-ab0d-4cc6-b906-3b7139818281", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d521ac7f-7eca-4d49-a7e0-e4f2e2f3fd19", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--1a0c47e8-a773-413f-aa5d-2aa745031ac3", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6c96bcd9-35e4-4728-9d4e-c5f602766a94", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.218Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--d6c9fdb2-c545-451d-8f5d-3d27804aec8e", - "modified": "2021-01-06T18:28:40.218Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a6828341-9dbb-4755-ba6a-1db22e8cd940", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--21bc67b0-2e77-440f-8328-28d15401dfb2", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "related-to", "source_ref": "course-of-action--a6828341-9dbb-4755-ba6a-1db22e8cd940", "target_ref": "course-of-action--2ab13083-1713-4795-8221-290c37d7e5b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--c948b9c6-b5fb-436b-9c88-0f042df53be7", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "related-to", "source_ref": "course-of-action--a6828341-9dbb-4755-ba6a-1db22e8cd940", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--6875a043-9f6b-4d48-a9b3-e583833364d0", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a9001242-2b69-4544-944a-3e85840f7e9a", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--6c7afefe-2203-470e-a57b-d1868bdd8685", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0c1bfee1-6320-49cb-b09b-dda50be4a4f0", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--9bdc236e-544c-4322-a979-d3fc96387ab4", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "related-to", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--4e23a6df-84c1-417b-aa36-39699d5c1755", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "related-to", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "course-of-action--5e311fa9-3206-432d-ae0d-26e65f836845", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.219Z", + "created": "2021-01-13T01:50:49.188Z", "id": "relationship--3cdb0f2a-c4a0-4a40-ba09-39c8182f5310", - "modified": "2021-01-06T18:28:40.219Z", + "modified": "2021-01-13T01:50:49.188Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--def52ac9-8ea1-4397-92fa-b929d07325fa", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--9f304eaa-123a-4331-9ca6-c35e78bb28fa", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--def52ac9-8ea1-4397-92fa-b929d07325fa", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--8ce96be5-c2d1-488d-948f-750663d731d2", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d79d3cc2-e5ca-4661-b9c6-1823d210b004", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--c68b44ec-9f3f-4c77-946a-8c2f436569ae", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--d79d3cc2-e5ca-4661-b9c6-1823d210b004", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--b68da505-1736-4690-b2db-a7106e9ff8a8", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d3dbbc7c-417d-492b-b17f-72d2fd2b2718", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--b587f95a-de6f-4062-979d-fe1624caaa3e", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3dbbc7c-417d-492b-b17f-72d2fd2b2718", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--833f1f76-854c-4307-ac0a-5cb211dc3735", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--d3dbbc7c-417d-492b-b17f-72d2fd2b2718", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--2e470c74-cfc7-4f49-a159-de598eeea9fa", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4b042a69-6b37-4844-aaec-e75af42e9080", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.220Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--06105cb5-4192-4d94-b381-fb96e4c61a1f", - "modified": "2021-01-06T18:28:40.220Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--4b042a69-6b37-4844-aaec-e75af42e9080", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--4a64cc06-59ad-44c5-a83d-b00bdcf2e1a6", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--4b042a69-6b37-4844-aaec-e75af42e9080", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--fcc7d336-b3ff-4edf-ae84-7519e0330e82", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.189Z", "id": "relationship--a0f0f8d2-e892-42e4-a152-8cd4bae8e1db", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.189Z", "relationship_type": "related-to", "source_ref": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", "target_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--fc72de29-6bc6-431f-9b1f-be753ae1e20f", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d627974a-6eb7-4676-9ad2-76ffe1149ce9", "target_ref": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--0bb31b3a-6857-49c1-8526-0fcc53e4875c", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "related-to", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--998cbacd-69d3-4c53-ae6e-412e5cc1f09f", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "related-to", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.221Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--163ac52e-4d00-4d89-853e-b9cbdb30f4e0", - "modified": "2021-01-06T18:28:40.221Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--de996922-0ce6-4f20-9f7f-6973408ee2d1", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--ab27f0ff-9ffe-43c0-afa3-2681eb1b741e", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--525f0f1f-48f0-491f-81c9-88f4022d2ec7", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--d4e6269d-a99e-44bb-bc56-d1950bb6f6eb", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3a8d4626-95b5-46fd-93ff-3d01a5afae69", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--44724765-63a1-463b-97e8-cc5b15cb2d01", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ee93bf6-616b-45bc-9414-079255fbeeda", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--7c9ed976-6582-4f0e-ba00-2304dc1f4a84", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--90528b9f-8586-4343-8718-27119602e4c9", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--5102d9ea-87c8-4b82-b0b2-45500ba15447", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--138f3e87-76dd-4b6e-a026-da4e23e7c504", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.190Z", "id": "relationship--015bbace-fedb-4864-a6d7-d54bb24b5460", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.190Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--ae8b9497-cd7e-43b3-bad0-e6edd68f1971", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.222Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--998d2c86-89b2-48d4-ba0a-fc91b2a73bac", - "modified": "2021-01-06T18:28:40.222Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--c324b3a2-ace6-4ab4-a67c-237a722221fa", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--b7920825-3c71-4d64-acf3-a262a8acaca9", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--5841a10c-825f-4747-88a9-ca22883ceaf0", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--1cf4ce52-81d7-4454-83e1-d04aaece3965", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--db5909cd-7839-4cf4-9239-d515d4bedb06", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--a32b97ec-6197-4a38-8a7a-e18a9dd6b22e", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--07a7abf0-409b-4183-b62a-7124d64f2245", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.223Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--9c875077-3543-4793-a74d-596983214499", - "modified": "2021-01-06T18:28:40.223Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--f712f090-ce2b-4b30-b2fb-e1d26c17d5c2", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.191Z", "id": "relationship--83757e5e-c88f-41f4-8936-0ca3f794b055", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.191Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--f1e675d4-a9ef-491d-b731-e63ed3c7c0d8", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--bc1a6d75-bfdd-456e-8df6-81b757196fe2", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--61e949a9-c103-4d9b-9828-2a5fa4010782", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--a934dd42-7590-4f95-be4f-4863df2c584f", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--25e018e9-d8a4-49bf-98a4-4b20ee125365", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.224Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--e727dea0-c8de-4196-ae02-7e7442f20314", - "modified": "2021-01-06T18:28:40.224Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6233dcea-26ae-442e-a941-0ab14d4e6bda", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--7c7c0231-4a59-4495-aaf8-e73fe8d82ca7", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e17b0dc2-78dc-45e5-950a-8c3623b1cb02", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--b65f0715-8180-4572-b006-e23e19604372", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1c8905e8-4809-461f-9f92-86956c69d30e", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--e60b42c2-aa72-4332-a31c-625d8e572b74", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4719418a-9dae-45ff-abd8-241cbf1a876b", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--4e4f7bd9-af43-4939-9ab4-b6dece6f2b38", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "related-to", "source_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "target_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.192Z", "id": "relationship--0250c74c-c073-4689-8f5f-63599d241370", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.192Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--988e7887-9a5a-4559-b7c0-62db1e27ba42", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--f76dbf3f-f3fa-4336-9280-91dec66b8660", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ff2ecdd1-3333-4ab7-a7f5-0df311d71160", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--a9f40c31-b214-49d8-bb12-0942ee6eb00e", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9efcb82f-f07e-4936-9655-d6d59cab279f", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--b3ec74e3-b5bb-41db-9126-f263450af16f", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--40cf76a9-2a03-4c16-af73-803be5661f85", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.225Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--ce9356f5-d438-49f2-bff4-9ab577eb0be3", - "modified": "2021-01-06T18:28:40.225Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--1270e8d9-1f79-4534-97a8-bfd96527633f", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--0db0a19e-357d-4c2c-9c3f-3f07d1765535", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--34068ae0-7f79-4247-af28-c910b3c3d78e", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6b9239f9-ba06-4516-ad8b-f59e6e17097d", "target_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--1ee97183-1d07-4e7e-9e7a-fabaf0fe1364", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b9239f9-ba06-4516-ad8b-f59e6e17097d", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--1a3b2f8a-2a01-45f1-80b5-8f5e5d1e0679", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--6b9239f9-ba06-4516-ad8b-f59e6e17097d", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--1f19369f-d9e8-4294-8a74-af552ba399df", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.193Z", "id": "relationship--41d2507f-7786-486e-a749-4e3b24acc90b", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.193Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--7258654f-a468-4bcd-b20e-dcb4f984fab7", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.226Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--a2ddc006-fa6e-470d-a5f3-c4a081b3dcf6", - "modified": "2021-01-06T18:28:40.226Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--0cfc325a-bc61-4dee-a30a-ffbd07caaa1a", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--a6f2fb50-1a62-46f0-b50c-437332994815", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--7acf3c91-997b-4bd9-a405-2177636e2c40", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b6ff76c4-1d1b-4026-9714-fb653e1cd1ec", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--524226b2-edcb-49d7-a2c1-047682382e51", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c6a41a32-f536-4cb1-b226-43a39d91506d", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--5affbec3-7623-4962-a7e6-87f58f6fb142", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a4daaa7c-d5d1-4a47-b60d-9bbc0f1dc410", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--75c1f853-1c80-498a-9c07-22d800b9aa76", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--07fddef8-050c-414b-a466-9a0cd1f34a29", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--9e0ef693-c1e3-4a9b-aa90-57938a8eff72", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--81833f78-bc10-4849-b92b-753a26c4a8e5", "target_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--a1103f13-b78d-4808-81ee-81da9adbe3a6", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--48521e2d-539f-48ff-976c-728833c50549", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.227Z", + "created": "2021-01-13T01:50:49.194Z", "id": "relationship--b1e66f20-1339-4c20-adfd-54a6640618fd", - "modified": "2021-01-06T18:28:40.227Z", + "modified": "2021-01-13T01:50:49.194Z", "relationship_type": "related-to", "source_ref": "course-of-action--48521e2d-539f-48ff-976c-728833c50549", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--f1350741-7cbd-4c38-99e7-a68098327b67", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--48521e2d-539f-48ff-976c-728833c50549", "target_ref": "course-of-action--324841a1-86e9-4e8b-8075-c8c97473d23c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--88ef0d08-5f91-469d-8ff9-26ed6daa6d9f", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--c05c258a-c499-4ce7-8ace-f370d4b79feb", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--55afd1b5-486a-4214-a1d7-81be33b8ff12", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--56ba2051-6e10-4d66-a814-2da1ee421abf", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--ef5864eb-f0f5-4f63-85ef-2e9c231db365", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--aafc4117-60ba-4271-a742-cb1717028637", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--02534d2b-340c-4918-978c-5160df17639c", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1bbb2fbb-4e13-4101-b91f-6c1e1742a425", "target_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.228Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--14a26df5-e393-415d-80b6-db68679a945e", - "modified": "2021-01-06T18:28:40.228Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d0c82eda-6ca8-4855-8003-d466a25b8d06", "target_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--b9251c5c-690f-4f21-8781-ca6e705accd8", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--91139605-507e-4204-be7d-b3c7118e1f25", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "related-to", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.195Z", "id": "relationship--cb49132a-3c30-4a6f-ae52-762ae6681d27", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.195Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--16dbf9b5-a830-423b-a6d5-d00f942c53a2", "target_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--04b30669-2153-4455-97df-acf24c2b0852", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--80f8197a-1504-4392-8d67-e1e8110853d1", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--5040d2d7-16e5-4087-a1c1-e81f278d3d12", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--70b33a7a-9972-4134-a277-61f31fce02f2", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.229Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--d9b8efe7-eb0b-48d4-8413-a98ed6e7b370", - "modified": "2021-01-06T18:28:40.229Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--e1db64b5-71c7-40c8-a94f-97e5f9679792", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--96a9534a-45fd-441e-9d23-b2fa36136891", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "related-to", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "course-of-action--507cdf2f-2df9-4685-982d-14c5cf1ac117", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--fa3b947e-e599-4408-8b23-39bc86bed05a", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--97017652-2dd6-4f55-bcdb-9d02ad677de1", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--bcdb5708-6ee8-4982-8e3f-2649aec30463", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1f32b2d0-7d70-41bf-93fb-a160896103b4", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.196Z", "id": "relationship--ba9f25f9-c0ed-488c-946d-52bdb9197b06", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.196Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--878c9438-4c75-44d1-a0ce-8df08b268abb", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--787fdeda-e49d-4c59-8751-c01009e4f752", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--878c9438-4c75-44d1-a0ce-8df08b268abb", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--ec06d2e6-6b7e-4747-8cb0-e281cee6a31c", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4bad35ca-97f1-42cc-a8bc-d81a8019836c", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--beb87be1-4c8c-4675-a0e7-120924b6774e", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--082c739f-4637-4eda-9b1b-69ac29f71e1e", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.230Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--6090df52-57ee-4b41-9379-e2acbc793926", - "modified": "2021-01-06T18:28:40.230Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--082c739f-4637-4eda-9b1b-69ac29f71e1e", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--d726f717-761a-4339-9dee-b2f843041a35", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--8e20dbdc-6f9e-4757-883c-01a66cc25702", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--124810c3-c48b-46ec-8b9f-b9d45769ea85", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "target_ref": "course-of-action--d8baae5e-1591-45de-9f42-b17aa28a1ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--e0d46e5c-0a45-40a2-9223-7c33e78ec00d", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--6e77403e-4c0a-45b6-861a-69e896609557", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "target_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--7c7abd19-29f7-438e-9c8a-7bd28ade23c3", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--dbc9bb19-8dae-4bde-8754-ad7774ddfeb1", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--33146496-4545-4444-8141-c5b919eed7ae", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.197Z", "id": "relationship--3af29b1e-9e44-4a11-90f6-411fd81ed8e3", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.197Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.231Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--6312dd42-9e28-4670-9c94-d8fcafea4391", - "modified": "2021-01-06T18:28:40.231Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--21b6528e-50a6-4aa7-b869-b38b698da613", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--983676ea-4195-41d4-b37e-437e91315c73", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bd65789c-746a-4963-ac2e-bda98fd33184", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--0a8532b0-9392-4aec-9e59-4b32c754c543", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--4fa12fcf-c615-4cd2-8cb7-af94b93ad777", "target_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--d28874d0-77b1-4e30-9939-f47434f6081a", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--d615ddf6-1e89-42b9-8d87-e8ee4bd282cc", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--cd30d0f9-238f-4b4c-a48e-21ad07909d9a", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--31f60b2c-0fb0-4c2f-8546-b08f48a5502c", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--bfdedf9f-325c-4eb7-bafc-44661878bf1b", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.232Z", + "created": "2021-01-13T01:50:49.198Z", "id": "relationship--24f566aa-80b8-4618-8591-8dee88cbe73a", - "modified": "2021-01-06T18:28:40.232Z", + "modified": "2021-01-13T01:50:49.198Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.233Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--e2ba4095-f023-49cc-93fb-869dffceaf91", - "modified": "2021-01-06T18:28:40.233Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.233Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--1365f08b-3ced-4c4f-9ad7-5199f2873959", - "modified": "2021-01-06T18:28:40.233Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.233Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--77903cd8-f33d-4707-aaa2-d4950b9c1368", - "modified": "2021-01-06T18:28:40.233Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.233Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--8da0bee7-babf-464e-a156-e082a7777865", - "modified": "2021-01-06T18:28:40.233Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.233Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--0df7473e-4bf0-4dbe-92ad-ad74184126b4", - "modified": "2021-01-06T18:28:40.233Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--2de93b74-d835-4e3f-83da-deb37b09cf01", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b21f1426-f2a0-4be6-8a07-8904c8c818d6", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.199Z", "id": "relationship--6fc2257d-b23d-49c6-8dd1-0da0f6614adb", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.199Z", "relationship_type": "related-to", "source_ref": "course-of-action--b21f1426-f2a0-4be6-8a07-8904c8c818d6", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--7354819b-7c22-4ae7-91c3-bfe24a83ebea", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--b21f1426-f2a0-4be6-8a07-8904c8c818d6", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--1bfd3a16-782b-4374-9bc1-78a1d2a97b7b", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--70a89650-c37f-436e-ba9f-fdfba03f07be", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--c4f94e34-a777-4f6c-ae22-cd698dfb3da1", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--ce89dcb5-3899-4b5b-9524-372628f4f1b7", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.234Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--7d1f3d2c-33ff-41fb-af54-1fad8e9bda59", - "modified": "2021-01-06T18:28:40.234Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "course-of-action--4fa12fcf-c615-4cd2-8cb7-af94b93ad777", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--5cd11467-abca-464e-a449-f5de9a13564e", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2d06ab08-358c-4412-afaf-a3393f0f8f48", "target_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--92758be4-823c-43d2-94f0-9382695aa116", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--6944310d-1458-4eb0-8b17-1cbaf3aa5681", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.200Z", "id": "relationship--5b7d6fa9-cfb1-4740-8fb2-ea108fff33f0", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.200Z", "relationship_type": "related-to", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "course-of-action--67d96f22-5a53-4c2b-869d-48fd07a5e703", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--e7948c50-f72c-417f-a26d-253a5add19ed", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e48a0e5c-daf5-49e0-ae80-66daa6857d1b", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--1b2b58e4-d05e-4ae2-86d8-3455ea9cc3a1", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fbda47be-c806-44f5-9833-90f7a902fa26", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.235Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--31d3df57-5e60-4ff1-aea3-5e52916159a6", - "modified": "2021-01-06T18:28:40.235Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b6ea8f4d-9cbf-4879-9aaf-1594d9cb386d", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--74e098af-8558-4feb-b7b9-5d139df7ee49", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--25bc6e7c-8347-4cf9-8ad9-4a5dcfe37ce7", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--5035f38d-b1a4-422c-8eb8-c6e8025706db", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--af72253b-0beb-4b53-a380-4b3626cccdb5", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--e954de52-ab64-4639-be62-16a828b1ef92", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "related-to", "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--dc8fb09f-9c35-43d9-ba5d-7dbc5a2ec910", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "related-to", "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--73b3f9b8-61a8-4c5b-8344-6c622dd23158", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "related-to", "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--404a93d3-b065-46b8-bd3e-01ced7b4a6d0", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f46882ad-b537-4063-95d6-98ae2b212d05", "target_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.236Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--e0135d6a-aceb-481b-8e3b-0b2c55170b10", - "modified": "2021-01-06T18:28:40.236Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--88ff1dde-5bfa-45d0-9b41-dd137cff042c", "target_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.201Z", "id": "relationship--cdcd558f-8920-45ba-b9aa-59e3cceed7b5", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.201Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6e9d7430-907a-43ed-862f-012c20c325e5", "target_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--b80c90be-fdb1-4946-8e38-5bd3be5bf877", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--97cfcd09-f613-4558-aeda-68b13f0e85ed", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--b549ba39-4ca3-41a6-b64c-33714ef1108b", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--7f69bbc5-6c19-40cd-84ff-853dfb8afbea", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--5acc9802-68e4-4106-b0ad-e98ec4aa7630", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--9cef6068-1230-4b75-b3da-6c3cd430c6b5", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--07f64af5-d576-4d72-b452-5b23318b5d93", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--8e04e617-065d-4e21-a5e3-5349444bbe15", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.237Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--dd177867-b0cd-4b45-bb25-349f209f6e3b", - "modified": "2021-01-06T18:28:40.237Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--92803874-2a01-4183-b0f6-3d30cf06c626", "target_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--3d86db7e-1d63-4934-aa15-7376d97c5c9c", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--92803874-2a01-4183-b0f6-3d30cf06c626", "target_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--756a15f0-7ef1-4ef8-a961-f2e9089caee1", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "related-to", "source_ref": "course-of-action--92803874-2a01-4183-b0f6-3d30cf06c626", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.202Z", "id": "relationship--7e24fc4a-5fa8-43f0-b3cc-2d391c4e8aaa", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.202Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--2b2645d0-8051-434b-ad99-a221e5cb9c15", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--870b77d0-5084-4bf7-a4fd-cc7de6741523", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--6cdb7ce1-8cdc-4a53-a8fd-be6d9287d230", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--ead33d5c-c1c7-49b6-9692-ab82a1a37386", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--138add88-3ae8-4ee7-ad38-610c142ee7cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--d538ec47-ede8-4db6-94d1-84190c225f3c", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.238Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--c436a192-7bc3-478c-8c1c-a1e9e3fd21f4", - "modified": "2021-01-06T18:28:40.238Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--a58802ea-8e51-4be2-b698-39f3e1ef731f", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--3ed38841-ed42-41aa-9692-0bd60c75f345", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.203Z", "id": "relationship--ae119d64-6fa5-4bcf-9ee2-da32d70e4700", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.203Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--fa919f5d-711b-4911-88f6-b383b7e4c745", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--8798eeff-e8a8-4a9d-9931-d1550e201c3f", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--96c14053-7d62-41c6-b5b7-0021db34409e", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--29b3bfeb-a7bf-4078-ae69-28e1be0214c1", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3200cd15-e902-4431-823e-f80ea925bb10", "target_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--c14a6db4-9d9c-4949-a0b7-783ac1686964", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--acc93b43-4f1d-4865-9321-a87a91048b04", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--c84b4123-0000-4c25-a080-423ea668d437", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.239Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--f48d63f8-f83a-4351-91d5-e513c08b6231", - "modified": "2021-01-06T18:28:40.239Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--62cc3dee-bd9f-4b27-aea6-e1805116cac7", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", "target_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.204Z", "id": "relationship--dfded941-a452-4a23-a452-a3f6b470454e", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.204Z", "relationship_type": "related-to", "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", "target_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--a1a32efe-2fec-44b5-958b-b9a7f0ee9edf", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fd2be2b2-92b4-4df1-9e7f-a794342744be", "target_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--620b7899-2a75-47da-accb-ad5e9084926b", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--fd2be2b2-92b4-4df1-9e7f-a794342744be", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--1daf6ead-3bd3-4488-8070-c17ffc21ad73", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--4b317c80-c583-4f4c-9c69-56384d165a7b", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--33aeccbb-37b1-47b3-a7c0-ef3bf24f8986", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--48449923-eb8c-42eb-889a-31f5f568cd85", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.240Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--dabd40d0-af42-4840-bf82-c3ade00d312c", - "modified": "2021-01-06T18:28:40.240Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--5bfda264-75d8-40b2-91d8-b42feb1f6148", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--7c140f04-200b-48bb-a6f4-f13937da115a", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--1237fe18-265a-4aad-afc6-e61b2760562d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.205Z", "id": "relationship--a0a44e62-c6dd-436b-b963-3bd0f956e740", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.205Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--e202bde4-4b5e-44f4-9f7c-39013b4c921b", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--37b0f7bc-bda2-4954-9e94-1c98d4da388b", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--5e95ff24-37c3-4681-b430-73112fd76dbe", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--1b891371-4bee-45ec-bb40-a6f3cdf0c6a6", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bf31c03c-2423-40fd-96f0-f11d84138bd9", "target_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--5765c69f-0019-4a26-9c7d-476664838544", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.241Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--34c60d9d-f904-46f7-9196-2479f0a8187f", - "modified": "2021-01-06T18:28:40.241Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--b079d489-9059-4755-8643-305e780a95d5", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--3d4216be-e282-4910-929c-22d0acb943ca", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--01700f0a-bf5a-4224-a07b-44f4ee4a6f83", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--60c21331-98e4-4338-aa7f-ffe28f38fbe2", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.206Z", "id": "relationship--1015fdc4-5fd3-4051-8980-11e0dca64e14", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.206Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.207Z", "id": "relationship--dd8e6f7e-0799-4ae0-ba97-9cdddaeaab59", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.207Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.207Z", "id": "relationship--b06c0c5b-551a-4b21-bede-30c0d3a6ed82", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.207Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.207Z", "id": "relationship--80813a84-64af-4e3a-95fe-1685eb1817e4", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.207Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.242Z", + "created": "2021-01-13T01:50:49.207Z", "id": "relationship--dd95f2e9-cc5f-4499-a4ac-5431712e596a", - "modified": "2021-01-06T18:28:40.242Z", + "modified": "2021-01-13T01:50:49.207Z", "relationship_type": "related-to", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.207Z", "id": "relationship--7fec642c-3f14-44e0-b438-6cac1ee05c3d", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.207Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bf8c68fe-8743-4043-ac06-4ff086aaad67", "target_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.208Z", "id": "relationship--20b01349-6775-4100-9a37-b433de2ebd56", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.208Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--233a37e2-4efa-4ebf-8132-825b2832f1c5", "target_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.208Z", "id": "relationship--72f283ec-d013-4463-9432-bba64cc2be41", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.208Z", "relationship_type": "related-to", "source_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.208Z", "id": "relationship--f7ce0bc2-6e0d-4a8b-bba1-fe2cff7b46c8", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.208Z", "relationship_type": "related-to", "source_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.208Z", "id": "relationship--a418a7cf-afbb-4c6a-822f-719013803b71", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.208Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bf3171ce-e3d4-4090-aba6-e837b2c5f808", "target_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.208Z", "id": "relationship--83073695-7fc7-402d-8ace-4a492dfd4bb2", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.208Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf3171ce-e3d4-4090-aba6-e837b2c5f808", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.209Z", "id": "relationship--61e52ad4-1673-44dc-a72a-97a277164333", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.209Z", "relationship_type": "related-to", "source_ref": "course-of-action--bf3171ce-e3d4-4090-aba6-e837b2c5f808", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.209Z", "id": "relationship--38e04a5a-ebdc-4eed-86bd-803e1e39f28d", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.209Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--67ffba0c-3a40-48e4-af5e-b5db35cc9123", "target_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.243Z", + "created": "2021-01-13T01:50:49.209Z", "id": "relationship--48fa9926-b5d8-4a37-a58b-7830b6f2b18e", - "modified": "2021-01-06T18:28:40.243Z", + "modified": "2021-01-13T01:50:49.209Z", "relationship_type": "related-to", "source_ref": "course-of-action--67ffba0c-3a40-48e4-af5e-b5db35cc9123", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.209Z", "id": "relationship--4a49ccd3-33e8-43d6-a034-42029f719d35", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.209Z", "relationship_type": "related-to", "source_ref": "course-of-action--67ffba0c-3a40-48e4-af5e-b5db35cc9123", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.210Z", "id": "relationship--b4f6b550-97c1-49fb-be0a-b8575ee1e8d7", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.210Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0a17ffe4-9892-4e7e-8342-67ca9022ad63", "target_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.210Z", "id": "relationship--7344b638-8794-4063-8fca-3f80c0e22793", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.210Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a17ffe4-9892-4e7e-8342-67ca9022ad63", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.210Z", "id": "relationship--a227b5e5-6990-42fc-a78c-be1f8e4cf382", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.210Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a17ffe4-9892-4e7e-8342-67ca9022ad63", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.210Z", "id": "relationship--6bfbbe58-0d3c-4323-bd7d-b8a70a4a01d3", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.210Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--abe4fb7e-450d-4e2a-9f4c-2950558c298f", "target_ref": "course-of-action--58d3c56a-1665-4896-b8bb-6fb2fefe5e05", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.210Z", "id": "relationship--bf87af10-4175-4418-aa0e-03049ec45090", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.210Z", "relationship_type": "related-to", "source_ref": "course-of-action--abe4fb7e-450d-4e2a-9f4c-2950558c298f", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.211Z", "id": "relationship--a55f9a72-4f6d-438a-b1e9-8bc473ccc4db", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.211Z", "relationship_type": "related-to", "source_ref": "course-of-action--abe4fb7e-450d-4e2a-9f4c-2950558c298f", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.211Z", "id": "relationship--d0e153ed-8dbd-459a-9963-50fd373f4c43", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.211Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cee53ff2-1a66-435a-91f0-0cad67499a09", "target_ref": "course-of-action--792d8a5c-c104-4be2-a374-f426bb89d889", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.244Z", + "created": "2021-01-13T01:50:49.211Z", "id": "relationship--ea4b16bf-cbbc-41e7-aa47-5930e82a1ae5", - "modified": "2021-01-06T18:28:40.244Z", + "modified": "2021-01-13T01:50:49.211Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fc53ae51-c545-430b-8f9e-f57320e2bac9", "target_ref": "course-of-action--792d8a5c-c104-4be2-a374-f426bb89d889", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.211Z", "id": "relationship--ed9aad7f-a41b-4832-aa88-63aef9cec6d7", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.211Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--005f9232-6793-46a8-a633-a19f7a985dfc", "target_ref": "course-of-action--792d8a5c-c104-4be2-a374-f426bb89d889", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.212Z", "id": "relationship--f558faf5-26e8-4386-88f1-471970940748", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.212Z", "relationship_type": "related-to", "source_ref": "course-of-action--44d1406d-f511-4f6d-adb3-ed9e18882713", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.212Z", "id": "relationship--bc3a9f1a-1271-447b-bf46-d6256d62bc54", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.212Z", "relationship_type": "related-to", "source_ref": "course-of-action--44d1406d-f511-4f6d-adb3-ed9e18882713", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.212Z", "id": "relationship--95d73a2e-2979-49a8-9aa6-98b816a4fb20", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.212Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.212Z", "id": "relationship--bd9a4357-339f-47ca-aae1-67f05a5f77df", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.212Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "course-of-action--dbc9bb19-8dae-4bde-8754-ad7774ddfeb1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.212Z", "id": "relationship--380a97bb-454e-41ee-9093-4af387c2af8d", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.212Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.245Z", + "created": "2021-01-13T01:50:49.213Z", "id": "relationship--4e2e85eb-63c4-475b-a619-d7ffaf8374f4", - "modified": "2021-01-06T18:28:40.245Z", + "modified": "2021-01-13T01:50:49.213Z", "relationship_type": "related-to", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.213Z", "id": "relationship--5f3d23e0-7799-4599-bab5-94de7608c395", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.213Z", "relationship_type": "related-to", "source_ref": "course-of-action--8c982806-f742-434c-8c4e-86eed693d937", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.213Z", "id": "relationship--c39abd69-45cf-4bc8-883b-98c7edfedbbc", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.213Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.213Z", "id": "relationship--3672893f-61bc-426b-b98f-8856dec12464", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.213Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.214Z", "id": "relationship--c8778ece-2879-4f27-ac91-4abb83b5a002", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.214Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.214Z", "id": "relationship--a69b2d00-a859-4a34-b202-e4413d96a67e", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.214Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.214Z", "id": "relationship--43d19701-fedf-4c99-9a0d-fc56eeec216b", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.214Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.214Z", "id": "relationship--c1170a51-7eef-4cfe-9c2a-28456c03c6ff", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.214Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--c8b7605b-075e-4e45-9019-4137b585eadc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.215Z", "id": "relationship--a4379618-9fae-4b3b-8de5-474e9bfece04", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.215Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.246Z", + "created": "2021-01-13T01:50:49.215Z", "id": "relationship--cee614ce-4b6a-42f5-9942-0295d550a5b5", - "modified": "2021-01-06T18:28:40.246Z", + "modified": "2021-01-13T01:50:49.215Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.215Z", "id": "relationship--307e71b3-68d3-494b-adbe-ec33dcb2e8de", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.215Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.215Z", "id": "relationship--5373856c-9d12-4a9d-a55b-44b52d5734a3", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.215Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.215Z", "id": "relationship--9c2685fd-e518-4058-bb27-c74a3165b351", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.215Z", "relationship_type": "related-to", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.216Z", "id": "relationship--52f5c447-2d6b-43be-b0da-3e5b11173cfc", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.216Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b1fde7f7-05a1-4284-be97-26a2637e5cbb", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.216Z", "id": "relationship--f343c7e7-6cd5-454e-a375-fe4ded094402", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.216Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--57d1610e-6089-40ad-89f6-d16e5b7a7385", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.216Z", "id": "relationship--86649bcc-459c-488d-b25f-ac881994a749", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.216Z", "relationship_type": "related-to", "source_ref": "course-of-action--57d1610e-6089-40ad-89f6-d16e5b7a7385", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.216Z", "id": "relationship--28a6221d-a753-43dd-bea5-986e0850f51c", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.216Z", "relationship_type": "related-to", "source_ref": "course-of-action--57d1610e-6089-40ad-89f6-d16e5b7a7385", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.216Z", "id": "relationship--94e8965c-c777-47bd-b2da-75567a4a3b51", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.216Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--28b7727a-9c28-42c2-bb4a-72812e2dd593", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.247Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--a2a65b3a-9a04-4891-b21c-5102305a9e8f", - "modified": "2021-01-06T18:28:40.247Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f7a05c4d-87d7-4b51-a6f4-15c1b58c89d8", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--852c2c1a-801a-473d-b79d-b96cfcbbaf50", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5090a78c-dec2-4a8b-a058-31301652fd84", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--14207309-472a-453e-9fc0-bb27613fa8bf", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6be9aba1-c1ea-4afd-847d-07762fde512c", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--84f528b9-12c9-438a-b370-4c349277bc1c", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--f38dc54b-e0bb-4cd0-88fb-122029b6ad8f", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--07bed847-f9a0-49e8-97e3-77af8ee62d67", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.217Z", "id": "relationship--beef18df-0600-4b00-b3f0-5d63a25bc6a4", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.217Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--ff2cf8bc-d443-42d6-a342-ef3d109cc1bd", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.248Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--c3ca6539-cfdb-465e-ac3b-88874b1c4edf", - "modified": "2021-01-06T18:28:40.248Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.249Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--4d18168d-350b-4d3d-a70a-776bc2075d3c", - "modified": "2021-01-06T18:28:40.249Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.249Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--4facfc29-8256-44fa-a408-f9c7c5b2ef48", - "modified": "2021-01-06T18:28:40.249Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.249Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--7b9bab0d-7256-4d4b-acd0-de3625026781", - "modified": "2021-01-06T18:28:40.249Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.249Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--637a66fd-7fab-4b60-a277-556e3e27516c", - "modified": "2021-01-06T18:28:40.249Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.249Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--21d97692-0fcb-453c-9a40-1669ab0c35b2", - "modified": "2021-01-06T18:28:40.249Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--c690ac7e-c721-4d14-af59-9ae0e242c268", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--f0e7aafd-7fdf-4051-833c-a6af0193e350", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--05501743-0615-49e7-b4aa-4088562d0307", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--db62d03b-7909-4abe-a1be-7ae641cadce3", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05501743-0615-49e7-b4aa-4088562d0307", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.218Z", "id": "relationship--036460ea-b274-4fca-86be-5896127d7450", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.218Z", "relationship_type": "related-to", "source_ref": "course-of-action--05501743-0615-49e7-b4aa-4088562d0307", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--7333fec4-9c73-478d-af06-3e29f1de5f4b", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--7640a9c1-29c4-4660-974d-dfd7f5a5686a", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--f00705dd-1e51-4a2a-bcd2-509dc511435b", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--7640a9c1-29c4-4660-974d-dfd7f5a5686a", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--2ef43563-229c-4286-8c78-c32f76fdb055", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5a9aff59-613f-404c-b6c1-94d9341afa43", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.250Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--5289f576-c2eb-4f7a-b848-7d24dd7ca6a3", - "modified": "2021-01-06T18:28:40.250Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--40b4a7d9-136e-4937-b9f0-6ea261991c55", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--998f21dc-8771-4f33-9be1-fa5085d9dd0a", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--40b4a7d9-136e-4937-b9f0-6ea261991c55", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--d47b096c-469e-44a8-b9d1-f0a941a16388", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--40b4a7d9-136e-4937-b9f0-6ea261991c55", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--88ad6c6a-554c-47ca-8a9e-77b1810b666c", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--65feaa0f-81cf-4804-9806-29b41291ac44", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--7672e33e-95b4-4478-8d2d-dbb2859034e2", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5d574aac-0d4b-4105-ac9b-3a0426daed3b", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--892252cb-f3cb-4cf8-a2e4-f1473e631d6e", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--5d574aac-0d4b-4105-ac9b-3a0426daed3b", "target_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--a76647d8-f909-470c-b0a9-21bbbb8ecbc9", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--5d574aac-0d4b-4105-ac9b-3a0426daed3b", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--b0a35ac3-ae51-4ebe-bf35-f8ac9ffe2d8f", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "related-to", "source_ref": "course-of-action--5d574aac-0d4b-4105-ac9b-3a0426daed3b", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.219Z", "id": "relationship--c94d6582-c064-4a3a-86d9-00befe246ded", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.219Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ff03cee1-8e60-40af-9c71-cfb5efb9abff", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.251Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--748c1593-a2a8-4574-8013-377741470c47", - "modified": "2021-01-06T18:28:40.251Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--86336018-6e64-44bb-bfaa-7391899ecec4", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--0d7148dc-7301-4cea-9699-9dd9d695ab60", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--86336018-6e64-44bb-bfaa-7391899ecec4", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--8ac34ff3-2fc4-433b-9f48-605cebe418fb", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b94ea74b-a157-4b9c-ad84-d911ee2640c0", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--bdbb4543-b07b-4887-a7ac-ce1000b3d3a2", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--b94ea74b-a157-4b9c-ad84-d911ee2640c0", "target_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--c0f585b7-020e-4ded-af85-f896178aa2bb", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--b94ea74b-a157-4b9c-ad84-d911ee2640c0", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--f71b13aa-c526-4592-9090-985dbb730de2", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--b94ea74b-a157-4b9c-ad84-d911ee2640c0", "target_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--a29e847a-cd4b-4121-b066-9aa2619c2928", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1b4d8689-ade6-4cc9-8fe7-065a45515b85", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--7534e867-61cf-491c-ae84-9fd0d0bd8823", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.252Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--0b3c8f02-03d1-44e7-880d-0f5613342c8d", - "modified": "2021-01-06T18:28:40.252Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--b1197e58-78de-41c7-b1c1-62d40f324308", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.220Z", "id": "relationship--56fa82c5-0fea-4233-a610-b93a5bf41ae9", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.220Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--a710fd04-d2b7-4a13-b7df-399f9a353631", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--a59b21fd-c04f-4454-90ce-2c63f967ea41", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--c27fee3b-2e2b-4fa8-b8c3-26ad387fde3d", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--64dfaea6-4a81-4d37-847e-faef86ebdd85", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--6bdf2f99-b4cc-488c-a54a-68f5fa72fe1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--57add0f3-bbab-4b48-af05-bccdb0685d23", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--60fe436d-f767-4c1e-a2f5-823c3c20146c", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.253Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--aceecc3b-cd34-4086-833f-685c32c0fcc3", - "modified": "2021-01-06T18:28:40.253Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--f162a048-20e2-4937-aff9-070461eb1be7", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--116f82d5-dfb5-4fa8-8913-44f9cdbefc46", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--041c58d8-5658-4fb1-bcb0-a41fc373cfc5", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--9e35dc89-831d-4c8d-a06d-a0717b45d7aa", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.221Z", "id": "relationship--5c5d782e-4a83-4efb-9aa3-35b9ddee69b3", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.221Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--8844c22e-ed45-4a09-ae80-e6fae84b2e7e", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--59b6f316-215f-4737-9407-4b805353ace2", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--ec43131d-2cda-4b93-8711-ad7f4a075c7e", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "related-to", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--96614282-80fe-42ae-815c-b493423ba834", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ef71d41c-43d7-44f3-8e25-88b1c6400186", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.254Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--19687917-817a-41c6-a059-28c76a36c2f3", - "modified": "2021-01-06T18:28:40.254Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1a5b6f83-8c04-4a9f-88bd-dabef32125f8", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--0a873a04-89d0-419e-99db-f4b2972a8f00", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--099dece0-8dd4-4400-9df6-7fd2747f4092", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--dab4186b-6029-4002-90f7-277137fba736", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--66c877be-93c3-48a3-8e9a-dda28c4b06c4", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--6448e4a8-3bb1-4af1-8b7d-574178d10e27", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--3ddebb51-ddcf-4f3d-9449-b5088c24826f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--cf6bd08e-416b-4160-a710-d4cb0dcfe696", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ddebb51-ddcf-4f3d-9449-b5088c24826f", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--2d65649a-04e1-4134-9cea-d5692e3519ce", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "related-to", "source_ref": "course-of-action--3ddebb51-ddcf-4f3d-9449-b5088c24826f", "target_ref": "course-of-action--6b4226f7-ac84-4155-8394-1c1271014f1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.222Z", "id": "relationship--97e09dbd-e468-4862-9f73-9c2b71cd7ec6", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.222Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--acf050e8-a959-4bb9-92d9-48c4a043db80", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--a73a3624-d997-4426-bb42-0fa26417d253", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--a38d3f14-56d4-4cad-8eb1-62a3d57b6477", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.255Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--f8bf45f9-31bb-4473-a1a6-2837f78499a9", - "modified": "2021-01-06T18:28:40.255Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f93e33a5-6147-42bc-a919-4ceac3fe0c1e", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--515420f8-6177-43b6-984a-230b050de2a1", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b1ed4311-8f18-4508-a257-dd717c51abc7", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--7dc5d96d-c042-4595-86b7-a2713fd0d29c", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "related-to", "source_ref": "course-of-action--b1ed4311-8f18-4508-a257-dd717c51abc7", "target_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--b7da47c6-b240-4c3b-bcde-648d0cffd40f", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d220b27f-2634-461b-a012-9ee49ee0bc27", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--9f948486-c72b-4016-b70e-65fcc7c40f72", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b73e7f5e-7c93-4b27-a99a-26f62fa62626", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--87c9ba1e-d25e-4bfc-b0a4-c64031665c03", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1ca4142b-1acf-459e-99f7-296e71ae5fb6", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--16ab026c-c15b-4af0-9846-0e7879318a12", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ca4142b-1acf-459e-99f7-296e71ae5fb6", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--73e54269-39c1-48d6-9250-64ef0b60b4c1", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "related-to", "source_ref": "course-of-action--1ca4142b-1acf-459e-99f7-296e71ae5fb6", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--c77198e3-d27b-4a61-a0ae-c01cd3cf6018", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4a4a8699-fd35-4d1c-9066-dc8995930616", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.256Z", + "created": "2021-01-13T01:50:49.223Z", "id": "relationship--1bc4252e-f84a-4906-85b7-1046655788f6", - "modified": "2021-01-06T18:28:40.256Z", + "modified": "2021-01-13T01:50:49.223Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--44e48cd2-ae55-4dd8-9061-5c3ad84c5e38", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--b1bfc910-08ad-45c0-8923-1230294ba204", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "related-to", "source_ref": "course-of-action--44e48cd2-ae55-4dd8-9061-5c3ad84c5e38", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--8e844648-b735-454f-94be-8ecdbefdc333", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "related-to", "source_ref": "course-of-action--44e48cd2-ae55-4dd8-9061-5c3ad84c5e38", "target_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--a8c9e974-7ae0-4047-a01f-19d4be42d0c7", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--158e4a17-eb80-481b-8755-80823887c423", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--f7bc54e8-4305-4e86-b5ef-0cdab9defcb3", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "related-to", "source_ref": "course-of-action--158e4a17-eb80-481b-8755-80823887c423", "target_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--72feaf25-d06e-428d-9608-246e9665fa46", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9a644f50-2e19-42a3-a315-61b9a428ff3d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--9aa5e866-1622-48b2-9b18-0d9c58f13cf7", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "related-to", "source_ref": "course-of-action--9a644f50-2e19-42a3-a315-61b9a428ff3d", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--280ad6ec-26cc-4fa0-91c1-e6df925d1f7e", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--57e14d03-8de3-4eec-ba1e-0ad4de1d638d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--e10db7ac-4164-4509-ad76-5ca2a64e4b7b", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "related-to", "source_ref": "course-of-action--57e14d03-8de3-4eec-ba1e-0ad4de1d638d", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--cf7d798b-1f46-4af4-a3ee-23ea9e3bf21a", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--bb04a02b-be65-4b04-8447-c9fc9d247fdb", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.257Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--e30eaeab-1b54-44fa-b789-5a3d19071a8d", - "modified": "2021-01-06T18:28:40.257Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--15a70c97-aa80-4d2f-a060-c756a2771d2a", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.224Z", "id": "relationship--5940a39f-b0b4-40ad-86f5-40705b6844e6", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.224Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--14c038eb-fd30-4b72-b9c4-3fb464cc070f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--4b77c461-1293-4458-b079-ae7e2092439e", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5fa5c644-fb36-4ea3-a27e-845a16acbe0f", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--faa4ffe5-77dd-4b03-bccb-6bd5b21a90a1", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--1b5269df-8118-444b-95cb-b0a6f47467e2", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--80fd764a-dbd4-44f3-b101-86217f2c9af4", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", "target_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--e1a6e4e6-2a7e-42af-b38f-1972cc57eada", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--4757bd10-0a0e-4f54-9bd8-89c149990f3c", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--0a98c3d2-b105-4459-be8c-9ef6ef353faa", "target_ref": "course-of-action--f2ddbb1b-43ee-4f9b-81b4-754d5021f612", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--9c3ed578-89b3-4cc4-91ca-f021a930cf2a", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--5496696e-085b-4643-908b-071efe6ea3c7", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.258Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--6c998291-3108-4a4e-a3b3-8416e2283273", - "modified": "2021-01-06T18:28:40.258Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4bfec462-22f8-4963-ba93-9e58e55c428d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--a420b335-becd-4204-b825-d16b5599cca3", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--01dd77e6-fd57-4d35-8e40-5ae22c7a507b", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--0d9924d9-2b02-474b-9160-4fff27fbfc7c", "target_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.225Z", "id": "relationship--639ca08b-8468-4cdb-8bea-9bd032bdc2c9", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.225Z", "relationship_type": "related-to", "source_ref": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--446aabbd-1e1d-4479-98de-ca4f36bf0666", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", "target_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--21eaab83-4733-48c2-bfa8-e9beb4869580", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--89e33fe5-e700-45c1-a81b-f98fe41cdd53", "target_ref": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--3560f8bb-a7e5-4435-a391-537a2544d1aa", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--4a23ddaf-0e26-4c04-a52e-db06ac5ce62f", "target_ref": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--9125a3f7-f5b9-4856-9afb-bfc5da852bde", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--4a23ddaf-0e26-4c04-a52e-db06ac5ce62f", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.259Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--c380016a-ea70-4bb7-b9fe-2d1efeb42ca1", - "modified": "2021-01-06T18:28:40.259Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b7caf1f1-5e6d-4b91-a944-efa53da088f1", "target_ref": "course-of-action--6d9ec8b7-672f-43a0-ad27-2f60abc04e58", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--e0fda910-fac2-4d09-b13e-d7e044bc4e6e", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--b7caf1f1-5e6d-4b91-a944-efa53da088f1", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--e9ff5261-9453-4c8f-ab67-75fdc42e1d15", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--b7caf1f1-5e6d-4b91-a944-efa53da088f1", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--61dc4522-9acd-43a2-8a37-5bb3a4a23dbb", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--b7caf1f1-5e6d-4b91-a944-efa53da088f1", "target_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--6ed6da6a-0d38-48f4-a5b1-da7d76013a68", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--1ad1dee9-e1f5-4e89-9bc7-93e047147943", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--8d31524e-5b22-427c-9ef6-6fd50faa35d3", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.226Z", "id": "relationship--1cb723a8-affd-4f1e-81ba-665ffda24d18", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.226Z", "relationship_type": "related-to", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--dc32115b-1265-4cd2-8484-9a9481126a4e", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--fa67c613-bc91-4ddb-9ca8-d14c1783df6d", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--2584b51a-d2cd-40d9-8853-277217bc0586", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f03b8b3c-47bd-4599-a805-7c6995119927", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.260Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--f1713ef4-79ed-433a-8daf-6dd6027dc5fc", - "modified": "2021-01-06T18:28:40.260Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--d4d48f96-6a1e-4ce2-88db-4ab35b6b475b", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--4563d819-079d-4a9b-872d-9383e33ecbd6", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "related-to", "source_ref": "course-of-action--d4d48f96-6a1e-4ce2-88db-4ab35b6b475b", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--7efe4068-d1c8-4c2b-a69a-11b67c9c882a", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "related-to", "source_ref": "course-of-action--d4d48f96-6a1e-4ce2-88db-4ab35b6b475b", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--8e5af77d-0a10-43aa-aaf5-71183e546ccf", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "related-to", "source_ref": "course-of-action--d4d48f96-6a1e-4ce2-88db-4ab35b6b475b", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--45b36f56-834b-40b2-bdcc-ee4c80fdce88", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--2575345d-623a-4d84-93e2-4dd7d5343157", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--76b12307-8035-47e3-8cc8-431ef5f5b239", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8dc5afb1-d3d6-4dec-8370-f7dead6401a9", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--9124b95a-1487-4e68-ab89-592bf073a4c3", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f77c68ee-9b5e-4892-8b3f-6bbef43ba796", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--231d31d1-bfd0-41a2-92ec-40d3af36c798", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "related-to", "source_ref": "course-of-action--f77c68ee-9b5e-4892-8b3f-6bbef43ba796", "target_ref": "course-of-action--8532204d-fdff-4238-8a1a-d08b44c48fc7", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.227Z", "id": "relationship--d8b2604e-bfda-4feb-a26e-47b953f6a738", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.227Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--04ed85c0-9508-4874-9084-f663c142d138", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.261Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--56a4d84f-ddd6-4edf-8d15-ba5422f0de44", - "modified": "2021-01-06T18:28:40.261Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--04ed85c0-9508-4874-9084-f663c142d138", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--f2bf28f7-329e-4f29-a0ed-99af353891c6", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--04ed85c0-9508-4874-9084-f663c142d138", "target_ref": "course-of-action--578dade4-f071-44f0-bc03-c2b18d6054b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--e95b0800-17ac-4799-a6c6-2e71868ae203", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--04ed85c0-9508-4874-9084-f663c142d138", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--2c65e1b4-1c70-41c3-99f5-f7fdafbed08b", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ebcd50a0-c818-4170-bb86-1f49025e8637", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--a36600c5-55c9-4f80-9dd5-435ebb89ff46", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--ebcd50a0-c818-4170-bb86-1f49025e8637", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--5f484cd8-9c01-4fd7-918c-c7b6111fa44a", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--ebcd50a0-c818-4170-bb86-1f49025e8637", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--b38af6a5-f294-49f1-b277-609f1f48eaae", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "related-to", "source_ref": "course-of-action--ebcd50a0-c818-4170-bb86-1f49025e8637", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--845d0a3d-7e36-49af-8251-eedb08137f22", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--678c29c1-58b2-4385-a1d7-e3384a3fcd5f", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.228Z", "id": "relationship--2d8eb734-91bb-4b27-90dd-550e42617697", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.228Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--671a953d-a56b-4cf3-9a02-f854441c2953", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.262Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--a501ad21-d296-48d6-9931-97f54b84da3e", - "modified": "2021-01-06T18:28:40.262Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--e67988e9-f342-410d-8fe2-507fa70b07eb", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.263Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--6d29a41d-d27a-46bf-9f5d-19022b6298e3", - "modified": "2021-01-06T18:28:40.263Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ba8dc35-f604-4d68-8b79-67f9a0661f66", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.263Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--90b992a6-3cbc-4cd9-90f0-7afffa29117c", - "modified": "2021-01-06T18:28:40.263Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--744928b3-f992-46fc-8df8-9dcddc9d9aa4", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.263Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--f0aa2912-a14c-448c-b225-1f196e973598", - "modified": "2021-01-06T18:28:40.263Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--9ef87738-5f2c-4e69-8edf-1dfb8c2d95d4", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.263Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--df71f090-4433-4809-80a2-2072d2a1d178", - "modified": "2021-01-06T18:28:40.263Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "related-to", "source_ref": "course-of-action--9ef87738-5f2c-4e69-8edf-1dfb8c2d95d4", "target_ref": "course-of-action--09dd803d-fc7a-406b-81e0-bbbe34727650", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--a3a690f8-831e-442f-a7b5-6678e01fd220", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--96abd1f1-484d-4bf2-b255-c4ae46b6d518", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--4725a86c-6f67-4a24-a38e-9b9bb10a3559", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--69701b1b-cffa-495c-9a26-cf845e21fad4", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--8cee62fa-e267-45db-bcb1-f8f058b0984d", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "related-to", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--a3cbc552-0732-45d8-b7ad-3972bb1387d1", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "related-to", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--fc13b22f-7139-440a-b182-9bbaea61e07a", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "related-to", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "course-of-action--d535a061-442d-4910-8a17-45f54dd42342", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.229Z", "id": "relationship--9ef0d4e4-dae6-4b52-9f6a-45fa44af3d64", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.229Z", "relationship_type": "related-to", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--53e36633-b318-4f94-ab72-fd928453df2e", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "related-to", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.264Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--1d670eb4-d6cb-4b3f-9d4a-b8ec1c35e06e", - "modified": "2021-01-06T18:28:40.264Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ae3cd676-2e90-4b69-8531-24d8fe501546", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--d00bf12f-4f27-44be-bd22-af0438b0542d", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae3cd676-2e90-4b69-8531-24d8fe501546", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--45158a15-98ee-4f63-bd9c-07d7b03d81c6", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae3cd676-2e90-4b69-8531-24d8fe501546", "target_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--fabe1942-e8d8-4fbb-8125-a02325e8092a", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "related-to", "source_ref": "course-of-action--ae3cd676-2e90-4b69-8531-24d8fe501546", "target_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--da334cb4-1176-45f3-b34b-d6f7e975e911", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--f78219ca-a80a-4fff-afdc-2d4ee5fe1840", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--9f6dcafd-3a01-4813-af50-b2fb8ef4c6cf", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--8a20935c-0758-459f-a610-8849a0a5ac12", "target_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.230Z", "id": "relationship--5633722a-6ac6-4985-ab37-478be6baaf41", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.230Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--b8224160-2a6e-414d-ae64-5cb1fa5d9e15", "target_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--7529e353-bce6-418a-956b-8666bc5f553b", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--b8224160-2a6e-414d-ae64-5cb1fa5d9e15", "target_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.265Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--bbefa056-d010-4aea-813e-c77bb7c9c2d9", - "modified": "2021-01-06T18:28:40.265Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--b8224160-2a6e-414d-ae64-5cb1fa5d9e15", "target_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--a77abb6e-df6d-4552-b401-9376ddcd8945", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--86a4ccb9-da32-47b0-ac4e-dc85908961bf", "target_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--e9cd751a-d952-4631-ba7f-00c63ffdc78c", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--80c8ccb2-8e75-40ab-b652-e77490eb7ded", "target_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--d9223714-705c-4773-82c0-78115cbf9602", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--21b34a5b-94a6-4ae7-85b0-ce1c2bfa78f0", "target_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--a2524181-690f-4c01-97ff-275ce278c350", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--6ac4663f-5cee-40b6-b7cb-57d6286cdd63", "target_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--5c3dd465-a5d4-4380-a228-84729d2975a6", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", "target_ref": "course-of-action--5fc8386b-3246-4777-adcb-20c61c622332", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--781286fb-863f-45f8-879b-02084820f7a1", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", "target_ref": "course-of-action--e58c3973-34fe-471a-988b-78a1ff166372", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.266Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--b119510b-d0b9-4bd5-b4da-38ac6342995c", - "modified": "2021-01-06T18:28:40.266Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--bb1c30fd-615e-4502-945b-b9dcf2c4a47f", "target_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--d38a908b-3adc-4fe7-9145-e592e9fdc8a0", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.231Z", "id": "relationship--754f7aec-262e-4522-90b3-a96f67e14a55", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.231Z", "relationship_type": "related-to", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "course-of-action--71fe6220-9941-4271-8678-f86707ba9261", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--1ec14abd-644e-4197-a11c-1a68ee6089c5", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "course-of-action--2adf6f98-6128-4f7e-9626-0d0b3a11299b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--1f3346f5-380e-4c58-88e2-a1c359207140", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "course-of-action--b1c82ec5-aebc-4e13-9690-4c7ecab2b36b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--f378e1cc-7c89-45af-ab6d-7024eac71130", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "course-of-action--940b04a7-552f-477c-9dac-8e542d27e8bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--de0d88bc-f4bb-4dca-aeff-506101176330", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "target_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--753e5142-4dfd-4dd4-bd17-17d6aa4dfdb5", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "target_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--4a3421c8-871d-4d48-9619-d57758f9b425", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "related-to", "source_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "target_ref": "course-of-action--d04c13d3-fee7-4336-8e6d-f0f453fa3fc0", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.267Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--509e4199-ad48-4b60-9dd1-62e53a9e6535", - "modified": "2021-01-06T18:28:40.267Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--95f79ef0-1834-4ca9-8330-fdee284e45ce", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--43de9709-b281-4c25-a43b-91e00714e45c", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--c7b88561-e929-49e5-bd39-b0899f240d4e", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--d9b7350b-4482-42e5-b916-210a8a7048f0", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--34449970-9671-47a0-b75f-55c691ac3f39", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.232Z", "id": "relationship--ca2d0be7-3c80-4f20-8ef8-28236c6a6623", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.232Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--ef0addb3-034e-4d1b-9c73-ca96a0c9c609", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--348a8596-7775-4ee8-8d42-8768d77f3be5", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--1390ea46-a6bf-4cfb-8967-19f63fda83a3", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--d1be0a55-1207-4fac-9ace-7774bdbb70a4", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--67d96f22-5a53-4c2b-869d-48fd07a5e703", "target_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--5e586ae4-fea3-4817-a8c0-76b686f59f6d", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--67d96f22-5a53-4c2b-869d-48fd07a5e703", "target_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--98873c18-796b-4671-8ab6-0a39d2a38e52", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "subcontrol-of", "source_ref": "course-of-action--cbd6124b-bcc7-4640-976c-30e769b9d99b", "target_ref": "course-of-action--67d96f22-5a53-4c2b-869d-48fd07a5e703", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--afdc0910-6874-4e68-9e82-56e052798c60", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.268Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--5fb15767-c463-4fe5-8bab-d25fdb9d4fb6", - "modified": "2021-01-06T18:28:40.268Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--a779e1ad-207e-4d60-9fa1-05110b7d82d1", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "course-of-action--04a6ee99-dcff-445e-909c-2ae6e99f63f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--abd9ebf6-77fe-4db1-9055-cb872dd6ecbb", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.233Z", "id": "relationship--57e8d9cf-6b4b-491b-b958-e666379ab04f", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.233Z", "relationship_type": "related-to", "source_ref": "course-of-action--b57d1942-ba97-4ec9-b5c1-be4ed11c7780", "target_ref": "course-of-action--d8baae5e-1591-45de-9f42-b17aa28a1ae6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--0b329cb9-f87b-4858-99a4-5d89409a85a1", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--b57d1942-ba97-4ec9-b5c1-be4ed11c7780", "target_ref": "course-of-action--3fb2b16f-e973-49d8-ae88-de09f98f32f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--6d16b526-3441-4229-bd35-17af232ff040", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--b57d1942-ba97-4ec9-b5c1-be4ed11c7780", "target_ref": "course-of-action--bf95c1b7-8895-4fb1-a0cf-b8b2ecef68e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--ba4369c3-3f12-4961-a2c5-8398b11798a2", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--b57d1942-ba97-4ec9-b5c1-be4ed11c7780", "target_ref": "course-of-action--4e6eda21-4151-4be1-aaee-07ea591f2ea1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.269Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--79701cdf-c5d3-4d45-bffd-c11591c5cf39", - "modified": "2021-01-06T18:28:40.269Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--791342eb-0328-4026-9cce-3f1d3055f570", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--cd08a0a4-c488-4063-bf70-3f159a3c3460", "target_ref": "course-of-action--b734078f-a009-4f48-ad74-4df3a6cc1aa1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--307d6b25-21a7-44d2-9439-acf720038022", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--cd08a0a4-c488-4063-bf70-3f159a3c3460", "target_ref": "course-of-action--3754871c-a6e4-4e8b-9f50-1803384fbadd", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--1ffcdce1-6497-4495-b172-0c839f4a6487", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--b734078f-a009-4f48-ad74-4df3a6cc1aa1", "target_ref": "course-of-action--aba18f7c-1fdb-4371-8ac7-3d1e18bf354c", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--4c935b21-d9d1-40e2-a209-558b03681f05", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "target_ref": "course-of-action--c0db1680-d8d5-4830-885e-3fa8cecd3cd4", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--8bd98ffa-28b1-4ae9-95b8-d60b64e00a20", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "target_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.234Z", "id": "relationship--8dae4e8c-c888-4536-9cc7-4523e6b4f13d", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.234Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "target_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--e396771e-335b-4ea2-927b-ba2428ca4baf", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.270Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--58dbb5b6-d7da-478a-a2fe-2c3da3d88a5a", - "modified": "2021-01-06T18:28:40.270Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "target_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--70448202-e6fc-4e39-93a9-37aa73d630dc", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "target_ref": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--8f5c14cf-12cb-4895-8f1f-6f3b59d1abb0", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "target_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--5f24388c-f21e-4bed-9801-d639fd1ea579", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "target_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--991657bf-2c7b-41c7-b7df-23c42acb280b", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--caae07f1-4a47-4ff8-88af-ff92beba5176", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--a5ef085e-2292-4d53-8000-4ec72eb52e7e", "target_ref": "course-of-action--a92ccefe-5608-40c7-b561-4852ffbde461", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--5806325a-9d9d-41de-b351-454e6462c171", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--c83fb118-1599-4125-89d8-e4d0b557997f", "target_ref": "course-of-action--cae7bfcc-8927-42a2-b2e8-602c52b72b0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--561c409a-be4b-4e14-8a6e-a59b6e22e404", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "target_ref": "course-of-action--6e7437fb-2479-47c4-b986-504adbdebbed", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.235Z", "id": "relationship--5d6cbee2-8de0-4066-95d5-141564ab506c", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.235Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "target_ref": "course-of-action--47b9ea31-f037-404a-819c-20c42b447ae1", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.271Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--6ee15dd4-daf8-4676-ab2e-d202374e71ad", - "modified": "2021-01-06T18:28:40.271Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--ef5fdcee-f295-4e2b-94cf-78a35c561610", "target_ref": "course-of-action--a06dda69-d9c3-44dc-bc00-bd7c15fa87ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--b59c8736-1f50-46fd-9be7-6a002102f22e", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--4a2a6f81-9e5c-41d6-9da2-0e2d0dbff6fd", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--14c023c0-e2c7-4ea4-8a24-eadf1a6acbe2", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--6680d859-8610-434b-9a7c-482dee6c7af6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--a523fce5-7245-44a7-8f50-e5cfa8abd562", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--2e888f3a-2ee3-43a7-9598-42b2727cb029", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--a6405f86-5a51-4bbf-b28d-497cd5625fa1", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--6fcd736a-5b17-42c5-966a-1ae09acd37eb", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--94dfa98c-507a-4804-803b-52f6044df7ab", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--6436e5b4-f2a7-4add-8bc6-6ced466fc370", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--9e27ca5c-674b-44ef-afb1-550be6db9b4a", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--f27900bf-d6b5-4d0a-ae42-6cddde9165b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.272Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--329e72df-5093-48f9-842d-f4c05de14172", - "modified": "2021-01-06T18:28:40.272Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.236Z", "id": "relationship--fd56ee1f-957b-4e83-a38f-339c0bde71e1", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.236Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--4a7ee107-6710-4c75-87cf-c9e0e8123484", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--eb123916-6a52-418a-97af-c9ee15c2f18d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--299fd70d-9e36-4f47-93e9-7fbbd7877566", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--55fe329b-24cd-4c80-ac46-18537d57c208", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--dd07936d-fc6e-4abe-84d5-50ce0fc622d6", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--d417454d-eb26-4e41-aea3-072adbd7e980", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--47a9d5c9-6ecc-4679-a7f4-b07977adb685", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--89a12e1c-07ed-4aac-ad42-7df9d191506f", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--e889ce29-f714-4a59-97a9-1e5fa327cdab", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--ce8281d5-c9ae-469d-b49c-6d5b9bc869ca", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--93c2b136-90cf-419a-9b2c-643a8483e8aa", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--aea6dddf-adbc-4e0a-ac86-32b41a7e3dbc", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--ae4c99bf-caf4-4b25-99b3-aed35eae93f2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.273Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--2f37834d-93b1-472b-814c-16593b639a80", - "modified": "2021-01-06T18:28:40.273Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--292b2355-3f6d-421f-a0f4-7efa2d024c23", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--5b75c8e6-9619-476e-b53e-fdda274e214f", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--c095da18-c84c-4893-9ccb-de6f0fca64ee", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.237Z", "id": "relationship--b87b8ead-bfec-4a86-a6c4-73d2ad6aecb7", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.237Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--0e38e7e9-5cff-4c67-8f49-716d54f190cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--4757892a-b6b5-42a6-ad5c-a9edf4ecf895", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "target_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--903b29c1-a3c9-4f82-b7bd-4652c684ae6f", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--563b3e57-4cee-421d-a855-af88fa643a36", "target_ref": "course-of-action--75e19358-f29d-48cd-b4fb-5849dfb4be50", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--b4407623-91e8-4148-83c8-0ea039c8a2b9", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--563b3e57-4cee-421d-a855-af88fa643a36", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--e981fe67-fdd8-4bc3-881b-0ccb0cad603c", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "target_ref": "course-of-action--904e00ef-9bed-4066-8405-9ca0b155a98d", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.274Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--d3b0df7e-12a8-4760-9641-8e610e3167be", - "modified": "2021-01-06T18:28:40.274Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "target_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--ef73bab3-8c17-405a-bf75-7c81ccf74253", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "target_ref": "course-of-action--1a3430b8-7b0d-4167-a85d-45edbbe81cf3", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--fa4757d6-f610-4f95-9826-3db652058eb7", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "target_ref": "course-of-action--eabf2b48-b659-4b5c-98e7-22d889241932", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--ebba4279-a962-4770-852b-e4878d17e42f", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--11f8a8de-91d6-4fba-9b2e-1e33283b1995", "target_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--f938530c-4e87-476a-876a-9edfb3663ed8", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--3fdce913-c30e-43d2-af19-458b773e8875", "target_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--48fe3a22-be95-469e-a7a4-406c1ff00622", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--b497e16c-b1dc-4a5f-b6d3-cb680ec80d80", "target_ref": "course-of-action--b6e6b49e-cc57-4402-9546-c1e99a24ae03", "type": "relationship" }, { - "created": "2021-01-06T18:28:40.275Z", + "created": "2021-01-13T01:50:49.238Z", "id": "relationship--9c1a04c9-7618-4968-a305-87bde77cd685", - "modified": "2021-01-06T18:28:40.275Z", + "modified": "2021-01-13T01:50:49.238Z", "relationship_type": "related-to", "source_ref": "course-of-action--b497e16c-b1dc-4a5f-b6d3-cb680ec80d80", "target_ref": "course-of-action--b497e16c-b1dc-4a5f-b6d3-cb680ec80d80", diff --git a/frameworks/nist800-53-r4/stix/nist800-53-r4-enterprise-attack.json b/frameworks/nist800-53-r4/stix/nist800-53-r4-enterprise-attack.json index 1d3a4e16..cb19ca8f 100644 --- a/frameworks/nist800-53-r4/stix/nist800-53-r4-enterprise-attack.json +++ b/frameworks/nist800-53-r4/stix/nist800-53-r4-enterprise-attack.json @@ -1,5 +1,5 @@ { - "id": "bundle--b172240b-bc3b-49e1-8a2b-193a98ae6f83", + "id": "bundle--c86acc7a-0e77-4b0b-b3a0-d8e4548e6fc0", "objects": [ { "created": "2017-12-14T16:46:06.044Z", @@ -229406,7 +229406,7 @@ "type": "marking-definition" }, { - "created": "2021-01-06T18:28:39.726Z", + "created": "2021-01-13T01:50:48.876Z", "description": "The organization:\n\n* **AC-2a.** Identifies and selects the following types of information system accounts to support organizational missions/business functions: [Assignment: organization-defined information system account types];\n* **AC-2b.** Assigns account managers for information system accounts;\n* **AC-2c.** Establishes conditions for group and role membership;\n* **AC-2d.** Specifies authorized users of the information system, group and role membership, and access authorizations (i.e., privileges) and other attributes (as required) for each account;\n* **AC-2e.** Requires approvals by [Assignment: organization-defined personnel or roles] for requests to create information system accounts;\n* **AC-2f.** Creates, enables, modifies, disables, and removes information system accounts in accordance with [Assignment: organization-defined procedures or conditions];\n* **AC-2g.** Monitors the use of information system accounts;\n* **AC-2h.** Notifies account managers:\n * **AC-2h.1.** When accounts are no longer required;\n * **AC-2h.2.** When users are terminated or transferred; and\n * **AC-2h.3.** When individual information system usage or need-to-know changes;\n* **AC-2i.** Authorizes access to the information system based on:\n * **AC-2i.1.** A valid access authorization;\n * **AC-2i.2.** Intended system usage; and\n * **AC-2i.3.** Other attributes as required by the organization or associated missions/business functions;\n* **AC-2j.** Reviews accounts for compliance with account management requirements [Assignment: organization-defined frequency]; and\n* **AC-2k.** Establishes a process for reissuing shared/group account credentials (if deployed) when individuals are removed from the group.\n\nInformation system account types include, for example, individual, shared, group, system, guest/anonymous, emergency, developer/manufacturer/vendor, temporary, and service. Some of the account management requirements listed above can be implemented by organizational information systems. The identification of authorized users of the information system and the specification of access privileges reflects the requirements in other security controls in the security plan. Users requiring administrative privileges on information system accounts receive additional scrutiny by appropriate organizational personnel (e.g., system owner, mission/business owner, or chief information security officer) responsible for approving such accounts and privileged access. Organizations may choose to define access privileges or other attributes by account, by type of account, or a combination of both. Other attributes required for authorizing access include, for example, restrictions on time-of-day, day-of-week, and point-of-origin. In defining other account attributes, organizations consider system-related requirements (e.g., scheduled maintenance, system upgrades) and mission/business requirements, (e.g., time zone differences, customer requirements, remote access to support travel requirements). Failure to consider these factors could affect information system availability. Temporary and emergency accounts are accounts intended for short-term use. Organizations establish temporary accounts as a part of normal account activation procedures when there is a need for short-term accounts without the demand for immediacy in account activation. Organizations establish emergency accounts in response to crisis situations and with the need for rapid account activation. Therefore, emergency account activation may bypass normal account authorization processes. Emergency and temporary accounts are not to be confused with infrequently used accounts (e.g., local logon accounts used for special tasks defined by organizations or when network resources are unavailable). Such accounts remain available and are not subject to automatic disabling or removal dates. Conditions for disabling or deactivating accounts include, for example: (i) when shared/group, emergency, or temporary accounts are no longer required; or (ii) when individuals are transferred or terminated. Some types of information system accounts may require specialized training.", "external_references": [ { @@ -229415,7 +229415,7 @@ } ], "id": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "modified": "2021-01-06T18:28:39.726Z", + "modified": "2021-01-13T01:50:48.876Z", "name": "Account Management", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229427,7 +229427,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.728Z", + "created": "2021-01-13T01:50:48.878Z", "description": "The information system enforces approved authorizations for logical access to information and system resources in accordance with applicable access control policies.\nAccess control policies (e.g., identity-based policies, role-based policies, control matrices, cryptography) control access between active entities or subjects (i.e., users or processes acting on behalf of users) and passive entities or objects (e.g., devices, files, records, domains) in information systems. In addition to enforcing authorized access at the information system level and recognizing that information systems can host many applications and services in support of organizational missions and business operations, access enforcement mechanisms can also be employed at the application and service level to provide increased information security.", "external_references": [ { @@ -229436,7 +229436,7 @@ } ], "id": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "modified": "2021-01-06T18:28:39.728Z", + "modified": "2021-01-13T01:50:48.878Z", "name": "Access Enforcement", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229448,7 +229448,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.731Z", + "created": "2021-01-13T01:50:48.879Z", "description": "The information system enforces approved authorizations for controlling the flow of information within the system and between interconnected systems based on [Assignment: organization-defined information flow control policies].\nInformation flow control regulates where information is allowed to travel within an information system and between information systems (as opposed to who is allowed to access the information) and without explicit regard to subsequent accesses to that information. Flow control restrictions include, for example, keeping export-controlled information from being transmitted in the clear to the Internet, blocking outside traffic that claims to be from within the organization, restricting web requests to the Internet that are not from the internal web proxy server, and limiting information transfers between organizations based on data structures and content. Transferring information between information systems representing different security domains with different security policies introduces risk that such transfers violate one or more domain security policies. In such situations, information owners/stewards provide guidance at designated policy enforcement points between interconnected systems. Organizations consider mandating specific architectural solutions when required to enforce specific security policies. Enforcement includes, for example: (i) prohibiting information transfers between interconnected systems (i.e., allowing access only); (ii) employing hardware mechanisms to enforce one-way information flows; and (iii) implementing trustworthy regrading mechanisms to reassign security attributes and security labels. Organizations commonly employ information flow control policies and enforcement mechanisms to control the flow of information between designated sources and destinations (e.g., networks, individuals, and devices) within information systems and between interconnected systems. Flow control is based on the characteristics of the information and/or the information path. Enforcement occurs, for example, in boundary protection devices (e.g., gateways, routers, guards, encrypted tunnels, firewalls) that employ rule sets or establish configuration settings that restrict information system services, provide a packet-filtering capability based on header information, or message-filtering capability based on message content (e.g., implementing key word searches or using document characteristics). Organizations also consider the trustworthiness of filtering/inspection mechanisms (i.e., hardware, firmware, and software components) that are critical to information flow enforcement. Control enhancements 3 through 22 primarily address cross-domain solution needs which focus on more advanced filtering techniques, in-depth analysis, and stronger flow enforcement mechanisms implemented in cross-domain products, for example, high-assurance guards. Such capabilities are generally not available in commercial off-the-shelf information technology products.", "external_references": [ { @@ -229457,7 +229457,7 @@ } ], "id": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "modified": "2021-01-06T18:28:39.731Z", + "modified": "2021-01-13T01:50:48.879Z", "name": "Information Flow Enforcement", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229468,7 +229468,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization:\n\n* **AC-5a.** Separates [Assignment: organization-defined duties of individuals];\n* **AC-5b.** Documents separation of duties of individuals; and\n* **AC-5c.** Defines information system access authorizations to support separation of duties.\n\nSeparation of duties addresses the potential for abuse of authorized privileges and helps to reduce the risk of malevolent activity without collusion. Separation of duties includes, for example: (i) dividing mission functions and information system support functions among different individuals and/or roles; (ii) conducting information system support functions with different individuals (e.g., system management, programming, configuration management, quality assurance and testing, and network security); and (iii) ensuring security personnel administering access control functions do not also administer audit functions.", "external_references": [ { @@ -229477,7 +229477,7 @@ } ], "id": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Separation Of Duties", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229488,7 +229488,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.736Z", + "created": "2021-01-13T01:50:48.883Z", "description": "The organization employs the principle of least privilege, allowing only authorized accesses for users (or processes acting on behalf of users) which are necessary to accomplish assigned tasks in accordance with organizational missions and business functions.\nOrganizations employ least privilege for specific duties and information systems. The principle of least privilege is also applied to information system processes, ensuring that the processes operate at privilege levels no higher than necessary to accomplish required organizational missions/business functions. Organizations consider the creation of additional processes, roles, and information system accounts as necessary, to achieve least privilege. Organizations also apply least privilege to the development, implementation, and operation of organizational information systems.", "external_references": [ { @@ -229497,7 +229497,7 @@ } ], "id": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "modified": "2021-01-06T18:28:39.736Z", + "modified": "2021-01-13T01:50:48.883Z", "name": "Least Privilege", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229508,7 +229508,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.739Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system:\n\n* **AC-7a.** Enforces a limit of [Assignment: organization-defined number] consecutive invalid logon attempts by a user during a [Assignment: organization-defined time period]; and\n* **AC-7b.** Automatically [Selection: locks the account/node for an [Assignment: organization-defined time period]; locks the account/node until released by an administrator; delays next logon prompt according to [Assignment: organization-defined delay algorithm]] when the maximum number of unsuccessful attempts is exceeded.\n\nThis control applies regardless of whether the logon occurs via a local or network connection. Due to the potential for denial of service, automatic lockouts initiated by information systems are usually temporary and automatically release after a predetermined time period established by organizations. If a delay algorithm is selected, organizations may choose to employ different algorithms for different information system components based on the capabilities of those components. Responses to unsuccessful logon attempts may be implemented at both the operating system and the application levels.", "external_references": [ { @@ -229517,7 +229517,7 @@ } ], "id": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "modified": "2021-01-06T18:28:39.739Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "Unsuccessful Logon Attempts", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229529,7 +229529,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.740Z", + "created": "2021-01-13T01:50:48.885Z", "description": "The information system:\n\n* **AC-8a.** Displays to users [Assignment: organization-defined system use notification message or banner] before granting access to the system that provides privacy and security notices consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance and states that:\n * **AC-8a.1.** Users are accessing a U.S. Government information system;\n * **AC-8a.2.** Information system usage may be monitored, recorded, and subject to audit;\n * **AC-8a.3.** Unauthorized use of the information system is prohibited and subject to criminal and civil penalties; and\n * **AC-8a.4.** Use of the information system indicates consent to monitoring and recording;\n* **AC-8b.** Retains the notification message or banner on the screen until users acknowledge the usage conditions and take explicit actions to log on to or further access the information system; and\n* **AC-8c.** For publicly accessible systems:\n * **AC-8c.1.** Displays system use information [Assignment: organization-defined conditions], before granting further access;\n * **AC-8c.2.** Displays references, if any, to monitoring, recording, or auditing that are consistent with privacy accommodations for such systems that generally prohibit those activities; and\n * **AC-8c.3.** Includes a description of the authorized uses of the system.\n\nSystem use notifications can be implemented using messages or warning banners displayed before individuals log in to information systems. System use notifications are used only for access via logon interfaces with human users and are not required when such human interfaces do not exist. Organizations consider system use notification messages/banners displayed in multiple languages based on specific organizational needs and the demographics of information system users. Organizations also consult with the Office of the General Counsel for legal review and approval of warning banner content.", "external_references": [ { @@ -229538,7 +229538,7 @@ } ], "id": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", - "modified": "2021-01-06T18:28:39.740Z", + "modified": "2021-01-13T01:50:48.885Z", "name": "System Use Notification", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229550,7 +229550,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system limits the number of concurrent sessions for each [Assignment: organization-defined account and/or account type] to [Assignment: organization-defined number].\nOrganizations may define the maximum number of concurrent sessions for information system accounts globally, by account type (e.g., privileged user, non-privileged user, domain, specific application), by account, or a combination. For example, organizations may limit the number of concurrent sessions for system administrators or individuals working in particularly sensitive domains or mission-critical applications. This control addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts.", "external_references": [ { @@ -229559,7 +229559,7 @@ } ], "id": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Concurrent Session Control", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229569,7 +229569,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system:\n\n* **AC-11a.** Prevents further access to the system by initiating a session lock after [Assignment: organization-defined time period] of inactivity or upon receiving a request from a user; and\n* **AC-11b.** Retains the session lock until the user reestablishes access using established identification and authentication procedures.\n\nSession locks are temporary actions taken when users stop work and move away from the immediate vicinity of information systems but do not want to log out because of the temporary nature of their absences. Session locks are implemented where session activities can be determined. This is typically at the operating system level, but can also be at the application level. Session locks are not an acceptable substitute for logging out of information systems, for example, if organizations require users to log out at the end of workdays.", "external_references": [ { @@ -229578,7 +229578,7 @@ } ], "id": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Session Lock", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229589,7 +229589,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.742Z", + "created": "2021-01-13T01:50:48.886Z", "description": "The information system automatically terminates a user session after [Assignment: organization-defined conditions or trigger events requiring session disconnect].\nThis control addresses the termination of user-initiated logical sessions in contrast to SC-10 which addresses the termination of network connections that are associated with communications sessions (i.e., network disconnect). A logical session (for local, network, and remote access) is initiated whenever a user (or process acting on behalf of a user) accesses an organizational information system. Such user sessions can be terminated (and thus terminate user access) without terminating network sessions. Session termination terminates all processes associated with a user\u00ef\u00bf\u00bds logical session except those processes that are specifically created by the user (i.e., session owner) to continue after the session is terminated. Conditions or trigger events requiring automatic session termination can include, for example, organization-defined periods of user inactivity, targeted responses to certain types of incidents, time-of-day restrictions on information system use.", "external_references": [ { @@ -229598,7 +229598,7 @@ } ], "id": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "modified": "2021-01-06T18:28:39.742Z", + "modified": "2021-01-13T01:50:48.886Z", "name": "Session Termination", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229609,7 +229609,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The organization:\n\n* **AC-14a.** Identifies [Assignment: organization-defined user actions] that can be performed on the information system without identification or authentication consistent with organizational missions/business functions; and\n* **AC-14b.** Documents and provides supporting rationale in the security plan for the information system, user actions not requiring identification or authentication.\n\nThis control addresses situations in which organizations determine that no identification or authentication is required in organizational information systems. Organizations may allow a limited number of user actions without identification or authentication including, for example, when individuals access public websites or other publicly accessible federal information systems, when individuals use mobile phones to receive calls, or when facsimiles are received. Organizations also identify actions that normally require identification or authentication but may under certain circumstances (e.g., emergencies), allow identification or authentication mechanisms to be bypassed. Such bypasses may occur, for example, via a software-readable physical switch that commands bypass of the logon functionality and is protected from accidental or unmonitored use. This control does not apply to situations where identification and authentication have already occurred and are not repeated, but rather to situations where identification and authentication have not yet occurred. Organizations may decide that there are no user actions that can be performed on organizational information systems without identification and authentication and thus, the values for assignment statements can be none.", "external_references": [ { @@ -229618,7 +229618,7 @@ } ], "id": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Permitted Actions Without Identification Or Authentication", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229630,7 +229630,7 @@ "x_mitre_priority": "P3" }, { - "created": "2021-01-06T18:28:39.743Z", + "created": "2021-01-13T01:50:48.887Z", "description": "The organization:\n\n* **AC-16a.** Provides the means to associate [Assignment: organization-defined types of security attributes] having [Assignment: organization-defined security attribute values] with information in storage, in process, and/or in transmission;\n* **AC-16b.** Ensures that the security attribute associations are made and retained with the information;\n* **AC-16c.** Establishes the permitted [Assignment: organization-defined security attributes] for [Assignment: organization-defined information systems]; and\n* **AC-16d.** Determines the permitted [Assignment: organization-defined values or ranges] for each of the established security attributes.\n\nInformation is represented internally within information systems using abstractions known as data structures. Internal data structures can represent different types of entities, both active and passive. Active entities, also known as subjects, are typically associated with individuals, devices, or processes acting on behalf of individuals. Passive entities, also known as objects, are typically associated with data structures such as records, buffers, tables, files, inter-process pipes, and communications ports. Security attributes, a form of metadata, are abstractions representing the basic properties or characteristics of active and passive entities with respect to safeguarding information. These attributes may be associated with active entities (i.e., subjects) that have the potential to send or receive information, to cause information to flow among objects, or to change the information system state. These attributes may also be associated with passive entities (i.e., objects) that contain or receive information. The association of security attributes to subjects and objects is referred to as binding and is typically inclusive of setting the attribute value and the attribute type. Security attributes when bound to data/information, enables the enforcement of information security policies for access control and information flow control, either through organizational processes or information system functions or mechanisms. The content or assigned values of security attributes can directly affect the ability of individuals to access organizational information. Organizations can define the types of attributes needed for selected information systems to support missions/business functions. There is potentially a wide range of values that can be assigned to any given security attribute. Release markings could include, for example, US only, NATO, or NOFORN (not releasable to foreign nationals). By specifying permitted attribute ranges and values, organizations can ensure that the security attribute values are meaningful and relevant. The term security labeling refers to the association of security attributes with subjects and objects represented by internal data structures within organizational information systems, to enable information system-based enforcement of information security policies. Security labels include, for example, access authorizations, data life cycle protection (i.e., encryption and data expiration), nationality, affiliation as contractor, and classification of information in accordance with legal and compliance requirements. The term security marking refers to the association of security attributes with objects in a human-readable form, to enable organizational process-based enforcement of information security policies. The AC-16 base control represents the requirement for user-based attribute association (marking). The enhancements to AC-16 represent additional requirements including information system-based attribute association (labeling). Types of attributes include, for example, classification level for objects and clearance (access authorization) level for subjects. An example of a value for both of these attribute types is Top Secret.", "external_references": [ { @@ -229639,14 +229639,14 @@ } ], "id": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "modified": "2021-01-06T18:28:39.743Z", + "modified": "2021-01-13T01:50:48.887Z", "name": "Security Attributes", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.745Z", + "created": "2021-01-13T01:50:48.889Z", "description": "The organization:\n\n* **AC-17a.** Establishes and documents usage restrictions, configuration/connection requirements, and implementation guidance for each type of remote access allowed; and\n* **AC-17b.** Authorizes remote access to the information system prior to allowing such connections.\n\nRemote access is access to organizational information systems by users (or processes acting on behalf of users) communicating through external networks (e.g., the Internet). Remote access methods include, for example, dial-up, broadband, and wireless. Organizations often employ encrypted virtual private networks (VPNs) to enhance confidentiality and integrity over remote connections. The use of encrypted VPNs does not make the access non-remote; however, the use of VPNs, when adequately provisioned with appropriate security controls (e.g., employing appropriate encryption techniques for confidentiality and integrity protection) may provide sufficient assurance to the organization that it can effectively treat such connections as internal networks. Still, VPN connections traverse external networks, and the encrypted VPN does not enhance the availability of remote connections. Also, VPNs with encrypted tunnels can affect the organizational capability to adequately monitor network communications traffic for malicious code. Remote access controls apply to information systems other than public web servers or systems designed for public access. This control addresses authorization prior to allowing remote access without specifying the formats for such authorization. While organizations may use interconnection security agreements to authorize remote access connections, such agreements are not required by this control. Enforcing access restrictions for remote connections is addressed in AC-3.", "external_references": [ { @@ -229655,7 +229655,7 @@ } ], "id": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "modified": "2021-01-06T18:28:39.745Z", + "modified": "2021-01-13T01:50:48.889Z", "name": "Remote Access", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229667,7 +229667,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.747Z", + "created": "2021-01-13T01:50:48.890Z", "description": "The organization:\n\n* **AC-18a.** Establishes usage restrictions, configuration/connection requirements, and implementation guidance for wireless access; and\n* **AC-18b.** Authorizes wireless access to the information system prior to allowing such connections.\n\nWireless technologies include, for example, microwave, packet radio (UHF/VHF), 802.11x, and Bluetooth. Wireless networks use authentication protocols (e.g., EAP/TLS, PEAP), which provide credential protection and mutual authentication.", "external_references": [ { @@ -229676,7 +229676,7 @@ } ], "id": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "modified": "2021-01-06T18:28:39.747Z", + "modified": "2021-01-13T01:50:48.890Z", "name": "Wireless Access", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229688,7 +229688,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.748Z", + "created": "2021-01-13T01:50:48.891Z", "description": "The organization:\n\n* **AC-19a.** Establishes usage restrictions, configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices; and\n* **AC-19b.** Authorizes the connection of mobile devices to organizational information systems.\n\nA mobile device is a computing device that: (i) has a small form factor such that it can easily be carried by a single individual; (ii) is designed to operate without a physical connection (e.g., wirelessly transmit or receive information); (iii) possesses local, non-removable or removable data storage; and (iv) includes a self-contained power source. Mobile devices may also include voice communication capabilities, on-board sensors that allow the device to capture information, and/or built-in features for synchronizing local data with remote locations. Examples include smart phones, E-readers, and tablets. Mobile devices are typically associated with a single individual and the device is usually in close proximity to the individual; however, the degree of proximity can vary depending upon on the form factor and size of the device. The processing, storage, and transmission capability of the mobile device may be comparable to or merely a subset of desktop systems, depending upon the nature and intended purpose of the device. Due to the large variety of mobile devices with different technical characteristics and capabilities, organizational restrictions may vary for the different classes/types of such devices. Usage restrictions and specific implementation guidance for mobile devices include, for example, configuration management, device identification and authentication, implementation of mandatory protective software (e.g., malicious code detection, firewall), scanning devices for malicious code, updating virus protection software, scanning for critical software updates and patches, conducting primary operating system (and possibly other resident software) integrity checks, and disabling unnecessary hardware (e.g., wireless, infrared). Organizations are cautioned that the need to provide adequate security for mobile devices goes beyond the requirements in this control. Many safeguards and countermeasures for mobile devices are reflected in other security controls in the catalog allocated in the initial control baselines as starting points for the development of security plans and overlays using the tailoring process. There may also be some degree of overlap in the requirements articulated by the security controls within the different families of controls. AC-20 addresses mobile devices that are not organization-controlled.", "external_references": [ { @@ -229697,7 +229697,7 @@ } ], "id": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "modified": "2021-01-06T18:28:39.748Z", + "modified": "2021-01-13T01:50:48.891Z", "name": "Access Control For Mobile Devices", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229709,7 +229709,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.749Z", + "created": "2021-01-13T01:50:48.892Z", "description": "The organization establishes terms and conditions, consistent with any trust relationships established with other organizations owning, operating, and/or maintaining external information systems, allowing authorized individuals to:\n\n* **AC-20a.** Access the information system from external information systems; and\n* **AC-20b.** Process, store, or transmit organization-controlled information using external information systems.\n\nExternal information systems are information systems or components of information systems that are outside of the authorization boundary established by organizations and for which organizations typically have no direct supervision and authority over the application of required security controls or the assessment of control effectiveness. External information systems include, for example: (i) personally owned information systems/devices (e.g., notebook computers, smart phones, tablets, personal digital assistants); (ii) privately owned computing and communications devices resident in commercial or public facilities (e.g., hotels, train stations, convention centers, shopping malls, or airports); (iii) information systems owned or controlled by nonfederal governmental organizations; and (iv) federal information systems that are not owned by, operated by, or under the direct supervision and authority of organizations. This control also addresses the use of external information systems for the processing, storage, or transmission of organizational information, including, for example, accessing cloud services (e.g., infrastructure as a service, platform as a service, or software as a service) from organizational information systems. For some external information systems (i.e., information systems operated by other federal agencies, including organizations subordinate to those agencies), the trust relationships that have been established between those organizations and the originating organization may be such, that no explicit terms and conditions are required. Information systems within these organizations would not be considered external. These situations occur when, for example, there are pre-existing sharing/trust agreements (either implicit or explicit) established between federal agencies or organizations subordinate to those agencies, or when such trust agreements are specified by applicable laws, Executive Orders, directives, or policies. Authorized individuals include, for example, organizational personnel, contractors, or other individuals with authorized access to organizational information systems and over which organizations have the authority to impose rules of behavior with regard to system access. Restrictions that organizations impose on authorized individuals need not be uniform, as those restrictions may vary depending upon the trust relationships between organizations. Therefore, organizations may choose to impose different security restrictions on contractors than on state, local, or tribal governments. This control does not apply to the use of external information systems to access public interfaces to organizational information systems (e.g., individuals accessing federal information through www.usa.gov). Organizations establish terms and conditions for the use of external information systems in accordance with organizational security policies and procedures. Terms and conditions address as a minimum: types of applications that can be accessed on organizational information systems from external information systems; and the highest security category of information that can be processed, stored, or transmitted on external information systems. If terms and conditions with the owners of external information systems cannot be established, organizations may impose restrictions on organizational personnel using those external systems.", "external_references": [ { @@ -229718,7 +229718,7 @@ } ], "id": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "modified": "2021-01-06T18:28:39.749Z", + "modified": "2021-01-13T01:50:48.892Z", "name": "Use Of External Information Systems", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229730,7 +229730,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.751Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization:\n\n* **AC-21a.** Facilitates information sharing by enabling authorized users to determine whether access authorizations assigned to the sharing partner match the access restrictions on the information for [Assignment: organization-defined information sharing circumstances where user discretion is required]; and\n* **AC-21b.** Employs [Assignment: organization-defined automated mechanisms or manual processes] to assist users in making information sharing/collaboration decisions.\n\nThis control applies to information that may be restricted in some manner (e.g., privileged medical information, contract-sensitive information, proprietary information, personally identifiable information, classified information related to special access programs or compartments) based on some formal or administrative determination. Depending on the particular information-sharing circumstances, sharing partners may be defined at the individual, group, or organizational level. Information may be defined by content, type, security category, or special access program/compartment.", "external_references": [ { @@ -229739,7 +229739,7 @@ } ], "id": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", - "modified": "2021-01-06T18:28:39.751Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Information Sharing", "type": "course-of-action", "x_mitre_family": "Access Control", @@ -229750,7 +229750,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.753Z", + "created": "2021-01-13T01:50:48.893Z", "description": "The organization employs [Assignment: organization-defined data mining prevention and detection techniques] for [Assignment: organization-defined data storage objects] to adequately detect and protect against data mining.\nData storage objects include, for example, databases, database records, and database fields. Data mining prevention and detection techniques include, for example: (i) limiting the types of responses provided to database queries; (ii) limiting the number/frequency of database queries to increase the work factor needed to determine the contents of such databases; and (iii) notifying organizational personnel when atypical database queries or accesses occur. This control focuses on the protection of organizational information from data mining while such information resides in organizational data stores. In contrast, AU-13 focuses on monitoring for organizational information that may have been mined or otherwise obtained from data stores and is now available as open source information residing on external sites, for example, through social networking or social media websites.", "external_references": [ { @@ -229759,14 +229759,14 @@ } ], "id": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", - "modified": "2021-01-06T18:28:39.753Z", + "modified": "2021-01-13T01:50:48.893Z", "name": "Data Mining Protection", "type": "course-of-action", "x_mitre_family": "Access Control", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.770Z", + "created": "2021-01-13T01:50:48.906Z", "description": "The organization:\n\n* **CA-2a.** Develops a security assessment plan that describes the scope of the assessment including:\n * **CA-2a.1.** Security controls and control enhancements under assessment;\n * **CA-2a.2.** Assessment procedures to be used to determine security control effectiveness; and\n * **CA-2a.3.** Assessment environment, assessment team, and assessment roles and responsibilities;\n* **CA-2b.** Assesses the security controls in the information system and its environment of operation [Assignment: organization-defined frequency] to determine the extent to which the controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting established security requirements;\n* **CA-2c.** Produces a security assessment report that documents the results of the assessment; and\n* **CA-2d.** Provides the results of the security control assessment to [Assignment: organization-defined individuals or roles].\n\nOrganizations assess security controls in organizational information systems and the environments in which those systems operate as part of: (i) initial and ongoing security authorizations; (ii) FISMA annual assessments; (iii) continuous monitoring; and (iv) system development life cycle activities. Security assessments: (i) ensure that information security is built into organizational information systems; (ii) identify weaknesses and deficiencies early in the development process; (iii) provide essential information needed to make risk-based decisions as part of security authorization processes; and (iv) ensure compliance to vulnerability mitigation procedures. Assessments are conducted on the implemented security controls from Appendix F (main catalog) and Appendix G (Program Management controls) as documented in System Security Plans and Information Security Program Plans. Organizations can use other types of assessment activities such as vulnerability scanning and system monitoring to maintain the security posture of information systems during the entire life cycle. Security assessment reports document assessment results in sufficient detail as deemed necessary by organizations, to determine the accuracy and completeness of the reports and whether the security controls are implemented correctly, operating as intended, and producing the desired outcome with respect to meeting security requirements. The FISMA requirement for assessing security controls at least annually does not require additional assessment activities to those activities already in place in organizational security authorization processes. Security assessment results are provided to the individuals or roles appropriate for the types of assessments being conducted. For example, assessments conducted in support of security authorization decisions are provided to authorizing officials or authorizing official designated representatives. To satisfy annual assessment requirements, organizations can use assessment results from the following sources: (i) initial or ongoing information system authorizations; (ii) continuous monitoring; or (iii) system development life cycle activities. Organizations ensure that security assessment results are current, relevant to the determination of security control effectiveness, and obtained with the appropriate level of assessor independence. Existing security control assessment results can be reused to the extent that the results are still valid and can also be supplemented with additional assessments as needed. Subsequent to initial authorizations and in accordance with OMB policy, organizations assess security controls during continuous monitoring. Organizations establish the frequency for ongoing security control assessments in accordance with organizational continuous monitoring strategies. Information Assurance Vulnerability Alerts provide useful examples of vulnerability mitigation procedures. External audits (e.g., audits by external entities such as regulatory agencies) are outside the scope of this control.", "external_references": [ { @@ -229775,7 +229775,7 @@ } ], "id": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", - "modified": "2021-01-06T18:28:39.770Z", + "modified": "2021-01-13T01:50:48.906Z", "name": "Security Assessments", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -229787,7 +229787,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.772Z", + "created": "2021-01-13T01:50:48.908Z", "description": "The organization develops a continuous monitoring strategy and implements a continuous monitoring program that includes:\n\n* **CA-7a.** Establishment of [Assignment: organization-defined metrics] to be monitored;\n* **CA-7b.** Establishment of [Assignment: organization-defined frequencies] for monitoring and [Assignment: organization-defined frequencies] for assessments supporting such monitoring;\n* **CA-7c.** Ongoing security control assessments in accordance with the organizational continuous monitoring strategy;\n* **CA-7d.** Ongoing security status monitoring of organization-defined metrics in accordance with the organizational continuous monitoring strategy;\n* **CA-7e.** Correlation and analysis of security-related information generated by assessments and monitoring;\n* **CA-7f.** Response actions to address results of the analysis of security-related information; and\n* **CA-7g.** Reporting the security status of organization and the information system to [Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency].\n\nContinuous monitoring programs facilitate ongoing awareness of threats, vulnerabilities, and information security to support organizational risk management decisions. The terms continuous and ongoing imply that organizations assess/analyze security controls and information security-related risks at a frequency sufficient to support organizational risk-based decisions. The results of continuous monitoring programs generate appropriate risk response actions by organizations. Continuous monitoring programs also allow organizations to maintain the security authorizations of information systems and common controls over time in highly dynamic environments of operation with changing mission/business needs, threats, vulnerabilities, and technologies. Having access to security-related information on a continuing basis through reports/dashboards gives organizational officials the capability to make more effective and timely risk management decisions, including ongoing security authorization decisions. Automation supports more frequent updates to security authorization packages, hardware/software/firmware inventories, and other system information. Effectiveness is further enhanced when continuous monitoring outputs are formatted to provide information that is specific, measurable, actionable, relevant, and timely. Continuous monitoring activities are scaled in accordance with the security categories of information systems.", "external_references": [ { @@ -229796,7 +229796,7 @@ } ], "id": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "modified": "2021-01-06T18:28:39.772Z", + "modified": "2021-01-13T01:50:48.908Z", "name": "Continuous Monitoring", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -229808,7 +229808,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.773Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization conducts penetration testing [Assignment: organization-defined frequency] on [Assignment: organization-defined information systems or system components].\nPenetration testing is a specialized type of assessment conducted on information systems or individual system components to identify vulnerabilities that could be exploited by adversaries. Such testing can be used to either validate vulnerabilities or determine the degree of resistance organizational information systems have to adversaries within a set of specified constraints (e.g., time, resources, and/or skills). Penetration testing attempts to duplicate the actions of adversaries in carrying out hostile cyber attacks against organizations and provides a more in-depth analysis of security-related weaknesses/deficiencies. Organizations can also use the results of vulnerability analyses to support penetration testing activities. Penetration testing can be conducted on the hardware, software, or firmware components of an information system and can exercise both physical and technical security controls. A standard method for penetration testing includes, for example: (i) pretest analysis based on full knowledge of the target system; (ii) pretest identification of potential vulnerabilities based on pretest analysis; and (iii) testing designed to determine exploitability of identified vulnerabilities. All parties agree to the rules of engagement before the commencement of penetration testing scenarios. Organizations correlate the penetration testing rules of engagement with the tools, techniques, and procedures that are anticipated to be employed by adversaries carrying out attacks. Organizational risk assessments guide decisions on the level of independence required for personnel conducting penetration testing.", "external_references": [ { @@ -229817,7 +229817,7 @@ } ], "id": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "modified": "2021-01-06T18:28:39.773Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Penetration Testing", "type": "course-of-action", "x_mitre_family": "Security Assessment And Authorization", @@ -229827,7 +229827,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.774Z", + "created": "2021-01-13T01:50:48.909Z", "description": "The organization develops, documents, and maintains under configuration control, a current baseline configuration of the information system.\nThis control establishes baseline configurations for information systems and system components including communications and connectivity-related aspects of systems. Baseline configurations are documented, formally reviewed and agreed-upon sets of specifications for information systems or configuration items within those systems. Baseline configurations serve as a basis for future builds, releases, and/or changes to information systems. Baseline configurations include information about information system components (e.g., standard software packages installed on workstations, notebook computers, servers, network components, or mobile devices; current version numbers and patch information on operating systems and applications; and configuration settings/parameters), network topology, and the logical placement of those components within the system architecture. Maintaining baseline configurations requires creating new baselines as organizational information systems change over time. Baseline configurations of information systems reflect the current enterprise architecture.", "external_references": [ { @@ -229836,7 +229836,7 @@ } ], "id": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "modified": "2021-01-06T18:28:39.774Z", + "modified": "2021-01-13T01:50:48.909Z", "name": "Baseline Configuration", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229848,7 +229848,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.775Z", + "created": "2021-01-13T01:50:48.910Z", "description": "The organization:\n\n* **CM-3a.** Determines the types of changes to the information system that are configuration-controlled;\n* **CM-3b.** Reviews proposed configuration-controlled changes to the information system and approves or disapproves such changes with explicit consideration for security impact analyses;\n* **CM-3c.** Documents configuration change decisions associated with the information system;\n* **CM-3d.** Implements approved configuration-controlled changes to the information system;\n* **CM-3e.** Retains records of configuration-controlled changes to the information system for [Assignment: organization-defined time period];\n* **CM-3f.** Audits and reviews activities associated with configuration-controlled changes to the information system; and\n* **CM-3g.** Coordinates and provides oversight for configuration change control activities through [Assignment: organization-defined configuration change control element (e.g., committee, board)] that convenes [Selection (one or more): [Assignment: organization-defined frequency]; [Assignment: organization-defined configuration change conditions]].\n\nConfiguration change controls for organizational information systems involve the systematic proposal, justification, implementation, testing, review, and disposition of changes to the systems, including system upgrades and modifications. Configuration change control includes changes to baseline configurations for components and configuration items of information systems, changes to configuration settings for information technology products (e.g., operating systems, applications, firewalls, routers, and mobile devices), unscheduled/unauthorized changes, and changes to remediate vulnerabilities. Typical processes for managing configuration changes to information systems include, for example, Configuration Control Boards that approve proposed changes to systems. For new development information systems or systems undergoing major upgrades, organizations consider including representatives from development organizations on the Configuration Control Boards. Auditing of changes includes activities before and after changes are made to organizational information systems and the auditing activities required to implement such changes.", "external_references": [ { @@ -229857,7 +229857,7 @@ } ], "id": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "modified": "2021-01-06T18:28:39.775Z", + "modified": "2021-01-13T01:50:48.910Z", "name": "Configuration Change Control", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229868,7 +229868,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.776Z", + "created": "2021-01-13T01:50:48.912Z", "description": "The organization defines, documents, approves, and enforces physical and logical access restrictions associated with changes to the information system.\nAny changes to the hardware, software, and/or firmware components of information systems can potentially have significant effects on the overall security of the systems. Therefore, organizations permit only qualified and authorized individuals to access information systems for purposes of initiating changes, including upgrades and modifications. Organizations maintain records of access to ensure that configuration change control is implemented and to support after-the-fact actions should organizations discover any unauthorized changes. Access restrictions for change also include software libraries. Access restrictions include, for example, physical and logical access controls (see AC-3 and PE-3), workflow automation, media libraries, abstract layers (e.g., changes implemented into third-party interfaces rather than directly into information systems), and change windows (e.g., changes occur only during specified times, making unauthorized changes easy to discover).", "external_references": [ { @@ -229877,7 +229877,7 @@ } ], "id": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "modified": "2021-01-06T18:28:39.776Z", + "modified": "2021-01-13T01:50:48.912Z", "name": "Access Restrictions For Change", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229888,7 +229888,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.778Z", + "created": "2021-01-13T01:50:48.913Z", "description": "The organization:\n\n* **CM-6a.** Establishes and documents configuration settings for information technology products employed within the information system using [Assignment: organization-defined security configuration checklists] that reflect the most restrictive mode consistent with operational requirements;\n* **CM-6b.** Implements the configuration settings;\n* **CM-6c.** Identifies, documents, and approves any deviations from established configuration settings for [Assignment: organization-defined information system components] based on [Assignment: organization-defined operational requirements]; and\n* **CM-6d.** Monitors and controls changes to the configuration settings in accordance with organizational policies and procedures.\n\nConfiguration settings are the set of parameters that can be changed in hardware, software, or firmware components of the information system that affect the security posture and/or functionality of the system. Information technology products for which security-related configuration settings can be defined include, for example, mainframe computers, servers (e.g., database, electronic mail, authentication, web, proxy, file, domain name), workstations, input/output devices (e.g., scanners, copiers, and printers), network components (e.g., firewalls, routers, gateways, voice and data switches, wireless access points, network appliances, sensors), operating systems, middleware, and applications. Security-related parameters are those parameters impacting the security state of information systems including the parameters required to satisfy other security control requirements. Security-related parameters include, for example: (i) registry settings; (ii) account, file, directory permission settings; and (iii) settings for functions, ports, protocols, services, and remote connections. Organizations establish organization-wide configuration settings and subsequently derive specific settings for information systems. The established settings become part of the systems configuration baseline. Common secure configurations (also referred to as security configuration checklists, lockdown and hardening guides, security reference guides, security technical implementation guides) provide recognized, standardized, and established benchmarks that stipulate secure configuration settings for specific information technology platforms/products and instructions for configuring those information system components to meet operational requirements. Common secure configurations can be developed by a variety of organizations including, for example, information technology product developers, manufacturers, vendors, consortia, academia, industry, federal agencies, and other organizations in the public and private sectors. Common secure configurations include the United States Government Configuration Baseline (USGCB) which affects the implementation of CM-6 and other controls such as AC-19 and CM-7. The Security Content Automation Protocol (SCAP) and the defined standards within the protocol (e.g., Common Configuration Enumeration) provide an effective method to uniquely identify, track, and control configuration settings. OMB establishes federal policy on configuration requirements for federal information systems.", "external_references": [ { @@ -229897,7 +229897,7 @@ } ], "id": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "modified": "2021-01-06T18:28:39.778Z", + "modified": "2021-01-13T01:50:48.913Z", "name": "Configuration Settings", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229909,7 +229909,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.914Z", "description": "The organization:\n\n* **CM-7a.** Configures the information system to provide only essential capabilities; and\n* **CM-7b.** Prohibits or restricts the use of the following functions, ports, protocols, and/or services: [Assignment: organization-defined prohibited or restricted functions, ports, protocols, and/or services].\n\nInformation systems can provide a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions). Additionally, it is sometimes convenient to provide multiple services from single information system components, but doing so increases risk over limiting the services provided by any one component. Where feasible, organizations limit component functionality to a single function per device (e.g., email servers or web servers, but not both). Organizations review functions and services provided by information systems or individual components of information systems, to determine which functions and services are candidates for elimination (e.g., Voice Over Internet Protocol, Instant Messaging, auto-execute, and file sharing). Organizations consider disabling unused or unnecessary physical and logical ports/protocols (e.g., Universal Serial Bus, File Transfer Protocol, and Hyper Text Transfer Protocol) on information systems to prevent unauthorized connection of devices, unauthorized transfer of information, or unauthorized tunneling. Organizations can utilize network scanning tools, intrusion detection and prevention systems, and end-point protections such as firewalls and host-based intrusion detection systems to identify and prevent the use of prohibited functions, ports, protocols, and services.", "external_references": [ { @@ -229918,7 +229918,7 @@ } ], "id": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.914Z", "name": "Least Functionality", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229930,7 +229930,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.779Z", + "created": "2021-01-13T01:50:48.915Z", "description": "The organization:\n\n* **CM-8a.** Develops and documents an inventory of information system components that:\n * **CM-8a.1.** Accurately reflects the current information system;\n * **CM-8a.2.** Includes all components within the authorization boundary of the information system;\n * **CM-8a.3.** Is at the level of granularity deemed necessary for tracking and reporting; and\n * **CM-8a.4.** Includes [Assignment: organization-defined information deemed necessary to achieve effective information system component accountability]; and\n* **CM-8b.** Reviews and updates the information system component inventory [Assignment: organization-defined frequency].\n\nOrganizations may choose to implement centralized information system component inventories that include components from all organizational information systems. In such situations, organizations ensure that the resulting inventories include system-specific information required for proper component accountability (e.g., information system association, information system owner). Information deemed necessary for effective accountability of information system components includes, for example, hardware inventory specifications, software license information, software version numbers, component owners, and for networked components or devices, machine names and network addresses. Inventory specifications include, for example, manufacturer, device type, model, serial number, and physical location.", "external_references": [ { @@ -229939,7 +229939,7 @@ } ], "id": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "modified": "2021-01-06T18:28:39.779Z", + "modified": "2021-01-13T01:50:48.915Z", "name": "Information System Component Inventory", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229951,7 +229951,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization:\n\n* **CM-10a.** Uses software and associated documentation in accordance with contract agreements and copyright laws;\n* **CM-10b.** Tracks the use of software and associated documentation protected by quantity licenses to control copying and distribution; and\n* **CM-10c.** Controls and documents the use of peer-to-peer file sharing technology to ensure that this capability is not used for the unauthorized distribution, display, performance, or reproduction of copyrighted work.\n\nSoftware license tracking can be accomplished by manual methods (e.g., simple spreadsheets) or automated methods (e.g., specialized tracking applications) depending on organizational needs.", "external_references": [ { @@ -229960,7 +229960,7 @@ } ], "id": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "Software Usage Restrictions", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229972,7 +229972,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.782Z", + "created": "2021-01-13T01:50:48.917Z", "description": "The organization:\n\n* **CM-11a.** Establishes [Assignment: organization-defined policies] governing the installation of software by users;\n* **CM-11b.** Enforces software installation policies through [Assignment: organization-defined methods]; and\n* **CM-11c.** Monitors policy compliance at [Assignment: organization-defined frequency].\n\nIf provided the necessary privileges, users have the ability to install software in organizational information systems. To maintain control over the types of software installed, organizations identify permitted and prohibited actions regarding software installation. Permitted software installations may include, for example, updates and security patches to existing software and downloading applications from organization-approved \u00ef\u00bf\u00bdapp stores.\u00ef\u00bf\u00bd Prohibited software installations may include, for example, software with unknown or suspect pedigrees or software that organizations consider potentially malicious. The policies organizations select governing user-installed software may be organization-developed or provided by some external entity. Policy enforcement methods include procedural methods (e.g., periodic examination of user accounts), automated methods (e.g., configuration settings implemented on organizational information systems), or both.", "external_references": [ { @@ -229981,7 +229981,7 @@ } ], "id": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "modified": "2021-01-06T18:28:39.782Z", + "modified": "2021-01-13T01:50:48.917Z", "name": "User-Installed Software", "type": "course-of-action", "x_mitre_family": "Configuration Management", @@ -229993,7 +229993,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.783Z", + "created": "2021-01-13T01:50:48.918Z", "description": "The organization:\n\n* **CP-2a.** Develops a contingency plan for the information system that:\n * **CP-2a.1.** Identifies essential missions and business functions and associated contingency requirements;\n * **CP-2a.2.** Provides recovery objectives, restoration priorities, and metrics;\n * **CP-2a.3.** Addresses contingency roles, responsibilities, assigned individuals with contact information;\n * **CP-2a.4.** Addresses maintaining essential missions and business functions despite an information system disruption, compromise, or failure;\n * **CP-2a.5.** Addresses eventual, full information system restoration without deterioration of the security safeguards originally planned and implemented; and\n * **CP-2a.6.** Is reviewed and approved by [Assignment: organization-defined personnel or roles];\n* **CP-2b.** Distributes copies of the contingency plan to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements];\n* **CP-2c.** Coordinates contingency planning activities with incident handling activities;\n* **CP-2d.** Reviews the contingency plan for the information system [Assignment: organization-defined frequency];\n* **CP-2e.** Updates the contingency plan to address changes to the organization, information system, or environment of operation and problems encountered during contingency plan implementation, execution, or testing;\n* **CP-2f.** Communicates contingency plan changes to [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements]; and\n* **CP-2g.** Protects the contingency plan from unauthorized disclosure and modification.\n\nContingency planning for information systems is part of an overall organizational program for achieving continuity of operations for mission/business functions. Contingency planning addresses both information system restoration and implementation of alternative mission/business processes when systems are compromised. The effectiveness of contingency planning is maximized by considering such planning throughout the phases of the system development life cycle. Performing contingency planning on hardware, software, and firmware development can be an effective means of achieving information system resiliency. Contingency plans reflect the degree of restoration required for organizational information systems since not all systems may need to fully recover to achieve the level of continuity of operations desired. Information system recovery objectives reflect applicable laws, Executive Orders, directives, policies, standards, regulations, and guidelines. In addition to information system availability, contingency plans also address other security-related events resulting in a reduction in mission and/or business effectiveness, such as malicious attacks compromising the confidentiality or integrity of information systems. Actions addressed in contingency plans include, for example, orderly/graceful degradation, information system shutdown, fallback to a manual mode, alternate information flows, and operating in modes reserved for when systems are under attack. By closely coordinating contingency planning with incident handling activities, organizations can ensure that the necessary contingency planning activities are in place and activated in the event of a security incident.", "external_references": [ { @@ -230002,7 +230002,7 @@ } ], "id": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", - "modified": "2021-01-06T18:28:39.783Z", + "modified": "2021-01-13T01:50:48.918Z", "name": "Contingency Plan", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -230014,7 +230014,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.920Z", "description": "The organization:\n\n* **CP-6a.** Establishes an alternate storage site including necessary agreements to permit the storage and retrieval of information system backup information; and\n* **CP-6b.** Ensures that the alternate storage site provides information security safeguards equivalent to that of the primary site.\n\nAlternate storage sites are sites that are geographically distinct from primary storage sites. An alternate storage site maintains duplicate copies of information and data in the event that the primary storage site is not available. Items covered by alternate storage site agreements include, for example, environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and coordination of delivery/retrieval of backup media. Alternate storage sites reflect the requirements in contingency plans so that organizations can maintain essential missions/business functions despite disruption, compromise, or failure in organizational information systems.", "external_references": [ { @@ -230023,7 +230023,7 @@ } ], "id": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.920Z", "name": "Alternate Storage Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -230034,7 +230034,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.787Z", + "created": "2021-01-13T01:50:48.921Z", "description": "The organization:\n\n* **CP-7a.** Establishes an alternate processing site including necessary agreements to permit the transfer and resumption of [Assignment: organization-defined information system operations] for essential missions/business functions within [Assignment: organization-defined time period consistent with recovery time and recovery point objectives] when the primary processing capabilities are unavailable;\n* **CP-7b.** Ensures that equipment and supplies required to transfer and resume operations are available at the alternate processing site or contracts are in place to support delivery to the site within the organization-defined time period for transfer/resumption; and\n* **CP-7c.** Ensures that the alternate processing site provides information security safeguards equivalent to those of the primary site.\n\nAlternate processing sites are sites that are geographically distinct from primary processing sites. An alternate processing site provides processing capability in the event that the primary processing site is not available. Items covered by alternate processing site agreements include, for example, environmental conditions at alternate sites, access rules, physical and environmental protection requirements, and coordination for the transfer/assignment of personnel. Requirements are specifically allocated to alternate processing sites that reflect the requirements in contingency plans to maintain essential missions/business functions despite disruption, compromise, or failure in organizational information systems.", "external_references": [ { @@ -230043,7 +230043,7 @@ } ], "id": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "modified": "2021-01-06T18:28:39.787Z", + "modified": "2021-01-13T01:50:48.921Z", "name": "Alternate Processing Site", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -230054,7 +230054,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.789Z", + "created": "2021-01-13T01:50:48.922Z", "description": "The organization:\n\n* **CP-9a.** Conducts backups of user-level information contained in the information system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\n* **CP-9b.** Conducts backups of system-level information contained in the information system [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives];\n* **CP-9c.** Conducts backups of information system documentation including security-related documentation [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]; and\n* **CP-9d.** Protects the confidentiality, integrity, and availability of backup information at storage locations.\n\nSystem-level information includes, for example, system-state information, operating system and application software, and licenses. User-level information includes any information other than system-level information. Mechanisms employed by organizations to protect the integrity of information system backups include, for example, digital signatures and cryptographic hashes. Protection of system backup information while in transit is beyond the scope of this control. Information system backups reflect the requirements in contingency plans as well as other organizational requirements for backing up information.", "external_references": [ { @@ -230063,7 +230063,7 @@ } ], "id": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "modified": "2021-01-06T18:28:39.789Z", + "modified": "2021-01-13T01:50:48.922Z", "name": "Information System Backup", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -230075,7 +230075,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.790Z", + "created": "2021-01-13T01:50:48.924Z", "description": "The organization provides for the recovery and reconstitution of the information system to a known state after a disruption, compromise, or failure.\nRecovery is executing information system contingency plan activities to restore organizational missions/business functions. Reconstitution takes place following recovery and includes activities for returning organizational information systems to fully operational states. Recovery and reconstitution operations reflect mission and business priorities, recovery point/time and reconstitution objectives, and established organizational metrics consistent with contingency plan requirements. Reconstitution includes the deactivation of any interim information system capabilities that may have been needed during recovery operations. Reconstitution also includes assessments of fully restored information system capabilities, reestablishment of continuous monitoring activities, potential information system reauthorizations, and activities to prepare the systems against future disruptions, compromises, or failures. Recovery/reconstitution capabilities employed by organizations can include both automated mechanisms and manual procedures.", "external_references": [ { @@ -230084,7 +230084,7 @@ } ], "id": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "modified": "2021-01-06T18:28:39.790Z", + "modified": "2021-01-13T01:50:48.924Z", "name": "Information System Recovery And Reconstitution", "type": "course-of-action", "x_mitre_family": "Contingency Planning", @@ -230096,7 +230096,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.792Z", + "created": "2021-01-13T01:50:48.925Z", "description": "The information system uniquely identifies and authenticates organizational users (or processes acting on behalf of organizational users).\nOrganizational users include employees or individuals that organizations deem to have equivalent status of employees (e.g., contractors, guest researchers). This control applies to all accesses other than: (i) accesses that are explicitly identified and documented in AC-14; and (ii) accesses that occur through authorized use of group authenticators without individual authentication. Organizations may require unique identification of individuals in group accounts (e.g., shared privilege accounts) or for detailed accountability of individual activity. Organizations employ passwords, tokens, or biometrics to authenticate user identities, or in the case multifactor authentication, or some combination thereof. Access to organizational information systems is defined as either local access or network access. Local access is any access to organizational information systems by users (or processes acting on behalf of users) where such access is obtained by direct connections without the use of networks. Network access is access to organizational information systems by users (or processes acting on behalf of users) where such access is obtained through network connections (i.e., nonlocal accesses). Remote access is a type of network access that involves communication through external networks (e.g., the Internet). Internal networks include local area networks and wide area networks. In addition, the use of encrypted virtual private networks (VPNs) for network connections between organization-controlled endpoints and non-organization controlled endpoints may be treated as internal networks from the perspective of protecting the confidentiality and integrity of information traversing the network. Organizations can satisfy the identification and authentication requirements in this control by complying with the requirements in Homeland Security Presidential Directive 12 consistent with the specific organizational implementation plans. Multifactor authentication requires the use of two or more different factors to achieve authentication. The factors are defined as: (i) something you know (e.g., password, personal identification number [PIN]); (ii) something you have (e.g., cryptographic identification device, token); or (iii) something you are (e.g., biometric). Multifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government Personal Identity Verification card and the DoD common access card. In addition to identifying and authenticating users at the information system level (i.e., at logon), organizations also employ identification and authentication mechanisms at the application level, when necessary, to provide increased information security. Identification and authentication requirements for other than organizational users are described in IA-8.", "external_references": [ { @@ -230105,7 +230105,7 @@ } ], "id": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "modified": "2021-01-06T18:28:39.792Z", + "modified": "2021-01-13T01:50:48.925Z", "name": "Identification And Authentication (Organizational Users)", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230117,7 +230117,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.794Z", + "created": "2021-01-13T01:50:48.927Z", "description": "The information system uniquely identifies and authenticates [Assignment: organization-defined specific and/or types of devices] before establishing a [Selection (one or more): local; remote; network] connection.\nOrganizational devices requiring unique device-to-device identification and authentication may be defined by type, by device, or by a combination of type/device. Information systems typically use either shared known information (e.g., Media Access Control [MAC] or Transmission Control Protocol/Internet Protocol [TCP/IP] addresses) for device identification or organizational authentication solutions (e.g., IEEE 802.1x and Extensible Authentication Protocol [EAP], Radius server with EAP-Transport Layer Security [TLS] authentication, Kerberos) to identify/authenticate devices on local and/or wide area networks. Organizations determine the required strength of authentication mechanisms by the security categories of information systems. Because of the challenges of applying this control on large scale, organizations are encouraged to only apply the control to those limited number (and type) of devices that truly need to support this capability.", "external_references": [ { @@ -230126,7 +230126,7 @@ } ], "id": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "modified": "2021-01-06T18:28:39.794Z", + "modified": "2021-01-13T01:50:48.927Z", "name": "Device Identification And Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230137,7 +230137,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.795Z", + "created": "2021-01-13T01:50:48.928Z", "description": "The organization manages information system identifiers by:\n\n* **IA-4a.** Receiving authorization from [Assignment: organization-defined personnel or roles] to assign an individual, group, role, or device identifier;\n* **IA-4b.** Selecting an identifier that identifies an individual, group, role, or device;\n* **IA-4c.** Assigning the identifier to the intended individual, group, role, or device;\n* **IA-4d.** Preventing reuse of identifiers for [Assignment: organization-defined time period]; and\n* **IA-4e.** Disabling the identifier after [Assignment: organization-defined time period of inactivity].\n\nCommon device identifiers include, for example, media access control (MAC), Internet protocol (IP) addresses, or device-unique token identifiers. Management of individual identifiers is not applicable to shared information system accounts (e.g., guest and anonymous accounts). Typically, individual identifiers are the user names of the information system accounts assigned to those individuals. In such instances, the account management activities of AC-2 use account names provided by IA-4. This control also addresses individual identifiers not necessarily associated with information system accounts (e.g., identifiers used in physical security control databases accessed by badge reader systems for access to information systems). Preventing reuse of identifiers implies preventing the assignment of previously used individual, group, role, or device identifiers to different individuals, groups, roles, or devices.", "external_references": [ { @@ -230146,7 +230146,7 @@ } ], "id": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "modified": "2021-01-06T18:28:39.795Z", + "modified": "2021-01-13T01:50:48.928Z", "name": "Identifier Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230158,7 +230158,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.797Z", + "created": "2021-01-13T01:50:48.929Z", "description": "The organization manages information system authenticators by:\n\n* **IA-5a.** Verifying, as part of the initial authenticator distribution, the identity of the individual, group, role, or device receiving the authenticator;\n* **IA-5b.** Establishing initial authenticator content for authenticators defined by the organization;\n* **IA-5c.** Ensuring that authenticators have sufficient strength of mechanism for their intended use;\n* **IA-5d.** Establishing and implementing administrative procedures for initial authenticator distribution, for lost/compromised or damaged authenticators, and for revoking authenticators;\n* **IA-5e.** Changing default content of authenticators prior to information system installation;\n* **IA-5f.** Establishing minimum and maximum lifetime restrictions and reuse conditions for authenticators;\n* **IA-5g.** Changing/refreshing authenticators [Assignment: organization-defined time period by authenticator type];\n* **IA-5h.** Protecting authenticator content from unauthorized disclosure and modification;\n* **IA-5i.** Requiring individuals to take, and having devices implement, specific security safeguards to protect authenticators; and\n* **IA-5j.** Changing authenticators for group/role accounts when membership to those accounts changes.\n\nIndividual authenticators include, for example, passwords, tokens, biometrics, PKI certificates, and key cards. Initial authenticator content is the actual content (e.g., the initial password) as opposed to requirements about authenticator content (e.g., minimum password length). In many cases, developers ship information system components with factory default authentication credentials to allow for initial installation and configuration. Default authentication credentials are often well known, easily discoverable, and present a significant security risk. The requirement to protect individual authenticators may be implemented via control PL-4 or PS-6 for authenticators in the possession of individuals and by controls AC-3, AC-6, and SC-28 for authenticators stored within organizational information systems (e.g., passwords stored in hashed or encrypted formats, files containing encrypted or hashed passwords accessible with administrator privileges). Information systems support individual authenticator management by organization-defined settings and restrictions for various authenticator characteristics including, for example, minimum password length, password composition, validation time window for time synchronous one-time tokens, and number of allowed rejections during the verification stage of biometric authentication. Specific actions that can be taken to safeguard authenticators include, for example, maintaining possession of individual authenticators, not loaning or sharing individual authenticators with others, and reporting lost, stolen, or compromised authenticators immediately. Authenticator management includes issuing and revoking, when no longer needed, authenticators for temporary access such as that required for remote maintenance. Device authenticators include, for example, certificates and passwords.", "external_references": [ { @@ -230167,7 +230167,7 @@ } ], "id": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "modified": "2021-01-06T18:28:39.797Z", + "modified": "2021-01-13T01:50:48.929Z", "name": "Authenticator Management", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230179,7 +230179,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system obscures feedback of authentication information during the authentication process to protect the information from possible exploitation/use by unauthorized individuals.\nThe feedback from information systems does not provide information that would allow unauthorized individuals to compromise authentication mechanisms. For some types of information systems or system components, for example, desktops/notebooks with relatively large monitors, the threat (often referred to as shoulder surfing) may be significant. For other types of systems or components, for example, mobile devices with 2-4 inch screens, this threat may be less significant, and may need to be balanced against the increased likelihood of typographic input errors due to the small keyboards. Therefore, the means for obscuring the authenticator feedback is selected accordingly. Obscuring the feedback of authentication information includes, for example, displaying asterisks when users type passwords into input devices, or displaying feedback for a very limited time before fully obscuring it.", "external_references": [ { @@ -230188,7 +230188,7 @@ } ], "id": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Authenticator Feedback", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230200,7 +230200,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system implements mechanisms for authentication to a cryptographic module that meet the requirements of applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance for such authentication.\nAuthentication mechanisms may be required within a cryptographic module to authenticate an operator accessing the module and to verify that the operator is authorized to assume the requested role and perform services within that role.", "external_references": [ { @@ -230209,7 +230209,7 @@ } ], "id": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Cryptographic Module Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230221,7 +230221,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.801Z", + "created": "2021-01-13T01:50:48.932Z", "description": "The information system uniquely identifies and authenticates non-organizational users (or processes acting on behalf of non-organizational users).\nNon-organizational users include information system users other than organizational users explicitly covered by IA-2. These individuals are uniquely identified and authenticated for accesses other than those accesses explicitly identified and documented in AC-14. In accordance with the E-Authentication E-Government initiative, authentication of non-organizational users accessing federal information systems may be required to protect federal, proprietary, or privacy-related information (with exceptions noted for national security systems). Organizations use risk assessments to determine authentication needs and consider scalability, practicality, and security in balancing the need to ensure ease of use for access to federal information and information systems with the need to protect and adequately mitigate risk. IA-2 addresses identification and authentication requirements for access to information systems by organizational users.", "external_references": [ { @@ -230230,7 +230230,7 @@ } ], "id": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", - "modified": "2021-01-06T18:28:39.801Z", + "modified": "2021-01-13T01:50:48.932Z", "name": "Identification And Authentication (Non-Organizational Users)", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", @@ -230242,7 +230242,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.802Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization identifies and authenticates [Assignment: organization-defined information system services] using [Assignment: organization-defined security safeguards].\nThis control supports service-oriented architectures and other distributed architectural approaches requiring the identification and authentication of information system services. In such architectures, external services often appear dynamically. Therefore, information systems should be able to determine in a dynamic manner, if external providers and associated services are authentic. Safeguards implemented by organizational information systems to validate provider and service authenticity include, for example, information or code signing, provenance graphs, and/or electronic signatures indicating or including the sources of services.", "external_references": [ { @@ -230251,14 +230251,14 @@ } ], "id": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", - "modified": "2021-01-06T18:28:39.802Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Service Identification And Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.803Z", + "created": "2021-01-13T01:50:48.933Z", "description": "The organization requires users and devices to re-authenticate when [Assignment: organization-defined circumstances or situations requiring re-authentication].\nIn addition to the re-authentication requirements associated with session locks, organizations may require re-authentication of individuals and/or devices in other situations including, for example: (i) when authenticators change; (ii), when roles change; (iii) when security categories of information systems change; (iv), when the execution of privileged functions occurs; (v) after a fixed period of time; or (vi) periodically.", "external_references": [ { @@ -230267,14 +230267,14 @@ } ], "id": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "modified": "2021-01-06T18:28:39.803Z", + "modified": "2021-01-13T01:50:48.933Z", "name": "Re-Authentication", "type": "course-of-action", "x_mitre_family": "Identification And Authentication", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.817Z", + "created": "2021-01-13T01:50:48.945Z", "description": "The organization [Selection: restricts; prohibits] the use of [Assignment: organization-defined types of information system media] on [Assignment: organization-defined information systems or system components] using [Assignment: organization-defined security safeguards].\nInformation system media includes both digital and non-digital media. Digital media includes, for example, diskettes, magnetic tapes, external/removable hard disk drives, flash drives, compact disks, and digital video disks. Non-digital media includes, for example, paper and microfilm. This control also applies to mobile devices with information storage capability (e.g., smart phones, tablets, E-readers). In contrast to MP-2, which restricts user access to media, this control restricts the use of certain types of media on information systems, for example, restricting/prohibiting the use of flash drives or external hard disk drives. Organizations can employ technical and nontechnical safeguards (e.g., policies, procedures, rules of behavior) to restrict the use of information system media. Organizations may restrict the use of portable storage devices, for example, by using physical cages on workstations to prohibit access to certain external ports, or disabling/removing the ability to insert, read or write to such devices. Organizations may also limit the use of portable storage devices to only approved devices including, for example, devices provided by the organization, devices provided by other approved organizations, and devices that are not personally owned. Finally, organizations may restrict the use of portable storage devices based on the type of device, for example, prohibiting the use of writeable, portable storage devices, and implementing this restriction by disabling or removing the capability to write to such devices.", "external_references": [ { @@ -230283,7 +230283,7 @@ } ], "id": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", - "modified": "2021-01-06T18:28:39.817Z", + "modified": "2021-01-13T01:50:48.945Z", "name": "Media Use", "type": "course-of-action", "x_mitre_family": "Media Protection", @@ -230295,7 +230295,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.830Z", + "created": "2021-01-13T01:50:48.955Z", "description": "The organization:\n\n* **PL-8a.** Develops an information security architecture for the information system that:\n * **PL-8a.1.** Describes the overall philosophy, requirements, and approach to be taken with regard to protecting the confidentiality, integrity, and availability of organizational information;\n * **PL-8a.2.** Describes how the information security architecture is integrated into and supports the enterprise architecture; and\n * **PL-8a.3.** Describes any information security assumptions about, and dependencies on, external services;\n* **PL-8b.** Reviews and updates the information security architecture [Assignment: organization-defined frequency] to reflect updates in the enterprise architecture; and\n* **PL-8c.** Ensures that planned information security architecture changes are reflected in the security plan, the security Concept of Operations (CONOPS), and organizational procurements/acquisitions.\n\nThis control addresses actions taken by organizations in the design and development of information systems. The information security architecture at the individual information system level is consistent with and complements the more global, organization-wide information security architecture described in PM-7 that is integral to and developed as part of the enterprise architecture. The information security architecture includes an architectural description, the placement/allocation of security functionality (including security controls), security-related information for external interfaces, information being exchanged across the interfaces, and the protection mechanisms associated with each interface. In addition, the security architecture can include other important security-related information, for example, user roles and access privileges assigned to each role, unique security requirements, the types of information processed, stored, and transmitted by the information system, restoration priorities of information and information system services, and any other specific protection needs. In today\u00ef\u00bf\u00bds modern architecture, it is becoming less common for organizations to control all information resources. There are going to be key dependencies on external information services and service providers. Describing such dependencies in the information security architecture is important to developing a comprehensive mission/business protection strategy. Establishing, developing, documenting, and maintaining under configuration control, a baseline configuration for organizational information systems is critical to implementing and maintaining an effective information security architecture. The development of the information security architecture is coordinated with the Senior Agency Official for Privacy (SAOP)/Chief Privacy Officer (CPO) to ensure that security controls needed to support privacy requirements are identified and effectively implemented. PL-8 is primarily directed at organizations (i.e., internally focused) to help ensure that organizations develop an information security architecture for the information system, and that the security architecture is integrated with or tightly coupled to the enterprise architecture through the organization-wide information security architecture. In contrast, SA-17 is primarily directed at external information technology product/system developers and integrators (although SA-17 could be used internally within organizations for in-house system development). SA-17, which is complementary to PL-8, is selected when organizations outsource the development of information systems or information system components to external entities, and there is a need to demonstrate/show consistency with the organization\u00ef\u00bf\u00bds enterprise architecture and information security architecture.", "external_references": [ { @@ -230304,7 +230304,7 @@ } ], "id": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", - "modified": "2021-01-06T18:28:39.830Z", + "modified": "2021-01-13T01:50:48.955Z", "name": "Information Security Architecture", "type": "course-of-action", "x_mitre_family": "Planning", @@ -230315,7 +230315,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.834Z", + "created": "2021-01-13T01:50:48.959Z", "description": "The organization:\n\n* **RA-5a.** Scans for vulnerabilities in the information system and hosted applications [Assignment: organization-defined frequency and/or randomly in accordance with organization-defined process] and when new vulnerabilities potentially affecting the system/applications are identified and reported;\n* **RA-5b.** Employs vulnerability scanning tools and techniques that facilitate interoperability among tools and automate parts of the vulnerability management process by using standards for:\n * **RA-5b.1.** Enumerating platforms, software flaws, and improper configurations;\n * **RA-5b.2.** Formatting checklists and test procedures; and\n * **RA-5b.3.** Measuring vulnerability impact;\n* **RA-5c.** Analyzes vulnerability scan reports and results from security control assessments;\n* **RA-5d.** Remediates legitimate vulnerabilities [Assignment: organization-defined response times] in accordance with an organizational assessment of risk; and\n* **RA-5e.** Shares information obtained from the vulnerability scanning process and security control assessments with [Assignment: organization-defined personnel or roles] to help eliminate similar vulnerabilities in other information systems (i.e., systemic weaknesses or deficiencies).\n\nSecurity categorization of information systems guides the frequency and comprehensiveness of vulnerability scans. Organizations determine the required vulnerability scanning for all information system components, ensuring that potential sources of vulnerabilities such as networked printers, scanners, and copiers are not overlooked. Vulnerability analyses for custom software applications may require additional approaches such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Organizations can employ these analysis approaches in a variety of tools (e.g., web-based application scanners, static analysis tools, binary analyzers) and in source code reviews. Vulnerability scanning includes, for example: (i) scanning for patch levels; (ii) scanning for functions, ports, protocols, and services that should not be accessible to users or devices; and (iii) scanning for improperly configured or incorrectly operating information flow control mechanisms. Organizations consider using tools that express vulnerabilities in the Common Vulnerabilities and Exposures (CVE) naming convention and that use the Open Vulnerability Assessment Language (OVAL) to determine/test for the presence of vulnerabilities. Suggested sources for vulnerability information include the Common Weakness Enumeration (CWE) listing and the National Vulnerability Database (NVD). In addition, security control assessments such as red team exercises provide other sources of potential vulnerabilities for which to scan. Organizations also consider using tools that express vulnerability impact by the Common Vulnerability Scoring System (CVSS).", "external_references": [ { @@ -230324,7 +230324,7 @@ } ], "id": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "modified": "2021-01-06T18:28:39.834Z", + "modified": "2021-01-13T01:50:48.959Z", "name": "Vulnerability Scanning", "type": "course-of-action", "x_mitre_family": "Risk Assessment", @@ -230336,7 +230336,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.836Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization:\n\n* **SA-3a.** Manages the information system using [Assignment: organization-defined system development life cycle] that incorporates information security considerations;\n* **SA-3b.** Defines and documents information security roles and responsibilities throughout the system development life cycle;\n* **SA-3c.** Identifies individuals having information security roles and responsibilities; and\n* **SA-3d.** Integrates the organizational information security risk management process into system development life cycle activities.\n\nA well-defined system development life cycle provides the foundation for the successful development, implementation, and operation of organizational information systems. To apply the required security controls within the system development life cycle requires a basic understanding of information security, threats, vulnerabilities, adverse impacts, and risk to critical missions/business functions. The security engineering principles in SA-8 cannot be properly applied if individuals that design, code, and test information systems and system components (including information technology products) do not understand security. Therefore, organizations include qualified personnel, for example, chief information security officers, security architects, security engineers, and information system security officers in system development life cycle activities to ensure that security requirements are incorporated into organizational information systems. It is equally important that developers include individuals on the development team that possess the requisite security expertise and skills to ensure that needed security capabilities are effectively integrated into the information system. Security awareness and training programs can help ensure that individuals having key security roles and responsibilities have the appropriate experience, skills, and expertise to conduct assigned system development life cycle activities. The effective integration of security requirements into enterprise architecture also helps to ensure that important security considerations are addressed early in the system development life cycle and that those considerations are directly related to the organizational mission/business processes. This process also facilitates the integration of the information security architecture into the enterprise architecture, consistent with organizational risk management and information security strategies.", "external_references": [ { @@ -230345,7 +230345,7 @@ } ], "id": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "modified": "2021-01-06T18:28:39.836Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "System Development Life Cycle", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230357,7 +230357,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.837Z", + "created": "2021-01-13T01:50:48.961Z", "description": "The organization includes the following requirements, descriptions, and criteria, explicitly or by reference, in the acquisition contract for the information system, system component, or information system service in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, guidelines, and organizational mission/business needs:\n\n* **SA-4a.** Security functional requirements;\n* **SA-4b.** Security strength requirements;\n* **SA-4c.** Security assurance requirements;\n* **SA-4d.** Security-related documentation requirements;\n* **SA-4e.** Requirements for protecting security-related documentation;\n* **SA-4f.** Description of the information system development environment and environment in which the system is intended to operate; and\n* **SA-4g.** Acceptance criteria.\n\nInformation system components are discrete, identifiable information technology assets (e.g., hardware, software, or firmware) that represent the building blocks of an information system. Information system components include commercial information technology products. Security functional requirements include security capabilities, security functions, and security mechanisms. Security strength requirements associated with such capabilities, functions, and mechanisms include degree of correctness, completeness, resistance to direct attack, and resistance to tampering or bypass. Security assurance requirements include: (i) development processes, procedures, practices, and methodologies; and (ii) evidence from development and assessment activities providing grounds for confidence that the required security functionality has been implemented and the required security strength has been achieved. Security documentation requirements address all phases of the system development life cycle. Security functionality, assurance, and documentation requirements are expressed in terms of security controls and control enhancements that have been selected through the tailoring process. The security control tailoring process includes, for example, the specification of parameter values through the use of assignment and selection statements and the specification of platform dependencies and implementation information. Security documentation provides user and administrator guidance regarding the implementation and operation of security controls. The level of detail required in security documentation is based on the security category or classification level of the information system and the degree to which organizations depend on the stated security capability, functions, or mechanisms to meet overall risk response expectations (as defined in the organizational risk management strategy). Security requirements can also include organizationally mandated configuration settings specifying allowed functions, ports, protocols, and services. Acceptance criteria for information systems, information system components, and information system services are defined in the same manner as such criteria for any organizational acquisition or procurement. The Federal Acquisition Regulation (FAR) Section 7.103 contains information security requirements from FISMA.", "external_references": [ { @@ -230366,7 +230366,7 @@ } ], "id": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "modified": "2021-01-06T18:28:39.837Z", + "modified": "2021-01-13T01:50:48.961Z", "name": "Acquisition Process", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230378,7 +230378,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.841Z", + "created": "2021-01-13T01:50:48.963Z", "description": "The organization applies information system security engineering principles in the specification, design, development, implementation, and modification of the information system.\nOrganizations apply security engineering principles primarily to new development information systems or systems undergoing major upgrades. For legacy systems, organizations apply security engineering principles to system upgrades and modifications to the extent feasible, given the current state of hardware, software, and firmware within those systems. Security engineering principles include, for example: (i) developing layered protections; (ii) establishing sound security policy, architecture, and controls as the foundation for design; (iii) incorporating security requirements into the system development life cycle; (iv) delineating physical and logical security boundaries; (v) ensuring that system developers are trained on how to build secure software; (vi) tailoring security controls to meet organizational and operational needs; (vii) performing threat modeling to identify use cases, threat agents, attack vectors, and attack patterns as well as compensating controls and design patterns needed to mitigate risk; and (viii) reducing risk to acceptable levels, thus enabling informed risk management decisions.", "external_references": [ { @@ -230387,7 +230387,7 @@ } ], "id": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "modified": "2021-01-06T18:28:39.841Z", + "modified": "2021-01-13T01:50:48.963Z", "name": "Security Engineering Principles", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230398,7 +230398,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.843Z", + "created": "2021-01-13T01:50:48.964Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-10a.** Perform configuration management during system, component, or service [Selection (one or more): design; development; implementation; operation];\n* **SA-10b.** Document, manage, and control the integrity of changes to [Assignment: organization-defined configuration items under configuration management];\n* **SA-10c.** Implement only organization-approved changes to the system, component, or service;\n* **SA-10d.** Document approved changes to the system, component, or service and the potential security impacts of such changes; and\n* **SA-10e.** Track security flaws and flaw resolution within the system, component, or service and report findings to [Assignment: organization-defined personnel].\n\nThis control also applies to organizations conducting internal information systems development and integration. Organizations consider the quality and completeness of the configuration management activities conducted by developers as evidence of applying effective security safeguards. Safeguards include, for example, protecting from unauthorized modification or destruction, the master copies of all material used to generate security-relevant portions of the system hardware, software, and firmware. Maintaining the integrity of changes to the information system, information system component, or information system service requires configuration control throughout the system development life cycle to track authorized changes and prevent unauthorized changes. Configuration items that are placed under configuration management (if existence/use is required by other security controls) include: the formal model; the functional, high-level, and low-level design specifications; other design data; implementation documentation; source code and hardware schematics; the running version of the object code; tools for comparing new versions of security-relevant hardware descriptions and software/firmware source code with previous versions; and test fixtures and documentation. Depending on the mission/business needs of organizations and the nature of the contractual relationships in place, developers may provide configuration management support during the operations and maintenance phases of the life cycle.", "external_references": [ { @@ -230407,7 +230407,7 @@ } ], "id": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "modified": "2021-01-06T18:28:39.843Z", + "modified": "2021-01-13T01:50:48.964Z", "name": "Developer Configuration Management", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230418,7 +230418,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.845Z", + "created": "2021-01-13T01:50:48.965Z", "description": "The organization requires the developer of the information system, system component, or information system service to:\n\n* **SA-11a.** Create and implement a security assessment plan;\n* **SA-11b.** Perform [Selection (one or more): unit; integration; system; regression] testing/evaluation at [Assignment: organization-defined depth and coverage];\n* **SA-11c.** Produce evidence of the execution of the security assessment plan and the results of the security testing/evaluation;\n* **SA-11d.** Implement a verifiable flaw remediation process; and\n* **SA-11e.** Correct flaws identified during security testing/evaluation.\n\nDevelopmental security testing/evaluation occurs at all post-design phases of the system development life cycle. Such testing/evaluation confirms that the required security controls are implemented correctly, operating as intended, enforcing the desired security policy, and meeting established security requirements. Security properties of information systems may be affected by the interconnection of system components or changes to those components. These interconnections or changes (e.g., upgrading or replacing applications and operating systems) may adversely affect previously implemented security controls. This control provides additional types of security testing/evaluation that developers can conduct to reduce or eliminate potential flaws. Testing custom software applications may require approaches such as static analysis, dynamic analysis, binary analysis, or a hybrid of the three approaches. Developers can employ these analysis approaches in a variety of tools (e.g., web-based application scanners, static analysis tools, binary analyzers) and in source code reviews. Security assessment plans provide the specific activities that developers plan to carry out including the types of analyses, testing, evaluation, and reviews of software and firmware components, the degree of rigor to be applied, and the types of artifacts produced during those processes. The depth of security testing/evaluation refers to the rigor and level of detail associated with the assessment process (e.g., black box, gray box, or white box testing). The coverage of security testing/evaluation refers to the scope (i.e., number and type) of the artifacts included in the assessment process. Contracts specify the acceptance criteria for security assessment plans, flaw remediation processes, and the evidence that the plans/processes have been diligently applied. Methods for reviewing and protecting assessment plans, evidence, and documentation are commensurate with the security category or classification level of the information system. Contracts may specify documentation protection requirements.", "external_references": [ { @@ -230427,7 +230427,7 @@ } ], "id": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "modified": "2021-01-06T18:28:39.845Z", + "modified": "2021-01-13T01:50:48.965Z", "name": "Developer Security Testing And Evaluation", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230438,7 +230438,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.847Z", + "created": "2021-01-13T01:50:48.966Z", "description": "The organization protects against supply chain threats to the information system, system component, or information system service by employing [Assignment: organization-defined security safeguards] as part of a comprehensive, defense-in-breadth information security strategy.\nInformation systems (including system components that compose those systems) need to be protected throughout the system development life cycle (i.e., during design, development, manufacturing, packaging, assembly, distribution, system integration, operations, maintenance, and retirement). Protection of organizational information systems is accomplished through threat awareness, by the identification, management, and reduction of vulnerabilities at each phase of the life cycle and the use of complementary, mutually reinforcing strategies to respond to risk. Organizations consider implementing a standardized process to address supply chain risk with respect to information systems and system components, and to educate the acquisition workforce on threats, risk, and required security controls. Organizations use the acquisition/procurement processes to require supply chain entities to implement necessary security safeguards to: (i) reduce the likelihood of unauthorized modifications at each stage in the supply chain; and (ii) protect information systems and information system components, prior to taking delivery of such systems/components. This control also applies to information system services. Security safeguards include, for example: (i) security controls for development systems, development facilities, and external connections to development systems; (ii) vetting development personnel; and (iii) use of tamper-evident packaging during shipping/warehousing. Methods for reviewing and protecting development plans, evidence, and documentation are commensurate with the security category or classification level of the information system. Contracts may specify documentation protection requirements.", "external_references": [ { @@ -230447,7 +230447,7 @@ } ], "id": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", - "modified": "2021-01-06T18:28:39.847Z", + "modified": "2021-01-13T01:50:48.966Z", "name": "Supply Chain Protection", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230457,7 +230457,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization:\n\n* **SA-13a.** Describes the trustworthiness required in the [Assignment: organization-defined information system, information system component, or information system service] supporting its critical missions/business functions; and\n* **SA-13b.** Implements [Assignment: organization-defined assurance overlay] to achieve such trustworthiness.\n\nThis control helps organizations to make explicit trustworthiness decisions when designing, developing, and implementing information systems that are needed to conduct critical organizational missions/business functions. Trustworthiness is a characteristic/property of an information system that expresses the degree to which the system can be expected to preserve the confidentiality, integrity, and availability of the information it processes, stores, or transmits. Trustworthy information systems are systems that are capable of being trusted to operate within defined levels of risk despite the environmental disruptions, human errors, and purposeful attacks that are expected to occur in the specified environments of operation. Trustworthy systems are important to mission/business success. Two factors affecting the trustworthiness of information systems include: (i) security functionality (i.e., the security features, functions, and/or mechanisms employed within the system and its environment of operation); and (ii) security assurance (i.e., the grounds for confidence that the security functionality is effective in its application). Developers, implementers, operators, and maintainers of organizational information systems can increase the level of assurance (and trustworthiness), for example, by employing well-defined security policy models, structured and rigorous hardware, software, and firmware development techniques, sound system/security engineering principles, and secure configuration settings (defined by a set of assurance-related security controls in Appendix E). Assurance is also based on the assessment of evidence produced during the system development life cycle. Critical missions/business functions are supported by high-impact systems and the associated assurance requirements for such systems. The additional assurance controls in Table E-4 in Appendix E (designated as optional) can be used to develop and implement high-assurance solutions for specific information systems and system components using the concept of overlays described in Appendix I. Organizations select assurance overlays that have been developed, validated, and approved for community adoption (e.g., cross-organization, governmentwide), limiting the development of such overlays on an organization-by-organization basis. Organizations can conduct criticality analyses as described in SA-14, to determine the information systems, system components, or information system services that require high-assurance solutions. Trustworthiness requirements and assurance overlays can be described in the security plans for organizational information systems.", "external_references": [ { @@ -230466,14 +230466,14 @@ } ], "id": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Trustworthiness", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization identifies critical information system components and functions by performing a criticality analysis for [Assignment: organization-defined information systems, information system components, or information system services] at [Assignment: organization-defined decision points in the system development life cycle].\nCriticality analysis is a key tenet of supply chain risk management and informs the prioritization of supply chain protection activities such as attack surface reduction, use of all-source intelligence, and tailored acquisition strategies. Information system engineers can conduct an end-to-end functional decomposition of an information system to identify mission-critical functions and components. The functional decomposition includes the identification of core organizational missions supported by the system, decomposition into the specific functions to perform those missions, and traceability to the hardware, software, and firmware components that implement those functions, including when the functions are shared by many components within and beyond the information system boundary. Information system components that allow for unmediated access to critical components or functions are considered critical due to the inherent vulnerabilities such components create. Criticality is assessed in terms of the impact of the function or component failure on the ability of the component to complete the organizational missions supported by the information system. A criticality analysis is performed whenever an architecture or design is being developed or modified, including upgrades.", "external_references": [ { @@ -230482,14 +230482,14 @@ } ], "id": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Criticality Analysis", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.852Z", + "created": "2021-01-13T01:50:48.969Z", "description": "The organization:\n\n* **SA-15a.** Requires the developer of the information system, system component, or information system service to follow a documented development process that:\n * **SA-15a.1.** Explicitly addresses security requirements;\n * **SA-15a.2.** Identifies the standards and tools used in the development process;\n * **SA-15a.3.** Documents the specific tool options and tool configurations used in the development process; and\n * **SA-15a.4.** Documents, manages, and ensures the integrity of changes to the process and/or tools used in development; and\n* **SA-15b.** Reviews the development process, standards, tools, and tool options/configurations [Assignment: organization-defined frequency] to determine if the process, standards, tools, and tool options/configurations selected and employed can satisfy [Assignment: organization-defined security requirements].\n\nDevelopment tools include, for example, programming languages and computer-aided design (CAD) systems. Reviews of development processes can include, for example, the use of maturity models to determine the potential effectiveness of such processes. Maintaining the integrity of changes to tools and processes enables accurate supply chain risk assessment and mitigation, and requires robust configuration control throughout the life cycle (including design, development, transport, delivery, integration, and maintenance) to track authorized changes and prevent unauthorized changes.", "external_references": [ { @@ -230498,7 +230498,7 @@ } ], "id": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "modified": "2021-01-06T18:28:39.852Z", + "modified": "2021-01-13T01:50:48.969Z", "name": "Development Process, Standards, And Tools", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230508,7 +230508,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to provide [Assignment: organization-defined training] on the correct use and operation of the implemented security functions, controls, and/or mechanisms.\nThis control applies to external and internal (in-house) developers. Training of personnel is an essential element to ensure the effectiveness of security controls implemented within organizational information systems. Training options include, for example, classroom-style training, web-based/computer-based training, and hands-on training. Organizations can also request sufficient training materials from developers to conduct in-house training or offer self-training to organizational personnel. Organizations determine the type of training necessary and may require different types of training for different security functions, controls, or mechanisms.", "external_references": [ { @@ -230517,7 +230517,7 @@ } ], "id": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Developer-Provided Training", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230527,7 +230527,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.855Z", + "created": "2021-01-13T01:50:48.971Z", "description": "The organization requires the developer of the information system, system component, or information system service to produce a design specification and security architecture that:\n\n* **SA-17a.** Is consistent with and supportive of the organization\u00ef\u00bf\u00bds security architecture which is established within and is an integrated part of the organization\u00ef\u00bf\u00bds enterprise architecture;\n* **SA-17b.** Accurately and completely describes the required security functionality, and the allocation of security controls among physical and logical components; and\n* **SA-17c.** Expresses how individual security functions, mechanisms, and services work together to provide required security capabilities and a unified approach to protection.\n\nThis control is primarily directed at external developers, although it could also be used for internal (in-house) development. In contrast, PL-8 is primarily directed at internal developers to help ensure that organizations develop an information security architecture and such security architecture is integrated or tightly coupled to the enterprise architecture. This distinction is important if/when organizations outsource the development of information systems, information system components, or information system services to external entities, and there is a requirement to demonstrate consistency with the organization\u00ef\u00bf\u00bds enterprise architecture and information security architecture.", "external_references": [ { @@ -230536,7 +230536,7 @@ } ], "id": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "modified": "2021-01-06T18:28:39.855Z", + "modified": "2021-01-13T01:50:48.971Z", "name": "Developer Security Architecture And Design", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", @@ -230546,7 +230546,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.857Z", + "created": "2021-01-13T01:50:48.972Z", "description": "The organization:\n\n* **SA-19a.** Develops and implements anti-counterfeit policy and procedures that include the means to detect and prevent counterfeit components from entering the information system; and\n* **SA-19b.** Reports counterfeit information system components to [Selection (one or more): source of counterfeit component; [Assignment: organization-defined external reporting organizations]; [Assignment: organization-defined personnel or roles]].\n\nSources of counterfeit components include, for example, manufacturers, developers, vendors, and contractors. Anti-counterfeiting policy and procedures support tamper resistance and provide a level of protection against the introduction of malicious code. External reporting organizations include, for example, US-CERT.", "external_references": [ { @@ -230555,14 +230555,14 @@ } ], "id": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", - "modified": "2021-01-06T18:28:39.857Z", + "modified": "2021-01-13T01:50:48.972Z", "name": "Component Authenticity", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.859Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The organization:\n\n* **SA-22a.** Replaces information system components when support for the components is no longer available from the developer, vendor, or manufacturer; and\n* **SA-22b.** Provides justification and documents approval for the continued use of unsupported system components required to satisfy mission/business needs.\n\nSupport for information system components includes, for example, software patches, firmware updates, replacement parts, and maintenance contracts. Unsupported components (e.g., when vendors are no longer providing critical software patches), provide a substantial opportunity for adversaries to exploit new weaknesses discovered in the currently installed components. Exceptions to replacing unsupported system components may include, for example, systems that provide critical mission/business capability where newer technologies are not available or where the systems are so isolated that installing replacement components is not an option.", "external_references": [ { @@ -230571,14 +230571,14 @@ } ], "id": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "modified": "2021-01-06T18:28:39.859Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Unsupported System Components", "type": "course-of-action", "x_mitre_family": "System And Services Acquisition", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.861Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system separates user functionality (including user interface services) from information system management functionality.\nInformation system management functionality includes, for example, functions necessary to administer databases, network components, workstations, or servers, and typically requires privileged user access. The separation of user functionality from information system management functionality is either physical or logical. Organizations implement separation of system management-related functionality from user functionality by using different computers, different central processing units, different instances of operating systems, different network addresses, virtualization techniques, or combinations of these or other methods, as appropriate. This type of separation includes, for example, web administrative interfaces that use separate authentication methods for users of any other information system resources. Separation of system and user functionality may include isolating administrative interfaces on different domains and with additional access controls.", "external_references": [ { @@ -230587,7 +230587,7 @@ } ], "id": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", - "modified": "2021-01-06T18:28:39.861Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Application Partitioning", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230598,7 +230598,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.862Z", + "created": "2021-01-13T01:50:48.974Z", "description": "The information system isolates security functions from nonsecurity functions.\nThe information system isolates security functions from nonsecurity functions by means of an isolation boundary (implemented via partitions and domains). Such isolation controls access to and protects the integrity of the hardware, software, and firmware that perform those security functions. Information systems implement code separation (i.e., separation of security functions from nonsecurity functions) in a number of ways, including, for example, through the provision of security kernels via processor rings or processor modes. For non-kernel code, security function isolation is often achieved through file system protections that serve to protect the code on disk, and address space protections that protect executing code. Information systems restrict access to security functions through the use of access control mechanisms and by implementing least privilege capabilities. While the ideal is for all of the code within the security function isolation boundary to only contain security-relevant code, it is sometimes necessary to include nonsecurity functions within the isolation boundary as an exception.", "external_references": [ { @@ -230607,7 +230607,7 @@ } ], "id": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", - "modified": "2021-01-06T18:28:39.862Z", + "modified": "2021-01-13T01:50:48.974Z", "name": "Security Function Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230617,7 +230617,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.863Z", + "created": "2021-01-13T01:50:48.975Z", "description": "The information system prevents unauthorized and unintended information transfer via shared system resources.\nThis control prevents information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection. This control does not address: (i) information remanence which refers to residual representation of data that has been nominally erased or removed; (ii) covert channels (including storage and/or timing channels) where shared resources are manipulated to violate information flow restrictions; or (iii) components within information systems for which there are only single users/roles.", "external_references": [ { @@ -230626,7 +230626,7 @@ } ], "id": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "modified": "2021-01-06T18:28:39.863Z", + "modified": "2021-01-13T01:50:48.975Z", "name": "Information In Shared Resources", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230637,7 +230637,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.864Z", + "created": "2021-01-13T01:50:48.976Z", "description": "The information system:\n\n* **SC-7a.** Monitors and controls communications at the external boundary of the system and at key internal boundaries within the system;\n* **SC-7b.** Implements subnetworks for publicly accessible system components that are [Selection: physically; logically] separated from internal organizational networks; and\n* **SC-7c.** Connects to external networks or information systems only through managed interfaces consisting of boundary protection devices arranged in accordance with an organizational security architecture.\n\nManaged interfaces include, for example, gateways, routers, firewalls, guards, network-based malicious code analysis and virtualization systems, or encrypted tunnels implemented within a security architecture (e.g., routers protecting firewalls or application gateways residing on protected subnetworks). Subnetworks that are physically or logically separated from internal networks are referred to as demilitarized zones or DMZs. Restricting or prohibiting interfaces within organizational information systems includes, for example, restricting external web traffic to designated web servers within managed interfaces and prohibiting external traffic that appears to be spoofing internal addresses. Organizations consider the shared nature of commercial telecommunications services in the implementation of security controls associated with the use of such services. Commercial telecommunications services are commonly based on network components and consolidated management systems shared by all attached commercial customers, and may also include third party-provided access lines and other service elements. Such transmission services may represent sources of increased risk despite contract security provisions.", "external_references": [ { @@ -230646,7 +230646,7 @@ } ], "id": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "modified": "2021-01-06T18:28:39.864Z", + "modified": "2021-01-13T01:50:48.976Z", "name": "Boundary Protection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230658,7 +230658,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.871Z", + "created": "2021-01-13T01:50:48.980Z", "description": "The information system protects the [Selection (one or more): confidentiality; integrity] of transmitted information.\nThis control applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification. Protecting the confidentiality and/or integrity of organizational information can be accomplished by physical means (e.g., by employing protected distribution systems) or by logical means (e.g., employing encryption techniques). Organizations relying on commercial providers offering transmission services as commodity services rather than as fully dedicated services (i.e., services which can be highly specialized to individual customer needs), may find it difficult to obtain the necessary assurances regarding the implementation of needed security controls for transmission confidentiality/integrity. In such situations, organizations determine what types of confidentiality/integrity services are available in standard, commercial telecommunication service packages. If it is infeasible or impractical to obtain the necessary security controls and assurances of control effectiveness through appropriate contracting vehicles, organizations implement appropriate compensating security controls or explicitly accept the additional risk.", "external_references": [ { @@ -230667,7 +230667,7 @@ } ], "id": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "modified": "2021-01-06T18:28:39.871Z", + "modified": "2021-01-13T01:50:48.980Z", "name": "Transmission Confidentiality And Integrity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230678,7 +230678,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.872Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The information system terminates the network connection associated with a communications session at the end of the session or after [Assignment: organization-defined time period] of inactivity.\nThis control applies to both internal and external networks. Terminating network connections associated with communications sessions include, for example, de-allocating associated TCP/IP address/port pairs at the operating system level, or de-allocating networking assignments at the application level if multiple application sessions are using a single, operating system-level network connection. Time periods of inactivity may be established by organizations and include, for example, time periods by type of network access or for specific network accesses.", "external_references": [ { @@ -230687,7 +230687,7 @@ } ], "id": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "modified": "2021-01-06T18:28:39.872Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Network Disconnect", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230698,7 +230698,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.873Z", + "created": "2021-01-13T01:50:48.981Z", "description": "The organization establishes and manages cryptographic keys for required cryptography employed within the information system in accordance with [Assignment: organization-defined requirements for key generation, distribution, storage, access, and destruction].\nCryptographic key management and establishment can be performed using manual procedures or automated mechanisms with supporting manual procedures. Organizations define key management requirements in accordance with applicable federal laws, Executive Orders, directives, regulations, policies, standards, and guidance, specifying appropriate options, levels, and parameters. Organizations manage trust stores to ensure that only approved trust anchors are in such trust stores. This includes certificates with visibility external to organizational information systems and certificates related to the internal operations of systems.", "external_references": [ { @@ -230707,7 +230707,7 @@ } ], "id": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "modified": "2021-01-06T18:28:39.873Z", + "modified": "2021-01-13T01:50:48.981Z", "name": "Cryptographic Key Establishment And Management", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230719,7 +230719,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The information system associates [Assignment: organization-defined security attributes] with information exchanged between information systems and between system components.\nSecurity attributes can be explicitly or implicitly associated with the information contained in organizational information systems or system components.", "external_references": [ { @@ -230728,14 +230728,14 @@ } ], "id": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Transmission Of Security Attributes", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The organization issues public key certificates under an [Assignment: organization-defined certificate policy] or obtains public key certificates from an approved service provider.\nFor all certificates, organizations manage information system trust stores to ensure only approved trust anchors are in the trust stores. This control addresses both certificates with visibility external to organizational information systems and certificates related to the internal operations of systems, for example, application-specific time services.", "external_references": [ { @@ -230744,7 +230744,7 @@ } ], "id": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Public Key Infrastructure Certificates", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230755,7 +230755,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.877Z", + "created": "2021-01-13T01:50:48.984Z", "description": "The organization:\n\n* **SC-18a.** Defines acceptable and unacceptable mobile code and mobile code technologies;\n* **SC-18b.** Establishes usage restrictions and implementation guidance for acceptable mobile code and mobile code technologies; and\n* **SC-18c.** Authorizes, monitors, and controls the use of mobile code within the information system.\n\nDecisions regarding the employment of mobile code within organizational information systems are based on the potential for the code to cause damage to the systems if used maliciously. Mobile code technologies include, for example, Java, JavaScript, ActiveX, Postscript, PDF, Shockwave movies, Flash animations, and VBScript. Usage restrictions and implementation guidance apply to both the selection and use of mobile code installed on servers and mobile code downloaded and executed on individual workstations and devices (e.g., smart phones). Mobile code policy and procedures address preventing the development, acquisition, or introduction of unacceptable mobile code within organizational information systems.", "external_references": [ { @@ -230764,7 +230764,7 @@ } ], "id": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "modified": "2021-01-06T18:28:39.877Z", + "modified": "2021-01-13T01:50:48.984Z", "name": "Mobile Code", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230775,7 +230775,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.879Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system:\n\n* **SC-20a.** Provides additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries; and\n* **SC-20b.** Provides the means to indicate the security status of child zones and (if the child supports secure resolution services) to enable verification of a chain of trust among parent and child domains, when operating as part of a distributed, hierarchical namespace.\n\nThis control enables external clients including, for example, remote Internet clients, to obtain origin authentication and integrity verification assurances for the host/service name to network address resolution information obtained through the service. Information systems that provide name and address resolution services include, for example, domain name system (DNS) servers. Additional artifacts include, for example, DNS Security (DNSSEC) digital signatures and cryptographic keys. DNS resource records are examples of authoritative data. The means to indicate the security status of child zones includes, for example, the use of delegation signer resource records in the DNS. The DNS security controls reflect (and are referenced from) OMB Memorandum 08-23. Information systems that use technologies other than the DNS to map between host/service names and network addresses provide other means to assure the authenticity and integrity of response data.", "external_references": [ { @@ -230784,7 +230784,7 @@ } ], "id": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "modified": "2021-01-06T18:28:39.879Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Secure Name / Address Resolution Service (Authoritative Source)", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230796,7 +230796,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.985Z", "description": "The information system requests and performs data origin authentication and data integrity verification on the name/address resolution responses the system receives from authoritative sources.\nEach client of name resolution services either performs this validation on its own, or has authenticated channels to trusted validation providers. Information systems that provide name and address resolution services for local clients include, for example, recursive resolving or caching domain name system (DNS) servers. DNS client resolvers either perform validation of DNSSEC signatures, or clients use authenticated channels to recursive resolvers that perform such validations. Information systems that use technologies other than the DNS to map between host/service names and network addresses provide other means to enable clients to verify the authenticity and integrity of response data.", "external_references": [ { @@ -230805,7 +230805,7 @@ } ], "id": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.985Z", "name": "Secure Name / Address Resolution Service (Recursive Or Caching Resolver)", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230817,7 +230817,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information systems that collectively provide name/address resolution service for an organization are fault-tolerant and implement internal/external role separation.\nInformation systems that provide name and address resolution services include, for example, domain name system (DNS) servers. To eliminate single points of failure and to enhance redundancy, organizations employ at least two authoritative domain name system servers, one configured as the primary server and the other configured as the secondary server. Additionally, organizations typically deploy the servers in two geographically separated network subnetworks (i.e., not located in the same physical facility). For role separation, DNS servers with internal roles only process name and address resolution requests from within organizations (i.e., from internal clients). DNS servers with external roles only process name and address resolution information requests from clients external to organizations (i.e., on external networks including the Internet). Organizations specify clients that can access authoritative DNS servers in particular roles (e.g., by address ranges, explicit lists).", "external_references": [ { @@ -230826,7 +230826,7 @@ } ], "id": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Architecture And Provisioning For Name / Address Resolution Service", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230838,7 +230838,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.880Z", + "created": "2021-01-13T01:50:48.986Z", "description": "The information system protects the authenticity of communications sessions.\nThis control addresses communications protection at the session, versus packet level (e.g., sessions in service-oriented architectures providing web-based services) and establishes grounds for confidence at both ends of communications sessions in ongoing identities of other parties and in the validity of information transmitted. Authenticity protection includes, for example, protecting against man-in-the-middle attacks/session hijacking and the insertion of false information into sessions.", "external_references": [ { @@ -230847,7 +230847,7 @@ } ], "id": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "modified": "2021-01-06T18:28:39.880Z", + "modified": "2021-01-13T01:50:48.986Z", "name": "Session Authenticity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230858,7 +230858,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.882Z", + "created": "2021-01-13T01:50:48.987Z", "description": "The information system includes components specifically designed to be the target of malicious attacks for the purpose of detecting, deflecting, and analyzing such attacks.\nA honeypot is set up as a decoy to attract adversaries and to deflect their attacks away from the operational systems supporting organizational missions/business function. Depending upon the specific usage of the honeypot, consultation with the Office of the General Counsel before deployment may be needed.", "external_references": [ { @@ -230867,14 +230867,14 @@ } ], "id": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", - "modified": "2021-01-06T18:28:39.882Z", + "modified": "2021-01-13T01:50:48.987Z", "name": "Honeypots", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.883Z", + "created": "2021-01-13T01:50:48.988Z", "description": "The information system protects the [Selection (one or more): confidentiality; integrity] of [Assignment: organization-defined information at rest].\nThis control addresses the confidentiality and integrity of information at rest and covers user information and system information. Information at rest refers to the state of information when it is located on storage devices as specific components of information systems. System-related information requiring protection includes, for example, configurations or rule sets for firewalls, gateways, intrusion detection/prevention systems, filtering routers, and authenticator content. Organizations may employ different mechanisms to achieve confidentiality and integrity protections, including the use of cryptographic mechanisms and file share scanning. Integrity protection can be achieved, for example, by implementing Write-Once-Read-Many (WORM) technologies. Organizations may also employ other security controls including, for example, secure off-line storage in lieu of online storage when adequate protection of information at rest cannot otherwise be achieved and/or continuous monitoring to identify malicious code at rest.", "external_references": [ { @@ -230883,7 +230883,7 @@ } ], "id": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "modified": "2021-01-06T18:28:39.883Z", + "modified": "2021-01-13T01:50:48.988Z", "name": "Protection Of Information At Rest", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -230894,7 +230894,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.884Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs a diverse set of information technologies for [Assignment: organization-defined information system components] in the implementation of the information system.\nIncreasing the diversity of information technologies within organizational information systems reduces the impact of potential exploitations of specific technologies and also defends against common mode failures, including those failures induced by supply chain attacks. Diversity in information technologies also reduces the likelihood that the means adversaries use to compromise one information system component will be equally effective against other system components, thus further increasing the adversary work factor to successfully complete planned cyber attacks. An increase in diversity may add complexity and management overhead which could ultimately lead to mistakes and unauthorized configurations.", "external_references": [ { @@ -230903,14 +230903,14 @@ } ], "id": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", - "modified": "2021-01-06T18:28:39.884Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Heterogeneity", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.885Z", + "created": "2021-01-13T01:50:48.989Z", "description": "The organization employs [Assignment: organization-defined concealment and misdirection techniques] for [Assignment: organization-defined information systems] at [Assignment: organization-defined time periods] to confuse and mislead adversaries.\nConcealment and misdirection techniques can significantly reduce the targeting capability of adversaries (i.e., window of opportunity and available attack surface) to initiate and complete cyber attacks. For example, virtualization techniques provide organizations with the ability to disguise information systems, potentially reducing the likelihood of successful attacks without the cost of having multiple platforms. Increased use of concealment/misdirection techniques including, for example, randomness, uncertainty, and virtualization, may sufficiently confuse and mislead adversaries and subsequently increase the risk of discovery and/or exposing tradecraft. Concealment/misdirection techniques may also provide organizations additional time to successfully perform core missions and business functions. Because of the time and effort required to support concealment/misdirection techniques, it is anticipated that such techniques would be used by organizations on a very limited basis.", "external_references": [ { @@ -230919,14 +230919,14 @@ } ], "id": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", - "modified": "2021-01-06T18:28:39.885Z", + "modified": "2021-01-13T01:50:48.989Z", "name": "Concealment And Misdirection", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.886Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The organization:\n\n* **SC-31a.** Performs a covert channel analysis to identify those aspects of communications within the information system that are potential avenues for covert [Selection (one or more): storage; timing] channels; and\n* **SC-31b.** Estimates the maximum bandwidth of those channels.\n\nDevelopers are in the best position to identify potential areas within systems that might lead to covert channels. Covert channel analysis is a meaningful activity when there is the potential for unauthorized information flows across security domains, for example, in the case of information systems containing export-controlled information and having connections to external networks (i.e., networks not controlled by organizations). Covert channel analysis is also meaningful for multilevel secure (MLS) information systems, multiple security level (MSL) systems, and cross-domain systems.", "external_references": [ { @@ -230935,14 +230935,14 @@ } ], "id": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "modified": "2021-01-06T18:28:39.886Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Covert Channel Analysis", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.990Z", "description": "The information system at [Assignment: organization-defined information system components]:\n\n* **SC-34a.** Loads and executes the operating environment from hardware-enforced, read-only media; and\n* **SC-34b.** Loads and executes [Assignment: organization-defined applications] from hardware-enforced, read-only media.\n\nThe term operating environment is defined as the specific code that hosts applications, for example, operating systems, executives, or monitors including virtual machine monitors (i.e., hypervisors). It can also include certain applications running directly on hardware platforms. Hardware-enforced, read-only media include, for example, Compact Disk-Recordable (CD-R)/Digital Video Disk-Recordable (DVD-R) disk drives and one-time programmable read-only memory. The use of non-modifiable storage ensures the integrity of software from the point of creation of the read-only image. The use of reprogrammable read-only memory can be accepted as read-only media provided: (i) integrity can be adequately protected from the point of initial writing to the insertion of the memory into the information system; and (ii) there are reliable hardware protections against reprogramming the memory while installed in organizational information systems.", "external_references": [ { @@ -230951,14 +230951,14 @@ } ], "id": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.990Z", "name": "Non-Modifiable Executable Programs", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.887Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The information system includes components that proactively seek to identify malicious websites and/or web-based malicious code.\nHoneyclients differ from honeypots in that the components actively probe the Internet in search of malicious code (e.g., worms) contained on external websites. As with honeypots, honeyclients require some supporting isolation measures (e.g., virtualization) to ensure that any malicious code discovered during the search and subsequently executed does not infect organizational information systems.", "external_references": [ { @@ -230967,14 +230967,14 @@ } ], "id": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", - "modified": "2021-01-06T18:28:39.887Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Honeyclients", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization distributes [Assignment: organization-defined processing and storage] across multiple physical locations.\nDistributing processing and storage across multiple physical locations provides some degree of redundancy or overlap for organizations, and therefore increases the work factor of adversaries to adversely impact organizational operations, assets, and individuals. This control does not assume a single primary processing or storage location, and thus allows for parallel processing and storage.", "external_references": [ { @@ -230983,14 +230983,14 @@ } ], "id": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Distributed Processing And Storage", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.991Z", "description": "The organization employs [Assignment: organization-defined out-of-band channels] for the physical delivery or electronic transmission of [Assignment: organization-defined information, information system components, or devices] to [Assignment: organization-defined individuals or information systems].\nOut-of-band channels include, for example, local (nonnetwork) accesses to information systems, network paths physically separate from network paths used for operational traffic, or nonelectronic paths such as the US Postal Service. This is in contrast with using the same channels (i.e., in-band channels) that carry routine operational traffic. Out-of-band channels do not have the same vulnerability/exposure as in-band channels, and hence the confidentiality, integrity, or availability compromises of in-band channels will not compromise the out-of-band channels. Organizations may employ out-of-band channels in the delivery or transmission of many organizational items including, for example, identifiers/authenticators, configuration management changes for hardware, firmware, or software, cryptographic key management information, security updates, system/data backups, maintenance information, and malicious code protection updates.", "external_references": [ { @@ -230999,14 +230999,14 @@ } ], "id": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.991Z", "name": "Out-Of-Band Channels", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.888Z", + "created": "2021-01-13T01:50:48.992Z", "description": "The information system maintains a separate execution domain for each executing process.\nInformation systems can maintain separate execution domains for each executing process by assigning each process a separate address space. Each information system process has a distinct address space so that communication between processes is performed in a manner controlled through the security functions, and one process cannot modify the executing code of another process. Maintaining separate execution domains for executing processes can be achieved, for example, by implementing separate address spaces. This capability is available in most commercial operating systems that employ multi-state processor technologies.", "external_references": [ { @@ -231015,7 +231015,7 @@ } ], "id": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "modified": "2021-01-06T18:28:39.888Z", + "modified": "2021-01-13T01:50:48.992Z", "name": "Process Isolation", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", @@ -231027,7 +231027,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.890Z", + "created": "2021-01-13T01:50:48.993Z", "description": "The organization physically disables or removes [Assignment: organization-defined connection ports or input/output devices] on [Assignment: organization-defined information systems or information system components].\nConnection ports include, for example, Universal Serial Bus (USB) and Firewire (IEEE 1394). Input/output (I/O) devices include, for example, Compact Disk (CD) and Digital Video Disk (DVD) drives. Physically disabling or removing such connection ports and I/O devices helps prevent exfiltration of information from information systems and the introduction of malicious code into systems from those ports/devices.", "external_references": [ { @@ -231036,14 +231036,14 @@ } ], "id": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", - "modified": "2021-01-06T18:28:39.890Z", + "modified": "2021-01-13T01:50:48.993Z", "name": "Port And I/O Device Access", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization employs a detonation chamber capability within [Assignment: organization-defined information system, system component, or location].\nDetonation chambers, also known as dynamic execution environments, allow organizations to open email attachments, execute untrusted or suspicious applications, and execute Universal Resource Locator (URL) requests in the safety of an isolated environment or virtualized sandbox. These protected and isolated execution environments provide a means of determining whether the associated attachments/applications contain malicious code. While related to the concept of deception nets, the control is not intended to maintain a long-term environment in which adversaries can operate and their actions can be observed. Rather, it is intended to quickly identify malicious code and reduce the likelihood that the code is propagated to user environments of operation (or prevent such propagation completely).", "external_references": [ { @@ -231052,14 +231052,14 @@ } ], "id": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Detonation Chambers", "type": "course-of-action", "x_mitre_family": "System And Communications Protection", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.891Z", + "created": "2021-01-13T01:50:48.994Z", "description": "The organization:\n\n* **SI-2a.** Identifies, reports, and corrects information system flaws;\n* **SI-2b.** Tests software and firmware updates related to flaw remediation for effectiveness and potential side effects before installation;\n* **SI-2c.** Installs security-relevant software and firmware updates within [Assignment: organization-defined time period] of the release of the updates; and\n* **SI-2d.** Incorporates flaw remediation into the organizational configuration management process.\n\nOrganizations identify information systems affected by announced software flaws including potential vulnerabilities resulting from those flaws, and report this information to designated organizational personnel with information security responsibilities. Security-relevant software updates include, for example, patches, service packs, hot fixes, and anti-virus signatures. Organizations also address flaws discovered during security assessments, continuous monitoring, incident response activities, and system error handling. Organizations take advantage of available resources such as the Common Weakness Enumeration (CWE) or Common Vulnerabilities and Exposures (CVE) databases in remediating flaws discovered in organizational information systems. By incorporating flaw remediation into ongoing configuration management processes, required/anticipated remediation actions can be tracked and verified. Flaw remediation actions that can be tracked and verified include, for example, determining whether organizations follow US-CERT guidance and Information Assurance Vulnerability Alerts. Organization-defined time periods for updating security-relevant software and firmware may vary based on a variety of factors including, for example, the security category of the information system or the criticality of the update (i.e., severity of the vulnerability related to the discovered flaw). Some types of flaw remediation may require more testing than other types. Organizations determine the degree and type of testing needed for the specific type of flaw remediation activity under consideration and also the types of changes that are to be configuration-managed. In some situations, organizations may determine that the testing of software and/or firmware updates is not necessary or practical, for example, when implementing simple anti-virus signature updates. Organizations may also consider in testing decisions, whether security-relevant software or firmware updates are obtained from authorized sources with appropriate digital signatures.", "external_references": [ { @@ -231068,7 +231068,7 @@ } ], "id": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "modified": "2021-01-06T18:28:39.891Z", + "modified": "2021-01-13T01:50:48.994Z", "name": "Flaw Remediation", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231080,7 +231080,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.892Z", + "created": "2021-01-13T01:50:48.995Z", "description": "The organization:\n\n* **SI-3a.** Employs malicious code protection mechanisms at information system entry and exit points to detect and eradicate malicious code;\n* **SI-3b.** Updates malicious code protection mechanisms whenever new releases are available in accordance with organizational configuration management policy and procedures;\n* **SI-3c.** Configures malicious code protection mechanisms to:\n * **SI-3c.1.** Perform periodic scans of the information system [Assignment: organization-defined frequency] and real-time scans of files from external sources at [Selection (one or more); endpoint; network entry/exit points] as the files are downloaded, opened, or executed in accordance with organizational security policy; and\n * **SI-3c.2.** [Selection (one or more): block malicious code; quarantine malicious code; send alert to administrator; [Assignment: organization-defined action]] in response to malicious code detection; and\n* **SI-3d.** Addresses the receipt of false positives during malicious code detection and eradication and the resulting potential impact on the availability of the information system.\n\nInformation system entry and exit points include, for example, firewalls, electronic mail servers, web servers, proxy servers, remote-access servers, workstations, notebook computers, and mobile devices. Malicious code includes, for example, viruses, worms, Trojan horses, and spyware. Malicious code can also be encoded in various formats (e.g., UUENCODE, Unicode), contained within compressed or hidden files, or hidden in files using steganography. Malicious code can be transported by different means including, for example, web accesses, electronic mail, electronic mail attachments, and portable storage devices. Malicious code insertions occur through the exploitation of information system vulnerabilities. Malicious code protection mechanisms include, for example, anti-virus signature definitions and reputation-based technologies. A variety of technologies and methods exist to limit or eliminate the effects of malicious code. Pervasive configuration management and comprehensive software integrity controls may be effective in preventing execution of unauthorized code. In addition to commercial off-the-shelf software, malicious code may also be present in custom-built software. This could include, for example, logic bombs, back doors, and other types of cyber attacks that could affect organizational missions/business functions. Traditional malicious code protection mechanisms cannot always detect such code. In these situations, organizations rely instead on other safeguards including, for example, secure coding practices, configuration management and control, trusted procurement processes, and monitoring practices to help ensure that software does not perform functions other than the functions intended. Organizations may determine that in response to the detection of malicious code, different actions may be warranted. For example, organizations can define actions in response to malicious code detection during periodic scans, actions in response to detection of malicious downloads, and/or actions in response to detection of maliciousness when attempting to open or execute files.", "external_references": [ { @@ -231089,7 +231089,7 @@ } ], "id": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "modified": "2021-01-06T18:28:39.892Z", + "modified": "2021-01-13T01:50:48.995Z", "name": "Malicious Code Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231101,7 +231101,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.894Z", + "created": "2021-01-13T01:50:49.013Z", "description": "The organization:\n\n* **SI-4a.** Monitors the information system to detect:\n * **SI-4a.1.** Attacks and indicators of potential attacks in accordance with [Assignment: organization-defined monitoring objectives]; and\n * **SI-4a.2.** Unauthorized local, network, and remote connections;\n* **SI-4b.** Identifies unauthorized use of the information system through [Assignment: organization-defined techniques and methods];\n* **SI-4c.** Deploys monitoring devices:\n * **SI-4c.1.** Strategically within the information system to collect organization-determined essential information; and\n * **SI-4c.2.** At ad hoc locations within the system to track specific types of transactions of interest to the organization;\n* **SI-4d.** Protects information obtained from intrusion-monitoring tools from unauthorized access, modification, and deletion;\n* **SI-4e.** Heightens the level of information system monitoring activity whenever there is an indication of increased risk to organizational operations and assets, individuals, other organizations, or the Nation based on law enforcement information, intelligence information, or other credible sources of information;\n* **SI-4f.** Obtains legal opinion with regard to information system monitoring activities in accordance with applicable federal laws, Executive Orders, directives, policies, or regulations; and\n* **SI-4g.** Provides [Assignment: organization-defined information system monitoring information] to [Assignment: organization-defined personnel or roles] [Selection (one or more): as needed; [Assignment: organization-defined frequency]].\n\nInformation system monitoring includes external and internal monitoring. External monitoring includes the observation of events occurring at the information system boundary (i.e., part of perimeter defense and boundary protection). Internal monitoring includes the observation of events occurring within the information system. Organizations can monitor information systems, for example, by observing audit activities in real time or by observing other system aspects such as access patterns, characteristics of access, and other actions. The monitoring objectives may guide determination of the events. Information system monitoring capability is achieved through a variety of tools and techniques (e.g., intrusion detection systems, intrusion prevention systems, malicious code protection software, scanning tools, audit record monitoring software, network monitoring software). Strategic locations for monitoring devices include, for example, selected perimeter locations and near server farms supporting critical applications, with such devices typically being employed at the managed interfaces associated with controls SC-7 and AC-17. Einstein network monitoring devices from the Department of Homeland Security can also be included as monitoring devices. The granularity of monitoring information collected is based on organizational monitoring objectives and the capability of information systems to support such objectives. Specific types of transactions of interest include, for example, Hyper Text Transfer Protocol (HTTP) traffic that bypasses HTTP proxies. Information system monitoring is an integral part of organizational continuous monitoring and incident response programs. Output from system monitoring serves as input to continuous monitoring and incident response programs. A network connection is any connection with a device that communicates through a network (e.g., local area network, Internet). A remote connection is any connection with a device communicating through an external network (e.g., the Internet). Local, network, and remote connections can be either wired or wireless.", "external_references": [ { @@ -231110,7 +231110,7 @@ } ], "id": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "modified": "2021-01-06T18:28:39.894Z", + "modified": "2021-01-13T01:50:49.013Z", "name": "Information System Monitoring", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231122,7 +231122,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.898Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization:\n\n* **SI-5a.** Receives information system security alerts, advisories, and directives from [Assignment: organization-defined external organizations] on an ongoing basis;\n* **SI-5b.** Generates internal security alerts, advisories, and directives as deemed necessary;\n* **SI-5c.** Disseminates security alerts, advisories, and directives to: [Selection (one or more): [Assignment: organization-defined personnel or roles]; [Assignment: organization-defined elements within the organization]; [Assignment: organization-defined external organizations]]; and\n* **SI-5d.** Implements security directives in accordance with established time frames, or notifies the issuing organization of the degree of noncompliance.\n\nThe United States Computer Emergency Readiness Team (US-CERT) generates security alerts and advisories to maintain situational awareness across the federal government. Security directives are issued by OMB or other designated organizations with the responsibility and authority to issue such directives. Compliance to security directives is essential due to the critical nature of many of these directives and the potential immediate adverse effects on organizational operations and assets, individuals, other organizations, and the Nation should the directives not be implemented in a timely manner. External organizations include, for example, external mission/business partners, supply chain partners, external service providers, and other peer/supporting organizations.", "external_references": [ { @@ -231131,7 +231131,7 @@ } ], "id": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", - "modified": "2021-01-06T18:28:39.898Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Security Alerts, Advisories, And Directives", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231143,7 +231143,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.899Z", + "created": "2021-01-13T01:50:49.017Z", "description": "The organization employs integrity verification tools to detect unauthorized changes to [Assignment: organization-defined software, firmware, and information].\nUnauthorized changes to software, firmware, and information can occur due to errors or malicious activity (e.g., tampering). Software includes, for example, operating systems (with key internal components such as kernels, drivers), middleware, and applications. Firmware includes, for example, the Basic Input Output System (BIOS). Information includes metadata such as security attributes associated with information. State-of-the-practice integrity-checking mechanisms (e.g., parity checks, cyclical redundancy checks, cryptographic hashes) and associated tools can automatically monitor the integrity of information systems and hosted applications.", "external_references": [ { @@ -231152,7 +231152,7 @@ } ], "id": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "modified": "2021-01-06T18:28:39.899Z", + "modified": "2021-01-13T01:50:49.017Z", "name": "Software, Firmware, And Information Integrity", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231163,7 +231163,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.902Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The organization:\n\n* **SI-8a.** Employs spam protection mechanisms at information system entry and exit points to detect and take action on unsolicited messages; and\n* **SI-8b.** Updates spam protection mechanisms when new releases are available in accordance with organizational configuration management policy and procedures.\n\nInformation system entry and exit points include, for example, firewalls, electronic mail servers, web servers, proxy servers, remote-access servers, workstations, mobile devices, and notebook/laptop computers. Spam can be transported by different means including, for example, electronic mail, electronic mail attachments, and web accesses. Spam protection mechanisms include, for example, signature definitions.", "external_references": [ { @@ -231172,7 +231172,7 @@ } ], "id": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "modified": "2021-01-06T18:28:39.902Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Spam Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231183,7 +231183,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.903Z", + "created": "2021-01-13T01:50:49.020Z", "description": "The information system checks the validity of [Assignment: organization-defined information inputs].\nChecking the valid syntax and semantics of information system inputs (e.g., character set, length, numerical range, and acceptable values) verifies that inputs match specified definitions for format and content. Software applications typically follow well-defined protocols that use structured messages (i.e., commands or queries) to communicate between software modules or system components. Structured messages can contain raw or unstructured data interspersed with metadata or control information. If software applications use attacker-supplied inputs to construct structured messages without properly encoding such messages, then the attacker could insert malicious commands or special characters that can cause the data to be interpreted as control information or metadata. Consequently, the module or component that receives the tainted output will perform the wrong operations or otherwise interpret the data incorrectly. Prescreening inputs prior to passing to interpreters prevents the content from being unintentionally interpreted as commands. Input validation helps to ensure accurate and correct inputs and prevent attacks such as cross-site scripting and a variety of injection attacks.", "external_references": [ { @@ -231192,7 +231192,7 @@ } ], "id": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "modified": "2021-01-06T18:28:39.903Z", + "modified": "2021-01-13T01:50:49.020Z", "name": "Information Input Validation", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231203,7 +231203,7 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:39.904Z", + "created": "2021-01-13T01:50:49.021Z", "description": "The organization handles and retains information within the information system and information output from the system in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and operational requirements.\nInformation handling and retention requirements cover the full life cycle of information, in some cases extending beyond the disposal of information systems. The National Archives and Records Administration provides guidance on records retention.", "external_references": [ { @@ -231212,7 +231212,7 @@ } ], "id": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "modified": "2021-01-06T18:28:39.904Z", + "modified": "2021-01-13T01:50:49.021Z", "name": "Information Handling And Retention", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231224,7 +231224,7 @@ "x_mitre_priority": "P2" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.022Z", "description": "The information system validates information output from [Assignment: organization-defined software programs and/or applications] to ensure that the information is consistent with the expected content.\nCertain types of cyber attacks (e.g., SQL injections) produce output results that are unexpected or inconsistent with the output results that would normally be expected from software programs or applications. This control enhancement focuses on detecting extraneous content, preventing such extraneous content from being displayed, and alerting monitoring tools that anomalous behavior has been discovered.", "external_references": [ { @@ -231233,14 +231233,14 @@ } ], "id": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.022Z", "name": "Information Output Filtering", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", "x_mitre_priority": "P0" }, { - "created": "2021-01-06T18:28:39.906Z", + "created": "2021-01-13T01:50:49.023Z", "description": "The information system implements [Assignment: organization-defined security safeguards] to protect its memory from unauthorized code execution.\nSome adversaries launch attacks with the intent of executing code in non-executable regions of memory or in memory locations that are prohibited. Security safeguards employed to protect memory include, for example, data execution prevention and address space layout randomization. Data execution prevention safeguards can either be hardware-enforced or software-enforced with hardware providing the greater strength of mechanism.", "external_references": [ { @@ -231249,7 +231249,7 @@ } ], "id": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", - "modified": "2021-01-06T18:28:39.906Z", + "modified": "2021-01-13T01:50:49.023Z", "name": "Memory Protection", "type": "course-of-action", "x_mitre_family": "System And Information Integrity", @@ -231260,56757 +231260,37075 @@ "x_mitre_priority": "P1" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--524d14da-10bd-4636-9d7c-fa113fccf1cd", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--5dfdde4e-7b84-4447-ad7c-b3fca037ae46", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--0544c420-a51c-4eb2-86fa-0f915fbaf34f", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--0933758d-b37f-4b6d-856f-0475f62b6e7a", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--78808e3c-a0c4-4502-8349-a073f951e3c1", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--d7a7d73b-8a4f-43b2-8146-d02aade10de1", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--13fad715-8eb8-448e-8edc-1057ea918910", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--7386085f-64c0-4efd-aa6f-0f61f9de334b", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--daea9b13-5d55-4de9-b0f9-58d44b9ae1b8", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--6b6ca108-05ca-4f68-8a2a-af4ac0238c0e", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--a47cda8c-2761-4044-8380-0259fd4e83ff", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--326c8894-1a36-4be8-8484-085be16e7e82", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--05220038-1046-48aa-8267-9ef1af0c7f3c", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--338a3145-b978-40c7-b728-3438905283c5", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--a5d3d24d-0223-4022-954a-83959c2665ef", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--c2f8f668-941f-4332-8aaf-0f9a744f151a", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--a95a32ab-075f-41f8-82cb-d93a6a79eff4", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--9b180ef6-a3f3-44a5-9f78-73887da29d7e", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--626db871-5246-46c8-8b40-f602587b5a38", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--4a207090-d41b-493a-bf45-50fc77e72916", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--b9059dc2-343b-4934-967e-82d61ea04371", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--0a89d084-0676-4a1a-8687-55645baaa83b", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--2b57f79a-58fe-4504-92d6-474b62016ddb", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--76e70d4a-1149-48b3-bf20-c7bcf8712d3f", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.520Z", "id": "relationship--5ce52437-8796-4c52-a497-649f7d55bd72", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.520Z", "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.260Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--e6276163-61ae-4548-adab-307b82ef3271", - "modified": "2021-01-06T18:28:41.260Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.260Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--eaa37a0a-3193-49c3-ae00-1eac3b4eef57", - "modified": "2021-01-06T18:28:41.260Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--97b89cc5-7185-496e-a7b9-6ee87f9dcd44", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--1ba8d8f1-31df-4cd6-aa06-6e1cd13b9a65", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--7f6de78a-4196-4cba-b810-770815c4cd13", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--7138a317-9add-4625-a361-cdf55665facf", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--0e0cb589-de92-4c2f-9572-867343430033", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--431aa8f1-c18d-4dc9-a103-8db470a9e557", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--4f5db8f7-38f9-46c3-808e-8d1444d9bfa2", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--69e53e00-112a-4e4d-ac1d-51d4704c4fd1", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--43e010c1-3e80-4a77-b532-3d90acb9c863", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--e1f86682-5b7c-4476-9849-2b98fd756a3f", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.263Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:41.263Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--84ff810b-888c-4ff5-b8ef-8e01ff72b01c", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--33c431ce-ac1b-47d3-b841-4ce178cfb132", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.265Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--8f08fd61-06f7-4a69-a2de-dd77059011f2", - "modified": "2021-01-06T18:28:41.265Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--79ba1107-96f2-4324-b547-7ae9a3760aa3", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--b87774cc-526a-4979-8332-4b9556b7adc1", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--55868cac-d09c-4813-8c17-60066fc8b603", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--9dd0e74f-3d04-45c8-b5ac-fa5ac46c679e", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--5d980f58-6f37-4c90-b72b-c7d353dd9e26", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--255adae6-4658-4747-b6bc-a5ca6c2b32df", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--58fc17b8-c938-496c-86ef-567346ad1012", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--6a7e7dce-6b32-4e8c-9b64-f4e966b8ab47", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--11d87255-1c10-4afa-8d79-80c0a0afeb65", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--e9b1fd78-2697-482a-9a86-64fb0dabe753", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--82394a14-bf93-4c09-af4e-8e4bd26bccfe", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--4a4add5c-7c1a-451b-a7bc-d7bc585f97cf", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--c83a1a89-6cac-4f82-b5b2-21479298030f", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--d8cdb86d-21bb-4cf1-92b4-b245e833dad5", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--a04f35ca-8178-47c2-8890-61cad498ff27", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--d4b0c3a7-9800-40e8-b6b8-2f6c30ac438d", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.272Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.529Z", "id": "relationship--e55f2175-f5ff-42a0-bc4c-a7e1d553965c", - "modified": "2021-01-06T18:28:41.272Z", + "modified": "2021-01-13T01:50:51.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.273Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.529Z", "id": "relationship--6c789fad-0139-423c-ac9e-041ee105bb47", - "modified": "2021-01-06T18:28:41.273Z", + "modified": "2021-01-13T01:50:51.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.274Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.530Z", "id": "relationship--ee9acb10-cf11-42b0-9462-06cf4d3d1153", - "modified": "2021-01-06T18:28:41.274Z", + "modified": "2021-01-13T01:50:51.530Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--d5b70112-4b78-4bab-b868-3e6fbdd41adc", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--7c135a15-9b9f-4438-97c7-69d85774a639", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--e6c1ee8b-74e6-4d93-93c6-23784252cec9", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--641322b8-707a-4454-8268-505646af5c09", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.276Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--5916a3ee-d9b1-4bcb-b8e0-385b126f896a", - "modified": "2021-01-06T18:28:41.276Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.276Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--dba82b23-b216-4bc0-8017-9da0362aaec7", - "modified": "2021-01-06T18:28:41.276Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--cde1aa43-c993-4754-ae0c-604e92fd6ddf", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--5e302437-98dd-4751-80f7-63ceb77aab4d", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--c208c3cb-017c-424a-ad2c-19c45ea8fdee", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.278Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.533Z", "id": "relationship--eef86f0a-99c9-4612-918f-a4741b1c6980", - "modified": "2021-01-06T18:28:41.278Z", + "modified": "2021-01-13T01:50:51.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.278Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.533Z", "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:41.278Z", + "modified": "2021-01-13T01:50:51.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.279Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.534Z", "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:41.279Z", + "modified": "2021-01-13T01:50:51.534Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.280Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--7bc9a679-c3ff-4cca-bd97-2041eff9ad89", - "modified": "2021-01-06T18:28:41.280Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--987828e6-25a6-40b0-a085-c252b2a93cc9", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--da918df2-ae58-4317-8d51-280bbdcbd4f6", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.282Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:41.282Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.282Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--bdb744dd-dea2-4c02-bef1-2a231cb03f4f", - "modified": "2021-01-06T18:28:41.282Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.283Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:41.283Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--088ba60b-98f1-45da-86c2-fb2a6663ba46", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--e3550930-fc87-42d1-9a58-c132af707837", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:41.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--88eae706-58d3-49d2-897c-77c44e92bac6", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.286Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--ca12d7e5-0c28-411d-88b8-22575c6445d3", - "modified": "2021-01-06T18:28:41.286Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.286Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--9c929bbf-e489-4f1a-8949-0a9c20f098b4", - "modified": "2021-01-06T18:28:41.286Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--bf26bf8d-c9b0-48d2-bd16-900f5dcc9470", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--8b8699d3-c6f4-46c9-b6e0-cb59f6674549", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--2d03dd06-9be0-4a2b-8a2d-5998468c6015", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--3c26cd38-9bb3-4f19-8677-198ecac6fb8e", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--da4ea6b2-b159-432d-b1c0-84c5affd26fc", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--dbebf656-c22c-4acd-b11a-c06cbeb2e720", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--8bd55ee2-7322-496c-a012-e8cc2421eef9", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--f7f4d6fe-ce51-44ea-9887-330285e599b6", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--fbcdd028-a157-419a-af7d-7410b0645ac4", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--120fb7d5-74a3-4e12-958b-00e2efd2b0eb", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--cd352ead-32fa-4524-b31b-add76f7175a4", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.291Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:41.291Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.291Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:41.291Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.292Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.292Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.292Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:41.292Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:41.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--42d03166-40e3-4ce9-96eb-f3e7e6b50f57", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--7c54c514-377a-426e-a993-b44568d6da3a", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--51107fe1-a080-49ba-a6f8-066d2e239d43", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.298Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:41.298Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--ed7a35bd-089b-4511-b3cd-62720e032611", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--cbc164c3-c34d-4fc0-a084-d15ce86554f8", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--1ca9e2a4-57d3-4413-99b4-2fbdbd3ad0bb", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.301Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.546Z", "id": "relationship--025baca2-78a8-4b60-a5b5-92a150e2b19e", - "modified": "2021-01-06T18:28:41.301Z", + "modified": "2021-01-13T01:50:51.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.303Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:41.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", + "created": "2021-01-13T01:50:51.548Z", "id": "relationship--310e0b8c-bfa3-4b53-ba42-5da8eb07cc59", - "modified": "2021-01-06T18:28:41.304Z", + "modified": "2021-01-13T01:50:51.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.305Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.549Z", "id": "relationship--ff613865-8575-4b55-9c7d-f82c67a27ed6", - "modified": "2021-01-06T18:28:41.305Z", + "modified": "2021-01-13T01:50:51.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.306Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.549Z", "id": "relationship--f7839f3a-324a-4652-822a-d23d1afa5d0d", - "modified": "2021-01-06T18:28:41.306Z", + "modified": "2021-01-13T01:50:51.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.307Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.550Z", "id": "relationship--966d8c9b-af66-44e7-adef-597479381516", - "modified": "2021-01-06T18:28:41.307Z", + "modified": "2021-01-13T01:50:51.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.308Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--48eadbfa-982d-4fcf-a391-f16894679fa0", - "modified": "2021-01-06T18:28:41.308Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.308Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--f5f4a6eb-fc49-422a-bff7-87c1e3b6f42b", - "modified": "2021-01-06T18:28:41.308Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.309Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--27bda1c7-8049-47c9-b807-b998539895b4", - "modified": "2021-01-06T18:28:41.309Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.309Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--42cc05f0-b702-4f39-adf6-fbaa52690087", - "modified": "2021-01-06T18:28:41.309Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.310Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.552Z", "id": "relationship--3056cd2b-124d-4a0f-8bf1-ac37cc12b5cf", - "modified": "2021-01-06T18:28:41.310Z", + "modified": "2021-01-13T01:50:51.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--b98e1f8e-821a-4384-bd75-37bde2d23e0c", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--3f72ff48-6909-4b8b-a8f8-f59c5ac9dc3f", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--d1009198-3192-416e-be03-e15b1cd39c9b", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.312Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--9e2758bc-9ffb-4f84-b240-611e32c98413", - "modified": "2021-01-06T18:28:41.312Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.312Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:41.312Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.313Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--95e80603-ca55-459d-9909-c5615ba66525", - "modified": "2021-01-06T18:28:41.313Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.313Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--e5f02d01-3412-49ca-aa10-538ca0a17f42", - "modified": "2021-01-06T18:28:41.313Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--7ccaf949-3d6d-4591-bd3a-7deff7cd3663", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--68d4a479-72f8-40da-9fbb-0d0765d70b69", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--0c65f585-d066-4b16-9980-e1b16b4c2331", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.315Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.556Z", "id": "relationship--04be455f-a60e-4d6d-bb35-077f890ee962", - "modified": "2021-01-06T18:28:41.315Z", + "modified": "2021-01-13T01:50:51.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.317Z", - "description": "Account Management, ", + "created": "2021-01-13T01:50:51.557Z", "id": "relationship--985acde3-b4aa-427c-81f6-6df43216a248", - "modified": "2021-01-06T18:28:41.317Z", + "modified": "2021-01-13T01:50:51.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.318Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:50:51.558Z", "id": "relationship--0b3a0fb5-36b6-42b3-96d8-5a9dce46ac99", - "modified": "2021-01-06T18:28:41.318Z", + "modified": "2021-01-13T01:50:51.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.319Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.558Z", "id": "relationship--7ade19cd-4cde-46cb-bef1-c9e9d5bad962", - "modified": "2021-01-06T18:28:41.319Z", + "modified": "2021-01-13T01:50:51.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--049c85a0-db49-47e4-b381-e1a156343366", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--2bc93b37-3253-4fc7-b823-400065326116", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--9989b7bd-f9d2-4205-8eb6-d3ef4a5331cb", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--a4e481fb-75b4-4bb0-9cd4-b5139a707979", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.321Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--9a8253b2-6a7b-4734-87fd-d1dad0ca8bdc", - "modified": "2021-01-06T18:28:41.321Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.321Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--5320f531-8e22-41ba-b0d4-6e616c969e1b", - "modified": "2021-01-06T18:28:41.321Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.322Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--5e01c5f9-e4c9-4e0e-8ff7-0f240a0dacb9", - "modified": "2021-01-06T18:28:41.322Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.322Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--c3780403-411c-40e9-a6ea-1ad9b5885696", - "modified": "2021-01-06T18:28:41.322Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--93154c94-1f5d-4df3-8752-7f92c94c8d70", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--988f259c-c637-45e7-b330-15692e4b29b3", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--c2eae2e4-4230-459a-807d-af9b266a3923", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--2c340be9-3174-4ceb-95e1-8c85fceed4fd", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--71eebd8b-27da-4c4e-bf8c-11df4571f0f7", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--6adefa66-af0c-476b-9696-b495057321ce", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.325Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--a7bf759e-b80a-4f31-8c09-099fbffa41bc", - "modified": "2021-01-06T18:28:41.325Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.325Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:41.325Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.326Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:41.326Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--ca778c05-a05e-4903-9c57-1e8082cb7feb", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--45401765-2174-4672-8653-5c2119c9f5d4", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.328Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:41.328Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.328Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:41.328Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--aebd8610-3415-4fda-b30d-747a7058e8b7", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--706ea452-7d39-4532-83b5-9aff4850849f", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--f5c5df5e-7c22-4e4b-9f3f-b2ce14f11cb0", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--681631b3-dfdc-4079-89f8-344a1e361933", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--02c86be2-11e2-4d87-bda9-b0472902ca5b", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--eb74f6dc-7ad8-4cbb-9c4f-d43069faa929", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--edde791f-ec18-4bad-a139-b78dd7a7ca26", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--bf0b14cd-3b3a-470b-a4c3-137e8d991fa1", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--daf185c8-8bfb-4077-a1d2-f981adc56117", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--67fdc1b7-d794-4996-a658-b53e6ef8f9e6", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--912b3150-ed98-4345-81c4-ea577612cb2c", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--2cf8fee1-6342-4def-b754-49efa1999273", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--9f91e67b-22c9-45f7-93f7-a73ad96ddbb0", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--1b6a79bd-5383-415d-8c60-1f678265b2f3", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--b7ccc913-207a-472f-b2bf-ca9dfa41ac5a", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--bbc81aa1-8d99-4c8a-8f5e-2cd14f9869d2", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--fe3b9a9a-69fa-418e-9aaa-13faa71c192e", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--cdc4e75b-3b8a-4ec9-87f3-d0fc0ef0d8da", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.335Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--a6632db0-d0ad-45cd-b3de-23ffdd301d60", - "modified": "2021-01-06T18:28:41.335Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.336Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--9d1358b4-d4cd-4fe2-8376-207b725abc89", - "modified": "2021-01-06T18:28:41.336Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.336Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--1f8bd37c-bb54-4e3c-ba01-c0f4d1df05c5", - "modified": "2021-01-06T18:28:41.336Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--ecb573ba-b70b-4f6a-9550-0ae71d7c5552", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--08985481-67ab-45b0-8654-fc183711b425", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--a535f899-7b71-49c7-a1d4-6965179c1580", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--c1af77f2-b582-407f-944b-d4509316cad1", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--efd04ad4-b0c7-4578-8374-4546490fb74d", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--2dd977fc-8bd8-44f1-84d8-d54f220be777", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0def5210-3189-4625-84fc-236a97a54050", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--42cc528f-f076-4596-b9e3-c2850a3a123d", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0acf4fab-1bce-49f1-a945-1ef19cfc874e", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--8653c39c-4a4a-4588-917d-f5be9ab7ee6f", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--40547ead-1d57-41a3-83c0-7ce082ce84d4", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--3e6a29b0-f0b5-4ab8-9554-eea0aa3ca3f3", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0a2cc091-3985-42fb-8e2e-6dad1b8eb720", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--c85deb66-98e6-4feb-bb95-1546fd79708f", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--a99473b3-402d-45a6-b817-a49eba982871", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--862ec38b-ea68-409e-99de-1b54f76d4f2e", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--cd114be2-ac9d-47d8-b9d9-fe080e0232b0", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--cf6bc76f-2fab-46f5-b85b-54213606372a", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.342Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--f859bc3a-5811-4805-9e4d-12eb1a442e76", - "modified": "2021-01-06T18:28:41.342Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--4d0289b0-ce4d-4912-ad67-38b649b57ab5", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--fa7f8405-65ca-4e55-bb57-9186eb4d139c", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--4bccf3a1-40bd-423f-b0da-870a9dfbb9b8", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--6bcf5635-779b-4228-82e6-8c7e0ac08f37", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--8a2d7038-928e-4bc7-8e51-226c3922a3d6", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--4663250d-6195-4c2d-8acc-2e3f32900e63", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.345Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:41.345Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.345Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--703c0e03-6a13-4884-8cd4-8d2568e479fd", - "modified": "2021-01-06T18:28:41.345Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.346Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.574Z", "id": "relationship--9054ee20-c7b5-49da-ab47-0285596f3c68", - "modified": "2021-01-06T18:28:41.346Z", + "modified": "2021-01-13T01:50:51.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.347Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.575Z", "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:41.347Z", + "modified": "2021-01-13T01:50:51.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.348Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.575Z", "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:41.348Z", + "modified": "2021-01-13T01:50:51.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--07ec7e20-d937-4d66-a694-9895671c7ff2", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--ead3731b-171c-43f2-8288-dda59326eec4", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--0637c8dc-388f-498d-bd92-288925d1b02d", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--6fde4b7c-9465-46c6-ab34-1c0f9475bc55", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.351Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.577Z", "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:41.351Z", + "modified": "2021-01-13T01:50:51.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.352Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.577Z", "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:41.352Z", + "modified": "2021-01-13T01:50:51.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.354Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.578Z", "id": "relationship--ccb5393e-1989-487d-9d44-95fef73b9dc6", - "modified": "2021-01-06T18:28:41.354Z", + "modified": "2021-01-13T01:50:51.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.357Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.579Z", "id": "relationship--29c9e42e-fb7c-4440-8148-b47f1eec21d9", - "modified": "2021-01-06T18:28:41.357Z", + "modified": "2021-01-13T01:50:51.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.359Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:50:51.579Z", "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.359Z", + "modified": "2021-01-13T01:50:51.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.359Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:41.359Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.360Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--b155ced1-ea31-47a6-9758-c1c218cfadee", - "modified": "2021-01-06T18:28:41.360Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.361Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:41.361Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.363Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.581Z", "id": "relationship--476682dc-ebc4-4fb5-ab98-328d03b06fdf", - "modified": "2021-01-06T18:28:41.363Z", + "modified": "2021-01-13T01:50:51.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.365Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.582Z", "id": "relationship--2241bf7b-9c39-4ada-8d7e-e1dc374d2423", - "modified": "2021-01-06T18:28:41.365Z", + "modified": "2021-01-13T01:50:51.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.366Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.582Z", "id": "relationship--b30db6f4-14a2-49f7-9333-a0222644dc28", - "modified": "2021-01-06T18:28:41.366Z", + "modified": "2021-01-13T01:50:51.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.368Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--5a008fc9-d555-4188-947d-3220ac8dfda9", - "modified": "2021-01-06T18:28:41.368Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.368Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--7b4caa87-22e4-4a72-9547-691969a3cfe4", - "modified": "2021-01-06T18:28:41.368Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--cd208dfa-d4d3-48f9-8609-8d5d48b08c92", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--383c6344-b987-45b1-94b3-75bb6e3194c5", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--f7e977f6-e79b-4d55-9add-256b22b9c627", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--d110af3d-baee-4e1a-9705-082819a016fc", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--faa9de7f-dec7-47b8-8d1d-35f76b044738", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--db54294b-e768-49cd-9498-6d3acf496220", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--71095018-2cf2-4115-a2d4-b9502db558f4", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--81c3a0fb-4555-4665-b096-7676c63f06dc", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.371Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--837934b5-d1b0-4b9c-98ba-3c7ee61f47e2", - "modified": "2021-01-06T18:28:41.371Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.371Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--585ab51b-a59b-428a-965d-9f6b800bbe5d", - "modified": "2021-01-06T18:28:41.371Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.372Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--cf5e4550-7734-46db-aa43-3b4b84b16e2b", - "modified": "2021-01-06T18:28:41.372Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.372Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--70e337bd-b057-4366-9663-f59a52b30f76", - "modified": "2021-01-06T18:28:41.372Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.373Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--ee02acdd-ed91-412b-a31c-c49123992791", - "modified": "2021-01-06T18:28:41.373Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.373Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--caab116b-2943-42f7-adb5-9fbdd374b042", - "modified": "2021-01-06T18:28:41.373Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.374Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.586Z", "id": "relationship--3bc78f76-ac1d-4cea-a5bd-24cdd415d4bd", - "modified": "2021-01-06T18:28:41.374Z", + "modified": "2021-01-13T01:50:51.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9dd0e74f-3d04-45c8-b5ac-fa5ac46c679e", - "modified": "2021-01-06T18:28:41.375Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.586Z", "id": "relationship--1b17e7e5-8a57-45df-8a38-f97ef39bd417", - "modified": "2021-01-06T18:28:41.375Z", + "modified": "2021-01-13T01:50:51.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:41.375Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.377Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:50:51.587Z", "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:41.377Z", + "modified": "2021-01-13T01:50:51.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.377Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:50:51.587Z", "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:41.377Z", + "modified": "2021-01-13T01:50:51.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:41.378Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--cc566247-0f2f-4f98-91a1-9fc3e3721144", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--099309d5-29bf-4236-ba76-45a1144bbbc5", - "modified": "2021-01-06T18:28:41.379Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:41.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--082007e1-06d2-444d-bfe2-7783054a8bd3", - "modified": "2021-01-06T18:28:41.379Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:41.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.380Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:41.380Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.380Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:41.380Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.381Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--3fa2d61c-1517-45b3-96e8-fa1d2fe2caca", - "modified": "2021-01-06T18:28:41.381Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.381Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:41.381Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.382Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:41.382Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.382Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:41.382Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.383Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.591Z", "id": "relationship--09c3f201-a35e-4afc-8927-ab8bc1d78823", - "modified": "2021-01-06T18:28:41.383Z", + "modified": "2021-01-13T01:50:51.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.384Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.591Z", "id": "relationship--4c566c4c-c21a-4c21-a06a-07d9deb62ba1", - "modified": "2021-01-06T18:28:41.384Z", + "modified": "2021-01-13T01:50:51.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--fdb419ff-57eb-4b03-84c5-450f41628c04", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--db5103f0-aa5f-4912-b669-8aeca8eed5bc", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--3c2207ac-a26a-4578-a6e4-a795410c8833", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--5363c89a-6f80-4a5d-9a5c-3cccd39976a9", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--98b10b78-86cc-4e1a-8096-e641838ec403", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--344da011-86ac-433c-bad4-f0e3c7b234ea", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--3cedd134-7cdf-4e45-89b5-66673d71c464", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--2535d843-55cd-4445-99fd-2440a227020e", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--f3058437-6b49-4def-8b8e-f7a2322642db", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--50cdaaec-1842-46cd-ba97-3873f9bec666", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.390Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:41.390Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.390Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:41.390Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--cea89952-63f9-4ede-ab2d-891d946a1dac", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--fe4bd807-eae4-4c61-8477-e260023c33bb", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--de29bbd7-8b61-4d5d-8a28-5dd95359981e", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--b74e4c72-a7d8-4bac-b790-81596ea035b4", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.392Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--28148035-4e92-41f8-8ee8-a0a231ed5820", - "modified": "2021-01-06T18:28:41.392Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.392Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--75a893ff-7442-45a5-93c8-106c9a13e4c2", - "modified": "2021-01-06T18:28:41.392Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.393Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--0dcd4589-d204-47de-9638-97dcc4e4d21c", - "modified": "2021-01-06T18:28:41.393Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.393Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--6125938a-3713-4cba-a8c4-c28ac33ac33a", - "modified": "2021-01-06T18:28:41.393Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--a3a47645-d85d-4f2d-a59d-a05794abd26c", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--176e4840-8df4-4952-9cd1-af72215c8a52", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--6ab9fc4b-07ec-4659-b4cd-37325cee3dd2", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--15066b22-1735-472e-9aed-9b8c47ec21d7", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--4a789516-e876-480f-8662-ca90dc52963c", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--cfdfdb3c-e0c5-4593-a0aa-d0b2b71ae1c5", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--8c8d36e5-8304-4ed5-a64f-96b187565955", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--29d37714-06fd-4873-8673-c21368896284", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--861d5753-b10f-44c7-8f44-42f480cf4c6c", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--ee663b1f-01d7-4f21-9262-0bea1a5c5713", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--f60b12fb-e623-49af-b25f-2f962be0fecd", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--dda6174f-98fb-47f3-830e-8881ae1b2369", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--e4c0c4a4-2f9e-4080-a7e4-d89d40621012", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--22ff8044-539d-4c81-9a59-f241a688ddc2", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--2d20d1d2-530e-4337-ac81-82aab8f9f5d8", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.398Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--ac4e304d-6c1f-465c-b86f-863b5562e553", - "modified": "2021-01-06T18:28:41.398Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--1e4c8852-62a9-4abb-a149-cd05b0c14090", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--d26b1738-e17c-4832-af3e-1be2b1bf1c50", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--f7a45fb7-d281-498c-b6ec-ebed5c808631", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--b3d76d60-e5d5-4ff0-afd9-ad602e1dfa44", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--52590fc9-9517-46b6-9768-ba13cb20fe12", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--fa4810c0-1ad8-465c-8375-d86210894d9c", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--c38183a3-6664-48e5-a5a4-9153cd9336d6", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--26bd3e30-bd60-4213-b9a4-87cd9aca731c", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.401Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--b4b5036b-ad6f-4b7b-91bb-78568f20b8c9", - "modified": "2021-01-06T18:28:41.401Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.401Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--29ed9123-dd6a-4cea-9393-719c0f04cf84", - "modified": "2021-01-06T18:28:41.401Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.402Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--ff5a098a-65b6-47b4-85c5-26774fae31e9", - "modified": "2021-01-06T18:28:41.402Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.402Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--0c672987-6a45-481a-acbb-34f6819fb24f", - "modified": "2021-01-06T18:28:41.402Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.403Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:41.403Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.403Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--0ead6392-dd34-4235-81a7-d79f27e4f82e", - "modified": "2021-01-06T18:28:41.403Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--aff786e2-4a91-48d8-b8b0-ae93007b6411", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--86865f42-1fb8-43bf-a101-fe50d8c21636", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--538fc01b-05e6-4585-8993-b934a73ab435", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--c81b9290-28a4-48b1-b02a-d484fb71d307", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--2f2c40c6-6dee-48ad-bb44-3e5b8d1577e1", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--f78f256d-000f-4de7-bf95-b1d731d6982c", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--4c2976fe-6609-4539-b4e6-012bdcd50945", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--e5e97119-2f5c-4252-a804-c3a060dbc04d", - "modified": "2021-01-06T18:28:41.406Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--e3164bcc-554b-4625-bdce-4ec4ba50c7c2", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--de026ce1-9ab7-44ce-a4a1-278381b9d05b", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--1f1b885b-359a-4072-a800-e117708b5377", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--0819e476-dfd4-47f9-853f-ec537614e53e", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--8c6a4d19-5493-4d3a-8744-f59dc4043c16", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--12d4b824-c076-492c-816c-43682f0c4cb5", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--727e92cd-8b5f-49a9-840a-2360bfa86311", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--467b5685-4673-4759-b470-0e59838782f7", - "modified": "2021-01-06T18:28:41.410Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--1341c25e-2c85-4932-a244-ac392b770dbb", - "modified": "2021-01-06T18:28:41.410Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.411Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.608Z", "id": "relationship--a9ac73e0-8001-4d47-9338-73a21e791d99", - "modified": "2021-01-06T18:28:41.411Z", + "modified": "2021-01-13T01:50:51.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.412Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.609Z", "id": "relationship--10d50932-cf37-4b00-bc5a-fd67e2992fb3", - "modified": "2021-01-06T18:28:41.412Z", + "modified": "2021-01-13T01:50:51.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.413Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--92e46290-1a1e-4bc9-9790-877f3f0afdc6", - "modified": "2021-01-06T18:28:41.413Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.413Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:41.413Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--f91d2d17-f523-41bb-b38e-31c8d1f04353", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--af550742-cc28-4369-a6ce-9f09a0e8d12e", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--4a94d079-5482-4075-9bbf-509b15c48d7a", - "modified": "2021-01-06T18:28:41.415Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--a5521b36-114a-49c4-97c0-6c8123295887", - "modified": "2021-01-06T18:28:41.415Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--7410fcdd-0d9b-46d6-94ee-64581c4201a9", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--bde4980f-c775-4b09-b62c-dc95637d7ff9", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--bd2ad0f0-7d39-4b12-a7a0-b2f43124c5d0", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--fff5fe25-44f9-4fbb-850d-4f796680b54c", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--077c7baa-066a-4f0e-89c1-a7f9a495b05f", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--2eb7ae6a-186d-444b-89d5-018f172320f5", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--8aa0e041-d8b6-405a-8211-6744bd677e35", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--47af864f-76af-4b02-bd43-df9aaf47f5f6", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--90a065ae-7d35-4cc6-86c5-cd4b51e7a4fd", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--2e6d8f09-002f-4cce-abc7-0585a412a45f", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--f75b8e4f-4141-4ea4-91e2-0feab2dc4978", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--4c49c778-6d54-4371-a237-1e60a5f1fd84", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--0b201002-86d1-4267-a398-766e695e62e4", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--74c4043b-40f5-4f9c-a60a-b938762f358b", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.419Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:41.419Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.419Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.419Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--7be7d278-9610-4b6f-b5d5-100fbbc6de09", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--ea97ea6c-ab42-4da5-9409-3ff41a3d1a6c", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--c5392917-8265-46d3-94f2-5f5d1bcff28e", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--30e4633f-e101-4dbd-9e75-3a34287a032b", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--97dcb7f9-d75d-42db-8b71-f8aec7c9a05c", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.421Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--85529de5-2354-4b3e-b217-4010096c970a", - "modified": "2021-01-06T18:28:41.421Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.421Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--f025071b-e0b1-4e48-be5b-60115963cbf1", - "modified": "2021-01-06T18:28:41.421Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--d9c0df34-bc61-4cc5-bdef-2e8fecf169a5", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--38828dc6-2f6e-4a2e-b6a5-2946efe404ea", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--c9bd0e9a-e9c9-47f5-a03d-0d3c0924ccb7", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--37c025aa-01c9-4dfd-ac7c-c6587540835b", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.423Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--2899eabf-1c83-4045-b80f-a6dd003a0dcd", - "modified": "2021-01-06T18:28:41.423Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--cc7cc633-5af4-414a-a98e-40489e28122d", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--4a972afb-8825-4d75-9115-a62fe1f87ff4", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--0d0d9d87-1ce1-4f5e-93cc-070fb687a6be", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.426Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.617Z", "id": "relationship--333af2dc-2655-41c3-9b0a-50cf84458060", - "modified": "2021-01-06T18:28:41.426Z", + "modified": "2021-01-13T01:50:51.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.427Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.617Z", "id": "relationship--d5e145d7-adfb-4716-9dc9-f3f3260dee0d", - "modified": "2021-01-06T18:28:41.427Z", + "modified": "2021-01-13T01:50:51.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.427Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.618Z", "id": "relationship--a98b16bf-5921-4841-b1a2-607ca704e184", - "modified": "2021-01-06T18:28:41.427Z", + "modified": "2021-01-13T01:50:51.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.429Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.429Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.430Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.649Z", "id": "relationship--7342e29b-5e2b-45db-9aca-5eb2db605886", - "modified": "2021-01-06T18:28:41.430Z", + "modified": "2021-01-13T01:50:51.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.431Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.650Z", "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:41.431Z", + "modified": "2021-01-13T01:50:51.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.433Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:41.433Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.434Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.652Z", "id": "relationship--bfbd6c2a-4dc6-4f3f-982b-a8d4d9956356", - "modified": "2021-01-06T18:28:41.434Z", + "modified": "2021-01-13T01:50:51.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.435Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.653Z", "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:41.435Z", + "modified": "2021-01-13T01:50:51.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.653Z", "id": "relationship--91e3888b-cae1-4d51-b454-bd15d9e6c5f4", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--3bf5b987-b09b-4e65-bf35-629a373cd189", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--85107aae-f980-40f1-a8ff-404be6078999", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--9ef6d146-7baf-4f41-8871-298cff991853", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.438Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--020fc378-843d-4316-850c-b19df028d401", - "modified": "2021-01-06T18:28:41.438Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.438Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--7a7dad9f-03ad-4ef0-b56c-23fc8c6e43ab", - "modified": "2021-01-06T18:28:41.438Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--03895cdb-773f-454a-b1e0-023fb66b2817", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--f77f477d-534a-4d66-a8bb-b0f92b25ec21", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.441Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--eb17a6a1-0ace-4d8a-a22f-a9fe7c7cea0f", - "modified": "2021-01-06T18:28:41.441Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--bd358cb0-0b10-449c-b7ee-d8d1abf4f803", - "modified": "2021-01-06T18:28:41.442Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--85448e89-c513-4ea0-8b21-ec21ce981066", - "modified": "2021-01-06T18:28:41.442Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.488Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--8b34f91d-05e3-4929-9bfd-768b9531043f", - "modified": "2021-01-06T18:28:41.488Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--e9cfb843-fdd8-43af-bbf1-e5bb241b04e2", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--2a71dd45-8a9d-4e2a-acbf-0e54789017f4", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--a2e3a301-8f7e-4f98-a25b-91b7c2b72509", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--b192bd04-3c75-4183-9f34-f68861822178", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--6216261a-c71c-404e-928d-f6e6a9d492df", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--78f43327-d3c3-4d8b-bb27-ae1ed1168524", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--b1e3aa8f-33ee-4e87-843d-a3bb5916572d", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--3f5f96bc-9eed-458a-8d53-68524873fd13", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--51efc053-6f21-4827-87de-3bbff017a742", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--72b30836-50d3-4ef3-bbf8-be20ba36c26c", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--766486a7-a9bb-4b83-8008-3e503ffa6b29", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.491Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--4b4d32e8-a9d5-4e24-9392-c9568d7effab", - "modified": "2021-01-06T18:28:41.491Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--c7289be7-4b9f-4eae-ae16-e3f7c7f49640", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--3d56f277-7a35-4caf-8fa1-27f0bf5a1f97", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--f03688e5-ca08-4035-91bc-40f8640837cb", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--dee24bb0-b664-4548-933c-f20068daf2fe", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.493Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--8de150b7-6331-4581-a5c8-024dada3ebdf", - "modified": "2021-01-06T18:28:41.493Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.493Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--3130eb74-7a91-4729-bd3c-3421adaea415", - "modified": "2021-01-06T18:28:41.493Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.494Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--448c8862-dc62-40d6-a4c4-6d39cf97130d", - "modified": "2021-01-06T18:28:41.494Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.494Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--4c65565e-f173-477b-8fd5-e082092df64a", - "modified": "2021-01-06T18:28:41.494Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--985acde3-b4aa-427c-81f6-6df43216a248", - "modified": "2021-01-06T18:28:41.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--c51bdd33-df88-46dc-ae36-f86884d2648b", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--1f3c8eb6-395c-429b-aee6-bc01214e389a", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--bb42d369-5de9-4289-a3af-b9eac67c605b", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.496Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.662Z", "id": "relationship--e129bb46-fa9c-402a-a5db-aa7c9370b601", - "modified": "2021-01-06T18:28:41.496Z", + "modified": "2021-01-13T01:50:51.662Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.498Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.663Z", "id": "relationship--38fa9004-0fbf-47dd-bbb2-e0116b9ebe52", - "modified": "2021-01-06T18:28:41.498Z", + "modified": "2021-01-13T01:50:51.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.663Z", "id": "relationship--d48c81eb-51a5-4687-bf79-1058b7731640", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--81c2f704-7a9d-4fa1-a798-08a50c6add2b", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--d1a56bed-362f-4833-95e3-7e284560b47d", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.500Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--33ef7b59-d79e-4114-9545-2eb9e3d2a887", - "modified": "2021-01-06T18:28:41.500Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.501Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.665Z", "id": "relationship--335f9e74-cea2-4cf0-a3bf-d5c677257499", - "modified": "2021-01-06T18:28:41.501Z", + "modified": "2021-01-13T01:50:51.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.502Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.665Z", "id": "relationship--0908f4b2-7b7a-4d92-b918-a457e60b4b12", - "modified": "2021-01-06T18:28:41.502Z", + "modified": "2021-01-13T01:50:51.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--aebd8610-3415-4fda-b30d-747a7058e8b7", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--706ea452-7d39-4532-83b5-9aff4850849f", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f5c5df5e-7c22-4e4b-9f3f-b2ce14f11cb0", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--892fe962-257e-48e0-9814-01efaedd6228", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--3411f2f9-462f-43e3-bbdb-f24cef37b3d3", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--34faa08f-16ce-4d43-9421-414ee039af82", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--0def5210-3189-4625-84fc-236a97a54050", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--42cc528f-f076-4596-b9e3-c2850a3a123d", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--0acf4fab-1bce-49f1-a945-1ef19cfc874e", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.668Z", "id": "relationship--c5428385-879e-4ffd-bff6-bd506499c94a", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--dd42798d-049a-402c-b186-5ebe9d2f5970", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--e2ee4219-6f79-4329-adde-0301d2faac05", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--edb0df8b-9ec0-40b5-94e0-5720ba9665a1", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.508Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--16425e57-eea3-4e69-8626-660d75d6e438", - "modified": "2021-01-06T18:28:41.508Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.508Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--8999094b-f2a9-4648-bf4f-444cac78beaf", - "modified": "2021-01-06T18:28:41.508Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--f649d5c3-4cab-4df7-b96f-9994907f6c34", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--d8165d3d-abad-49a0-aaa0-957b07a8cfc8", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--f825c2b9-ac53-481c-aa6a-695ae3cce15f", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--fc8f7147-a2ec-4bb9-9f61-6b137d2faacf", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.510Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.671Z", "id": "relationship--fdc35d57-8238-4d2f-b3fd-82315c77cead", - "modified": "2021-01-06T18:28:41.510Z", + "modified": "2021-01-13T01:50:51.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.511Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.672Z", "id": "relationship--6ceda5b3-b48c-431d-a6a3-e37e12ebd950", - "modified": "2021-01-06T18:28:41.511Z", + "modified": "2021-01-13T01:50:51.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.512Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.672Z", "id": "relationship--248564ad-8acb-4207-9782-1490d6f18dc4", - "modified": "2021-01-06T18:28:41.512Z", + "modified": "2021-01-13T01:50:51.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.512Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--9215090d-353c-4045-b126-0fa1d109c383", - "modified": "2021-01-06T18:28:41.512Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.513Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--00fff955-3cd3-43c5-ad80-031d032af016", - "modified": "2021-01-06T18:28:41.513Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.513Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:41.513Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.514Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--ad9e965b-b4b8-422f-884e-174e19ded319", - "modified": "2021-01-06T18:28:41.514Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.515Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.674Z", "id": "relationship--cb488b88-05f2-40ca-9c2c-de1a363c7ee8", - "modified": "2021-01-06T18:28:41.515Z", + "modified": "2021-01-13T01:50:51.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--07ec7e20-d937-4d66-a694-9895671c7ff2", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0637c8dc-388f-498d-bd92-288925d1b02d", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.518Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.519Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.676Z", "id": "relationship--f7338e94-a0c6-4fef-a01d-d516dfd151e9", - "modified": "2021-01-06T18:28:41.519Z", + "modified": "2021-01-13T01:50:51.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.521Z", - "description": "User Access Permissions", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.521Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.677Z", "id": "relationship--1cdea45b-d7d0-491c-a623-b6bb300aa1cf", - "modified": "2021-01-06T18:28:41.521Z", + "modified": "2021-01-13T01:50:51.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--bf7cfe75-20ed-4e64-9741-2bb86698ccb9", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.523Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:41.523Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.524Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.679Z", "id": "relationship--912ee5c5-1539-4ff5-8271-fdf81d6bfb85", - "modified": "2021-01-06T18:28:41.524Z", + "modified": "2021-01-13T01:50:51.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.525Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.679Z", "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:41.525Z", + "modified": "2021-01-13T01:50:51.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.525Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.680Z", "id": "relationship--acd8798a-167f-4ece-aabc-04d2adb28165", - "modified": "2021-01-06T18:28:41.525Z", + "modified": "2021-01-13T01:50:51.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.680Z", "id": "relationship--4ea3f401-d11b-4484-bf67-00d57a224b19", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--1a5135a5-893b-478a-879c-f3f0e3c38a63", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--02dc504b-b23d-4493-89a3-e37e7ad14c51", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.528Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--5d4cad38-1a48-49f9-bf26-54ffa517faa1", - "modified": "2021-01-06T18:28:41.528Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.529Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.682Z", "id": "relationship--71759600-496d-4fca-a810-357db14d5fcd", - "modified": "2021-01-06T18:28:41.529Z", + "modified": "2021-01-13T01:50:51.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.529Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.682Z", "id": "relationship--6562a581-b7dc-4316-9093-fc06bc454496", - "modified": "2021-01-06T18:28:41.529Z", + "modified": "2021-01-13T01:50:51.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--fb978752-d9aa-45d5-87ff-37b5de246be4", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--ec186cec-b93e-49d8-8a87-002a2f0c03aa", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--6626c47b-fa66-4d59-a531-508181b9aba5", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--baecf6de-abac-4811-ad93-c857a73f79b2", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.531Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.684Z", "id": "relationship--a605db1a-a976-4c37-ab43-8230df304651", - "modified": "2021-01-06T18:28:41.531Z", + "modified": "2021-01-13T01:50:51.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.532Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.684Z", "id": "relationship--638a2116-79ea-4f78-9609-96e8fca08901", - "modified": "2021-01-06T18:28:41.532Z", + "modified": "2021-01-13T01:50:51.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.533Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--e9d2abae-3004-4a66-bf21-08dd2cc73379", - "modified": "2021-01-06T18:28:41.533Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.533Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--e6a4fdd4-b9c6-46a1-ad21-fe9ff7c91a90", - "modified": "2021-01-06T18:28:41.533Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--040e50cc-b923-45d8-96ed-333007afec96", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--38309b7f-6d97-465e-b887-ad460a70743b", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--f6f4ea16-b7ef-4feb-9f3e-ec1ae467399a", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--dcc19e64-ef16-4ec7-99c8-9561ea1e96f4", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--d54eef8c-540e-4f09-bf86-ed27861d5079", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--7edace2f-90df-4c4c-93c8-4d68403a81d0", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--0fb5714d-9e45-47b0-bb42-1a873f4c8ee4", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--140320c9-34e0-4dbd-a5f3-78a0c27f538b", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--28116651-8c0c-4746-a8d3-f797a549d875", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--ab58a23f-bbea-4b85-9386-22a85400ff0a", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--6c5d874b-f9da-4d53-8c70-1082c3ce7ca7", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--77dfddb4-b1b4-4555-98db-27322fa6d197", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--3bb8ffd3-d390-43fd-b2e6-3f795a716af3", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--03e491f2-195f-48ba-8656-062ff15dc12a", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--db7d2671-298d-40b4-a025-b6fc98d281a8", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--cb67ebbe-f2f5-4b2a-af77-2662c1334366", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--eca0889e-87ac-45cf-84d0-964d8c1fb2c1", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--c1047e96-6026-4c7f-99d4-8e656b7070b2", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--6bebbd68-e413-467f-80cb-7c2f18b0aedd", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--622b8fc1-632a-4c1b-bb15-9c5213a4d776", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--1573bd1d-2500-4984-83ae-587716c2c1db", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.539Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--b086680d-6ae4-438c-9662-25d4ff0f83e0", - "modified": "2021-01-06T18:28:41.539Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--faccd1b9-0ac5-44ce-a18f-9af1d56b4f83", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--e30a1046-2df8-4957-9f12-dc380080cd38", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--1f9feb85-1143-4ac8-8c73-f9776dbfb6c3", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--3e453be5-8b97-4bb5-91ee-94a7795178fc", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--69a0f355-ff87-4694-a5eb-d3123aacb378", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.541Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--e62cd748-16fa-4876-93cd-17791c60d272", - "modified": "2021-01-06T18:28:41.541Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--38ee0da5-b9f0-4975-b350-11ab8ba003d8", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--2aee4f44-3794-415b-83c3-aa550a669f40", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--153b572b-6563-43fc-b371-3e77128ef2b7", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.543Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--77f5d653-ab6c-4593-aa6f-5e9009972cb0", - "modified": "2021-01-06T18:28:41.543Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.544Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.692Z", "id": "relationship--b52adc77-25e6-4331-b3a9-f29e3e8c0d84", - "modified": "2021-01-06T18:28:41.544Z", + "modified": "2021-01-13T01:50:51.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--1fefdd84-f71f-4c93-b936-eb23d6b19aed", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--d0fff8f7-1497-4208-8ecb-6b7b2b2cedfd", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--6dead381-4128-413a-950d-4b06f56bcb3d", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--e26c6074-3c27-4e3c-9f21-44e947f45082", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--5d7f4ac5-0fe9-43c5-8708-4f06104aaebb", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--fe6f54e9-c944-4cea-99d9-ed4af845f64b", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--b53d2b1b-f87f-4e9a-bcf0-baab371debf6", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--dc3a2d94-15b9-496f-b766-57396bc48cb4", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--c88acd69-1084-4747-a38c-563933fd3ded", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--2e7b4d34-c822-4161-80b3-9d2913bd7351", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--aac9910b-1cb4-4dd2-b6c8-c8efb6077433", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.547Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--70ee1cfb-017b-43b9-a2a3-26e5cd9722c2", - "modified": "2021-01-06T18:28:41.547Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.548Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--56167ecc-0d33-45fd-b8d8-2c634176fc22", - "modified": "2021-01-06T18:28:41.548Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.548Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--38bfd7cc-dc95-4847-8568-e2cbb4824b17", - "modified": "2021-01-06T18:28:41.548Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.549Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--70efec1c-2635-415e-bec8-1fdf95195249", - "modified": "2021-01-06T18:28:41.549Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--f85627a6-1a5d-4eee-b59d-ce07dd7ae221", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--ec6672b9-52aa-44a0-85ba-d0d8ddf62d5a", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--1e18e302-d379-465a-8d6a-cda6598bf511", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--68b2218c-da71-4854-bbfc-bc27f286ccc1", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:41.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--76e0294f-749c-4044-b80c-132cdbc4b10e", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--88480167-f9d5-4cce-aa4b-9e15f98bf20f", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--71b88164-a923-4f65-913d-2ebaece59cfb", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--fe78983d-6080-4bff-8abe-1b291d20f370", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:41.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--fc0eee43-2c9d-479c-9e41-d0c35cfe723f", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--c32b4a7f-2f35-4d54-9e1f-26209a82d707", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:41.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.554Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--79e945fb-e00b-49ae-8b1f-36165ca52f16", - "modified": "2021-01-06T18:28:41.554Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.554Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--8499cd1c-6245-4e65-9a98-295b9a727bd9", - "modified": "2021-01-06T18:28:41.554Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.555Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--e5141746-d8db-4085-9de8-6417faaaac4f", - "modified": "2021-01-06T18:28:41.555Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--1754fef6-9f78-4c99-971f-05c73c5a3cea", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--e89a2613-d7b3-4c50-81fe-1931547ab434", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.557Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--849d1531-82f7-4968-82c2-a1e5147aa91e", - "modified": "2021-01-06T18:28:41.557Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.557Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--7e788b60-9bdb-4d12-a9d1-80e8d120db09", - "modified": "2021-01-06T18:28:41.557Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--816be60a-1322-4f91-a087-643256df9bc8", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--a9bee93a-c706-4d14-94bd-b3ef3f8cb0ea", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--decc7f59-6998-4bbc-bbb7-4ffa022f02a9", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--f221c37f-ce57-4f2a-a546-8c037e97c8cd", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--d9384747-8f1a-46fd-b347-70719369107d", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--e626b3e2-4c92-48c9-9397-6179ff778442", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--4ed01a4e-0c69-4335-8792-e7c2d8b872e8", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--575a7fb8-66cf-4230-9669-46a1970336bc", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--7c798c67-740c-4b17-9358-2e0069c3c8a5", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--b0a4bc20-9a4c-447e-99e7-315d6d3a1e2d", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--481339ac-a2ec-455e-8347-10f8ec3ae148", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--476b5673-d78d-4db9-ae99-fb9f78e3dec2", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--2cec8089-a5e7-4ab8-bb40-ff05f3daaee6", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--e7322ad6-9014-44ef-9727-0b18d98b08fc", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--d7f837bd-f179-413c-860d-acea0564e168", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--d896cc02-c662-478c-a20f-bcc759c06aba", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--bf39fa34-10a1-4b4a-acbf-9c0e465a047b", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--7d741a69-70b1-4c0f-a371-2957f5833edf", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--25aefbcb-bf44-4c01-b761-a7523e5254e9", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--a7f4feb2-a995-4ada-b2a6-6c9ec3915ab1", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--81813aad-03f2-42e6-a50f-8e54e26095df", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.562Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--66229b07-2bfa-4792-a2ce-0bdeba390618", - "modified": "2021-01-06T18:28:41.562Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.562Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--a5b1455d-535a-461e-8f25-eb28844cd4bd", - "modified": "2021-01-06T18:28:41.562Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--fe8d9d57-6d8d-4d93-92a5-6cdc1fda64d5", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--bec85872-5751-40ed-9a64-cd321895c690", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--480bb83d-3fbd-459a-8880-10c6d2a5704d", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--3ee55c44-3433-46b4-ba10-5f255e162bd6", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--752def0c-ec5f-4bf0-9df0-3d953b986843", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--12a5b360-9de1-4a95-abee-42106f2fba7e", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--bdb27afb-819c-4fa1-8745-199161393189", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--c4602abb-11bd-4fb6-a8c5-3b78bfe3daff", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--80fde8e0-ae0a-4ee7-8f43-6b85952b6297", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--9045902c-3971-4106-aebd-06d016c058b9", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--e951935f-b9a8-4f11-9de7-04574cb8ad92", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--8e4f6086-a596-4dfc-bd50-83c0c3e120be", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.566Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--5fda0916-3efa-41df-beab-ecbe789a946f", - "modified": "2021-01-06T18:28:41.566Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.566Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:41.566Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--baee3277-7779-4904-9f7b-a47d2fb60c38", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--279f6a00-a6a3-4c3d-9831-a5e4621f7dc2", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--d0e02db3-92c9-4182-91de-8f73229a77bf", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--dfa46476-46b3-4384-9d34-a840971ff87d", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--585e7b4b-3c5b-4fca-bd4d-ea4d8f80eaf6", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--e828fde7-143f-467a-aa2b-26a3ba424b07", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.568Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:41.568Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.569Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--f986bdb9-3a86-4005-95d9-a2855ca64686", - "modified": "2021-01-06T18:28:41.569Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.569Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--4034116c-170a-4e2b-8196-7233107d88d7", - "modified": "2021-01-06T18:28:41.569Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.570Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--63b8669b-7ad5-4ecd-aa3a-20b12f6cd2e0", - "modified": "2021-01-06T18:28:41.570Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.570Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:41.570Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--d987fc0d-badd-44d1-9b5d-f0bf77b0390b", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--c92e894c-56c1-494a-9c50-b83f5c4e27fe", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--f7f2756c-919a-40f5-9394-8476f56bc5dc", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--c6cdf977-829b-4325-a2e8-8efadafde751", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--008eb80c-8b27-4a28-a4f4-ed7616a7152c", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--ea20873e-dcc4-4c78-93d3-96ff68b9c674", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--4b9f278c-7020-400b-8bc3-8d664760a717", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--c5085e7c-edd6-4397-9ad8-8837fb974ab5", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--f160e307-5572-4e55-b758-d0096700e9d4", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.574Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--33499a55-a52a-4a94-ad29-0a7ca200171f", - "modified": "2021-01-06T18:28:41.574Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.574Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--966e0b75-0ea4-469f-8213-b1961c40f27b", - "modified": "2021-01-06T18:28:41.574Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.575Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--e605b05d-13c9-47b1-b235-32fd8058d41f", - "modified": "2021-01-06T18:28:41.575Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.575Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--779dee36-5e42-4455-8103-09516c090ba2", - "modified": "2021-01-06T18:28:41.575Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--be8ccbec-ac3a-4e7e-93b5-685a1d837dfa", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--48b9e304-0ed8-4c6c-b57e-588f19c3b5a2", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--3d155b62-1dd9-4e5b-afcc-7a8b57a0713a", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e522e370-b46f-414d-a0e5-5879018eb07b", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e4471b6a-a50e-483f-9533-8a02c8c6f297", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--4dfa8a66-6545-4ec8-860b-caf68745f16c", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e164f712-0cc0-44d4-9164-69171383e9c9", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--0fa5a92e-dc42-43a3-8056-08de88592e58", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--f82d8625-68b7-41c6-940c-2f4b07b35819", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--12cceeb1-0ae2-4980-a2d3-d121f5505b1e", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--8fa0a2c4-5e28-4148-99a3-90af85f15e16", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--467a911f-9cfa-4f58-92f0-ecd1e53ef687", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.578Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:41.578Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.578Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--7e1e1151-b608-4696-ba04-c7e613449dae", - "modified": "2021-01-06T18:28:41.578Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--5c9bce1c-4077-4b2d-a7f2-cfec966093eb", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--2c38dda8-6f75-4e90-ada4-f49b6dc95302", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--30ae6d37-2622-4f72-ac8e-9915ff6c7880", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--bf34ac7d-4b5a-48e1-98a2-2770a360271a", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.580Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--5f52032e-3627-4cb0-9ae1-b0f8751fb416", - "modified": "2021-01-06T18:28:41.580Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--0b33aee5-0f08-4026-87e2-596cd8d28b83", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--f0a75750-e816-4cdd-b578-b0745bf25e60", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--6816f43b-3887-4da9-9cc1-a4ea3ee68a05", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.582Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--59bb170b-ac30-41c6-a96d-9a8b483d7334", - "modified": "2021-01-06T18:28:41.582Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--5a73e757-e951-4269-9f35-0bb6f5361b0a", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--7e5e57c6-7eb6-4dc2-aeb8-fbae798ccbfd", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a5329576-ea4b-4435-9fe1-04f42fb06f5c", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--d399485f-c93f-4f2f-9509-4fe8bf11c99c", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--8939ba9c-8ec4-4eb9-9f91-a312a46d2401", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--354e4c97-e06d-4a68-88bf-0f013c17f4a2", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--996255ac-f9a0-4ae0-a396-dd9c632a96c4", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a0366550-61b7-41fd-9f43-542edb7f5316", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a9b28a86-d282-4646-a9da-b98dd144b4ee", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--6097fec9-917d-474d-8cf2-dd38adf5e406", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--4163254a-168b-47c2-a634-b8b6ac5c830b", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--c6d8d3d0-1c0b-4b04-9b6f-2d3915c604b6", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--72ae01ac-9079-4a46-b5bc-e0a2c8100380", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--99709171-a6c6-4a0a-bd87-ae334b0a87c6", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--6ec8417a-6142-4814-af0a-6afb14b6eb74", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.586Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--49fa465b-d9e9-4d22-9488-4806012ab632", - "modified": "2021-01-06T18:28:41.586Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--f60f01e0-a7ec-4a0e-97d4-ee8fed156d5f", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--c70a78a9-c985-4ae8-843e-5baed058e427", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--1a88bac3-a42c-42ae-b11a-b0388de2d725", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.588Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--85349f0d-ad08-43ed-800d-854c8b84468c", - "modified": "2021-01-06T18:28:41.588Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.588Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--c7a962b9-0c1d-48d3-a60d-6623b2076a85", - "modified": "2021-01-06T18:28:41.588Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.589Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--867cc3d2-75d5-4443-8d0d-85fcc10bd108", - "modified": "2021-01-06T18:28:41.589Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.589Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--30523245-ac13-4ca8-bec5-106789f0d712", - "modified": "2021-01-06T18:28:41.589Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--60835612-0c3e-4285-b22e-d7eb369233c7", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--737f5638-cbc2-42dd-8d6c-3fa72cafee72", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--ed88a743-7314-4e63-b24b-f1e180af41e7", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--498243a8-3eae-4829-8ef3-070ae9c4d74f", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.591Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.722Z", "id": "relationship--5b0e6428-040f-49c1-89e6-3911bda128e6", - "modified": "2021-01-06T18:28:41.591Z", + "modified": "2021-01-13T01:50:51.722Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.593Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:50:51.723Z", "id": "relationship--d7f0ae85-e2a3-4f46-bd24-994f3552f9c5", - "modified": "2021-01-06T18:28:41.593Z", + "modified": "2021-01-13T01:50:51.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.594Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.723Z", "id": "relationship--8d58226a-0b58-4f4c-80f3-d7013cebe97f", - "modified": "2021-01-06T18:28:41.594Z", + "modified": "2021-01-13T01:50:51.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.594Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--f7f1efdb-054e-46f2-bada-b9edb3eb4e70", - "modified": "2021-01-06T18:28:41.594Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.595Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--b36781be-2438-4586-b351-407d929e87d0", - "modified": "2021-01-06T18:28:41.595Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.595Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--4e33cc8b-8fdf-4c6b-bbc7-a087600685f0", - "modified": "2021-01-06T18:28:41.595Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.596Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.725Z", "id": "relationship--c499d99d-4f50-4674-aca7-b69819665057", - "modified": "2021-01-06T18:28:41.596Z", + "modified": "2021-01-13T01:50:51.725Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.597Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.726Z", "id": "relationship--2bd95d36-cc97-49a1-a2ef-9a0c4fd00a9c", - "modified": "2021-01-06T18:28:41.597Z", + "modified": "2021-01-13T01:50:51.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.597Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.726Z", "id": "relationship--754696d6-0ace-4199-a59e-b89de8409c95", - "modified": "2021-01-06T18:28:41.597Z", + "modified": "2021-01-13T01:50:51.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.598Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.727Z", "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:41.598Z", + "modified": "2021-01-13T01:50:51.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.598Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.727Z", "id": "relationship--6eb1daeb-874d-4779-83d6-aa3b1a4e064f", - "modified": "2021-01-06T18:28:41.598Z", + "modified": "2021-01-13T01:50:51.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.600Z", - "description": "Continuous Monitoring, Penetration Testing", - "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:41.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.600Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.728Z", "id": "relationship--0c583568-bed1-4e96-9e19-5b62dd205e0c", - "modified": "2021-01-06T18:28:41.600Z", + "modified": "2021-01-13T01:50:51.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.601Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.728Z", "id": "relationship--02610bdc-0440-44b4-82a6-fd4d7747bd30", - "modified": "2021-01-06T18:28:41.601Z", + "modified": "2021-01-13T01:50:51.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.601Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.729Z", "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:41.601Z", + "modified": "2021-01-13T01:50:51.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.603Z", - "description": "Vulnerability Scanning", - "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:41.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.604Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.730Z", "id": "relationship--3e2a7514-228e-47d8-82f7-606b85852ecc", - "modified": "2021-01-06T18:28:41.604Z", + "modified": "2021-01-13T01:50:51.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.604Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.730Z", "id": "relationship--38ac16b4-0f0c-4d57-a81b-ef1984c8af41", - "modified": "2021-01-06T18:28:41.604Z", + "modified": "2021-01-13T01:50:51.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.605Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.731Z", "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:41.605Z", + "modified": "2021-01-13T01:50:51.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.605Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.731Z", "id": "relationship--4c4687c3-6774-44ed-8f9a-2967f7cbf561", - "modified": "2021-01-06T18:28:41.605Z", + "modified": "2021-01-13T01:50:51.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.606Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--b84f5fdc-a960-4ca7-867a-576a195b5d42", - "modified": "2021-01-06T18:28:41.606Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.606Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--5d19fc07-8791-4b56-8f60-75dde2ff45dc", - "modified": "2021-01-06T18:28:41.606Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.608Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--ceec417d-1099-4a8f-b196-54582a7833cc", - "modified": "2021-01-06T18:28:41.608Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.608Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.733Z", "id": "relationship--a132df39-3422-4720-88be-add16ea15b2d", - "modified": "2021-01-06T18:28:41.608Z", + "modified": "2021-01-13T01:50:51.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.609Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.733Z", "id": "relationship--77bcd33b-aeef-4d01-9054-135dd118b729", - "modified": "2021-01-06T18:28:41.609Z", + "modified": "2021-01-13T01:50:51.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.610Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.734Z", "id": "relationship--c8af40e8-799b-4491-8fbf-03111d5c82f3", - "modified": "2021-01-06T18:28:41.610Z", + "modified": "2021-01-13T01:50:51.734Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.611Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.734Z", "id": "relationship--3f85bdd9-1f59-48f0-89fc-62e9c1a7260d", - "modified": "2021-01-06T18:28:41.611Z", + "modified": "2021-01-13T01:50:51.734Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.612Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.735Z", "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:41.612Z", + "modified": "2021-01-13T01:50:51.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.612Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.735Z", "id": "relationship--a13ca5d5-c276-4b32-90cd-c90d4cad2a52", - "modified": "2021-01-06T18:28:41.612Z", + "modified": "2021-01-13T01:50:51.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.613Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--535567fb-cd5e-4eeb-9d1c-5f2dcf39f15f", - "modified": "2021-01-06T18:28:41.613Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.614Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--941360cc-457e-416a-9504-abf9df53a07c", - "modified": "2021-01-06T18:28:41.614Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.614Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--c8b41503-6ce1-4a0f-ab7a-8d7016f0dfc5", - "modified": "2021-01-06T18:28:41.614Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.615Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.737Z", "id": "relationship--6fafa2c6-880f-47c0-a29d-7cef545d5a60", - "modified": "2021-01-06T18:28:41.615Z", + "modified": "2021-01-13T01:50:51.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.616Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.737Z", "id": "relationship--55f250e9-a024-4f92-9074-52acee4b08f3", - "modified": "2021-01-06T18:28:41.616Z", + "modified": "2021-01-13T01:50:51.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.617Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.738Z", "id": "relationship--9760a697-2625-4da0-9407-a6cca4944845", - "modified": "2021-01-06T18:28:41.617Z", + "modified": "2021-01-13T01:50:51.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.618Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.739Z", "id": "relationship--270dfde3-428e-433c-8439-3bd5896e431f", - "modified": "2021-01-06T18:28:41.618Z", + "modified": "2021-01-13T01:50:51.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.618Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.739Z", "id": "relationship--618abd96-b077-4d0a-b422-b24417ac6c54", - "modified": "2021-01-06T18:28:41.618Z", + "modified": "2021-01-13T01:50:51.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.620Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.740Z", "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:41.620Z", + "modified": "2021-01-13T01:50:51.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.620Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.740Z", "id": "relationship--cac6604e-eb4d-487e-89a0-3633b00bfd07", - "modified": "2021-01-06T18:28:41.620Z", + "modified": "2021-01-13T01:50:51.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--4f19a941-4162-432c-893e-47b203e7c270", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--23f376cd-9343-4aa0-b2d8-72d180aef209", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--4601ae75-4642-414e-b16c-142ec466b1d0", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--09357d8f-7193-480d-87e0-65c44edc02ea", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--682adc3d-298f-4ea5-8ba4-364042e51a09", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--91683571-f109-4b26-96ab-c230ffcb421c", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--dcb9034b-bac0-46d7-a6b5-04479695c19d", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--4c631efc-d3ba-4677-aaac-32248d054c9f", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--d7f076d7-5381-4052-8494-f539289db073", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.624Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--c176ea35-c49e-4da5-82d3-9f1d06477ccc", - "modified": "2021-01-06T18:28:41.624Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.624Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--259271cb-6c2d-4c18-9cbd-7a27496e4d1d", - "modified": "2021-01-06T18:28:41.624Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--8767deb8-9573-44d8-95f3-ec3641099966", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--b0ca4bbe-dc6b-4f0e-a260-988e751ecb05", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--1299ad81-082b-41e0-b62e-27fbc1bbd7bf", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--7a2e6ff8-3fa6-4572-98c7-fb7c1c0ff7e8", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--c52275a9-10be-4bea-b041-0c62b80d9361", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--0577f38f-6a36-471f-bf5b-dbd6315c3d85", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--fd37262c-6c27-492d-8c33-4c220e4effb8", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--cdd7402a-923d-4c78-b743-e819acbcc535", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--0a4cecb1-58ea-4e95-8f61-3245c6e124ed", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--a62c005e-2fba-46b4-b5fe-b5077e68c911", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--1614ce97-f0a1-4eb6-abdc-dac5f15ecccb", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--40d166e4-948a-4e96-9dc0-572038ce8e4a", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--a70b577d-9930-43ae-be8d-24664adcdc23", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--dffd4cca-3a57-40ad-98f5-5091e09cfe80", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.629Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--ebad5c56-2b9b-436d-9714-b70b2ee43d2b", - "modified": "2021-01-06T18:28:41.629Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--06b816e2-8b12-43da-b40b-cbaa19ce7065", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--9bcde945-a185-4358-adf6-47d25af8bdbb", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--43756742-f5c7-461d-9294-4378dc4f23b9", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.631Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.748Z", "id": "relationship--67fe3a54-7cca-4faa-8ac0-dec9cebba25a", - "modified": "2021-01-06T18:28:41.631Z", + "modified": "2021-01-13T01:50:51.748Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.631Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.748Z", "id": "relationship--2f08590b-0e39-4bba-aa39-99000c90303d", - "modified": "2021-01-06T18:28:41.631Z", + "modified": "2021-01-13T01:50:51.748Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.632Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.749Z", "id": "relationship--872a7b4f-9ed5-4871-a149-1d7fd43a7d6d", - "modified": "2021-01-06T18:28:41.632Z", + "modified": "2021-01-13T01:50:51.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.634Z", - "description": "Information Flow Enforcement", - "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:41.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.634Z", - "description": "Information Flow Enforcement", - "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:41.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.636Z", - "description": "Malicious Code Protection", - "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:41.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.637Z", - "description": "Malicious Code Protection", - "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:41.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--988f259c-c637-45e7-b330-15692e4b29b3", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c2eae2e4-4230-459a-807d-af9b266a3923", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--71eebd8b-27da-4c4e-bf8c-11df4571f0f7", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--6adefa66-af0c-476b-9696-b495057321ce", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.640Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.753Z", "id": "relationship--b2d4d967-cde7-44f1-a671-28ab8443bb3a", - "modified": "2021-01-06T18:28:41.640Z", + "modified": "2021-01-13T01:50:51.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.641Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:41.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.641Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:41.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--ead3731b-171c-43f2-8288-dda59326eec4", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:41.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", + "created": "2021-01-13T01:50:51.756Z", "id": "relationship--c71c09b0-5cf6-409b-afc5-fc755c915cd6", - "modified": "2021-01-06T18:28:41.643Z", + "modified": "2021-01-13T01:50:51.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.644Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.756Z", "id": "relationship--02a9c259-866f-455b-ae4e-42020ab52b02", - "modified": "2021-01-06T18:28:41.644Z", + "modified": "2021-01-13T01:50:51.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.645Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--7ec3ad69-f064-4cd7-a2d0-a38fc36d5727", - "modified": "2021-01-06T18:28:41.645Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--d6c84d36-92a1-44b8-be99-f7831d0e297f", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--50ad1754-658e-4bbc-a103-a12ba8c9f78d", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.758Z", "id": "relationship--6f4e7de5-c543-4c47-a03a-6c0adb6360df", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.647Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.758Z", "id": "relationship--926cf4e2-cf51-4f40-b322-12c37a129dfc", - "modified": "2021-01-06T18:28:41.647Z", + "modified": "2021-01-13T01:50:51.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.647Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:41.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--cea89952-63f9-4ede-ab2d-891d946a1dac", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--fe4bd807-eae4-4c61-8477-e260023c33bb", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--de29bbd7-8b61-4d5d-8a28-5dd95359981e", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--b74e4c72-a7d8-4bac-b790-81596ea035b4", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.650Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:41.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.650Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:41.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--fdb419ff-57eb-4b03-84c5-450f41628c04", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--98b10b78-86cc-4e1a-8096-e641838ec403", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.652Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--344da011-86ac-433c-bad4-f0e3c7b234ea", - "modified": "2021-01-06T18:28:41.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--7a38d780-1b24-4142-8331-80aea14dc3f2", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--f49e2ad7-45e8-40a4-888f-790a01fcd4e6", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--713f1c0f-fcae-4eab-b364-307958239fae", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--518174a5-4c93-4b70-a3dc-080c82baf6c0", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--8787d4d5-0b43-4c3b-8c45-7979c4f7bd4d", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--cc5eafd8-f256-4848-a695-2f7e64e0b1ae", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--2b2a88e5-ba83-4a8e-8212-71ffcbb511ae", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--94e126ef-2864-4740-b7d5-d52fb1ebf934", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--08cb75b2-8b46-4b0e-8506-cd444adf4561", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.656Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.763Z", "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:41.656Z", + "modified": "2021-01-13T01:50:51.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.656Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.763Z", "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:41.656Z", + "modified": "2021-01-13T01:50:51.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--f5b85731-9e3d-4002-8d22-0dfcf49808b0", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--f846069e-7435-4105-aa82-22d41302aaa5", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--bac8b643-4386-4182-9e57-df0c4bb702c1", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--028527a7-52b3-47d6-8095-1be0f05e2b10", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.658Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--51a3464d-3795-426c-afbd-c0ca6fcbd1be", - "modified": "2021-01-06T18:28:41.658Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.658Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--84fa21b9-0f5b-4e7c-b050-566e503a31c1", - "modified": "2021-01-06T18:28:41.658Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--972841fb-3e88-48a3-9021-a7480022c97e", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--5d6bbc1b-23e2-45d3-ad12-9d07955ccf55", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--6e6eb3c0-ad78-48e9-8a20-955968bab877", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.660Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--edb0524a-8c46-4a43-bc54-d5b274e173f6", - "modified": "2021-01-06T18:28:41.660Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.660Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--5c3fe0d3-8237-4285-8dcc-916b44e5cd70", - "modified": "2021-01-06T18:28:41.660Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--c41c92cc-f8d1-4531-b85a-046778091e7c", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--985993c8-d8c0-4a4d-9c4e-0c7bc2e9beba", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--e3a98e56-6b8b-4235-a7b0-7bcf2d4f2431", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--a20109bd-2f21-46a9-a726-f6c159cf237f", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--0517db0b-a818-48d6-b7af-1eba4d847b6a", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--ce631fb7-1608-4dc2-ba24-55d01da3b542", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--00275f92-565d-4d7c-869c-390394f8bb8e", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--19c874aa-b9a3-498c-9b5b-ff4d773f895f", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--7f972695-34fd-4c43-8a5c-f78a9e99ed15", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--47232b2d-f5a8-4fcf-af4b-8e37949f78af", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--c6301f6f-ca9f-4fab-819a-820c15853cbb", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--06d57781-a2ae-4fa3-b085-457af32d9fbc", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--28b3040e-e0c8-415a-bd6d-62cb2e1237f2", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--4c52ef65-0840-4ff2-bde4-f30efae31a74", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--24776902-36cf-4934-b173-2bf020dc0f8e", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--b7109bc7-e41d-4364-934d-d788728132ea", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--dfaccd31-dfb7-4932-9d93-ba20e6276cac", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.770Z", "id": "relationship--3a045954-59dd-48f7-95c4-e85e8fbc262e", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.770Z", "id": "relationship--9a40ae5d-c566-47b4-8f48-f6ce779ed10b", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--546140c6-b484-4358-8b3d-ced420f0d1fd", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.667Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--a1babcd1-2d58-43eb-8a74-d352fa1458b7", - "modified": "2021-01-06T18:28:41.667Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.667Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--a51700b6-6244-4bbc-8f41-3e1f0a9dc36d", - "modified": "2021-01-06T18:28:41.667Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--cb6134aa-d30e-4388-8969-e895c9727bd5", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--101774e4-08fd-468a-aa1e-fc73c65a44eb", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--5fe4d47c-b96b-46c3-84b3-41b0d44fa739", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--f5231a8e-5dee-4fa4-a1f0-6ffcec3b8224", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--f483fa00-9031-4f3c-a1ea-d8bbd936b7b0", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--9f14ee23-a1c9-4d6a-bc8d-0aa464be2e76", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--3f341f88-76d0-442b-b4ca-9d6ba0c45311", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--e132f0cf-397f-4401-b133-e314b5b7f5c6", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--0512e3a2-a195-4894-a416-5391931c655a", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--91b46b14-d410-4697-b9fa-6cfc3b89b693", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--d49fce65-3d59-4371-b702-88f3f492bc4f", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--95dbe829-c2ed-489e-8067-a5a55970e0d5", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--b82d214b-0ff9-4dae-a4c0-c2e398ebfabf", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--4336267a-db8c-4e3f-9a6f-d800c2d116f3", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--79196a3f-1973-48f1-b5fa-5a125b72d209", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.671Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--516dc2b1-f457-414e-a6a3-cb511785c93e", - "modified": "2021-01-06T18:28:41.671Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.671Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--3d89ee66-3a06-4dee-bf42-4809a7104c6a", - "modified": "2021-01-06T18:28:41.671Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--731f8269-4416-42e1-95f1-bca1b1892cf7", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--2e407487-c29e-4556-b72e-bdc1e8173e58", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--223325f7-0b61-4be4-bd4e-4bedee7e623a", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--d835c646-9fef-42a3-b7a1-a790ebff9563", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--de5eafd2-03d7-4b32-967b-287b48c4aba2", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--44dde8f4-2b0b-4874-a5d3-dba43e166365", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--2b2ed917-1898-4d17-860e-0cc02619b232", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--f1718c4c-ab47-4aa1-9b8d-2359bf5f3edf", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--c1f81ac5-0e67-4513-9669-2c5a04baea5f", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--a7eabad0-1ee6-453d-bcd0-d75ad8841402", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--0f1c121b-4a6a-4a9d-9e7e-7fe3c333def4", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--45000972-502d-4382-bd71-8c187a0dfb34", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--2066f9b8-7c9f-4cde-9b22-92c854bb318e", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.676Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--cee31cfb-b91c-49fc-8923-5b013aeb6b87", - "modified": "2021-01-06T18:28:41.676Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.677Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--2df6c6d8-7691-4320-9f74-52dbe3382140", - "modified": "2021-01-06T18:28:41.677Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.678Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--4223f0df-3353-40b3-adfa-fbc952ae18b9", - "modified": "2021-01-06T18:28:41.678Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.679Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.778Z", "id": "relationship--7e8c47c5-5c5d-4c8b-96f7-f535f657f1ae", - "modified": "2021-01-06T18:28:41.679Z", + "modified": "2021-01-13T01:50:51.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.680Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.779Z", "id": "relationship--27a939a9-f548-4bed-bcf9-37dd8870a21d", - "modified": "2021-01-06T18:28:41.680Z", + "modified": "2021-01-13T01:50:51.779Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--bc46a92b-d254-45c1-9f79-abbf66ab9e6a", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--f6b608c1-c0a3-466f-8fbf-4c0fb0cde231", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--944010c6-4c43-427f-bc08-26ff18086f2e", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--2cc0330c-795e-443d-8554-67a52479c367", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--ae95c06a-bceb-4bdf-88c1-d6be18848d86", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--148ae650-0ad5-4012-9906-e877c83b95dc", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--2a4b7099-f561-47d5-b376-e9a2dd0390d9", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--5611e357-4d51-422e-83b9-3fb074a8cb73", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--a727f667-1dbe-42b1-83ba-a160cf1dfa57", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--48d67533-26b3-4095-9ac3-6263436f23ae", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--01483c2e-80cb-48fc-b040-079f77fb526a", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--e079cbe2-c73d-43c8-beda-9f0003bcda26", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--4b85867d-1b06-43b3-bed1-45d3267f93a2", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--1b292f74-334f-4932-95c4-30830fae1631", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--3467f573-102e-403e-9f29-5b5aa2906852", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--d9485a28-95d3-4fd3-a800-633fa441e3ab", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--79fff1e0-708f-4d13-ae3c-ea194892205e", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.685Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--29e83c0b-d798-45b0-b9dd-eba9e9e293dd", - "modified": "2021-01-06T18:28:41.685Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.685Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--1e4cbdaa-9eb1-4169-8732-a7d58e733df7", - "modified": "2021-01-06T18:28:41.685Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--d5ca9e3c-1ebc-467a-8950-d19be107a05d", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--e52cf03a-e451-45e1-a0f4-5fe81e78bd13", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--bbc1dbcc-ff24-41f4-b042-a570290509af", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--bb3a7976-e7f3-4b6a-af8b-252e2ed995b0", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--47a73154-8c83-4fc2-a6c6-c5860ece1bd4", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--cf63ba16-ad9f-4bbb-b9d1-32626d73f54d", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--37b31e7e-6a8e-4692-a598-548186a8004c", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--cbaadaad-7f0c-42f4-b98a-4137a7a55e68", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--44700bab-709c-4131-87b1-a6f53e5ad52d", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--8c39c92a-a6d1-4a08-afa4-345866cdcbec", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--a80b8d9a-b249-4cd4-be97-461d5f87ff9e", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--4797d24d-eb26-4903-905d-99d076cbd310", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--580f666a-12bb-4933-827b-e3bc32a48301", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--8d8bffd6-6604-4218-8f12-1fbe3a2fc6ec", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--2b971fe3-24f4-402c-94c1-8e8056cd59fa", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--eb3093b7-6c23-48fb-bcc7-4dd58aaa09d6", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--ec0d4013-dcf3-48dd-ac7b-1e210b0a3ec1", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--555cd1be-720f-4e10-8ad5-959f2547cf5a", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--41bdd389-f3bd-43b0-9a42-9ca6981965d1", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--ef4fede2-c770-4ce1-8562-a26688a67184", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--df39de32-bc16-42e6-b57e-c619f807c430", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--2f4a4e5c-a5f3-41b5-8fc5-cb7e89b0d4b4", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--a5b35027-5a21-41c3-93d1-a1eaaf0cb3c9", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.691Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--be8716b6-5da2-4e2e-8a03-afe0ede5ed7a", - "modified": "2021-01-06T18:28:41.691Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.692Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.787Z", "id": "relationship--389e48b9-6e04-45a0-9616-9f9125e099cd", - "modified": "2021-01-06T18:28:41.692Z", + "modified": "2021-01-13T01:50:51.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.693Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--8d37e36f-af7f-49f0-b8fc-ad83247a6db8", - "modified": "2021-01-06T18:28:41.693Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.694Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--ce2e3acb-ac61-4edb-8f72-dd888671aeab", - "modified": "2021-01-06T18:28:41.694Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.694Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--e45b0c86-847d-4110-ad12-77e3a02bc749", - "modified": "2021-01-06T18:28:41.694Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.696Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.789Z", "id": "relationship--396f4b33-aa05-4d83-bedd-d963e44ca1ba", - "modified": "2021-01-06T18:28:41.696Z", + "modified": "2021-01-13T01:50:51.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--ff4186b7-573e-4af4-802d-3a078895b0f1", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--a362a7cd-bf23-4f57-9e76-debb7bbc0ff6", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--32b24f77-a8c2-454e-8d0f-d9dc90ad7f19", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.698Z", - "description": "Cryptographic Key Establishment and Management", + "created": "2021-01-13T01:50:51.791Z", "id": "relationship--e67ca92d-2c83-4fe4-9da8-d0fe9567d70e", - "modified": "2021-01-06T18:28:41.698Z", + "modified": "2021-01-13T01:50:51.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.699Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.792Z", "id": "relationship--f0cb2405-2c6b-4af0-bc4b-b0c0a9f4c6c1", - "modified": "2021-01-06T18:28:41.699Z", + "modified": "2021-01-13T01:50:51.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.701Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.792Z", "id": "relationship--f5dbfa0e-4353-4a77-b954-39ca5eb2eaac", - "modified": "2021-01-06T18:28:41.701Z", + "modified": "2021-01-13T01:50:51.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.702Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.793Z", "id": "relationship--0da27c93-238a-45f7-9201-11c8e3e68316", - "modified": "2021-01-06T18:28:41.702Z", + "modified": "2021-01-13T01:50:51.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.703Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.794Z", "id": "relationship--f53981e8-35a4-42a9-81b4-51a58450f6bf", - "modified": "2021-01-06T18:28:41.703Z", + "modified": "2021-01-13T01:50:51.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.703Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.794Z", "id": "relationship--cdb93f46-dd5e-4182-8408-3c2d39e23e95", - "modified": "2021-01-06T18:28:41.703Z", + "modified": "2021-01-13T01:50:51.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.704Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--91703745-7335-450e-b5e1-af87f2a0f2d2", - "modified": "2021-01-06T18:28:41.704Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.705Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--49c3ef16-0064-4ffe-9981-ffeee2c5ef7f", - "modified": "2021-01-06T18:28:41.705Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--74e4cda9-c771-4f61-bb2d-6f9793efe0fc", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--10a6472b-8e3c-4861-9199-01005cd3be1b", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--44af0252-9b7e-45d9-a7a0-14db6a6d92eb", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--6f7fc462-90ba-4a22-b31a-695fbbca8abd", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--f1a6718b-c160-43ef-b3b3-82736d63c853", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--74dd5bce-a52b-4bec-8d08-42eb6304afa7", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--956aac33-515f-45a1-a7cc-89a8cefb1272", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--ef3093c0-1d60-43f6-b70e-df6404dd99a0", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--26cb12f6-71d7-467c-968c-7470e7f2def2", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--d6bb5294-3e10-4c26-aafd-c81c09d81780", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--21f5452b-594c-462f-9059-c4384e567b5d", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--c8bafc3d-5e8d-4997-b1de-ef451a8f15b5", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--0e183583-2adf-4cdb-ba28-b16532590b98", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--a56924fe-9bb5-4fe8-baba-b8786362f1ca", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--6af13fd5-2045-47e3-9ad8-487181f6717f", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--f0f3d3e6-3751-485d-9dee-47d468ce0dbb", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--34a7e1c7-03c4-4a18-acdf-d02ea1a3f818", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.710Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--129aa779-e35a-430a-9ecd-572b3425077f", - "modified": "2021-01-06T18:28:41.710Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.710Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--248564ad-8acb-4207-9782-1490d6f18dc4", - "modified": "2021-01-06T18:28:41.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.711Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--9215090d-353c-4045-b126-0fa1d109c383", - "modified": "2021-01-06T18:28:41.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.711Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:41.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.712Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.800Z", "id": "relationship--13b8139f-8082-4503-abb4-87195a14ffe6", - "modified": "2021-01-06T18:28:41.712Z", + "modified": "2021-01-13T01:50:51.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.713Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--978378e9-982a-42a2-8c30-c878e5d0663a", - "modified": "2021-01-06T18:28:41.713Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.714Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:41.714Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.714Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:41.714Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:41.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:41.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:41.715Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:41.715Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.717Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--34bac784-fbbd-48e5-8603-4025a864d4bc", - "modified": "2021-01-06T18:28:41.717Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.718Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.804Z", "id": "relationship--e341c74b-f9b3-43c4-b368-541f0ff04944", - "modified": "2021-01-06T18:28:41.718Z", + "modified": "2021-01-13T01:50:51.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.718Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.804Z", "id": "relationship--a3ac5bdf-b7b6-453c-9f9b-fbf9b50b45ea", - "modified": "2021-01-06T18:28:41.718Z", + "modified": "2021-01-13T01:50:51.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.719Z", - "description": "Access Enforcement", - "id": "relationship--dcc19e64-ef16-4ec7-99c8-9561ea1e96f4", - "modified": "2021-01-06T18:28:41.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.719Z", - "description": "Access Enforcement", - "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.720Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--4c575d63-1270-48a5-8987-8c820ff45a86", - "modified": "2021-01-06T18:28:41.720Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--c26b4140-c382-4409-9800-0452a221f7e2", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--d5a6a834-1eea-401f-91b6-573fdf8209d9", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--8e88db90-4519-40d2-8748-ca6ee398737d", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--9554616e-aacd-4071-9f4a-3b37fb86fcf7", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--9754bf60-d996-48ce-8acc-73a383c0fa02", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--ffec17ba-b931-4b2f-beed-a0fd3b8f82bc", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--935df36d-415a-4dd8-af88-f61f296d34ab", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.722Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--b25b53a8-378e-4643-ab50-97b81d402e72", - "modified": "2021-01-06T18:28:41.722Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.722Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--507a68e2-4f29-4e81-948a-34ceff71c7f3", - "modified": "2021-01-06T18:28:41.722Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.723Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--e211e52b-a2d5-496c-88c5-9fc6c368d2de", - "modified": "2021-01-06T18:28:41.723Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.723Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--82f3e7f4-38a8-4192-99d2-fb3d6d983a48", - "modified": "2021-01-06T18:28:41.723Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--68732f78-9d7d-4fa2-a306-4cc51f30d9ff", - "modified": "2021-01-06T18:28:41.724Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--0c6e2b71-b6ec-4081-a19f-4ac8a5083545", - "modified": "2021-01-06T18:28:41.724Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:41.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:41.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.725Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--d0476b23-ece9-48da-bbad-b5a801194e0c", - "modified": "2021-01-06T18:28:41.725Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--45743d32-1ccf-4b14-96da-5e2303fd13c9", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--70e10e5c-8ffc-48a6-9ae4-3d508e696821", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--6c2423cd-88f0-41ea-8c22-665193d156d8", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.727Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--b9083338-00ad-4df1-9e88-9b73c744c7cd", - "modified": "2021-01-06T18:28:41.727Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.727Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--bff324ab-4da1-4159-8206-ce2d68120194", - "modified": "2021-01-06T18:28:41.727Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.728Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--19236b8a-32d9-4a94-8bd2-8327b839cbfb", - "modified": "2021-01-06T18:28:41.728Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.728Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--d612598f-8687-4983-8041-564ba528bde1", - "modified": "2021-01-06T18:28:41.728Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--7593412c-d29d-4378-9215-51d66c9aeb27", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--64edf1f6-0395-4fe5-899c-efc4a1ff5441", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--f7f77e32-4409-4756-bc79-885e742520e7", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--082f3f53-7f13-4d5c-b0c5-f4d48e836dca", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--0cac686f-9a4a-49f1-9e62-cd12d2b43e6e", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--62ee3793-fe2c-42fe-82a4-72e857ee71ee", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--70f65a6b-194c-493a-b838-0736ceecb3ba", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.731Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--5c0c2cbe-83be-402e-9610-7c43b308d221", - "modified": "2021-01-06T18:28:41.731Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.732Z", - "description": "Access Enforcement", - "id": "relationship--837934b5-d1b0-4b9c-98ba-3c7ee61f47e2", - "modified": "2021-01-06T18:28:41.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.732Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.813Z", "id": "relationship--d3ffd103-0a39-4de3-886f-9b1d050e96a6", - "modified": "2021-01-06T18:28:41.732Z", + "modified": "2021-01-13T01:50:51.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.733Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--ee02acdd-ed91-412b-a31c-c49123992791", - "modified": "2021-01-06T18:28:41.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.733Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--22c5a169-2928-4b8b-a6f5-b6a24593d990", - "modified": "2021-01-06T18:28:41.733Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.734Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--6eca6f7e-0326-45c8-9798-af3f00ff8791", - "modified": "2021-01-06T18:28:41.734Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.734Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--f94285e0-df37-48b5-8e32-43861d11dccc", - "modified": "2021-01-06T18:28:41.734Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.735Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.815Z", "id": "relationship--490560ef-ad44-4ca7-9356-05eaeada7b01", - "modified": "2021-01-06T18:28:41.735Z", + "modified": "2021-01-13T01:50:51.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.735Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.815Z", "id": "relationship--b92b4d24-d519-4889-83a1-3f82f37f0fd9", - "modified": "2021-01-06T18:28:41.735Z", + "modified": "2021-01-13T01:50:51.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5a008fc9-d555-4188-947d-3220ac8dfda9", - "modified": "2021-01-06T18:28:41.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.816Z", "id": "relationship--015b83e4-e7bf-469f-88ad-9ee109d411c9", - "modified": "2021-01-06T18:28:41.736Z", + "modified": "2021-01-13T01:50:51.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--faa9de7f-dec7-47b8-8d1d-35f76b044738", - "modified": "2021-01-06T18:28:41.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.816Z", "id": "relationship--87276575-9dc2-45a8-95f5-5631d596078f", - "modified": "2021-01-06T18:28:41.736Z", + "modified": "2021-01-13T01:50:51.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.738Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.817Z", "id": "relationship--d5ef8b73-a512-4c0c-8d05-ba7bc8ec2452", - "modified": "2021-01-06T18:28:41.738Z", + "modified": "2021-01-13T01:50:51.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.738Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.817Z", "id": "relationship--ebbcfd83-7fc8-4dda-84ee-f6518dff3a47", - "modified": "2021-01-06T18:28:41.738Z", + "modified": "2021-01-13T01:50:51.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--3448e2e1-a734-46f3-814c-895c1f200ccf", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--948165d8-282d-4e3c-b852-d2c026391693", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--62e7e3fa-60b9-46dd-8ca3-0729c70ec9ac", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--18a03be2-1432-44bd-9145-5ac00f6ee8b2", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--73f71313-f51b-4847-bc7f-4a4e61c20f05", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--686cd81d-98a5-426c-9f58-6fa95c5e5449", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--6edd8cb4-ae31-4bce-b6da-d048cfdf9e1e", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.742Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.820Z", "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:41.742Z", + "modified": "2021-01-13T01:50:51.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.742Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.820Z", "id": "relationship--2004dcd1-87e8-486b-9f20-dcd8b72152d0", - "modified": "2021-01-06T18:28:41.742Z", + "modified": "2021-01-13T01:50:51.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.743Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.821Z", "id": "relationship--c2d9e031-aeca-4360-9de1-d15d0e6d5e60", - "modified": "2021-01-06T18:28:41.743Z", + "modified": "2021-01-13T01:50:51.821Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.743Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.821Z", "id": "relationship--1920145c-612e-45f1-af83-7b1a1aad3287", - "modified": "2021-01-06T18:28:41.743Z", + "modified": "2021-01-13T01:50:51.821Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.744Z", - "description": "Continuous Monitoring", - "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:41.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.744Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.822Z", "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:41.744Z", + "modified": "2021-01-13T01:50:51.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.745Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:41.745Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.745Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:41.745Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.746Z", - "description": "Account Managment", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:41.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.746Z", - "description": "Account Managment", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:41.746Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.747Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:41.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.747Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:41.747Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.748Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:41.748Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.748Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:41.748Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.749Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3bc78f76-ac1d-4cea-a5bd-24cdd415d4bd", - "modified": "2021-01-06T18:28:41.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.749Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.825Z", "id": "relationship--e9404ee4-377c-49fa-8c57-a913b5b6395b", - "modified": "2021-01-06T18:28:41.749Z", + "modified": "2021-01-13T01:50:51.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.750Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1b17e7e5-8a57-45df-8a38-f97ef39bd417", - "modified": "2021-01-06T18:28:41.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.750Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.825Z", "id": "relationship--be667781-2a98-49d1-810c-0f5f9cc2a51b", - "modified": "2021-01-06T18:28:41.750Z", + "modified": "2021-01-13T01:50:51.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--3fa2d61c-1517-45b3-96e8-fa1d2fe2caca", - "modified": "2021-01-06T18:28:41.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--9914daf1-ce8a-4b4c-943b-a7c89274ce2d", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--55dae45a-e184-4c66-8901-12d8c9755229", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.752Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:41.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.752Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:41.752Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.753Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.827Z", "id": "relationship--08371f83-8203-4202-96b9-40a1a0848840", - "modified": "2021-01-06T18:28:41.753Z", + "modified": "2021-01-13T01:50:51.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.755Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.828Z", "id": "relationship--1e7f8c90-1ac7-4b5e-b2ed-cf5a10023c60", - "modified": "2021-01-06T18:28:41.755Z", + "modified": "2021-01-13T01:50:51.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.756Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--cd22be46-9cba-4cb1-b1bd-782126fe9a75", - "modified": "2021-01-06T18:28:41.756Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.756Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--151bf7bd-9463-4127-952f-bdedfd6070b8", - "modified": "2021-01-06T18:28:41.756Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.757Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--eb593a72-5fbc-4a9a-8197-8c0758be2aab", - "modified": "2021-01-06T18:28:41.757Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.757Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--869a2bf4-9993-48eb-8224-a324158aa2f2", - "modified": "2021-01-06T18:28:41.757Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--f933fb0a-2eb3-41a7-975d-8b2e5d21deb3", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--8c215b18-bf96-4488-bf86-b35e7fbb291b", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--56ec7bcb-2cb8-447c-bd51-ee76a8e7d8c0", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--33944dfc-42ce-4faa-9822-756d718d4f56", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--b8fb32b5-e002-4df1-af3d-4323973c90e3", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--0d1e88c2-c554-479f-ac0a-3da097853d15", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--0ec4426d-7016-4b97-b2c2-e28e51e32df7", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--2ad92690-ce0b-4a32-af84-d89378838988", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--b4b1acfb-4c88-4fce-aa6f-de8f7c35d99e", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--30d1a7d9-d426-4b42-b44b-4331d104cf85", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7e788b60-9bdb-4d12-a9d1-80e8d120db09", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a9bee93a-c706-4d14-94bd-b3ef3f8cb0ea", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--decc7f59-6998-4bbc-bbb7-4ffa022f02a9", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f221c37f-ce57-4f2a-a546-8c037e97c8cd", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e626b3e2-4c92-48c9-9397-6179ff778442", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--575a7fb8-66cf-4230-9669-46a1970336bc", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7c798c67-740c-4b17-9358-2e0069c3c8a5", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0a4bc20-9a4c-447e-99e7-315d6d3a1e2d", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--481339ac-a2ec-455e-8347-10f8ec3ae148", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2cec8089-a5e7-4ab8-bb40-ff05f3daaee6", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d7f837bd-f179-413c-860d-acea0564e168", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d896cc02-c662-478c-a20f-bcc759c06aba", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bf39fa34-10a1-4b4a-acbf-9c0e465a047b", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7d741a69-70b1-4c0f-a371-2957f5833edf", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.764Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:41.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.764Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--81813aad-03f2-42e6-a50f-8e54e26095df", - "modified": "2021-01-06T18:28:41.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--579dab96-2da7-4de2-b1b7-c3bb20bdc531", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--7f089836-498e-4e53-96de-9a376bcb44de", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--44801476-3a08-4c61-b92d-98b80bc08f5e", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--7c39cfa2-3b23-495d-8db4-419fece3991a", - "modified": "2021-01-06T18:28:41.766Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--a4c323a4-3f76-410c-bccd-3bad52c2ef37", - "modified": "2021-01-06T18:28:41.766Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--907134bf-3299-469c-ac40-6e94cdecd208", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--28699dc3-1085-4885-b95e-94a2670fa436", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--9137cbe5-9133-48c5-b111-61773c8022fe", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--107de28b-73ce-403b-9632-03b36d69dbe8", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--4e35a3f1-289a-48b5-a011-4ac0252bec2f", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0f4ea6f9-37b3-46bc-a838-ec2e24198746", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--ec1d83db-c626-4e51-b440-d685d6983008", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--7f833927-c6df-4cb0-8ac9-9807f4a336b3", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--9be306f0-b40f-414c-8de6-458702c10f0f", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0e24c4b4-5cdf-4dce-a000-53207e3d1ff8", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--833f2319-ac4c-45cf-bd0c-d964f780934a", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--9c439e2a-9061-4b0e-abec-a77a03a4ffc4", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--3defa4b7-d5f0-45d9-9161-cca2cb3746da", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0199f84e-67fe-4290-b967-e9f641f13534", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--1de57ab9-773e-4954-a342-f0617d69aa02", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.770Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:41.770Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.770Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:41.770Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.771Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--09c12dfe-7f63-4142-bd09-eaaca163116f", - "modified": "2021-01-06T18:28:41.771Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.771Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--4d6b42c1-becd-4109-999c-7e878655cfb6", - "modified": "2021-01-06T18:28:41.771Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.772Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--153fe739-71c0-492d-aeed-76845ca9e020", - "modified": "2021-01-06T18:28:41.772Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.772Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--263fbe27-db88-4766-872b-ff99a7932290", - "modified": "2021-01-06T18:28:41.772Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.773Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.839Z", "id": "relationship--bf0b59af-69a2-4b58-8132-6c5930bf4345", - "modified": "2021-01-06T18:28:41.773Z", + "modified": "2021-01-13T01:50:51.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.774Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.840Z", "id": "relationship--be981616-8110-40f1-9c9a-23d50136f7fc", - "modified": "2021-01-06T18:28:41.774Z", + "modified": "2021-01-13T01:50:51.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.775Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.840Z", "id": "relationship--946ffb9b-c4e0-4b1c-8717-223f1f9d10da", - "modified": "2021-01-06T18:28:41.775Z", + "modified": "2021-01-13T01:50:51.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.776Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.841Z", "id": "relationship--f22039fe-d893-44ec-b6df-c545b2872055", - "modified": "2021-01-06T18:28:41.776Z", + "modified": "2021-01-13T01:50:51.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.776Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.841Z", "id": "relationship--bb7301b6-c860-4a57-bbe8-e30ded9fbb8f", - "modified": "2021-01-06T18:28:41.776Z", + "modified": "2021-01-13T01:50:51.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.842Z", "id": "relationship--c5081d52-4f7e-4098-b785-d4b052965c9c", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.842Z", "id": "relationship--9e72e517-ec7d-4ad0-a5be-355f034a3f30", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--032a4e5f-affd-455f-970d-8fb47ad83571", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.778Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--34bde7cc-966a-46f1-b67f-4563d14c11c6", - "modified": "2021-01-06T18:28:41.778Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--62e28a47-fc89-44cd-8ebd-3c81f7b2a960", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--376c6463-4675-417f-a366-f7c61f3aff73", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--c7ce48ce-4d92-4c13-a4f5-a34813951791", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--79d9b629-1142-491d-8c59-9a483c48b27f", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--a8392b76-f186-42d1-ad40-faed9db91282", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--36efc0ca-2e05-49f6-a0da-23400ff00dcc", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--a69568b7-0584-4857-81f4-d4581939c547", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--622c46e4-2cd7-4a08-b4db-c1de50a9186a", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--e6f45fec-886e-4367-8aeb-ea907d43885a", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--c737e227-01ff-406f-8e74-679a8c903a31", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--1598c92b-066a-4440-b45e-e0a9ff85940e", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--2c2c9b20-f042-4880-9dc5-502ae0b8eb81", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--bc2cf628-c28d-481e-bd85-3caeda18899e", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--57bbff90-6a39-432f-ac4b-651576eee9d9", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--7fe210ad-d807-49f4-a3ba-512cb30396b7", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--2784e1da-41d9-4747-aaeb-d665f8ba269f", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--d8768050-d615-49f3-9c8b-7184e7a86e2c", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--94ff2d8c-4034-4e93-ae21-11a503195b12", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--5dd14ce3-963c-4cd5-b43d-e5f2c8c63e82", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--38829e81-4544-4544-a5ce-9b2aae874e09", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--d04e9039-585a-4452-a5db-27ac3415da8a", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--a0d7d953-aed8-499f-a68d-63d7d907027c", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--894e1f92-4a9c-43a2-b955-d8fdef6ef178", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--35d054be-959f-49ec-b0c1-c8cf26b64f6b", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--f8e65a65-b98d-4233-868d-7400ce74ab93", - "modified": "2021-01-06T18:28:41.789Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:41.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--081cac6d-814a-46ed-9b76-babc1dd83ce7", - "modified": "2021-01-06T18:28:41.789Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:41.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--d064a3c4-e0b2-4f57-b427-6787c1d292f9", - "modified": "2021-01-06T18:28:41.790Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:41.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.791Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--33575638-b696-48a6-a452-eec93dc4cae7", - "modified": "2021-01-06T18:28:41.791Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.791Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--648e6604-1522-468d-b00d-56713347840b", - "modified": "2021-01-06T18:28:41.791Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--ebf287bf-69db-4ef0-adf0-e77be6dcae4a", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--1a5778af-0bd7-450d-8554-319e9cb9f41e", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--0021a863-51fb-4b7b-81bc-ecc7b688c2a5", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--73b69a59-f0aa-4c10-9ffe-6d1cc9ea5b9c", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--9b888cdb-5448-4cdd-8c28-d5ecb052541b", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.793Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--8dbb8411-90df-4611-a130-5c2c85ca3165", - "modified": "2021-01-06T18:28:41.793Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--7d2a37dd-3790-47ab-987f-1bc98024ed24", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--85db5676-8dab-4969-afd1-173cb13c1b9d", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--e81c4ac7-a94c-4d03-999b-5e8d95d4d5da", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--0adbe058-94d8-445d-a25e-bf917de7e6eb", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--e244e196-c3e2-48df-8c1b-0c91b44eb065", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--c436317d-151b-47ec-8ccb-a725c0d1a4c4", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--dff4d6a4-174c-45c0-93a5-0baf828e8630", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--beeefb23-1d50-43c9-9ecd-d9bdeb62ae68", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--60f73db9-ff96-4af7-be1e-fe42e76d1c6c", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--24308bb8-fa9b-4dc3-9851-ccb6bd498fe4", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--7a8d942f-c6fa-4bab-a9ad-faca4b22f9b2", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--7b782b8e-13b6-4795-bdcf-5f239212c816", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--8b2972b7-0e31-431e-90fa-86463b50e7cf", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--43f1889a-8025-4156-9083-9d2eb51bd833", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--9a45776b-544d-45e9-9a12-6de91953bad4", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--efe17a93-9e63-4578-9fbf-c8dfc165687c", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--2d069171-e0db-4a4b-acd9-c7f20b5c7f4a", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--101f92a2-0423-4e58-bcd6-2e7053ac07b9", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--2f3cf392-ba73-4d30-936f-db10f0191b4f", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--981cf678-6912-4820-ba4c-ec951c0aa675", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--f4d6e4fe-df04-4942-a2db-763d1754fd42", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--646452b3-e29b-45e7-b636-8f3bc45c6516", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--e7544665-83db-4687-b027-cb31ce25d12e", - "modified": "2021-01-06T18:28:41.800Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--633bfebe-c8a2-44ee-9c57-d02b4c251770", - "modified": "2021-01-06T18:28:41.800Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--be8ccbec-ac3a-4e7e-93b5-685a1d837dfa", - "modified": "2021-01-06T18:28:41.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--d17e7051-1762-4d50-82b4-126497923de7", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--e6879872-5512-49ce-8a0f-ba6864d8a9e2", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--6924f1c1-c249-4895-8f03-3863490e9f5b", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--b15651af-74d3-4633-a779-0c1ae01bd94f", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--4ffb3407-5d1e-4b74-b698-b2edd76847c1", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e4471b6a-a50e-483f-9533-8a02c8c6f297", - "modified": "2021-01-06T18:28:41.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--90998636-7c6e-4f12-a4a3-cc494cb98549", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--ee21cf74-cd81-41c0-843c-d4878c74b000", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--36dd77bb-70ce-4c06-ae63-c9add8e8b749", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--0bb97591-5362-4957-8c94-099ce6e0be55", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--dbe637b3-c26e-4451-87ab-873100b1104a", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--13a97064-71e8-4ac1-8e37-d66cbdb23081", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--a46770f4-dd21-4840-a263-15e9abb34f8e", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--19f3222a-0827-401c-9574-16ff4fe9f54b", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--8ef92797-71bc-4705-834b-415ef091a5b4", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--f0fd61a4-88f8-486f-b82d-726e2025b560", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f82d8625-68b7-41c6-940c-2f4b07b35819", - "modified": "2021-01-06T18:28:41.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--733ff8e2-cb2b-4f63-86e6-3af9a092ed78", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--7888546c-1232-42f2-aef0-63482c733ff8", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--eac9df9e-3c29-4916-b451-99f6b15bbed4", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--d28304b6-1754-44fc-8994-bb4e4d02ac37", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--9d9e3d82-d2c4-476e-97f7-a0df7633f0ab", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:41.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--2d4536cf-85b3-4fa9-9d04-9c6883fb23c4", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--636135ad-b9b7-4ccb-a10a-013967fc780f", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--5edd0fd6-c245-4e37-aee9-6c392f2d7dc2", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.806Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--108633c2-ee3a-4785-9dc8-f81eeccbb82b", - "modified": "2021-01-06T18:28:41.806Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--a45a3c40-c1c5-4376-9fe9-59db86f7932f", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--7acd1a7d-a71d-43e5-be45-990f06aec785", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--8b8f2bd6-a5ac-41e1-9db6-bfa01da667ca", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--b52b5538-8efc-4649-a3c3-9a60e45859a2", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--6b41fc0d-1752-417b-8eb4-4ebb0393a603", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--8345c770-0eda-4568-85a7-41d87b36d157", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--20323a6d-371f-4b11-bc3f-ea76a5f6f644", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ed77f10c-f49c-4ba2-9bab-a3cc99302219", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ee99d733-caf1-4965-91c5-0203463aff1e", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ca312aee-bc5e-42f2-a1ca-caee0c45a76d", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--6e232f58-58fd-47f9-81e1-8a21536a23c2", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--9d4c0eae-bfa9-49f6-a734-820a8594d71b", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--7986e2f0-c63c-4dc6-8cac-d30569870aaf", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--b954d500-cfd1-46b5-bae3-7c4c9695b0c9", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--20dc8172-e055-4118-bbcf-e16db1faef02", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--33d19ae2-946c-4f3a-b1b3-f9e9f5960c24", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--0980315f-d451-42bf-8ccb-8427a52faba6", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--2c5d0949-a816-4254-b706-53bce51fa91e", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--88fed362-4477-41a6-bf98-1defd2b19836", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--772b7c79-a3cd-4200-9b01-652ecd8b6839", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--aa87a77e-fd82-4b99-a0bc-d539ac38e8c2", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.811Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--4daf5677-d021-4f1a-8886-18969be564c4", - "modified": "2021-01-06T18:28:41.811Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.811Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--f053ae47-5436-47cf-b56c-b1d000a28940", - "modified": "2021-01-06T18:28:41.811Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--df70dd3f-883e-4e99-98a0-1437172dac35", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--3556c095-33ff-4411-b913-c5dae06ca5c1", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--dd748a24-1f3d-4974-86eb-2d137cf69c5a", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.865Z", "id": "relationship--9afcabd0-59e9-4978-9677-3429891cbcea", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.813Z", - "description": "Continuous Monitoring", - "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:41.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.813Z", - "description": "Continuous Monitoring", - "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:41.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.815Z", - "description": "Configuration Setting", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.815Z", - "description": "Configuration Setting", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.818Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:41.818Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.820Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:41.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.820Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--35e4d5cf-b60c-4e7a-9b75-29612575f370", - "modified": "2021-01-06T18:28:41.821Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--b82d8878-9808-43df-afb5-94dec04b5259", - "modified": "2021-01-06T18:28:41.821Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--9e13e4c2-5293-4956-a38a-360048d55ca8", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--f56920f6-8077-445a-80b1-76491cb11c7b", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--b43ed141-3442-4c81-a1ed-1138a7303c62", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--78b93e2d-1e68-407a-9860-88c51fe0e18b", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--3434eb71-bd50-4d9e-9830-41b53c144ec1", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--ceabbbf0-6aed-4203-a2d0-1f3bb434bcab", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.823Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--f574e234-5962-4e6e-a2ef-b6124ece97a1", - "modified": "2021-01-06T18:28:41.823Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.823Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:41.823Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.824Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--a42e06f9-ae25-4dc2-8e29-ed45a6ff5202", - "modified": "2021-01-06T18:28:41.824Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--22d3b30d-3aac-4cfc-ad36-4079339a24aa", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--356d7246-3e1f-400f-ab6b-2deaac0dd2fe", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--90d13ae6-6a61-46fc-9676-4c546f33a7f1", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--000cbab0-b5ae-45f7-8615-1b2b7b384556", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--b427cdfd-0c5f-4a45-8449-1182821880d6", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--d8b21ba0-fdf3-44cc-8a81-39502097441a", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.828Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:41.828Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.828Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.874Z", "id": "relationship--422f00bc-a510-4819-a6d9-e2394f89e6b2", - "modified": "2021-01-06T18:28:41.828Z", + "modified": "2021-01-13T01:50:51.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.829Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.874Z", "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:41.829Z", + "modified": "2021-01-13T01:50:51.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.830Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.875Z", "id": "relationship--0fa9e5fd-a2a0-454a-9fff-11e04965efa9", - "modified": "2021-01-06T18:28:41.830Z", + "modified": "2021-01-13T01:50:51.875Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.830Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.875Z", "id": "relationship--0b3fa5f0-e96c-4a37-8ca2-c96f1af121a0", - "modified": "2021-01-06T18:28:41.830Z", + "modified": "2021-01-13T01:50:51.875Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.831Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--5f2965f9-52ac-49aa-b3ee-c1d3bda58e16", - "modified": "2021-01-06T18:28:41.831Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.831Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--f60c0afd-230d-467b-a7ca-cc11a3bd5355", - "modified": "2021-01-06T18:28:41.831Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.832Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--cd8edba6-0cfe-42db-a43e-d10f5a39085b", - "modified": "2021-01-06T18:28:41.832Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.832Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.877Z", "id": "relationship--1d259144-971a-4552-a469-bf33391b5c08", - "modified": "2021-01-06T18:28:41.832Z", + "modified": "2021-01-13T01:50:51.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.877Z", "id": "relationship--f4e0d676-1cfe-4776-8db0-b0db863b3424", - "modified": "2021-01-06T18:28:41.834Z", + "modified": "2021-01-13T01:50:51.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--0079e813-75b5-468b-8484-45a0d7c5f649", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--c385eb81-0aa9-4461-9c69-1a39d06eb6cd", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--827c874e-19f4-4160-b892-882ac51802ed", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--701fcfc0-5786-40fb-bf73-0f15e285213a", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--6ace38b9-fdc8-4dbe-b312-2172f12fccac", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--ab6a0bb7-5da0-4cfc-8c3b-270cbc0bcef1", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--308ba998-3582-4f0a-9c3a-4799b8f33e3f", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--3eb33f1b-fd14-4933-b4ef-f0f849c01472", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--4f4c6f3e-707e-4450-a508-c201aa653892", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--91695f86-7097-4aa3-8a1c-d26ee006fa9f", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--1f75de19-bffb-465c-bf45-f8fe366b526c", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9b180ef6-a3f3-44a5-9f78-73887da29d7e", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--626db871-5246-46c8-8b40-f602587b5a38", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--a8a0d511-0c68-4e67-b3ff-70e605ee1db8", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--2acc6fb6-55e3-4183-8c5b-4348ed8e7614", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--5726a304-7492-43fd-8c57-e05ce4df0da2", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4a207090-d41b-493a-bf45-50fc77e72916", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--845ad056-6faa-4072-9acc-dbc80067b5ee", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--2fad5ba2-6eef-4b31-8588-bfeea17502b8", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--b9bfbe9b-5ff0-4f3f-821a-7d306308fa64", - "modified": "2021-01-06T18:28:41.838Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--cfe51f97-d038-4a08-9495-7d301df863f2", - "modified": "2021-01-06T18:28:41.838Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.839Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:41.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--d05b0c70-7121-41b0-a491-83dee42f893a", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--317a7bbc-7a61-4c29-bd33-e358394d2f9d", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--9aff9dc1-2a91-4cb0-bc3b-4d1cefec08da", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--0ea16e27-bdbe-4db0-8c56-956e1effd6ca", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--1e7a025c-81b2-4483-b4f5-c95ddbfb0a33", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--9738c529-2994-43f1-ba13-6d80040574ef", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--1de283c2-e5b6-4269-afcf-e04a2d8db639", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--21f8e1ae-c8d5-41e9-843e-1c73177c1140", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--d06bd4dc-443a-4327-83fb-04daaa9ff282", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--8878cd0b-e3a1-4a01-9322-1a9fc5b7f66a", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.883Z", "id": "relationship--a6219c53-a278-417c-8f1b-e014c49a9b72", - "modified": "2021-01-06T18:28:41.842Z", + "modified": "2021-01-13T01:50:51.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.883Z", "id": "relationship--a219b633-a1bb-46da-b054-320fcc814288", - "modified": "2021-01-06T18:28:41.843Z", + "modified": "2021-01-13T01:50:51.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", - "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:41.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.884Z", "id": "relationship--9962eb64-e6db-43c4-b9e1-4ec791d81c40", - "modified": "2021-01-06T18:28:41.844Z", + "modified": "2021-01-13T01:50:51.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.845Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--038f9855-87b6-4338-b880-f9f8ec0233a7", - "modified": "2021-01-06T18:28:41.845Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0ead6392-dd34-4235-81a7-d79f27e4f82e", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--1cefe2ac-a722-437b-be04-9b7486c37717", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--e3a1a447-ad75-47c2-b5f0-43ae1d12cbd1", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--e6261440-5ecd-4a77-922a-4518398b090d", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:41.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--0a48a251-2792-41db-a8b6-cad188a31366", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--bb140d78-31e0-4002-84fd-c5496af80f59", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--538fc01b-05e6-4585-8993-b934a73ab435", - "modified": "2021-01-06T18:28:41.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c81b9290-28a4-48b1-b02a-d484fb71d307", - "modified": "2021-01-06T18:28:41.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--323755e6-65c1-43a3-a3cf-017b34e72e56", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--acbdd41e-d7a3-4ba1-8a4b-657816d1e3f1", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--e9669724-a0cb-4b52-89ec-3f49357070f7", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--1bc90079-711b-4472-ac1a-b13a4fbe5f3e", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--c3faa9ff-2632-4457-8d49-051a424937c2", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--2c5f44ed-921d-42e8-848a-e55508390ed0", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4c2976fe-6609-4539-b4e6-012bdcd50945", - "modified": "2021-01-06T18:28:41.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--6926e5eb-2fce-45cf-aee2-4379af077fbf", - "modified": "2021-01-06T18:28:41.850Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--51f8b0a3-7a07-43c1-8fa0-32844efe748d", - "modified": "2021-01-06T18:28:41.850Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--ce3d3862-b57d-4bf8-99c6-45ffd83a84b4", - "modified": "2021-01-06T18:28:41.851Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e3164bcc-554b-4625-bdce-4ec4ba50c7c2", - "modified": "2021-01-06T18:28:41.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--de026ce1-9ab7-44ce-a4a1-278381b9d05b", - "modified": "2021-01-06T18:28:41.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--f913bdf1-740d-4042-b0d8-72a860b77554", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--f81145b0-c75c-4138-bb22-01071cd4600e", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--e9067b7a-175b-4c5c-b932-d9893e2ddadf", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.853Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--e7c8a2a1-9344-4988-b18b-126a3d2d7408", - "modified": "2021-01-06T18:28:41.853Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.853Z", - "description": "User Access Permissions", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:41.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", - "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:41.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--37938e04-b71b-491b-8696-cafca70dfbcb", - "modified": "2021-01-06T18:28:41.854Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--aac12432-b831-4807-a5b7-ff761bbefd7f", - "modified": "2021-01-06T18:28:41.854Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8c6a4d19-5493-4d3a-8744-f59dc4043c16", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--12d4b824-c076-492c-816c-43682f0c4cb5", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--727e92cd-8b5f-49a9-840a-2360bfa86311", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--467b5685-4673-4759-b470-0e59838782f7", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.857Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a9ac73e0-8001-4d47-9338-73a21e791d99", - "modified": "2021-01-06T18:28:41.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.857Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.891Z", "id": "relationship--b08175d0-e5d2-4d7f-8dc9-cff98a6ecbb8", - "modified": "2021-01-06T18:28:41.857Z", + "modified": "2021-01-13T01:50:51.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.858Z", - "description": "User Access Permissions", - "id": "relationship--10d50932-cf37-4b00-bc5a-fd67e2992fb3", - "modified": "2021-01-06T18:28:41.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.860Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:41.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.860Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:41.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a5521b36-114a-49c4-97c0-6c8123295887", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd2ad0f0-7d39-4b12-a7a0-b2f43124c5d0", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fff5fe25-44f9-4fbb-850d-4f796680b54c", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2eb7ae6a-186d-444b-89d5-018f172320f5", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--90a065ae-7d35-4cc6-86c5-cd4b51e7a4fd", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2e6d8f09-002f-4cce-abc7-0585a412a45f", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f75b8e4f-4141-4ea4-91e2-0feab2dc4978", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:41.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.865Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--ea97ea6c-ab42-4da5-9409-3ff41a3d1a6c", - "modified": "2021-01-06T18:28:41.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.865Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--97dcb7f9-d75d-42db-8b71-f8aec7c9a05c", - "modified": "2021-01-06T18:28:41.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--85529de5-2354-4b3e-b217-4010096c970a", - "modified": "2021-01-06T18:28:41.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f025071b-e0b1-4e48-be5b-60115963cbf1", - "modified": "2021-01-06T18:28:41.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.867Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--448946df-8e69-4f85-866c-202b70bcd6fa", - "modified": "2021-01-06T18:28:41.867Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.868Z", - "description": "User Access Permissions", - "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:41.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.868Z", - "description": "User Access Permissions", - "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:41.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.869Z", - "description": "User Access Permissions", - "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:41.869Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.869Z", - "description": "User Access Permissions", - "id": "relationship--37c025aa-01c9-4dfd-ac7c-c6587540835b", - "modified": "2021-01-06T18:28:41.869Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.870Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--9dcef4ee-a6a0-4660-b9ea-e6da26584f10", - "modified": "2021-01-06T18:28:41.870Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--09267961-6268-43bd-b637-7c9aa8df2a51", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--350a2731-c73d-4d80-9a6f-26c1e3c5b78a", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--e1068eb5-c886-4fae-a8c5-958fa526efc8", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--24c78286-bf0d-48b2-87b4-5dc0f72f79a6", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--1136c5db-878e-4d0f-b548-9fc97adf4c70", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.872Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--45a2ee3f-4cfa-4dbf-a725-870c95d8015a", - "modified": "2021-01-06T18:28:41.872Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.872Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--2edb4f3b-258f-42cb-ab06-f57ec0204557", - "modified": "2021-01-06T18:28:41.872Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--0d1b2a76-5b2b-445a-8aa5-7a326f728245", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--adb0a004-8bd6-4933-b786-44801c4e4e39", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--f0f6b3a5-0667-423d-a2b8-aff3695bd227", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--0070c0a1-2cf3-4c83-9943-8a0e6b5df7e8", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--117ba743-d1b0-49cc-857b-acbc8a1f3e44", - "modified": "2021-01-06T18:28:41.874Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--039eb345-33f9-44e7-8e31-822f7a8f0010", - "modified": "2021-01-06T18:28:41.874Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.875Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--bf4ea2fd-74e0-4147-866f-f02362568cba", - "modified": "2021-01-06T18:28:41.875Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--41ccb3b5-82be-430a-b2dd-cf74f83f03be", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--f6b0ece4-d2d2-46ba-91b1-6d8e534e0217", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--242be42b-3591-4c24-ada2-d60b2c05068d", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.877Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--2442d3d1-c495-4a15-85b4-39162ad8607f", - "modified": "2021-01-06T18:28:41.877Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.878Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--5f54af85-708e-44f8-b32f-2cb3ae433ea2", - "modified": "2021-01-06T18:28:41.878Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.879Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.902Z", "id": "relationship--ffc950c2-818c-48e1-8c56-9fa7a638f543", - "modified": "2021-01-06T18:28:41.879Z", + "modified": "2021-01-13T01:50:51.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--e34fe402-5f0a-4209-b57d-32e69fbed466", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2899eabf-1c83-4045-b80f-a6dd003a0dcd", - "modified": "2021-01-06T18:28:41.880Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--8c28bcc4-5a76-4f04-892d-4d75bb58b065", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--f7b20983-6652-4186-b1a5-d8e6e041bbab", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cc7cc633-5af4-414a-a98e-40489e28122d", - "modified": "2021-01-06T18:28:41.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--b5ed2231-f2b6-46c7-a045-b4f69ea7511f", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--d96f908a-f491-490a-99f3-81f0898fc232", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4a972afb-8825-4d75-9115-a62fe1f87ff4", - "modified": "2021-01-06T18:28:41.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--2f1301b2-019d-4e67-a92b-2b8d475faddc", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--a5c125fa-b841-40bb-ba3b-0960821a5b67", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.882Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0d0d9d87-1ce1-4f5e-93cc-070fb687a6be", - "modified": "2021-01-06T18:28:41.882Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.882Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--756874e0-48d9-4066-9f36-863c9f1421da", - "modified": "2021-01-06T18:28:41.882Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.883Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--dce27408-60af-4549-8be2-12fabccc3f0a", - "modified": "2021-01-06T18:28:41.883Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.884Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--333af2dc-2655-41c3-9b0a-50cf84458060", - "modified": "2021-01-06T18:28:41.884Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.884Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--5773990b-efa0-4679-aae3-608d2ad0d8b6", - "modified": "2021-01-06T18:28:41.884Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:41.886Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--113bb9ba-96e0-4d55-852d-350993b42731", - "modified": "2021-01-06T18:28:41.886Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:41.886Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--370c334d-d223-4d00-b168-8dd19de916f5", - "modified": "2021-01-06T18:28:41.887Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", - "id": "relationship--d5e145d7-adfb-4716-9dc9-f3f3260dee0d", - "modified": "2021-01-06T18:28:41.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--c5d2f265-a89e-4258-9ebe-917959abf088", - "modified": "2021-01-06T18:28:41.887Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--e84ce07a-2cc5-42ba-9847-e20cd50f15ae", - "modified": "2021-01-06T18:28:41.888Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", - "id": "relationship--a98b16bf-5921-4841-b1a2-607ca704e184", - "modified": "2021-01-06T18:28:41.888Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--fc7510ba-4458-45ed-9dae-72a8ad449d09", - "modified": "2021-01-06T18:28:41.888Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.892Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.892Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.892Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.892Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.894Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--7342e29b-5e2b-45db-9aca-5eb2db605886", - "modified": "2021-01-06T18:28:41.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.894Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.896Z", - "description": "User Access Permissions", - "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:41.896Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.897Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:41.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--49193a45-4f61-471a-8c14-9be0a28f17c5", - "modified": "2021-01-06T18:28:41.898Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--e90ef3b2-8461-463e-83f5-9ba3463388b2", - "modified": "2021-01-06T18:28:41.898Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--13f6da62-3a5c-4eeb-acf3-57ec54d4f022", - "modified": "2021-01-06T18:28:41.898Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:41.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--d4b4c8e6-3490-4f50-a8ea-f73de6a79ba6", - "modified": "2021-01-06T18:28:41.899Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--e84820bf-6e33-4255-9914-65d124dcdae3", - "modified": "2021-01-06T18:28:41.899Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--afc6e353-0a18-4aad-8577-7bb26cd5d0c3", - "modified": "2021-01-06T18:28:41.899Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:41.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--91e447b4-1c1c-4d15-908d-8d643c57e6ec", - "modified": "2021-01-06T18:28:41.900Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.910Z", "id": "relationship--6ad05843-49b7-42b8-8656-03ef25dd91b2", - "modified": "2021-01-06T18:28:41.900Z", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--785aec0c-4c35-454d-abf2-3d387e300b79", - "modified": "2021-01-06T18:28:41.900Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:41.901Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--9b97fa56-6b81-4286-aba5-ef3d2d78c3d2", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--6f5d1880-22d8-4141-80fc-1948d2df3303", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--181a63be-3dca-4d7c-bb5e-1c7f691c38be", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--bfbd6c2a-4dc6-4f3f-982b-a8d4d9956356", - "modified": "2021-01-06T18:28:41.903Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--6786103e-4c6b-41db-b5dd-e011b7b149aa", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--9629abd2-7f00-4f5e-a7ae-753a9f967f64", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--5b33e83c-0328-4b85-b440-524261964061", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--76f5d3a4-16af-46bc-815d-12cc8c1f9349", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--90d97570-dc40-4885-aaa9-a7dd42076246", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--23ed1dbe-7ff7-42b3-a094-8a0eba3e94fe", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--e6502658-e627-42a6-b123-c4bf957c2bb9", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.905Z", - "description": "User Access Permissions", - "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:41.905Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.905Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--3c3564b6-eb14-4260-9e4d-a539e44be413", - "modified": "2021-01-06T18:28:41.905Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.906Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--4ac20274-44cb-459d-846a-88c1b2a1fc50", - "modified": "2021-01-06T18:28:41.906Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.906Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--ba29c872-ad48-432e-aac4-a01d0fb0c266", - "modified": "2021-01-06T18:28:41.906Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--797707ff-06d3-46ca-b556-911c3685c186", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--2c8f335b-91cf-48d4-81ad-5b73c7303b4c", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--a9af9ecd-df12-4e39-8542-941f2d395cee", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--0c680e0a-c381-4e1f-a267-f57ab5642eda", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--c0ee039c-e54a-4bce-8cad-07018c2a98d7", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--a215d86e-c648-42c0-9f56-5a3c4ca2fabe", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--6e4901ae-8568-46c0-9b1c-9b59f14b92f7", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--ab457d2c-f3ea-4612-ad95-161e294a48a1", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--9c09e37f-1e8f-4458-9074-8659f393ac88", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--9cc65c0a-7a64-400a-a3a9-02bdf3240bfa", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--40f1f7d4-7233-4742-a820-d8cf0104e232", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--0740eceb-2896-4c38-8f1f-e01e215e6096", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--3eb3b8ef-9beb-438a-a3b6-586dd2be5336", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--51b5b06f-b099-4017-b87a-a89853300f04", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--b32f6a35-c342-482b-a1f5-9c07adbe5e8e", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.911Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--ae710a30-37dd-4c91-9969-d87c0c0d6b25", - "modified": "2021-01-06T18:28:41.911Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--ef39ec84-5958-4650-8be7-07e385b6a596", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--d51f9d60-45c4-4ceb-bde9-abd12863d500", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--773eeb5c-0d60-499e-a6df-dcc469435f66", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--fd0ee300-5c8d-4ca3-9073-472f04369dda", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--d0c7f04b-f0b7-44ac-b70c-d01ee0ae2193", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--15727435-53c7-4f1d-9ea0-38192c2a3aa9", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--fd07d558-da7c-4b21-94f7-854110130c15", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.914Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--8721f57d-6968-4f0c-a90c-2e3aa0c1b520", - "modified": "2021-01-06T18:28:41.914Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.914Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--076e4ef0-e471-4e25-acb8-233aa9ed9962", - "modified": "2021-01-06T18:28:41.914Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.918Z", "id": "relationship--a290264e-1f46-45c4-a46f-cb40a953a488", - "modified": "2021-01-06T18:28:41.915Z", + "modified": "2021-01-13T01:50:51.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.918Z", "id": "relationship--94d85c25-04ff-4b13-8159-1a7103686d8f", - "modified": "2021-01-06T18:28:41.915Z", + "modified": "2021-01-13T01:50:51.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--eb17a6a1-0ace-4d8a-a22f-a9fe7c7cea0f", - "modified": "2021-01-06T18:28:41.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd358cb0-0b10-449c-b7ee-d8d1abf4f803", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--85448e89-c513-4ea0-8b21-ec21ce981066", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8b34f91d-05e3-4929-9bfd-768b9531043f", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e9cfb843-fdd8-43af-bbf1-e5bb241b04e2", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2a71dd45-8a9d-4e2a-acbf-0e54789017f4", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a2e3a301-8f7e-4f98-a25b-91b7c2b72509", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b192bd04-3c75-4183-9f34-f68861822178", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6216261a-c71c-404e-928d-f6e6a9d492df", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--78f43327-d3c3-4d8b-bb27-ae1ed1168524", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b1e3aa8f-33ee-4e87-843d-a3bb5916572d", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3f5f96bc-9eed-458a-8d53-68524873fd13", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--51efc053-6f21-4827-87de-3bbff017a742", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--72b30836-50d3-4ef3-bbf8-be20ba36c26c", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--766486a7-a9bb-4b83-8008-3e503ffa6b29", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b4d32e8-a9d5-4e24-9392-c9568d7effab", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c7289be7-4b9f-4eae-ae16-e3f7c7f49640", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3d56f277-7a35-4caf-8fa1-27f0bf5a1f97", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f03688e5-ca08-4035-91bc-40f8640837cb", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--dee24bb0-b664-4548-933c-f20068daf2fe", - "modified": "2021-01-06T18:28:41.923Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--bedeab32-e0ea-4624-ad1b-fd1ecb5ad372", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--2bf7596c-aa49-4c9b-9aef-db6b5d1a9c4e", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--462cdf0f-792a-464d-bf51-97402dd35e4b", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.924Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--5abd6e83-1fa0-4894-a5df-908000336c41", - "modified": "2021-01-06T18:28:41.924Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.924Z", - "description": "User Access Permissions", - "id": "relationship--8de150b7-6331-4581-a5c8-024dada3ebdf", - "modified": "2021-01-06T18:28:41.924Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--3130eb74-7a91-4729-bd3c-3421adaea415", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--448c8862-dc62-40d6-a4c4-6d39cf97130d", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--4c65565e-f173-477b-8fd5-e082092df64a", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.925Z", "id": "relationship--f1c8cafa-b996-4bfa-98f6-564574a85ffc", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.925Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--6081efeb-cc0b-47b2-bb37-16159e08c447", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--a6ecdd39-5dee-4c80-877e-e014bc470ffa", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--5e6afc0c-780b-432c-aa11-7ad8d9ef8210", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--7f95b061-d1e4-40a1-a1e7-0ae79696145d", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--b5a6cc39-4c8d-402a-ad0b-986d96b45416", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--8f73ba57-627f-4648-9d3c-0253f5bdaef8", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--4fef6667-c7f2-41d2-bde2-c7ec478b3a76", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--6276dbc6-1269-4585-92dc-9693c75349bc", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--8db5adfb-e686-4c64-8faa-b1a43d9fbbfc", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--3ff08917-9cc6-4873-bf07-6a0172886bdb", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--b77aec5b-628f-42fc-8d23-c6b0c510d25c", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--6a1e9f51-4495-4908-bab9-8b91915e456c", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--74e94d04-f70b-4cc0-bbc8-297519c8125c", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.928Z", "id": "relationship--d7da449b-edd3-4a28-8d7c-3ee57f6106ae", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.928Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.928Z", "id": "relationship--045d4fc7-fcbc-4704-b089-02860795f763", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.928Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--d4c4cf32-870e-42b4-974c-edbfa46667ca", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--2fce787b-1bf9-4358-a139-1a109b04bce9", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--5f3405fd-ecb0-4f0d-b3bc-ab3482dfe571", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--05b6af26-3b4a-4157-bbb5-df48805a4ddb", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--e9e85de8-0ef0-4cef-8a71-a5bdaa700f90", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--79ef267f-4658-4bba-a809-db20cd0d8ef7", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.931Z", "id": "relationship--ca8f1552-b89d-4e67-a53d-4eda1d95c45b", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.931Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--6dc11329-1a1b-43a7-b74b-392d9dde9dba", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--5b74652d-8dfb-4b23-9430-1d48653697b0", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.933Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--c7f9015d-2898-46e6-8380-c6c4fe69a747", - "modified": "2021-01-06T18:28:41.933Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.933Z", "id": "relationship--c4fa36b6-5997-4111-bd41-4460d0d190d4", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.933Z", "id": "relationship--10c5cb0f-d2b5-46e6-950a-c0a2ad8043cd", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.934Z", "id": "relationship--dce6a918-740b-4382-8ed3-d1d39082a462", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.934Z", "id": "relationship--e6b7e8c2-6744-4fcb-bbab-dab88c078f02", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.936Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.935Z", "id": "relationship--b0cdfc19-7557-4bfb-8bd9-45a0c6722613", - "modified": "2021-01-06T18:28:41.936Z", + "modified": "2021-01-13T01:50:51.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.936Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.935Z", "id": "relationship--915c6e8a-eaac-4498-bba8-7efdbe2ebb89", - "modified": "2021-01-06T18:28:41.936Z", + "modified": "2021-01-13T01:50:51.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.937Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.937Z", "id": "relationship--d907468d-643b-4603-8b8d-900f3772758e", - "modified": "2021-01-06T18:28:41.937Z", + "modified": "2021-01-13T01:50:51.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.937Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.937Z", "id": "relationship--0dadacf2-99eb-465d-941c-ec4cb2450a91", - "modified": "2021-01-06T18:28:41.937Z", + "modified": "2021-01-13T01:50:51.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.938Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--2287d8ff-db24-4d26-bc45-2ee2a54fc012", - "modified": "2021-01-06T18:28:41.938Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.938Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--51c0c5d6-619e-438f-ad76-0cabb40c2666", - "modified": "2021-01-06T18:28:41.938Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.939Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--d19790e3-0b15-4d64-a5c8-75e3d01f893a", - "modified": "2021-01-06T18:28:41.939Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.939Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.939Z", "id": "relationship--8ab5f062-8f12-4f38-bdf9-e3a2156e1379", - "modified": "2021-01-06T18:28:41.939Z", + "modified": "2021-01-13T01:50:51.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.940Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.940Z", "id": "relationship--d1aaf170-f9fd-4e8a-9ee6-462a9427cd27", - "modified": "2021-01-06T18:28:41.940Z", + "modified": "2021-01-13T01:50:51.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.940Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:41.940Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.941Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.941Z", "id": "relationship--adc5b409-7159-4650-bda3-a76897081d54", - "modified": "2021-01-06T18:28:41.941Z", + "modified": "2021-01-13T01:50:51.941Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.941Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.942Z", "id": "relationship--7db4cda2-59c3-4fc2-a431-9d4799678057", - "modified": "2021-01-06T18:28:41.941Z", + "modified": "2021-01-13T01:50:51.942Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--3684492a-3ce1-4ad6-b5f0-ae8e113b0521", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--7f9163c5-0c10-4cf8-8abc-da26e8d6bbb6", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--e797ad3a-162b-491b-a26b-ab9c8e85045f", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--767fad22-8dc5-4b1e-90e4-957f6e5a6f6b", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--60c1f5f2-4cc7-495f-bbcb-a01158029eae", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--8a256558-9eae-43e2-9493-865e66f2a030", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--de38c05a-3a38-43a1-b614-fc4d811a4fd9", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--289b762b-af1c-4170-84ee-85c87683924c", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.944Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.945Z", "id": "relationship--9b47368a-e92c-46fb-8174-25fe7bf6ac53", - "modified": "2021-01-06T18:28:41.944Z", + "modified": "2021-01-13T01:50:51.945Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--d44d0e6a-193c-4e63-9f65-5eb8c3215b5a", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--6d201db8-49f0-491b-9c70-e2d4559c32c4", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.946Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.947Z", "id": "relationship--06af1129-476d-46ac-a3f9-3db0e6bc4926", - "modified": "2021-01-06T18:28:41.946Z", + "modified": "2021-01-13T01:50:51.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.946Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.947Z", "id": "relationship--efb756d5-635a-4fae-bd74-575952ceaca9", - "modified": "2021-01-06T18:28:41.946Z", + "modified": "2021-01-13T01:50:51.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.947Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--6770cc82-b72a-4551-8aa9-05b124cad438", - "modified": "2021-01-06T18:28:41.947Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--86952b30-706b-41fb-8ccf-265f9cc88a94", - "modified": "2021-01-06T18:28:41.948Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--d896b04f-87b6-41af-822e-d717fdd45152", - "modified": "2021-01-06T18:28:41.948Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74e4cda9-c771-4f61-bb2d-6f9793efe0fc", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--10a6472b-8e3c-4861-9199-01005cd3be1b", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--44af0252-9b7e-45d9-a7a0-14db6a6d92eb", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--aa9acf68-7f81-4e8d-a398-1afba1e3ba4f", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--d55d1485-0005-4d20-99f0-51a23974930f", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--916067f8-8d62-40a4-bdfd-d32c335fbe09", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6f7fc462-90ba-4a22-b31a-695fbbca8abd", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f1a6718b-c160-43ef-b3b3-82736d63c853", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74dd5bce-a52b-4bec-8d08-42eb6304afa7", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.951Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.951Z", "id": "relationship--c68d9981-b8d2-4184-b07b-9f488e5c2ba7", - "modified": "2021-01-06T18:28:41.951Z", + "modified": "2021-01-13T01:50:51.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--8e9f77c8-076f-4b28-8d95-7f20e8c62aa5", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--45b86658-5acb-4265-a0d6-22e4a15d8a3f", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--df430aa2-c88e-4a97-bbff-d52a87cf40cb", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.953Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--89a02bdc-b4e0-4aa9-a003-ed774ee2fc7c", - "modified": "2021-01-06T18:28:41.953Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.953Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--1f0fbd92-fd6f-4856-b3c0-3af6dd8eb682", - "modified": "2021-01-06T18:28:41.953Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.954Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--6a9e4c13-a5e6-4aad-88ce-6743b1bbbc28", - "modified": "2021-01-06T18:28:41.954Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.955Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--3317074d-d40b-41a4-8cf0-8aff4720dbc7", - "modified": "2021-01-06T18:28:41.955Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.955Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--33efc92a-e4c9-42e4-a16a-7ddd8e5d673c", - "modified": "2021-01-06T18:28:41.955Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--25dad28c-ed7d-4978-bf68-25709ae26f20", - "modified": "2021-01-06T18:28:41.956Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--f860e434-7e6c-41d5-b6f2-c003f58d3d6d", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--2567eb16-2586-44c9-9929-6fdf4a685f9e", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--caf16a80-58cc-4800-8947-7406efb6ca8e", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.958Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.955Z", "id": "relationship--320d8581-f9f8-46be-91af-8fab1e6ca259", - "modified": "2021-01-06T18:28:41.958Z", + "modified": "2021-01-13T01:50:51.955Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.959Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.955Z", "id": "relationship--a3a75392-5445-40a0-97c2-2c98a5fc080a", - "modified": "2021-01-06T18:28:41.959Z", + "modified": "2021-01-13T01:50:51.955Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.960Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.956Z", "id": "relationship--ff6d2e93-0e89-4349-ac0b-d23a197e0014", - "modified": "2021-01-06T18:28:41.960Z", + "modified": "2021-01-13T01:50:51.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.956Z", "id": "relationship--1d1464af-ab45-4f36-b6ea-29d89388f987", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--b2a8ee4f-9526-491b-9b38-5f28dac3434c", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--f6126ad3-bc83-4394-8fea-189f650b2849", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--ee5eee9c-cf47-4ee4-bfc8-b106d6a6e89d", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--3847a76b-f0a9-43b6-b31f-0aa9db75d0c9", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7b808d97-7526-4ee5-af5e-f0efffc26c83", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--ce7d4f5d-c862-4a64-9e75-179580885463", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7ca1adff-0e0c-4c14-b2e4-bc2e6a512861", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--0b23aaa1-a035-4cb6-b5be-1ad1009030bf", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7eab1080-516d-43ba-9923-04fa391c2dc3", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--f9b9c6da-5412-4296-a00a-02ca82122ab9", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--fd5cec05-c717-4631-977d-5bda56f8a85d", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--7924454e-77a6-43ff-9610-3ed72422c426", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--760006f1-8250-427f-9760-3d9038c8929a", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--f8476083-ddda-4a14-b0a5-a247fc82ab75", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--4bc62442-ba4a-4143-8d4e-1a88ecf4a75e", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--013807d9-bf31-4872-b7d2-02c653d7fa52", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--08891c51-d158-4f08-81be-e8e911309ff4", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--65d68a6f-8f90-4649-8300-770f0a531f2e", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--c26375a3-0990-425b-ba80-7377b2fdca2f", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--9798b4bc-95aa-4456-a4d6-94456f9b27ee", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.972Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--003eee65-82d9-49c2-8332-b92f854226c6", - "modified": "2021-01-06T18:28:41.972Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.973Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--a73c4d26-a209-4895-bf6f-39fe128811fc", - "modified": "2021-01-06T18:28:41.973Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.973Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--cc804eea-16a5-43df-953d-1f7859bd4530", - "modified": "2021-01-06T18:28:41.973Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.974Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--600dee8c-a17c-414a-814a-b888189bc818", - "modified": "2021-01-06T18:28:41.974Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--9c5f7943-5529-4361-8b88-ef35a8e32cff", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--4ff89de0-427e-4f43-9767-6c4a8f5b833d", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--a6ffbf6f-8af9-4795-a3f1-1cb0726bb9d6", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--c256825d-f7c8-4410-ac4e-78dea87946bd", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--4ba7bb36-8662-4fd5-8f77-b13702c6ebad", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--8895799c-c3c5-4f5c-93b1-81b2d8efd056", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--62062dc9-c6d2-4bd1-b03d-0888686f20d1", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--19557c25-c895-4232-a686-eb7852b3dd23", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--375e79e5-c075-46b9-b812-98ca2d3c0826", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--9456e760-fd50-4ebd-b0f4-1f34f494c112", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--06106a8b-e76e-4fc0-8451-ab774978e663", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--7ac31d41-01da-4324-8ffa-a63f60ec4221", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--1eec13af-fe0d-4e8e-a596-b895db22fd69", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--6c8a8375-9ab2-4c34-8fba-a7192831a7b6", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--3f55f09e-92bc-4b09-81f9-74e2cff6ea2c", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--8669ec42-0f78-487e-b536-4462886d318c", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--a8e3e951-ae0b-4255-86f6-ffb7155c89ef", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--c176da7e-12a0-4fb4-b9eb-3e60ea9c94b7", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--adff285f-81f4-4092-805e-573d6815afe4", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--2fdcc2d3-5759-4aa7-80bc-8a5f27028407", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--c4386841-283e-410a-8e9f-094ed69202c8", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--dea7a262-58f6-4695-ba30-d3517db23614", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.980Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:41.980Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.980Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--47668375-482a-492f-9728-80d083666a4a", - "modified": "2021-01-06T18:28:41.980Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--ee404c57-8958-4ed1-ba70-fecf68addfb5", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--872b5a94-dc22-4136-b6bd-84003f74698d", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--a01b5fd2-8436-4077-beb4-6ab95dbb2830", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--6aed45a2-b472-42b9-9933-179bb0e9abd2", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--ecb43be3-31d3-4164-99b0-46d51090b4dc", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--569d5985-ff2f-497d-8db9-cc8575760dcd", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.982Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--f380bb71-f395-4464-90d3-cc9a66c36e30", - "modified": "2021-01-06T18:28:41.982Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--38309b7f-6d97-465e-b887-ad460a70743b", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6c5d874b-f9da-4d53-8c70-1082c3ce7ca7", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.984Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:41.984Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.985Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0c6e2b71-b6ec-4081-a19f-4ac8a5083545", - "modified": "2021-01-06T18:28:41.985Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.986Z", - "description": "User Access Permissions", - "id": "relationship--3e453be5-8b97-4bb5-91ee-94a7795178fc", - "modified": "2021-01-06T18:28:41.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e62cd748-16fa-4876-93cd-17791c60d272", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--38ee0da5-b9f0-4975-b350-11ab8ba003d8", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2aee4f44-3794-415b-83c3-aa550a669f40", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--153b572b-6563-43fc-b371-3e77128ef2b7", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.988Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--77f5d653-ab6c-4593-aa6f-5e9009972cb0", - "modified": "2021-01-06T18:28:41.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.989Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.972Z", "id": "relationship--b7aa3d2b-81ab-41d3-b42e-9428d4709e62", - "modified": "2021-01-06T18:28:41.989Z", + "modified": "2021-01-13T01:50:51.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.990Z", - "description": "User Access Permissions", - "id": "relationship--b52adc77-25e6-4331-b3a9-f29e3e8c0d84", - "modified": "2021-01-06T18:28:41.990Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--88c41554-fbaa-4a4d-b50c-92729bf1a625", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--3398a45f-95b6-4c00-8146-2035a547ccd5", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--76a79243-d0ae-4991-89af-6433577b39f2", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--05b3c7fc-951d-45ad-85e8-db7c2a467033", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.992Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.975Z", "id": "relationship--fbc1dc54-00d3-4a9b-8d15-59f6b87d7cc7", - "modified": "2021-01-06T18:28:41.992Z", + "modified": "2021-01-13T01:50:51.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.992Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.975Z", "id": "relationship--5f1ebb8f-9aba-43c4-a1cb-44b17054ca3e", - "modified": "2021-01-06T18:28:41.992Z", + "modified": "2021-01-13T01:50:51.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.993Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.976Z", "id": "relationship--5acff5f9-b1d3-4978-a4dd-7c9c2bcdee7d", - "modified": "2021-01-06T18:28:41.993Z", + "modified": "2021-01-13T01:50:51.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.995Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:41.995Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--1ef5050e-834d-4a71-beb6-09e19f1e224d", - "modified": "2021-01-06T18:28:41.996Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--948165d8-282d-4e3c-b852-d2c026391693", - "modified": "2021-01-06T18:28:41.996Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--62e7e3fa-60b9-46dd-8ca3-0729c70ec9ac", - "modified": "2021-01-06T18:28:41.996Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--ce461fc0-792e-4e9a-86b8-3282df6d02b6", - "modified": "2021-01-06T18:28:41.996Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--18a03be2-1432-44bd-9145-5ac00f6ee8b2", - "modified": "2021-01-06T18:28:41.997Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--2434c1ae-2144-4514-9a70-74a43d9f23e7", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--dee90e48-b31d-4173-ad7a-187d6a8a346c", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--f29d547a-5c3d-4b7a-9135-28e0717add7e", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:41.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:41.998Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--73f71313-f51b-4847-bc7f-4a4e61c20f05", - "modified": "2021-01-06T18:28:41.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.999Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--899926ba-9981-4f42-a2d5-48c2e80a0ab8", - "modified": "2021-01-06T18:28:41.999Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--5906e40b-10f7-4f36-822d-d6a17ba89518", - "modified": "2021-01-06T18:28:42.001Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--d07ef5d2-d603-42b4-9029-8675589da47e", - "modified": "2021-01-06T18:28:42.001Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.001Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.002Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--6cc55af2-abb4-41d6-8cba-e8b34298b78d", - "modified": "2021-01-06T18:28:42.002Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.002Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:42.002Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.003Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--85920706-ff0a-4944-9883-88740b932d35", - "modified": "2021-01-06T18:28:42.003Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.004Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:42.004Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.004Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--7e2bc859-0579-4c3c-8297-23c440fee328", - "modified": "2021-01-06T18:28:42.004Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--68b2218c-da71-4854-bbfc-bc27f286ccc1", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--76e0294f-749c-4044-b80c-132cdbc4b10e", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--88480167-f9d5-4cce-aa4b-9e15f98bf20f", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--71b88164-a923-4f65-913d-2ebaece59cfb", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fe78983d-6080-4bff-8abe-1b291d20f370", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fc0eee43-2c9d-479c-9e41-d0c35cfe723f", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c32b4a7f-2f35-4d54-9e1f-26209a82d707", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.008Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:42.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--79e945fb-e00b-49ae-8b1f-36165ca52f16", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8499cd1c-6245-4e65-9a98-295b9a727bd9", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e5141746-d8db-4085-9de8-6417faaaac4f", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.983Z", "id": "relationship--a1074983-5f31-4262-bd53-52d0bb0db978", - "modified": "2021-01-06T18:28:42.009Z", + "modified": "2021-01-13T01:50:51.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.010Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:42.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.010Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.983Z", "id": "relationship--665a6c15-a71e-4384-89b2-2bdf3c469205", - "modified": "2021-01-06T18:28:42.010Z", + "modified": "2021-01-13T01:50:51.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.011Z", - "description": "User Access Permissions", - "id": "relationship--1754fef6-9f78-4c99-971f-05c73c5a3cea", - "modified": "2021-01-06T18:28:42.011Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.012Z", - "description": "User Access Permissions", - "id": "relationship--e89a2613-d7b3-4c50-81fe-1931547ab434", - "modified": "2021-01-06T18:28:42.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.012Z", - "description": "User Access Permissions", - "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:42.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.013Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:42.013Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:42.014Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--8f8797c0-b508-4f3e-a5dd-81612ba7842e", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--0aa017ba-fcad-481c-95a3-387d296cc1cd", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:42.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--3841bcf7-71ec-469d-b9ad-be24ff47e918", - "modified": "2021-01-06T18:28:42.015Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:42.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--ed4cf110-b14d-43d8-b014-31aff822422f", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--c4dad0fb-5bbf-46c8-a82c-de176c8bc4e6", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--b5b0c903-df01-4388-b05e-5c4930759ca3", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.017Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.017Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.018Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.987Z", "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:42.018Z", + "modified": "2021-01-13T01:50:51.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.018Z", - "description": "User Access Permissions", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:42.018Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.019Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fa9e5fd-a2a0-454a-9fff-11e04965efa9", - "modified": "2021-01-06T18:28:42.019Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.019Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0b3fa5f0-e96c-4a37-8ca2-c96f1af121a0", - "modified": "2021-01-06T18:28:42.019Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--a13be02d-4e56-4895-8b9a-d24360e490c6", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--bc500f02-a190-4afa-be35-85d415017f05", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--9862d596-a093-4f7e-9bef-425971eff646", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--0ae28d1f-bb99-4913-b4ca-48de4fe5d2de", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--110be9f0-b3f8-463e-9bf2-3b379e8dba5d", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--e86996f1-2180-4300-a382-1777cd0b07b5", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--fe9fcdcf-13a2-45c1-8256-72119869c2e2", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--c4f8de43-4863-4662-a51b-2b8155c834bd", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--6ab296d4-676d-4f81-b527-6233e09111e8", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--c44373be-ff9d-469d-a544-15b5bf6f7d52", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--35646cdd-bbd8-459e-bdca-5365fe9745ce", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--2dd44965-2d49-4301-9b96-1012dcab25d2", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.022Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--000cbab0-b5ae-45f7-8615-1b2b7b384556", - "modified": "2021-01-06T18:28:42.022Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b427cdfd-0c5f-4a45-8449-1182821880d6", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.990Z", "id": "relationship--a720107b-fcfc-4e36-8dd0-abb514f24a8b", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.990Z", "id": "relationship--0820061b-4e98-4cb0-a1d1-75b824a2f95d", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d8b21ba0-fdf3-44cc-8a81-39502097441a", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.991Z", "id": "relationship--104ad1f3-b9d1-471a-be97-2c91782b2c8a", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.991Z", "id": "relationship--70db27a0-0502-4697-afb9-d945eac8593f", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.024Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--8ef837fa-82fd-4a09-b9c5-cf4587fc751a", - "modified": "2021-01-06T18:28:42.024Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.024Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--48b72092-2c87-4975-a1ed-00a9570a9e4b", - "modified": "2021-01-06T18:28:42.024Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.025Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.025Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.025Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--7a5a2afe-ab11-4026-8c8c-7ff4d51f19b5", - "modified": "2021-01-06T18:28:42.025Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--58fc17b8-c938-496c-86ef-567346ad1012", - "modified": "2021-01-06T18:28:42.026Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--45646a67-651a-41eb-bcbd-1678c2fef299", - "modified": "2021-01-06T18:28:42.026Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--b3be3766-2c4d-426e-9cf8-b7df36492a95", - "modified": "2021-01-06T18:28:42.026Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:42.026Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--f94191bb-f49b-49a4-a105-ed49b6f97602", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--a45ba5a6-2fab-48af-aa2f-80c2aa08e04f", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--2c3e83b8-9140-47e2-b744-340a107dbde6", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--005d51dd-a94d-4cf4-8c04-361068f9836e", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6a7e7dce-6b32-4e8c-9b64-f4e966b8ab47", - "modified": "2021-01-06T18:28:42.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--792c8a54-25f9-406f-a7d5-8bc44d9308e2", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--5756dafb-8f00-48eb-a891-905413d54888", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--11d87255-1c10-4afa-8d79-80c0a0afeb65", - "modified": "2021-01-06T18:28:42.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e9b1fd78-2697-482a-9a86-64fb0dabe753", - "modified": "2021-01-06T18:28:42.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--b975bc18-55df-4e2d-b849-e267695455a6", - "modified": "2021-01-06T18:28:42.028Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--a1f92a70-b798-465c-af86-aef2013eff78", - "modified": "2021-01-06T18:28:42.028Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--82394a14-bf93-4c09-af4e-8e4bd26bccfe", - "modified": "2021-01-06T18:28:42.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--c88a2400-4ab7-4afa-9e85-a39c613fca90", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--73cfa74f-2c4c-4eed-8a76-8a2ec4a90931", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--e929a8cd-cac5-4d90-b566-5ffb1748d91f", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--4300d756-4f0b-4b70-8098-5fea6021ca9a", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d8cdb86d-21bb-4cf1-92b4-b245e833dad5", - "modified": "2021-01-06T18:28:42.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--e5937d94-3a67-4941-b0b4-1ec793977a8d", - "modified": "2021-01-06T18:28:42.030Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--139d8a79-d5c6-4e62-846f-846d0be96a51", - "modified": "2021-01-06T18:28:42.030Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:42.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--95dea599-40d9-400f-96e4-7b94ba8107aa", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--0ed95861-5054-4bec-aaf9-a66947f9eebf", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--d157a036-7a68-4766-9812-d74361a199a2", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--03261c31-ef79-496d-b561-8513ad0c2e34", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.033Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--cc223b01-98c7-42c3-badf-448a69cc7483", - "modified": "2021-01-06T18:28:42.033Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.033Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--a5c962e9-03e2-4d1e-8586-f68249f98251", - "modified": "2021-01-06T18:28:42.033Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--46f762f9-17b6-4743-aba6-b47e8eaf1979", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--dd16f387-14f3-4a36-b574-37176164490f", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--f372a6be-4ed1-469c-965c-c797047f06d7", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--d90d094c-52ea-4603-82a4-362e2677a83d", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.035Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:42.035Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.035Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.035Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--4c7c0818-3f9e-4fe1-b3ba-6c26fe12ac68", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--4f1b1e6c-77fa-4ae2-9d71-2f54cf69f533", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.037Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.037Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.038Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.000Z", "id": "relationship--b5c9b3ce-e4e5-4f21-98c6-20cce56098dc", - "modified": "2021-01-06T18:28:42.038Z", + "modified": "2021-01-13T01:50:52.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.038Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.000Z", "id": "relationship--d4f0f4e4-169d-415a-b93d-858c6f4f8774", - "modified": "2021-01-06T18:28:42.038Z", + "modified": "2021-01-13T01:50:52.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.039Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--5fda0916-3efa-41df-beab-ecbe789a946f", - "modified": "2021-01-06T18:28:42.039Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4d6b42c1-becd-4109-999c-7e878655cfb6", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--baee3277-7779-4904-9f7b-a47d2fb60c38", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--279f6a00-a6a3-4c3d-9831-a5e4621f7dc2", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--153fe739-71c0-492d-aeed-76845ca9e020", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--d0e02db3-92c9-4182-91de-8f73229a77bf", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--dfa46476-46b3-4384-9d34-a840971ff87d", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:52.001Z", "id": "relationship--b5dc6111-ad5f-44b9-b38d-5c27e613b146", - "modified": "2021-01-06T18:28:42.041Z", + "modified": "2021-01-13T01:50:52.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--585e7b4b-3c5b-4fca-bd4d-ea4d8f80eaf6", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--263fbe27-db88-4766-872b-ff99a7932290", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--e828fde7-143f-467a-aa2b-26a3ba424b07", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.043Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:52.002Z", "id": "relationship--9b218471-c7fc-4450-8ad7-85d373aca775", - "modified": "2021-01-06T18:28:42.043Z", + "modified": "2021-01-13T01:50:52.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f986bdb9-3a86-4005-95d9-a2855ca64686", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4034116c-170a-4e2b-8196-7233107d88d7", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--8d1e43d7-e44d-4026-be88-b4f56689397d", - "modified": "2021-01-06T18:28:42.045Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.045Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.046Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:42.046Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.047Z", - "description": "User Access Permissions", - "id": "relationship--63b8669b-7ad5-4ecd-aa3a-20b12f6cd2e0", - "modified": "2021-01-06T18:28:42.047Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.048Z", - "description": "User Access Permissions", - "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:42.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.048Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.004Z", "id": "relationship--d2b7f990-b7b1-470e-9aea-de681d15fff0", - "modified": "2021-01-06T18:28:42.048Z", + "modified": "2021-01-13T01:50:52.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f8e65a65-b98d-4233-868d-7400ce74ab93", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--081cac6d-814a-46ed-9b76-babc1dd83ce7", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.005Z", "id": "relationship--6a2ca4b7-9e25-4589-90b0-943870fc0bdc", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c6cdf977-829b-4325-a2e8-8efadafde751", - "modified": "2021-01-06T18:28:42.050Z", + "modified": "2021-01-13T01:50:52.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d064a3c4-e0b2-4f57-b427-6787c1d292f9", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.051Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:42.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.006Z", "id": "relationship--e6b0b5d0-01ac-4c3e-8126-811d3315c46b", - "modified": "2021-01-06T18:28:42.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4b9f278c-7020-400b-8bc3-8d664760a717", - "modified": "2021-01-06T18:28:42.052Z", + "modified": "2021-01-13T01:50:52.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e81c4ac7-a94c-4d03-999b-5e8d95d4d5da", - "modified": "2021-01-06T18:28:42.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.053Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0adbe058-94d8-445d-a25e-bf917de7e6eb", - "modified": "2021-01-06T18:28:42.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.053Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.007Z", "id": "relationship--039e5143-4db4-4849-8fa0-a50cc7e52efd", - "modified": "2021-01-06T18:28:42.053Z", + "modified": "2021-01-13T01:50:52.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.054Z", - "description": "User Access Permissions", - "id": "relationship--966e0b75-0ea4-469f-8213-b1961c40f27b", - "modified": "2021-01-06T18:28:42.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--a9645d7c-91be-45b7-af36-571530764d95", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--78d49cc4-24a2-4c0b-87d6-a9dbd40713bb", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--f53d9bd8-1a9e-4186-a12d-7e2d52c52446", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--33e102b3-9fa6-427c-8a67-edddf2a30e12", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.057Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--6f45b031-e8a8-44db-aa32-1d0682f1902c", - "modified": "2021-01-06T18:28:42.057Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--4b0d5f22-3c0b-4f68-91cb-dc09577a6dbe", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.059Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.059Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.059Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.059Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.060Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--3375cfc9-9215-4067-8c36-e39c0f2a7875", - "modified": "2021-01-06T18:28:42.060Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--56094c2e-ccb9-4397-8f65-28170f97fd1b", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--a9037fea-0de7-453e-97ff-9206b757c1ee", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--73f3744e-7334-48fa-9ce7-e627c6ad4512", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--0ef7de69-903f-480e-bf5f-18bb1e0d85c0", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--bc14b90f-a998-4303-822b-6f6223ca8fbf", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.064Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.064Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.064Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.064Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.065Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.065Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.065Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.065Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.066Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.015Z", "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.066Z", + "modified": "2021-01-13T01:50:52.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.015Z", "id": "relationship--dd81bf52-c1ef-4b63-ad9a-9fa5c1a0357e", - "modified": "2021-01-06T18:28:42.068Z", + "modified": "2021-01-13T01:50:52.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", - "id": "relationship--7bc9a679-c3ff-4cca-bd97-2041eff9ad89", - "modified": "2021-01-06T18:28:42.068Z", + "created": "2021-01-13T01:50:52.016Z", + "id": "relationship--4a9e9210-5f05-432d-992e-bfd641531a8b", + "modified": "2021-01-13T01:50:52.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", - "id": "relationship--4a9e9210-5f05-432d-992e-bfd641531a8b", - "modified": "2021-01-06T18:28:42.068Z", + "created": "2021-01-13T01:50:52.016Z", + "id": "relationship--782152d1-5ae5-41a8-b342-b60811bf0b18", + "modified": "2021-01-13T01:50:52.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--987828e6-25a6-40b0-a085-c252b2a93cc9", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.017Z", + "id": "relationship--a5c5a97f-a9a4-46ae-9191-c1299c8ecb61", + "modified": "2021-01-13T01:50:52.017Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.018Z", + "id": "relationship--0f99df9a-7d64-439c-b593-0efa4f186338", + "modified": "2021-01-13T01:50:52.018Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--da918df2-ae58-4317-8d51-280bbdcbd4f6", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.019Z", + "id": "relationship--e6943807-201a-476a-acc4-552fc22bf4b5", + "modified": "2021-01-13T01:50:52.019Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--6240d0f4-c8b6-4be4-913d-b95b84067b06", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.070Z", - "description": "Continuous Monitoring", - "id": "relationship--782152d1-5ae5-41a8-b342-b60811bf0b18", - "modified": "2021-01-06T18:28:42.070Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--8e3e703f-b5ba-4e85-a608-68a9570a0a5e", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.070Z", - "description": "Continuous Monitoring", - "id": "relationship--bdb744dd-dea2-4c02-bef1-2a231cb03f4f", - "modified": "2021-01-06T18:28:42.070Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--bce016d1-3df1-49f3-b51c-7dfbf12a44b8", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a5c5a97f-a9a4-46ae-9191-c1299c8ecb61", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--e0646e39-5f2a-44bb-bf3a-ff44c38ed9a0", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.021Z", + "id": "relationship--31490423-a6eb-4eb1-abec-2c10bb07f8e5", + "modified": "2021-01-13T01:50:52.021Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9059dc2-343b-4934-967e-82d61ea04371", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--0d2cbec7-2d28-46ef-bf9f-06fdd71561fd", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--088ba60b-98f1-45da-86c2-fb2a6663ba46", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--4b3f0952-02ec-41a4-9b8c-a42351eeeb18", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--a4afcf8c-923e-4621-b0af-c452d3442a32", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e3550930-fc87-42d1-9a58-c132af707837", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--68c0fbdf-9869-497e-b9f6-06dcf21ede76", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--7b4213d3-1f72-43cf-aa59-c75ec764bd97", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0f99df9a-7d64-439c-b593-0efa4f186338", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--4e0cd895-2962-4c16-ab2b-5efcd841353c", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--88eae706-58d3-49d2-897c-77c44e92bac6", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.025Z", + "id": "relationship--4145c7a1-651e-438b-a4ff-2680787dae39", + "modified": "2021-01-13T01:50:52.025Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8878cd0b-e3a1-4a01-9322-1a9fc5b7f66a", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.026Z", + "id": "relationship--a46ad5d9-b618-4873-afe1-dd02ef6e01f3", + "modified": "2021-01-13T01:50:52.026Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.029Z", + "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", + "modified": "2021-01-13T01:50:52.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.029Z", + "id": "relationship--e40a07f2-ce5a-4ad8-a4d8-6c9345da8b6d", + "modified": "2021-01-13T01:50:52.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.030Z", + "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", + "modified": "2021-01-13T01:50:52.030Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.031Z", + "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", + "modified": "2021-01-13T01:50:52.031Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.032Z", + "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", + "modified": "2021-01-13T01:50:52.032Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.033Z", + "id": "relationship--64a8d3b7-1b19-4be3-b793-3a089b94cfe4", + "modified": "2021-01-13T01:50:52.033Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a6219c53-a278-417c-8f1b-e014c49a9b72", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.034Z", + "id": "relationship--cd695fc0-eeef-447f-becd-780e0f9a620a", + "modified": "2021-01-13T01:50:52.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.034Z", + "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", + "modified": "2021-01-13T01:50:52.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.074Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e6943807-201a-476a-acc4-552fc22bf4b5", - "modified": "2021-01-06T18:28:42.074Z", + "created": "2021-01-13T01:50:52.035Z", + "id": "relationship--d0dc263b-bf8c-459f-b931-459a7d6536f3", + "modified": "2021-01-13T01:50:52.035Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.074Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--ca12d7e5-0c28-411d-88b8-22575c6445d3", - "modified": "2021-01-06T18:28:42.074Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--1a5b0de0-7c0a-4708-a478-657c73a75c75", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--6240d0f4-c8b6-4be4-913d-b95b84067b06", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--02421603-75e2-4aec-8c1d-974d87d7f9dd", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9c929bbf-e489-4f1a-8949-0a9c20f098b4", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--c93ff86e-43f4-40c7-be7d-48e7fa3fd552", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--363525ba-b454-45f8-b636-aea13db5f95a", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bf26bf8d-c9b0-48d2-bd16-900f5dcc9470", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--33aec9bf-a3a7-43d2-8483-132c421dba52", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--95289d8d-141c-4099-b32a-770aee094ed5", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--8e3e703f-b5ba-4e85-a608-68a9570a0a5e", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--baa9f38a-6f38-4aba-9a66-6c6a6cb2b941", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--8b8699d3-c6f4-46c9-b6e0-cb59f6674549", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--0f6a51a3-d37e-4e46-8057-b95a6462a0df", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bce016d1-3df1-49f3-b51c-7dfbf12a44b8", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--6cf6ed5f-3d7e-4006-96bf-13a148958aa2", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--2d03dd06-9be0-4a2b-8a2d-5998468c6015", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--3145a297-7511-43d2-a529-c4bfc143d080", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e0646e39-5f2a-44bb-bf3a-ff44c38ed9a0", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--71e96109-6c19-428b-91b5-d90ed29d4f70", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--3c26cd38-9bb3-4f19-8677-198ecac6fb8e", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--1f512c08-c8e0-4577-a5a1-afa304dcfca7", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--667d406f-b54c-45ec-8bcd-54bca6f09522", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--da4ea6b2-b159-432d-b1c0-84c5affd26fc", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--4ef78ba8-22f7-4e56-b3c4-0c6803858d56", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--b5091ab0-95bf-47ca-9fea-3a4543010bb4", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.077Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--31490423-a6eb-4eb1-abec-2c10bb07f8e5", - "modified": "2021-01-06T18:28:42.077Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--65d5aa5f-e0dd-4c2c-be58-75a53335a9e4", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.077Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--dbebf656-c22c-4acd-b11a-c06cbeb2e720", - "modified": "2021-01-06T18:28:42.077Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--4d4ca50a-5a86-478a-9a56-fe1d6633d793", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0d2cbec7-2d28-46ef-bf9f-06fdd71561fd", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--a7ff55ea-22d6-4ac5-8ba5-772291ec34c7", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8bd55ee2-7322-496c-a012-e8cc2421eef9", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--42a71968-8224-4295-92e9-fd430e8e1735", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4b3f0952-02ec-41a4-9b8c-a42351eeeb18", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--53455aa0-c11a-4ddb-8bac-b31f1ed337ec", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7f4d6fe-ce51-44ea-9887-330285e599b6", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--697b52ec-e071-4cd1-bbcf-615dae01e048", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--c099387d-e5bb-40cf-b566-98cd4b546bd8", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fbcdd028-a157-419a-af7d-7410b0645ac4", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--2eabf610-937d-4c7f-a82b-516be9cfebb9", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--e16ce189-c502-4a61-83de-514702394691", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a4afcf8c-923e-4621-b0af-c452d3442a32", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.040Z", + "id": "relationship--d72bea57-a91e-493c-aba9-e6674f0c0ec0", + "modified": "2021-01-13T01:50:52.040Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--120fb7d5-74a3-4e12-958b-00e2efd2b0eb", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.040Z", + "id": "relationship--fe338394-a81f-4b16-8afa-f2d8a34a1ade", + "modified": "2021-01-13T01:50:52.040Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--68c0fbdf-9869-497e-b9f6-06dcf21ede76", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.041Z", + "id": "relationship--a6cef958-8204-4ec2-b25c-e1f194ebcad9", + "modified": "2021-01-13T01:50:52.041Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--0764ed9f-3fa1-4771-875e-40d9227f9d92", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7b4213d3-1f72-43cf-aa59-c75ec764bd97", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--09f58eaa-d7bc-474a-bc1f-84da02f3bbf8", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cd352ead-32fa-4524-b31b-add76f7175a4", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--ce9853b0-e36f-4399-9388-2f1ea1df8770", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.043Z", + "id": "relationship--b75c9cbe-4283-42bb-8b93-140764bdd620", + "modified": "2021-01-13T01:50:52.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.043Z", + "id": "relationship--676e316f-bdf3-4b0b-895d-c9562d3084f5", + "modified": "2021-01-13T01:50:52.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--1ffc3263-bfc3-419c-922c-40b39136847a", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4e0cd895-2962-4c16-ab2b-5efcd841353c", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--a940ddaa-aa06-4af3-8290-dd3f813cbf69", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a219b633-a1bb-46da-b054-320fcc814288", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--d5b2567f-c1c9-4c78-93d2-832ba306f427", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--dd75a408-d221-4bf0-b2f9-e894fd107b48", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--f69316e3-fbe4-4149-809c-60f413f3592e", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9962eb64-e6db-43c4-b9e1-4ec791d81c40", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--4712b465-8d1b-47f2-b5e3-b3b7c14b99db", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--4145c7a1-651e-438b-a4ff-2680787dae39", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--aba9035b-4ba7-416e-b910-fdc32c274d35", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--f4f33f00-e218-43af-b821-c148001db0be", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5ce52437-8796-4c52-a497-649f7d55bd72", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--9cc8e575-ad64-4ed6-b8bf-33c6e957ca3d", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--42d03166-40e3-4ce9-96eb-f3e7e6b50f57", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--03ddaf6b-75c7-40bd-9add-259f2020e339", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c54c514-377a-426e-a993-b44568d6da3a", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.085Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a46ad5d9-b618-4873-afe1-dd02ef6e01f3", - "modified": "2021-01-06T18:28:42.085Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.085Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--51107fe1-a080-49ba-a6f8-066d2e239d43", - "modified": "2021-01-06T18:28:42.085Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--f4e0d676-1cfe-4776-8db0-b0db863b3424", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--d5b086ed-6dc5-4d29-abc5-ebbb5f3109a0", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--285d00a4-dfab-4f54-a7ae-3063fe849991", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--c0f5768e-7078-416e-8a43-06f843e1a00c", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--f69dfdce-1d62-44bd-8c66-49b4ffe62da8", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--1f76f4d1-58ee-4d19-9661-8796a2f5b69e", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--de4ef442-8dae-4a95-a2bd-b4e7dadc5fdc", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--bdc3e37a-fa23-491c-b522-e54b48082d8e", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--0079e813-75b5-468b-8484-45a0d7c5f649", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--dacdfac9-e0f1-4527-8d37-5685e7a8bd12", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--f8614b5b-119d-4e74-8e77-777c932e0cc8", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b9bfbe9b-5ff0-4f3f-821a-7d306308fa64", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--57b098e7-49eb-4727-b091-afa9feeaabd9", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--07c8418f-d4a5-4bbe-9533-dcddc5b37a36", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--cfe51f97-d038-4a08-9495-7d301df863f2", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.089Z", - "description": "Continuous Monitoring", - "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", - "modified": "2021-01-06T18:28:42.089Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.090Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e40a07f2-ce5a-4ad8-a4d8-6c9345da8b6d", - "modified": "2021-01-06T18:28:42.090Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.090Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:42.090Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.091Z", - "description": "Information System Monitoring", - "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", - "modified": "2021-01-06T18:28:42.091Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--f20353de-df72-4265-916b-1c285b3e9b50", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.092Z", - "description": "Boundary Protection", - "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", - "modified": "2021-01-06T18:28:42.092Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--1585b2b2-e9fd-4b66-b96a-2c0c358f0dd5", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--1cefe2ac-a722-437b-be04-9b7486c37717", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--16ec5ed9-18b5-46c4-b6c4-8a2c86555a29", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--c0057c9c-6cb6-4328-ac14-350fd45895d8", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--f0b7516d-64cb-42b0-9c0d-ddb5b2ff39d2", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.094Z", - "description": "Continuous Monitoring", - "id": "relationship--64a8d3b7-1b19-4be3-b793-3a089b94cfe4", - "modified": "2021-01-06T18:28:42.094Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--310e0b8c-bfa3-4b53-ba42-5da8eb07cc59", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.096Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--cd695fc0-eeef-447f-becd-780e0f9a620a", - "modified": "2021-01-06T18:28:42.096Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.097Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", - "modified": "2021-01-06T18:28:42.097Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--d0dc263b-bf8c-459f-b931-459a7d6536f3", - "modified": "2021-01-06T18:28:42.098Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--dd5ff4ad-840a-482c-8e6a-f00a28f8d1c7", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--d999317b-c24b-4ee3-ae38-63ea63abd7ca", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--ef87ea0e-bc86-44ed-aff7-03603bec16c8", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1a5b0de0-7c0a-4708-a478-657c73a75c75", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--32463329-793c-4283-a0d5-491aa0da34c0", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--02421603-75e2-4aec-8c1d-974d87d7f9dd", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--b65d2f49-d765-44d8-9193-268e1e6f9e43", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c93ff86e-43f4-40c7-be7d-48e7fa3fd552", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--95e41c6a-d796-460a-953a-4cc2255fbb8a", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--78808e3c-a0c4-4502-8349-a073f951e3c1", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.055Z", + "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", + "modified": "2021-01-13T01:50:52.055Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--363525ba-b454-45f8-b636-aea13db5f95a", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.056Z", + "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", + "modified": "2021-01-13T01:50:52.056Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--33aec9bf-a3a7-43d2-8483-132c421dba52", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.057Z", + "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", + "modified": "2021-01-13T01:50:52.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--95289d8d-141c-4099-b32a-770aee094ed5", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.057Z", + "id": "relationship--17488523-dc46-4a5b-bc02-d60d52a90275", + "modified": "2021-01-13T01:50:52.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--d7a7d73b-8a4f-43b2-8146-d02aade10de1", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.058Z", + "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", + "modified": "2021-01-13T01:50:52.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--baa9f38a-6f38-4aba-9a66-6c6a6cb2b941", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.058Z", + "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", + "modified": "2021-01-13T01:50:52.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--0f6a51a3-d37e-4e46-8057-b95a6462a0df", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.059Z", + "id": "relationship--b3f7588e-0881-4c87-b5ed-1631a7c878ce", + "modified": "2021-01-13T01:50:52.059Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--6cf6ed5f-3d7e-4006-96bf-13a148958aa2", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.060Z", + "id": "relationship--bd104fa4-0442-476e-8568-dcea38cbe800", + "modified": "2021-01-13T01:50:52.060Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--13fad715-8eb8-448e-8edc-1057ea918910", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.060Z", + "id": "relationship--a5f8e88b-8e5d-4ad1-8664-baf8ef7ba407", + "modified": "2021-01-13T01:50:52.060Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--3145a297-7511-43d2-a529-c4bfc143d080", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.061Z", + "id": "relationship--065cbd74-eb74-4467-a647-423e66959499", + "modified": "2021-01-13T01:50:52.061Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--71e96109-6c19-428b-91b5-d90ed29d4f70", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.061Z", + "id": "relationship--a60e74ce-c1ee-4225-a4e9-35e4afcb966b", + "modified": "2021-01-13T01:50:52.061Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1f512c08-c8e0-4577-a5a1-afa304dcfca7", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.062Z", + "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", + "modified": "2021-01-13T01:50:52.062Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--7386085f-64c0-4efd-aa6f-0f61f9de334b", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.063Z", + "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", + "modified": "2021-01-13T01:50:52.063Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--667d406f-b54c-45ec-8bcd-54bca6f09522", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4ef78ba8-22f7-4e56-b3c4-0c6803858d56", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b5091ab0-95bf-47ca-9fea-3a4543010bb4", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--80cad2b9-f9df-43de-9a99-4e7b0aff106e", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--daea9b13-5d55-4de9-b0f9-58d44b9ae1b8", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--65d5aa5f-e0dd-4c2c-be58-75a53335a9e4", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.066Z", + "id": "relationship--5bb7c08d-c7d2-4ccd-9931-c901723dae01", + "modified": "2021-01-13T01:50:52.066Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4d4ca50a-5a86-478a-9a56-fe1d6633d793", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.067Z", + "id": "relationship--76bece35-7fc5-44ce-af0e-9ec8450eb0f9", + "modified": "2021-01-13T01:50:52.067Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--a7ff55ea-22d6-4ac5-8ba5-772291ec34c7", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.070Z", + "id": "relationship--feadcf2c-3e34-42e0-8656-072cbb8bfdb4", + "modified": "2021-01-13T01:50:52.070Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--a47cda8c-2761-4044-8380-0259fd4e83ff", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.070Z", + "id": "relationship--7c424e1f-0a3c-4e4a-a377-4248e094229e", + "modified": "2021-01-13T01:50:52.070Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--42a71968-8224-4295-92e9-fd430e8e1735", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--53455aa0-c11a-4ddb-8bac-b31f1ed337ec", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--697b52ec-e071-4cd1-bbcf-615dae01e048", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--e311c7c6-e417-4789-9be8-e25b97d3ba01", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--326c8894-1a36-4be8-8484-085be16e7e82", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--ea0dddbb-29f0-4963-9011-0358f603691c", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c099387d-e5bb-40cf-b566-98cd4b546bd8", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--669f8711-5259-4fda-ad9e-5bd3264ec48a", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2eabf610-937d-4c7f-a82b-516be9cfebb9", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.072Z", + "id": "relationship--475a723a-8911-4310-b0fa-5006dc4cfaa9", + "modified": "2021-01-13T01:50:52.072Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--e16ce189-c502-4a61-83de-514702394691", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.073Z", + "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", + "modified": "2021-01-13T01:50:52.073Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--05220038-1046-48aa-8267-9ef1af0c7f3c", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.074Z", + "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", + "modified": "2021-01-13T01:50:52.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.106Z", - "description": "Protection of Information at Rest", - "id": "relationship--d72bea57-a91e-493c-aba9-e6674f0c0ec0", - "modified": "2021-01-06T18:28:42.106Z", + "created": "2021-01-13T01:50:52.074Z", + "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", + "modified": "2021-01-13T01:50:52.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.106Z", - "description": "Protection of Information at Rest", - "id": "relationship--fe338394-a81f-4b16-8afa-f2d8a34a1ade", - "modified": "2021-01-06T18:28:42.106Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.107Z", - "description": "Protection of Information at Rest", - "id": "relationship--a6cef958-8204-4ec2-b25c-e1f194ebcad9", - "modified": "2021-01-06T18:28:42.107Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.107Z", - "description": "Protection of Information at Rest", - "id": "relationship--338a3145-b978-40c7-b728-3438905283c5", - "modified": "2021-01-06T18:28:42.107Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.076Z", + "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", + "modified": "2021-01-13T01:50:52.076Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--0764ed9f-3fa1-4771-875e-40d9227f9d92", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--8ff44d11-ec3b-4ed2-8f63-d3f30904d04d", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--e90ef3b2-8461-463e-83f5-9ba3463388b2", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--69406761-87e6-4220-a614-ab028ed18a65", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--13f6da62-3a5c-4eeb-acf3-57ec54d4f022", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--c764917a-a83b-424d-8c81-3d7fb6b1f635", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--6ec71e08-7ca0-4cfc-b926-d760a3f952ec", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--09f58eaa-d7bc-474a-bc1f-84da02f3bbf8", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--ee9ee26f-12fa-47f6-b595-ad490c647f07", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6ad05843-49b7-42b8-8656-03ef25dd91b2", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--3d24cfb7-4c8e-42f8-81fa-79de8ef37b87", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--785aec0c-4c35-454d-abf2-3d387e300b79", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--d74a517c-2f5b-479a-b57c-2255bf9d9007", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--42be3081-0b6b-4ea4-8bfa-c86abf3f8c51", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ce9853b0-e36f-4399-9388-2f1ea1df8770", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--1218a126-7456-4784-97ea-f27c5a3c80f9", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6f5d1880-22d8-4141-80fc-1948d2df3303", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--bc5174bc-781a-4133-ad05-a0728060149c", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--181a63be-3dca-4d7c-bb5e-1c7f691c38be", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--3ee28ea9-028c-4d12-8606-b2c7456bd29c", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--b75c9cbe-4283-42bb-8b93-140764bdd620", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--895e8018-64ec-46b9-b988-1a6a8f4807fa", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--676e316f-bdf3-4b0b-895d-c9562d3084f5", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--a9f2b409-71fd-4bad-bbed-c48e76db578f", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--1ffc3263-bfc3-419c-922c-40b39136847a", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--41ba0bd1-e872-4daa-a1bd-ed7d4f880db8", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--a940ddaa-aa06-4af3-8290-dd3f813cbf69", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--73bbee58-fa63-490f-bd3a-1ce90d3d4efc", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", - "modified": "2021-01-06T18:28:42.111Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--d5b2567f-c1c9-4c78-93d2-832ba306f427", - "modified": "2021-01-06T18:28:42.111Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--dd75a408-d221-4bf0-b2f9-e894fd107b48", - "modified": "2021-01-06T18:28:42.111Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--45216264-01c8-4b5f-aab7-e646162716da", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.112Z", - "description": "Information System Monitoring", - "id": "relationship--f69316e3-fbe4-4149-809c-60f413f3592e", - "modified": "2021-01-06T18:28:42.112Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--b13e9efb-053b-4700-8b9f-f2bca142919f", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--79f59189-919d-4999-b0f8-5b421bcf3045", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--e2444ad2-7132-429a-9f66-2f49076043ca", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--d7105a2d-260f-4305-9702-f7b0b08f27da", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--4accda5f-bb2a-436a-bedf-42b8a64d7b6a", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--4712b465-8d1b-47f2-b5e3-b3b7c14b99db", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--aba9035b-4ba7-416e-b910-fdc32c274d35", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f4f33f00-e218-43af-b821-c148001db0be", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--9cc8e575-ad64-4ed6-b8bf-33c6e957ca3d", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.088Z", + "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", + "modified": "2021-01-13T01:50:52.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--03ddaf6b-75c7-40bd-9add-259f2020e339", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.088Z", + "id": "relationship--12646806-2981-416b-ba44-c7a56d249cd3", + "modified": "2021-01-13T01:50:52.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--8fc11ac4-8e55-47d1-b860-486ca6901684", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--e0ce7619-4c16-4a1e-ae0c-d276086b7ed6", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.091Z", + "id": "relationship--d8b5b412-2495-416f-9235-b60f12225143", + "modified": "2021-01-13T01:50:52.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.093Z", + "id": "relationship--e65e36db-218a-44b1-96bf-b6ee1ab9d371", + "modified": "2021-01-13T01:50:52.093Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--d5b086ed-6dc5-4d29-abc5-ebbb5f3109a0", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.094Z", + "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", + "modified": "2021-01-13T01:50:52.094Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--285d00a4-dfab-4f54-a7ae-3063fe849991", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.094Z", + "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", + "modified": "2021-01-13T01:50:52.094Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--c0f5768e-7078-416e-8a43-06f843e1a00c", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.095Z", + "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", + "modified": "2021-01-13T01:50:52.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.116Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f69dfdce-1d62-44bd-8c66-49b4ffe62da8", - "modified": "2021-01-06T18:28:42.116Z", + "created": "2021-01-13T01:50:52.095Z", + "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", + "modified": "2021-01-13T01:50:52.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.116Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--1f76f4d1-58ee-4d19-9661-8796a2f5b69e", - "modified": "2021-01-06T18:28:42.116Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.117Z", - "description": "Continuous Monitoring", - "id": "relationship--de4ef442-8dae-4a95-a2bd-b4e7dadc5fdc", - "modified": "2021-01-06T18:28:42.117Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.117Z", - "description": "Continuous Monitoring", - "id": "relationship--bdc3e37a-fa23-491c-b522-e54b48082d8e", - "modified": "2021-01-06T18:28:42.117Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--dacdfac9-e0f1-4527-8d37-5685e7a8bd12", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--f8614b5b-119d-4e74-8e77-777c932e0cc8", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.097Z", + "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", + "modified": "2021-01-13T01:50:52.097Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--57b098e7-49eb-4727-b091-afa9feeaabd9", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.097Z", + "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", + "modified": "2021-01-13T01:50:52.097Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.098Z", + "id": "relationship--4ee26bb0-a756-412d-b0d5-a6753d5a2fd0", + "modified": "2021-01-13T01:50:52.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.098Z", + "id": "relationship--a259ae15-0471-42f0-80b5-f2c34a0dffbd", + "modified": "2021-01-13T01:50:52.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.120Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:42.120Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.120Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:42.120Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--07c8418f-d4a5-4bbe-9533-dcddc5b37a36", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--756dd64b-b687-4937-9055-d1ea983bab1c", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--e22a31ba-571a-4ced-8554-9237a48c2069", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--f5c81e99-17c5-49e9-a5ea-af519ad2940e", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--af780919-8470-4cf6-a2cf-08ce99d9fe81", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.107Z", + "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", + "modified": "2021-01-13T01:50:52.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.107Z", + "id": "relationship--03748d46-f602-4c3b-99f6-50f10523b76e", + "modified": "2021-01-13T01:50:52.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--f20353de-df72-4265-916b-1c285b3e9b50", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--dc6b8663-f6d7-4ef9-8209-7e24b861ecb2", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--1585b2b2-e9fd-4b66-b96a-2c0c358f0dd5", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--6e0c98b4-a834-4e0a-b564-a2ba5b812f9d", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--16ec5ed9-18b5-46c4-b6c4-8a2c86555a29", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--291317f4-8d40-44e1-92f3-1d1fbc6a0a92", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--c0057c9c-6cb6-4328-ac14-350fd45895d8", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.109Z", + "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", + "modified": "2021-01-13T01:50:52.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--f0b7516d-64cb-42b0-9c0d-ddb5b2ff39d2", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.109Z", + "id": "relationship--4e34f824-2a85-4488-ac68-5e22b03625cd", + "modified": "2021-01-13T01:50:52.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.110Z", + "id": "relationship--61554426-e695-4d8c-8c4f-f45bafc89620", + "modified": "2021-01-13T01:50:52.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.110Z", + "id": "relationship--bd86956e-644a-496e-8092-0b960dcd42f3", + "modified": "2021-01-13T01:50:52.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.111Z", + "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", + "modified": "2021-01-13T01:50:52.111Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.112Z", + "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", + "modified": "2021-01-13T01:50:52.112Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dd5ff4ad-840a-482c-8e6a-f00a28f8d1c7", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d999317b-c24b-4ee3-ae38-63ea63abd7ca", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--17111b97-41fc-47b6-bf50-628039cdfbee", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ef87ea0e-bc86-44ed-aff7-03603bec16c8", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--ce144bc0-dbf5-4394-ab77-9f2c7e997865", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--32463329-793c-4283-a0d5-491aa0da34c0", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--259b3709-2537-4aa6-8e7b-13278b0a3fa4", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b65d2f49-d765-44d8-9193-268e1e6f9e43", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--3b84179d-56fd-4063-8224-4c6da43ba029", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.125Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--95e41c6a-d796-460a-953a-4cc2255fbb8a", - "modified": "2021-01-06T18:28:42.125Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--9bdacd2e-287d-4693-9cd5-c3be3e3d17f7", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.126Z", - "description": "Boundary Protection", - "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", - "modified": "2021-01-06T18:28:42.126Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--f361c62a-f274-487e-963b-c9c99360e15e", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.127Z", - "description": "Continuous Monitoring", - "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", - "modified": "2021-01-06T18:28:42.127Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--ab57f38d-9d46-4cc8-bdb2-0931fb31a12b", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.128Z", - "description": "Information System Monitoring", - "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", - "modified": "2021-01-06T18:28:42.128Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--355be5bc-4c61-4dca-adbe-77d6902f904d", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.129Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--17488523-dc46-4a5b-bc02-d60d52a90275", - "modified": "2021-01-06T18:28:42.129Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--d566b1c6-3cd8-4db8-b717-bd7923800fb1", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.129Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", - "modified": "2021-01-06T18:28:42.129Z", + "created": "2021-01-13T01:50:52.117Z", + "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", + "modified": "2021-01-13T01:50:52.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.130Z", - "description": "Information Flow Enforcement", - "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", - "modified": "2021-01-06T18:28:42.130Z", + "created": "2021-01-13T01:50:52.117Z", + "id": "relationship--ee24380d-4a93-402d-aa2d-afb94464f7d9", + "modified": "2021-01-13T01:50:52.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.131Z", - "description": "Continuous Monitoring", - "id": "relationship--b3f7588e-0881-4c87-b5ed-1631a7c878ce", - "modified": "2021-01-06T18:28:42.131Z", + "created": "2021-01-13T01:50:52.118Z", + "id": "relationship--348dd7e3-8a6a-4230-9606-a2f4008b223e", + "modified": "2021-01-13T01:50:52.118Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.132Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bd104fa4-0442-476e-8568-dcea38cbe800", - "modified": "2021-01-06T18:28:42.132Z", + "created": "2021-01-13T01:50:52.119Z", + "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", + "modified": "2021-01-13T01:50:52.119Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.132Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a5f8e88b-8e5d-4ad1-8664-baf8ef7ba407", - "modified": "2021-01-06T18:28:42.132Z", + "created": "2021-01-13T01:50:52.119Z", + "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", + "modified": "2021-01-13T01:50:52.119Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.133Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--065cbd74-eb74-4467-a647-423e66959499", - "modified": "2021-01-06T18:28:42.133Z", + "created": "2021-01-13T01:50:52.120Z", + "id": "relationship--10fe7e70-6f16-424e-b57c-e52dca75baf8", + "modified": "2021-01-13T01:50:52.120Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.133Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a60e74ce-c1ee-4225-a4e9-35e4afcb966b", - "modified": "2021-01-06T18:28:42.133Z", + "created": "2021-01-13T01:50:52.121Z", + "id": "relationship--7b60d6fd-4171-420d-b201-02c601d14b1a", + "modified": "2021-01-13T01:50:52.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.134Z", - "description": "Continuous Monitoring", - "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", - "modified": "2021-01-06T18:28:42.134Z", + "created": "2021-01-13T01:50:52.121Z", + "id": "relationship--630a91a9-0c50-401e-9995-231813f23149", + "modified": "2021-01-13T01:50:52.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.135Z", - "description": "Information System Monitoring", - "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", - "modified": "2021-01-06T18:28:42.135Z", + "created": "2021-01-13T01:50:52.122Z", + "id": "relationship--1158a6c3-8449-4514-b46e-7e51a84f004f", + "modified": "2021-01-13T01:50:52.122Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.136Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--4ea3f401-d11b-4484-bf67-00d57a224b19", - "modified": "2021-01-06T18:28:42.136Z", + "created": "2021-01-13T01:50:52.123Z", + "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", + "modified": "2021-01-13T01:50:52.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.123Z", + "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", + "modified": "2021-01-13T01:50:52.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--02dc504b-b23d-4493-89a3-e37e7ad14c51", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--80cad2b9-f9df-43de-9a99-4e7b0aff106e", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.125Z", + "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", + "modified": "2021-01-13T01:50:52.125Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.138Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--84ff810b-888c-4ff5-b8ef-8e01ff72b01c", - "modified": "2021-01-06T18:28:42.138Z", + "created": "2021-01-13T01:50:52.126Z", + "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", + "modified": "2021-01-13T01:50:52.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.138Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:42.138Z", + "created": "2021-01-13T01:50:52.126Z", + "id": "relationship--66b560a7-2f9d-42c6-b84a-4885138c9345", + "modified": "2021-01-13T01:50:52.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.139Z", - "description": "Continuous Monitoring", - "id": "relationship--5bb7c08d-c7d2-4ccd-9931-c901723dae01", - "modified": "2021-01-06T18:28:42.139Z", + "created": "2021-01-13T01:50:52.127Z", + "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", + "modified": "2021-01-13T01:50:52.127Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.140Z", - "description": "Information System Monitoring", - "id": "relationship--76bece35-7fc5-44ce-af0e-9ec8450eb0f9", - "modified": "2021-01-06T18:28:42.140Z", + "created": "2021-01-13T01:50:52.128Z", + "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", + "modified": "2021-01-13T01:50:52.128Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--1f8d1b91-39d0-4ac6-bfc6-7bb11a2bc904", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.143Z", - "description": "Authenticator Management", - "id": "relationship--33c431ce-ac1b-47d3-b841-4ce178cfb132", - "modified": "2021-01-06T18:28:42.143Z", + "created": "2021-01-13T01:50:52.130Z", + "id": "relationship--d16e6235-9854-4154-aca7-805870a6377d", + "modified": "2021-01-13T01:50:52.130Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--c851c0ed-93db-436f-980f-92c2804c5101", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--3223a69c-7210-4635-9710-1c156e3acd05", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.132Z", + "id": "relationship--30ace806-b402-4791-80b6-be4b95d5ec05", + "modified": "2021-01-13T01:50:52.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--feadcf2c-3e34-42e0-8656-072cbb8bfdb4", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.132Z", + "id": "relationship--50a1ea3d-2c02-4eb3-8e92-d49fdccaaea5", + "modified": "2021-01-13T01:50:52.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7c424e1f-0a3c-4e4a-a377-4248e094229e", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.133Z", + "id": "relationship--a0fb55d4-f6da-467a-8b79-993443fb1381", + "modified": "2021-01-13T01:50:52.133Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--ddf35094-bca9-4025-89df-f4b8a7134cb5", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--55dae45a-e184-4c66-8901-12d8c9755229", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--01a5b6dc-d3d8-4df4-b517-39cc4b7de0d1", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--e311c7c6-e417-4789-9be8-e25b97d3ba01", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.135Z", + "id": "relationship--4308bf35-e51f-43e0-bc6c-d98387b2f634", + "modified": "2021-01-13T01:50:52.135Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--57c4d00f-215d-4bfc-960f-14ca2b51ce92", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--ea0dddbb-29f0-4963-9011-0358f603691c", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--ca3d8bd9-50f2-4f48-aa29-e3f4557d5a1b", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--669f8711-5259-4fda-ad9e-5bd3264ec48a", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.137Z", + "id": "relationship--c7e1f691-3c76-472a-8c7f-c0bd3af82867", + "modified": "2021-01-13T01:50:52.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.137Z", + "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", + "modified": "2021-01-13T01:50:52.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--564dac92-4957-4602-b388-444c88c1dff2", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--475a723a-8911-4310-b0fa-5006dc4cfaa9", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--eb6b7524-07ab-4b7e-84a4-572951c22d3e", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--c005cfee-1f92-46b8-a160-4cd10ca9d162", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.149Z", - "description": "Continuous Monitoring", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:42.149Z", + "created": "2021-01-13T01:50:52.139Z", + "id": "relationship--d37d5b85-d800-478e-aa96-d5514de3f2b0", + "modified": "2021-01-13T01:50:52.139Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.140Z", + "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", + "modified": "2021-01-13T01:50:52.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.140Z", + "id": "relationship--ddc5772f-2633-48cb-85ac-43e8978b4f4d", + "modified": "2021-01-13T01:50:52.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.141Z", + "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", + "modified": "2021-01-13T01:50:52.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.142Z", + "id": "relationship--9a6ef947-ae54-47d3-8b81-b7dd64e40aa9", + "modified": "2021-01-13T01:50:52.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.142Z", + "id": "relationship--c913b693-7175-4860-9983-ac50fad7eb94", + "modified": "2021-01-13T01:50:52.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.143Z", + "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", + "modified": "2021-01-13T01:50:52.143Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.143Z", + "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", + "modified": "2021-01-13T01:50:52.143Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.152Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", - "modified": "2021-01-06T18:28:42.152Z", + "created": "2021-01-13T01:50:52.144Z", + "id": "relationship--b78fd120-51d6-409f-862a-d8a79097cf7f", + "modified": "2021-01-13T01:50:52.144Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.144Z", + "id": "relationship--25ed50bb-64f4-41b9-966b-28a5ea0cc346", + "modified": "2021-01-13T01:50:52.144Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.145Z", + "id": "relationship--18e8f5c2-ff62-4b3e-bd6a-ae0c94a5e4de", + "modified": "2021-01-13T01:50:52.145Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--b9439b32-09d4-4b46-a3d6-9038b994be97", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--833ad9fe-b919-4db5-84c3-06c5917120f6", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--26f73a02-49ca-4a72-8e4e-5de059fa8f3d", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--915f43e5-9f93-4df9-a6b5-064045ec0bdc", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--6c6912de-b200-439b-b35c-2c9355d9c4d1", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.154Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:42.154Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--1e56982a-0654-4c10-a279-522a945a052d", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.154Z", - "description": "Account Mangement", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:42.154Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--b36714b7-00a3-4659-8944-08721014135e", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--d3a18251-6481-43fa-bd34-3f8a8b311a10", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--cda31037-1e64-4b1a-910f-19a39287cae1", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--7ddbf77f-cc7e-4db1-b218-112778301aba", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.156Z", - "description": "Continuous Monitoring", - "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:42.156Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--41b76c48-d1a4-4eb0-9ac1-ad5905bb50d9", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.157Z", - "description": "Information System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.157Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--7df8a729-2157-449f-b9b7-ccbc17ccada3", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.158Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:42.158Z", + "created": "2021-01-13T01:50:52.149Z", + "id": "relationship--1e736b30-2e2c-41d4-9935-63c1d3af961f", + "modified": "2021-01-13T01:50:52.149Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.158Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:42.158Z", + "created": "2021-01-13T01:50:52.150Z", + "id": "relationship--4c684ae9-5632-4134-a3d3-d74b309a0d2c", + "modified": "2021-01-13T01:50:52.150Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--8ff44d11-ec3b-4ed2-8f63-d3f30904d04d", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.150Z", + "id": "relationship--6bdc7325-a702-4621-9ae3-fc3572af1af1", + "modified": "2021-01-13T01:50:52.150Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--69406761-87e6-4220-a614-ab028ed18a65", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.151Z", + "id": "relationship--03df46e3-7212-4538-881b-b1f21952c1a8", + "modified": "2021-01-13T01:50:52.151Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--c764917a-a83b-424d-8c81-3d7fb6b1f635", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.151Z", + "id": "relationship--b0dbfd34-e1e0-49e8-9b36-5221babc51d5", + "modified": "2021-01-13T01:50:52.151Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--6ec71e08-7ca0-4cfc-b926-d760a3f952ec", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.152Z", + "id": "relationship--f37cf613-5234-413e-9e59-7efae6213eef", + "modified": "2021-01-13T01:50:52.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--ee9ee26f-12fa-47f6-b595-ad490c647f07", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.152Z", + "id": "relationship--3edbc631-2138-48ce-a87a-d6ab0c393170", + "modified": "2021-01-13T01:50:52.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--3d24cfb7-4c8e-42f8-81fa-79de8ef37b87", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--d74a517c-2f5b-479a-b57c-2255bf9d9007", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--42be3081-0b6b-4ea4-8bfa-c86abf3f8c51", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--1218a126-7456-4784-97ea-f27c5a3c80f9", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.162Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bc5174bc-781a-4133-ad05-a0728060149c", - "modified": "2021-01-06T18:28:42.162Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--0069e16f-842f-4b68-a2c4-7ffb26320985", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.162Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3ee28ea9-028c-4d12-8606-b2c7456bd29c", - "modified": "2021-01-06T18:28:42.162Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--9924d109-4830-4993-af8d-22c81a20ff81", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--895e8018-64ec-46b9-b988-1a6a8f4807fa", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--afff91fd-9b6c-4154-8d52-1cc026813460", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c83a1a89-6cac-4f82-b5b2-21479298030f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--30483162-5c4e-4eac-835f-689b0a9d1629", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a9f2b409-71fd-4bad-bbed-c48e76db578f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.155Z", + "id": "relationship--4df66e23-65d1-4b96-ac43-3f111e39c44d", + "modified": "2021-01-13T01:50:52.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e5937d94-3a67-4941-b0b4-1ec793977a8d", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.155Z", + "id": "relationship--bd3ce4ce-b308-41d9-8f94-54cdfcec9b5f", + "modified": "2021-01-13T01:50:52.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--139d8a79-d5c6-4e62-846f-846d0be96a51", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.156Z", + "id": "relationship--6d4bc4fc-a9eb-4312-9a1d-13c576c1fdbc", + "modified": "2021-01-13T01:50:52.156Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.156Z", + "id": "relationship--a45eb61f-a1d2-4b66-9e23-a2492ad76c9e", + "modified": "2021-01-13T01:50:52.156Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--41ba0bd1-e872-4daa-a1bd-ed7d4f880db8", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--73bbee58-fa63-490f-bd3a-1ce90d3d4efc", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--817a1938-6477-4cf6-985a-dcf79f9de4e0", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--45216264-01c8-4b5f-aab7-e646162716da", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--3a747d82-f2bf-4cec-bd46-83f302a528ab", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.165Z", - "description": "Continuous Monitoring", - "id": "relationship--b13e9efb-053b-4700-8b9f-f2bca142919f", - "modified": "2021-01-06T18:28:42.165Z", + "created": "2021-01-13T01:50:52.158Z", + "id": "relationship--ee67353b-489f-4143-9b80-a64f890edc43", + "modified": "2021-01-13T01:50:52.158Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--79f59189-919d-4999-b0f8-5b421bcf3045", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.158Z", + "id": "relationship--b6b36a39-5457-4517-a49d-67d268ad4e0e", + "modified": "2021-01-13T01:50:52.158Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e2444ad2-7132-429a-9f66-2f49076043ca", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d7105a2d-260f-4305-9702-f7b0b08f27da", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--c8a5692a-4923-48ef-9dc5-d6d1bdb253df", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4accda5f-bb2a-436a-bedf-42b8a64d7b6a", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--bcd84feb-0476-4b46-bb38-b62ed52920ec", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.160Z", + "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", + "modified": "2021-01-13T01:50:52.160Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.160Z", + "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", + "modified": "2021-01-13T01:50:52.160Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.161Z", + "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", + "modified": "2021-01-13T01:50:52.161Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.161Z", + "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", + "modified": "2021-01-13T01:50:52.161Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.168Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", - "modified": "2021-01-06T18:28:42.168Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--45646a67-651a-41eb-bcbd-1678c2fef299", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--b3be3766-2c4d-426e-9cf8-b7df36492a95", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--12646806-2981-416b-ba44-c7a56d249cd3", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--a45ba5a6-2fab-48af-aa2f-80c2aa08e04f", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--2c3e83b8-9140-47e2-b744-340a107dbde6", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--005d51dd-a94d-4cf4-8c04-361068f9836e", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--8fc11ac4-8e55-47d1-b860-486ca6901684", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--e0ce7619-4c16-4a1e-ae0c-d276086b7ed6", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Authenticator Management, ", - "id": "relationship--d4b0c3a7-9800-40e8-b6b8-2f6c30ac438d", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.172Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d2b7f990-b7b1-470e-9aea-de681d15fff0", - "modified": "2021-01-06T18:28:42.172Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.172Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d8b5b412-2495-416f-9235-b60f12225143", - "modified": "2021-01-06T18:28:42.172Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.173Z", - "description": "Remote Access", - "id": "relationship--9b218471-c7fc-4450-8ad7-85d373aca775", - "modified": "2021-01-06T18:28:42.173Z", + "created": "2021-01-13T01:50:52.166Z", + "id": "relationship--e8c74f70-331b-4e64-b233-3c02d7252ded", + "modified": "2021-01-13T01:50:52.166Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.174Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--e65e36db-218a-44b1-96bf-b6ee1ab9d371", - "modified": "2021-01-06T18:28:42.174Z", + "created": "2021-01-13T01:50:52.167Z", + "id": "relationship--79976f25-c1ce-4bce-bdde-bfaed5b67000", + "modified": "2021-01-13T01:50:52.167Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.174Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--946ffb9b-c4e0-4b1c-8717-223f1f9d10da", - "modified": "2021-01-06T18:28:42.174Z", + "created": "2021-01-13T01:50:52.168Z", + "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", + "modified": "2021-01-13T01:50:52.168Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.169Z", + "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", + "modified": "2021-01-13T01:50:52.169Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.169Z", + "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", + "modified": "2021-01-13T01:50:52.169Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.170Z", + "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", + "modified": "2021-01-13T01:50:52.170Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.170Z", + "id": "relationship--9faaca0e-7c9c-4377-803a-79da99a04838", + "modified": "2021-01-13T01:50:52.170Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.176Z", - "description": "Continuous Monitoring", - "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", - "modified": "2021-01-06T18:28:42.176Z", + "created": "2021-01-13T01:50:52.171Z", + "id": "relationship--0135791d-ca0b-4942-b396-e3d06f42b4f7", + "modified": "2021-01-13T01:50:52.171Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.176Z", - "description": "Continuous Monitoring", - "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", - "modified": "2021-01-06T18:28:42.176Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--4dc55b27-a816-4ddf-b975-3cbf4b17f61c", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.177Z", - "description": "Information System Monitoring", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.177Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--d6d93e52-d749-449f-81b0-73152d35a89d", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.177Z", - "description": "Information System Monitoring", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.177Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--7a59dfea-55af-48db-a375-d20eb9006d88", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.178Z", - "description": "Boundary Protection", - "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", - "modified": "2021-01-06T18:28:42.178Z", + "created": "2021-01-13T01:50:52.173Z", + "id": "relationship--a894baa2-6c08-43a0-9b4c-2cbad220817b", + "modified": "2021-01-13T01:50:52.173Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.178Z", - "description": "Boundary Protection", - "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", - "modified": "2021-01-06T18:28:42.178Z", + "created": "2021-01-13T01:50:52.174Z", + "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", + "modified": "2021-01-13T01:50:52.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.179Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:42.179Z", + "created": "2021-01-13T01:50:52.174Z", + "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", + "modified": "2021-01-13T01:50:52.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.175Z", + "id": "relationship--83dff653-d0ef-425e-8a62-4cf8dbb54b8c", + "modified": "2021-01-13T01:50:52.175Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--659f98c1-b177-4107-9f64-c8ba54d0adff", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--bd313706-7394-44f0-a5b1-c4e413819d47", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--0a3ba214-5334-4ee3-9093-ac475d8ed917", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.181Z", - "description": "Protection of Information at Rest", - "id": "relationship--4ee26bb0-a756-412d-b0d5-a6753d5a2fd0", - "modified": "2021-01-06T18:28:42.181Z", + "created": "2021-01-13T01:50:52.177Z", + "id": "relationship--b114fc5c-97a7-42b8-b869-3bc75192d966", + "modified": "2021-01-13T01:50:52.177Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.181Z", - "description": "Protection of Information at Rest", - "id": "relationship--a259ae15-0471-42f0-80b5-f2c34a0dffbd", - "modified": "2021-01-06T18:28:42.181Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--f5e596a5-5a52-4ad2-8b18-525ef2467e06", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.182Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.182Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--1b68f161-ee8b-4b63-97d5-88eca415ba8b", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.182Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.182Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--00f751f7-fef0-4d08-984c-eae6a2eb09ca", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.183Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:42.183Z", + "created": "2021-01-13T01:50:52.179Z", + "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", + "modified": "2021-01-13T01:50:52.179Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.183Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:42.183Z", + "created": "2021-01-13T01:50:52.180Z", + "id": "relationship--fa7d6d15-d3eb-42ae-8295-c2b2b294d0b5", + "modified": "2021-01-13T01:50:52.180Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.180Z", + "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", + "modified": "2021-01-13T01:50:52.180Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.181Z", + "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", + "modified": "2021-01-13T01:50:52.181Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.182Z", + "id": "relationship--85f534a5-c129-4756-bf6f-52ece7b86a30", + "modified": "2021-01-13T01:50:52.182Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.182Z", + "id": "relationship--a15c236f-62e8-498e-aa09-69e0583b633b", + "modified": "2021-01-13T01:50:52.182Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.183Z", + "id": "relationship--aba1f45c-d565-4cad-9f72-1a588efefdb4", + "modified": "2021-01-13T01:50:52.183Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.184Z", + "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", + "modified": "2021-01-13T01:50:52.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.185Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.185Z", + "created": "2021-01-13T01:50:52.184Z", + "id": "relationship--106f8bdd-dd31-480d-b42d-a8113b80129b", + "modified": "2021-01-13T01:50:52.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.185Z", + "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", + "modified": "2021-01-13T01:50:52.185Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.186Z", + "id": "relationship--716ef7f8-9062-4510-a90e-6cbd74ec147a", + "modified": "2021-01-13T01:50:52.186Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.187Z", + "id": "relationship--8b37cf53-18e5-4d50-95be-849b625795c2", + "modified": "2021-01-13T01:50:52.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.187Z", + "id": "relationship--b50dcf63-c9ea-48e0-9a73-19cac615deae", + "modified": "2021-01-13T01:50:52.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.188Z", + "id": "relationship--04cc86c0-8251-4d1a-81ec-26e82c792dbe", + "modified": "2021-01-13T01:50:52.188Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--46e29c11-dd8e-4342-8f14-dd3890168249", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--0d6247ec-a4b2-443a-945b-89e59d7ff4b8", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--38c7d2fa-b4b5-476b-bca6-3064cd07dff6", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.190Z", + "id": "relationship--a39eabdb-9d30-45c3-9a79-168ff565e94b", + "modified": "2021-01-13T01:50:52.190Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.189Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:42.189Z", + "created": "2021-01-13T01:50:52.191Z", + "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", + "modified": "2021-01-13T01:50:52.191Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.191Z", + "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", + "modified": "2021-01-13T01:50:52.191Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--756dd64b-b687-4937-9055-d1ea983bab1c", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e22a31ba-571a-4ced-8554-9237a48c2069", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f5c81e99-17c5-49e9-a5ea-af519ad2940e", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.193Z", + "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", + "modified": "2021-01-13T01:50:52.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--af780919-8470-4cf6-a2cf-08ce99d9fe81", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.193Z", + "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", + "modified": "2021-01-13T01:50:52.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.194Z", + "id": "relationship--8b89b6a4-5cf7-40d3-9958-f3c1b183d327", + "modified": "2021-01-13T01:50:52.194Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.194Z", + "id": "relationship--bf0359c6-0a3d-4074-a80a-f276f09f7dca", + "modified": "2021-01-13T01:50:52.194Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.195Z", + "id": "relationship--c13fc9cf-c643-4f78-84f1-b005797eef39", + "modified": "2021-01-13T01:50:52.195Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.192Z", - "description": "OS Monitoring", - "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:42.192Z", + "created": "2021-01-13T01:50:52.196Z", + "id": "relationship--4f6e7e6a-fa8d-4bcb-899a-3c3b9aee6ea1", + "modified": "2021-01-13T01:50:52.196Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.193Z", - "description": "Wireless Access", - "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", - "modified": "2021-01-06T18:28:42.193Z", + "created": "2021-01-13T01:50:52.196Z", + "id": "relationship--b93db89e-d7f3-4090-9e13-b808180ea5e5", + "modified": "2021-01-13T01:50:52.196Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.193Z", - "description": "Wireless Access", - "id": "relationship--03748d46-f602-4c3b-99f6-50f10523b76e", - "modified": "2021-01-06T18:28:42.193Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--a1ebc826-bacf-4fc1-91a6-7a78cc1f2617", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--f9031f11-7d3f-4479-84fd-a1ed2edf8a56", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dc6b8663-f6d7-4ef9-8209-7e24b861ecb2", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--efa1b48d-0146-4305-8d84-4a9bf2410c62", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6e0c98b4-a834-4e0a-b564-a2ba5b812f9d", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.198Z", + "id": "relationship--7db4206d-baf3-4610-951a-593307ccc407", + "modified": "2021-01-13T01:50:52.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--291317f4-8d40-44e1-92f3-1d1fbc6a0a92", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.198Z", + "id": "relationship--91b07aa5-5bf8-48ea-bd89-16ef29af9d3a", + "modified": "2021-01-13T01:50:52.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.195Z", - "description": "OS Monitoring", - "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", - "modified": "2021-01-06T18:28:42.195Z", + "created": "2021-01-13T01:50:52.199Z", + "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", + "modified": "2021-01-13T01:50:52.199Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.195Z", - "description": "OS Monitoring", - "id": "relationship--4e34f824-2a85-4488-ac68-5e22b03625cd", - "modified": "2021-01-06T18:28:42.195Z", + "created": "2021-01-13T01:50:52.200Z", + "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", + "modified": "2021-01-13T01:50:52.200Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.196Z", - "description": "Session Management", - "id": "relationship--61554426-e695-4d8c-8c4f-f45bafc89620", - "modified": "2021-01-06T18:28:42.196Z", + "created": "2021-01-13T01:50:52.200Z", + "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", + "modified": "2021-01-13T01:50:52.200Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.196Z", - "description": "Session Management", - "id": "relationship--bd86956e-644a-496e-8092-0b960dcd42f3", - "modified": "2021-01-06T18:28:42.196Z", + "created": "2021-01-13T01:50:52.201Z", + "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", + "modified": "2021-01-13T01:50:52.201Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.197Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.197Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.197Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", - "modified": "2021-01-06T18:28:42.197Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.198Z", - "description": "OS Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.198Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.201Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", - "modified": "2021-01-06T18:28:42.201Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--17111b97-41fc-47b6-bf50-628039cdfbee", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--84b41bc2-e627-44b1-9fcd-bafaea79adbb", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ce144bc0-dbf5-4394-ab77-9f2c7e997865", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--205410c9-5678-4da5-aed1-e441dabe6a7f", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--259b3709-2537-4aa6-8e7b-13278b0a3fa4", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--926a2141-93a7-4701-8ef4-0ddedffe3524", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--3b84179d-56fd-4063-8224-4c6da43ba029", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--0658ea34-5653-4b75-9abc-3c9bd5e4f87d", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9bdacd2e-287d-4693-9cd5-c3be3e3d17f7", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--101e3ac0-5d85-4d84-be31-01b4d6094b98", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.204Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f361c62a-f274-487e-963b-c9c99360e15e", - "modified": "2021-01-06T18:28:42.204Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--c3c58d0b-c6fe-40e4-85f8-b225e7c0834d", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.204Z", - "description": "OS Monitoring", - "id": "relationship--ab57f38d-9d46-4cc8-bdb2-0931fb31a12b", - "modified": "2021-01-06T18:28:42.204Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--d51d701d-49d0-4070-a9ee-8c5a5fd213b1", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.205Z", - "description": "OS Monitoring", - "id": "relationship--355be5bc-4c61-4dca-adbe-77d6902f904d", - "modified": "2021-01-06T18:28:42.205Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--bf3cfdf2-8bb7-47b5-80ed-4158ee217728", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.205Z", - "description": "OS Monitoring", - "id": "relationship--d566b1c6-3cd8-4db8-b717-bd7923800fb1", - "modified": "2021-01-06T18:28:42.205Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--a41f1685-6cc6-4380-ad18-2988e6f66016", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.206Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", - "modified": "2021-01-06T18:28:42.206Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--dc51fa06-b389-4c38-94b1-da97beed1485", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.206Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ee24380d-4a93-402d-aa2d-afb94464f7d9", - "modified": "2021-01-06T18:28:42.206Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--509465fe-c9b5-460a-8b57-a24f3f2b0f7d", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.207Z", - "description": "Media Use", - "id": "relationship--348dd7e3-8a6a-4230-9606-a2f4008b223e", - "modified": "2021-01-06T18:28:42.207Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--b7499dd7-3d7b-4436-a75d-5c82e01ea06e", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.208Z", - "description": "OS Monitoring", - "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", - "modified": "2021-01-06T18:28:42.208Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--394821f8-8909-43ff-a27d-ddbcfb4498ee", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.209Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:42.209Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--4593c77c-3e20-45cb-88fd-beba003791cf", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.209Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", - "modified": "2021-01-06T18:28:42.209Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--90994318-85bf-4aa8-86fb-9cbb8c57f510", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.210Z", - "description": "OS Monitoring", - "id": "relationship--10fe7e70-6f16-424e-b57c-e52dca75baf8", - "modified": "2021-01-06T18:28:42.210Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--0d2d2d15-44cb-48c5-9263-3524e02c821e", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.211Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7b60d6fd-4171-420d-b201-02c601d14b1a", - "modified": "2021-01-06T18:28:42.211Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--02afe20c-b23d-4f56-a4b5-753a98c1d3f9", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.211Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--630a91a9-0c50-401e-9995-231813f23149", - "modified": "2021-01-06T18:28:42.211Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--8361180b-f6a1-4acf-94d0-af776da035b5", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.212Z", - "description": "OS Monitoring", - "id": "relationship--1158a6c3-8449-4514-b46e-7e51a84f004f", - "modified": "2021-01-06T18:28:42.212Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--2d263b34-e4d0-42da-88d9-a093945816e3", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--907a90d2-e608-4cad-9f98-008530820e80", + "modified": "2021-01-13T01:50:52.210Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--e8cc2a82-97f0-41d4-ac27-4a365bc346d7", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--43dd1118-2711-4c50-843c-461250da3cb9", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--5b6bec73-f2ab-43b7-9a71-ed899a4ecf93", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--95703a3f-137c-418b-83f1-01c8ef58182f", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.214Z", - "description": "OS Monitoring", - "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", - "modified": "2021-01-06T18:28:42.214Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--9d3c8de5-957c-4ef9-9f50-2b6a9cce4914", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.214Z", - "description": "OS Monitoring", - "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", - "modified": "2021-01-06T18:28:42.214Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--5e8614a4-a1f7-4175-9144-0fd2a3b01cfc", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.215Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", - "modified": "2021-01-06T18:28:42.215Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--3fad893d-3b75-4f47-ba90-33b585bf02d8", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.215Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", - "modified": "2021-01-06T18:28:42.215Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--7804c993-c6a4-4c65-8ed5-89faaf0f4468", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.216Z", - "description": "OS Monitoring", - "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", - "modified": "2021-01-06T18:28:42.216Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--ca7af652-15ac-4218-9c3f-7f0432e880f7", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.217Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", - "modified": "2021-01-06T18:28:42.217Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--850f496f-89a2-41d9-9d58-134b087aa55f", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.217Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--66b560a7-2f9d-42c6-b84a-4885138c9345", - "modified": "2021-01-06T18:28:42.217Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--8832310c-4254-4c74-9ce9-1ba4bd9d0f7b", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.218Z", - "description": "OS Monitoring", - "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", - "modified": "2021-01-06T18:28:42.218Z", + "created": "2021-01-13T01:50:52.213Z", + "id": "relationship--9963b42b-b82c-44e4-abba-163e750d0698", + "modified": "2021-01-13T01:50:52.213Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.219Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:42.219Z", + "created": "2021-01-13T01:50:52.214Z", + "id": "relationship--78c4d691-1b6d-43e6-8624-dc05e1e75385", + "modified": "2021-01-13T01:50:52.214Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.220Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", - "modified": "2021-01-06T18:28:42.220Z", + "created": "2021-01-13T01:50:52.215Z", + "id": "relationship--e0d451f9-ab93-4b54-9c8d-e864b174348a", + "modified": "2021-01-13T01:50:52.215Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.221Z", - "description": "OS Monitoring", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:42.221Z", + "created": "2021-01-13T01:50:52.215Z", + "id": "relationship--65617ae7-992a-448f-b72a-c87249f35f87", + "modified": "2021-01-13T01:50:52.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.222Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--1f8d1b91-39d0-4ac6-bfc6-7bb11a2bc904", - "modified": "2021-01-06T18:28:42.222Z", + "created": "2021-01-13T01:50:52.216Z", + "id": "relationship--b7eebe0f-4317-4580-8cee-bf2949891e40", + "modified": "2021-01-13T01:50:52.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.222Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", - "modified": "2021-01-06T18:28:42.222Z", + "created": "2021-01-13T01:50:52.217Z", + "id": "relationship--6617855c-ecb1-4070-b9f7-94699cde85c3", + "modified": "2021-01-13T01:50:52.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.224Z", - "description": "OS Monitoring", - "id": "relationship--d16e6235-9854-4154-aca7-805870a6377d", - "modified": "2021-01-06T18:28:42.224Z", + "created": "2021-01-13T01:50:52.217Z", + "id": "relationship--de0e93dd-2223-4177-a9d9-7ece5637d97b", + "modified": "2021-01-13T01:50:52.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.218Z", + "id": "relationship--81402d3d-db55-424d-8728-458642ee4209", + "modified": "2021-01-13T01:50:52.218Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c851c0ed-93db-436f-980f-92c2804c5101", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--79692160-46a5-4805-ab7e-619936f7aae7", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--12726305-6b8e-4a35-843a-28cc06d2d6ad", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--8d9a2eb4-cd2e-408c-a32a-a9054b18d43a", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--3223a69c-7210-4635-9710-1c156e3acd05", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.220Z", + "id": "relationship--e91d76a2-2192-4b94-a442-4c2b1f9a8ad3", + "modified": "2021-01-13T01:50:52.220Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--30ace806-b402-4791-80b6-be4b95d5ec05", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.221Z", + "id": "relationship--d11bdff9-191a-49b4-aa61-c3bba49969c1", + "modified": "2021-01-13T01:50:52.221Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.222Z", + "id": "relationship--ee4cd162-18dc-4f3f-9cbc-d8265c85c82a", + "modified": "2021-01-13T01:50:52.222Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--50a1ea3d-2c02-4eb3-8e92-d49fdccaaea5", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.223Z", + "id": "relationship--b3190077-d0d4-479a-9bf4-1b9e9d1ee218", + "modified": "2021-01-13T01:50:52.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--2004dcd1-87e8-486b-9f20-dcd8b72152d0", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.223Z", + "id": "relationship--faa76961-bece-4984-ab80-7de29c83c3b8", + "modified": "2021-01-13T01:50:52.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.229Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a0fb55d4-f6da-467a-8b79-993443fb1381", - "modified": "2021-01-06T18:28:42.229Z", + "created": "2021-01-13T01:50:52.224Z", + "id": "relationship--af443bae-f605-4c63-bbb1-b2f4a0aa3827", + "modified": "2021-01-13T01:50:52.224Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.224Z", + "id": "relationship--4e661cac-a53a-41e1-884e-7ee31afb19d1", + "modified": "2021-01-13T01:50:52.224Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ddf35094-bca9-4025-89df-f4b8a7134cb5", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.225Z", + "id": "relationship--0a05e54b-54e1-4cdf-85e6-1fbdd75acd5e", + "modified": "2021-01-13T01:50:52.225Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.226Z", + "id": "relationship--3a6cdfcb-853f-4acb-bcd5-d053f11bdca8", + "modified": "2021-01-13T01:50:52.226Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.232Z", - "description": "Information at Rest Protection", - "id": "relationship--01a5b6dc-d3d8-4df4-b517-39cc4b7de0d1", - "modified": "2021-01-06T18:28:42.232Z", + "created": "2021-01-13T01:50:52.227Z", + "id": "relationship--138d57b3-1a10-4679-a9d2-ac983b351a1e", + "modified": "2021-01-13T01:50:52.227Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.232Z", - "description": "Information at Rest Protection", - "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:42.232Z", + "created": "2021-01-13T01:50:52.227Z", + "id": "relationship--0c12ece3-5e08-44d4-93f4-a0a0fb2f5b97", + "modified": "2021-01-13T01:50:52.227Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.233Z", - "description": "OS Monitoring", - "id": "relationship--4308bf35-e51f-43e0-bc6c-d98387b2f634", - "modified": "2021-01-06T18:28:42.233Z", + "created": "2021-01-13T01:50:52.228Z", + "id": "relationship--d2007a89-ca1e-4e1e-be82-ba960f20b0c2", + "modified": "2021-01-13T01:50:52.228Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.233Z", - "description": "OS Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.233Z", + "created": "2021-01-13T01:50:52.228Z", + "id": "relationship--be4c4e9d-cf76-4098-bb7d-bdc3bba49468", + "modified": "2021-01-13T01:50:52.228Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57c4d00f-215d-4bfc-960f-14ca2b51ce92", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.229Z", + "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", + "modified": "2021-01-13T01:50:52.229Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.230Z", + "id": "relationship--ed52af34-8079-4d58-a228-409d64c484a1", + "modified": "2021-01-13T01:50:52.230Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ca3d8bd9-50f2-4f48-aa29-e3f4557d5a1b", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.232Z", + "id": "relationship--6b759ca0-2ccb-47f4-bbc2-d43b2d0500f9", + "modified": "2021-01-13T01:50:52.232Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.236Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", - "modified": "2021-01-06T18:28:42.236Z", + "created": "2021-01-13T01:50:52.233Z", + "id": "relationship--d3d0b1cc-1865-4e78-b204-5c1364416db3", + "modified": "2021-01-13T01:50:52.233Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.237Z", - "description": "OS Monitoring", - "id": "relationship--c7e1f691-3c76-472a-8c7f-c0bd3af82867", - "modified": "2021-01-06T18:28:42.237Z", + "created": "2021-01-13T01:50:52.234Z", + "id": "relationship--89d3d0c0-9f16-40b2-9b9a-5a9253287d80", + "modified": "2021-01-13T01:50:52.234Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.237Z", - "description": "OS Monitoring", - "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", - "modified": "2021-01-06T18:28:42.237Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--16395758-b36a-4176-aa09-9855e0e2ab6f", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--8d626ddc-9f57-4bd3-b65e-99d3fc1b64b8", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--564dac92-4957-4602-b388-444c88c1dff2", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--016734bf-da5f-48a7-81e0-a0813320d0f6", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--eb6b7524-07ab-4b7e-84a4-572951c22d3e", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--46b61c11-f515-4b48-9ad4-fe7eb2a23a83", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c005cfee-1f92-46b8-a160-4cd10ca9d162", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--dcfe2c71-ecd1-4333-bdce-bac119a42371", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.239Z", - "description": "OS Monitoring", - "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:42.239Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--f7a1611f-9ad8-4a6b-a583-8d375f81d150", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.239Z", - "description": "OS Monitoring", - "id": "relationship--d37d5b85-d800-478e-aa96-d5514de3f2b0", - "modified": "2021-01-06T18:28:42.239Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--7d9a698f-32fb-4553-af6c-e8dcde45fd65", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.240Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", - "modified": "2021-01-06T18:28:42.240Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--72b3c822-3c63-4609-8568-d817963bd20f", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.241Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ddc5772f-2633-48cb-85ac-43e8978b4f4d", - "modified": "2021-01-06T18:28:42.241Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--27bca785-3919-4c97-b09d-fbc57bbe35aa", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.242Z", - "description": "OS Monitoring", - "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", - "modified": "2021-01-06T18:28:42.242Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--4591e76e-80af-4dc0-b919-2c1e60d85aa1", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.243Z", - "description": "Session Management", - "id": "relationship--9a6ef947-ae54-47d3-8b81-b7dd64e40aa9", - "modified": "2021-01-06T18:28:42.243Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--6d5dd55e-2d60-418a-92e3-04e627b97668", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.243Z", - "description": "Session Management", - "id": "relationship--c913b693-7175-4860-9983-ac50fad7eb94", - "modified": "2021-01-06T18:28:42.243Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--ed65be15-cac0-477c-ac7c-8f98beccdaa6", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.244Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.244Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--7fd6f13f-f973-4b0e-8ebd-600549d4a1d6", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.244Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", - "modified": "2021-01-06T18:28:42.244Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--bc00957c-9101-4688-8092-4ac5b10b03a3", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.246Z", - "description": "OS Monitoring", - "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", - "modified": "2021-01-06T18:28:42.246Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.247Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b78fd120-51d6-409f-862a-d8a79097cf7f", - "modified": "2021-01-06T18:28:42.247Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--0071bd17-6e52-44e1-881c-f831c9c5bd01", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.247Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--25ed50bb-64f4-41b9-966b-28a5ea0cc346", - "modified": "2021-01-06T18:28:42.247Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--a5a4314a-77a3-4670-91e7-54eecca41599", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.248Z", - "description": "OS Monitoring", - "id": "relationship--18e8f5c2-ff62-4b3e-bd6a-ae0c94a5e4de", - "modified": "2021-01-06T18:28:42.248Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.250Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b9439b32-09d4-4b46-a3d6-9038b994be97", - "modified": "2021-01-06T18:28:42.250Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--833ad9fe-b919-4db5-84c3-06c5917120f6", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--f65afa24-ff21-4d40-a73d-af6952dae371", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--26f73a02-49ca-4a72-8e4e-5de059fa8f3d", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--915f43e5-9f93-4df9-a6b5-064045ec0bdc", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--6c6912de-b200-439b-b35c-2c9355d9c4d1", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--0b3e32f8-cd34-472e-8080-f7364ac76afc", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--1e56982a-0654-4c10-a279-522a945a052d", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--1b401738-22af-4ede-aff9-248e542063ab", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b36714b7-00a3-4659-8944-08721014135e", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--5e7d7c5b-bb26-4322-a875-a588af21a11d", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.252Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--d3a18251-6481-43fa-bd34-3f8a8b311a10", - "modified": "2021-01-06T18:28:42.252Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--45411518-e996-4522-a01b-079fc8fefe20", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.252Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--cda31037-1e64-4b1a-910f-19a39287cae1", - "modified": "2021-01-06T18:28:42.252Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--b804d387-7c1b-4d4e-afe4-ba238ff8a54f", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--7ddbf77f-cc7e-4db1-b218-112778301aba", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--887ac699-df70-4526-bd59-d9a7cbfde7e0", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--41b76c48-d1a4-4eb0-9ac1-ad5905bb50d9", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--0872277f-485c-47f3-bd5d-855e82159650", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--7df8a729-2157-449f-b9b7-ccbc17ccada3", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--f121fcf4-8469-446a-ba28-a0afccd8d24b", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.255Z", - "description": "Remote Access Management", - "id": "relationship--1e736b30-2e2c-41d4-9935-63c1d3af961f", - "modified": "2021-01-06T18:28:42.255Z", + "created": "2021-01-13T01:50:52.241Z", + "id": "relationship--34c1968f-1fc2-43c3-bf72-f32be194269e", + "modified": "2021-01-13T01:50:52.241Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.256Z", - "description": "Configuration Settings", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.256Z", + "created": "2021-01-13T01:50:52.241Z", + "id": "relationship--eb2fde71-ce15-4b13-bb91-7b54252d400c", + "modified": "2021-01-13T01:50:52.241Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.257Z", - "description": "Certificate Management", - "id": "relationship--4c684ae9-5632-4134-a3d3-d74b309a0d2c", - "modified": "2021-01-06T18:28:42.257Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.257Z", - "description": "Certificate Management", - "id": "relationship--6bdc7325-a702-4621-9ae3-fc3572af1af1", - "modified": "2021-01-06T18:28:42.257Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--03df46e3-7212-4538-881b-b1f21952c1a8", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b0dbfd34-e1e0-49e8-9b36-5221babc51d5", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--f37cf613-5234-413e-9e59-7efae6213eef", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--0c09fa88-d242-4604-8521-382f09d90e1d", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.259Z", - "description": "Distributed Storage", - "id": "relationship--3edbc631-2138-48ce-a87a-d6ab0c393170", - "modified": "2021-01-06T18:28:42.259Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--6d4fd787-38a5-45b6-b707-e5e72aa6723a", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.260Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", - "modified": "2021-01-06T18:28:42.260Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--0462058c-3dc4-4ce8-ab85-ce0e9d193c0b", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.260Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", - "modified": "2021-01-06T18:28:42.260Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--058c626a-3a2b-42fe-aeb2-08df5248366a", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.261Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.261Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.261Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", - "modified": "2021-01-06T18:28:42.261Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--0069e16f-842f-4b68-a2c4-7ffb26320985", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--9924d109-4830-4993-af8d-22c81a20ff81", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--afff91fd-9b6c-4154-8d52-1cc026813460", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--d23f21d3-a8d7-4e19-ba4a-acc986d3f540", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--30483162-5c4e-4eac-835f-689b0a9d1629", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--22d65ece-6e8b-4fa0-8125-e7351ec9aeb6", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--5dd14ce3-963c-4cd5-b43d-e5f2c8c63e82", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--ea5ac750-2761-46f2-8b11-533eb205c029", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--d04e9039-585a-4452-a5db-27ac3415da8a", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--b4a2177e-1717-4ea6-b436-5c2acfcb3efe", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--4df66e23-65d1-4b96-ac43-3f111e39c44d", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--e2b8bb6c-554a-474d-94b9-d27ee01dc3e3", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--bd3ce4ce-b308-41d9-8f94-54cdfcec9b5f", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--cc154a5e-f425-4ca7-87c2-9f879f605dcd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Distributed Storage", - "id": "relationship--6d4bc4fc-a9eb-4312-9a1d-13c576c1fdbc", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--3dd10dad-e61d-4cea-ad70-82b2bc46debd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Distributed Storage", - "id": "relationship--a45eb61f-a1d2-4b66-9e23-a2492ad76c9e", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--7b37a7e8-4a0e-414a-b847-a792c80166e8", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--aad167b4-c7b7-48bb-90c0-878e1cd5ff48", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--817a1938-6477-4cf6-985a-dcf79f9de4e0", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--e69e69cd-8e13-474e-a761-91d3c42ebbfd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--3a747d82-f2bf-4cec-bd46-83f302a528ab", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--5edea047-9fdd-4c21-b75a-1fc2efdf36f1", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--56bf67dd-b855-4f4e-8edc-0c47d1c8f7f6", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--90a05fb9-e79e-4852-90eb-513aed0b32c8", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ee67353b-489f-4143-9b80-a64f890edc43", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--e0e6ca5e-dd06-4f28-a13a-d6a072db53cd", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--b0415e04-af35-41ce-924b-0e6b4093ce5e", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b6b36a39-5457-4517-a49d-67d268ad4e0e", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--c2e6c2fa-4cbd-485b-a63e-60e9d298a97a", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--e0bb22bd-6485-455d-ba34-f34d29bb1bca", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--c8a5692a-4923-48ef-9dc5-d6d1bdb253df", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--54c7e164-481b-4089-a1e7-e4740c75fd29", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--bcd84feb-0476-4b46-bb38-b62ed52920ec", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--351fa0f8-63fe-4ca0-9556-36d6cd8ab2f1", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.270Z", - "description": "Information Flow Enforcement", - "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", - "modified": "2021-01-06T18:28:42.270Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.270Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.270Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--987032b6-f6b0-44a4-b45a-aa2dc21ee94b", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.271Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", - "modified": "2021-01-06T18:28:42.271Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--15874212-3850-4ee4-b895-0516ddbb87a5", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.272Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", - "modified": "2021-01-06T18:28:42.272Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--f0f8c427-002a-43ee-847e-e7d177f44be4", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--d1da2416-1794-46e7-880b-cc3ebf6da5f2", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--b95b17a7-0221-44d9-883f-bd06d061863e", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--12e66fbe-50af-4cca-b779-39dd23fa5a4a", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--62ec0a84-a2fb-492e-be70-bbc90a4340aa", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--05e21240-8a90-4c2b-ac68-928841906ab8", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--549c9581-8913-48c7-a2ef-c7b69a820ff6", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--ba016b07-af04-428b-84c0-3bcb85c69fef", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--6ec6f180-9b6a-4b12-902b-f9e70c92f4c5", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--6efab994-ab5f-4970-873b-f79fd2ede037", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.275Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.275Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--50af1c79-48dd-476c-a903-f3bd1e3fa978", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.275Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.275Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--2120f2f9-3e57-4199-9043-033ec37ca540", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--03f2f429-625d-44bd-a7a1-4836b9f8556d", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--e573d3fb-77c6-497d-9b8f-0b4cd50701a9", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--8c1fa586-feed-4a08-8f77-ec56a0bef82b", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.277Z", - "description": "Information Flow Enforcement", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:42.277Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--d0888772-9ea7-45a2-b0c4-54cd38491843", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.278Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.278Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--3d774e3c-d459-410f-af4f-0ceafde47465", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.278Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e8c74f70-331b-4e64-b233-3c02d7252ded", - "modified": "2021-01-06T18:28:42.278Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--0ff87b2f-aba3-4fe7-ae30-29196026ecf5", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.279Z", - "description": "Subnetworks, Access Control", - "id": "relationship--79976f25-c1ce-4bce-bdde-bfaed5b67000", - "modified": "2021-01-06T18:28:42.279Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--70b30aad-9c68-465d-af77-38fe46856f85", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.280Z", - "description": "Information Flow Enforcement", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.280Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--c6849a43-57dd-4f24-b299-2c3c8467a455", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.281Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.281Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--25f971f3-d721-432a-9e76-5ca966b5b01e", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.281Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.281Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--a8eaeb54-228a-4df9-a250-ce36c7a3e1db", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.282Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.282Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--7bf27d7e-57b7-4459-b410-c10e201632f3", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.283Z", - "description": "Information Flow Enforcement", - "id": "relationship--9faaca0e-7c9c-4377-803a-79da99a04838", - "modified": "2021-01-06T18:28:42.283Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--57bb0afd-1098-4197-ac8c-5d35a6a1f897", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.284Z", - "description": "Information Flow Enforcement", - "id": "relationship--0135791d-ca0b-4942-b396-e3d06f42b4f7", - "modified": "2021-01-06T18:28:42.284Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--addcf52d-f17e-4289-9992-6e4b7c477b83", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--c4c45097-be29-440d-a6d9-14b3a91ed990", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--15727435-53c7-4f1d-9ea0-38192c2a3aa9", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--001ec63c-877a-44b7-bdc5-34cbf3407cc9", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--ddee43df-5a03-4904-9cfd-36f00cd1c323", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.286Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4dc55b27-a816-4ddf-b975-3cbf4b17f61c", - "modified": "2021-01-06T18:28:42.286Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--6e8eb5eb-efa4-4ecf-a8b6-c3a5c0f7e98a", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.286Z", - "description": "Subnetworks, Access Control", - "id": "relationship--d6d93e52-d749-449f-81b0-73152d35a89d", - "modified": "2021-01-06T18:28:42.286Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--67efa85f-7d12-4dfa-a675-e87f7bd8fde2", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.287Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7a59dfea-55af-48db-a375-d20eb9006d88", - "modified": "2021-01-06T18:28:42.287Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--3b113689-1d2b-4fd3-a7d6-49a2a9703689", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.288Z", - "description": "Information Flow Enforcement", - "id": "relationship--a894baa2-6c08-43a0-9b4c-2cbad220817b", - "modified": "2021-01-06T18:28:42.288Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--5e8b16f1-c944-4da2-8e56-d26d9261d936", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.288Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", - "modified": "2021-01-06T18:28:42.288Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--ac420a1d-0110-4001-8a3c-8077fb2e8b3d", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.289Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", - "modified": "2021-01-06T18:28:42.289Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--a1743fdf-ce15-438e-97b8-f9c9059a4a2a", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.290Z", - "description": "Subnetworks, Access Control", - "id": "relationship--83dff653-d0ef-425e-8a62-4cf8dbb54b8c", - "modified": "2021-01-06T18:28:42.290Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--06f50d1b-dcf8-40df-92fb-0730e57df9f9", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--659f98c1-b177-4107-9f64-c8ba54d0adff", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--fe27ff45-a365-4fcf-b434-ca21c1b8efef", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--bd313706-7394-44f0-a5b1-c4e413819d47", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--9c2be0e2-7aed-4b89-886c-a337556bf96e", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--0a3ba214-5334-4ee3-9093-ac475d8ed917", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--18ab6cff-8536-4f1b-935c-2b36ebb946b5", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e9e85de8-0ef0-4cef-8a71-a5bdaa700f90", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--862d26b7-c8ee-440d-968c-f440e0c15598", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--3a6c957a-41e0-4bb4-a58c-800ac55341f2", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--4c5f77c3-a5aa-4607-9797-81f1a4ed2bda", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b114fc5c-97a7-42b8-b869-3bc75192d966", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--d3f7436b-6bc1-4d70-9926-d451aa3e8061", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--019ae8a6-bb58-44e5-86ed-c41f3b8dd512", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--bb7914da-87b9-4990-9109-dd797408db6c", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f5e596a5-5a52-4ad2-8b18-525ef2467e06", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--dd7a7e63-495a-4958-8da5-463471dd1c7b", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1b68f161-ee8b-4b63-97d5-88eca415ba8b", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--00f751f7-fef0-4d08-984c-eae6a2eb09ca", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--121446f8-7ec6-42cb-b5a4-5c90755c5323", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.294Z", - "description": "Information Flow Enforcement", - "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", - "modified": "2021-01-06T18:28:42.294Z", + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--fe6cb028-781d-458b-8449-19aa6c335f68", + "modified": "2021-01-13T01:50:52.259Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--86806f96-c8eb-4f34-b509-41d35a3732bd", + "modified": "2021-01-13T01:50:52.259Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--8cac841f-f70a-4d73-9e50-3eca52983f44", + "modified": "2021-01-13T01:50:52.259Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.295Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--915c6e8a-eaac-4498-bba8-7efdbe2ebb89", - "modified": "2021-01-06T18:28:42.295Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.295Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--fa7d6d15-d3eb-42ae-8295-c2b2b294d0b5", - "modified": "2021-01-06T18:28:42.295Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--d07cb403-7e0e-49b3-8dd9-563a2b4738c0", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.296Z", - "description": "Subnetworks, Access Control, DMZ", - "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", - "modified": "2021-01-06T18:28:42.296Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--2f956918-f292-48c2-b5e5-c59d81ab163e", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.298Z", - "description": "Information Flow Enforcement", - "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", - "modified": "2021-01-06T18:28:42.298Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--4264f9ac-6ba0-4fdd-8631-b2ed5f73c3c4", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.299Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--85f534a5-c129-4756-bf6f-52ece7b86a30", - "modified": "2021-01-06T18:28:42.299Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--7e1aa134-48c8-4f3d-9737-1a983acae532", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.299Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a15c236f-62e8-498e-aa09-69e0583b633b", - "modified": "2021-01-06T18:28:42.299Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--14dcd170-665a-4d81-b2b9-9ae800c714cb", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.300Z", - "description": "Subnetworks, Access Control", - "id": "relationship--aba1f45c-d565-4cad-9f72-1a588efefdb4", - "modified": "2021-01-06T18:28:42.300Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--42621f22-e716-4d3a-8676-523ca3827467", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.301Z", - "description": "Information Flow Enforcement", - "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", - "modified": "2021-01-06T18:28:42.301Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--e41643f8-5dcb-4858-b4b6-a75077fabed1", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.302Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:42.302Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--0596a023-f3e9-438a-90cc-36d6c443c3f7", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.303Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--106f8bdd-dd31-480d-b42d-a8113b80129b", - "modified": "2021-01-06T18:28:42.303Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", + "modified": "2021-01-13T01:50:52.261Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--a4203a21-1348-4098-842f-e3e9db65631a", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.304Z", - "description": "Subnetworks, Access Control", - "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", - "modified": "2021-01-06T18:28:42.304Z", + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--c19bbe12-fec5-43a7-b2bc-741df9971d3c", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.305Z", - "description": "Information Flow Enforcement", - "id": "relationship--716ef7f8-9062-4510-a90e-6cbd74ec147a", - "modified": "2021-01-06T18:28:42.305Z", + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.306Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8b37cf53-18e5-4d50-95be-849b625795c2", - "modified": "2021-01-06T18:28:42.306Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--ea311c0f-1e58-484e-b768-bfffb5f12859", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.306Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b50dcf63-c9ea-48e0-9a73-19cac615deae", - "modified": "2021-01-06T18:28:42.306Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--4e2f364a-70f4-4247-bfe2-89c7276dc838", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.307Z", - "description": "Subnetworks, Access Control", - "id": "relationship--04cc86c0-8251-4d1a-81ec-26e82c792dbe", - "modified": "2021-01-06T18:28:42.307Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.308Z", - "description": "Information Flow Enforcement", - "id": "relationship--46e29c11-dd8e-4342-8f14-dd3890168249", - "modified": "2021-01-06T18:28:42.308Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--5c67f13a-e054-4277-b53b-21780062ede6", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.309Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0d6247ec-a4b2-443a-945b-89e59d7ff4b8", - "modified": "2021-01-06T18:28:42.309Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--a87f3537-7823-4df6-8c4c-13d4c414fb41", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.309Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--38c7d2fa-b4b5-476b-bca6-3064cd07dff6", - "modified": "2021-01-06T18:28:42.309Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.310Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a39eabdb-9d30-45c3-9a79-168ff565e94b", - "modified": "2021-01-06T18:28:42.310Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--2745aa77-8f11-4032-b6ca-3c035883799f", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.312Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.312Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--bc19ffdf-480b-4ac0-85b1-7c6684bc190e", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.312Z", - "description": "Information Flow Enforcement", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.312Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--9a09fe50-851a-4dd1-b5e6-742c864901b9", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--ea695177-3d1a-478a-ac6e-409bc7c7d127", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--b3a195ef-b7a2-4777-bc54-223e82efbd34", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--d6772b48-d18e-4bcc-aa06-692b5e9243b1", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--f00bb6ed-d855-4dc9-b6ab-1152bfcf9ff9", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.314Z", - "description": "Subnetworks, Access Control", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.314Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--45f5cbae-09d5-4d59-b660-572cfc6bb3bc", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.314Z", - "description": "Subnetworks, Access Control", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.314Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.315Z", - "description": "Information Flow Enforcement", - "id": "relationship--8b89b6a4-5cf7-40d3-9958-f3c1b183d327", - "modified": "2021-01-06T18:28:42.315Z", + "created": "2021-01-13T01:50:52.267Z", + "id": "relationship--81d5e977-0f8a-4098-851e-affb9f5c5043", + "modified": "2021-01-13T01:50:52.267Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.316Z", - "description": "Information Flow Enforcement", - "id": "relationship--bf0359c6-0a3d-4074-a80a-f276f09f7dca", - "modified": "2021-01-06T18:28:42.316Z", + "created": "2021-01-13T01:50:52.268Z", + "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", + "modified": "2021-01-13T01:50:52.268Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.270Z", + "id": "relationship--bfe626b9-4bca-409d-accb-bcd6d8fd80ae", + "modified": "2021-01-13T01:50:52.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.270Z", + "id": "relationship--97f009cf-5851-463b-86bc-bf0fad9c5471", + "modified": "2021-01-13T01:50:52.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--4547e117-96b1-43eb-b24d-c733a3999630", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c13fc9cf-c643-4f78-84f1-b005797eef39", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--6614de33-6206-403f-8320-1135819108a0", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.318Z", - "description": "Subnetworks, Access Control", - "id": "relationship--4f6e7e6a-fa8d-4bcb-899a-3c3b9aee6ea1", - "modified": "2021-01-06T18:28:42.318Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--bd65d6f3-4d23-4085-9c9a-79c3f2832077", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.318Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b93db89e-d7f3-4090-9e13-b808180ea5e5", - "modified": "2021-01-06T18:28:42.318Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--05503e1b-690c-45ad-a406-7c3adf631791", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.319Z", - "description": "Information Flow Enforcement", - "id": "relationship--a1ebc826-bacf-4fc1-91a6-7a78cc1f2617", - "modified": "2021-01-06T18:28:42.319Z", + "created": "2021-01-13T01:50:52.273Z", + "id": "relationship--9964dce1-809c-457c-93fa-58bc4bd13685", + "modified": "2021-01-13T01:50:52.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.319Z", - "description": "Information Flow Enforcement", - "id": "relationship--f9031f11-7d3f-4479-84fd-a1ed2edf8a56", - "modified": "2021-01-06T18:28:42.319Z", + "created": "2021-01-13T01:50:52.273Z", + "id": "relationship--198cdcae-b821-4dc0-8446-0290b12cf23a", + "modified": "2021-01-13T01:50:52.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.274Z", + "id": "relationship--351dca53-f74b-4b0f-9774-63807ff9366c", + "modified": "2021-01-13T01:50:52.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--efa1b48d-0146-4305-8d84-4a9bf2410c62", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.274Z", + "id": "relationship--1e162577-5dce-4340-a148-f2aed348eb84", + "modified": "2021-01-13T01:50:52.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7db4206d-baf3-4610-951a-593307ccc407", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--ba675e68-23d8-4f8b-a5f2-60f7b2a9431b", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.321Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--91b07aa5-5bf8-48ea-bd89-16ef29af9d3a", - "modified": "2021-01-06T18:28:42.321Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--1d649f4b-7d3a-4795-9a55-99cefedd8342", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.321Z", - "description": "Subnetworks, Access Control", - "id": "relationship--79d9b629-1142-491d-8c59-9a483c48b27f", - "modified": "2021-01-06T18:28:42.321Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--3fed03cf-3ac9-47ed-97a6-c732f7f0f107", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.322Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a8392b76-f186-42d1-ad40-faed9db91282", - "modified": "2021-01-06T18:28:42.322Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--34753ae2-4df5-45d7-83e8-39f133f20c59", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--34a31ef7-f8a7-4a70-ac0c-5bfdbdfdd7ef", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--0ff35e04-8563-46bf-8471-807436d50fed", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--4e157ead-7205-4155-80bc-1c3314f5539a", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.324Z", - "description": "Subnetworks, Access Control", - "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", - "modified": "2021-01-06T18:28:42.324Z", + "created": "2021-01-13T01:50:52.279Z", + "id": "relationship--386177c8-ee60-45be-a6ae-a6744e07320e", + "modified": "2021-01-13T01:50:52.279Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.325Z", - "description": "Information Flow Enforcement", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.325Z", + "created": "2021-01-13T01:50:52.280Z", + "id": "relationship--c7656489-d8f8-4ede-bfcf-b4f7630dd730", + "modified": "2021-01-13T01:50:52.280Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.326Z", - "description": "Information Flow Enforcement", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.326Z", + "created": "2021-01-13T01:50:52.281Z", + "id": "relationship--bfe31c80-ed18-4b1b-bd33-6aa696f29756", + "modified": "2021-01-13T01:50:52.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.326Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.326Z", + "created": "2021-01-13T01:50:52.281Z", + "id": "relationship--3617e630-9e0c-40a7-ba68-744463bb4ea4", + "modified": "2021-01-13T01:50:52.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.282Z", + "id": "relationship--e5a474d2-872c-49c3-a3ed-fa6f50751e79", + "modified": "2021-01-13T01:50:52.282Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.283Z", + "id": "relationship--b39d58a0-b2be-40b5-906d-d8a1f1054bd3", + "modified": "2021-01-13T01:50:52.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--9a10458f-d56c-4069-a2be-0183fc275b31", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--cdf8fe03-60ec-484d-85f3-fa6547ec8a24", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--31a2c80e-7260-4359-9f95-9935e8e2622d", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.285Z", + "id": "relationship--d37cf295-3395-4721-ba31-4a619d378bbf", + "modified": "2021-01-13T01:50:52.285Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.328Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.328Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--c90e2ee4-3515-4ca8-a5bd-7f1954f739e8", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.328Z", - "description": "Subnetworks, Access Control", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.328Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--097d7cbd-b4fa-4e27-a391-d27e156ede4d", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.329Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.329Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--93ff2e57-f059-4883-87cd-61cfb9931c1c", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--84b41bc2-e627-44b1-9fcd-bafaea79adbb", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--c00a1dda-54d4-4bb9-a831-4034c0946023", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--205410c9-5678-4da5-aed1-e441dabe6a7f", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--6b3ca4c3-f441-4be7-b0b1-f123393dee2c", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--926a2141-93a7-4701-8ef4-0ddedffe3524", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--edb39ddb-4643-4efb-89b0-589fca22f62d", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--0658ea34-5653-4b75-9abc-3c9bd5e4f87d", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--d6ab41c8-6da2-4ce5-99ed-fc943bb77693", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--101e3ac0-5d85-4d84-be31-01b4d6094b98", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.288Z", + "id": "relationship--869b95ed-f93f-471e-97bd-d92ad5d3b174", + "modified": "2021-01-13T01:50:52.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--c3c58d0b-c6fe-40e4-85f8-b225e7c0834d", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.288Z", + "id": "relationship--b824bd88-8e67-4908-afa0-300742dcc4c5", + "modified": "2021-01-13T01:50:52.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--d51d701d-49d0-4070-a9ee-8c5a5fd213b1", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--504f7983-ae71-4b44-8803-15baedefef18", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.332Z", - "description": "Information Flow Enforcement", - "id": "relationship--bf3cfdf2-8bb7-47b5-80ed-4158ee217728", - "modified": "2021-01-06T18:28:42.332Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--f5e5c532-08c8-4d9f-b783-623417f4cda8", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a41f1685-6cc6-4380-ad18-2988e6f66016", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--22552045-c6f3-4386-99fd-2c1833912975", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dc51fa06-b389-4c38-94b1-da97beed1485", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--21859c9a-fe90-46dd-a484-9ad952347581", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--509465fe-c9b5-460a-8b57-a24f3f2b0f7d", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--3066c361-c15e-409f-878d-237b697fa9a0", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b7499dd7-3d7b-4436-a75d-5c82e01ea06e", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--30c674f7-7be6-4f30-86ec-b22acc9bbbb3", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--394821f8-8909-43ff-a27d-ddbcfb4498ee", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--e8418da1-8e76-413b-ad39-313f3b67c2fc", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4593c77c-3e20-45cb-88fd-beba003791cf", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--f7374030-13bf-4310-a45c-41850bfe46f4", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--90994318-85bf-4aa8-86fb-9cbb8c57f510", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--36e93395-4c78-43cc-bd7e-50677fa6fab0", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0d2d2d15-44cb-48c5-9263-3524e02c821e", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--b49c42ef-95c4-4201-80fc-0e1259d7746f", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.335Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--02afe20c-b23d-4f56-a4b5-753a98c1d3f9", - "modified": "2021-01-06T18:28:42.335Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--f569e477-046f-435f-973b-3773e54036a8", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8361180b-f6a1-4acf-94d0-af776da035b5", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--43972423-c1b3-41e9-a734-5bde2dd1196b", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2d263b34-e4d0-42da-88d9-a093945816e3", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--1c2125a9-e082-452b-854a-a3f932196157", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--907a90d2-e608-4cad-9f98-008530820e80", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--6aaed86b-d642-4710-a74a-4b265ca37b24", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e8cc2a82-97f0-41d4-ac27-4a365bc346d7", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--e224da7d-857e-4fa6-8c7f-2a7ecaf01a65", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--43dd1118-2711-4c50-843c-461250da3cb9", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.293Z", + "id": "relationship--bb6ea8db-7a43-45f8-97f8-8e34108bec64", + "modified": "2021-01-13T01:50:52.293Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5b6bec73-f2ab-43b7-9a71-ed899a4ecf93", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.294Z", + "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", + "modified": "2021-01-13T01:50:52.294Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.337Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--95703a3f-137c-418b-83f1-01c8ef58182f", - "modified": "2021-01-06T18:28:42.337Z", + "created": "2021-01-13T01:50:52.295Z", + "id": "relationship--2d4074f6-725f-403e-b965-4d894b997f72", + "modified": "2021-01-13T01:50:52.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--9d3c8de5-957c-4ef9-9f50-2b6a9cce4914", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.295Z", + "id": "relationship--1da2ebba-cb57-41b6-b06d-1ad1b7c2419d", + "modified": "2021-01-13T01:50:52.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--5e8614a4-a1f7-4175-9144-0fd2a3b01cfc", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--3fad893d-3b75-4f47-ba90-33b585bf02d8", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--7804c993-c6a4-4c65-8ed5-89faaf0f4468", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.339Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ca7af652-15ac-4218-9c3f-7f0432e880f7", - "modified": "2021-01-06T18:28:42.339Z", + "created": "2021-01-13T01:50:52.299Z", + "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", + "modified": "2021-01-13T01:50:52.299Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.340Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--850f496f-89a2-41d9-9d58-134b087aa55f", - "modified": "2021-01-06T18:28:42.340Z", + "created": "2021-01-13T01:50:52.300Z", + "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", + "modified": "2021-01-13T01:50:52.300Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.340Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8832310c-4254-4c74-9ce9-1ba4bd9d0f7b", - "modified": "2021-01-06T18:28:42.340Z", + "created": "2021-01-13T01:50:52.300Z", + "id": "relationship--cc1276a5-6ea0-43b7-a864-f5b1f8099c96", + "modified": "2021-01-13T01:50:52.300Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.341Z", - "description": "Continuous Monitoring", - "id": "relationship--9963b42b-b82c-44e4-abba-163e750d0698", - "modified": "2021-01-06T18:28:42.341Z", + "created": "2021-01-13T01:50:52.301Z", + "id": "relationship--ec22bc58-0467-4586-98f7-1a4c58300c44", + "modified": "2021-01-13T01:50:52.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.341Z", - "description": "Information Flow Enforcement", - "id": "relationship--78c4d691-1b6d-43e6-8624-dc05e1e75385", - "modified": "2021-01-06T18:28:42.341Z", + "created": "2021-01-13T01:50:52.301Z", + "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", + "modified": "2021-01-13T01:50:52.301Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.342Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e0d451f9-ab93-4b54-9c8d-e864b174348a", - "modified": "2021-01-06T18:28:42.342Z", + "created": "2021-01-13T01:50:52.302Z", + "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", + "modified": "2021-01-13T01:50:52.302Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.343Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--65617ae7-992a-448f-b72a-c87249f35f87", - "modified": "2021-01-06T18:28:42.343Z", + "created": "2021-01-13T01:50:52.303Z", + "id": "relationship--14432486-12ea-4c05-af05-3d33181ac41b", + "modified": "2021-01-13T01:50:52.303Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.344Z", - "description": "Boundary Protection", - "id": "relationship--b7eebe0f-4317-4580-8cee-bf2949891e40", - "modified": "2021-01-06T18:28:42.344Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--8ec72826-a0ce-454d-be2c-b4c58752f7ed", + "modified": "2021-01-13T01:50:52.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.345Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6617855c-ecb1-4070-b9f7-94699cde85c3", - "modified": "2021-01-06T18:28:42.345Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--2827bb20-7e06-46e4-a22c-f111d51c1f09", + "modified": "2021-01-13T01:50:52.307Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.345Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--de0e93dd-2223-4177-a9d9-7ece5637d97b", - "modified": "2021-01-06T18:28:42.345Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", + "modified": "2021-01-13T01:50:52.307Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.308Z", + "id": "relationship--ec5f214c-2080-4371-8d50-d00725ce6ac9", + "modified": "2021-01-13T01:50:52.308Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.346Z", - "description": "Continuous Monitoring", - "id": "relationship--81402d3d-db55-424d-8728-458642ee4209", - "modified": "2021-01-06T18:28:42.346Z", + "created": "2021-01-13T01:50:52.308Z", + "id": "relationship--34cc3471-b3ef-4d6b-ada8-004c7bc791ca", + "modified": "2021-01-13T01:50:52.308Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.347Z", - "description": "Information Flow Enforcement", - "id": "relationship--79692160-46a5-4805-ab7e-619936f7aae7", - "modified": "2021-01-06T18:28:42.347Z", + "created": "2021-01-13T01:50:52.309Z", + "id": "relationship--685b06fd-d2d7-40f4-9b28-00a665ac0f0e", + "modified": "2021-01-13T01:50:52.309Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.347Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--12726305-6b8e-4a35-843a-28cc06d2d6ad", - "modified": "2021-01-06T18:28:42.347Z", + "created": "2021-01-13T01:50:52.309Z", + "id": "relationship--e81074ab-bdc6-4e9f-a374-cf2f9039f137", + "modified": "2021-01-13T01:50:52.309Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.348Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8d9a2eb4-cd2e-408c-a32a-a9054b18d43a", - "modified": "2021-01-06T18:28:42.348Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.349Z", - "description": "Boundary Protection", - "id": "relationship--e91d76a2-2192-4b94-a442-4c2b1f9a8ad3", - "modified": "2021-01-06T18:28:42.349Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.350Z", - "description": "Continuous Monitoring", - "id": "relationship--d11bdff9-191a-49b4-aa61-c3bba49969c1", - "modified": "2021-01-06T18:28:42.350Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.351Z", - "description": "Information Flow Enforcement", - "id": "relationship--ee4cd162-18dc-4f3f-9cbc-d8265c85c82a", - "modified": "2021-01-06T18:28:42.351Z", + "created": "2021-01-13T01:50:52.311Z", + "id": "relationship--6025c7fb-89bb-454d-9f78-ed0d89b567a5", + "modified": "2021-01-13T01:50:52.311Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.352Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b3190077-d0d4-479a-9bf4-1b9e9d1ee218", - "modified": "2021-01-06T18:28:42.352Z", + "created": "2021-01-13T01:50:52.311Z", + "id": "relationship--465a96cc-7dfe-4086-bdb7-509e0045eeb7", + "modified": "2021-01-13T01:50:52.311Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.352Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--faa76961-bece-4984-ab80-7de29c83c3b8", - "modified": "2021-01-06T18:28:42.352Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", + "modified": "2021-01-13T01:50:52.312Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.353Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--af443bae-f605-4c63-bbb1-b2f4a0aa3827", - "modified": "2021-01-06T18:28:42.353Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", + "modified": "2021-01-13T01:50:52.312Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.353Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4e661cac-a53a-41e1-884e-7ee31afb19d1", - "modified": "2021-01-06T18:28:42.353Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", + "modified": "2021-01-13T01:50:52.312Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.354Z", - "description": "Boundary Protection", - "id": "relationship--0a05e54b-54e1-4cdf-85e6-1fbdd75acd5e", - "modified": "2021-01-06T18:28:42.354Z", + "created": "2021-01-13T01:50:52.313Z", + "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", + "modified": "2021-01-13T01:50:52.313Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.355Z", - "description": "Continuous Monitoring", - "id": "relationship--3a6cdfcb-853f-4acb-bcd5-d053f11bdca8", - "modified": "2021-01-06T18:28:42.355Z", + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--848578ac-f07e-41d4-b984-56f2b377b334", + "modified": "2021-01-13T01:50:52.314Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.356Z", - "description": "Information Flow Enforcement", - "id": "relationship--138d57b3-1a10-4679-a9d2-ac983b351a1e", - "modified": "2021-01-06T18:28:42.356Z", + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--71ca06ed-8a98-48f8-82c4-3c18e80da284", + "modified": "2021-01-13T01:50:52.314Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.357Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0c12ece3-5e08-44d4-93f4-a0a0fb2f5b97", - "modified": "2021-01-06T18:28:42.357Z", + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--e4b43e9b-c6a8-412a-887d-968c234b818e", + "modified": "2021-01-13T01:50:52.314Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.357Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d2007a89-ca1e-4e1e-be82-ba960f20b0c2", - "modified": "2021-01-06T18:28:42.357Z", + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.358Z", - "description": "Boundary Protection", - "id": "relationship--be4c4e9d-cf76-4098-bb7d-bdc3bba49468", - "modified": "2021-01-06T18:28:42.358Z", + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.360Z", - "description": "Continuous Monitoring", - "id": "relationship--ed52af34-8079-4d58-a228-409d64c484a1", - "modified": "2021-01-06T18:28:42.360Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--b243be97-1242-46b9-ac7b-f3274322704b", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.361Z", - "description": "Information Flow Enforcement", - "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", - "modified": "2021-01-06T18:28:42.361Z", + "created": "2021-01-13T01:50:52.317Z", + "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", + "modified": "2021-01-13T01:50:52.317Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.362Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6b759ca0-2ccb-47f4-bbc2-d43b2d0500f9", - "modified": "2021-01-06T18:28:42.362Z", + "created": "2021-01-13T01:50:52.317Z", + "id": "relationship--d1cd9967-c9a0-4f4b-994f-fab89a9c96f0", + "modified": "2021-01-13T01:50:52.317Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.362Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d3d0b1cc-1865-4e78-b204-5c1364416db3", - "modified": "2021-01-06T18:28:42.362Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.364Z", - "description": "Boundary Protection", - "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", - "modified": "2021-01-06T18:28:42.364Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.365Z", - "description": "Continuous Monitoring", - "id": "relationship--89d3d0c0-9f16-40b2-9b9a-5a9253287d80", - "modified": "2021-01-06T18:28:42.365Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.366Z", - "description": "Continuous Monitoring", - "id": "relationship--16395758-b36a-4176-aa09-9855e0e2ab6f", - "modified": "2021-01-06T18:28:42.366Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.366Z", - "description": "Continuous Monitoring", - "id": "relationship--8d626ddc-9f57-4bd3-b65e-99d3fc1b64b8", - "modified": "2021-01-06T18:28:42.366Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.367Z", - "description": "Information Flow Enforcement", - "id": "relationship--016734bf-da5f-48a7-81e0-a0813320d0f6", - "modified": "2021-01-06T18:28:42.367Z", + "created": "2021-01-13T01:50:52.324Z", + "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", + "modified": "2021-01-13T01:50:52.324Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.367Z", - "description": "Information Flow Enforcement", - "id": "relationship--46b61c11-f515-4b48-9ad4-fe7eb2a23a83", - "modified": "2021-01-06T18:28:42.367Z", + "created": "2021-01-13T01:50:52.324Z", + "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", + "modified": "2021-01-13T01:50:52.324Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.368Z", - "description": "Information Flow Enforcement", - "id": "relationship--dcfe2c71-ecd1-4333-bdce-bac119a42371", - "modified": "2021-01-06T18:28:42.368Z", + "created": "2021-01-13T01:50:52.325Z", + "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", + "modified": "2021-01-13T01:50:52.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7a1611f-9ad8-4a6b-a583-8d375f81d150", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.325Z", + "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", + "modified": "2021-01-13T01:50:52.325Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7d9a698f-32fb-4553-af6c-e8dcde45fd65", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--72b3c822-3c63-4609-8568-d817963bd20f", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--27bca785-3919-4c97-b09d-fbc57bbe35aa", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.370Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4591e76e-80af-4dc0-b919-2c1e60d85aa1", - "modified": "2021-01-06T18:28:42.370Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.370Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6d5dd55e-2d60-418a-92e3-04e627b97668", - "modified": "2021-01-06T18:28:42.370Z", + "created": "2021-01-13T01:50:52.333Z", + "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", + "modified": "2021-01-13T01:50:52.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.371Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--ed65be15-cac0-477c-ac7c-8f98beccdaa6", - "modified": "2021-01-06T18:28:42.371Z", + "created": "2021-01-13T01:50:52.334Z", + "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", + "modified": "2021-01-13T01:50:52.334Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.371Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--7fd6f13f-f973-4b0e-8ebd-600549d4a1d6", - "modified": "2021-01-06T18:28:42.371Z", + "created": "2021-01-13T01:50:52.335Z", + "id": "relationship--cd37cbfe-57f4-4c6e-a47b-3fab841d0fee", + "modified": "2021-01-13T01:50:52.335Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--bc00957c-9101-4688-8092-4ac5b10b03a3", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.335Z", + "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", + "modified": "2021-01-13T01:50:52.335Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--0071bd17-6e52-44e1-881c-f831c9c5bd01", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--14a2b13b-b34b-4857-9346-3ca95eaace59", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--a5a4314a-77a3-4670-91e7-54eecca41599", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.337Z", + "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", + "modified": "2021-01-13T01:50:52.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.337Z", + "id": "relationship--2dc8f3ab-0a30-41e4-93bb-386c3f97b66e", + "modified": "2021-01-13T01:50:52.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f65afa24-ff21-4d40-a73d-af6952dae371", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.339Z", + "id": "relationship--cbe17ed0-3f00-4d37-be83-2dd6ba0949e5", + "modified": "2021-01-13T01:50:52.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.340Z", + "id": "relationship--1be0095a-cfec-41e7-ab07-5d0175585db7", + "modified": "2021-01-13T01:50:52.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.340Z", + "id": "relationship--7ac507b6-d448-4a44-8b12-b1b120d09cd3", + "modified": "2021-01-13T01:50:52.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--0b3e32f8-cd34-472e-8080-f7364ac76afc", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--33ca6bb1-cd42-4562-9ea6-199837a30a43", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.374Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1b401738-22af-4ede-aff9-248e542063ab", - "modified": "2021-01-06T18:28:42.374Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5e7d7c5b-bb26-4322-a875-a588af21a11d", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--45411518-e996-4522-a01b-079fc8fefe20", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.343Z", + "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", + "modified": "2021-01-13T01:50:52.343Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b804d387-7c1b-4d4e-afe4-ba238ff8a54f", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.344Z", + "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", + "modified": "2021-01-13T01:50:52.344Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--887ac699-df70-4526-bd59-d9a7cbfde7e0", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.345Z", + "id": "relationship--7bc6729d-b031-47c2-8d6e-83a704090756", + "modified": "2021-01-13T01:50:52.345Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0872277f-485c-47f3-bd5d-855e82159650", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.345Z", + "id": "relationship--00720d20-420f-4fe9-898b-55d8566fc104", + "modified": "2021-01-13T01:50:52.345Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f121fcf4-8469-446a-ba28-a0afccd8d24b", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.346Z", + "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", + "modified": "2021-01-13T01:50:52.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--34c1968f-1fc2-43c3-bf72-f32be194269e", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--eb2fde71-ce15-4b13-bb91-7b54252d400c", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.376Z", - "description": "Continuous Monitoring", - "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", - "modified": "2021-01-06T18:28:42.376Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--dd1b81d5-b51e-4ab4-90d5-f01548b5c59a", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--54bbe46a-092f-4900-af93-f41a2a0fbfee", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--accaa4df-1a0f-4a32-ba2f-3be36ebd107b", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--a713ae45-84f5-4974-871f-335961e8721d", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--cb408d28-8cab-42ea-a7f6-dc47c8353f73", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--312ff30c-fbfb-4e55-8ce7-d9a3a3bd83ba", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--f3ace1b8-5fd3-4e0b-840f-c7d07bee1289", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0c09fa88-d242-4604-8521-382f09d90e1d", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--0f3c8987-8a42-4d0e-a389-65f055610296", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6d4fd787-38a5-45b6-b707-e5e72aa6723a", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--cd80f23f-edd6-4151-83ca-e9d9be6a469a", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0462058c-3dc4-4ce8-ab85-ce0e9d193c0b", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--6900caa2-7b40-4c30-925d-28dd1ea9e7e8", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--058c626a-3a2b-42fe-aeb2-08df5248366a", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--4d6b121e-348c-4b5b-8c66-a44258a67451", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--a6ab8da3-1abc-4177-9589-9ff4e22808d0", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--21607e6d-5ceb-4d11-928a-362339a0cd06", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d23f21d3-a8d7-4e19-ba4a-acc986d3f540", - "modified": "2021-01-06T18:28:42.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--22d65ece-6e8b-4fa0-8125-e7351ec9aeb6", - "modified": "2021-01-06T18:28:42.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ea5ac750-2761-46f2-8b11-533eb205c029", - "modified": "2021-01-06T18:28:42.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b4a2177e-1717-4ea6-b436-5c2acfcb3efe", - "modified": "2021-01-06T18:28:42.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.384Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.384Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.384Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.384Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e2b8bb6c-554a-474d-94b9-d27ee01dc3e3", - "modified": "2021-01-06T18:28:42.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--cc154a5e-f425-4ca7-87c2-9f879f605dcd", - "modified": "2021-01-06T18:28:42.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3dd10dad-e61d-4cea-ad70-82b2bc46debd", - "modified": "2021-01-06T18:28:42.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7b37a7e8-4a0e-414a-b847-a792c80166e8", - "modified": "2021-01-06T18:28:42.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--aad167b4-c7b7-48bb-90c0-878e1cd5ff48", - "modified": "2021-01-06T18:28:42.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e69e69cd-8e13-474e-a761-91d3c42ebbfd", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5edea047-9fdd-4c21-b75a-1fc2efdf36f1", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--56bf67dd-b855-4f4e-8edc-0c47d1c8f7f6", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--90a05fb9-e79e-4852-90eb-513aed0b32c8", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e0e6ca5e-dd06-4f28-a13a-d6a072db53cd", - "modified": "2021-01-06T18:28:42.386Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b0415e04-af35-41ce-924b-0e6b4093ce5e", - "modified": "2021-01-06T18:28:42.387Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c2e6c2fa-4cbd-485b-a63e-60e9d298a97a", - "modified": "2021-01-06T18:28:42.387Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e0bb22bd-6485-455d-ba34-f34d29bb1bca", - "modified": "2021-01-06T18:28:42.387Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--54c7e164-481b-4089-a1e7-e4740c75fd29", - "modified": "2021-01-06T18:28:42.387Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.388Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--351fa0f8-63fe-4ca0-9556-36d6cd8ab2f1", - "modified": "2021-01-06T18:28:42.388Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--987032b6-f6b0-44a4-b45a-aa2dc21ee94b", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--15874212-3850-4ee4-b895-0516ddbb87a5", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--f0f8c427-002a-43ee-847e-e7d177f44be4", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d1da2416-1794-46e7-880b-cc3ebf6da5f2", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--b95b17a7-0221-44d9-883f-bd06d061863e", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--12e66fbe-50af-4cca-b779-39dd23fa5a4a", - "modified": "2021-01-06T18:28:42.389Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--62ec0a84-a2fb-492e-be70-bbc90a4340aa", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--05e21240-8a90-4c2b-ac68-928841906ab8", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--549c9581-8913-48c7-a2ef-c7b69a820ff6", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ba016b07-af04-428b-84c0-3bcb85c69fef", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6ec6f180-9b6a-4b12-902b-f9e70c92f4c5", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6efab994-ab5f-4970-873b-f79fd2ede037", - "modified": "2021-01-06T18:28:42.390Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--50af1c79-48dd-476c-a903-f3bd1e3fa978", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--2120f2f9-3e57-4199-9043-033ec37ca540", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--03f2f429-625d-44bd-a7a1-4836b9f8556d", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--e573d3fb-77c6-497d-9b8f-0b4cd50701a9", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--8c1fa586-feed-4a08-8f77-ec56a0bef82b", - "modified": "2021-01-06T18:28:42.391Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d0888772-9ea7-45a2-b0c4-54cd38491843", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--3d774e3c-d459-410f-af4f-0ceafde47465", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--0ff87b2f-aba3-4fe7-ae30-29196026ecf5", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--70b30aad-9c68-465d-af77-38fe46856f85", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c6849a43-57dd-4f24-b299-2c3c8467a455", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--25f971f3-d721-432a-9e76-5ca966b5b01e", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a8eaeb54-228a-4df9-a250-ce36c7a3e1db", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--7bf27d7e-57b7-4459-b410-c10e201632f3", - "modified": "2021-01-06T18:28:42.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--57bb0afd-1098-4197-ac8c-5d35a6a1f897", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--addcf52d-f17e-4289-9992-6e4b7c477b83", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c4c45097-be29-440d-a6d9-14b3a91ed990", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--001ec63c-877a-44b7-bdc5-34cbf3407cc9", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ddee43df-5a03-4904-9cfd-36f00cd1c323", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6e8eb5eb-efa4-4ecf-a8b6-c3a5c0f7e98a", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--67efa85f-7d12-4dfa-a675-e87f7bd8fde2", - "modified": "2021-01-06T18:28:42.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--3b113689-1d2b-4fd3-a7d6-49a2a9703689", - "modified": "2021-01-06T18:28:42.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--5e8b16f1-c944-4da2-8e56-d26d9261d936", - "modified": "2021-01-06T18:28:42.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ac420a1d-0110-4001-8a3c-8077fb2e8b3d", - "modified": "2021-01-06T18:28:42.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a1743fdf-ce15-438e-97b8-f9c9059a4a2a", - "modified": "2021-01-06T18:28:42.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06f50d1b-dcf8-40df-92fb-0730e57df9f9", - "modified": "2021-01-06T18:28:42.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fe27ff45-a365-4fcf-b434-ca21c1b8efef", - "modified": "2021-01-06T18:28:42.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9c2be0e2-7aed-4b89-886c-a337556bf96e", - "modified": "2021-01-06T18:28:42.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--18ab6cff-8536-4f1b-935c-2b36ebb946b5", - "modified": "2021-01-06T18:28:42.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--862d26b7-c8ee-440d-968c-f440e0c15598", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3a6c957a-41e0-4bb4-a58c-800ac55341f2", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4c5f77c3-a5aa-4607-9797-81f1a4ed2bda", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d3f7436b-6bc1-4d70-9926-d451aa3e8061", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--019ae8a6-bb58-44e5-86ed-c41f3b8dd512", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bb7914da-87b9-4990-9109-dd797408db6c", - "modified": "2021-01-06T18:28:42.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.397Z", - "description": "Continuous Monitoring", - "id": "relationship--dd7a7e63-495a-4958-8da5-463471dd1c7b", - "modified": "2021-01-06T18:28:42.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", - "modified": "2021-01-06T18:28:42.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--121446f8-7ec6-42cb-b5a4-5c90755c5323", - "modified": "2021-01-06T18:28:42.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--fe6cb028-781d-458b-8449-19aa6c335f68", - "modified": "2021-01-06T18:28:42.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.399Z", - "description": "Continuous Monitoring", - "id": "relationship--86806f96-c8eb-4f34-b509-41d35a3732bd", - "modified": "2021-01-06T18:28:42.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--8cac841f-f70a-4d73-9e50-3eca52983f44", - "modified": "2021-01-06T18:28:42.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", - "modified": "2021-01-06T18:28:42.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--d07cb403-7e0e-49b3-8dd9-563a2b4738c0", - "modified": "2021-01-06T18:28:42.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f956918-f292-48c2-b5e5-c59d81ab163e", - "modified": "2021-01-06T18:28:42.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.401Z", - "description": "Information Flow Enforcement", - "id": "relationship--4264f9ac-6ba0-4fdd-8631-b2ed5f73c3c4", - "modified": "2021-01-06T18:28:42.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7e1aa134-48c8-4f3d-9737-1a983acae532", - "modified": "2021-01-06T18:28:42.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14dcd170-665a-4d81-b2b9-9ae800c714cb", - "modified": "2021-01-06T18:28:42.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--42621f22-e716-4d3a-8676-523ca3827467", - "modified": "2021-01-06T18:28:42.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e41643f8-5dcb-4858-b4b6-a75077fabed1", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0596a023-f3e9-438a-90cc-36d6c443c3f7", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a4203a21-1348-4098-842f-e3e9db65631a", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c19bbe12-fec5-43a7-b2bc-741df9971d3c", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", - "modified": "2021-01-06T18:28:42.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.404Z", - "description": "Continuous Monitoring", - "id": "relationship--ea311c0f-1e58-484e-b768-bfffb5f12859", - "modified": "2021-01-06T18:28:42.404Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.404Z", - "description": "Continuous Monitoring", - "id": "relationship--4e2f364a-70f4-4247-bfe2-89c7276dc838", - "modified": "2021-01-06T18:28:42.404Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.405Z", - "description": "Continuous Monitoring", - "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", - "modified": "2021-01-06T18:28:42.405Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.405Z", - "description": "Information Flow Enforcement", - "id": "relationship--5c67f13a-e054-4277-b53b-21780062ede6", - "modified": "2021-01-06T18:28:42.405Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.405Z", - "description": "Information Flow Enforcement", - "id": "relationship--a87f3537-7823-4df6-8c4c-13d4c414fb41", - "modified": "2021-01-06T18:28:42.405Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.406Z", - "description": "Information Flow Enforcement", - "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", - "modified": "2021-01-06T18:28:42.406Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.406Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2745aa77-8f11-4032-b6ca-3c035883799f", - "modified": "2021-01-06T18:28:42.406Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bc19ffdf-480b-4ac0-85b1-7c6684bc190e", - "modified": "2021-01-06T18:28:42.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9a09fe50-851a-4dd1-b5e6-742c864901b9", - "modified": "2021-01-06T18:28:42.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea695177-3d1a-478a-ac6e-409bc7c7d127", - "modified": "2021-01-06T18:28:42.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b3a195ef-b7a2-4777-bc54-223e82efbd34", - "modified": "2021-01-06T18:28:42.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d6772b48-d18e-4bcc-aa06-692b5e9243b1", - "modified": "2021-01-06T18:28:42.407Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--f00bb6ed-d855-4dc9-b6ab-1152bfcf9ff9", - "modified": "2021-01-06T18:28:42.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--45f5cbae-09d5-4d59-b660-572cfc6bb3bc", - "modified": "2021-01-06T18:28:42.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", - "modified": "2021-01-06T18:28:42.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--81d5e977-0f8a-4098-851e-affb9f5c5043", - "modified": "2021-01-06T18:28:42.409Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.409Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.409Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.410Z", - "description": "Continuous Monitoring", - "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", - "modified": "2021-01-06T18:28:42.410Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.411Z", - "description": "Information Flow Enforcement", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.412Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bfe626b9-4bca-409d-accb-bcd6d8fd80ae", - "modified": "2021-01-06T18:28:42.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.412Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--97f009cf-5851-463b-86bc-bf0fad9c5471", - "modified": "2021-01-06T18:28:42.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.413Z", - "description": "Boundary Protection", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.413Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c176ea35-c49e-4da5-82d3-9f1d06477ccc", - "modified": "2021-01-06T18:28:42.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--259271cb-6c2d-4c18-9cbd-7a27496e4d1d", - "modified": "2021-01-06T18:28:42.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8767deb8-9573-44d8-95f3-ec3641099966", - "modified": "2021-01-06T18:28:42.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b0ca4bbe-dc6b-4f0e-a260-988e751ecb05", - "modified": "2021-01-06T18:28:42.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1299ad81-082b-41e0-b62e-27fbc1bbd7bf", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7a2e6ff8-3fa6-4572-98c7-fb7c1c0ff7e8", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c52275a9-10be-4bea-b041-0c62b80d9361", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0577f38f-6a36-471f-bf5b-dbd6315c3d85", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4547e117-96b1-43eb-b24d-c733a3999630", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--6614de33-6206-403f-8320-1135819108a0", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bd65d6f3-4d23-4085-9c9a-79c3f2832077", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--05503e1b-690c-45ad-a406-7c3adf631791", - "modified": "2021-01-06T18:28:42.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.416Z", - "description": "Continuous Monitoring", - "id": "relationship--9964dce1-809c-457c-93fa-58bc4bd13685", - "modified": "2021-01-06T18:28:42.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--198cdcae-b821-4dc0-8446-0290b12cf23a", - "modified": "2021-01-06T18:28:42.417Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--351dca53-f74b-4b0f-9774-63807ff9366c", - "modified": "2021-01-06T18:28:42.417Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--1e162577-5dce-4340-a148-f2aed348eb84", - "modified": "2021-01-06T18:28:42.417Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--1614ce97-f0a1-4eb6-abdc-dac5f15ecccb", - "modified": "2021-01-06T18:28:42.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--40d166e4-948a-4e96-9dc0-572038ce8e4a", - "modified": "2021-01-06T18:28:42.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--a70b577d-9930-43ae-be8d-24664adcdc23", - "modified": "2021-01-06T18:28:42.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--dffd4cca-3a57-40ad-98f5-5091e09cfe80", - "modified": "2021-01-06T18:28:42.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ebad5c56-2b9b-436d-9714-b70b2ee43d2b", - "modified": "2021-01-06T18:28:42.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06b816e2-8b12-43da-b40b-cbaa19ce7065", - "modified": "2021-01-06T18:28:42.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9bcde945-a185-4358-adf6-47d25af8bdbb", - "modified": "2021-01-06T18:28:42.419Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--43756742-f5c7-461d-9294-4378dc4f23b9", - "modified": "2021-01-06T18:28:42.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ba675e68-23d8-4f8b-a5f2-60f7b2a9431b", - "modified": "2021-01-06T18:28:42.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--1d649f4b-7d3a-4795-9a55-99cefedd8342", - "modified": "2021-01-06T18:28:42.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3fed03cf-3ac9-47ed-97a6-c732f7f0f107", - "modified": "2021-01-06T18:28:42.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--34753ae2-4df5-45d7-83e8-39f133f20c59", - "modified": "2021-01-06T18:28:42.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--fd37262c-6c27-492d-8c33-4c220e4effb8", - "modified": "2021-01-06T18:28:42.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--cdd7402a-923d-4c78-b743-e819acbcc535", - "modified": "2021-01-06T18:28:42.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--0a4cecb1-58ea-4e95-8f61-3245c6e124ed", - "modified": "2021-01-06T18:28:42.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--a62c005e-2fba-46b4-b5fe-b5077e68c911", - "modified": "2021-01-06T18:28:42.421Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.422Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--34a31ef7-f8a7-4a70-ac0c-5bfdbdfdd7ef", - "modified": "2021-01-06T18:28:42.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.422Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0ff35e04-8563-46bf-8471-807436d50fed", - "modified": "2021-01-06T18:28:42.422Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.423Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4e157ead-7205-4155-80bc-1c3314f5539a", - "modified": "2021-01-06T18:28:42.423Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.423Z", - "description": "Continuous Monitoring", - "id": "relationship--386177c8-ee60-45be-a6ae-a6744e07320e", - "modified": "2021-01-06T18:28:42.423Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.424Z", - "description": "Information Flow Enforcement", - "id": "relationship--c7656489-d8f8-4ede-bfcf-b4f7630dd730", - "modified": "2021-01-06T18:28:42.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.425Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bfe31c80-ed18-4b1b-bd33-6aa696f29756", - "modified": "2021-01-06T18:28:42.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.425Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3617e630-9e0c-40a7-ba68-744463bb4ea4", - "modified": "2021-01-06T18:28:42.425Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.426Z", - "description": "Boundary Protection", - "id": "relationship--e5a474d2-872c-49c3-a3ed-fa6f50751e79", - "modified": "2021-01-06T18:28:42.426Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.427Z", - "description": "Continuous Monitoring", - "id": "relationship--b39d58a0-b2be-40b5-906d-d8a1f1054bd3", - "modified": "2021-01-06T18:28:42.427Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.429Z", - "description": "Information Flow Enforcement", - "id": "relationship--9a10458f-d56c-4069-a2be-0183fc275b31", - "modified": "2021-01-06T18:28:42.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.429Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cdf8fe03-60ec-484d-85f3-fa6547ec8a24", - "modified": "2021-01-06T18:28:42.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.430Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--31a2c80e-7260-4359-9f95-9935e8e2622d", - "modified": "2021-01-06T18:28:42.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.430Z", - "description": "Boundary Protection", - "id": "relationship--d37cf295-3395-4721-ba31-4a619d378bbf", - "modified": "2021-01-06T18:28:42.430Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.431Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c90e2ee4-3515-4ca8-a5bd-7f1954f739e8", - "modified": "2021-01-06T18:28:42.431Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.432Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--097d7cbd-b4fa-4e27-a391-d27e156ede4d", - "modified": "2021-01-06T18:28:42.432Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.433Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--93ff2e57-f059-4883-87cd-61cfb9931c1c", - "modified": "2021-01-06T18:28:42.433Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.434Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c00a1dda-54d4-4bb9-a831-4034c0946023", - "modified": "2021-01-06T18:28:42.434Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6b3ca4c3-f441-4be7-b0b1-f123393dee2c", - "modified": "2021-01-06T18:28:42.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--edb39ddb-4643-4efb-89b0-589fca22f62d", - "modified": "2021-01-06T18:28:42.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d6ab41c8-6da2-4ce5-99ed-fc943bb77693", - "modified": "2021-01-06T18:28:42.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--869b95ed-f93f-471e-97bd-d92ad5d3b174", - "modified": "2021-01-06T18:28:42.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b824bd88-8e67-4908-afa0-300742dcc4c5", - "modified": "2021-01-06T18:28:42.435Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.436Z", - "description": "Boundary Protection", - "id": "relationship--504f7983-ae71-4b44-8803-15baedefef18", - "modified": "2021-01-06T18:28:42.436Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.437Z", - "description": "Boundary Protection", - "id": "relationship--f5e5c532-08c8-4d9f-b783-623417f4cda8", - "modified": "2021-01-06T18:28:42.437Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.437Z", - "description": "Boundary Protection", - "id": "relationship--22552045-c6f3-4386-99fd-2c1833912975", - "modified": "2021-01-06T18:28:42.437Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--21859c9a-fe90-46dd-a484-9ad952347581", - "modified": "2021-01-06T18:28:42.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3066c361-c15e-409f-878d-237b697fa9a0", - "modified": "2021-01-06T18:28:42.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--30c674f7-7be6-4f30-86ec-b22acc9bbbb3", - "modified": "2021-01-06T18:28:42.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e8418da1-8e76-413b-ad39-313f3b67c2fc", - "modified": "2021-01-06T18:28:42.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7374030-13bf-4310-a45c-41850bfe46f4", - "modified": "2021-01-06T18:28:42.438Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.439Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--36e93395-4c78-43cc-bd7e-50677fa6fab0", - "modified": "2021-01-06T18:28:42.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.439Z", - "description": "Information Flow Enforcement", - "id": "relationship--b49c42ef-95c4-4201-80fc-0e1259d7746f", - "modified": "2021-01-06T18:28:42.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.440Z", - "description": "Information Flow Enforcement", - "id": "relationship--f569e477-046f-435f-973b-3773e54036a8", - "modified": "2021-01-06T18:28:42.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.440Z", - "description": "Information Flow Enforcement", - "id": "relationship--43972423-c1b3-41e9-a734-5bde2dd1196b", - "modified": "2021-01-06T18:28:42.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--1c2125a9-e082-452b-854a-a3f932196157", - "modified": "2021-01-06T18:28:42.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--6aaed86b-d642-4710-a74a-4b265ca37b24", - "modified": "2021-01-06T18:28:42.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--e224da7d-857e-4fa6-8c7f-2a7ecaf01a65", - "modified": "2021-01-06T18:28:42.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bb6ea8db-7a43-45f8-97f8-8e34108bec64", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", - "modified": "2021-01-06T18:28:42.442Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.443Z", - "description": "Continuous Monitoring", - "id": "relationship--5e01c5f9-e4c9-4e0e-8ff7-0f240a0dacb9", - "modified": "2021-01-06T18:28:42.443Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.443Z", - "description": "Continuous Monitoring", - "id": "relationship--c3780403-411c-40e9-a6ea-1ad9b5885696", - "modified": "2021-01-06T18:28:42.443Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.444Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2d4074f6-725f-403e-b965-4d894b997f72", - "modified": "2021-01-06T18:28:42.444Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--1da2ebba-cb57-41b6-b06d-1ad1b7c2419d", - "modified": "2021-01-06T18:28:42.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:42.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:42.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2bc93b37-3253-4fc7-b823-400065326116", - "modified": "2021-01-06T18:28:42.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:42.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.446Z", - "description": "Information Flow Enforcement", - "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:42.446Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.446Z", - "description": "Information Flow Enforcement", - "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:42.446Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", - "modified": "2021-01-06T18:28:42.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", - "modified": "2021-01-06T18:28:42.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.448Z", - "description": "Continuous Monitoring", - "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", - "modified": "2021-01-06T18:28:42.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.449Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", - "modified": "2021-01-06T18:28:42.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.450Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--cc1276a5-6ea0-43b7-a864-f5b1f8099c96", - "modified": "2021-01-06T18:28:42.450Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.451Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ec22bc58-0467-4586-98f7-1a4c58300c44", - "modified": "2021-01-06T18:28:42.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.451Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.452Z", - "description": "Boundary Protection", - "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", - "modified": "2021-01-06T18:28:42.452Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:42.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:42.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14432486-12ea-4c05-af05-3d33181ac41b", - "modified": "2021-01-06T18:28:42.453Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.454Z", - "description": "Continuous Monitoring", - "id": "relationship--9054ee20-c7b5-49da-ab47-0285596f3c68", - "modified": "2021-01-06T18:28:42.454Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:42.455Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:42.455Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4663250d-6195-4c2d-8acc-2e3f32900e63", - "modified": "2021-01-06T18:28:42.455Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.456Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:42.456Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.456Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--703c0e03-6a13-4884-8cd4-8d2568e479fd", - "modified": "2021-01-06T18:28:42.456Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.457Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--8ec72826-a0ce-454d-be2c-b4c58752f7ed", - "modified": "2021-01-06T18:28:42.457Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--2827bb20-7e06-46e4-a22c-f111d51c1f09", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--ec5f214c-2080-4371-8d50-d00725ce6ac9", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--34cc3471-b3ef-4d6b-ada8-004c7bc791ca", - "modified": "2021-01-06T18:28:42.458Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.459Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", - "modified": "2021-01-06T18:28:42.459Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.460Z", - "description": "Continuous Monitoring", - "id": "relationship--685b06fd-d2d7-40f4-9b28-00a665ac0f0e", - "modified": "2021-01-06T18:28:42.460Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.460Z", - "description": "Continuous Monitoring", - "id": "relationship--e81074ab-bdc6-4e9f-a374-cf2f9039f137", - "modified": "2021-01-06T18:28:42.460Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", - "modified": "2021-01-06T18:28:42.461Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:42.461Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:42.461Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:42.461Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6025c7fb-89bb-454d-9f78-ed0d89b567a5", - "modified": "2021-01-06T18:28:42.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--19557c25-c895-4232-a686-eb7852b3dd23", - "modified": "2021-01-06T18:28:42.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--465a96cc-7dfe-4086-bdb7-509e0045eeb7", - "modified": "2021-01-06T18:28:42.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--8669ec42-0f78-487e-b536-4462886d318c", - "modified": "2021-01-06T18:28:42.462Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.463Z", - "description": "Continuous Monitoring", - "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", - "modified": "2021-01-06T18:28:42.463Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.464Z", - "description": "Continuous Monitoring", - "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", - "modified": "2021-01-06T18:28:42.464Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.464Z", - "description": "Continuous Monitoring", - "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", - "modified": "2021-01-06T18:28:42.464Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", - "modified": "2021-01-06T18:28:42.465Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.465Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.465Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.466Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--848578ac-f07e-41d4-b984-56f2b377b334", - "modified": "2021-01-06T18:28:42.466Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.466Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--71ca06ed-8a98-48f8-82c4-3c18e80da284", - "modified": "2021-01-06T18:28:42.466Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e4b43e9b-c6a8-412a-887d-968c234b818e", - "modified": "2021-01-06T18:28:42.467Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.467Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:42.467Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.467Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.468Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", - "modified": "2021-01-06T18:28:42.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.468Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.468Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--b243be97-1242-46b9-ac7b-f3274322704b", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--09c3f201-a35e-4afc-8927-ab8bc1d78823", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--d1cd9967-c9a0-4f4b-994f-fab89a9c96f0", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--4c566c4c-c21a-4c21-a06a-07d9deb62ba1", - "modified": "2021-01-06T18:28:42.469Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.470Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:42.470Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.470Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", - "modified": "2021-01-06T18:28:42.470Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.471Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.473Z", - "description": "Continuous Monitoring", - "id": "relationship--3cedd134-7cdf-4e45-89b5-66673d71c464", - "modified": "2021-01-06T18:28:42.473Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.473Z", - "description": "Continuous Monitoring", - "id": "relationship--2535d843-55cd-4445-99fd-2440a227020e", - "modified": "2021-01-06T18:28:42.473Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.474Z", - "description": "Information Flow Enforcement", - "id": "relationship--28148035-4e92-41f8-8ee8-a0a231ed5820", - "modified": "2021-01-06T18:28:42.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.474Z", - "description": "Information Flow Enforcement", - "id": "relationship--75a893ff-7442-45a5-93c8-106c9a13e4c2", - "modified": "2021-01-06T18:28:42.474Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:42.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:42.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:42.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--db5103f0-aa5f-4912-b669-8aeca8eed5bc", - "modified": "2021-01-06T18:28:42.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:42.475Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.476Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:42.476Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.476Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:42.476Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:42.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:42.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:42.477Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.478Z", - "description": "Continuous Monitoring", - "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", - "modified": "2021-01-06T18:28:42.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.478Z", - "description": "Continuous Monitoring", - "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", - "modified": "2021-01-06T18:28:42.478Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.479Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", - "modified": "2021-01-06T18:28:42.479Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.479Z", - "description": "Information Flow Enforcement", - "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", - "modified": "2021-01-06T18:28:42.479Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", - "modified": "2021-01-06T18:28:42.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", - "modified": "2021-01-06T18:28:42.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", - "modified": "2021-01-06T18:28:42.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", - "modified": "2021-01-06T18:28:42.480Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:42.481Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:42.481Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--f5b85731-9e3d-4002-8d22-0dfcf49808b0", - "modified": "2021-01-06T18:28:42.481Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--f846069e-7435-4105-aa82-22d41302aaa5", - "modified": "2021-01-06T18:28:42.481Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--bac8b643-4386-4182-9e57-df0c4bb702c1", - "modified": "2021-01-06T18:28:42.481Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--028527a7-52b3-47d6-8095-1be0f05e2b10", - "modified": "2021-01-06T18:28:42.482Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--51a3464d-3795-426c-afbd-c0ca6fcbd1be", - "modified": "2021-01-06T18:28:42.482Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--84fa21b9-0f5b-4e7c-b050-566e503a31c1", - "modified": "2021-01-06T18:28:42.482Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.483Z", - "description": "Continuous Monitoring", - "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", - "modified": "2021-01-06T18:28:42.483Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.483Z", - "description": "Continuous Monitoring", - "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", - "modified": "2021-01-06T18:28:42.483Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.484Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", - "modified": "2021-01-06T18:28:42.484Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.484Z", - "description": "Information Flow Enforcement", - "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", - "modified": "2021-01-06T18:28:42.484Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", - "modified": "2021-01-06T18:28:42.485Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", - "modified": "2021-01-06T18:28:42.485Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", - "modified": "2021-01-06T18:28:42.485Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.486Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", - "modified": "2021-01-06T18:28:42.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.486Z", - "description": "Boundary Protection", - "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:42.486Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.487Z", - "description": "Boundary Protection", - "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:42.487Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.488Z", - "description": "Continuous Monitoring", - "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", - "modified": "2021-01-06T18:28:42.488Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.488Z", - "description": "Information Flow Enforcement", - "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", - "modified": "2021-01-06T18:28:42.488Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.489Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cd37cbfe-57f4-4c6e-a47b-3fab841d0fee", - "modified": "2021-01-06T18:28:42.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.489Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", - "modified": "2021-01-06T18:28:42.489Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.490Z", - "description": "Boundary Protection", - "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", - "modified": "2021-01-06T18:28:42.490Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14a2b13b-b34b-4857-9346-3ca95eaace59", - "modified": "2021-01-06T18:28:42.491Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", - "modified": "2021-01-06T18:28:42.491Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", - "modified": "2021-01-06T18:28:42.491Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.492Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2dc8f3ab-0a30-41e4-93bb-386c3f97b66e", - "modified": "2021-01-06T18:28:42.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.492Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", - "modified": "2021-01-06T18:28:42.492Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.493Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", - "modified": "2021-01-06T18:28:42.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.493Z", - "description": "Continuous Monitoring", - "id": "relationship--cbe17ed0-3f00-4d37-be83-2dd6ba0949e5", - "modified": "2021-01-06T18:28:42.493Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.494Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", - "modified": "2021-01-06T18:28:42.494Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--1be0095a-cfec-41e7-ab07-5d0175585db7", - "modified": "2021-01-06T18:28:42.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7ac507b6-d448-4a44-8b12-b1b120d09cd3", - "modified": "2021-01-06T18:28:42.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.496Z", - "description": "Boundary Protection", - "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", - "modified": "2021-01-06T18:28:42.496Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--33ca6bb1-cd42-4562-9ea6-199837a30a43", - "modified": "2021-01-06T18:28:42.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", - "modified": "2021-01-06T18:28:42.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", - "modified": "2021-01-06T18:28:42.498Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.499Z", - "description": "Continuous Monitoring", - "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", - "modified": "2021-01-06T18:28:42.499Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.500Z", - "description": "Information Flow Enforcement", - "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", - "modified": "2021-01-06T18:28:42.500Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.501Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7bc6729d-b031-47c2-8d6e-83a704090756", - "modified": "2021-01-06T18:28:42.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.501Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--00720d20-420f-4fe9-898b-55d8566fc104", - "modified": "2021-01-06T18:28:42.501Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.502Z", - "description": "Boundary Protection", - "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", - "modified": "2021-01-06T18:28:42.502Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", - "modified": "2021-01-06T18:28:42.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", - "modified": "2021-01-06T18:28:42.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", - "modified": "2021-01-06T18:28:42.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.504Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.504Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--dd1b81d5-b51e-4ab4-90d5-f01548b5c59a", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--54bbe46a-092f-4900-af93-f41a2a0fbfee", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--accaa4df-1a0f-4a32-ba2f-3be36ebd107b", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--a713ae45-84f5-4974-871f-335961e8721d", - "modified": "2021-01-06T18:28:42.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--cb408d28-8cab-42ea-a7f6-dc47c8353f73", - "modified": "2021-01-06T18:28:42.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--312ff30c-fbfb-4e55-8ce7-d9a3a3bd83ba", - "modified": "2021-01-06T18:28:42.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--f3ace1b8-5fd3-4e0b-840f-c7d07bee1289", - "modified": "2021-01-06T18:28:42.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--0f3c8987-8a42-4d0e-a389-65f055610296", - "modified": "2021-01-06T18:28:42.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--cd80f23f-edd6-4151-83ca-e9d9be6a469a", - "modified": "2021-01-06T18:28:42.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6900caa2-7b40-4c30-925d-28dd1ea9e7e8", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4d6b121e-348c-4b5b-8c66-a44258a67451", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a6ab8da3-1abc-4177-9589-9ff4e22808d0", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.507Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.508Z", - "description": "Information Flow Enforcement", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.508Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.508Z", - "description": "Information Flow Enforcement", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.508Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.509Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.509Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.509Z", - "description": "Continuous Monitoring", - "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", - "modified": "2021-01-06T18:28:42.509Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.510Z", - "description": "Continuous Monitoring", - "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", - "modified": "2021-01-06T18:28:42.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.510Z", - "description": "Continuous Monitoring", - "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", - "modified": "2021-01-06T18:28:42.510Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:42.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:42.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--86865f42-1fb8-43bf-a101-fe50d8c21636", - "modified": "2021-01-06T18:28:42.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:42.511Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:42.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--f78f256d-000f-4de7-bf95-b1d731d6982c", - "modified": "2021-01-06T18:28:42.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--21607e6d-5ceb-4d11-928a-362339a0cd06", - "modified": "2021-01-06T18:28:42.512Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0348bb1f-8f3e-4913-bbec-0197a7540135", - "modified": "2021-01-06T18:28:42.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--b8a1ec41-61a2-489a-ba59-c4fed8713776", - "modified": "2021-01-06T18:28:42.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d51297ef-eeae-4b82-abbe-585e284adc83", - "modified": "2021-01-06T18:28:42.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6102cdec-21a6-49a2-8566-94910bb97a1c", - "modified": "2021-01-06T18:28:42.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3c129315-d87f-411e-bf3a-4c9bd3be1394", - "modified": "2021-01-06T18:28:42.513Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:42.514Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:42.514Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0819e476-dfd4-47f9-853f-ec537614e53e", - "modified": "2021-01-06T18:28:42.514Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b8af9a0d-508c-4d55-8f6e-f68e68668ac7", - "modified": "2021-01-06T18:28:42.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e8fbdde1-a16d-4b4a-8187-64561fe872f9", - "modified": "2021-01-06T18:28:42.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--2440de4a-67f5-4cb8-85c5-b6d8e0c9c589", - "modified": "2021-01-06T18:28:42.515Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.517Z", - "description": "Information System Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.517Z", - "description": "Information System Monitoring", - "id": "relationship--51c088c6-64af-4982-8784-15bbd8a16489", - "modified": "2021-01-06T18:28:42.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.518Z", - "description": "Information System Monitoring", - "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", - "modified": "2021-01-06T18:28:42.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.519Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--cafc7f4a-40d4-4d1f-b20a-5298a61036d0", - "modified": "2021-01-06T18:28:42.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.519Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--794fec13-dcd0-4d44-a395-d39ed8a70fee", - "modified": "2021-01-06T18:28:42.519Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.521Z", - "description": "Information System Monitoring", - "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", - "modified": "2021-01-06T18:28:42.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.522Z", - "description": "Transmission Confidentiality and Integrity ", - "id": "relationship--833ccde2-70f7-4417-8f4f-1e17c850288b", - "modified": "2021-01-06T18:28:42.522Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.523Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:42.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.523Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:42.523Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.524Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4fde6f08-230c-42d6-a030-407232b58857", - "modified": "2021-01-06T18:28:42.524Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.524Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:42.524Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.524Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ba5146a7-d241-4d12-ae60-b3d3574fdf8d", - "modified": "2021-01-06T18:28:42.524Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.525Z", - "description": "Information System Monitoring", - "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", - "modified": "2021-01-06T18:28:42.525Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.526Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:42.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.526Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d4b4c8e6-3490-4f50-a8ea-f73de6a79ba6", - "modified": "2021-01-06T18:28:42.526Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--9b97fa56-6b81-4286-aba5-ef3d2d78c3d2", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a61c7afd-64dd-4605-8e46-9ede1328582c", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6bcf7578-9616-48c3-bc81-c7b5d27ef8c1", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6db9149c-7045-40ad-a4f0-01a0e5f36376", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--fe26b191-58fd-47a7-bf45-2d636bf7fa17", - "modified": "2021-01-06T18:28:42.527Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:42.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3c3564b6-eb14-4260-9e4d-a539e44be413", - "modified": "2021-01-06T18:28:42.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--79877ed4-3899-4be9-a864-18467ce91600", - "modified": "2021-01-06T18:28:42.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c4d6b208-1074-40b0-ba59-a820f5fc1e1a", - "modified": "2021-01-06T18:28:42.528Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.529Z", - "description": "Information System Monitoring", - "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", - "modified": "2021-01-06T18:28:42.529Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.530Z", - "description": "Information System Monitoring", - "id": "relationship--6114db17-1f90-46a3-a6c0-fccfe7e20639", - "modified": "2021-01-06T18:28:42.530Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.530Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a215d86e-c648-42c0-9f56-5a3c4ca2fabe", - "modified": "2021-01-06T18:28:42.530Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--6e4901ae-8568-46c0-9b1c-9b59f14b92f7", - "modified": "2021-01-06T18:28:42.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ab457d2c-f3ea-4612-ad95-161e294a48a1", - "modified": "2021-01-06T18:28:42.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--51b5b06f-b099-4017-b87a-a89853300f04", - "modified": "2021-01-06T18:28:42.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--b32f6a35-c342-482b-a1f5-9c07adbe5e8e", - "modified": "2021-01-06T18:28:42.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ae710a30-37dd-4c91-9969-d87c0c0d6b25", - "modified": "2021-01-06T18:28:42.531Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--bac1483d-e5bc-4275-b10c-055b9745c46d", - "modified": "2021-01-06T18:28:42.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--22d53496-dc2f-48a7-93b1-65df25e60f6c", - "modified": "2021-01-06T18:28:42.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--87691e45-48e6-4e16-b3ed-e45d0c98de3d", - "modified": "2021-01-06T18:28:42.532Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--076e4ef0-e471-4e25-acb8-233aa9ed9962", - "modified": "2021-01-06T18:28:42.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--a290264e-1f46-45c4-a46f-cb40a953a488", - "modified": "2021-01-06T18:28:42.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--94d85c25-04ff-4b13-8159-1a7103686d8f", - "modified": "2021-01-06T18:28:42.533Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--633f81f0-46ee-4230-8df4-36fe233c7173", - "modified": "2021-01-06T18:28:42.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--17807861-cfd4-4395-909f-18e0eaf0cd1f", - "modified": "2021-01-06T18:28:42.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f90585fb-3bde-4e7d-b007-795f9b2aec26", - "modified": "2021-01-06T18:28:42.534Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.535Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a2ae97e6-9e23-44e7-bb1e-2d6d977f9ab6", - "modified": "2021-01-06T18:28:42.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.535Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d7fdbcde-a6e6-42fb-81da-65de60b2560c", - "modified": "2021-01-06T18:28:42.535Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d842c277-ea54-4d2f-b519-626eb2de348d", - "modified": "2021-01-06T18:28:42.536Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a91bedca-8549-4a4d-bd8e-c24a09540551", - "modified": "2021-01-06T18:28:42.536Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1f842b56-a5eb-46e3-a361-455886b7acf0", - "modified": "2021-01-06T18:28:42.536Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d1781e9c-7f72-4f03-a8da-6e7fb8e25a9b", - "modified": "2021-01-06T18:28:42.536Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:42.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:42.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", - "modified": "2021-01-06T18:28:42.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", - "modified": "2021-01-06T18:28:42.537Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", - "modified": "2021-01-06T18:28:42.538Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--03895cdb-773f-454a-b1e0-023fb66b2817", - "modified": "2021-01-06T18:28:42.538Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--f77f477d-534a-4d66-a8bb-b0f92b25ec21", - "modified": "2021-01-06T18:28:42.538Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--575306b2-faa9-4406-8a93-13ab011df530", - "modified": "2021-01-06T18:28:42.538Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--91e2f0b8-bc77-4f5a-b3cb-d84086258deb", - "modified": "2021-01-06T18:28:42.538Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8f1c8fa3-5482-4e4b-9669-cc9809b256a0", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.539Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--03991f55-e503-4f4f-84c1-c2ba3b53d046", - "modified": "2021-01-06T18:28:42.540Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1786903a-a252-4763-9c05-05ffb12d4e6f", - "modified": "2021-01-06T18:28:42.540Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6317eee1-9d8a-4592-a7a0-de1854210e1a", - "modified": "2021-01-06T18:28:42.540Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9225ae0-a142-4a02-93d3-4305f1925130", - "modified": "2021-01-06T18:28:42.540Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9588a87-23ff-4067-93b8-4751f5560507", - "modified": "2021-01-06T18:28:42.540Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", - "modified": "2021-01-06T18:28:42.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", - "modified": "2021-01-06T18:28:42.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", - "modified": "2021-01-06T18:28:42.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", - "modified": "2021-01-06T18:28:42.542Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--4f329168-a962-4c2b-affc-7809ed5b475a", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--e2f58512-0bdc-472f-9720-b6226130335e", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.548Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", - "modified": "2021-01-06T18:28:42.548Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.549Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--6d3953ef-8182-40ff-9423-e3b543aba6d5", - "modified": "2021-01-06T18:28:42.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--f9e19eff-bc17-4490-ad6e-c2d676aa207a", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--00ea57e7-d5cd-465d-8820-a1ef7f1b231c", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--c6a68f2b-a9c5-4b9e-b5e0-e3af7b0723a9", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.551Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5bff91b0-3db9-48c7-a8b8-beee627ef71e", - "modified": "2021-01-06T18:28:42.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.551Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--65338008-33c6-4601-b89f-bcd848c3242f", - "modified": "2021-01-06T18:28:42.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.552Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c1503d57-2c70-429b-ad4f-230d17628d27", - "modified": "2021-01-06T18:28:42.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.552Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e177249e-bcbd-45f4-80a6-afe98af6229f", - "modified": "2021-01-06T18:28:42.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.553Z", - "description": "Information System Monitoring", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:42.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.553Z", - "description": "Information System Monitoring", - "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", - "modified": "2021-01-06T18:28:42.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.554Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", - "modified": "2021-01-06T18:28:42.554Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--68687bd4-eb5e-4f24-9e1d-982235e104d7", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6296e01f-8b70-4db3-8c92-3aa81ea815e3", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--dc5e0380-cace-4b5b-b5e7-1435aad8a591", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.556Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6cf0e025-aa5b-43cb-a3e1-3a9647428166", - "modified": "2021-01-06T18:28:42.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.556Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3f94e128-dda4-4d2b-8974-5c3cdd163bb7", - "modified": "2021-01-06T18:28:42.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.557Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", - "modified": "2021-01-06T18:28:42.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.557Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ce13b6b1-8ff8-4313-a17b-44d905ab2fda", - "modified": "2021-01-06T18:28:42.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.558Z", - "description": "Least Functionality", - "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", - "modified": "2021-01-06T18:28:42.558Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--7f95b061-d1e4-40a1-a1e7-0ae79696145d", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--b5a6cc39-4c8d-402a-ad0b-986d96b45416", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--8f73ba57-627f-4648-9d3c-0253f5bdaef8", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4fef6667-c7f2-41d2-bde2-c7ec478b3a76", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--6a1e9f51-4495-4908-bab9-8b91915e456c", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--74e94d04-f70b-4cc0-bbc8-297519c8125c", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d7da449b-edd3-4a28-8d7c-3ee57f6106ae", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--045d4fc7-fcbc-4704-b089-02860795f763", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a7ebf3f4-47c4-49e0-8f4e-359968d18edf", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d886cabc-6838-40cc-8077-9efd6413533f", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4191349e-de17-4f10-8498-d86f79e99374", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--11236c11-07f8-4fa9-ad49-929e29a04a5e", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.561Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ca8f1552-b89d-4e67-a53d-4eda1d95c45b", - "modified": "2021-01-06T18:28:42.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.561Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6dc11329-1a1b-43a7-b74b-392d9dde9dba", - "modified": "2021-01-06T18:28:42.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5b74652d-8dfb-4b23-9430-1d48653697b0", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c7f9015d-2898-46e6-8380-c6c4fe69a747", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8720138e-4483-46ab-bd76-b580c2f6c79d", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4558adbd-6e13-4802-b630-db2fad25e01f", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e692440e-07fa-403b-9dbb-6283301afa8e", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4d5a770c-3d2d-466c-a3d2-c05764f76139", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0581a3c6-e36e-46c7-85d6-68b312bf7157", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8d61b3e-a3d7-4154-9e1e-7718512a9ed0", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf492346-58d3-45e5-b8e9-c29860903b26", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--2761e24a-d435-4a7c-b232-46dbc7f8c1a4", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6b95f8af-5e4e-4b16-bdcc-f732a1d2a4a6", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6b3540b8-ea86-4f5a-98c7-68d2a46fa430", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--92ad3efd-0a0c-40e3-aa0f-80168c35351b", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.567Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:42.567Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.567Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.567Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.568Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:42.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.568Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--215eab32-611e-4c8f-8293-a81a801dd350", - "modified": "2021-01-06T18:28:42.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.570Z", - "description": "Information System Monitoring", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c86d42d9-29ba-4b5c-8968-90bc26d8af37", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--f2c3f042-b274-4346-ae3e-352d26ace5e6", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c4c685e9-7d97-4a57-97a5-2e187a64e7e0", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.572Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f3e65e78-3c67-4c2e-a478-c5a3941aa213", - "modified": "2021-01-06T18:28:42.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.572Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d8ef6cc3-0ad7-4d96-b6a2-b9b899153c6e", - "modified": "2021-01-06T18:28:42.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.574Z", - "description": "Information System Monitoring", - "id": "relationship--b30db6f4-14a2-49f7-9333-a0222644dc28", - "modified": "2021-01-06T18:28:42.574Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.575Z", - "description": "Configuration Settings", - "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:42.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--9862d596-a093-4f7e-9bef-425971eff646", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0ae28d1f-bb99-4913-b4ca-48de4fe5d2de", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--110be9f0-b3f8-463e-9bf2-3b379e8dba5d", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--c44373be-ff9d-469d-a544-15b5bf6f7d52", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--35646cdd-bbd8-459e-bdca-5365fe9745ce", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2dd44965-2d49-4301-9b96-1012dcab25d2", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--ee5b5889-b514-40f8-9b6a-321be10d8530", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--db1e6bdf-38fa-4d45-8935-a3f75f40df51", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--04378d95-acc9-4608-924d-57b85abb8873", - "modified": "2021-01-06T18:28:42.577Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--0348bb1f-8f3e-4913-bbec-0197a7540135", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--775971d0-6985-4f71-a08b-c9ddba29fe2a", - "modified": "2021-01-06T18:28:42.578Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--b8a1ec41-61a2-489a-ba59-c4fed8713776", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2b388e1f-a975-4bc0-b719-5311fe8e4a29", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--865189bb-a679-45f1-8c9f-0ac531ff8316", - "modified": "2021-01-06T18:28:42.578Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--d51297ef-eeae-4b82-abbe-585e284adc83", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6ed5f79d-db8a-4002-ab96-1cec4173bda8", - "modified": "2021-01-06T18:28:42.578Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--6102cdec-21a6-49a2-8566-94910bb97a1c", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--678cecd7-6f89-4729-87cf-1d8487ecc0a6", - "modified": "2021-01-06T18:28:42.578Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--3c129315-d87f-411e-bf3a-4c9bd3be1394", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8ef837fa-82fd-4a09-b9c5-cf4587fc751a", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--48b72092-2c87-4975-a1ed-00a9570a9e4b", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--7a5a2afe-ab11-4026-8c8c-7ff4d51f19b5", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--fae97f86-b3c6-4212-b0ba-9c4077b1729b", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--cc339e5e-9e20-45fd-9053-eee91ff1256c", - "modified": "2021-01-06T18:28:42.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", - "modified": "2021-01-06T18:28:42.580Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--b8af9a0d-508c-4d55-8f6e-f68e68668ac7", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--66e229cd-2d90-4718-a442-25bd20408b48", - "modified": "2021-01-06T18:28:42.580Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--e8fbdde1-a16d-4b4a-8187-64561fe872f9", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--422f00bc-a510-4819-a6d9-e2394f89e6b2", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--c6df6c24-706b-4e86-9a65-0bf43dfcdec0", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--99c907b4-6eed-445f-b02d-5058fd396903", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4c9bfeae-f59c-46ca-bf3c-bf0634d75ba7", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ff2589e9-64ef-4cdb-844b-0048e1d0467c", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--65a63782-b061-42dc-a794-a005a3c81e35", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.584Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.584Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.586Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--427d39c1-8caa-472f-8d87-56128d743226", - "modified": "2021-01-06T18:28:42.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.586Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--104ad1f3-b9d1-471a-be97-2c91782b2c8a", - "modified": "2021-01-06T18:28:42.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.587Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.587Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--2440de4a-67f5-4cb8-85c5-b6d8e0c9c589", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.587Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", - "modified": "2021-01-06T18:28:42.587Z", + "created": "2021-01-13T01:50:52.357Z", + "id": "relationship--51c088c6-64af-4982-8784-15bbd8a16489", + "modified": "2021-01-13T01:50:52.357Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.589Z", - "description": "Information System Monitoring", - "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", - "modified": "2021-01-06T18:28:42.589Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--46f762f9-17b6-4743-aba6-b47e8eaf1979", - "modified": "2021-01-06T18:28:42.590Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--cafc7f4a-40d4-4d1f-b20a-5298a61036d0", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--dd16f387-14f3-4a36-b574-37176164490f", - "modified": "2021-01-06T18:28:42.590Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--794fec13-dcd0-4d44-a395-d39ed8a70fee", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:42.590Z", + "created": "2021-01-13T01:50:52.359Z", + "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", + "modified": "2021-01-13T01:50:52.359Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.590Z", + "created": "2021-01-13T01:50:52.360Z", + "id": "relationship--833ccde2-70f7-4417-8f4f-1e17c850288b", + "modified": "2021-01-13T01:50:52.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", - "modified": "2021-01-06T18:28:42.591Z", + "created": "2021-01-13T01:50:52.361Z", + "id": "relationship--4fde6f08-230c-42d6-a030-407232b58857", + "modified": "2021-01-13T01:50:52.361Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:42.591Z", + "created": "2021-01-13T01:50:52.362Z", + "id": "relationship--ba5146a7-d241-4d12-ae60-b3d3574fdf8d", + "modified": "2021-01-13T01:50:52.362Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:42.591Z", + "created": "2021-01-13T01:50:52.364Z", + "id": "relationship--a61c7afd-64dd-4605-8e46-9ede1328582c", + "modified": "2021-01-13T01:50:52.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.592Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.592Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--6bcf7578-9616-48c3-bc81-c7b5d27ef8c1", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.592Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b5c9b3ce-e4e5-4f21-98c6-20cce56098dc", - "modified": "2021-01-06T18:28:42.592Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--6db9149c-7045-40ad-a4f0-01a0e5f36376", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d4f0f4e4-169d-415a-b93d-858c6f4f8774", - "modified": "2021-01-06T18:28:42.593Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--fe26b191-58fd-47a7-bf45-2d636bf7fa17", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--2edbaf79-316d-4d8b-9a80-3af3f29df1fe", - "modified": "2021-01-06T18:28:42.593Z", + "created": "2021-01-13T01:50:52.366Z", + "id": "relationship--79877ed4-3899-4be9-a864-18467ce91600", + "modified": "2021-01-13T01:50:52.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d32fa784-a03e-4c8d-83b9-b2a21793399f", - "modified": "2021-01-06T18:28:42.593Z", + "created": "2021-01-13T01:50:52.366Z", + "id": "relationship--c4d6b208-1074-40b0-ba59-a820f5fc1e1a", + "modified": "2021-01-13T01:50:52.366Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--7f4546d2-2be3-4774-af4f-d469abc7a834", - "modified": "2021-01-06T18:28:42.594Z", + "created": "2021-01-13T01:50:52.367Z", + "id": "relationship--6114db17-1f90-46a3-a6c0-fccfe7e20639", + "modified": "2021-01-13T01:50:52.367Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:42.594Z", + "created": "2021-01-13T01:50:52.368Z", + "id": "relationship--bac1483d-e5bc-4275-b10c-055b9745c46d", + "modified": "2021-01-13T01:50:52.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1f427dca-2d62-48e3-801c-71f4b5ed8879", - "modified": "2021-01-06T18:28:42.594Z", + "created": "2021-01-13T01:50:52.369Z", + "id": "relationship--22d53496-dc2f-48a7-93b1-65df25e60f6c", + "modified": "2021-01-13T01:50:52.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--45c3739b-86da-485d-a3df-abadf210402b", - "modified": "2021-01-06T18:28:42.594Z", + "created": "2021-01-13T01:50:52.369Z", + "id": "relationship--87691e45-48e6-4e16-b3ed-e45d0c98de3d", + "modified": "2021-01-13T01:50:52.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.595Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.595Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--633f81f0-46ee-4230-8df4-36fe233c7173", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.595Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.595Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--17807861-cfd4-4395-909f-18e0eaf0cd1f", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.596Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.596Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--f90585fb-3bde-4e7d-b007-795f9b2aec26", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.596Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.596Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--a2ae97e6-9e23-44e7-bb1e-2d6d977f9ab6", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.596Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:42.596Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d7fdbcde-a6e6-42fb-81da-65de60b2560c", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:42.597Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d842c277-ea54-4d2f-b519-626eb2de348d", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.597Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--a91bedca-8549-4a4d-bd8e-c24a09540551", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.597Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--1f842b56-a5eb-46e3-a361-455886b7acf0", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.598Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d1781e9c-7f72-4f03-a8da-6e7fb8e25a9b", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.598Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--575306b2-faa9-4406-8a93-13ab011df530", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--836c519e-e74c-4aea-918b-a91a222893c1", - "modified": "2021-01-06T18:28:42.598Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--91e2f0b8-bc77-4f5a-b3cb-d84086258deb", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--202c64fa-7c21-4cc8-a7fb-7406aff4c0e2", - "modified": "2021-01-06T18:28:42.598Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--8f1c8fa3-5482-4e4b-9669-cc9809b256a0", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.600Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--03991f55-e503-4f4f-84c1-c2ba3b53d046", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.600Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--1786903a-a252-4763-9c05-05ffb12d4e6f", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", - "modified": "2021-01-06T18:28:42.600Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--6317eee1-9d8a-4592-a7a0-de1854210e1a", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", - "modified": "2021-01-06T18:28:42.600Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--e9225ae0-a142-4a02-93d3-4305f1925130", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--e9588a87-23ff-4067-93b8-4751f5560507", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--4f329168-a962-4c2b-affc-7809ed5b475a", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--e2f58512-0bdc-472f-9720-b6226130335e", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.602Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--6d3953ef-8182-40ff-9423-e3b543aba6d5", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.603Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:42.603Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--f9e19eff-bc17-4490-ad6e-c2d676aa207a", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:42.604Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--00ea57e7-d5cd-465d-8820-a1ef7f1b231c", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:42.604Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--c6a68f2b-a9c5-4b9e-b5e0-e3af7b0723a9", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.604Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--5bff91b0-3db9-48c7-a8b8-beee627ef71e", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.604Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--65338008-33c6-4601-b89f-bcd848c3242f", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.604Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--c1503d57-2c70-429b-ad4f-230d17628d27", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.605Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.605Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--e177249e-bcbd-45f4-80a6-afe98af6229f", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.605Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.605Z", + "created": "2021-01-13T01:50:52.383Z", + "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", + "modified": "2021-01-13T01:50:52.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.606Z", + "created": "2021-01-13T01:50:52.383Z", + "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", + "modified": "2021-01-13T01:50:52.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--78dfefcf-7b1b-421c-b034-fa4e73446806", - "modified": "2021-01-06T18:28:42.606Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e52e36a7-786c-4859-b997-e7958c7f2e41", - "modified": "2021-01-06T18:28:42.606Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--68687bd4-eb5e-4f24-9e1d-982235e104d7", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8c38d169-38ea-45e9-b7eb-805b1ee8287e", - "modified": "2021-01-06T18:28:42.606Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--6296e01f-8b70-4db3-8c92-3aa81ea815e3", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:42.607Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--dc5e0380-cace-4b5b-b5e7-1435aad8a591", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:42.607Z", + "created": "2021-01-13T01:50:52.385Z", + "id": "relationship--6cf0e025-aa5b-43cb-a3e1-3a9647428166", + "modified": "2021-01-13T01:50:52.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:42.607Z", + "created": "2021-01-13T01:50:52.385Z", + "id": "relationship--3f94e128-dda4-4d2b-8974-5c3cdd163bb7", + "modified": "2021-01-13T01:50:52.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:42.607Z", + "created": "2021-01-13T01:50:52.386Z", + "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", + "modified": "2021-01-13T01:50:52.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:42.607Z", + "created": "2021-01-13T01:50:52.386Z", + "id": "relationship--ce13b6b1-8ff8-4313-a17b-44d905ab2fda", + "modified": "2021-01-13T01:50:52.386Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.608Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:42.608Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--a7ebf3f4-47c4-49e0-8f4e-359968d18edf", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--360cc556-5972-40b3-ae8c-cefab0110047", - "modified": "2021-01-06T18:28:42.609Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--d886cabc-6838-40cc-8077-9efd6413533f", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--2d4a2a98-e9c5-4b2d-8c11-8e806bd230b9", - "modified": "2021-01-06T18:28:42.609Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--4191349e-de17-4f10-8498-d86f79e99374", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--96e40920-5744-4091-8472-23b2a57ecfc9", - "modified": "2021-01-06T18:28:42.609Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--11236c11-07f8-4fa9-ad49-929e29a04a5e", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4b5c7843-1dd8-48fc-b72d-6a75dbfcdc25", - "modified": "2021-01-06T18:28:42.610Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--8720138e-4483-46ab-bd76-b580c2f6c79d", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4c18c893-2afc-4dd7-8228-63cb790dfc33", - "modified": "2021-01-06T18:28:42.610Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--4558adbd-6e13-4802-b630-db2fad25e01f", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--27ec176a-d26e-4ad5-bf39-9970d12cc89e", - "modified": "2021-01-06T18:28:42.610Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--e692440e-07fa-403b-9dbb-6283301afa8e", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.611Z", - "description": "Limit Software Installation", - "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", - "modified": "2021-01-06T18:28:42.611Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--4d5a770c-3d2d-466c-a3d2-c05764f76139", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.612Z", - "description": "Least Privilege", - "id": "relationship--57d172ec-c578-4441-967d-3d50196a0559", - "modified": "2021-01-06T18:28:42.612Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--0581a3c6-e36e-46c7-85d6-68b312bf7157", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--b98e1f8e-821a-4384-bd75-37bde2d23e0c", - "modified": "2021-01-06T18:28:42.613Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--b8d61b3e-a3d7-4154-9e1e-7718512a9ed0", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--3f72ff48-6909-4b8b-a8f8-f59c5ac9dc3f", - "modified": "2021-01-06T18:28:42.613Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--cf492346-58d3-45e5-b8e9-c29860903b26", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--9e2758bc-9ffb-4f84-b240-611e32c98413", - "modified": "2021-01-06T18:28:42.613Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--2761e24a-d435-4a7c-b232-46dbc7f8c1a4", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.614Z", - "description": "Least Privilege", - "id": "relationship--a2c76cb2-2c12-46b5-a3f6-44159f6d5a8d", - "modified": "2021-01-06T18:28:42.614Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--6b95f8af-5e4e-4b16-bdcc-f732a1d2a4a6", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.616Z", - "description": "Limit Software Installation", - "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:42.616Z", + "created": "2021-01-13T01:50:52.393Z", + "id": "relationship--6b3540b8-ea86-4f5a-98c7-68d2a46fa430", + "modified": "2021-01-13T01:50:52.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.617Z", - "description": "Least Privilege", - "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", - "modified": "2021-01-06T18:28:42.617Z", + "created": "2021-01-13T01:50:52.394Z", + "id": "relationship--92ad3efd-0a0c-40e3-aa0f-80168c35351b", + "modified": "2021-01-13T01:50:52.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.618Z", - "description": "Limit Software Installation", - "id": "relationship--58c1f42b-0aa4-4ce5-b857-978e9a1f828f", - "modified": "2021-01-06T18:28:42.618Z", + "created": "2021-01-13T01:50:52.396Z", + "id": "relationship--215eab32-611e-4c8f-8293-a81a801dd350", + "modified": "2021-01-13T01:50:52.396Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4f9af1cf-0858-4e49-8df6-12040d84c974", - "modified": "2021-01-06T18:28:42.619Z", + "created": "2021-01-13T01:50:52.397Z", + "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", + "modified": "2021-01-13T01:50:52.397Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4d657527-fd02-4b45-981a-e2ce49e9c93f", - "modified": "2021-01-06T18:28:42.619Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--c86d42d9-29ba-4b5c-8968-90bc26d8af37", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--cb67ebbe-f2f5-4b2a-af77-2662c1334366", - "modified": "2021-01-06T18:28:42.619Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--f2c3f042-b274-4346-ae3e-352d26ace5e6", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:42.620Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--c4c685e9-7d97-4a57-97a5-2e187a64e7e0", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:42.620Z", + "created": "2021-01-13T01:50:52.399Z", + "id": "relationship--f3e65e78-3c67-4c2e-a478-c5a3941aa213", + "modified": "2021-01-13T01:50:52.399Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:42.620Z", + "created": "2021-01-13T01:50:52.399Z", + "id": "relationship--d8ef6cc3-0ad7-4d96-b6a2-b9b899153c6e", + "modified": "2021-01-13T01:50:52.399Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.621Z", - "description": "Least Privilege", - "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:42.621Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--ee5b5889-b514-40f8-9b6a-321be10d8530", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.621Z", - "description": "Least Privilege", - "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:42.621Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--db1e6bdf-38fa-4d45-8935-a3f75f40df51", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.622Z", - "description": "Limit Software Installation", - "id": "relationship--4c575d63-1270-48a5-8987-8c820ff45a86", - "modified": "2021-01-06T18:28:42.622Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--04378d95-acc9-4608-924d-57b85abb8873", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.622Z", - "description": "Limit Software Installation", - "id": "relationship--c26b4140-c382-4409-9800-0452a221f7e2", - "modified": "2021-01-06T18:28:42.622Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--775971d0-6985-4f71-a08b-c9ddba29fe2a", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.623Z", - "description": "Unsupported System Components", - "id": "relationship--06f29914-035c-4121-b383-3e56f7ce856e", - "modified": "2021-01-06T18:28:42.623Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--2b388e1f-a975-4bc0-b719-5311fe8e4a29", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.623Z", - "description": "Unsupported System Components", - "id": "relationship--34267ffa-1f84-482f-bf2a-a2fd80eabec5", - "modified": "2021-01-06T18:28:42.623Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--865189bb-a679-45f1-8c9f-0ac531ff8316", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:42.624Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--6ed5f79d-db8a-4002-ab96-1cec4173bda8", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:42.624Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--678cecd7-6f89-4729-87cf-1d8487ecc0a6", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", - "modified": "2021-01-06T18:28:42.624Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--fae97f86-b3c6-4212-b0ba-9c4077b1729b", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", - "modified": "2021-01-06T18:28:42.624Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--cc339e5e-9e20-45fd-9053-eee91ff1256c", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--66e229cd-2d90-4718-a442-25bd20408b48", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--c6df6c24-706b-4e86-9a65-0bf43dfcdec0", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--99c907b4-6eed-445f-b02d-5058fd396903", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--4c9bfeae-f59c-46ca-bf3c-bf0634d75ba7", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.407Z", + "id": "relationship--ff2589e9-64ef-4cdb-844b-0048e1d0467c", + "modified": "2021-01-13T01:50:52.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", - "modified": "2021-01-06T18:28:42.625Z", + "created": "2021-01-13T01:50:52.407Z", + "id": "relationship--65a63782-b061-42dc-a794-a005a3c81e35", + "modified": "2021-01-13T01:50:52.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.626Z", + "created": "2021-01-13T01:50:52.409Z", + "id": "relationship--427d39c1-8caa-472f-8d87-56128d743226", + "modified": "2021-01-13T01:50:52.409Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.626Z", + "created": "2021-01-13T01:50:52.412Z", + "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", + "modified": "2021-01-13T01:50:52.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.626Z", + "created": "2021-01-13T01:50:52.413Z", + "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", + "modified": "2021-01-13T01:50:52.413Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.626Z", + "created": "2021-01-13T01:50:52.414Z", + "id": "relationship--2edbaf79-316d-4d8b-9a80-3af3f29df1fe", + "modified": "2021-01-13T01:50:52.414Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:42.627Z", + "created": "2021-01-13T01:50:52.414Z", + "id": "relationship--d32fa784-a03e-4c8d-83b9-b2a21793399f", + "modified": "2021-01-13T01:50:52.414Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--7759313d-dd9c-4400-8399-6715aa58c47d", - "modified": "2021-01-06T18:28:42.627Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--7f4546d2-2be3-4774-af4f-d469abc7a834", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", - "modified": "2021-01-06T18:28:42.627Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--a957669b-b046-48b2-957a-eb5fa08ca5f3", - "modified": "2021-01-06T18:28:42.627Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--1f427dca-2d62-48e3-801c-71f4b5ed8879", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.628Z", - "description": "Continuous Monitoring", - "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", - "modified": "2021-01-06T18:28:42.628Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--45c3739b-86da-485d-a3df-abadf210402b", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.628Z", - "description": "Continuous Monitoring", - "id": "relationship--9dd148be-c7ad-489c-8c15-d9e2e39c896b", - "modified": "2021-01-06T18:28:42.628Z", + "created": "2021-01-13T01:50:52.418Z", + "id": "relationship--836c519e-e74c-4aea-918b-a91a222893c1", + "modified": "2021-01-13T01:50:52.418Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:42.629Z", + "created": "2021-01-13T01:50:52.418Z", + "id": "relationship--202c64fa-7c21-4cc8-a7fb-7406aff4c0e2", + "modified": "2021-01-13T01:50:52.418Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", - "modified": "2021-01-06T18:28:42.629Z", + "created": "2021-01-13T01:50:52.419Z", + "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", + "modified": "2021-01-13T01:50:52.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--aa9d8703-e5ac-401a-b645-b2e87ca8d873", - "modified": "2021-01-06T18:28:42.629Z", + "created": "2021-01-13T01:50:52.419Z", + "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", + "modified": "2021-01-13T01:50:52.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.630Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--450fa2a2-59e2-4307-a248-584f84a8fd47", - "modified": "2021-01-06T18:28:42.630Z", + "created": "2021-01-13T01:50:52.423Z", + "id": "relationship--78dfefcf-7b1b-421c-b034-fa4e73446806", + "modified": "2021-01-13T01:50:52.423Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.630Z", - "description": "Boundary Protection", - "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", - "modified": "2021-01-06T18:28:42.630Z", + "created": "2021-01-13T01:50:52.424Z", + "id": "relationship--e52e36a7-786c-4859-b997-e7958c7f2e41", + "modified": "2021-01-13T01:50:52.424Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.630Z", - "description": "Boundary Protection", - "id": "relationship--abc219c7-1a72-48c0-b31a-f7a12bf08a54", - "modified": "2021-01-06T18:28:42.630Z", + "created": "2021-01-13T01:50:52.424Z", + "id": "relationship--8c38d169-38ea-45e9-b7eb-805b1ee8287e", + "modified": "2021-01-13T01:50:52.424Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.631Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", - "modified": "2021-01-06T18:28:42.631Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:42.632Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3e99336b-90a3-4615-a8b4-57bec60447a6", - "modified": "2021-01-06T18:28:42.632Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8521a0be-e8a3-48fd-a76f-e8407ceeb1ee", - "modified": "2021-01-06T18:28:42.632Z", + "created": "2021-01-13T01:50:52.426Z", + "id": "relationship--360cc556-5972-40b3-ae8c-cefab0110047", + "modified": "2021-01-13T01:50:52.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0b7db8ec-a900-44ad-b4cf-d0113258fcca", - "modified": "2021-01-06T18:28:42.632Z", + "created": "2021-01-13T01:50:52.426Z", + "id": "relationship--2d4a2a98-e9c5-4b2d-8c11-8e806bd230b9", + "modified": "2021-01-13T01:50:52.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--02566fc8-d990-4b2f-bb58-5776c42509cd", - "modified": "2021-01-06T18:28:42.632Z", + "created": "2021-01-13T01:50:52.427Z", + "id": "relationship--96e40920-5744-4091-8472-23b2a57ecfc9", + "modified": "2021-01-13T01:50:52.427Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.633Z", - "description": "Protect and prevent credential access", - "id": "relationship--2dfedb16-567e-4809-9812-538a46a604e9", - "modified": "2021-01-06T18:28:42.633Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--4b5c7843-1dd8-48fc-b72d-6a75dbfcdc25", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.633Z", - "description": "Protect and prevent credential access", - "id": "relationship--cf810d63-3051-4884-bead-899dbb924796", - "modified": "2021-01-06T18:28:42.633Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--4c18c893-2afc-4dd7-8228-63cb790dfc33", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--a32de5fb-4352-4f2c-9a0d-674d92be76f6", - "modified": "2021-01-06T18:28:42.634Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--27ec176a-d26e-4ad5-bf39-9970d12cc89e", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--703c2a66-1c58-4205-bf19-cdbc39254fdb", - "modified": "2021-01-06T18:28:42.634Z", + "created": "2021-01-13T01:50:52.429Z", + "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", + "modified": "2021-01-13T01:50:52.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.634Z", + "created": "2021-01-13T01:50:52.429Z", + "id": "relationship--57d172ec-c578-4441-967d-3d50196a0559", + "modified": "2021-01-13T01:50:52.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.634Z", + "created": "2021-01-13T01:50:52.432Z", + "id": "relationship--a2c76cb2-2c12-46b5-a3f6-44159f6d5a8d", + "modified": "2021-01-13T01:50:52.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.634Z", + "created": "2021-01-13T01:50:52.434Z", + "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", + "modified": "2021-01-13T01:50:52.434Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.635Z", - "description": "Protect and prevent credential access", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.635Z", + "created": "2021-01-13T01:50:52.434Z", + "id": "relationship--58c1f42b-0aa4-4ce5-b857-978e9a1f828f", + "modified": "2021-01-13T01:50:52.434Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", - "modified": "2021-01-06T18:28:42.636Z", + "created": "2021-01-13T01:50:52.435Z", + "id": "relationship--4f9af1cf-0858-4e49-8df6-12040d84c974", + "modified": "2021-01-13T01:50:52.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", - "modified": "2021-01-06T18:28:42.636Z", + "created": "2021-01-13T01:50:52.435Z", + "id": "relationship--4d657527-fd02-4b45-981a-e2ce49e9c93f", + "modified": "2021-01-13T01:50:52.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", - "modified": "2021-01-06T18:28:42.636Z", + "created": "2021-01-13T01:50:52.439Z", + "id": "relationship--06f29914-035c-4121-b383-3e56f7ce856e", + "modified": "2021-01-13T01:50:52.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", - "modified": "2021-01-06T18:28:42.636Z", + "created": "2021-01-13T01:50:52.439Z", + "id": "relationship--34267ffa-1f84-482f-bf2a-a2fd80eabec5", + "modified": "2021-01-13T01:50:52.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.637Z", + "created": "2021-01-13T01:50:52.443Z", + "id": "relationship--7759313d-dd9c-4400-8399-6715aa58c47d", + "modified": "2021-01-13T01:50:52.443Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.637Z", + "created": "2021-01-13T01:50:52.444Z", + "id": "relationship--a957669b-b046-48b2-957a-eb5fa08ca5f3", + "modified": "2021-01-13T01:50:52.444Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.637Z", + "created": "2021-01-13T01:50:52.444Z", + "id": "relationship--9dd148be-c7ad-489c-8c15-d9e2e39c896b", + "modified": "2021-01-13T01:50:52.444Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.637Z", + "created": "2021-01-13T01:50:52.445Z", + "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", + "modified": "2021-01-13T01:50:52.445Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.638Z", + "created": "2021-01-13T01:50:52.446Z", + "id": "relationship--aa9d8703-e5ac-401a-b645-b2e87ca8d873", + "modified": "2021-01-13T01:50:52.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.638Z", + "created": "2021-01-13T01:50:52.446Z", + "id": "relationship--450fa2a2-59e2-4307-a248-584f84a8fd47", + "modified": "2021-01-13T01:50:52.446Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.638Z", + "created": "2021-01-13T01:50:52.447Z", + "id": "relationship--abc219c7-1a72-48c0-b31a-f7a12bf08a54", + "modified": "2021-01-13T01:50:52.447Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.638Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.639Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--3e99336b-90a3-4615-a8b4-57bec60447a6", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.639Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--8521a0be-e8a3-48fd-a76f-e8407ceeb1ee", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.639Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--0b7db8ec-a900-44ad-b4cf-d0113258fcca", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.640Z", - "description": "Boundary Protection", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.640Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--02566fc8-d990-4b2f-bb58-5776c42509cd", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.640Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", - "modified": "2021-01-06T18:28:42.640Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--2dfedb16-567e-4809-9812-538a46a604e9", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.640Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", - "modified": "2021-01-06T18:28:42.640Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--cf810d63-3051-4884-bead-899dbb924796", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", - "modified": "2021-01-06T18:28:42.641Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--a32de5fb-4352-4f2c-9a0d-674d92be76f6", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", - "modified": "2021-01-06T18:28:42.641Z", + "created": "2021-01-13T01:50:52.450Z", + "id": "relationship--703c2a66-1c58-4205-bf19-cdbc39254fdb", + "modified": "2021-01-13T01:50:52.450Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.455Z", "id": "relationship--f349cac3-10fa-4389-a2e0-c722d528f3b6", - "modified": "2021-01-06T18:28:42.641Z", + "modified": "2021-01-13T01:50:52.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.455Z", "id": "relationship--fd0d1c39-66ba-456c-95a9-df32370e30c7", - "modified": "2021-01-06T18:28:42.641Z", + "modified": "2021-01-13T01:50:52.455Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--c8b1b4a7-6f86-4c36-97b1-c329317260ad", - "modified": "2021-01-06T18:28:42.641Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--ba27d830-5bf4-427e-aa5a-f41fe2cf668b", - "modified": "2021-01-06T18:28:42.641Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--fc48b6a8-cb0f-4958-9be7-b8339462ad2f", - "modified": "2021-01-06T18:28:42.642Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--0762d2b7-2fc7-440e-86f3-66719c3a6998", - "modified": "2021-01-06T18:28:42.642Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--620fea9b-99af-4eca-9d3e-6606d0ea94ec", - "modified": "2021-01-06T18:28:42.642Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.456Z", "id": "relationship--7a82fc55-fe78-46dc-b362-c4aadba51aa7", - "modified": "2021-01-06T18:28:42.642Z", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.643Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.457Z", "id": "relationship--c189979a-4779-4df9-874b-8153fce693f7", - "modified": "2021-01-06T18:28:42.643Z", + "modified": "2021-01-13T01:50:52.457Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.643Z", - "description": "Protect and prevent credential access", - "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", - "modified": "2021-01-06T18:28:42.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.644Z", - "description": "Continuous Monitoring", - "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", - "modified": "2021-01-06T18:28:42.644Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.645Z", - "description": "Configuring system settings", - "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", - "modified": "2021-01-06T18:28:42.645Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.647Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.462Z", "id": "relationship--6967226a-ef18-434f-86b3-1c796b77d580", - "modified": "2021-01-06T18:28:42.647Z", + "modified": "2021-01-13T01:50:52.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.647Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.462Z", "id": "relationship--e82083e3-ea44-49ef-a77b-b95e09b7a163", - "modified": "2021-01-06T18:28:42.647Z", + "modified": "2021-01-13T01:50:52.462Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.648Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.463Z", "id": "relationship--b4f2e8d0-9a1a-49be-8033-e004565a2d03", - "modified": "2021-01-06T18:28:42.648Z", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.648Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.463Z", "id": "relationship--8b70af8a-6321-4e6c-b269-a8f1e1365fb9", - "modified": "2021-01-06T18:28:42.648Z", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.649Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.463Z", "id": "relationship--b3431f4d-3a73-4ff8-b850-0b83250d27a2", - "modified": "2021-01-06T18:28:42.649Z", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.649Z", - "description": "Protect and prevent credential access", - "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", - "modified": "2021-01-06T18:28:42.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.650Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.464Z", "id": "relationship--bbab5a97-bff4-4cd6-bb02-22f6140655b6", - "modified": "2021-01-06T18:28:42.650Z", + "modified": "2021-01-13T01:50:52.464Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.650Z", - "description": "Continuous Monitoring", - "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", - "modified": "2021-01-06T18:28:42.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.651Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.465Z", "id": "relationship--a4e89d6c-813f-467e-89bc-6490f35b68d4", - "modified": "2021-01-06T18:28:42.651Z", + "modified": "2021-01-13T01:50:52.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.651Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", - "modified": "2021-01-06T18:28:42.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.652Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.465Z", "id": "relationship--773eb522-c358-4c3e-98a1-a3113fe27a9a", - "modified": "2021-01-06T18:28:42.652Z", + "modified": "2021-01-13T01:50:52.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.652Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", - "modified": "2021-01-06T18:28:42.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.466Z", "id": "relationship--e0dbf1d0-9735-492a-9f5f-534a78e1152f", - "modified": "2021-01-06T18:28:42.653Z", + "modified": "2021-01-13T01:50:52.466Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.653Z", - "description": "Boundary Protection", - "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", - "modified": "2021-01-06T18:28:42.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.467Z", "id": "relationship--13fe5f3e-0a58-469e-ab8e-8aee92863ad1", - "modified": "2021-01-06T18:28:42.654Z", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.467Z", "id": "relationship--048e7cb2-db78-4da9-81a7-96cd4c9b2460", - "modified": "2021-01-06T18:28:42.654Z", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.467Z", "id": "relationship--05f213d7-e130-4110-9abf-331a3913a549", - "modified": "2021-01-06T18:28:42.654Z", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.467Z", "id": "relationship--b4aa2f2b-3516-41d5-9638-df37ca9e8d34", - "modified": "2021-01-06T18:28:42.654Z", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.655Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.468Z", "id": "relationship--8ee96015-7439-4205-8c12-99fd77e7a25b", - "modified": "2021-01-06T18:28:42.655Z", + "modified": "2021-01-13T01:50:52.468Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.655Z", - "description": "Protect and prevent credential access", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.655Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.656Z", - "description": "Continuous Monitoring", - "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", - "modified": "2021-01-06T18:28:42.656Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.657Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.657Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.658Z", - "description": "Boundary Protection", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.659Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.472Z", "id": "relationship--c3518993-8e2f-44ae-a22c-9333ed5132a5", - "modified": "2021-01-06T18:28:42.659Z", + "modified": "2021-01-13T01:50:52.472Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.659Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.472Z", "id": "relationship--81942dc8-7aa2-4759-aa89-836544c98226", - "modified": "2021-01-06T18:28:42.659Z", + "modified": "2021-01-13T01:50:52.472Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.660Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.473Z", "id": "relationship--3e6b945f-dbd7-4b86-a62b-466626646253", - "modified": "2021-01-06T18:28:42.660Z", + "modified": "2021-01-13T01:50:52.473Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.660Z", - "description": "Protect and prevent credential access", - "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", - "modified": "2021-01-06T18:28:42.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.661Z", - "description": "Continuous Monitoring", - "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", - "modified": "2021-01-06T18:28:42.661Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.662Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", - "modified": "2021-01-06T18:28:42.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.662Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.475Z", "id": "relationship--96b79c87-2318-41ef-a219-5b2ca832f110", - "modified": "2021-01-06T18:28:42.662Z", + "modified": "2021-01-13T01:50:52.475Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.663Z", - "description": "Boundary Protection", - "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", - "modified": "2021-01-06T18:28:42.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", - "modified": "2021-01-06T18:28:42.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.477Z", "id": "relationship--ae24b4ee-a27e-42a8-9baa-579006ba0b40", - "modified": "2021-01-06T18:28:42.664Z", + "modified": "2021-01-13T01:50:52.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.477Z", "id": "relationship--4179d683-848f-4d67-bbe5-b537e7f27b49", - "modified": "2021-01-06T18:28:42.664Z", + "modified": "2021-01-13T01:50:52.477Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.665Z", - "description": "Protect and prevent credential access", - "id": "relationship--81c2f704-7a9d-4fa1-a798-08a50c6add2b", - "modified": "2021-01-06T18:28:42.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.665Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.478Z", "id": "relationship--4912bbb5-845c-4290-973b-fd19bdb09568", - "modified": "2021-01-06T18:28:42.665Z", + "modified": "2021-01-13T01:50:52.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.666Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.479Z", "id": "relationship--ab3f1305-16f9-4273-8c41-b8663e4246d4", - "modified": "2021-01-06T18:28:42.666Z", + "modified": "2021-01-13T01:50:52.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.667Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", - "modified": "2021-01-06T18:28:42.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.667Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", - "modified": "2021-01-06T18:28:42.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.668Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.481Z", "id": "relationship--c0f64031-8a70-4ba0-9a11-de5dd92f03af", - "modified": "2021-01-06T18:28:42.668Z", + "modified": "2021-01-13T01:50:52.481Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", - "modified": "2021-01-06T18:28:42.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.482Z", "id": "relationship--cba415b6-b2d4-4a8a-b2d7-b27b53d57381", - "modified": "2021-01-06T18:28:42.669Z", + "modified": "2021-01-13T01:50:52.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.482Z", "id": "relationship--6e082b12-e0d2-42b0-8cc5-12e288c9a5e2", - "modified": "2021-01-06T18:28:42.669Z", + "modified": "2021-01-13T01:50:52.482Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.670Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.483Z", "id": "relationship--a9be10b2-4d64-4d39-b1de-12e60f3e0c54", - "modified": "2021-01-06T18:28:42.670Z", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.670Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.483Z", "id": "relationship--e8e16a49-634e-446d-b08a-016bcfc09f03", - "modified": "2021-01-06T18:28:42.670Z", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.671Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.483Z", "id": "relationship--a502a76c-934b-4d4a-854c-83fed8de97af", - "modified": "2021-01-06T18:28:42.671Z", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.671Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.483Z", "id": "relationship--a658eb89-7405-4bca-894d-0316b167d230", - "modified": "2021-01-06T18:28:42.671Z", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.671Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.484Z", "id": "relationship--1049070c-84fb-4007-b46a-e2ac7f099bee", - "modified": "2021-01-06T18:28:42.671Z", + "modified": "2021-01-13T01:50:52.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.484Z", "id": "relationship--c26898e9-b9ce-456b-a24e-2d1382152ee9", - "modified": "2021-01-06T18:28:42.672Z", + "modified": "2021-01-13T01:50:52.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.672Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.485Z", "id": "relationship--4009e0b1-d0d4-45fd-ba12-979ceb3c3525", - "modified": "2021-01-06T18:28:42.672Z", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.672Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.485Z", "id": "relationship--35c32222-3407-4f86-8062-b45f84233416", - "modified": "2021-01-06T18:28:42.672Z", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.673Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.485Z", "id": "relationship--a492b74f-2302-4e22-a4c4-c5a5f07a4fe8", - "modified": "2021-01-06T18:28:42.673Z", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.673Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.486Z", "id": "relationship--771657a6-aa86-4135-80d8-1ec41a2fc3b5", - "modified": "2021-01-06T18:28:42.673Z", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.674Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.486Z", "id": "relationship--9b496d16-d884-4aa7-a90b-8911efde65ee", - "modified": "2021-01-06T18:28:42.674Z", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.674Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.486Z", "id": "relationship--d0aedc49-5c19-4c4c-90a5-8037b3a1a87d", - "modified": "2021-01-06T18:28:42.674Z", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:50:52.487Z", "id": "relationship--d2586554-e6d7-4126-ab2f-2e7d265fad8b", - "modified": "2021-01-06T18:28:42.675Z", + "modified": "2021-01-13T01:50:52.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:50:52.487Z", "id": "relationship--1deae7fb-7370-4619-88d0-ec7181c7cf39", - "modified": "2021-01-06T18:28:42.675Z", + "modified": "2021-01-13T01:50:52.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:50:52.488Z", "id": "relationship--af5175bc-dc1b-4a4e-bfd2-f849bf9d0b41", - "modified": "2021-01-06T18:28:42.675Z", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", + "created": "2021-01-13T01:50:52.488Z", "id": "relationship--ba75d66b-8b73-41ca-9528-c570cc0573aa", - "modified": "2021-01-06T18:28:42.675Z", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.676Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.488Z", "id": "relationship--a6e602ed-a027-4a48-9fa2-7723490fe5aa", - "modified": "2021-01-06T18:28:42.676Z", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.677Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.489Z", "id": "relationship--c18fc882-10b1-44a8-a225-40d084e46fa3", - "modified": "2021-01-06T18:28:42.677Z", + "modified": "2021-01-13T01:50:52.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.677Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.489Z", "id": "relationship--690434f8-aef4-4809-82bc-d6b3f94f31c7", - "modified": "2021-01-06T18:28:42.677Z", + "modified": "2021-01-13T01:50:52.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.678Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.490Z", "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:42.678Z", + "modified": "2021-01-13T01:50:52.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.678Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.490Z", "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:42.678Z", + "modified": "2021-01-13T01:50:52.490Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.679Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.491Z", "id": "relationship--972cd8ad-1298-4ec9-b33f-7dec904c36bd", - "modified": "2021-01-06T18:28:42.679Z", + "modified": "2021-01-13T01:50:52.491Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.492Z", "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:42.680Z", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.492Z", "id": "relationship--875ebf39-bd86-41a3-8ab1-666b6abf449c", - "modified": "2021-01-06T18:28:42.680Z", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.492Z", "id": "relationship--18fb970f-e115-4d76-b29b-170e5887c906", - "modified": "2021-01-06T18:28:42.680Z", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.681Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.493Z", "id": "relationship--abaaf543-0a3f-4e1c-93fb-89f49ee66d8c", - "modified": "2021-01-06T18:28:42.681Z", + "modified": "2021-01-13T01:50:52.493Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.681Z", - "description": "Protect and prevent credential access", - "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", - "modified": "2021-01-06T18:28:42.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.683Z", - "description": "Continuous Monitoring", - "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", - "modified": "2021-01-06T18:28:42.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", - "modified": "2021-01-06T18:28:42.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.685Z", - "description": "Boundary Protection", - "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", - "modified": "2021-01-06T18:28:42.685Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.686Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.686Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.686Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.497Z", "id": "relationship--d16d88b4-cebe-48ac-bda6-39004d4f6796", - "modified": "2021-01-06T18:28:42.686Z", + "modified": "2021-01-13T01:50:52.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.687Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.497Z", "id": "relationship--2daf7507-8911-48d3-bb84-823286e2a514", - "modified": "2021-01-06T18:28:42.687Z", + "modified": "2021-01-13T01:50:52.497Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.498Z", "id": "relationship--22f5561b-de7e-4bf1-8e6c-7671c85a55fd", - "modified": "2021-01-06T18:28:42.688Z", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.498Z", "id": "relationship--f26e9db2-57f1-43fb-b9e6-1483b93fa802", - "modified": "2021-01-06T18:28:42.688Z", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.498Z", "id": "relationship--a53d12e9-9033-40f8-8e81-5791c9430acc", - "modified": "2021-01-06T18:28:42.688Z", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.499Z", "id": "relationship--43fc3e5a-697e-4b9c-a722-47142ad2dd6c", - "modified": "2021-01-06T18:28:42.688Z", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.499Z", "id": "relationship--2c095030-aba9-4010-a0a5-e6b9db373178", - "modified": "2021-01-06T18:28:42.688Z", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.689Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.499Z", "id": "relationship--bb77c8a6-56e0-492f-a4d9-61ea4d81a39e", - "modified": "2021-01-06T18:28:42.689Z", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.690Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.500Z", "id": "relationship--97838f19-7ccc-4a2d-b9f1-fd0fa3e25af2", - "modified": "2021-01-06T18:28:42.690Z", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.690Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.500Z", "id": "relationship--a176ee3d-c9e2-43c4-a509-f75c6c6806c3", - "modified": "2021-01-06T18:28:42.690Z", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.691Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.500Z", "id": "relationship--8dd5ed30-c7f9-433a-bfa8-3dba9ea82d5f", - "modified": "2021-01-06T18:28:42.691Z", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.691Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--798e5bec-652c-44e4-9a0b-f0e75f854f3d", - "modified": "2021-01-06T18:28:42.691Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--85e97807-c5a7-4a75-8cb2-80d13fdb69f7", - "modified": "2021-01-06T18:28:42.692Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--9d72bba7-7cb2-4bac-ae0e-5f9434e6d989", - "modified": "2021-01-06T18:28:42.692Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--4be00890-52d1-4d3e-b088-546892ad5d35", - "modified": "2021-01-06T18:28:42.692Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--fc301be2-368c-4648-a6e6-87791043dc96", - "modified": "2021-01-06T18:28:42.692Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.501Z", "id": "relationship--ed321e42-11c2-42ab-a0c9-adbb8fbfcbc6", - "modified": "2021-01-06T18:28:42.692Z", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.502Z", "id": "relationship--1631a6be-daed-460e-abc9-88bbe9c2d576", - "modified": "2021-01-06T18:28:42.693Z", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.502Z", "id": "relationship--a38a4014-6a89-40ab-9fb3-660d787fdea9", - "modified": "2021-01-06T18:28:42.693Z", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.502Z", "id": "relationship--b7f0f0f1-c2fa-4b5a-b110-d2f34c1afd0c", - "modified": "2021-01-06T18:28:42.693Z", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.503Z", "id": "relationship--4f229084-7e14-41c4-b8d5-00a42f320441", - "modified": "2021-01-06T18:28:42.694Z", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.503Z", "id": "relationship--113181ed-6d28-478e-a6d4-e732ea9cbad7", - "modified": "2021-01-06T18:28:42.694Z", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.503Z", "id": "relationship--ec4dada2-14b6-4094-a198-4a565da638e9", - "modified": "2021-01-06T18:28:42.694Z", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.503Z", "id": "relationship--1110b5b2-5192-4a87-822e-ade8f1a548b2", - "modified": "2021-01-06T18:28:42.695Z", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.504Z", "id": "relationship--6556616e-daa0-48c8-81b6-d987c3c28fd8", - "modified": "2021-01-06T18:28:42.695Z", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.504Z", "id": "relationship--99711ad5-4ff0-4ca8-9239-89b53b95056c", - "modified": "2021-01-06T18:28:42.695Z", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.504Z", "id": "relationship--1d0ff2c4-dd67-46cc-94a8-f8fd5c2708ee", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--63ed37e4-364e-4ad6-b8ba-52fa86307624", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--90f3421d-a024-4392-9bcf-d9c03a75d85e", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--c5891cce-72ab-4aee-9343-590bf8e8fac7", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--62c08831-4763-46c5-937a-883682eb6ee0", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--9eae3ec4-a58b-46d0-92a1-2925cd512df8", - "modified": "2021-01-06T18:28:42.696Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--a5e1d1ce-a17a-4b86-aadf-c71d8bfe6572", - "modified": "2021-01-06T18:28:42.697Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--c96e1802-9ebb-4b25-a2ca-2179c8d6c773", - "modified": "2021-01-06T18:28:42.697Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.505Z", "id": "relationship--26e43003-2a77-4aa7-9460-c4ac2e1d4957", - "modified": "2021-01-06T18:28:42.697Z", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.506Z", "id": "relationship--6c0b69b3-fb47-488d-b51f-07958c2d7c7a", - "modified": "2021-01-06T18:28:42.697Z", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.698Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.506Z", "id": "relationship--b5bde6ee-fa1c-439e-bc2f-dc75ee03f403", - "modified": "2021-01-06T18:28:42.698Z", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.698Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.506Z", "id": "relationship--307db0c6-c09a-4329-9a66-8007013e87e2", - "modified": "2021-01-06T18:28:42.698Z", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.506Z", "id": "relationship--ccd36d4c-d7e2-4b37-83a8-e3b68ad80f52", - "modified": "2021-01-06T18:28:42.699Z", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.507Z", "id": "relationship--ca2ccc5e-7fb4-46ac-86a1-3be84c1c0d17", - "modified": "2021-01-06T18:28:42.699Z", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.507Z", "id": "relationship--4b510a2f-79ad-4951-8819-b1233b5e19c6", - "modified": "2021-01-06T18:28:42.699Z", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.507Z", "id": "relationship--ede058b2-bfe5-4fde-ad0e-b6656540b123", - "modified": "2021-01-06T18:28:42.701Z", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--fb9596ec-a208-425d-b13a-3f3f50f0db81", - "modified": "2021-01-06T18:28:42.701Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--ce3e47b7-d015-49aa-a940-85523152097f", - "modified": "2021-01-06T18:28:42.701Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--5524976d-9e0b-42ad-b3ae-2640bf1ed27d", - "modified": "2021-01-06T18:28:42.701Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--6810b20c-9b96-4e21-8cca-33f75b9acd8e", - "modified": "2021-01-06T18:28:42.701Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--8363e0d7-9e51-402f-91a1-d5be4dbbcc90", - "modified": "2021-01-06T18:28:42.702Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--5945d863-0a82-4b32-a1b4-3dd4b8a9d721", - "modified": "2021-01-06T18:28:42.702Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--ba3be8bd-eb7c-47cc-9dc4-e3f077af7a37", - "modified": "2021-01-06T18:28:42.702Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--2dbe3b8b-cac0-47d3-a3d6-15b6d0c61da3", - "modified": "2021-01-06T18:28:42.702Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.508Z", "id": "relationship--61ff469e-dd8a-41ce-ad50-065657fdfca0", - "modified": "2021-01-06T18:28:42.702Z", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.703Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.509Z", "id": "relationship--0c70c2d7-ee7d-401f-aaac-374c0a8c1fca", - "modified": "2021-01-06T18:28:42.703Z", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.509Z", "id": "relationship--eb67e12e-0fac-46e1-83f0-741e91bff088", - "modified": "2021-01-06T18:28:42.704Z", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.509Z", "id": "relationship--87cbb28a-e553-4013-bc98-d9f09cafc05c", - "modified": "2021-01-06T18:28:42.704Z", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.510Z", "id": "relationship--d67b6fc7-4213-4295-8482-682609a395c4", - "modified": "2021-01-06T18:28:42.704Z", + "modified": "2021-01-13T01:50:52.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.510Z", "id": "relationship--3f5cdf3e-349f-4f23-bc87-950991a2233f", - "modified": "2021-01-06T18:28:42.704Z", + "modified": "2021-01-13T01:50:52.510Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--42996766-37d2-426a-b4a0-727d93d9bb95", - "modified": "2021-01-06T18:28:42.705Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--042b7cda-0d11-4e6c-be38-94bbde3f47b6", - "modified": "2021-01-06T18:28:42.705Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--0e3ac3c6-f42a-4b9e-aeed-09a27c02c784", - "modified": "2021-01-06T18:28:42.705Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--eceab300-3c1c-41a9-9b34-99de6a56b277", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--37d9f348-927a-403c-9ee9-50655728a633", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--c4e37f39-b2c4-4d2e-8366-47839e144844", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--f75017b4-bf93-4fb8-90d9-8b195ea262ad", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--fd4ea8d0-44ce-4727-91df-b3555274dea1", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.511Z", "id": "relationship--073aecff-310e-4f67-b2da-327f29251aed", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--b8f346c4-c9a5-42ad-9d81-1e32b1c1fb8c", - "modified": "2021-01-06T18:28:42.706Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--e16ea92b-55d3-4c2b-ba75-d1a590059d06", - "modified": "2021-01-06T18:28:42.707Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--56479ba1-2a6d-46da-8f28-476dfcc5007e", - "modified": "2021-01-06T18:28:42.707Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--8d644260-bf9c-4e3a-ba0e-d174802670e3", - "modified": "2021-01-06T18:28:42.707Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--3b806c37-1243-4e23-936a-f03780e7e48d", - "modified": "2021-01-06T18:28:42.707Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.512Z", "id": "relationship--868802a7-c65a-45ce-8be4-958ac2904c68", - "modified": "2021-01-06T18:28:42.707Z", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.513Z", "id": "relationship--d5a69e86-fc3b-4ef6-9300-ce4d4513531a", - "modified": "2021-01-06T18:28:42.709Z", + "modified": "2021-01-13T01:50:52.513Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.710Z", - "description": "Continuous Monitoring", - "id": "relationship--34bac784-fbbd-48e5-8603-4025a864d4bc", - "modified": "2021-01-06T18:28:42.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.711Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.711Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.516Z", "id": "relationship--95b2dadc-6ba2-4013-b82d-12869e2bbd38", - "modified": "2021-01-06T18:28:42.711Z", + "modified": "2021-01-13T01:50:52.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.712Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.517Z", "id": "relationship--f4da3c0e-bc4a-4349-aead-3153b29ae5d5", - "modified": "2021-01-06T18:28:42.712Z", + "modified": "2021-01-13T01:50:52.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.712Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.517Z", "id": "relationship--a93de52e-25ad-48e1-b708-8f095cee26b3", - "modified": "2021-01-06T18:28:42.712Z", + "modified": "2021-01-13T01:50:52.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.713Z", - "description": "Boundary Protection", - "id": "relationship--e341c74b-f9b3-43c4-b368-541f0ff04944", - "modified": "2021-01-06T18:28:42.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.714Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.715Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.519Z", "id": "relationship--59d4d5e1-93ba-4232-94fe-5a217601b1fc", - "modified": "2021-01-06T18:28:42.715Z", + "modified": "2021-01-13T01:50:52.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.715Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.519Z", "id": "relationship--b653e12f-cbf8-4a58-b0c8-b14e0d6bb329", - "modified": "2021-01-06T18:28:42.715Z", + "modified": "2021-01-13T01:50:52.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.719Z", - "description": "Continuous Monitoring", - "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", - "modified": "2021-01-06T18:28:42.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.720Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.522Z", "id": "relationship--7f7fe602-a786-4821-8a68-bbc8f94bd4ae", - "modified": "2021-01-06T18:28:42.720Z", + "modified": "2021-01-13T01:50:52.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.720Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.522Z", "id": "relationship--1f1ef544-28af-47b5-96eb-4707ab9850e9", - "modified": "2021-01-06T18:28:42.720Z", + "modified": "2021-01-13T01:50:52.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.721Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.523Z", "id": "relationship--046969dc-bf88-4f42-9d54-604849dac059", - "modified": "2021-01-06T18:28:42.721Z", + "modified": "2021-01-13T01:50:52.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.722Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.523Z", "id": "relationship--38912acf-7f73-4f25-bc14-771379ae34a3", - "modified": "2021-01-06T18:28:42.722Z", + "modified": "2021-01-13T01:50:52.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.723Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.524Z", "id": "relationship--b5b65d40-d256-413e-b550-1db72b57fdfa", - "modified": "2021-01-06T18:28:42.723Z", + "modified": "2021-01-13T01:50:52.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", - "modified": "2021-01-06T18:28:42.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.525Z", "id": "relationship--09db74d2-047e-449f-94a1-598d780f99bd", - "modified": "2021-01-06T18:28:42.724Z", + "modified": "2021-01-13T01:50:52.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.525Z", "id": "relationship--e184026e-fad4-452d-b1f5-774790e09509", - "modified": "2021-01-06T18:28:42.724Z", + "modified": "2021-01-13T01:50:52.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.526Z", "id": "relationship--b9582b24-186f-461c-b84e-01b4af8d8a78", - "modified": "2021-01-06T18:28:42.725Z", + "modified": "2021-01-13T01:50:52.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.527Z", "id": "relationship--f8734fa4-9e96-4d1f-b5b2-cfa4a5767dab", - "modified": "2021-01-06T18:28:42.725Z", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.527Z", "id": "relationship--9f2c1c23-d1a8-4036-98c6-1fe766b042af", - "modified": "2021-01-06T18:28:42.725Z", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.527Z", "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:42.726Z", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.527Z", "id": "relationship--af647ad8-da6c-4899-87a5-02dc14db3c1f", - "modified": "2021-01-06T18:28:42.726Z", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.527Z", "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:42.726Z", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.727Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.528Z", "id": "relationship--396a7485-7c77-46a9-8562-3f5cf2811764", - "modified": "2021-01-06T18:28:42.727Z", + "modified": "2021-01-13T01:50:52.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.727Z", - "description": "Continuous Monitoring", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:42.727Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.529Z", "id": "relationship--6cae7608-6e02-4083-9c6b-85414a3e0a58", - "modified": "2021-01-06T18:28:42.728Z", + "modified": "2021-01-13T01:50:52.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.529Z", "id": "relationship--a7b125ef-ee19-4da3-97c7-9e5f88a9c37f", - "modified": "2021-01-06T18:28:42.728Z", + "modified": "2021-01-13T01:50:52.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.530Z", "id": "relationship--efa2faa4-2283-4c61-acc6-d0b0f4265ed5", - "modified": "2021-01-06T18:28:42.729Z", + "modified": "2021-01-13T01:50:52.530Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.530Z", "id": "relationship--29be95a5-4b1c-4bc3-a19a-d810bc58ba1a", - "modified": "2021-01-06T18:28:42.729Z", + "modified": "2021-01-13T01:50:52.530Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.531Z", "id": "relationship--c766bbc6-6b85-42b9-9ca6-4ea076c7191b", - "modified": "2021-01-06T18:28:42.729Z", + "modified": "2021-01-13T01:50:52.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.531Z", "id": "relationship--0079f7f0-5d6b-4bb7-925a-02c834e1674d", - "modified": "2021-01-06T18:28:42.729Z", + "modified": "2021-01-13T01:50:52.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.730Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:52.532Z", "id": "relationship--2c20dc0e-2a5d-4015-9115-b0f287e6f9dc", - "modified": "2021-01-06T18:28:42.730Z", + "modified": "2021-01-13T01:50:52.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.730Z", - "description": "Boundary Protection", - "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:42.730Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.731Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.533Z", "id": "relationship--84537d74-144f-4924-af98-1209d4b688cf", - "modified": "2021-01-06T18:28:42.731Z", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.731Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.533Z", "id": "relationship--0ca863bb-2c4d-44c2-a41b-ae96972bd4e7", - "modified": "2021-01-06T18:28:42.732Z", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.533Z", "id": "relationship--e557b4bd-32aa-4bbe-a913-b9228a547c34", - "modified": "2021-01-06T18:28:42.732Z", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.533Z", "id": "relationship--beac07e7-5f32-4772-adf1-dbae99efce66", - "modified": "2021-01-06T18:28:42.732Z", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.534Z", "id": "relationship--aec88f4f-50a7-4f1f-9cc3-bb34817c76e7", - "modified": "2021-01-06T18:28:42.732Z", + "modified": "2021-01-13T01:50:52.534Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.733Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.535Z", "id": "relationship--1fe8af30-185a-43ba-810b-84201e914785", - "modified": "2021-01-06T18:28:42.733Z", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.535Z", "id": "relationship--ed904066-9ad4-45e8-a978-437dde2b9d4c", - "modified": "2021-01-06T18:28:42.734Z", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.535Z", "id": "relationship--423f0e66-8e26-4bac-bc8a-3e64c29d0695", - "modified": "2021-01-06T18:28:42.734Z", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.735Z", - "description": "Protect and prevent credential access", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.735Z", - "description": "Continuous Monitoring", - "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", - "modified": "2021-01-06T18:28:42.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Continuous Monitoring", - "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Continuous Monitoring", - "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--7df56434-eef4-4a6e-8e17-6f2db8c784e2", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--30b1c2cd-21ef-42fa-9f18-5c284804bdec", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--dae44126-d7af-48e6-8891-3c74ecc049b5", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--87da20cf-d505-47bd-9475-5de2ad2a7f20", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--50a40a34-0f8b-4092-97cd-6e5c744253bc", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.540Z", "id": "relationship--3aedc46a-9663-48fe-b1a2-cd27588b9be5", - "modified": "2021-01-06T18:28:42.740Z", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.741Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.541Z", "id": "relationship--acef280f-4611-4452-ba78-4d2abeb9dc5a", - "modified": "2021-01-06T18:28:42.741Z", + "modified": "2021-01-13T01:50:52.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.741Z", - "description": "Protect and prevent credential access", - "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", - "modified": "2021-01-06T18:28:42.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.742Z", - "description": "Continuous Monitoring", - "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", - "modified": "2021-01-06T18:28:42.742Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.743Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", - "modified": "2021-01-06T18:28:42.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.743Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", - "modified": "2021-01-06T18:28:42.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.745Z", - "description": "Boundary Protection", - "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", - "modified": "2021-01-06T18:28:42.745Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", - "modified": "2021-01-06T18:28:42.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.545Z", "id": "relationship--cf782d56-ebf2-4dc5-82e1-c2b858c60aa4", - "modified": "2021-01-06T18:28:42.746Z", + "modified": "2021-01-13T01:50:52.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.545Z", "id": "relationship--f1a0154f-e205-4604-ab0e-1a5813b3949a", - "modified": "2021-01-06T18:28:42.746Z", + "modified": "2021-01-13T01:50:52.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.747Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.546Z", "id": "relationship--313aa1e3-d4b1-446b-a288-cd7afea7cbb8", - "modified": "2021-01-06T18:28:42.747Z", + "modified": "2021-01-13T01:50:52.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.747Z", - "description": "Protect and prevent credential access", - "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", - "modified": "2021-01-06T18:28:42.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.748Z", - "description": "Continuous Monitoring", - "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", - "modified": "2021-01-06T18:28:42.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.749Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", - "modified": "2021-01-06T18:28:42.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.749Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", - "modified": "2021-01-06T18:28:42.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.750Z", - "description": "Boundary Protection", - "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", - "modified": "2021-01-06T18:28:42.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.751Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.550Z", "id": "relationship--d1bb6cf2-ca21-4df8-bcf7-8204e4c74acf", - "modified": "2021-01-06T18:28:42.751Z", + "modified": "2021-01-13T01:50:52.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.751Z", - "description": "Information validation and filtering", + "created": "2021-01-13T01:50:52.550Z", "id": "relationship--9e5c24d8-9af9-4099-ba58-7c764f950269", - "modified": "2021-01-06T18:28:42.751Z", + "modified": "2021-01-13T01:50:52.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.752Z", - "description": "Protect and prevent credential access", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.752Z", - "description": "Protect and prevent credential access", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.753Z", - "description": "Protect and prevent credential access", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:42.753Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.753Z", - "description": "Protect and prevent credential access", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:42.753Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.754Z", - "description": "Continuous Monitoring", - "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", - "modified": "2021-01-06T18:28:42.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.754Z", - "description": "Continuous Monitoring", - "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", - "modified": "2021-01-06T18:28:42.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.553Z", "id": "relationship--e4531376-9d3f-4796-9914-77e85888a2b7", - "modified": "2021-01-06T18:28:42.755Z", + "modified": "2021-01-13T01:50:52.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.553Z", "id": "relationship--52436074-3033-4f1d-acb1-85bab7a3c9d8", - "modified": "2021-01-06T18:28:42.755Z", + "modified": "2021-01-13T01:50:52.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.756Z", - "description": "Boundary Protection", - "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", - "modified": "2021-01-06T18:28:42.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.756Z", - "description": "Boundary Protection", - "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", - "modified": "2021-01-06T18:28:42.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.555Z", "id": "relationship--1062add1-05fd-4287-a09d-1d875b67be7a", - "modified": "2021-01-06T18:28:42.757Z", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.555Z", "id": "relationship--9abad197-3a16-4a90-adb6-bfb17c42b71b", - "modified": "2021-01-06T18:28:42.757Z", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.555Z", "id": "relationship--c77bc137-41b5-4edd-bbd8-3c2ea23c2007", - "modified": "2021-01-06T18:28:42.757Z", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.555Z", "id": "relationship--9efd48df-cb6b-4875-8796-308e775f63cb", - "modified": "2021-01-06T18:28:42.757Z", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.758Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.556Z", "id": "relationship--da85bbb8-378d-4fa6-a53f-8ed4456e4328", - "modified": "2021-01-06T18:28:42.758Z", + "modified": "2021-01-13T01:50:52.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.556Z", "id": "relationship--c1936130-b7fb-4e61-a607-fd1d482ee97e", - "modified": "2021-01-06T18:28:42.759Z", + "modified": "2021-01-13T01:50:52.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.556Z", "id": "relationship--b5bf8437-4f4e-432e-99f5-6877bc85191c", - "modified": "2021-01-06T18:28:42.759Z", + "modified": "2021-01-13T01:50:52.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--23277cb5-4b15-4a17-9fab-0937b0bfbff5", - "modified": "2021-01-06T18:28:42.760Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--023c15e4-0c8f-4d35-9e93-4fd41e9d19da", - "modified": "2021-01-06T18:28:42.760Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--7619d492-4804-46fc-8748-52c1d182584a", - "modified": "2021-01-06T18:28:42.760Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--8a6d1458-d96a-4ed5-a8ad-78fcd70f41e6", - "modified": "2021-01-06T18:28:42.761Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--fa9096cf-5705-4e53-b18d-a786de974669", - "modified": "2021-01-06T18:28:42.761Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", + "created": "2021-01-13T01:50:52.557Z", "id": "relationship--af0e4ebf-0d6a-41e0-807f-ebce1bf74a5e", - "modified": "2021-01-06T18:28:42.761Z", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.764Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", - "modified": "2021-01-06T18:28:42.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.764Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.560Z", "id": "relationship--34c170ea-51f8-41ad-83f0-deccdd1e4973", - "modified": "2021-01-06T18:28:42.764Z", + "modified": "2021-01-13T01:50:52.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.764Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.560Z", "id": "relationship--ebc7e103-2892-4a83-a768-fa4e6d6eaf6e", - "modified": "2021-01-06T18:28:42.764Z", + "modified": "2021-01-13T01:50:52.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.561Z", "id": "relationship--30d13aaf-93be-4b26-96d8-a92298cca232", - "modified": "2021-01-06T18:28:42.765Z", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.561Z", "id": "relationship--15716f4c-c1fd-42ea-8565-b8df9f43bb2e", - "modified": "2021-01-06T18:28:42.765Z", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.561Z", "id": "relationship--73185afd-93e2-4487-aa95-446ed18456dd", - "modified": "2021-01-06T18:28:42.765Z", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", + "created": "2021-01-13T01:50:52.561Z", "id": "relationship--cfad7fa4-3583-4108-ab7f-b77d337afb69", - "modified": "2021-01-06T18:28:42.765Z", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.766Z", - "description": "Boundary Protection", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.767Z", - "description": "Boundary Protection", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.767Z", - "description": "Boundary Protection", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--d1e6595e-1d7d-4f5b-84f1-ef68df354555", - "modified": "2021-01-06T18:28:42.768Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--554b6166-4880-416d-b078-7a9818f41dcb", - "modified": "2021-01-06T18:28:42.768Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--15258c47-84ce-4550-b020-873b5a19d1b7", - "modified": "2021-01-06T18:28:42.768Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--3a0aa652-b6b9-4714-84c8-7aab9a486ccc", - "modified": "2021-01-06T18:28:42.768Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.769Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--8a2e6258-9e8f-45bf-bda9-893bc9d3938b", - "modified": "2021-01-06T18:28:42.769Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.769Z", - "description": "System Monitoring, Information validation and filtering", + "created": "2021-01-13T01:50:52.563Z", "id": "relationship--fef1ee07-5c91-4deb-904e-38bb91b62956", - "modified": "2021-01-06T18:28:42.769Z", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ce631fb7-1608-4dc2-ba24-55d01da3b542", - "modified": "2021-01-06T18:28:42.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--00275f92-565d-4d7c-869c-390394f8bb8e", - "modified": "2021-01-06T18:28:42.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.565Z", "id": "relationship--4b0b4c66-a044-4b18-9034-285b0eaa44fb", - "modified": "2021-01-06T18:28:42.770Z", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.565Z", "id": "relationship--ba374b5c-8533-4086-866b-f4a1fc54bad5", - "modified": "2021-01-06T18:28:42.771Z", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.565Z", "id": "relationship--df8bec88-965c-48bd-87f8-6a1b87a39535", - "modified": "2021-01-06T18:28:42.771Z", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.565Z", "id": "relationship--af3f2f7d-338b-400d-b275-525348209dad", - "modified": "2021-01-06T18:28:42.771Z", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.566Z", "id": "relationship--ea9408fc-6013-49e7-b3aa-21c0f5178b1b", - "modified": "2021-01-06T18:28:42.772Z", + "modified": "2021-01-13T01:50:52.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.566Z", "id": "relationship--99a4ed9a-3e1e-47d6-a9cd-ad3274655fac", - "modified": "2021-01-06T18:28:42.772Z", + "modified": "2021-01-13T01:50:52.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.773Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.567Z", "id": "relationship--4d254cca-7919-436e-8828-8e12666fa165", - "modified": "2021-01-06T18:28:42.773Z", + "modified": "2021-01-13T01:50:52.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.773Z", - "description": "Configuration Management, Application Control", - "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:42.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--682adc3d-298f-4ea5-8ba4-364042e51a09", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.568Z", "id": "relationship--08281c26-b603-443b-816d-51a96c9af643", - "modified": "2021-01-06T18:28:42.774Z", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.568Z", "id": "relationship--bfc817a3-c9fe-4f13-8f04-5a11583ce1ce", - "modified": "2021-01-06T18:28:42.774Z", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--91683571-f109-4b26-96ab-c230ffcb421c", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.568Z", "id": "relationship--b2800bc0-62ff-460d-a48a-88f4b4d6fffd", - "modified": "2021-01-06T18:28:42.774Z", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--1613bc51-18ed-416b-80db-aa7bef85feb8", - "modified": "2021-01-06T18:28:42.775Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--e327b94b-7194-4ff9-a7c3-6d14d3ac8896", - "modified": "2021-01-06T18:28:42.775Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--02d8b4e1-be82-457c-8b79-2e4757cae398", - "modified": "2021-01-06T18:28:42.775Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--16226aae-8f2b-4799-a30f-56f827ce5452", - "modified": "2021-01-06T18:28:42.775Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--79b7a1fa-664d-4c49-ae91-6465ced25db9", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--79c51fac-fbc1-4766-be8c-b010647a47fd", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.569Z", "id": "relationship--fdf3ac7e-9224-43be-8662-ff17226c7cf6", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--906ce409-0aaf-4a55-bce8-ccafb7cf2e4a", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--f6fe7fa3-e19f-4629-ab63-834af13ca5c7", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--347e9e36-5e80-40b0-afad-680a7322ab44", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--2b9b0895-d5c6-473d-b4b0-e1cfcfad907e", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--60c2dee2-5588-4acd-bbb9-0b97fe27394a", - "modified": "2021-01-06T18:28:42.776Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.777Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--4aab7ccd-d251-4e55-a896-c86fbc473fb5", - "modified": "2021-01-06T18:28:42.777Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.777Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.570Z", "id": "relationship--3066f603-d78c-4abb-9573-8eb03f487805", - "modified": "2021-01-06T18:28:42.777Z", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.571Z", "id": "relationship--90cd0928-5e32-4ef7-8936-5d00d760368b", - "modified": "2021-01-06T18:28:42.778Z", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.571Z", "id": "relationship--34bcd1dc-25cf-4838-a45f-b177b8bf08a8", - "modified": "2021-01-06T18:28:42.778Z", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.571Z", "id": "relationship--8e5b9f64-2990-46d3-aec1-547e6a1e52b7", - "modified": "2021-01-06T18:28:42.778Z", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.779Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.572Z", "id": "relationship--89796b86-a75e-413c-afe8-be7851591104", - "modified": "2021-01-06T18:28:42.779Z", + "modified": "2021-01-13T01:50:52.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.779Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.572Z", "id": "relationship--b421673d-4b9b-4b3d-89d3-6715b3ed996a", - "modified": "2021-01-06T18:28:42.779Z", + "modified": "2021-01-13T01:50:52.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.573Z", "id": "relationship--6de72fa9-7a51-464b-9070-02f04f706492", - "modified": "2021-01-06T18:28:42.780Z", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.573Z", "id": "relationship--86c7e71b-d36c-44c5-bb1d-d4ebe01892f2", - "modified": "2021-01-06T18:28:42.780Z", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.573Z", "id": "relationship--88eb0321-da01-401a-917e-2e6e5690c42c", - "modified": "2021-01-06T18:28:42.780Z", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.574Z", "id": "relationship--99f9c7bf-21d1-4f56-8b72-075c9998ed64", - "modified": "2021-01-06T18:28:42.781Z", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.574Z", "id": "relationship--b5932f52-10cc-483b-b956-e841e8420768", - "modified": "2021-01-06T18:28:42.781Z", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.574Z", "id": "relationship--2b6f2243-8871-4299-93c3-4c12f3f09cff", - "modified": "2021-01-06T18:28:42.781Z", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.782Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.575Z", "id": "relationship--b3d457e5-dc75-4171-8261-3a66a0e50132", - "modified": "2021-01-06T18:28:42.782Z", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.783Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.575Z", "id": "relationship--229cf14f-900d-4006-8d6f-74536f37e6c8", - "modified": "2021-01-06T18:28:42.783Z", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.783Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.575Z", "id": "relationship--e356e6b9-2d9f-4982-b0b1-c72e45004018", - "modified": "2021-01-06T18:28:42.783Z", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.784Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.576Z", "id": "relationship--619a8478-6522-45b9-997d-96ba85113181", - "modified": "2021-01-06T18:28:42.784Z", + "modified": "2021-01-13T01:50:52.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.784Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.576Z", "id": "relationship--d9159aac-d3be-45c3-9fc1-733206e716c5", - "modified": "2021-01-06T18:28:42.784Z", + "modified": "2021-01-13T01:50:52.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.785Z", - "description": "Information Validation", - "id": "relationship--e5f02d01-3412-49ca-aa10-538ca0a17f42", - "modified": "2021-01-06T18:28:42.785Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.785Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.577Z", "id": "relationship--5f9d27e5-5d22-43fc-af4f-49f679914ca3", - "modified": "2021-01-06T18:28:42.785Z", + "modified": "2021-01-13T01:50:52.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.786Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:42.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.786Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.578Z", "id": "relationship--ed32b481-aaec-4d4a-b65c-62ad8e9c647c", - "modified": "2021-01-06T18:28:42.786Z", + "modified": "2021-01-13T01:50:52.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--049c85a0-db49-47e4-b381-e1a156343366", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.579Z", "id": "relationship--72cc102e-c65a-470a-adbe-70cfac81076c", - "modified": "2021-01-06T18:28:42.787Z", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.579Z", "id": "relationship--941f37c4-4b11-4c64-8451-c139ba20389d", - "modified": "2021-01-06T18:28:42.787Z", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.788Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.579Z", "id": "relationship--331a3a80-dc82-4a54-9765-c6ee03410c15", - "modified": "2021-01-06T18:28:42.788Z", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.788Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.579Z", "id": "relationship--0892bbd9-ae71-4a5f-8121-aa4e4f7b074a", - "modified": "2021-01-06T18:28:42.788Z", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.788Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ca778c05-a05e-4903-9c57-1e8082cb7feb", - "modified": "2021-01-06T18:28:42.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:42.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.580Z", "id": "relationship--e96de249-ba91-4f21-b49f-b4d37f0f8f6b", - "modified": "2021-01-06T18:28:42.789Z", + "modified": "2021-01-13T01:50:52.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", - "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", - "modified": "2021-01-06T18:28:42.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.581Z", "id": "relationship--61eae578-2f3c-4d0b-a0f0-4321270d0a55", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.582Z", "id": "relationship--8749b9b2-d5b3-49c9-8c96-bb2904c50907", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.582Z", "id": "relationship--e986bf4e-76a4-4296-9550-5affd8ea5b8f", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.582Z", "id": "relationship--f7abc651-b4c1-4a3d-8167-306f6b481155", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.582Z", "id": "relationship--89c1f8c6-ce3e-47f5-a6f2-1d14c12e8240", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.582Z", "id": "relationship--730e4110-7bf1-4c2d-96b2-5e2ed8a197f8", - "modified": "2021-01-06T18:28:42.790Z", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--062b863f-fa10-41a9-a125-420552600894", - "modified": "2021-01-06T18:28:42.791Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--9042fbcd-62ff-4638-b645-cf7bdeafe6f4", - "modified": "2021-01-06T18:28:42.791Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--3d45f9fb-a1cf-40a3-9228-e35d0d17c4a4", - "modified": "2021-01-06T18:28:42.791Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--42171dab-4080-41b8-ac08-1035c00c65a7", - "modified": "2021-01-06T18:28:42.791Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.792Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--451dd3f1-07dc-47aa-9874-f31dffcc7133", - "modified": "2021-01-06T18:28:42.792Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.792Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.583Z", "id": "relationship--a956e52c-68f1-4efe-9160-cc6cf35b72d1", - "modified": "2021-01-06T18:28:42.792Z", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.584Z", "id": "relationship--59c6fc9d-b5c8-46b4-91e2-156a4c25e44d", - "modified": "2021-01-06T18:28:42.793Z", + "modified": "2021-01-13T01:50:52.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.584Z", "id": "relationship--1a8a3271-6d88-4801-966a-66c90eea5326", - "modified": "2021-01-06T18:28:42.793Z", + "modified": "2021-01-13T01:50:52.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cdb93f46-dd5e-4182-8408-3c2d39e23e95", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--388a5478-1ca9-4efe-bb7f-6f429197b468", - "modified": "2021-01-06T18:28:42.793Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--9b2abe67-2b24-403d-be69-dcc9790c5a8b", - "modified": "2021-01-06T18:28:42.793Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--84d23c31-759b-4cab-be72-02444d7ad5bb", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--d3e770af-f34f-4e4c-a711-85556f7b8867", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--1ead29f4-39ff-418b-9554-edca69094587", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--d72bc49f-d7fc-4a17-8351-5a832efbb626", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--c33e0324-489e-4789-9b13-82ef700a73f0", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.585Z", "id": "relationship--a2462eb2-ecf0-42c3-af33-f2c72feb2a45", - "modified": "2021-01-06T18:28:42.794Z", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--2d7c4e6b-92bf-44ed-b196-343d3063aa54", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--6faad2d0-a789-495d-a688-0a54b36f23f2", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--7acc7754-ea93-4f48-ab20-3baca2021682", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--daa293a6-e721-42a0-bb5e-dadafdff53c2", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--d210a69d-1e5b-4505-a773-12af67e0e4df", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--04aaa4cc-1a52-44ee-acd7-4f313e8bff5a", - "modified": "2021-01-06T18:28:42.795Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--8b9ec25d-8823-44a6-8a07-82bd2f2cd0c7", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--8c1dfd95-e1d2-47d9-ac6a-f984bc445f87", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--da72fa55-83f3-41d1-bb48-119840874091", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.586Z", "id": "relationship--ce590995-a1fa-46d5-8dc7-81e1e66a6e52", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.587Z", "id": "relationship--2e124bcf-ea68-4688-8420-987e77039e1c", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.587Z", "id": "relationship--ba4f3831-d8ce-474e-bf0c-eb0df4f96081", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.587Z", "id": "relationship--53d8923c-b0ac-4525-b219-5548e517f037", - "modified": "2021-01-06T18:28:42.796Z", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--875ebf39-bd86-41a3-8ab1-666b6abf449c", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.797Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.587Z", "id": "relationship--d03f20b5-b528-4867-9eff-c01b2c4f4963", - "modified": "2021-01-06T18:28:42.797Z", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--2c369f23-9324-4dee-9459-f0deb3119c44", - "modified": "2021-01-06T18:28:42.798Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--91703745-7335-450e-b5e1-af87f2a0f2d2", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--ce56406b-43dd-493a-9676-623ce4a799c0", - "modified": "2021-01-06T18:28:42.798Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--22c88035-94e3-4472-bfbb-75c36fd3c533", - "modified": "2021-01-06T18:28:42.798Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--3c810962-3f5b-496d-9813-d044fa0875ff", - "modified": "2021-01-06T18:28:42.798Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--943f1377-376e-4bd1-bcca-9f53b6c09f1f", - "modified": "2021-01-06T18:28:42.798Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--0e143146-f275-42a8-8d73-9b783baf4b0a", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--65cc15eb-d9ef-4b6b-9330-085a923e45e4", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--88d67e1c-a2c9-48fc-b4f1-2b9e85411c6a", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.588Z", "id": "relationship--384c6b3d-927d-4068-913f-3026e3ad43e5", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--49c3ef16-0064-4ffe-9981-ffeee2c5ef7f", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--ab995d58-298d-4043-87b8-6379b359dc2a", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--8dad7373-4889-4734-aac7-fbcae98c4843", - "modified": "2021-01-06T18:28:42.799Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--0bce5245-6457-4969-9287-35dd966cac69", - "modified": "2021-01-06T18:28:42.800Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--feda0e27-c455-4e2a-b6a7-21e1d50ac1b6", - "modified": "2021-01-06T18:28:42.800Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--f25e0d44-1e42-43d8-b65d-cfe534379d41", - "modified": "2021-01-06T18:28:42.800Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.589Z", "id": "relationship--1084eb8d-c9a8-4f15-a297-09e0507cdc4d", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--cd85580d-1ff8-4ac4-a93f-bfb442dd89e0", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--c4702970-8cbf-4b30-a8b9-f89d4c664cf9", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--931beed3-59aa-45db-bbaf-a0eefb8c2280", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--1057f0df-28cd-4fc2-91dc-b74f2d70bae9", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--3158c0c5-d138-4c46-9d4d-8f9ce0c4990f", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.590Z", "id": "relationship--25ceface-51b5-481a-a887-73cafc946c71", - "modified": "2021-01-06T18:28:42.801Z", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.802Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.802Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.803Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.591Z", "id": "relationship--19008922-b254-43c6-862d-8a00391b6579", - "modified": "2021-01-06T18:28:42.803Z", + "modified": "2021-01-13T01:50:52.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.803Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d16d88b4-cebe-48ac-bda6-39004d4f6796", - "modified": "2021-01-06T18:28:42.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.804Z", - "description": "Configuration Management, Application Control", - "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", - "modified": "2021-01-06T18:28:42.804Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.804Z", - "description": "Configuration Management, Application Control", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.804Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.593Z", "id": "relationship--40237e37-bc4d-42ba-9233-5679c41a619d", - "modified": "2021-01-06T18:28:42.805Z", + "modified": "2021-01-13T01:50:52.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.594Z", "id": "relationship--6c23f787-1fb6-4628-84de-524ccb68aac1", - "modified": "2021-01-06T18:28:42.805Z", + "modified": "2021-01-13T01:50:52.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.594Z", "id": "relationship--7b32e813-3519-4590-bca4-b418760c6931", - "modified": "2021-01-06T18:28:42.805Z", + "modified": "2021-01-13T01:50:52.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.595Z", "id": "relationship--53e74cc9-88e0-4fc2-a35c-b4c4d06c0619", - "modified": "2021-01-06T18:28:42.806Z", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.595Z", "id": "relationship--88506fb7-989a-49df-82f8-3232f948e624", - "modified": "2021-01-06T18:28:42.806Z", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.595Z", "id": "relationship--0d3a3357-f26f-4598-881f-d1936da05e32", - "modified": "2021-01-06T18:28:42.806Z", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--b9241485-eb79-4092-850f-e23b37ba63b4", - "modified": "2021-01-06T18:28:42.807Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--fdeb7f0c-fa0a-462e-bc4a-e9000035184b", - "modified": "2021-01-06T18:28:42.807Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--582ed0a5-ec1d-4c8f-8fbf-d2af124d9d9f", - "modified": "2021-01-06T18:28:42.807Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--dc4afa37-5b4d-488a-b804-4016811e9b3f", - "modified": "2021-01-06T18:28:42.808Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--066fefd6-d761-47fd-8b15-ec3dea15a5c7", - "modified": "2021-01-06T18:28:42.808Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--7fb9e3ac-b0f4-4528-9eec-9a039ab282ae", - "modified": "2021-01-06T18:28:42.808Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.596Z", "id": "relationship--de4fab79-380f-45b7-a22b-670ae2815ed0", - "modified": "2021-01-06T18:28:42.808Z", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.597Z", "id": "relationship--26d89a98-a5b9-4906-a582-4483fb419eab", - "modified": "2021-01-06T18:28:42.808Z", + "modified": "2021-01-13T01:50:52.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", - "modified": "2021-01-06T18:28:42.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.598Z", "id": "relationship--01f0ef43-cdb1-40c2-90be-c0da84b6c866", - "modified": "2021-01-06T18:28:42.809Z", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.598Z", "id": "relationship--1be41b7e-9e66-4a4f-a8d9-791982fc49ec", - "modified": "2021-01-06T18:28:42.809Z", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.598Z", "id": "relationship--e967b9e8-f563-4476-979b-e254ae112911", - "modified": "2021-01-06T18:28:42.809Z", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.810Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.599Z", "id": "relationship--b977b261-831d-47fe-9c77-bb7cd387be1e", - "modified": "2021-01-06T18:28:42.810Z", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.810Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.599Z", "id": "relationship--120cab3b-cf48-4329-bdfd-b6f53dad9b93", - "modified": "2021-01-06T18:28:42.810Z", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.811Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.599Z", "id": "relationship--ef8b0c11-3ff9-48b4-b0bf-70830dee27e9", - "modified": "2021-01-06T18:28:42.811Z", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.811Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.599Z", "id": "relationship--5a353ab0-0e49-4b7e-a715-66a88d46dfcd", - "modified": "2021-01-06T18:28:42.811Z", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.811Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.600Z", "id": "relationship--174ab331-d8c2-47bb-93a7-486801f48889", - "modified": "2021-01-06T18:28:42.811Z", + "modified": "2021-01-13T01:50:52.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.812Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.600Z", "id": "relationship--6499b7e7-1b10-4654-a3c5-aa51a1dbf53f", - "modified": "2021-01-06T18:28:42.812Z", + "modified": "2021-01-13T01:50:52.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", + "created": "2021-01-13T01:50:52.601Z", "id": "relationship--7e49d83a-7ffd-4e8d-a09c-4082e404ebc3", - "modified": "2021-01-06T18:28:42.813Z", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", + "created": "2021-01-13T01:50:52.601Z", "id": "relationship--ad4232f7-e8a0-47d1-87a1-9aa3b0e2ca46", - "modified": "2021-01-06T18:28:42.813Z", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", + "created": "2021-01-13T01:50:52.601Z", "id": "relationship--1afbcab3-a83b-46c6-aaf0-831d6c12e9e3", - "modified": "2021-01-06T18:28:42.813Z", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", + "created": "2021-01-13T01:50:52.601Z", "id": "relationship--af6b6ddf-6834-46ce-9676-88e8b3473d0e", - "modified": "2021-01-06T18:28:42.813Z", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.602Z", "id": "relationship--bd06bf0b-43d5-4e20-b6b9-1c4431524ff4", - "modified": "2021-01-06T18:28:42.814Z", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.602Z", "id": "relationship--b7495c4d-cfc4-4bcd-bb4f-4953b186c1e1", - "modified": "2021-01-06T18:28:42.814Z", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:42.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.602Z", "id": "relationship--9b407b06-0cc4-4984-a71c-ae690a312903", - "modified": "2021-01-06T18:28:42.814Z", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--db16f4c7-2ffd-4506-baa7-93895226d93a", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--9b3e123e-4270-4480-bf7b-2f599b5e5615", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--686f74d5-6c17-49ab-af1a-82880b09c59e", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--8a2ef42e-4104-41b1-9342-725301c63305", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--a123451a-bb81-4cbf-a2cf-e420026b1f1b", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.603Z", "id": "relationship--bef4f0cd-514e-4090-8427-2d557640f490", - "modified": "2021-01-06T18:28:42.815Z", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.816Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:42.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.604Z", "id": "relationship--a26c4aaf-2f88-419e-8925-598be511d465", - "modified": "2021-01-06T18:28:42.817Z", + "modified": "2021-01-13T01:50:52.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.604Z", "id": "relationship--0a33d09b-9466-485f-99a7-e9bc22008ea7", - "modified": "2021-01-06T18:28:42.817Z", + "modified": "2021-01-13T01:50:52.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.605Z", "id": "relationship--397948e9-3230-4cce-866f-a5258b7d8bc2", - "modified": "2021-01-06T18:28:42.817Z", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.605Z", "id": "relationship--7e444870-66d8-4cc9-b205-4c4047e9c76c", - "modified": "2021-01-06T18:28:42.817Z", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.818Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.605Z", "id": "relationship--c74a1b22-8aeb-43ec-8129-9f4177e6aa57", - "modified": "2021-01-06T18:28:42.818Z", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.606Z", "id": "relationship--b8933b97-831d-46fe-8fb8-fe0574ad25f6", - "modified": "2021-01-06T18:28:42.819Z", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--151bf7bd-9463-4127-952f-bdedfd6070b8", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.606Z", "id": "relationship--cf9d8545-ef6d-4cad-8c3c-955436db1857", - "modified": "2021-01-06T18:28:42.819Z", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.606Z", "id": "relationship--787bbfe7-c599-464e-9c79-1ec0bdef9621", - "modified": "2021-01-06T18:28:42.819Z", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.606Z", "id": "relationship--b3e70027-0bd0-4f7a-9852-870e29653a9c", - "modified": "2021-01-06T18:28:42.819Z", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.606Z", "id": "relationship--7cc2fc9b-0ea8-48c6-a23e-49db57d27f91", - "modified": "2021-01-06T18:28:42.820Z", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.607Z", "id": "relationship--00841fd1-6bfd-41b2-b9df-c70384e1647b", - "modified": "2021-01-06T18:28:42.820Z", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.607Z", "id": "relationship--70a0b812-22d3-4699-b70a-f19dad2b9185", - "modified": "2021-01-06T18:28:42.820Z", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.607Z", "id": "relationship--528545c2-7036-408d-b4fc-723477e960ab", - "modified": "2021-01-06T18:28:42.821Z", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--eb593a72-5fbc-4a9a-8197-8c0758be2aab", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.608Z", "id": "relationship--53a00835-83d8-43ef-b0f1-4a82fee41c8f", - "modified": "2021-01-06T18:28:42.821Z", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.608Z", "id": "relationship--c2e3195f-31a3-4763-86b9-2689e9571974", - "modified": "2021-01-06T18:28:42.821Z", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--869a2bf4-9993-48eb-8224-a324158aa2f2", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.608Z", "id": "relationship--3c3c6514-cd47-4c6b-9700-5a54c9cead25", - "modified": "2021-01-06T18:28:42.822Z", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.608Z", "id": "relationship--2754d367-7ae1-4404-9cf6-2e19c57484b6", - "modified": "2021-01-06T18:28:42.822Z", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.609Z", "id": "relationship--d2304f5e-0058-46d7-a21e-e6c421c90658", - "modified": "2021-01-06T18:28:42.823Z", + "modified": "2021-01-13T01:50:52.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.609Z", "id": "relationship--f99ee096-a155-4ec3-ab04-21203493fe81", - "modified": "2021-01-06T18:28:42.823Z", + "modified": "2021-01-13T01:50:52.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.610Z", "id": "relationship--bf8e2b69-1059-4ce1-80d3-015ca720febb", - "modified": "2021-01-06T18:28:42.823Z", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.610Z", "id": "relationship--316a9a4e-4872-4709-85c7-c2354c462782", - "modified": "2021-01-06T18:28:42.823Z", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.824Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.610Z", "id": "relationship--eeae1f2a-d8ef-47e2-b44b-8ad4119f838a", - "modified": "2021-01-06T18:28:42.824Z", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.824Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.611Z", "id": "relationship--3f13ca2a-df5b-4249-89ce-990ef3bf006b", - "modified": "2021-01-06T18:28:42.824Z", + "modified": "2021-01-13T01:50:52.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.825Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.612Z", "id": "relationship--d22b1f66-20b1-495b-8452-4b371116722a", - "modified": "2021-01-06T18:28:42.825Z", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.612Z", "id": "relationship--7adebd26-8543-4c4b-9a15-12839e0b05cb", - "modified": "2021-01-06T18:28:42.826Z", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--88fed362-4477-41a6-bf98-1defd2b19836", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.612Z", "id": "relationship--f1a91b46-88b6-4617-a7c8-ec83ea0a999b", - "modified": "2021-01-06T18:28:42.826Z", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--772b7c79-a3cd-4200-9b01-652ecd8b6839", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--aa87a77e-fd82-4b99-a0bc-d539ac38e8c2", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--4daf5677-d021-4f1a-8886-18969be564c4", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.612Z", "id": "relationship--71f3ce26-3626-4d1e-8311-0676b0090a86", - "modified": "2021-01-06T18:28:42.827Z", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.612Z", "id": "relationship--bd8e6dca-1c5a-4343-8661-754e6bdc37ec", - "modified": "2021-01-06T18:28:42.827Z", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.613Z", "id": "relationship--ac80640a-a963-4d4e-9b44-1ef2f41c8b66", - "modified": "2021-01-06T18:28:42.827Z", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.613Z", "id": "relationship--9060843b-6185-4288-9d25-ff72a2a1cd61", - "modified": "2021-01-06T18:28:42.827Z", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.613Z", "id": "relationship--f1c8ae18-449a-4ea5-a6ab-2935dcf2d0fb", - "modified": "2021-01-06T18:28:42.828Z", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.613Z", "id": "relationship--0629b5b3-763d-4ad1-bda7-b32a0fed2682", - "modified": "2021-01-06T18:28:42.828Z", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", + "created": "2021-01-13T01:50:52.613Z", "id": "relationship--f52f5768-ffe7-4a67-954a-8067cc89df55", - "modified": "2021-01-06T18:28:42.828Z", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--9bb99b75-4caa-49c5-9548-a4dc096f1b0a", - "modified": "2021-01-06T18:28:42.829Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--d8a68077-0c96-4e00-bc96-904254f428bc", - "modified": "2021-01-06T18:28:42.829Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--c244f069-8cca-473f-aae6-bc7414650278", - "modified": "2021-01-06T18:28:42.829Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--3ed6688d-5192-41e2-ad25-87a8efd63c24", - "modified": "2021-01-06T18:28:42.829Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--9dfbef8d-b13e-4ab2-a89a-741edc03d18c", - "modified": "2021-01-06T18:28:42.829Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.830Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--3e3f4ac1-f9f5-4edd-92b8-5052d758a27d", - "modified": "2021-01-06T18:28:42.830Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.830Z", - "description": "Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.614Z", "id": "relationship--4d701fb7-38b3-4f23-bdea-81f91ed606bd", - "modified": "2021-01-06T18:28:42.830Z", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.831Z", - "description": "System Monitoring", - "id": "relationship--ec0d4013-dcf3-48dd-ac7b-1e210b0a3ec1", - "modified": "2021-01-06T18:28:42.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.832Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d5ca9e3c-1ebc-467a-8950-d19be107a05d", - "modified": "2021-01-06T18:28:42.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.833Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--47a73154-8c83-4fc2-a6c6-c5860ece1bd4", - "modified": "2021-01-06T18:28:42.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.834Z", - "description": "System Monitoring", - "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", - "modified": "2021-01-06T18:28:42.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.836Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.618Z", "id": "relationship--5be53824-e09f-467c-bbd7-09fa23446df2", - "modified": "2021-01-06T18:28:42.836Z", + "modified": "2021-01-13T01:50:52.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.836Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", - "modified": "2021-01-06T18:28:42.836Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.838Z", + "created": "2021-01-13T01:50:52.619Z", "id": "relationship--cd432f7d-e6dc-4dcb-97a7-19d7455f2d98", - "modified": "2021-01-06T18:28:42.838Z", + "modified": "2021-01-13T01:50:52.619Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.838Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--c05681a7-128a-4e5d-bacf-012e2e8b5808", - "modified": "2021-01-06T18:28:42.838Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.838Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--06440a18-dc9e-410a-8675-76019da8fd76", - "modified": "2021-01-06T18:28:42.838Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.838Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--f2fa7d49-f4f2-4a9a-833a-7b9cd3a598f6", - "modified": "2021-01-06T18:28:42.838Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.839Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--48f7ee21-7025-4794-ad92-d7798174343d", - "modified": "2021-01-06T18:28:42.839Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.839Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--d361fccf-12f4-487f-8a9a-4655e330cf3d", - "modified": "2021-01-06T18:28:42.839Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.839Z", + "created": "2021-01-13T01:50:52.620Z", "id": "relationship--8700d5c0-aebe-45b8-b8d2-271482e1e317", - "modified": "2021-01-06T18:28:42.839Z", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.839Z", - "id": "relationship--45a2ee3f-4cfa-4dbf-a725-870c95d8015a", - "modified": "2021-01-06T18:28:42.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", - "id": "relationship--2edb4f3b-258f-42cb-ab06-f57ec0204557", - "modified": "2021-01-06T18:28:42.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--c2d107bb-2955-4c84-8d96-0717d43ac4c7", - "modified": "2021-01-06T18:28:42.840Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.840Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--28cae601-4f93-4631-93bd-5e75404522fb", - "modified": "2021-01-06T18:28:42.840Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.840Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--7622590e-e812-4a8f-b8f5-873f25a7b799", - "modified": "2021-01-06T18:28:42.840Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--2032f0df-5342-44fb-ae62-28639749f8ad", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--dad19b38-acb0-4d3c-b021-a938121b7640", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--7833a633-e6bc-447a-a77e-e9b0efa86a47", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--7284f2fe-d2f6-4b1a-a6c9-cc20f0be770e", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--f55f4200-2b71-4997-940a-25e7558569bd", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.841Z", + "created": "2021-01-13T01:50:52.621Z", "id": "relationship--bde6c907-2a86-4672-bc91-f3c1f075f8ec", - "modified": "2021-01-06T18:28:42.841Z", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.842Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--68dd5bec-c6d8-4a9e-a1a6-2eb5b3074be1", - "modified": "2021-01-06T18:28:42.842Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.842Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--8ce60e46-2a0d-410c-9323-4c294196f76b", - "modified": "2021-01-06T18:28:42.842Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.842Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--12c160e6-09e2-422e-8c4f-c55dcec097c4", - "modified": "2021-01-06T18:28:42.842Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.842Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--f4a8492f-3276-4295-b290-2bc2cf048689", - "modified": "2021-01-06T18:28:42.842Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.842Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--250e2df0-59ee-458b-bdae-2de4d77135b1", - "modified": "2021-01-06T18:28:42.842Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.843Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--3d9d6f28-13a3-4426-a456-1f05166aaed9", - "modified": "2021-01-06T18:28:42.843Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.843Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--9ed50368-d6bf-4cc3-805e-d02722cd21f0", - "modified": "2021-01-06T18:28:42.843Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.843Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--53f54e25-2741-4a2c-a310-d6f2dcf2ec0a", - "modified": "2021-01-06T18:28:42.843Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.843Z", + "created": "2021-01-13T01:50:52.622Z", "id": "relationship--ed7ae8f3-23b8-43ce-8be3-8eb814f1259b", - "modified": "2021-01-06T18:28:42.843Z", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.843Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--8b971df0-56e3-4151-8ad2-ee2f6095cde9", - "modified": "2021-01-06T18:28:42.843Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--2ddc4e2a-b774-4fa5-a6fd-850c4fabcc08", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--79ad2ea5-4179-453d-b457-18ca60360fd1", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--e17c6f7e-2a5b-44ce-93a9-dd9718f57017", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--c4e31292-60a9-419c-ae02-b701ed7aff02", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--c1fd60e6-ad90-4213-b794-919b82f61f75", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--d98b0f21-9012-4e3f-b0a5-53c089820ad3", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.844Z", + "created": "2021-01-13T01:50:52.623Z", "id": "relationship--534c0f4d-e25e-4799-9a26-3e4b9bb7ed58", - "modified": "2021-01-06T18:28:42.844Z", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.845Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--84f3a4e9-38bd-4c48-879f-d9a618340bc0", - "modified": "2021-01-06T18:28:42.845Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.845Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--ccbaab28-c340-4503-9cf8-fdbfaf715f98", - "modified": "2021-01-06T18:28:42.845Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.845Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--5d3d1afa-fd0a-4f95-8d9e-1ed9cef36a05", - "modified": "2021-01-06T18:28:42.845Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.846Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--1655fca8-06cd-4fe8-9516-3d24e5db3d23", - "modified": "2021-01-06T18:28:42.846Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.846Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--fb0b2d73-3db5-44e5-8518-328bcc40e577", - "modified": "2021-01-06T18:28:42.846Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.846Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--2f153971-16cb-47cb-97f8-7c2eaf6f371b", - "modified": "2021-01-06T18:28:42.846Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.846Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--2a57ac0b-ae20-470a-b6a7-6c2f6d440803", - "modified": "2021-01-06T18:28:42.846Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.846Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--b63f931e-24c6-4bba-b5ae-288ca3d90c1a", - "modified": "2021-01-06T18:28:42.846Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.847Z", + "created": "2021-01-13T01:50:52.624Z", "id": "relationship--2e5c9706-6d90-472d-a70c-a6a3c6cc6eb2", - "modified": "2021-01-06T18:28:42.847Z", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.847Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--4192568a-0f9b-48a2-90ea-f4f5adf736b5", - "modified": "2021-01-06T18:28:42.847Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.847Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--3d4ecb8b-48ab-4409-8563-3983238ca5c8", - "modified": "2021-01-06T18:28:42.847Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.847Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--4d86d33e-487b-4813-aaae-52377281720c", - "modified": "2021-01-06T18:28:42.847Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.847Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--a7186dce-0ec6-4d3c-bb73-eba82993812c", - "modified": "2021-01-06T18:28:42.847Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.848Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--3442f080-2528-4113-87a2-01dc5a4bf08f", - "modified": "2021-01-06T18:28:42.848Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.848Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--a0850ead-1b6d-4960-b288-bf0d7556a083", - "modified": "2021-01-06T18:28:42.848Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.848Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--7b3b069e-50df-43b7-8df9-5febde0c0d26", - "modified": "2021-01-06T18:28:42.848Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.849Z", + "created": "2021-01-13T01:50:52.625Z", "id": "relationship--bf83c84b-f764-4207-84d4-8e0dfa49862d", - "modified": "2021-01-06T18:28:42.849Z", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.849Z", - "id": "relationship--bc46a92b-d254-45c1-9f79-abbf66ab9e6a", - "modified": "2021-01-06T18:28:42.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.849Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--53b53d1e-262c-4cb0-bb37-8fbe6466a6c1", - "modified": "2021-01-06T18:28:42.849Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.849Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--cd2a062f-635d-4a94-b7b0-f94a6d68cd83", - "modified": "2021-01-06T18:28:42.849Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.850Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--74f68704-0617-4346-bdf0-d95961d2a32e", - "modified": "2021-01-06T18:28:42.850Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.850Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--23be73b7-ed90-4d02-b5d3-00a682a66041", - "modified": "2021-01-06T18:28:42.850Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.850Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--9aeb9e88-a62a-42d1-bb64-18f96d3655cb", - "modified": "2021-01-06T18:28:42.850Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.850Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--dbef4540-920c-433a-9c3b-99a62ab53982", - "modified": "2021-01-06T18:28:42.850Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.850Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--da72cc92-4d2e-43fe-a77c-34c90e7e6058", - "modified": "2021-01-06T18:28:42.850Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.851Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--101418dd-911b-41cb-a4c3-7e2a36c5b219", - "modified": "2021-01-06T18:28:42.851Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.851Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--38fb348a-3a64-463a-9a76-d78a2396d1c0", - "modified": "2021-01-06T18:28:42.851Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.852Z", + "created": "2021-01-13T01:50:52.626Z", "id": "relationship--238229f5-ac4a-4223-81a1-3b324313549c", - "modified": "2021-01-06T18:28:42.852Z", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.852Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--8b2cfa25-0cd3-4933-bd3c-094fcd81bace", - "modified": "2021-01-06T18:28:42.852Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.852Z", - "id": "relationship--f6b608c1-c0a3-466f-8fbf-4c0fb0cde231", - "modified": "2021-01-06T18:28:42.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--d5e12b98-df17-4a84-922a-d77067a57d0a", - "modified": "2021-01-06T18:28:42.853Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.853Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--410a6128-ec5b-4fe6-ade6-81f9550e39ee", - "modified": "2021-01-06T18:28:42.853Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.853Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--71d4ee38-472c-4b5c-aa01-09d59d4a1fa6", - "modified": "2021-01-06T18:28:42.853Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.853Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--213f7e5e-2292-4875-8f8c-626939d25cc3", - "modified": "2021-01-06T18:28:42.853Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.853Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--6d997ec6-fc81-453c-a15c-953cefcc4cdb", - "modified": "2021-01-06T18:28:42.853Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.854Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--ae55a13c-a542-47ce-a2b3-6a515bd01260", - "modified": "2021-01-06T18:28:42.854Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.854Z", + "created": "2021-01-13T01:50:52.627Z", "id": "relationship--d664c37c-61f8-4de9-a6b4-5bdc8e9b34d2", - "modified": "2021-01-06T18:28:42.854Z", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.858Z", + "created": "2021-01-13T01:50:52.628Z", "id": "relationship--c27a415e-6ae0-4f52-a69f-194c6cfe05fe", - "modified": "2021-01-06T18:28:42.858Z", + "modified": "2021-01-13T01:50:52.628Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.858Z", + "created": "2021-01-13T01:50:52.629Z", "id": "relationship--d3f1b214-c7c8-46f9-86ad-6b4890ecffb2", - "modified": "2021-01-06T18:28:42.858Z", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.858Z", + "created": "2021-01-13T01:50:52.629Z", "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:42.858Z", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", + "created": "2021-01-13T01:50:52.629Z", "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:42.859Z", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", + "created": "2021-01-13T01:50:52.629Z", "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:42.859Z", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.860Z", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.860Z", + "created": "2021-01-13T01:50:52.629Z", "id": "relationship--6bc4e8ea-6737-414b-8833-b5de67900241", - "modified": "2021-01-06T18:28:42.860Z", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.860Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--de79aadf-2a0d-4b2a-93e0-3a14acf895e5", - "modified": "2021-01-06T18:28:42.860Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.860Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--de5e4e56-5978-4b3a-807b-74d520ea5c72", - "modified": "2021-01-06T18:28:42.860Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--da8bae22-759f-46b9-8dae-d6474fd59d1b", - "modified": "2021-01-06T18:28:42.861Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--9a7cc9f1-28b1-4013-aeca-71c2990e9ad7", - "modified": "2021-01-06T18:28:42.861Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--1bba09f0-3f34-432c-a558-a1cacccf8bfe", - "modified": "2021-01-06T18:28:42.861Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:42.861Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:42.861Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.862Z", + "created": "2021-01-13T01:50:52.630Z", "id": "relationship--44764853-5e29-4aff-835b-0730acdbaebe", - "modified": "2021-01-06T18:28:42.862Z", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.862Z", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:42.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.865Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.631Z", "id": "relationship--49daba4b-b969-4d0a-9430-38637f938876", - "modified": "2021-01-06T18:28:42.865Z", + "modified": "2021-01-13T01:50:52.631Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.865Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.632Z", "id": "relationship--59485c91-3752-4609-91dc-1cb699f076fd", - "modified": "2021-01-06T18:28:42.865Z", + "modified": "2021-01-13T01:50:52.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.867Z", - "description": "Data backup", + "created": "2021-01-13T01:50:52.632Z", "id": "relationship--9fe9b018-6c4d-45d7-9358-e82bbbe53f66", - "modified": "2021-01-06T18:28:42.867Z", + "modified": "2021-01-13T01:50:52.632Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.868Z", - "description": "Data backup", + "created": "2021-01-13T01:50:52.633Z", "id": "relationship--d2fd7024-1c5e-40f4-9f65-2907f8bed62a", - "modified": "2021-01-06T18:28:42.868Z", + "modified": "2021-01-13T01:50:52.633Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.869Z", - "description": "System Monitoring", - "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:42.869Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.634Z", "id": "relationship--27e4fe98-94e5-4044-a84e-4edc6731611a", - "modified": "2021-01-06T18:28:42.870Z", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.634Z", "id": "relationship--23764515-4c4f-45ec-87d9-36a5c66f1e23", - "modified": "2021-01-06T18:28:42.870Z", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.871Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.634Z", "id": "relationship--78b16134-c29a-43d5-91b6-9f62f7e5b247", - "modified": "2021-01-06T18:28:42.871Z", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.871Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.634Z", "id": "relationship--a2aaf351-66ce-402a-9391-242095279fc2", - "modified": "2021-01-06T18:28:42.871Z", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.873Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.635Z", "id": "relationship--1760b215-cac8-4de0-9d7d-836bb74ed47e", - "modified": "2021-01-06T18:28:42.873Z", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.873Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.635Z", "id": "relationship--f5a8abdd-dc8e-40bc-b8ee-edcb83d66b67", - "modified": "2021-01-06T18:28:42.873Z", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.635Z", "id": "relationship--6df18447-a945-4e6b-982a-f180478daf2f", - "modified": "2021-01-06T18:28:42.874Z", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.635Z", "id": "relationship--71cef190-66b3-4420-a43d-bee4a406c8aa", - "modified": "2021-01-06T18:28:42.874Z", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.636Z", "id": "relationship--15bfc79f-dee5-4171-b96e-43147649c980", - "modified": "2021-01-06T18:28:42.874Z", + "modified": "2021-01-13T01:50:52.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.876Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.636Z", "id": "relationship--7f8efe88-cf39-42b6-b404-1236e8ed5a7a", - "modified": "2021-01-06T18:28:42.876Z", + "modified": "2021-01-13T01:50:52.636Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.876Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.637Z", "id": "relationship--f2a945a3-03ae-470d-89e4-193d7b981eba", - "modified": "2021-01-06T18:28:42.876Z", + "modified": "2021-01-13T01:50:52.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.877Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.637Z", "id": "relationship--46275a9c-c869-4ca3-8562-f7af08933d3e", - "modified": "2021-01-06T18:28:42.877Z", + "modified": "2021-01-13T01:50:52.637Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.878Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.638Z", "id": "relationship--3415270a-3f08-4ff5-842b-0be539b3882f", - "modified": "2021-01-06T18:28:42.878Z", + "modified": "2021-01-13T01:50:52.638Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.879Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.639Z", "id": "relationship--44fd4891-406c-43be-b3f3-15878840e784", - "modified": "2021-01-06T18:28:42.879Z", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.879Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.639Z", "id": "relationship--90f95861-6f0c-421f-9706-4c1bb3c5b5c3", - "modified": "2021-01-06T18:28:42.879Z", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.880Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.639Z", "id": "relationship--ad4fe594-c9fd-473a-af0c-24d5a1342c94", - "modified": "2021-01-06T18:28:42.880Z", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.640Z", "id": "relationship--15cd82e4-965e-4c57-920b-ec5557a64481", - "modified": "2021-01-06T18:28:42.881Z", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.640Z", "id": "relationship--2c232256-0944-406f-bcac-880d760f4b47", - "modified": "2021-01-06T18:28:42.881Z", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.640Z", "id": "relationship--2f455c9d-8e9c-4946-ac15-7e15875519ca", - "modified": "2021-01-06T18:28:42.881Z", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.640Z", "id": "relationship--41a6f46f-7fae-408b-b8ed-b4089d54cf98", - "modified": "2021-01-06T18:28:42.881Z", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.883Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.641Z", "id": "relationship--de8ce4d1-844a-4d4c-b183-90e19dd2661d", - "modified": "2021-01-06T18:28:42.883Z", + "modified": "2021-01-13T01:50:52.641Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.885Z", - "description": "System Monitoring", - "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", - "modified": "2021-01-06T18:28:42.885Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.885Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.642Z", "id": "relationship--19b69442-154f-4927-955b-79d75d0d11d9", - "modified": "2021-01-06T18:28:42.885Z", + "modified": "2021-01-13T01:50:52.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.886Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.642Z", "id": "relationship--4878f74b-0827-4989-a3d1-10e702a1e3f8", - "modified": "2021-01-06T18:28:42.886Z", + "modified": "2021-01-13T01:50:52.642Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.887Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.643Z", "id": "relationship--d2bbc8e5-47ed-492a-9124-d0af1ed74c76", - "modified": "2021-01-06T18:28:42.887Z", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.887Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.643Z", "id": "relationship--00f0e326-b3d2-4c94-a9db-d051887ffb05", - "modified": "2021-01-06T18:28:42.887Z", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.888Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.643Z", "id": "relationship--a9ca60f6-1f54-42e4-adfa-e60d35d1acaa", - "modified": "2021-01-06T18:28:42.888Z", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--3fc81acb-da49-406b-9dbf-a548a1df95ec", - "modified": "2021-01-06T18:28:42.889Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--18cfb441-f1b1-4aee-9cbd-b44d0e6b630f", - "modified": "2021-01-06T18:28:42.889Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--47f33d2c-8427-4ccb-a809-2399fc5140ed", - "modified": "2021-01-06T18:28:42.889Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--7b3ec0ac-d580-4887-bb07-8a85da06520d", - "modified": "2021-01-06T18:28:42.889Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--793f528f-718a-4f89-80d9-cc7cb4085041", - "modified": "2021-01-06T18:28:42.890Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--5533cbbf-bf56-4e58-aa0b-d5801a1b14d9", - "modified": "2021-01-06T18:28:42.890Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--e13503f2-fb2f-455e-ac42-db051ad1c2ff", - "modified": "2021-01-06T18:28:42.890Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--49eea86b-a8a0-4343-920c-f12b1da4fe58", - "modified": "2021-01-06T18:28:42.890Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.644Z", "id": "relationship--6ea35f61-2aa3-4fb5-8520-5390d5269e85", - "modified": "2021-01-06T18:28:42.890Z", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.645Z", "id": "relationship--eaf1c8ae-7dc3-4d7c-be38-ccaf63d6c5dc", - "modified": "2021-01-06T18:28:42.892Z", + "modified": "2021-01-13T01:50:52.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.645Z", "id": "relationship--a5dd0c59-b589-4048-b8dc-14de1044c91e", - "modified": "2021-01-06T18:28:42.892Z", + "modified": "2021-01-13T01:50:52.645Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.646Z", "id": "relationship--4703ed7a-0b31-4c1e-85a4-84a45f7b84f2", - "modified": "2021-01-06T18:28:42.892Z", + "modified": "2021-01-13T01:50:52.646Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--555cd1be-720f-4e10-8ad5-959f2547cf5a", - "modified": "2021-01-06T18:28:42.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--41bdd389-f3bd-43b0-9a42-9ca6981965d1", - "modified": "2021-01-06T18:28:42.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--ef4fede2-c770-4ce1-8562-a26688a67184", - "modified": "2021-01-06T18:28:42.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--2f4a4e5c-a5f3-41b5-8fc5-cb7e89b0d4b4", - "modified": "2021-01-06T18:28:42.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--a5b35027-5a21-41c3-93d1-a1eaaf0cb3c9", - "modified": "2021-01-06T18:28:42.894Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", - "id": "relationship--be8716b6-5da2-4e2e-8a03-afe0ede5ed7a", - "modified": "2021-01-06T18:28:42.895Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.647Z", "id": "relationship--5d6f8449-07c6-4d1b-a260-22b2cadb4115", - "modified": "2021-01-06T18:28:42.895Z", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.647Z", "id": "relationship--2b9f201d-5eb4-4836-ae29-f81e97cc69d0", - "modified": "2021-01-06T18:28:42.895Z", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.896Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.647Z", "id": "relationship--a2e2834e-62af-424e-9745-e95a8b63b363", - "modified": "2021-01-06T18:28:42.896Z", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.648Z", "id": "relationship--5de1283f-ee5a-4f78-a5a6-21b6a2df516a", - "modified": "2021-01-06T18:28:42.897Z", + "modified": "2021-01-13T01:50:52.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.648Z", "id": "relationship--5fd57278-97e4-45d0-af3f-280895379042", - "modified": "2021-01-06T18:28:42.897Z", + "modified": "2021-01-13T01:50:52.648Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--f3d4fde9-a311-42f2-9d69-3bf408096c17", - "modified": "2021-01-06T18:28:42.897Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--ba887655-6d3d-4bbf-84d0-c829cf389fe6", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--dbf827cd-0d99-449b-ab9e-ce93013984f3", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--9c74393b-bfd4-4e90-8988-c630fe425f60", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--1da0c3a8-6ddc-4f52-95e5-82c7033e7b16", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--30386774-690c-452f-a6ab-52998f581e62", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--1b71b7ca-d0fb-41c2-b579-26cb7d97916d", - "modified": "2021-01-06T18:28:42.898Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--4ae356f0-a956-4b4f-939a-420c3ccfafca", - "modified": "2021-01-06T18:28:42.899Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--a02e7bde-314b-4326-b6ac-de1fdd0d6230", - "modified": "2021-01-06T18:28:42.899Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.649Z", "id": "relationship--e0233f9d-f60b-44fb-8a7b-57d9dbce8507", - "modified": "2021-01-06T18:28:42.899Z", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--f80bdc5b-42ac-47df-855d-5d5bb5740fab", - "modified": "2021-01-06T18:28:42.899Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--e3cb6c03-1756-46f6-baa8-72681caacd4a", - "modified": "2021-01-06T18:28:42.899Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--f84b0946-9b74-4b02-b19a-031e38320a6a", - "modified": "2021-01-06T18:28:42.900Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--a17c605b-80e1-473b-a2b6-bf487185eb6d", - "modified": "2021-01-06T18:28:42.900Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", - "modified": "2021-01-06T18:28:42.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--49c450b2-1f62-4539-b3bb-9547bce9fe96", - "modified": "2021-01-06T18:28:42.900Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.650Z", "id": "relationship--1be34a86-303a-4f9f-805c-82fb04720263", - "modified": "2021-01-06T18:28:42.900Z", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.901Z", - "description": "Access Control", - "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", - "modified": "2021-01-06T18:28:42.901Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:42.902Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.651Z", "id": "relationship--94ba0e80-7323-4e3a-99ec-ac52d53ade22", - "modified": "2021-01-06T18:28:42.902Z", + "modified": "2021-01-13T01:50:52.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.651Z", "id": "relationship--585e3116-a99d-4fe2-9d83-f99d4f79afb3", - "modified": "2021-01-06T18:28:42.902Z", + "modified": "2021-01-13T01:50:52.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", - "modified": "2021-01-06T18:28:42.902Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--e5884876-75f0-4c22-b5bd-f2a5799b83a1", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--83b2c39f-2b08-41b3-8537-17a1d45cda50", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--95e75805-6ec8-4f30-8da2-e45941990555", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--a0c378d6-e788-486d-b099-05250339c424", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--29e8e420-9d33-4aaf-a9d3-9c1144e2e16e", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--4abfbbc5-1a42-41ef-b942-62c400ef5b06", - "modified": "2021-01-06T18:28:42.903Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.904Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--52c0ac51-f5e1-4d9c-b1e0-ab3ac14ba7e2", - "modified": "2021-01-06T18:28:42.904Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.904Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.652Z", "id": "relationship--991a974f-ed4b-40d4-b129-f71683a8c37d", - "modified": "2021-01-06T18:28:42.904Z", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.653Z", "id": "relationship--f18cc6c2-587b-48f3-914d-86da6a9d55f7", - "modified": "2021-01-06T18:28:42.905Z", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.653Z", "id": "relationship--4632463b-12ab-4487-9ee3-de1b5f638c29", - "modified": "2021-01-06T18:28:42.905Z", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.653Z", "id": "relationship--6495291d-1999-499a-9224-d3c24a5ef298", - "modified": "2021-01-06T18:28:42.905Z", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.906Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.654Z", "id": "relationship--cc920365-441d-416d-b5fc-c6f17e7e20c9", - "modified": "2021-01-06T18:28:42.906Z", + "modified": "2021-01-13T01:50:52.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.906Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.654Z", "id": "relationship--e5af417b-edad-4c99-871c-4b852b1bc7df", - "modified": "2021-01-06T18:28:42.906Z", + "modified": "2021-01-13T01:50:52.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.907Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.655Z", "id": "relationship--3b819d3a-a1a7-4972-a0c1-f37049ca22b8", - "modified": "2021-01-06T18:28:42.907Z", + "modified": "2021-01-13T01:50:52.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.655Z", "id": "relationship--c80ee180-d631-4c02-a516-374b105b536e", - "modified": "2021-01-06T18:28:42.908Z", + "modified": "2021-01-13T01:50:52.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.656Z", "id": "relationship--41b7cf73-a67b-4013-ae12-518d512d58ae", - "modified": "2021-01-06T18:28:42.908Z", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.656Z", "id": "relationship--f1038e9c-cc56-484b-9d0f-df538407972b", - "modified": "2021-01-06T18:28:42.908Z", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.909Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.656Z", "id": "relationship--8f09a774-e8c3-4715-a50a-1f0b112391f2", - "modified": "2021-01-06T18:28:42.909Z", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.910Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.656Z", "id": "relationship--7c632fdd-de72-471f-afc7-f4e28e424232", - "modified": "2021-01-06T18:28:42.910Z", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.910Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.657Z", "id": "relationship--de303e3a-d73f-4632-a075-b8c8b1ae0745", - "modified": "2021-01-06T18:28:42.910Z", + "modified": "2021-01-13T01:50:52.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", - "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:42.911Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.658Z", "id": "relationship--e5c809e7-a93d-4cad-a67e-7bbfe7bd8ee6", - "modified": "2021-01-06T18:28:42.911Z", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.658Z", "id": "relationship--8f6367c7-3ed2-403b-9f87-f4dc0de84209", - "modified": "2021-01-06T18:28:42.911Z", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.658Z", "id": "relationship--e45272dc-6689-4182-9957-035d1942911f", - "modified": "2021-01-06T18:28:42.911Z", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.912Z", - "description": "Access Control", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.912Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.913Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.659Z", "id": "relationship--4a128334-2d9b-43b8-b40c-70c2c1bd79c9", - "modified": "2021-01-06T18:28:42.913Z", + "modified": "2021-01-13T01:50:52.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.914Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.660Z", "id": "relationship--eaa2615a-eb39-4039-af37-69a05ea0fa95", - "modified": "2021-01-06T18:28:42.914Z", + "modified": "2021-01-13T01:50:52.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.660Z", "id": "relationship--9e8c4ad3-12f8-403f-bb55-509d74921b54", - "modified": "2021-01-06T18:28:42.914Z", + "modified": "2021-01-13T01:50:52.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.916Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:42.916Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.917Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.917Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.661Z", "id": "relationship--4bcf4783-c7b6-4f55-b78d-0c08f8c2aa5c", - "modified": "2021-01-06T18:28:42.917Z", + "modified": "2021-01-13T01:50:52.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.921Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.662Z", "id": "relationship--06ae75b3-94d5-4137-a2c5-31201a1da2f1", - "modified": "2021-01-06T18:28:42.921Z", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.921Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.662Z", "id": "relationship--f0997432-8fcc-41d3-9784-9eda445f6414", - "modified": "2021-01-06T18:28:42.921Z", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.922Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.662Z", "id": "relationship--8e936da1-01c9-4345-b46e-339464183eb2", - "modified": "2021-01-06T18:28:42.922Z", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.922Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.663Z", "id": "relationship--2163468d-d78a-4dab-9a5d-4529b62cc62b", - "modified": "2021-01-06T18:28:42.922Z", + "modified": "2021-01-13T01:50:52.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.924Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.663Z", "id": "relationship--84eea744-3934-45e9-bdd7-c0967728e68c", - "modified": "2021-01-06T18:28:42.924Z", + "modified": "2021-01-13T01:50:52.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.925Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.664Z", "id": "relationship--0dc1983a-717d-46c0-838b-f1776ecd4b3e", - "modified": "2021-01-06T18:28:42.925Z", + "modified": "2021-01-13T01:50:52.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.925Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.664Z", "id": "relationship--80cd997d-9580-40b2-a8dc-3b5b0906bc28", - "modified": "2021-01-06T18:28:42.925Z", + "modified": "2021-01-13T01:50:52.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.928Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--c951c349-d833-457c-ad18-8dade6d88c0c", - "modified": "2021-01-06T18:28:42.928Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.929Z", - "description": "Access Control", - "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:42.929Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.929Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--3b74a599-ceef-40bc-92d9-944e7b354e91", - "modified": "2021-01-06T18:28:42.929Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.930Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--e9350dff-40d7-4013-93a8-9fe8989ff98d", - "modified": "2021-01-06T18:28:42.930Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.930Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--62194298-570b-4a62-b5dc-a102409c5842", - "modified": "2021-01-06T18:28:42.930Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.931Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--654db8e5-6409-48e2-8aad-de34c8da2eae", - "modified": "2021-01-06T18:28:42.931Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.931Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--527df502-cc22-44fe-a06b-c452133fed26", - "modified": "2021-01-06T18:28:42.931Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.932Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--13ba8bd8-2037-433c-b5e4-703f81bc3ced", - "modified": "2021-01-06T18:28:42.932Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.932Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.665Z", "id": "relationship--fe32c2d4-b812-4673-80c1-32e645e5c6b3", - "modified": "2021-01-06T18:28:42.932Z", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.933Z", - "description": "Access Control", - "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:42.933Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.936Z", - "description": "Off-system Storage", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.936Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.937Z", - "description": "Off-system Storage", - "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", - "modified": "2021-01-06T18:28:42.937Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.939Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.939Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.667Z", "id": "relationship--5d939c96-5faf-4d7a-8b1e-452edddb2fae", - "modified": "2021-01-06T18:28:42.939Z", + "modified": "2021-01-13T01:50:52.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.668Z", "id": "relationship--5a15cef7-d919-490c-a19a-4ed170bcdec2", - "modified": "2021-01-06T18:28:42.940Z", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.668Z", "id": "relationship--ef402c35-de30-4994-870c-915787df3d64", - "modified": "2021-01-06T18:28:42.940Z", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.668Z", "id": "relationship--cf52ac42-783c-4913-8cda-6ee1d6a9ab4e", - "modified": "2021-01-06T18:28:42.940Z", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--a3c04a8f-4125-4558-a9c6-5b8e6c4041bf", - "modified": "2021-01-06T18:28:42.941Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--adece807-d46b-45bb-87b6-ae9bbf3c035c", - "modified": "2021-01-06T18:28:42.941Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--8eb03e13-87b0-4723-a846-ef77791c6d3f", - "modified": "2021-01-06T18:28:42.941Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--53b4f057-0de9-430c-9a93-858d8d7f56fd", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--7b5fbada-10b1-43af-8566-8f78a7fc2e6f", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--e19527e7-6e2b-4357-85d1-b39a481e6dd7", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--06fa0ead-4040-4053-bb68-ab5ea4247e89", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.669Z", "id": "relationship--72545826-23d3-4d76-be6e-864341c2fd17", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.670Z", "id": "relationship--09298e36-a174-4482-955e-d555127bdca3", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.670Z", "id": "relationship--639c9857-2bba-4906-8c84-ea3faef2df25", - "modified": "2021-01-06T18:28:42.942Z", + "modified": "2021-01-13T01:50:52.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.943Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:42.943Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.943Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:42.943Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.944Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.944Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.671Z", "id": "relationship--5575338f-7f6f-40f6-932e-dbc25ab8a5eb", - "modified": "2021-01-06T18:28:42.944Z", + "modified": "2021-01-13T01:50:52.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.671Z", "id": "relationship--4fecd284-768d-4c3b-912c-16941048cb68", - "modified": "2021-01-06T18:28:42.944Z", + "modified": "2021-01-13T01:50:52.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.945Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.672Z", "id": "relationship--649d8e33-9fa4-433b-83de-838faa09b49a", - "modified": "2021-01-06T18:28:42.945Z", + "modified": "2021-01-13T01:50:52.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.945Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.672Z", "id": "relationship--3df8be7e-8fce-4ac7-aa2e-398266705617", - "modified": "2021-01-06T18:28:42.945Z", + "modified": "2021-01-13T01:50:52.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.946Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.946Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.673Z", "id": "relationship--a2bd18b6-3f8a-4693-9ae4-f0b7abc0cc38", - "modified": "2021-01-06T18:28:42.946Z", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.673Z", "id": "relationship--116bf075-e331-4d30-849c-5915a11edcf9", - "modified": "2021-01-06T18:28:42.946Z", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.673Z", "id": "relationship--7bd7ecc6-3440-448c-817a-d94ed55907d0", - "modified": "2021-01-06T18:28:42.946Z", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.673Z", "id": "relationship--62b3a11f-e9c7-435c-8aac-5e3e3b779881", - "modified": "2021-01-06T18:28:42.947Z", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.674Z", "id": "relationship--8079c015-9cde-490e-8e8e-85903ed94557", - "modified": "2021-01-06T18:28:42.947Z", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.674Z", "id": "relationship--01821457-8373-4076-8ed4-cd572fd44503", - "modified": "2021-01-06T18:28:42.947Z", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.674Z", "id": "relationship--faa7d51d-7e42-4b13-ad3d-0419e0f5c8f0", - "modified": "2021-01-06T18:28:42.948Z", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--450210d4-c9fc-4a99-bffa-282eda6cde34", - "modified": "2021-01-06T18:28:42.948Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--23f030f4-8219-4ccc-8af0-3b3e953047ec", - "modified": "2021-01-06T18:28:42.948Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--4e9b7e28-be92-4dd1-9e95-016f85d2d305", - "modified": "2021-01-06T18:28:42.948Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--13ce0b6d-d6bd-4fdf-807d-071104267d71", - "modified": "2021-01-06T18:28:42.948Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.949Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--4ec84fbf-5c1f-4971-a75e-50f36ec83283", - "modified": "2021-01-06T18:28:42.949Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.949Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--17e9e6dd-270c-4bba-bdbb-91d9a1d2fc42", - "modified": "2021-01-06T18:28:42.949Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--3cf9dc7a-5845-4f4e-b8f8-ee0e184eec86", - "modified": "2021-01-06T18:28:42.950Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.675Z", "id": "relationship--ce8666cd-19c1-4d4c-a443-e1c166c4d9df", - "modified": "2021-01-06T18:28:42.950Z", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.676Z", "id": "relationship--00dc0803-3f7e-4124-ac7d-cf08310eac13", - "modified": "2021-01-06T18:28:42.950Z", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.676Z", "id": "relationship--13bc25df-c4d1-4a87-927f-4d4408a324c4", - "modified": "2021-01-06T18:28:42.950Z", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.676Z", "id": "relationship--8b56555a-60ba-43a9-afa3-012fcb9409a1", - "modified": "2021-01-06T18:28:42.951Z", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.676Z", "id": "relationship--550c02f8-b715-4699-86a9-4e738a3b4a94", - "modified": "2021-01-06T18:28:42.951Z", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.676Z", "id": "relationship--3512d578-3aa5-48c3-ae1c-d26982780e1d", - "modified": "2021-01-06T18:28:42.951Z", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.677Z", "id": "relationship--d989ead6-6aed-430a-9623-2911b708cd3d", - "modified": "2021-01-06T18:28:42.952Z", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.677Z", "id": "relationship--71440795-8e64-49e6-94d6-5a58c2464db3", - "modified": "2021-01-06T18:28:42.952Z", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.677Z", "id": "relationship--e3ef143b-8cb0-4bd5-83a8-4ab9d2bb543c", - "modified": "2021-01-06T18:28:42.952Z", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.677Z", "id": "relationship--4098a823-fa6d-425c-a9b9-dcd4460fafce", - "modified": "2021-01-06T18:28:42.952Z", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:42.953Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", - "modified": "2021-01-06T18:28:42.953Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", - "modified": "2021-01-06T18:28:42.953Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", - "modified": "2021-01-06T18:28:42.954Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.678Z", "id": "relationship--2e37376d-32da-4d0e-91c3-ee73d7f63076", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.678Z", "id": "relationship--830684e5-2e7c-4835-8035-0924991206bf", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--d275cb34-0529-47ee-ac96-1fe8e6b43997", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--00761b43-30f9-4846-bbdc-a278bb5f9c52", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--be91fdb5-981d-403f-ac2b-1caaedbfa64e", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--c6638411-1e4d-4d0b-a194-ece999863033", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--0001af98-7db9-4323-8760-e9a6838d417a", - "modified": "2021-01-06T18:28:42.954Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.955Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.679Z", "id": "relationship--f3ee88ef-f1be-48b6-b58d-a2c67d3e2a6f", - "modified": "2021-01-06T18:28:42.955Z", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.680Z", "id": "relationship--69200e06-3e34-4f8a-ae1e-eb94b54bac6b", - "modified": "2021-01-06T18:28:42.956Z", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.680Z", "id": "relationship--0c57a323-997f-4c81-9e04-5b923eba8376", - "modified": "2021-01-06T18:28:42.956Z", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.680Z", "id": "relationship--e1f0e95b-48fd-4d72-bff4-ac2abf50b345", - "modified": "2021-01-06T18:28:42.956Z", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.680Z", "id": "relationship--c93b5604-5bb8-4c15-886a-06fabf3229aa", - "modified": "2021-01-06T18:28:42.956Z", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.680Z", "id": "relationship--9080f7f7-f56d-4af8-be38-061d6361b4cc", - "modified": "2021-01-06T18:28:42.956Z", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--c7b8def6-3194-4d0c-adb9-910076490e6d", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--506c6a8c-e75e-4336-83a5-f6664a9c79cd", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--0d02a8c9-3c0f-494a-8c62-cffbcca63b0b", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--4edd7758-b582-4fba-9bac-13c5918c0422", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--e068b4e2-5f70-424b-81ea-cf1aca0be992", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--9f769fb1-5ff6-47a1-bd7a-4e71cd99f931", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--733efa5c-c073-4224-94fb-804b246fbd02", - "modified": "2021-01-06T18:28:42.957Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--9ad7bf1d-e49c-4109-ba81-c4fd3a825a45", - "modified": "2021-01-06T18:28:42.958Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--cf2ed786-2f36-4d1f-b388-2666300cf87b", - "modified": "2021-01-06T18:28:42.958Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.681Z", "id": "relationship--0385407a-52d8-4299-9037-838abc1ce468", - "modified": "2021-01-06T18:28:42.958Z", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", - "id": "relationship--62e28a47-fc89-44cd-8ebd-3c81f7b2a960", - "modified": "2021-01-06T18:28:42.959Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", - "id": "relationship--c7ce48ce-4d92-4c13-a4f5-a34813951791", - "modified": "2021-01-06T18:28:42.959Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.682Z", "id": "relationship--891fcf60-8ae4-4ab9-a6ee-6d03ec1757ea", - "modified": "2021-01-06T18:28:42.959Z", + "modified": "2021-01-13T01:50:52.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--bc2cf628-c28d-481e-bd85-3caeda18899e", - "modified": "2021-01-06T18:28:42.960Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--7fe210ad-d807-49f4-a3ba-512cb30396b7", - "modified": "2021-01-06T18:28:42.960Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.683Z", "id": "relationship--9a65374f-8ca1-4b89-b439-4b77e1e25130", - "modified": "2021-01-06T18:28:42.960Z", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.683Z", "id": "relationship--e5ee6723-498f-4574-aaaf-562e453b8731", - "modified": "2021-01-06T18:28:42.960Z", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.683Z", "id": "relationship--0f207181-76e7-4a2d-86fe-d7137ce83be7", - "modified": "2021-01-06T18:28:42.961Z", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.684Z", "id": "relationship--2bb51427-f480-4a51-8e9b-f66f271318cb", - "modified": "2021-01-06T18:28:42.961Z", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.684Z", "id": "relationship--80ecddab-20d2-4f10-b9c7-0226247a3d7a", - "modified": "2021-01-06T18:28:42.961Z", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.684Z", "id": "relationship--3e283471-ede7-47e8-aa47-e20e6f22f2e6", - "modified": "2021-01-06T18:28:42.961Z", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.684Z", "id": "relationship--28e297ba-af86-4c99-9b6a-49ef43b5dc29", - "modified": "2021-01-06T18:28:42.961Z", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.962Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", - "modified": "2021-01-06T18:28:42.962Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", - "modified": "2021-01-06T18:28:42.963Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.685Z", "id": "relationship--8946df31-5b5e-4e50-ba7e-a41e211c1a1b", - "modified": "2021-01-06T18:28:42.963Z", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.963Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", - "modified": "2021-01-06T18:28:42.963Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.685Z", "id": "relationship--a2d4fb0b-9c7e-4d89-976a-c975290e7538", - "modified": "2021-01-06T18:28:42.964Z", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.685Z", "id": "relationship--6dbb0ca8-c44f-493e-ac04-b36e599388d7", - "modified": "2021-01-06T18:28:42.964Z", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.685Z", "id": "relationship--0a485737-8c34-4059-a4b8-408a7cf8a4e4", - "modified": "2021-01-06T18:28:42.964Z", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.685Z", "id": "relationship--ba34acdd-4b63-4af8-aa4b-b5f5e307bf3a", - "modified": "2021-01-06T18:28:42.964Z", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--23277cb5-4b15-4a17-9fab-0937b0bfbff5", - "modified": "2021-01-06T18:28:42.965Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--023c15e4-0c8f-4d35-9e93-4fd41e9d19da", - "modified": "2021-01-06T18:28:42.965Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--7619d492-4804-46fc-8748-52c1d182584a", - "modified": "2021-01-06T18:28:42.965Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.686Z", "id": "relationship--9c5911c4-b8cf-4829-96a2-86e5efc0a9c5", - "modified": "2021-01-06T18:28:42.966Z", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.686Z", "id": "relationship--0605497b-9d63-4bd9-a4ce-5ea53bdfba97", - "modified": "2021-01-06T18:28:42.966Z", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.686Z", "id": "relationship--4cff7d54-48cd-4527-847f-acc677f872d6", - "modified": "2021-01-06T18:28:42.966Z", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--643bb04b-16ee-4197-9769-c4db5d9feaef", - "modified": "2021-01-06T18:28:42.967Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--06e601cf-ba4e-4ab2-8935-fac23b4439e2", - "modified": "2021-01-06T18:28:42.967Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--8774b106-c51e-405c-a74a-f51516354310", - "modified": "2021-01-06T18:28:42.967Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--7eca14b8-f16f-4528-b9b2-b24b6def0959", - "modified": "2021-01-06T18:28:42.967Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--2e24c8d0-a0db-4f18-9cc0-f70a0a82ab87", - "modified": "2021-01-06T18:28:42.967Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", + "created": "2021-01-13T01:50:52.687Z", "id": "relationship--13f2e949-318e-46d3-86dc-c5101cef09ea", - "modified": "2021-01-06T18:28:42.968Z", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--8a6d1458-d96a-4ed5-a8ad-78fcd70f41e6", - "modified": "2021-01-06T18:28:42.968Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--fa9096cf-5705-4e53-b18d-a786de974669", - "modified": "2021-01-06T18:28:42.968Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--af0e4ebf-0d6a-41e0-807f-ebce1bf74a5e", - "modified": "2021-01-06T18:28:42.968Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", - "modified": "2021-01-06T18:28:42.969Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", - "modified": "2021-01-06T18:28:42.969Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", - "modified": "2021-01-06T18:28:42.969Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.970Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.689Z", "id": "relationship--dbab608c-7870-4ea9-98c5-19ddcd5f2033", - "modified": "2021-01-06T18:28:42.970Z", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.689Z", "id": "relationship--ab2494b9-b9de-4990-bacd-6299cb105287", - "modified": "2021-01-06T18:28:42.970Z", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.689Z", "id": "relationship--f376757d-88e4-4362-9ef8-f2b46dd469a0", - "modified": "2021-01-06T18:28:42.970Z", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.690Z", "id": "relationship--61769047-f4be-43aa-aa68-1731f0576fa9", - "modified": "2021-01-06T18:28:42.972Z", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.690Z", "id": "relationship--663006c1-774b-4719-90ab-70307e7d1df8", - "modified": "2021-01-06T18:28:42.972Z", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", + "created": "2021-01-13T01:50:52.690Z", "id": "relationship--c2e3c26b-f6e2-4729-b45b-cb1fbb34ca8f", - "modified": "2021-01-06T18:28:42.972Z", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.973Z", - "description": "System Monitoring", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.973Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.973Z", - "description": "System Monitoring", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.973Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.974Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.691Z", "id": "relationship--17f7bb5a-08b7-453d-931d-0ffd98ddf081", - "modified": "2021-01-06T18:28:42.974Z", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.691Z", "id": "relationship--69091c0a-20cd-45e8-9731-20e695694a64", - "modified": "2021-01-06T18:28:42.974Z", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.691Z", "id": "relationship--eb860199-29af-46a0-a95b-ced7e7494f9b", - "modified": "2021-01-06T18:28:42.974Z", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.691Z", "id": "relationship--b1ca1c6e-4197-475b-a68e-73f0b042e6f2", - "modified": "2021-01-06T18:28:42.974Z", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.975Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.692Z", "id": "relationship--03524695-c3b6-4b82-ba83-2f74efa3701a", - "modified": "2021-01-06T18:28:42.975Z", + "modified": "2021-01-13T01:50:52.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.975Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.692Z", "id": "relationship--0af3bfef-cc1b-4a51-a369-a9fd6f836f26", - "modified": "2021-01-06T18:28:42.975Z", + "modified": "2021-01-13T01:50:52.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.977Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.693Z", "id": "relationship--41e2e799-4020-4b14-95bb-6885cef78e36", - "modified": "2021-01-06T18:28:42.977Z", + "modified": "2021-01-13T01:50:52.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.978Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.694Z", "id": "relationship--2d942da6-837d-4339-9b6b-0494e8f3f6fb", - "modified": "2021-01-06T18:28:42.978Z", + "modified": "2021-01-13T01:50:52.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.978Z", - "description": "System Monitoring, malware", - "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", - "modified": "2021-01-06T18:28:42.978Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.980Z", - "description": "Wireless access", - "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", - "modified": "2021-01-06T18:28:42.980Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.981Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.695Z", "id": "relationship--11bc4f0d-a8d7-4538-8650-2a9dbf0a5f3f", - "modified": "2021-01-06T18:28:42.981Z", + "modified": "2021-01-13T01:50:52.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.981Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", - "modified": "2021-01-06T18:28:42.981Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.982Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.696Z", "id": "relationship--38062425-1dd5-47f1-8ad5-48a4a4041866", - "modified": "2021-01-06T18:28:42.982Z", + "modified": "2021-01-13T01:50:52.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.983Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.697Z", "id": "relationship--a9223498-3983-4d42-8a6d-d087f8dcc236", - "modified": "2021-01-06T18:28:42.983Z", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.697Z", "id": "relationship--7b440b6a-f8c0-4971-b60a-2f71ec864a7f", - "modified": "2021-01-06T18:28:42.984Z", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.697Z", "id": "relationship--a1c47e51-c90b-4992-9700-be667705d596", - "modified": "2021-01-06T18:28:42.984Z", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.697Z", "id": "relationship--7c4fedb8-42f7-45cc-b4d0-5d25bfd05058", - "modified": "2021-01-06T18:28:42.984Z", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.985Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.697Z", "id": "relationship--32bac8f5-2e56-4903-bbcd-fa8d4411b423", - "modified": "2021-01-06T18:28:42.985Z", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.698Z", "id": "relationship--22a20df6-62f8-4c31-b61e-b2db2ab59ebd", - "modified": "2021-01-06T18:28:42.986Z", + "modified": "2021-01-13T01:50:52.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", - "modified": "2021-01-06T18:28:42.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:42.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.987Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.698Z", "id": "relationship--3d810d76-2523-423c-8700-04ba4b8d53c5", - "modified": "2021-01-06T18:28:42.987Z", + "modified": "2021-01-13T01:50:52.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.699Z", "id": "relationship--ebbe7bfb-d8be-4a0c-9332-2122972516d9", - "modified": "2021-01-06T18:28:42.988Z", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.699Z", "id": "relationship--6fc77504-40f0-41c4-93f0-a4a0f3fee358", - "modified": "2021-01-06T18:28:42.988Z", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.699Z", "id": "relationship--2b6a2bde-2fb8-4d0a-9fbc-36d3100f19f7", - "modified": "2021-01-06T18:28:42.988Z", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.699Z", "id": "relationship--51b51024-a53c-41cf-b667-ab297e7616ca", - "modified": "2021-01-06T18:28:42.988Z", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.700Z", "id": "relationship--283ede6c-1d47-42c6-b711-ba6d71cde063", - "modified": "2021-01-06T18:28:42.988Z", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:42.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.989Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.700Z", "id": "relationship--6f7e7323-d4f0-48e7-9d29-bf52ed4031ae", - "modified": "2021-01-06T18:28:42.989Z", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", - "modified": "2021-01-06T18:28:42.989Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:42.989Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.700Z", "id": "relationship--206add57-83ee-4645-ac38-6dd55f2c51e9", - "modified": "2021-01-06T18:28:42.990Z", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.700Z", "id": "relationship--85323b0a-753d-49b3-ade7-c42285c98391", - "modified": "2021-01-06T18:28:42.990Z", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.700Z", "id": "relationship--5f6bd771-8d22-49c0-8287-a61bf1aec2d7", - "modified": "2021-01-06T18:28:42.990Z", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.701Z", "id": "relationship--b467a281-4c2a-4bbb-822e-17c6775aa39a", - "modified": "2021-01-06T18:28:42.990Z", + "modified": "2021-01-13T01:50:52.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.991Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.701Z", "id": "relationship--b2c54ea8-ad9a-404e-9008-d0060340c263", - "modified": "2021-01-06T18:28:42.991Z", + "modified": "2021-01-13T01:50:52.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.992Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.702Z", "id": "relationship--f4959335-5935-49cf-91ba-d19bb6b53492", - "modified": "2021-01-06T18:28:42.992Z", + "modified": "2021-01-13T01:50:52.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.994Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", - "modified": "2021-01-06T18:28:42.994Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.994Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.994Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.995Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.703Z", "id": "relationship--04234f16-7aaa-4e29-a7e8-16386aecc4e2", - "modified": "2021-01-06T18:28:42.995Z", + "modified": "2021-01-13T01:50:52.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.996Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.704Z", "id": "relationship--93fcff2d-3b2a-4365-acd5-1ae875ae7d50", - "modified": "2021-01-06T18:28:42.996Z", + "modified": "2021-01-13T01:50:52.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.997Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.704Z", "id": "relationship--58031ac6-a709-4a44-9762-b4dde34bf75f", - "modified": "2021-01-06T18:28:42.997Z", + "modified": "2021-01-13T01:50:52.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.705Z", "id": "relationship--2de21be6-cb7f-4a7d-9494-89b74dafde05", - "modified": "2021-01-06T18:28:42.998Z", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.705Z", "id": "relationship--c8805abc-b6de-4c17-9da8-a28ee01471aa", - "modified": "2021-01-06T18:28:42.998Z", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.705Z", "id": "relationship--964a9d89-59cf-4f02-b22f-fc6178eca32d", - "modified": "2021-01-06T18:28:42.998Z", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.705Z", "id": "relationship--dc0371e4-823c-470e-b94f-53b9b65db23a", - "modified": "2021-01-06T18:28:42.998Z", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--3778004a-635f-43e0-8ea0-9c6406db14b7", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--d26c3537-b543-4cb7-9890-35f100323f83", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--de15cb03-3b17-4264-9139-7dfd96b147d9", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--849de4bf-cd76-490a-bb15-fb87a066d646", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--327dd8ab-b71d-44ce-9a57-6794a4529f0f", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.706Z", "id": "relationship--60e9f7f2-550a-4169-98a4-43f2fcdc829a", - "modified": "2021-01-06T18:28:43.000Z", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.003Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.707Z", "id": "relationship--95ae76f2-4310-4a4e-8d7f-9d35e4c176d0", - "modified": "2021-01-06T18:28:43.003Z", + "modified": "2021-01-13T01:50:52.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.003Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.707Z", "id": "relationship--5424b2e0-5965-41b3-a5ea-34b2041a0fcd", - "modified": "2021-01-06T18:28:43.003Z", + "modified": "2021-01-13T01:50:52.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.004Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.708Z", "id": "relationship--fa3ecbfb-9eca-4133-a285-b972a29f784c", - "modified": "2021-01-06T18:28:43.004Z", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.004Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.708Z", "id": "relationship--b42920b5-1ee0-40c5-b15c-cd2eed73d558", - "modified": "2021-01-06T18:28:43.004Z", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.005Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.708Z", "id": "relationship--9ffb0125-920f-4821-9af7-cf2af4cbbce8", - "modified": "2021-01-06T18:28:43.005Z", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.005Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.708Z", "id": "relationship--ac028c28-bb45-4d75-8969-0cf48b7113e4", - "modified": "2021-01-06T18:28:43.005Z", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--4d233343-ade8-401c-b143-1dbf3e2055a4", - "modified": "2021-01-06T18:28:43.006Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--6af5809f-f0cb-4a4d-a400-80083a0f6521", - "modified": "2021-01-06T18:28:43.006Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.006Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--155dbb8e-cae5-4d5d-a304-edfaccd49878", - "modified": "2021-01-06T18:28:43.006Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--4371adfa-df38-4603-9696-e57fed241678", - "modified": "2021-01-06T18:28:43.006Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.007Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.709Z", "id": "relationship--b7d6c9b5-30cc-47ab-8250-abe6c18e3851", - "modified": "2021-01-06T18:28:43.007Z", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4f19a941-4162-432c-893e-47b203e7c270", - "modified": "2021-01-06T18:28:43.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.710Z", "id": "relationship--5befe2d1-b9ce-40a1-8556-5e65be22263d", - "modified": "2021-01-06T18:28:43.008Z", + "modified": "2021-01-13T01:50:52.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--23f376cd-9343-4aa0-b2d8-72d180aef209", - "modified": "2021-01-06T18:28:43.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4601ae75-4642-414e-b16c-142ec466b1d0", - "modified": "2021-01-06T18:28:43.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:43.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09357d8f-7193-480d-87e0-65c44edc02ea", - "modified": "2021-01-06T18:28:43.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.711Z", "id": "relationship--ae2274b9-4ba9-4fb7-ae08-204fbb46bcf3", - "modified": "2021-01-06T18:28:43.009Z", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.711Z", "id": "relationship--51d36bf0-2ca0-491a-8474-330983a0f964", - "modified": "2021-01-06T18:28:43.010Z", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.711Z", "id": "relationship--0f361745-aa21-43c0-be20-ed81a84f3751", - "modified": "2021-01-06T18:28:43.010Z", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.711Z", "id": "relationship--17fa5f3c-3a56-438d-bb37-d0024bedfdc1", - "modified": "2021-01-06T18:28:43.010Z", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.012Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.712Z", "id": "relationship--72cb24e1-34d2-460d-8701-afc0671ada2d", - "modified": "2021-01-06T18:28:43.012Z", + "modified": "2021-01-13T01:50:52.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.014Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.713Z", "id": "relationship--d4ae1542-47c5-4b79-8f7b-b35c4d31aab1", - "modified": "2021-01-06T18:28:43.014Z", + "modified": "2021-01-13T01:50:52.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.014Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.713Z", "id": "relationship--eaffc58c-9218-401c-8313-2df407a27b5b", - "modified": "2021-01-06T18:28:43.014Z", + "modified": "2021-01-13T01:50:52.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.015Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.714Z", "id": "relationship--dea74d24-27aa-46bb-9719-e4f36a435378", - "modified": "2021-01-06T18:28:43.015Z", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.016Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.714Z", "id": "relationship--384f0000-f3b3-4f96-9d1d-d2fbf14b8ac0", - "modified": "2021-01-06T18:28:43.016Z", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.016Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.714Z", "id": "relationship--675bd3c9-3077-403a-81f6-2423bd88f1d5", - "modified": "2021-01-06T18:28:43.016Z", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.018Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.715Z", "id": "relationship--a5923ee7-3e80-43a7-a0ed-69d12a0f14ea", - "modified": "2021-01-06T18:28:43.018Z", + "modified": "2021-01-13T01:50:52.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.019Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.716Z", "id": "relationship--809291a0-04f6-4231-b8b3-10cb3602f0e7", - "modified": "2021-01-06T18:28:43.019Z", + "modified": "2021-01-13T01:50:52.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.019Z", - "description": "System Monitoring, malware", - "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", - "modified": "2021-01-06T18:28:43.019Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.716Z", "id": "relationship--1c69e293-581a-43ec-a63a-4efeaeb9a4a0", - "modified": "2021-01-06T18:28:43.020Z", + "modified": "2021-01-13T01:50:52.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", - "modified": "2021-01-06T18:28:43.020Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.717Z", "id": "relationship--714a46dd-aa66-4c19-bf61-833b1c341390", - "modified": "2021-01-06T18:28:43.020Z", + "modified": "2021-01-13T01:50:52.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.022Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.718Z", "id": "relationship--76b37b71-c27d-4f05-ab4b-942bcff29385", - "modified": "2021-01-06T18:28:43.022Z", + "modified": "2021-01-13T01:50:52.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.023Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.718Z", "id": "relationship--ddaf1484-0dab-446a-a144-77be72e0eccd", - "modified": "2021-01-06T18:28:43.023Z", + "modified": "2021-01-13T01:50:52.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.023Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.719Z", "id": "relationship--8577d457-5ff6-42a3-a65f-d21b2664e163", - "modified": "2021-01-06T18:28:43.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.024Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ff4186b7-573e-4af4-802d-3a078895b0f1", - "modified": "2021-01-06T18:28:43.024Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.024Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a362a7cd-bf23-4f57-9e76-debb7bbc0ff6", - "modified": "2021-01-06T18:28:43.024Z", + "modified": "2021-01-13T01:50:52.719Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.025Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.720Z", "id": "relationship--029296ec-516e-411b-87c5-dea7f7e6356a", - "modified": "2021-01-06T18:28:43.025Z", + "modified": "2021-01-13T01:50:52.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.026Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.721Z", "id": "relationship--44a59e1b-6856-4fd5-9c16-160f16cc4b11", - "modified": "2021-01-06T18:28:43.026Z", + "modified": "2021-01-13T01:50:52.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.026Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.721Z", "id": "relationship--dbf09b17-8315-40d6-aeaf-05b9c5d87539", - "modified": "2021-01-06T18:28:43.026Z", + "modified": "2021-01-13T01:50:52.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.027Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.722Z", "id": "relationship--8fea732b-9383-4c96-883e-d53fa8b97aa0", - "modified": "2021-01-06T18:28:43.027Z", + "modified": "2021-01-13T01:50:52.722Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.027Z", - "description": "System Monitoring", - "id": "relationship--6de72fa9-7a51-464b-9070-02f04f706492", - "modified": "2021-01-06T18:28:43.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.028Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.723Z", "id": "relationship--49f23fff-349a-44c7-b4fb-7f6ddb03507b", - "modified": "2021-01-06T18:28:43.028Z", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99f9c7bf-21d1-4f56-8b72-075c9998ed64", - "modified": "2021-01-06T18:28:43.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.723Z", "id": "relationship--f311e4cd-2543-440d-8393-ead13bedbe17", - "modified": "2021-01-06T18:28:43.029Z", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b5932f52-10cc-483b-b956-e841e8420768", - "modified": "2021-01-06T18:28:43.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.723Z", "id": "relationship--3b5ed362-2f2b-42f9-a237-6378f7fba0f1", - "modified": "2021-01-06T18:28:43.029Z", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.723Z", "id": "relationship--6d6effa6-3dae-42f0-b8d2-7f1aff30dc15", - "modified": "2021-01-06T18:28:43.029Z", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.030Z", - "description": "Protect credential access", - "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", - "modified": "2021-01-06T18:28:43.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.032Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.725Z", "id": "relationship--54134f02-2920-44e2-9e12-381c8269e50c", - "modified": "2021-01-06T18:28:43.032Z", + "modified": "2021-01-13T01:50:52.725Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.033Z", - "description": "System Monitoring", - "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", - "modified": "2021-01-06T18:28:43.033Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.035Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.727Z", "id": "relationship--5708481d-7335-47a7-862e-389ec3ebdabe", - "modified": "2021-01-06T18:28:43.035Z", + "modified": "2021-01-13T01:50:52.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.035Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", - "modified": "2021-01-06T18:28:43.035Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.036Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.727Z", "id": "relationship--7810b1b1-5de9-4729-857f-c93727aa8397", - "modified": "2021-01-06T18:28:43.036Z", + "modified": "2021-01-13T01:50:52.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.037Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.728Z", "id": "relationship--6e6727fd-0a30-40d2-87d3-cc21fed7056c", - "modified": "2021-01-06T18:28:43.037Z", + "modified": "2021-01-13T01:50:52.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.038Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.728Z", "id": "relationship--58224c03-11a4-4f29-a369-b6adf33a98f7", - "modified": "2021-01-06T18:28:43.038Z", + "modified": "2021-01-13T01:50:52.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.039Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.729Z", "id": "relationship--8b072edb-84a2-4c0f-a3b6-32320f1a87f4", - "modified": "2021-01-06T18:28:43.039Z", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.039Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.729Z", "id": "relationship--fd3db84f-b20e-4e6b-9dd1-21cccb61bdd2", - "modified": "2021-01-06T18:28:43.039Z", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.040Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.729Z", "id": "relationship--1cfae21c-d8a6-4cca-91e6-40572050d5ec", - "modified": "2021-01-06T18:28:43.040Z", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.040Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.729Z", "id": "relationship--65ea67e4-ac0e-4c57-9d71-5bc1ceaaa9fd", - "modified": "2021-01-06T18:28:43.040Z", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.730Z", "id": "relationship--82dbbdee-39be-4dc0-b780-a361430e6441", - "modified": "2021-01-06T18:28:43.041Z", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.730Z", "id": "relationship--c962f2da-9019-40e8-ad42-b2b96feb14bb", - "modified": "2021-01-06T18:28:43.041Z", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.730Z", "id": "relationship--34c934bd-ee2c-4ec1-8332-1454ebb299fd", - "modified": "2021-01-06T18:28:43.041Z", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.730Z", "id": "relationship--205adbae-197c-44a0-8dbb-2685b83db869", - "modified": "2021-01-06T18:28:43.042Z", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.730Z", "id": "relationship--54262ee4-77ee-49fb-ac93-41b836c1e5a4", - "modified": "2021-01-06T18:28:43.042Z", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.731Z", "id": "relationship--d86c84b8-c229-44b2-98a3-44c8620fb373", - "modified": "2021-01-06T18:28:43.042Z", + "modified": "2021-01-13T01:50:52.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.043Z", - "description": "Vulnerability Scanning", - "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:43.043Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.045Z", - "description": "System Monitoring", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--02610bdc-0440-44b4-82a6-fd4d7747bd30", - "modified": "2021-01-06T18:28:43.047Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:43.047Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.733Z", "id": "relationship--72add5e5-d08f-4270-bf64-9eceda8ad597", - "modified": "2021-01-06T18:28:43.047Z", + "modified": "2021-01-13T01:50:52.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d03f20b5-b528-4867-9eff-c01b2c4f4963", - "modified": "2021-01-06T18:28:43.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ce56406b-43dd-493a-9676-623ce4a799c0", - "modified": "2021-01-06T18:28:43.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--22c88035-94e3-4472-bfbb-75c36fd3c533", - "modified": "2021-01-06T18:28:43.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c810962-3f5b-496d-9813-d044fa0875ff", - "modified": "2021-01-06T18:28:43.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--943f1377-376e-4bd1-bcca-9f53b6c09f1f", - "modified": "2021-01-06T18:28:43.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0e143146-f275-42a8-8d73-9b783baf4b0a", - "modified": "2021-01-06T18:28:43.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--65cc15eb-d9ef-4b6b-9330-085a923e45e4", - "modified": "2021-01-06T18:28:43.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--88d67e1c-a2c9-48fc-b4f1-2b9e85411c6a", - "modified": "2021-01-06T18:28:43.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ab995d58-298d-4043-87b8-6379b359dc2a", - "modified": "2021-01-06T18:28:43.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--8dad7373-4889-4734-aac7-fbcae98c4843", - "modified": "2021-01-06T18:28:43.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0bce5245-6457-4969-9287-35dd966cac69", - "modified": "2021-01-06T18:28:43.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--feda0e27-c455-4e2a-b6a7-21e1d50ac1b6", - "modified": "2021-01-06T18:28:43.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:43.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:43.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f25e0d44-1e42-43d8-b65d-cfe534379d41", - "modified": "2021-01-06T18:28:43.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c4702970-8cbf-4b30-a8b9-f89d4c664cf9", - "modified": "2021-01-06T18:28:43.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--931beed3-59aa-45db-bbaf-a0eefb8c2280", - "modified": "2021-01-06T18:28:43.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--1057f0df-28cd-4fc2-91dc-b74f2d70bae9", - "modified": "2021-01-06T18:28:43.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3158c0c5-d138-4c46-9d4d-8f9ce0c4990f", - "modified": "2021-01-06T18:28:43.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--25ceface-51b5-481a-a887-73cafc946c71", - "modified": "2021-01-06T18:28:43.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:43.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--8de059d1-d260-40de-b9a2-5fd29277736b", - "modified": "2021-01-06T18:28:43.053Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--fa287f3e-4c4e-45e7-aeca-c8c193892075", - "modified": "2021-01-06T18:28:43.054Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--f83ab457-21de-4382-8ab3-ee7947be42ee", - "modified": "2021-01-06T18:28:43.054Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--67d12b51-a9f0-41ac-a7f8-0693d22b0779", - "modified": "2021-01-06T18:28:43.054Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--72532510-6fa6-4f1f-b160-eff125a740a8", - "modified": "2021-01-06T18:28:43.054Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.055Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--f23b767f-20d2-4507-9953-ed4acc1d7d22", - "modified": "2021-01-06T18:28:43.055Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.055Z", - "description": "Configuring system settings, Configuration Management, Application Control", + "created": "2021-01-13T01:50:52.737Z", "id": "relationship--9e4e6c96-8447-4d64-b127-36ea4f8369a0", - "modified": "2021-01-06T18:28:43.055Z", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.738Z", "id": "relationship--69da9376-07ad-4144-8c25-f189ddfb67ae", - "modified": "2021-01-06T18:28:43.056Z", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.738Z", "id": "relationship--f1fcaefe-01a6-45c7-b100-378cbf6bcbe5", - "modified": "2021-01-06T18:28:43.056Z", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.738Z", "id": "relationship--e3809a56-ce8b-4d5a-b782-b0c2fe38e811", - "modified": "2021-01-06T18:28:43.056Z", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.738Z", "id": "relationship--7d0d0bbe-dba3-4531-b70e-40ca5896a76f", - "modified": "2021-01-06T18:28:43.056Z", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.739Z", "id": "relationship--6f494880-569f-4cab-9121-870de10a7c3d", - "modified": "2021-01-06T18:28:43.057Z", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.739Z", "id": "relationship--5d0cecdf-d403-4e60-a10e-679904799133", - "modified": "2021-01-06T18:28:43.057Z", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.739Z", "id": "relationship--575075b4-1a4a-44fc-b3a1-1488e7d58b51", - "modified": "2021-01-06T18:28:43.057Z", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--59c6fc9d-b5c8-46b4-91e2-156a4c25e44d", - "modified": "2021-01-06T18:28:43.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--388a5478-1ca9-4efe-bb7f-6f429197b468", - "modified": "2021-01-06T18:28:43.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--9b2abe67-2b24-403d-be69-dcc9790c5a8b", - "modified": "2021-01-06T18:28:43.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--84d23c31-759b-4cab-be72-02444d7ad5bb", - "modified": "2021-01-06T18:28:43.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--d3e770af-f34f-4e4c-a711-85556f7b8867", - "modified": "2021-01-06T18:28:43.058Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.059Z", - "description": "System Monitoring", - "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:43.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.059Z", - "description": "System Monitoring", - "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:43.059Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.061Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.741Z", "id": "relationship--c16e5dcc-379a-417f-a3dd-095114c682a9", - "modified": "2021-01-06T18:28:43.061Z", + "modified": "2021-01-13T01:50:52.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.062Z", - "description": "System Monitoring, malware", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:43.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.062Z", - "description": "System Monitoring, malware", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:43.062Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.063Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:43.063Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.064Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:43.064Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.064Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.744Z", "id": "relationship--fe3f8f27-e39b-4035-b57b-a417d3a3a278", - "modified": "2021-01-06T18:28:43.064Z", + "modified": "2021-01-13T01:50:52.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.065Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.744Z", "id": "relationship--6159a1b4-0078-4c1e-aba5-b9a48729ded3", - "modified": "2021-01-06T18:28:43.065Z", + "modified": "2021-01-13T01:50:52.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.065Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.745Z", "id": "relationship--cb6e4d52-a369-4e99-96e3-847648887f0c", - "modified": "2021-01-06T18:28:43.065Z", + "modified": "2021-01-13T01:50:52.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.745Z", "id": "relationship--016e6eac-1751-41b2-af53-731ab934a748", - "modified": "2021-01-06T18:28:43.066Z", + "modified": "2021-01-13T01:50:52.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.746Z", "id": "relationship--bca08250-3f25-41a1-92f2-93387ea8bfc0", - "modified": "2021-01-06T18:28:43.066Z", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.746Z", "id": "relationship--5d03df53-8472-4ffb-aa41-616187fee5e5", - "modified": "2021-01-06T18:28:43.066Z", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.067Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.746Z", "id": "relationship--eb2d50f2-c955-4acb-be3f-6433ffb1df3d", - "modified": "2021-01-06T18:28:43.067Z", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.746Z", "id": "relationship--36fb05ec-bcf8-4b8b-99b3-3a848a957ef0", - "modified": "2021-01-06T18:28:43.068Z", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.747Z", "id": "relationship--f960eaf6-8d0c-469d-9cec-eb05af04be56", - "modified": "2021-01-06T18:28:43.068Z", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.747Z", "id": "relationship--6c0c3a63-4062-48fc-9f45-7471ce5b7295", - "modified": "2021-01-06T18:28:43.068Z", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.747Z", "id": "relationship--67f5386d-4721-4eaf-a9cc-f35e54bd62fc", - "modified": "2021-01-06T18:28:43.069Z", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.747Z", "id": "relationship--10decda9-ca58-47df-a5c0-6a79f1d35364", - "modified": "2021-01-06T18:28:43.069Z", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.747Z", "id": "relationship--7042746a-5186-46ae-af51-ed1beb84c9ef", - "modified": "2021-01-06T18:28:43.069Z", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.070Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.748Z", "id": "relationship--90a6c81a-170b-487a-9f9e-fa9100713d13", - "modified": "2021-01-06T18:28:43.070Z", + "modified": "2021-01-13T01:50:52.748Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.071Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.749Z", "id": "relationship--8cf595ad-cfc2-4e42-8d97-ca7dd91a9560", - "modified": "2021-01-06T18:28:43.071Z", + "modified": "2021-01-13T01:50:52.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.071Z", - "description": "System Monitoring, malware", - "id": "relationship--caab116b-2943-42f7-adb5-9fbdd374b042", - "modified": "2021-01-06T18:28:43.071Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7b4caa87-22e4-4a72-9547-691969a3cfe4", - "modified": "2021-01-06T18:28:43.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--db54294b-e768-49cd-9498-6d3acf496220", - "modified": "2021-01-06T18:28:43.072Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.750Z", "id": "relationship--800c8cc3-5a45-4765-9e72-3cbb38231bed", - "modified": "2021-01-06T18:28:43.072Z", + "modified": "2021-01-13T01:50:52.750Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:43.073Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", - "modified": "2021-01-06T18:28:43.073Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:43.073Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:43.073Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:43.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:43.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5575338f-7f6f-40f6-932e-dbc25ab8a5eb", - "modified": "2021-01-06T18:28:43.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.752Z", "id": "relationship--5f9d3ce6-828f-49c2-8133-0b7820e0a87d", - "modified": "2021-01-06T18:28:43.074Z", + "modified": "2021-01-13T01:50:52.752Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4fecd284-768d-4c3b-912c-16941048cb68", - "modified": "2021-01-06T18:28:43.074Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.753Z", "id": "relationship--7de06c20-50b5-4486-a73e-b5baa56d3879", - "modified": "2021-01-06T18:28:43.075Z", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.753Z", "id": "relationship--14e67078-f21c-4f75-9647-4ffa7c6e2d8f", - "modified": "2021-01-06T18:28:43.075Z", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.753Z", "id": "relationship--80a14dee-487e-47bb-bc03-f8111ab14616", - "modified": "2021-01-06T18:28:43.075Z", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.077Z", - "description": "System Monitoring", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:43.077Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.077Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.755Z", "id": "relationship--c7cab8d6-c9a1-4c53-b27e-ea1528ab135a", - "modified": "2021-01-06T18:28:43.077Z", + "modified": "2021-01-13T01:50:52.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.078Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.755Z", "id": "relationship--6ad43e6c-38e1-4f1f-80e5-283af6c7c608", - "modified": "2021-01-06T18:28:43.078Z", + "modified": "2021-01-13T01:50:52.755Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.078Z", - "description": "System Monitoring, malware", - "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:43.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.078Z", - "description": "System Monitoring, malware", - "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:43.078Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.079Z", - "description": "System Monitoring, malware", - "id": "relationship--44764853-5e29-4aff-835b-0730acdbaebe", - "modified": "2021-01-06T18:28:43.079Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.079Z", - "description": "System Monitoring, malware", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:43.079Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.079Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:43.079Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:43.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.080Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.757Z", "id": "relationship--313be095-1e2e-4def-9649-3b5e2008c8c1", - "modified": "2021-01-06T18:28:43.080Z", + "modified": "2021-01-13T01:50:52.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.757Z", "id": "relationship--f31914fc-fc91-4ffe-be3e-71e477ffd77c", - "modified": "2021-01-06T18:28:43.080Z", + "modified": "2021-01-13T01:50:52.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.081Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.758Z", "id": "relationship--54a27eb4-a3e9-44f7-b19f-a8bdf8bb18ce", - "modified": "2021-01-06T18:28:43.081Z", + "modified": "2021-01-13T01:50:52.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.081Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.758Z", "id": "relationship--70b3f1c3-e451-48ac-bf21-b4b0c71bdcbc", - "modified": "2021-01-06T18:28:43.081Z", + "modified": "2021-01-13T01:50:52.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.082Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.759Z", "id": "relationship--d7070538-9078-4401-ae98-62285893c1f7", - "modified": "2021-01-06T18:28:43.082Z", + "modified": "2021-01-13T01:50:52.759Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.083Z", - "description": "System Monitoring", - "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", - "modified": "2021-01-06T18:28:43.083Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.083Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.760Z", "id": "relationship--185adffe-6ba2-4273-a016-ea6a675194ae", - "modified": "2021-01-06T18:28:43.083Z", + "modified": "2021-01-13T01:50:52.760Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.084Z", - "description": "System Monitoring", - "id": "relationship--be981616-8110-40f1-9c9a-23d50136f7fc", - "modified": "2021-01-06T18:28:43.084Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.761Z", "id": "relationship--35cb8d2c-530f-4b3a-8350-89c3d0eb3150", - "modified": "2021-01-06T18:28:43.085Z", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.761Z", "id": "relationship--0a39696e-9c6b-4e0e-9911-5dafb4ed1392", - "modified": "2021-01-06T18:28:43.085Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:43.085Z", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:43.085Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:43.085Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:43.086Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.761Z", "id": "relationship--4c7fa805-4786-429a-b851-6c28a62207e5", - "modified": "2021-01-06T18:28:43.086Z", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.761Z", "id": "relationship--073431d3-060d-40a8-aba5-ebf0d241871b", - "modified": "2021-01-06T18:28:43.086Z", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.761Z", "id": "relationship--4f304051-c401-4094-b746-e681fe51b17c", - "modified": "2021-01-06T18:28:43.086Z", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.762Z", "id": "relationship--858e5832-d7a3-477a-891b-83b28fa5d78c", - "modified": "2021-01-06T18:28:43.087Z", + "modified": "2021-01-13T01:50:52.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.762Z", "id": "relationship--a9c0d921-c112-4bae-98c8-d07ee52a12b7", - "modified": "2021-01-06T18:28:43.087Z", + "modified": "2021-01-13T01:50:52.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.763Z", "id": "relationship--c5065cfe-dec5-4b86-acbc-0809fd8e8350", - "modified": "2021-01-06T18:28:43.087Z", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.763Z", "id": "relationship--067a71e6-b3c5-40f5-be9d-a80aaa78c553", - "modified": "2021-01-06T18:28:43.087Z", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.088Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.763Z", "id": "relationship--cc4e2a10-0073-44be-bae9-d1bec31efea9", - "modified": "2021-01-06T18:28:43.088Z", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.088Z", - "description": "Configuring system settings, Configuration Management", + "created": "2021-01-13T01:50:52.763Z", "id": "relationship--47adf7b7-776d-49ab-99d0-50df5bffc051", - "modified": "2021-01-06T18:28:43.088Z", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.764Z", "id": "relationship--160991ff-1473-46aa-a528-4424683e7f07", - "modified": "2021-01-06T18:28:43.089Z", + "modified": "2021-01-13T01:50:52.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.764Z", "id": "relationship--5e618f98-00d3-4051-ae47-4a1e821f1408", - "modified": "2021-01-06T18:28:43.089Z", + "modified": "2021-01-13T01:50:52.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "Protect and prevent credential access", - "id": "relationship--ab6a0bb7-5da0-4cfc-8c3b-270cbc0bcef1", - "modified": "2021-01-06T18:28:43.089Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", - "id": "relationship--3eb33f1b-fd14-4933-b4ef-f0f849c01472", - "modified": "2021-01-06T18:28:43.090Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.765Z", "id": "relationship--f0467cfb-920f-4a67-a985-285f9d68a7a6", - "modified": "2021-01-06T18:28:43.090Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", - "id": "relationship--a95a32ab-075f-41f8-82cb-d93a6a79eff4", - "modified": "2021-01-06T18:28:43.090Z", + "modified": "2021-01-13T01:50:52.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.091Z", - "description": "System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:43.091Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.091Z", - "description": "System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:43.091Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:43.092Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:43.092Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:43.092Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:43.092Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.093Z", - "description": "System Monitoring", - "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:43.093Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.094Z", - "description": "Configuring system settings, Group policy, Registry ", + "created": "2021-01-13T01:50:52.769Z", "id": "relationship--b3c8bf50-e0e9-4bfe-89e0-d4b4928cf98d", - "modified": "2021-01-06T18:28:43.094Z", + "modified": "2021-01-13T01:50:52.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.094Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:43.094Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:43.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:43.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:43.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:43.095Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.096Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:43.096Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.096Z", - "description": "Configuring system settings, Registry", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:43.096Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.097Z", - "description": "Configuring system settings, Registry", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:43.097Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.097Z", - "description": "Configuring system settings, Registry", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:43.097Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:43.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:43.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", - "modified": "2021-01-06T18:28:43.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", - "modified": "2021-01-06T18:28:43.098Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:43.099Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:43.099Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:43.099Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.774Z", "id": "relationship--2d681256-1726-41dd-b535-a1c215b310c5", - "modified": "2021-01-06T18:28:43.100Z", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.774Z", "id": "relationship--6f077e3b-7824-4c4c-91d7-59c6c0c24a20", - "modified": "2021-01-06T18:28:43.100Z", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", + "created": "2021-01-13T01:50:52.774Z", "id": "relationship--35b55a41-294a-4c62-8944-175290f36c2f", - "modified": "2021-01-06T18:28:43.100Z", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.101Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:43.101Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:43.102Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:43.102Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:43.102Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:43.102Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:43.102Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.103Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:43.103Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.103Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:43.103Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.105Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--b3c8bf50-e0e9-4bfe-89e0-d4b4928cf98d", - "modified": "2021-01-06T18:28:43.105Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.105Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:43.105Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.106Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.778Z", "id": "relationship--de93250c-b059-4dda-b280-c78de5d2a8ec", - "modified": "2021-01-06T18:28:43.106Z", + "modified": "2021-01-13T01:50:52.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.107Z", - "description": "System Monitoring, Malware", - "id": "relationship--b82d8878-9808-43df-afb5-94dec04b5259", - "modified": "2021-01-06T18:28:43.107Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.107Z", - "description": "System Monitoring, Malware", - "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:43.107Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:50:52.780Z", "id": "relationship--573120db-1fc9-4cf1-986e-e72ba5e4df1e", - "modified": "2021-01-06T18:28:43.108Z", + "modified": "2021-01-13T01:50:52.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:43.108Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:50:52.780Z", "id": "relationship--9623b3a7-699c-48d0-9fa6-084f416a909f", - "modified": "2021-01-06T18:28:43.108Z", + "modified": "2021-01-13T01:50:52.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.109Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:43.109Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.110Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.781Z", "id": "relationship--e2d5805b-abde-460b-8d76-9bc9831ba50e", - "modified": "2021-01-06T18:28:43.110Z", + "modified": "2021-01-13T01:50:52.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.110Z", - "description": "Vulnerability Scanning", - "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:43.110Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:50:52.782Z", "id": "relationship--004a1612-47a2-4ea0-be61-1365621f7d82", - "modified": "2021-01-06T18:28:43.111Z", + "modified": "2021-01-13T01:50:52.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", - "id": "relationship--ed77f10c-f49c-4ba2-9bab-a3cc99302219", - "modified": "2021-01-06T18:28:43.111Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:50:52.782Z", "id": "relationship--8ef7e7ca-7e31-4d76-8605-e4ab490d38bc", - "modified": "2021-01-06T18:28:43.111Z", + "modified": "2021-01-13T01:50:52.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.112Z", - "description": "System Monitoring, Malware", - "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:43.112Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.113Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--17747313-65f2-46d0-ba9e-750d99d2aaf7", - "modified": "2021-01-06T18:28:43.113Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.113Z", - "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:43.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.113Z", - "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:43.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--16934d3f-24c2-4679-a244-590115a13c6b", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", - "id": "relationship--5d6bbc1b-23e2-45d3-ad12-9d07955ccf55", - "modified": "2021-01-06T18:28:43.114Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", - "id": "relationship--6e6eb3c0-ad78-48e9-8a20-955968bab877", - "modified": "2021-01-06T18:28:43.114Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--6417483d-40a0-4174-9f65-a1bb10ec7491", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--5bfe4186-084f-46d5-ab27-c6f2c7450387", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--9a33d272-1f8b-4714-8a8f-2fe3e4b52e57", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.115Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--fa2d0544-15f1-4392-a397-160ed68d01cc", - "modified": "2021-01-06T18:28:43.115Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.115Z", - "id": "relationship--4b0b4c66-a044-4b18-9034-285b0eaa44fb", - "modified": "2021-01-06T18:28:43.115Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.115Z", - "id": "relationship--ba374b5c-8533-4086-866b-f4a1fc54bad5", - "modified": "2021-01-06T18:28:43.115Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.116Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--fbe602fe-40fc-4468-9677-8b6387e9099d", - "modified": "2021-01-06T18:28:43.116Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.117Z", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.117Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.117Z", - "id": "relationship--5befe2d1-b9ce-40a1-8556-5e65be22263d", - "modified": "2021-01-06T18:28:43.117Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.117Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--cd281b71-6fdd-451d-a215-4aeecd665628", - "modified": "2021-01-06T18:28:43.117Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.118Z", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.118Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.118Z", - "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:43.118Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.118Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--7e0a0b44-103a-444d-becf-d390bc0dd9a8", - "modified": "2021-01-06T18:28:43.118Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.118Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--486ba8a4-25b4-474d-ad62-77a92773470f", - "modified": "2021-01-06T18:28:43.118Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.119Z", + "created": "2021-01-13T01:50:52.787Z", "id": "relationship--b0af7c0a-04ea-4f35-b105-c7a1baa57eb0", - "modified": "2021-01-06T18:28:43.119Z", + "modified": "2021-01-13T01:50:52.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.119Z", - "id": "relationship--1613bc51-18ed-416b-80db-aa7bef85feb8", - "modified": "2021-01-06T18:28:43.119Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.119Z", - "id": "relationship--e327b94b-7194-4ff9-a7c3-6d14d3ac8896", - "modified": "2021-01-06T18:28:43.119Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.120Z", + "created": "2021-01-13T01:50:52.787Z", "id": "relationship--4d034b9c-2ddb-4f44-bb90-5d30aad9bc59", - "modified": "2021-01-06T18:28:43.120Z", + "modified": "2021-01-13T01:50:52.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.121Z", + "created": "2021-01-13T01:50:52.788Z", "id": "relationship--de177dcc-647d-4f6e-a0c0-c7fad7f6aca1", - "modified": "2021-01-06T18:28:43.121Z", + "modified": "2021-01-13T01:50:52.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--3fa756bd-1851-4f6b-b47f-605681e27061", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--3107fb50-3261-438f-bdc1-2736867fb4ba", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--658b22e5-f39f-45b9-a52d-e4da4642f0c1", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", - "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:43.123Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", - "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:43.124Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", - "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:43.124Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--943a6c6d-ef9f-404b-8caa-7620feee6aeb", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--3ce0dbe6-6bd0-41e4-ae76-104ca50e7341", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--3f977c0b-fb20-41a2-ac47-2112a098c0a1", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--2c5ca741-2c27-49b3-a526-ef836b074128", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--1558ddfc-ef72-4353-964b-b70baba83504", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--39939054-3734-4de8-811e-5d5eed9634aa", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--4e3de08d-86c3-42d9-b1a6-9390becb63f5", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.791Z", "id": "relationship--4a08f564-53aa-4562-b5f0-7c668a63d98f", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.791Z", "id": "relationship--2f4a6966-e4c0-4959-93ba-cb49a4592008", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.126Z", + "created": "2021-01-13T01:50:52.792Z", "id": "relationship--db4382e2-06c0-4e8d-a567-b6b8dc83d11c", - "modified": "2021-01-06T18:28:43.126Z", + "modified": "2021-01-13T01:50:52.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.126Z", + "created": "2021-01-13T01:50:52.792Z", "id": "relationship--cad8c842-a761-4644-b577-6777106ac450", - "modified": "2021-01-06T18:28:43.126Z", + "modified": "2021-01-13T01:50:52.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.127Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--9ef22024-8765-43b9-8e2c-45ffdd1f143d", - "modified": "2021-01-06T18:28:43.127Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--e9c8dfaa-c489-4d94-a71a-41edff1158d4", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", - "id": "relationship--45743d32-1ccf-4b14-96da-5e2303fd13c9", - "modified": "2021-01-06T18:28:43.128Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--b37c4c3a-af36-4d3c-be47-fad6e67106af", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--df851f87-72e2-40b0-9031-600f427a98fd", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", - "id": "relationship--6c2423cd-88f0-41ea-8c22-665193d156d8", - "modified": "2021-01-06T18:28:43.128Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--2eca88db-2bca-4384-a61c-3cbc44671357", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--136a459d-d57f-4b6c-8a24-980150d53f96", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--fb5d6dc4-117a-470c-99e3-bb7dbcf1d493", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.129Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--01f01f1a-5f4f-46ff-a2db-c231e27b1ee9", - "modified": "2021-01-06T18:28:43.129Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.129Z", - "id": "relationship--582ed0a5-ec1d-4c8f-8fbf-d2af124d9d9f", - "modified": "2021-01-06T18:28:43.129Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.129Z", - "id": "relationship--082f3f53-7f13-4d5c-b0c5-f4d48e836dca", - "modified": "2021-01-06T18:28:43.129Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.130Z", + "created": "2021-01-13T01:50:52.795Z", "id": "relationship--fb5d8abf-dd78-49ee-b822-e7830d062826", - "modified": "2021-01-06T18:28:43.130Z", + "modified": "2021-01-13T01:50:52.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--667fdf6f-b683-44f7-96d7-23659bc123aa", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--65ab849a-f74b-4889-986e-a35cda103923", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--e2c5d1d7-1600-4902-ad9d-fef234ef0961", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--36c2f637-d262-4bd3-81af-1e20d68d085d", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--b8029008-ce24-427a-af72-f1538e55eb5a", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--932ed216-e66f-4764-b329-6ec34dc8b192", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--98a7864f-9ae5-441e-ae6b-d0a7c871e744", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:43.134Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:43.134Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--48e4673f-1492-4ffb-826b-f5eb3d4d03c6", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--690d94cc-b821-4e2c-a668-f4161c52a911", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--dd6dce52-c15d-410d-8543-6f0922a65833", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.135Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--873d6a85-80d3-4ff7-8e96-1fc8eb8ea4cd", - "modified": "2021-01-06T18:28:43.135Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.135Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--56098de5-79a6-438c-a699-c5a60bd5349d", - "modified": "2021-01-06T18:28:43.135Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.136Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--71f93104-0371-46d4-806d-01c542ab1559", - "modified": "2021-01-06T18:28:43.136Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--0b007643-6b60-4f0f-827f-9c014b82ab3f", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--c66ec4ed-e020-4011-9bfa-1995de7b660e", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--5afb82b8-666e-41ed-95fc-9e08beff8dee", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--5f5c00d7-23f5-4b2c-af08-125e81a99570", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--a708b559-c7a6-46df-a6be-ab1975aadf3a", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--c4795a01-80cd-4fd4-b1a9-8eee8977fba5", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--d9aa6f36-5092-4e93-8d3d-13490a80e6ad", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--706f2cf9-55e4-49b5-a520-bd6f2fc0f5eb", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--b547aeab-17b4-4e2b-bf25-5d32503a0210", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--b7a11e7d-a7ed-42c5-8d5c-c2e0952f4d7f", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--3cbcb34b-9973-4be6-aa75-14ad561f47df", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.141Z", + "created": "2021-01-13T01:50:52.804Z", "id": "relationship--001d6438-2972-4513-8e46-852fb5cb421a", - "modified": "2021-01-06T18:28:43.141Z", + "modified": "2021-01-13T01:50:52.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--7a8762f1-c775-4f4e-8cda-14263cd9df17", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", - "id": "relationship--320d8581-f9f8-46be-91af-8fab1e6ca259", - "modified": "2021-01-06T18:28:43.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--5186ac08-2767-4fb2-bce9-5cb582cf2334", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--3f943f64-112e-44f2-950a-7ec2d15f4322", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--a67c6982-f134-4fc3-be09-0fdcc5eea84f", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--7a234194-a462-4770-8cee-52a773b024a8", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--24a30c3a-ed80-4437-8aaa-2eb51e763c51", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.143Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--2acacc19-1edb-421a-a885-6871027a3097", - "modified": "2021-01-06T18:28:43.143Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.143Z", + "created": "2021-01-13T01:50:52.806Z", "id": "relationship--b9c4fccd-ac2b-4904-9e87-781230047439", - "modified": "2021-01-06T18:28:43.143Z", + "modified": "2021-01-13T01:50:52.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.806Z", "id": "relationship--a849ffae-d58d-44fb-bb14-b49e5b984b83", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--efd9122c-b099-4159-af1f-284da1d3652f", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--35ff655a-d124-4f67-a9be-1c6d3bcacea1", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--6c7788fe-c948-4e14-9ffe-401403cdb17a", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--f8b0360b-17e7-44f5-bad4-0f5cd59b8f5f", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4c0ed0ef-d78f-4d44-85ca-d8ae44d90bc6", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4e2b72de-71f7-4343-a78c-f07f43d60b89", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--7aac942d-d0b3-43a6-894c-fd39a8760fc3", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4263046a-797b-49f9-b36c-3367a221a5b2", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--2785d294-288e-4682-b6c1-c6e46fd0329a", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--a8e3e951-ae0b-4255-86f6-ffb7155c89ef", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--c176da7e-12a0-4fb4-b9eb-3e60ea9c94b7", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--adff285f-81f4-4092-805e-573d6815afe4", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--ce29e63c-6994-4464-ae46-89e3552ccbed", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--50426f1e-7182-4290-8f7f-fc5e1dd36450", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--db19ca24-73db-4e1c-9ada-0868f740e382", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--b0e779c6-6862-4cb3-8a51-6442c7a643b7", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--7ae30d00-0b72-4d53-9241-074ab2efa761", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--b4c5ef0b-aa60-4f5a-bcc0-f6844c4af901", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--75e24444-0e93-41b2-984f-34ac2ba3a50a", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--5c7d9759-3592-4bf4-8388-cfa0061286ad", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--7da289fb-45f1-4ab1-85c0-b319076df172", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--0a29d4c2-aa57-4c11-9514-18e9bd30e723", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--9f94b021-9844-46d6-9ded-337601e728d2", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--3f774284-3329-4b3e-9213-bf4592453131", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--3e7ba560-7cb4-4d40-afd4-3dcfe2ca78dd", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--309d1eca-0165-4c1f-9db4-d6d007226c08", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--412fcb06-c65b-4b99-84e5-7918b0c6f24b", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--f82a3299-bb0b-45f7-803d-57687baead41", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--98517185-dfd2-4532-99e6-2113d3af3be8", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--1da75daa-6b94-40e3-a9bc-6a794cd002fd", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--17f56220-732e-4ae2-812c-6a6255db085a", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--d7161afc-d7e9-49b1-86d3-784b34d0e0d5", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--d0104806-7bf8-46c2-baf7-933a816a87d1", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--347b9741-0126-4010-9818-0082da15c81c", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--a96482c9-f150-41f8-a803-7a76beeef110", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--991a1401-c269-48cb-acb9-5eaa2d66538c", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--e8839c17-a98e-43bc-b974-3ba4bb912854", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--8f8a075f-d4c3-42da-8312-6a07df7e241e", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--9041b58a-5128-4986-b4f2-d1b60bf1fbc0", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--bf4cf806-c39f-46d4-8151-202f2f986374", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--13ad4d9d-888c-4dce-83c3-ef7e801a4117", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--5dba59b3-9b85-43ac-9f9a-733d374c1dca", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--7f6cdda7-34d2-4819-9b47-8546e65bcbd2", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--b761591c-c791-4eff-8028-ad35d68f5773", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--ee718414-25b2-4a12-9b37-b77765f628be", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--818dff85-9492-4ef0-a418-25d25bc2c815", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--d3359ade-8810-481c-b2be-3730965b0191", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--76abf412-8bfe-496b-985d-6d9a67f48885", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.813Z", "id": "relationship--bdad1f23-1453-4c0e-ad5e-185e8c68c010", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:43.151Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.813Z", "id": "relationship--9779bfa9-9722-4bc9-bdc2-b282a0979836", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:43.151Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--f9ad1400-58b1-4b4d-88e7-0095a800f3ef", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--8b5977a6-8f82-450c-850c-8b562308a5a0", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--4ec4e15a-2867-4468-9984-8f9f670e3363", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--4219f34a-cb96-4f9f-91da-a81854a431f8", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--55de4925-1f56-434e-a6b0-0894d747120e", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--53b12bbb-7e87-4418-8563-9f25ab36102b", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--470d8d53-0d09-40b3-b54b-078c80262768", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--890a0042-15d5-424f-9f71-c7105b636e1e", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--47d038d0-bd83-4e52-9215-93c2fc69aee9", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--963387aa-ca19-4ff1-8a48-2fe3d64a34c3", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--a1fb75e1-33be-405e-941e-6d471e82e714", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--50ad73a4-f8ab-4cd5-813f-e7d88f12f5a9", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--50617ade-8c03-468c-927e-aef71b3639ea", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--a3bc6a83-d291-467e-b207-b65386247239", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--2ae5cd2c-7a57-4fdb-8513-0373e2819083", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--4c3d09b6-4d15-4c76-958e-c08d84d9ecf0", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--84861084-83d1-4b07-bf9e-e58a37f3721e", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--0bd2643f-18c5-4e21-a0a2-861d219ff948", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--4ee2e6cd-d4d0-4d52-85eb-6c81605d827a", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--6c24eecb-d937-494a-a89f-7ed7aa56d2d8", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--dd4c3bad-cc29-40ed-99e0-15aac796ebde", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--c000dc6c-d35d-4a30-973c-3965b0934246", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--3bdcd1b8-7db1-4040-a293-b53471551d43", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--162c5e52-2f9e-4a84-aa21-cde006de1776", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--928144a6-2aa3-47b2-95fb-4ed40affa199", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--13e806dd-c82c-49a2-8f68-3a6936f10ff5", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--8b44d04c-8747-4564-8b7d-392c0c391f52", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", + "created": "2021-01-13T01:50:52.819Z", "id": "relationship--c36b1855-b14f-42da-a072-1941aa1e69a2", - "modified": "2021-01-06T18:28:43.158Z", + "modified": "2021-01-13T01:50:52.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", + "created": "2021-01-13T01:50:52.819Z", "id": "relationship--54ecf193-9cf1-4758-9851-3835ddef262e", - "modified": "2021-01-06T18:28:43.158Z", + "modified": "2021-01-13T01:50:52.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--9991378b-d504-42a0-a610-d4c1f9b888b2", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--bf512f5f-2b1c-4a0d-af38-99592ee135cf", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:43.159Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--765768ab-1cfb-45e5-a571-ca7dec5dbf63", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--f423d363-fe4f-4677-bd8d-eb859da64203", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--c5135c51-36e4-4b87-b791-a0f385f9e680", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--19a552c8-16de-441a-a4c4-c114798f105b", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.160Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--6377be32-2146-47b9-a1df-09622b85063c", - "modified": "2021-01-06T18:28:43.160Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--7b440b6a-f8c0-4971-b60a-2f71ec864a7f", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--7c4fedb8-42f7-45cc-b4d0-5d25bfd05058", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--1136c548-dedf-4b85-b457-d86cea7f775f", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--6a2b226d-03f3-43bb-821c-7f70625679e5", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--785126ce-4941-44cf-b29a-141030ab3904", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--b8b1b8e4-df84-48f3-b979-0f0ecfa71b92", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--2d4d6e49-0387-40b6-857d-889f785b25ed", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--b615f6df-f607-4c58-addb-82ed4c4cc5d4", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--7652fcee-ea22-4a3b-ae30-c4a200b60db3", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--d0547b1e-4292-4bf7-9659-4dfb9517066e", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--63ca04a5-7d91-4ce5-ac71-a2080039cc9f", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.163Z", - "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:43.163Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--bc2277f4-daa5-4604-9ae6-b09b291b4e34", - "modified": "2021-01-06T18:28:43.164Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.164Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--f0b28abc-801a-473b-b0cc-ce46caa5cc05", - "modified": "2021-01-06T18:28:43.164Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--1ef088ef-e9d0-46f7-870c-8b44a1766d66", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--dd16b72f-4efb-4ac8-bca7-d7571b3c5c71", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--2b88524d-f456-45aa-abb6-00f589a604e5", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--141637c7-3f2c-4b10-82d7-9dd7b7c8ebee", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--c43ae380-8ec0-4911-a513-14d4e16d263c", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--d74463bd-5257-41f5-bfca-599a6ccb9594", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--c4e48495-bad0-4a66-a4ca-cb1e741f89b2", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--323f09ec-3685-42db-8bfa-d94e4e5742e1", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--bba6ede7-9640-4646-870f-26afb694059d", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--86197c60-39c3-4ff8-be42-afbfa5ecf172", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--c2d21892-7c3d-45dd-9420-39cbe34216a0", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--fb6b98e0-341f-4f70-9a1f-cd25f278934f", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.828Z", "id": "relationship--79b2783f-e0b4-48c6-817a-0527e592b883", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", + "created": "2021-01-13T01:50:52.829Z", "id": "relationship--f20a8594-f705-4e36-8f3b-afe23b894370", - "modified": "2021-01-06T18:28:43.170Z", + "modified": "2021-01-13T01:50:52.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--ae2274b9-4ba9-4fb7-ae08-204fbb46bcf3", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", + "created": "2021-01-13T01:50:52.830Z", "id": "relationship--fa1f32e2-8a6c-4358-b4e4-83f5900c131e", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--95ae76f2-4310-4a4e-8d7f-9d35e4c176d0", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--5de1283f-ee5a-4f78-a5a6-21b6a2df516a", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--5fd57278-97e4-45d0-af3f-280895379042", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--56160da9-7751-42c8-9fc7-499a875fa934", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--6438d44c-a947-4c5f-9c45-b8effcfd2152", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--94ba0e80-7323-4e3a-99ec-ac52d53ade22", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--f3577cfd-96ca-499f-a02f-34e5d1050a86", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--5de67f8a-7d7f-4b1c-935e-f122961bb3e4", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--bf726cf5-3ca2-48fb-b2cf-f6e7a2a75ce2", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--95e80603-ca55-459d-9909-c5615ba66525", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:43.176Z", + "modified": "2021-01-13T01:50:52.830Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", + "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:43.176Z", + "created": "2021-01-13T01:50:52.831Z", + "id": "relationship--56160da9-7751-42c8-9fc7-499a875fa934", + "modified": "2021-01-13T01:50:52.831Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:43.176Z", + "created": "2021-01-13T01:50:52.831Z", + "id": "relationship--6438d44c-a947-4c5f-9c45-b8effcfd2152", + "modified": "2021-01-13T01:50:52.831Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--afc87e21-3864-4725-b19f-d1d1d7db0050", - "modified": "2021-01-06T18:28:43.176Z", + "created": "2021-01-13T01:50:52.832Z", + "id": "relationship--f3577cfd-96ca-499f-a02f-34e5d1050a86", + "modified": "2021-01-13T01:50:52.832Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--359ad002-fced-4d64-8809-da09e263b162", - "modified": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.832Z", + "id": "relationship--5de67f8a-7d7f-4b1c-935e-f122961bb3e4", + "modified": "2021-01-13T01:50:52.832Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--538abf12-241f-41ad-a23b-5ae186ff0ad8", - "modified": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.833Z", + "id": "relationship--bf726cf5-3ca2-48fb-b2cf-f6e7a2a75ce2", + "modified": "2021-01-13T01:50:52.833Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--8653c39c-4a4a-4588-917d-f5be9ab7ee6f", - "modified": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", + "id": "relationship--afc87e21-3864-4725-b19f-d1d1d7db0050", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--40547ead-1d57-41a3-83c0-7ce082ce84d4", - "modified": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", + "id": "relationship--359ad002-fced-4d64-8809-da09e263b162", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--3e6a29b0-f0b5-4ab8-9554-eea0aa3ca3f3", - "modified": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", + "id": "relationship--538abf12-241f-41ad-a23b-5ae186ff0ad8", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--24595f4c-2a53-4e90-8f8e-e19a7dc1f539", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--fcaa5338-f149-48f3-96f9-9845b583b20f", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--50347863-1223-45cd-b570-9593f2e4c3de", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--c5428385-879e-4ffd-bff6-bd506499c94a", - "modified": "2021-01-06T18:28:43.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--dd42798d-049a-402c-b186-5ebe9d2f5970", - "modified": "2021-01-06T18:28:43.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--e2ee4219-6f79-4329-adde-0301d2faac05", - "modified": "2021-01-06T18:28:43.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--c6fedd07-76e3-4cf5-82fd-ab9dbf3700c7", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--3bc63a3f-89fc-4392-b26e-de434ae9329b", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--de07b2e3-1234-4669-bd27-663fa13ea0fd", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--7e1e1885-d82a-4623-a618-9b85f8f780a5", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--6ae54c1b-347f-449f-8f5c-0c0ab12d05c7", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.179Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--7a55e5ba-88be-4574-ae3e-f6eb1cff4167", - "modified": "2021-01-06T18:28:43.179Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--f859bc3a-5811-4805-9e4d-12eb1a442e76", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--4d0289b0-ce4d-4912-ad67-38b649b57ab5", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--fa7f8405-65ca-4e55-bb57-9186eb4d139c", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--fa16489a-51fe-4ea6-a706-a191b6a20cbb", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--f1e651f0-fe30-4aaf-92f5-3c5f3cf8c538", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--aa903dde-81cd-4c19-9375-110060b44e14", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--5df4ec19-c331-4c6a-88ab-5a461fc5ba25", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--61edaa85-8488-4702-a839-7febb17a3dd6", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.181Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--22f61a84-9a68-400e-bdbd-a576085b281e", - "modified": "2021-01-06T18:28:43.181Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--f649d5c3-4cab-4df7-b96f-9994907f6c34", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--d8165d3d-abad-49a0-aaa0-957b07a8cfc8", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--51cb5a46-053e-42aa-a94b-dc674f8c58ea", - "modified": "2021-01-06T18:28:43.182Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--fc8f7147-a2ec-4bb9-9f61-6b137d2faacf", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--cb0bca2f-d8b1-4ddf-ab48-881be66c1695", - "modified": "2021-01-06T18:28:43.182Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--5ed4b08c-e063-427e-b4ca-f21269e05cd8", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", - "id": "relationship--fdc35d57-8238-4d2f-b3fd-82315c77cead", - "modified": "2021-01-06T18:28:43.183Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--69f28117-2350-4461-a50d-c7f9bbf1e786", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--bc03a550-428c-4869-9721-5800c919a286", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.184Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--10f0b0b3-6712-45c8-8621-cc3d50026d88", - "modified": "2021-01-06T18:28:43.184Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.184Z", + "created": "2021-01-13T01:50:52.841Z", "id": "relationship--596e3ecc-2917-4cfc-9865-c0bfbdbf9254", - "modified": "2021-01-06T18:28:43.184Z", + "modified": "2021-01-13T01:50:52.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--65be5812-4e3a-4dbe-99ed-7832cd7f8bb5", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--b4fc349b-d367-443a-832f-bb07fa24d7f5", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--19630ed3-b099-44f1-a62c-fdc99e173478", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", - "id": "relationship--3fa756bd-1851-4f6b-b47f-605681e27061", - "modified": "2021-01-06T18:28:43.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--3107fb50-3261-438f-bdc1-2736867fb4ba", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--658b22e5-f39f-45b9-a52d-e4da4642f0c1", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--0c958f1f-925b-4064-9eaf-a9c1e463ccc9", - "modified": "2021-01-06T18:28:43.186Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.186Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--66f97730-8dec-424f-bc5b-aeaad1866a34", - "modified": "2021-01-06T18:28:43.186Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--bbd93e62-539e-4ae6-802d-4f9e19a552f4", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--d160f19a-629a-4af8-92f1-a61b7612cfac", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--43af6d9d-bbcb-4c97-ba48-e1e8daf83f51", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--691aacec-6771-4257-b511-6e122731391d", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--304da300-8fe7-48f8-ba39-e8e4cfa452ee", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--1bd19f3c-9eda-4eb7-8b0a-7849c22db320", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--9b8282ef-0372-477c-be1c-bfab5efaa9fa", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--892250a1-a7a6-492b-9443-ee0c2fe5d432", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--e8b1cb7f-8d0d-41eb-8e98-99fb672d95ac", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--53373a0b-b45e-4f74-991c-5778a6131c12", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--6d6ea504-cfe4-48e9-b8f7-aea4f48bed91", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--6ad82dba-c28f-4864-a099-4fefcc20ca90", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--f6c5bc2e-6b97-49bb-94ad-604388a596f0", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--57531993-1df4-4a57-8ca4-1675062c586a", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--abbedf3f-cfe6-44f2-8381-30f7b2b75455", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.189Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--d12d4be6-2ace-4eef-8418-eac51fb31293", - "modified": "2021-01-06T18:28:43.189Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--e0426691-f462-43bc-9bb1-d3085fd5d8cd", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--c8c4b97a-58b1-4ba2-82a7-dc7fe1704158", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", - "id": "relationship--cc804eea-16a5-43df-953d-1f7859bd4530", - "modified": "2021-01-06T18:28:43.190Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--c5cfa292-1a73-4d0b-b4bf-216c7ef2071c", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--f30bb792-333f-492a-a6a0-29db66ce7833", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--f419b9d7-b581-406d-9bcc-b5f06b7cd00e", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--9f3c58a8-930e-49b7-94a4-a50be8a97d4a", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--ba037fc1-7e0f-4176-a5a3-d057079a45c7", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.192Z", + "created": "2021-01-13T01:50:52.848Z", "id": "relationship--e1e18ba8-7a5a-449e-88d1-44ee15ec8ad3", - "modified": "2021-01-06T18:28:43.192Z", + "modified": "2021-01-13T01:50:52.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--410438fa-db90-4702-a80c-0e8970ca0cec", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--efb413c2-ad11-48d4-a30c-bdfc4e4209ae", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--dbac4c7e-cd4c-432a-a2f2-e69df6561446", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--29c9e42e-fb7c-4440-8148-b47f1eec21d9", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.194Z", - "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:43.194Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", + "created": "2021-01-13T01:50:52.851Z", "id": "relationship--d312f8e3-6926-414e-ae30-badfaeb5dd39", - "modified": "2021-01-06T18:28:43.195Z", + "modified": "2021-01-13T01:50:52.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--95b2dadc-6ba2-4013-b82d-12869e2bbd38", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--a93de52e-25ad-48e1-b708-8f095cee26b3", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", + "created": "2021-01-13T01:50:52.851Z", "id": "relationship--c0a78c7a-4364-4f3d-883e-8b5b515a64e1", - "modified": "2021-01-06T18:28:43.195Z", + "modified": "2021-01-13T01:50:52.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.196Z", + "created": "2021-01-13T01:50:52.852Z", "id": "relationship--78715081-ea46-46d0-8bd4-468c75c2c9e6", - "modified": "2021-01-06T18:28:43.196Z", + "modified": "2021-01-13T01:50:52.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.196Z", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:43.196Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", - "id": "relationship--35ff655a-d124-4f67-a9be-1c6d3bcacea1", - "modified": "2021-01-06T18:28:43.197Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", - "id": "relationship--f8b0360b-17e7-44f5-bad4-0f5cd59b8f5f", - "modified": "2021-01-06T18:28:43.197Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--bf6fb1ee-f0cf-4626-9e38-6db2d5393bbd", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--63c4d23e-3b2d-4203-aeb7-2e77dd452325", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--7b8572a8-e7d9-466c-ae3e-7e858eeed7d5", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--3db8bbfd-52f4-450f-8e6f-d980233def34", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--e9d2abae-3004-4a66-bf21-08dd2cc73379", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--f6f4ea16-b7ef-4feb-9f3e-ec1ae467399a", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--db7d2671-298d-40b4-a025-b6fc98d281a8", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--a498c74a-3fce-4bda-8709-9690057336e7", - "modified": "2021-01-06T18:28:43.200Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.200Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--c210fa7f-f834-43c1-b95b-511219fd2f48", - "modified": "2021-01-06T18:28:43.200Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--92ca06a0-4355-4485-a405-ed3057cd823e", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--fd1bf041-5d9a-4dec-b62c-78355bf91867", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", - "id": "relationship--e211e52b-a2d5-496c-88c5-9fc6c368d2de", - "modified": "2021-01-06T18:28:43.201Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--6f4f6289-082a-425a-9b97-ae3284287166", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", - "id": "relationship--68732f78-9d7d-4fa2-a306-4cc51f30d9ff", - "modified": "2021-01-06T18:28:43.201Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--7eb8321a-62e4-4380-98a6-2ea14eefa3c9", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--e8d883ea-f56d-4c56-b819-777a7729dcfa", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--4bda8639-882e-4ed4-98b3-6fdd38a79818", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--faccd1b9-0ac5-44ce-a18f-9af1d56b4f83", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--69a0f355-ff87-4694-a5eb-d3123aacb378", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--d804dc61-35b8-453c-adba-95cf74119cf4", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--99aad811-60e4-42b4-93fe-671f7c30437f", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--b03bad85-6591-4c7c-9fb2-0e2c853c7020", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.858Z", "id": "relationship--bc367467-c5d9-4c74-9ecc-224801441d6a", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--d5a6a834-1eea-401f-91b6-573fdf8209d9", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.203Z", + "created": "2021-01-13T01:50:52.858Z", "id": "relationship--f3b0150b-be62-4811-8181-6a94898b7b5d", - "modified": "2021-01-06T18:28:43.203Z", + "modified": "2021-01-13T01:50:52.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", - "id": "relationship--e9c8dfaa-c489-4d94-a71a-41edff1158d4", - "modified": "2021-01-06T18:28:43.204Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.204Z", - "id": "relationship--1be41b7e-9e66-4a4f-a8d9-791982fc49ec", - "modified": "2021-01-06T18:28:43.204Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--d945795b-3da1-48c3-a817-0b153c6fcdd0", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--946193c5-947d-4867-a985-92f1fa767b00", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--ee8e1507-79f0-4108-9de1-2c946e382280", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.860Z", "id": "relationship--3ab892d0-2d3b-4c8f-85e2-49ea364ac10f", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.205Z", - "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:43.205Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--1ef5050e-834d-4a71-beb6-09e19f1e224d", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.861Z", "id": "relationship--99b366fb-5955-49fc-9936-9854542063f4", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.861Z", "id": "relationship--5b0e49fa-170f-4750-a7a8-4b593cca2f1e", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--8a61d65f-f954-49ec-ae4f-a262141db654", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--85920706-ff0a-4944-9883-88740b932d35", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--d5ef8b73-a512-4c0c-8d05-ba7bc8ec2452", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--9b36f12c-0354-4d8f-81f3-0494d0304119", - "modified": "2021-01-06T18:28:43.207Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--9b231937-78ec-4376-9403-db3cb343d38f", - "modified": "2021-01-06T18:28:43.207Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.208Z", - "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:43.208Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.864Z", "id": "relationship--1e368ce4-5ac1-4467-810d-3a3b1a48922a", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.864Z", "id": "relationship--f88f5123-3450-44c3-ba1d-2d3b5e293166", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--665a6c15-a71e-4384-89b2-2bdf3c469205", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.864Z", "id": "relationship--01c9b773-1ea0-44cf-b0ac-acd08a082305", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.865Z", "id": "relationship--d198e9ca-1ea1-4828-8a78-23ea41a024db", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.865Z", "id": "relationship--03160d4f-cbd0-409d-b858-f8c89d05d81e", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.210Z", + "created": "2021-01-13T01:50:52.865Z", "id": "relationship--bf83a299-c025-47f2-a97a-fa98899f0087", - "modified": "2021-01-06T18:28:43.210Z", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.210Z", + "created": "2021-01-13T01:50:52.865Z", "id": "relationship--619a7a24-cfe9-48de-8d84-66c410be3cd6", - "modified": "2021-01-06T18:28:43.210Z", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--8f08fd61-06f7-4a69-a2de-dd77059011f2", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", + "created": "2021-01-13T01:50:52.867Z", "id": "relationship--17636354-9485-4c44-9167-04a881668580", - "modified": "2021-01-06T18:28:43.211Z", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.867Z", "id": "relationship--4de7b2c9-e07e-4db7-9873-76227ced39b0", - "modified": "2021-01-06T18:28:43.212Z", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.867Z", "id": "relationship--6bb64de8-0701-4fad-9b90-fc6d5831a136", - "modified": "2021-01-06T18:28:43.212Z", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.867Z", "id": "relationship--130fb8cb-f4de-4200-8f6b-8b51fe1cfe76", - "modified": "2021-01-06T18:28:43.212Z", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.867Z", "id": "relationship--e377efa2-0364-48a4-8a0c-877c2939a357", - "modified": "2021-01-06T18:28:43.212Z", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.868Z", "id": "relationship--ad2b62fb-f6a5-4b6a-b226-66be2cadcd46", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:43.213Z", + "modified": "2021-01-13T01:50:52.868Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:43.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", - "modified": "2021-01-06T18:28:43.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--255adae6-4658-4747-b6bc-a5ca6c2b32df", - "modified": "2021-01-06T18:28:43.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:43.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:43.213Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.868Z", "id": "relationship--92b276c4-69c8-4fa9-b44d-766434204cfd", - "modified": "2021-01-06T18:28:43.213Z", + "modified": "2021-01-13T01:50:52.868Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--3292261a-c4bd-41fc-9b64-9d797c29c1ec", - "modified": "2021-01-06T18:28:43.213Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--52c8fa90-e50e-43d3-9c07-c864d4806bfe", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--919da082-0b49-4bfa-b303-c76fd3d1c1b6", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--1cdd1d54-8954-4314-a17d-54da02b38d6c", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--fa248d25-b911-4320-82ad-c63e36d86582", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--3bd00c69-cc87-4027-966a-732b20ec0a21", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--892f97c9-81f5-459b-8765-947b4154ab6d", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--a5c0ed42-0317-4d60-9086-8532022fd6f4", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--33305e0f-15f8-47ba-9b00-49bcc41b6d4e", - "modified": "2021-01-06T18:28:43.215Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--fdecfaf9-578c-4cb6-9b71-d4ffcf37e59a", - "modified": "2021-01-06T18:28:43.215Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.216Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--7e35e318-e566-4736-a3e8-ef0bf291bc1a", - "modified": "2021-01-06T18:28:43.216Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.216Z", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:43.216Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.216Z", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:43.216Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.217Z", - "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", - "modified": "2021-01-06T18:28:43.217Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.217Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--a78aa792-e3a9-49cc-9b1a-f1c5ce251ba7", - "modified": "2021-01-06T18:28:43.217Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.217Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--80220d1e-eafe-40f5-9385-f175c00cb929", - "modified": "2021-01-06T18:28:43.217Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", - "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", - "modified": "2021-01-06T18:28:43.218Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--07157080-2d64-4685-8e7e-7e80b4bd20d8", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--df97cc84-95cf-4c1a-b755-0d196da78f29", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--c34bd583-646b-4e12-8040-7d99a77ca3e1", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:43.218Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.219Z", + "created": "2021-01-13T01:50:52.873Z", "id": "relationship--9880a00a-628e-4c19-9062-87adeea8d57d", - "modified": "2021-01-06T18:28:43.219Z", + "modified": "2021-01-13T01:50:52.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--78fa1fab-a254-4981-860d-c7b68beab199", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--7683551a-3cb3-4035-b3ab-68a35cc70e10", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--78fadf84-7c79-4293-9ef0-6a4bb0f66c71", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--9b3a58cb-d7a3-4f8b-bf8f-0e50ea3e2254", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--a1e93c64-e612-4583-b7a8-731e29ef981e", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--0db523cb-d6fb-46b0-aab1-82138a3f2e88", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--a98ddffc-6f97-4b99-8617-edb5d7226919", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--5489d95a-1bdb-491d-83a7-7fb8a3d4463c", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.221Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--74c2710a-66bd-4d8e-bf87-8e0ccc82a950", - "modified": "2021-01-06T18:28:43.221Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--1cd88d83-c89f-40fa-9433-564dbeb4b4e0", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--33944dfc-42ce-4faa-9822-756d718d4f56", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--e951935f-b9a8-4f11-9de7-04574cb8ad92", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--53181246-e009-4bbc-acde-0c7451a5ceba", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--b1b46518-ca98-49bb-a309-df541ffb7d0c", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.223Z", - "id": "relationship--9be306f0-b40f-414c-8de6-458702c10f0f", - "modified": "2021-01-06T18:28:43.223Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--8d6c17ab-fe2f-425b-b854-5c7b15dc4475", - "modified": "2021-01-06T18:28:43.224Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--da4d8e2b-c621-4bb0-853c-7788f92984c9", - "modified": "2021-01-06T18:28:43.224Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.225Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--6e13eb2c-bb71-4067-bc5a-f4b85f8051b3", - "modified": "2021-01-06T18:28:43.225Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.225Z", - "id": "relationship--70b3f1c3-e451-48ac-bf21-b4b0c71bdcbc", - "modified": "2021-01-06T18:28:43.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.225Z", - "id": "relationship--185adffe-6ba2-4273-a016-ea6a675194ae", - "modified": "2021-01-06T18:28:43.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--0042c8e0-144f-4925-b9ea-11d2eda07e9e", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--b4b6aeee-e146-48dd-9bfd-486fe9d5ef2c", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--64df4585-cdd2-45f5-ba25-c9250932f330", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--3fcae9fb-a594-4d90-b03e-66f846a0cd77", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--f02053c2-1603-4072-bc31-e474027dc136", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--677dd62b-50c7-46b7-a9ae-1cf0016459e4", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--f39c0f9d-a61e-4846-9767-ff39659753db", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--5e309e61-9448-47b6-a815-88367954f7ca", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", - "id": "relationship--573120db-1fc9-4cf1-986e-e72ba5e4df1e", - "modified": "2021-01-06T18:28:43.227Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.227Z", - "id": "relationship--dff4d6a4-174c-45c0-93a5-0baf828e8630", - "modified": "2021-01-06T18:28:43.227Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--e6ee2e79-92b0-40d1-aef8-61cd7bb016a9", - "modified": "2021-01-06T18:28:43.228Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--60f73db9-ff96-4af7-be1e-fe42e76d1c6c", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--24308bb8-fa9b-4dc3-9851-ccb6bd498fe4", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--7a8d942f-c6fa-4bab-a9ad-faca4b22f9b2", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--54c8d65b-afcb-49af-80d1-4771e41a8e23", - "modified": "2021-01-06T18:28:43.228Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--9623b3a7-699c-48d0-9fa6-084f416a909f", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--7b782b8e-13b6-4795-bdcf-5f239212c816", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--17e86d1f-eedc-4003-9185-34f5d6b52e19", - "modified": "2021-01-06T18:28:43.229Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--43f1889a-8025-4156-9083-9d2eb51bd833", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--9a45776b-544d-45e9-9a12-6de91953bad4", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--efe17a93-9e63-4578-9fbf-c8dfc165687c", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", + "created": "2021-01-13T01:50:52.882Z", "id": "relationship--72d0282b-4262-4f07-94ff-9eee8fbe4d40", - "modified": "2021-01-06T18:28:43.230Z", + "modified": "2021-01-13T01:50:52.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--e2d5805b-abde-460b-8d76-9bc9831ba50e", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--f053ae47-5436-47cf-b56c-b1d000a28940", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", + "created": "2021-01-13T01:50:52.882Z", "id": "relationship--955c2f5a-943a-40c5-a824-3198e6df77ae", - "modified": "2021-01-06T18:28:43.230Z", + "modified": "2021-01-13T01:50:52.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--3556c095-33ff-4411-b913-c5dae06ca5c1", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--dd748a24-1f3d-4974-86eb-2d137cf69c5a", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--9afcabd0-59e9-4978-9677-3429891cbcea", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", + "created": "2021-01-13T01:50:52.883Z", "id": "relationship--cd022aba-adb5-4d82-b41a-9e2cd381ce15", - "modified": "2021-01-06T18:28:43.232Z", + "modified": "2021-01-13T01:50:52.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.232Z", - "id": "relationship--8ef7e7ca-7e31-4d76-8605-e4ab490d38bc", - "modified": "2021-01-06T18:28:43.232Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", - "id": "relationship--9d4c0eae-bfa9-49f6-a734-820a8594d71b", - "modified": "2021-01-06T18:28:43.232Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", + "created": "2021-01-13T01:50:52.883Z", "id": "relationship--5e96067b-0488-4107-8ab0-a51cc4f765ad", - "modified": "2021-01-06T18:28:43.232Z", + "modified": "2021-01-13T01:50:52.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--b954d500-cfd1-46b5-bae3-7c4c9695b0c9", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--20dc8172-e055-4118-bbcf-e16db1faef02", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--33d19ae2-946c-4f3a-b1b3-f9e9f5960c24", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.234Z", + "created": "2021-01-13T01:50:52.884Z", "id": "relationship--42f1dce3-8f91-47ab-9a66-87ff2b656baa", - "modified": "2021-01-06T18:28:43.234Z", + "modified": "2021-01-13T01:50:52.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.235Z", - "id": "relationship--59bb170b-ac30-41c6-a96d-9a8b483d7334", - "modified": "2021-01-06T18:28:43.235Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--5a73e757-e951-4269-9f35-0bb6f5361b0a", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--7e5e57c6-7eb6-4dc2-aeb8-fbae798ccbfd", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--a5329576-ea4b-4435-9fe1-04f42fb06f5c", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--c6d8d3d0-1c0b-4b04-9b6f-2d3915c604b6", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--72ae01ac-9079-4a46-b5bc-e0a2c8100380", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--99709171-a6c6-4a0a-bd87-ae334b0a87c6", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--6ec8417a-6142-4814-af0a-6afb14b6eb74", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--230d1974-1dce-4940-91ca-d24c7dc9f1a0", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--66ffb502-547c-4765-97d2-3d9fec73e3d8", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--7a159cc0-5796-46dc-a1a3-cbeaf1465bd3", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--184a0a0b-fd8f-45e0-b787-049d02f5027e", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--85349f0d-ad08-43ed-800d-854c8b84468c", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--c7a962b9-0c1d-48d3-a60d-6623b2076a85", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--867cc3d2-75d5-4443-8d0d-85fcc10bd108", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--30523245-ac13-4ca8-bec5-106789f0d712", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--59ae72dd-02ed-433e-9a13-5eeeec3f1003", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--d22827ac-de19-441e-9693-7058994b3210", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--87d77613-ea8f-4820-9cc9-44d0b9072dc6", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--2b9e0f24-4503-4f81-a7bf-6a03c8a7630e", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--e35f3a5c-c9a5-4c7d-9f7b-54c7248a83a0", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--a0039c37-4dd6-4684-be58-bce111457b2a", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--1b5a08ab-4bda-4267-b6f3-515b4c4ecd39", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--f820f6d6-35e3-4d7b-96a4-d51c9df5769a", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--ef0c3bbf-9ce5-4db0-81d9-96bec1816508", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--ef34e4bb-582c-484a-9132-15ef6d4818d8", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--eb6d519a-7665-4ef9-aa90-fd58a82c0f4b", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--22fd9121-403b-4c0a-9ec7-7cd2105797f5", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--41e6a1b6-ae12-461f-9b82-39af2d542222", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--595283af-99ff-47e8-8aa1-e75a47e54954", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.240Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--0c96f925-06b3-49a1-a47e-1ead7ce497d0", - "modified": "2021-01-06T18:28:43.240Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.240Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--f4c4fd20-0445-4a96-809e-5ad9567b0482", - "modified": "2021-01-06T18:28:43.240Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.241Z", - "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", - "modified": "2021-01-06T18:28:43.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--e9669724-a0cb-4b52-89ec-3f49357070f7", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--ebbe7bfb-d8be-4a0c-9332-2122972516d9", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--4a8a71d6-de94-4e00-a40f-796250dc3e30", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--34ca3f0d-479b-432a-b01b-643d20267381", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--6db398c2-2cf2-4f9b-8560-36fc15eae491", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.892Z", "id": "relationship--c2072bff-ddb2-4774-88f4-27461d62bfa2", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.892Z", "id": "relationship--df69504c-c9f6-4ce1-9423-13cd576ac3a7", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--2b974437-7b4a-4e8b-9ac5-e28ceb07a459", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--270d263a-813f-45d4-94ea-0e2444d77ef4", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--6c1333c2-26d8-4b30-bd4c-3ca9964f1199", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--b82a8522-f937-4ef2-8a38-91a1dd74fe08", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--e6af9786-b773-4b85-ac49-2c2ecf9423f0", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--6795f350-6bcf-435c-b802-9037ed71c410", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--c9947cbb-41ef-41b8-973d-de43596a60ca", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--5c01eb88-1f69-4986-9f25-5a44baaf4c59", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.894Z", "id": "relationship--4772c166-5ce6-4824-81c2-62ecece78691", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.894Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.894Z", "id": "relationship--afb0c94e-3ec9-4d5d-abb0-fb9a05674c13", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.894Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.246Z", - "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:43.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--44e64d80-33d2-4be4-85ed-303cce9ffc3c", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--5deba688-96fa-4bde-8001-fb7e230c1207", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--ea6c1a53-0e5d-4d6f-a507-3fc5572b3ea2", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--2f8a6272-f66a-488c-8113-9af44f6b119a", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--22797600-cfbf-4b47-b627-37f88d379d63", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--3575ea4b-b0fe-4651-88c1-f29341219ebc", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", - "id": "relationship--872a7b4f-9ed5-4871-a149-1d7fd43a7d6d", - "modified": "2021-01-06T18:28:43.248Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--771f8cb6-89bc-4c0e-9c45-eae8d1ee0c3d", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--4c8334e7-0334-499a-bb1e-19744c7c81a6", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--54d6a61b-8003-44d2-a725-fc36d3112390", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.249Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--ba3b587f-1886-4b40-8dea-3d547f242b61", - "modified": "2021-01-06T18:28:43.249Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.249Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--d5f0590c-8239-4b95-bfe2-7f51567ab8fb", - "modified": "2021-01-06T18:28:43.249Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.251Z", - "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", - "modified": "2021-01-06T18:28:43.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.252Z", - "id": "relationship--e6b7e8c2-6744-4fcb-bbab-dab88c078f02", - "modified": "2021-01-06T18:28:43.252Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.252Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--6d48bdee-7311-43b5-bd34-4e68505a0cbe", - "modified": "2021-01-06T18:28:43.252Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.252Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--e49f76ef-9813-46a9-b6ec-0e5e45402bbb", - "modified": "2021-01-06T18:28:43.252Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.253Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--1fe3d585-9fb1-4059-a41d-ef1f6dfa12b9", - "modified": "2021-01-06T18:28:43.253Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.253Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--950b1685-52e6-45ec-b5b3-72a927752382", - "modified": "2021-01-06T18:28:43.253Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", - "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", - "modified": "2021-01-06T18:28:43.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--11f461a5-45cf-4791-aaf3-8478ebcf04ce", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--559327e7-99e1-4bd1-b829-5c6e09741015", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--f3a6278e-f715-4156-9108-58b4707d6b06", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--2b1fa6db-28c1-454e-86f5-1de7c7e8b870", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--c2c0f41c-ce1b-42c7-b092-0bb941f56dfc", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--20102fa2-d6be-45b3-a413-07827fd06faa", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--50a9a917-df48-4a1c-b845-985bfb404d1c", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--2533800d-8869-418e-937d-e632ea4f2697", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--1c64d78c-8993-4f5d-8e81-692346708941", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--c5159d19-65ef-44a3-b6a1-a62360d7c4df", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--e45a59c1-c4c0-44fe-bbbb-fd817ae34ca9", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--fbfd1d4f-d699-49ad-84b7-4c38f78ed9e1", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--993d06cc-b071-4be4-87a0-125f0f76e06e", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--146a7ca8-bf78-4873-aa7e-bae10593250a", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--a01bd734-2f9e-49c1-ade8-cded1fad8f2a", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--941d8b0e-299f-41c4-bd3c-cb5a03ebb647", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--91c34275-1049-4084-9e35-6d59e3489bc7", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--fe762152-3b4f-49c2-94b4-a53b421ba69c", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--456c74a9-5919-43bd-99b2-d13ec0652cc9", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.260Z", - "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", - "modified": "2021-01-06T18:28:43.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.260Z", - "id": "relationship--8ab5f062-8f12-4f38-bdf9-e3a2156e1379", - "modified": "2021-01-06T18:28:43.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", - "id": "relationship--72add5e5-d08f-4270-bf64-9eceda8ad597", - "modified": "2021-01-06T18:28:43.261Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.902Z", "id": "relationship--3eebfa45-7e23-49d1-889d-47983f719b87", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.902Z", "id": "relationship--929ff7c2-3bdb-42b9-b6f2-8355069ae024", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.261Z", - "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", - "modified": "2021-01-06T18:28:43.261Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--0e5bd1fc-4d93-40e7-b044-9420a9d7eeed", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--fab21101-a142-40be-bc61-e134dad19b4f", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--0a9839c1-bf42-44bb-bc58-4edc8163db59", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--c1fba6ae-5795-4d48-8976-445ab6fd1839", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--2951e069-bb5b-41d5-844d-9a2a971ac59c", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--d4f5a57c-df58-4719-8c3c-9dd5e62deacb", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.262Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--d7f9dca3-4098-42e0-a5a8-1edd58705e1e", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--6ebb8095-369f-4909-b0fb-f8cdb002ddd0", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--cf05bbf1-be54-4c38-a5dd-afd85688a192", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--b7b90694-8efd-4ac4-bc3d-c3706f510e6d", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--db5ad2f8-5492-41d1-aa25-0f3dcca15150", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--6fb4a4d1-f03a-45ae-bcb6-f4adc47299e9", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--f06cc881-da46-44d6-a9f0-1831025b41f7", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--8535a63d-a902-4229-a522-a98c279361ad", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--97a8b79b-1cab-492b-a228-996e7ae797d0", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--b4d25008-5269-496b-9e22-62164b2894d0", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--26b214e2-4a53-4168-b908-4f6a2e71891d", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.906Z", "id": "relationship--a26a4368-12eb-4ec6-8591-c639cf4233c9", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.266Z", - "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:43.266Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--1ca6879a-dec4-47e0-b3da-c7e93379f730", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--80ff3df4-649f-44e7-882d-210c7384b4f5", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--ea1aba24-6f6d-48cd-9e1c-4da2cf827e1d", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--df4e580a-93ba-473a-87b9-70edcea0ab47", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--2fdfb330-4d9c-4d83-9e04-355c53bbc7f8", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--c73cb566-4481-4c02-b033-8ec6dc4dbc56", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--d9651b51-5b23-4921-ab59-747f144dde13", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--f117d9e2-6d34-41bc-a254-4015f6f70353", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--feb13b39-dc45-4ef2-aea5-7e3c19b0976c", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--40122ea9-da0d-4456-b38c-75176b2b5026", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--0edf8bf4-8c39-44a0-984e-8889e8badb99", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.269Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--ac8b0306-1ecf-46e0-a3a5-502ddc51509a", - "modified": "2021-01-06T18:28:43.269Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.269Z", - "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:43.269Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.270Z", + "created": "2021-01-13T01:50:52.909Z", "id": "relationship--267165e0-8a8b-4cd3-93ab-7ea2debadc7e", - "modified": "2021-01-06T18:28:43.270Z", + "modified": "2021-01-13T01:50:52.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.270Z", - "id": "relationship--c27a415e-6ae0-4f52-a69f-194c6cfe05fe", - "modified": "2021-01-06T18:28:43.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.270Z", - "id": "relationship--d3f1b214-c7c8-46f9-86ad-6b4890ecffb2", - "modified": "2021-01-06T18:28:43.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--02684a4e-2117-4044-bf00-c19ac51f765c", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--a38248e6-e56a-46af-8b83-f2a9999369ff", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--d3c66141-f7f0-4c9b-a3a4-61c41ddfe43c", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--d064b29e-3f64-4164-9a28-0f6bddd809e0", - "modified": "2021-01-06T18:28:43.273Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--6bc4e8ea-6737-414b-8833-b5de67900241", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--de79aadf-2a0d-4b2a-93e0-3a14acf895e5", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.273Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--30c3e808-6aa5-48b7-a029-9901a832ba03", - "modified": "2021-01-06T18:28:43.273Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--de5e4e56-5978-4b3a-807b-74d520ea5c72", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--da8bae22-759f-46b9-8dae-d6474fd59d1b", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", + "created": "2021-01-13T01:50:52.912Z", "id": "relationship--d8320295-42c5-4098-b22c-c79961cb5c11", - "modified": "2021-01-06T18:28:43.274Z", + "modified": "2021-01-13T01:50:52.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--3b4c2587-2937-404c-8ffa-587d63add267", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--811d7a32-4bb5-4382-8231-3c89c603633e", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--39c837e6-6289-4ac2-9091-758faca0feee", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--6a14c995-7859-4ee0-89fa-381d45ba1205", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--343a7919-f99c-4a82-a3ac-7efcb46a71cf", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--6a5ed004-7968-4ca2-a64b-0839485eeef5", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.277Z", + "created": "2021-01-13T01:50:52.914Z", "id": "relationship--bafe3471-15a3-46c1-8d45-f8c51fd79537", - "modified": "2021-01-06T18:28:43.277Z", + "modified": "2021-01-13T01:50:52.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.278Z", + "created": "2021-01-13T01:50:52.914Z", "id": "relationship--1246e341-b2bc-44dd-a4f4-9c933953690f", - "modified": "2021-01-06T18:28:43.278Z", + "modified": "2021-01-13T01:50:52.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.915Z", "id": "relationship--0b071a83-769a-4949-8041-a60baf21b362", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.915Z", "id": "relationship--3c1ad469-e50a-4b95-a3a2-3da976751751", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--7ddbece2-319b-459c-ae63-d8172483d295", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--5d70aff5-ce6c-47f1-b545-4a1a27bbfed3", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", - "id": "relationship--9ffb0125-920f-4821-9af7-cf2af4cbbce8", - "modified": "2021-01-06T18:28:43.279Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--4d233343-ade8-401c-b143-1dbf3e2055a4", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--6af5809f-f0cb-4a4d-a400-80083a0f6521", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--4371adfa-df38-4603-9696-e57fed241678", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--20780422-0bb1-40c6-98f8-175baac3d82a", - "modified": "2021-01-06T18:28:43.280Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.281Z", - "id": "relationship--b7d6c9b5-30cc-47ab-8250-abe6c18e3851", - "modified": "2021-01-06T18:28:43.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--3f6e877b-a793-4e5a-ae8c-484a227d1c94", - "modified": "2021-01-06T18:28:43.282Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.283Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--633612a2-7fc1-47f1-ab93-99c84bc4a584", - "modified": "2021-01-06T18:28:43.283Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.283Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--77fa70a5-bb9b-4b38-b135-808bac414442", - "modified": "2021-01-06T18:28:43.283Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.284Z", + "created": "2021-01-13T01:50:52.919Z", "id": "relationship--4353dd93-3cc5-4d0e-b888-de73bdf67ad7", - "modified": "2021-01-06T18:28:43.284Z", + "modified": "2021-01-13T01:50:52.919Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.284Z", + "created": "2021-01-13T01:50:52.919Z", "id": "relationship--7dc16443-4a1a-481e-8cd0-f114ee7ee2db", - "modified": "2021-01-06T18:28:43.284Z", + "modified": "2021-01-13T01:50:52.919Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.285Z", + "created": "2021-01-13T01:50:52.920Z", "id": "relationship--d135bc50-6c52-4fc5-9994-bbabfb486164", - "modified": "2021-01-06T18:28:43.285Z", + "modified": "2021-01-13T01:50:52.920Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.285Z", - "id": "relationship--b977b261-831d-47fe-9c77-bb7cd387be1e", - "modified": "2021-01-06T18:28:43.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.285Z", - "id": "relationship--ef8b0c11-3ff9-48b4-b0bf-70830dee27e9", - "modified": "2021-01-06T18:28:43.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", + "created": "2021-01-13T01:50:52.921Z", "id": "relationship--1e29c34b-cd76-4b75-b2f5-be87cd41ac25", - "modified": "2021-01-06T18:28:43.286Z", + "modified": "2021-01-13T01:50:52.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.286Z", + "created": "2021-01-13T01:50:52.921Z", "id": "relationship--d1e30928-c09f-4de7-a1de-5eb83e5aa09c", - "modified": "2021-01-06T18:28:43.286Z", + "modified": "2021-01-13T01:50:52.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.287Z", - "id": "relationship--5363c89a-6f80-4a5d-9a5c-3cccd39976a9", - "modified": "2021-01-06T18:28:43.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.287Z", - "description": "Continuous Monitoring", - "id": "relationship--8d58226a-0b58-4f4c-80f3-d7013cebe97f", - "modified": "2021-01-06T18:28:43.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.288Z", - "description": "System Monitoring", - "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:43.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.288Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.923Z", "id": "relationship--d32e3b64-645a-4ac9-9cef-08c32406cb62", - "modified": "2021-01-06T18:28:43.288Z", + "modified": "2021-01-13T01:50:52.923Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.289Z", - "description": "Continuous Monitoring", - "id": "relationship--8d37e36f-af7f-49f0-b8fc-ad83247a6db8", - "modified": "2021-01-06T18:28:43.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.290Z", - "description": "System Monitoring", - "id": "relationship--90cd0928-5e32-4ef7-8936-5d00d760368b", - "modified": "2021-01-06T18:28:43.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.291Z", - "description": "System Monitoring", - "id": "relationship--34bcd1dc-25cf-4838-a45f-b177b8bf08a8", - "modified": "2021-01-06T18:28:43.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.292Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.926Z", "id": "relationship--1bdaa66c-bf90-4628-a969-93612750c055", - "modified": "2021-01-06T18:28:43.292Z", + "modified": "2021-01-13T01:50:52.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.293Z", - "description": "System Monitoring", - "id": "relationship--d5f0590c-8239-4b95-bfe2-7f51567ab8fb", - "modified": "2021-01-06T18:28:43.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.293Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.927Z", "id": "relationship--484b6c2e-9ab6-4bc6-9a88-35ba9a921a18", - "modified": "2021-01-06T18:28:43.293Z", + "modified": "2021-01-13T01:50:52.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.294Z", - "description": "Continuous Monitoring", - "id": "relationship--6c789fad-0139-423c-ac9e-041ee105bb47", - "modified": "2021-01-06T18:28:43.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.295Z", - "description": "System Monitoring", - "id": "relationship--20102fa2-d6be-45b3-a413-07827fd06faa", - "modified": "2021-01-06T18:28:43.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.295Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.929Z", "id": "relationship--007da041-716d-4b28-bfa9-71117e31e16f", - "modified": "2021-01-06T18:28:43.295Z", + "modified": "2021-01-13T01:50:52.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.296Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.930Z", "id": "relationship--3e804053-e657-4af8-a624-6443cfb63efa", - "modified": "2021-01-06T18:28:43.296Z", + "modified": "2021-01-13T01:50:52.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.296Z", - "description": "System Monitoring", - "id": "relationship--456c74a9-5919-43bd-99b2-d13ec0652cc9", - "modified": "2021-01-06T18:28:43.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.297Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.931Z", "id": "relationship--bc593f23-784d-40f2-a11b-40a9bcda89cd", - "modified": "2021-01-06T18:28:43.297Z", + "modified": "2021-01-13T01:50:52.931Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.298Z", - "description": "Continuous Monitoring", - "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:43.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.299Z", - "description": "System Monitoring", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.300Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.933Z", "id": "relationship--15c8bc08-5c69-49f9-8133-84dffd9ee28e", - "modified": "2021-01-06T18:28:43.300Z", + "modified": "2021-01-13T01:50:52.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.301Z", - "description": "Continuous Monitoring", - "id": "relationship--b84f5fdc-a960-4ca7-867a-576a195b5d42", - "modified": "2021-01-06T18:28:43.301Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.302Z", - "description": "System Monitoring", - "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:43.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.302Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.935Z", "id": "relationship--cc73c770-48cc-49a6-8022-bfa13dcbe1d0", - "modified": "2021-01-06T18:28:43.302Z", + "modified": "2021-01-13T01:50:52.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.303Z", - "description": "Continuous Monitoring", - "id": "relationship--941360cc-457e-416a-9504-abf9df53a07c", - "modified": "2021-01-06T18:28:43.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.304Z", - "description": "System Monitoring", - "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:43.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.304Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.937Z", "id": "relationship--33fd05bd-d39c-4a15-b756-1e7ba7abdc7c", - "modified": "2021-01-06T18:28:43.304Z", + "modified": "2021-01-13T01:50:52.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--319a4380-c046-49db-99ea-c8bd649f40c8", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--1901de01-44f2-465d-8104-7821fc986ae0", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--872c112f-52bb-4295-9c2d-135af1b4befe", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--a695d77b-3a8d-40d5-b315-82b7a5cecf2d", - "modified": "2021-01-06T18:28:43.306Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--f66f8070-3851-4836-adde-56abd3b32771", - "modified": "2021-01-06T18:28:43.306Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:43.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--685dbcaa-5bbe-4b07-bd11-f57d3ecbfb38", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--d9b16d95-5857-4d67-a1b9-8f0fc0fa1d06", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--daa293a6-e721-42a0-bb5e-dadafdff53c2", - "modified": "2021-01-06T18:28:43.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.940Z", "id": "relationship--c07d02c7-7d09-4687-aca4-8f0a39dd4fd8", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.940Z", "id": "relationship--a8ef02cf-1085-4b14-bf94-f84a843d2b47", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--53d8923c-b0ac-4525-b219-5548e517f037", - "modified": "2021-01-06T18:28:43.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.308Z", - "description": "Flaw Remediation", - "id": "relationship--4772c166-5ce6-4824-81c2-62ecece78691", - "modified": "2021-01-06T18:28:43.308Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.309Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.942Z", "id": "relationship--8f5913d5-e5e4-4dab-8262-d3aa0aab809a", - "modified": "2021-01-06T18:28:43.309Z", + "modified": "2021-01-13T01:50:52.942Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--9dfdc6d3-86a1-4484-95c8-2d9b5746346b", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--cb7c36a2-d61a-4efb-9535-08a9e20359ba", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--a8b6368d-4fe9-46f8-912a-de08a9f31bdf", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.311Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--8d5137dc-3997-4ee0-bb69-c591f1dad69c", - "modified": "2021-01-06T18:28:43.311Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.312Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.944Z", "id": "relationship--0ddccb95-bb3c-4f0d-b7cd-f006ff0dd571", - "modified": "2021-01-06T18:28:43.312Z", + "modified": "2021-01-13T01:50:52.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.312Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.945Z", "id": "relationship--6105fcb9-dc1c-471a-98cf-d34c28b3714f", - "modified": "2021-01-06T18:28:43.312Z", + "modified": "2021-01-13T01:50:52.945Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.313Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.946Z", "id": "relationship--8fc260d2-724b-4f4c-90e7-f426a40a42ef", - "modified": "2021-01-06T18:28:43.313Z", + "modified": "2021-01-13T01:50:52.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.314Z", - "description": "Vulnerability Scanning", - "id": "relationship--ee9acb10-cf11-42b0-9462-06cf4d3d1153", - "modified": "2021-01-06T18:28:43.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.315Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--28e9dcff-42ec-4e14-b1f7-24f276e1de11", - "modified": "2021-01-06T18:28:43.315Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.315Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--8d2ee56d-5801-4170-a828-860c66aed04f", - "modified": "2021-01-06T18:28:43.315Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.316Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--80c8cf4d-5fa8-49dc-af3c-8164684299ae", - "modified": "2021-01-06T18:28:43.316Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--7e98983c-c72e-4cc7-817d-532c98cbdec3", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--8c9f9e04-c350-4da9-b1d0-719c04ae297e", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--bd3e4340-9ecc-420c-b591-b4a558a0589e", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.318Z", - "description": "Vulnerability Scanning", - "id": "relationship--cde1aa43-c993-4754-ae0c-604e92fd6ddf", - "modified": "2021-01-06T18:28:43.318Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.318Z", - "description": "Vulnerability Scanning", - "id": "relationship--5e302437-98dd-4751-80f7-63ceb77aab4d", - "modified": "2021-01-06T18:28:43.318Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.319Z", - "description": "Vulnerability Scanning", - "id": "relationship--c208c3cb-017c-424a-ad2c-19c45ea8fdee", - "modified": "2021-01-06T18:28:43.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.319Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--98a7929a-74cc-4876-950d-0a29a934cc53", - "modified": "2021-01-06T18:28:43.319Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--afb840d0-a4a7-46cd-91ed-2c2b9193394f", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--e2b6ea4d-64c2-4f76-ad76-6758fc521e07", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--5ba9cfde-43d3-463c-b578-bf2f9a542eae", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--e2a00ca3-6fa2-4d19-bb87-c44adf5c2fd9", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--dac0ba70-8dfd-4585-8bec-5c832cb40e68", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.321Z", - "description": "Flaw Remediation", - "id": "relationship--2951e069-bb5b-41d5-844d-9a2a971ac59c", - "modified": "2021-01-06T18:28:43.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.322Z", - "description": "Flaw Remediation", - "id": "relationship--26b214e2-4a53-4168-b908-4f6a2e71891d", - "modified": "2021-01-06T18:28:43.322Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.323Z", - "description": "Flaw Remediation", - "id": "relationship--0edf8bf4-8c39-44a0-984e-8889e8badb99", - "modified": "2021-01-06T18:28:43.323Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.324Z", - "description": "Flaw Remediation", - "id": "relationship--2acacc19-1edb-421a-a885-6871027a3097", - "modified": "2021-01-06T18:28:43.324Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.325Z", - "description": "Flaw Remediation", - "id": "relationship--b761591c-c791-4eff-8028-ad35d68f5773", - "modified": "2021-01-06T18:28:43.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.325Z", - "description": "Flaw Remediation", - "id": "relationship--818dff85-9492-4ef0-a418-25d25bc2c815", - "modified": "2021-01-06T18:28:43.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.326Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.958Z", "id": "relationship--84c6e3c2-4866-4b0c-9575-8a73b23247b6", - "modified": "2021-01-06T18:28:43.326Z", + "modified": "2021-01-13T01:50:52.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.327Z", - "description": "Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:52.959Z", "id": "relationship--94e21f53-52e6-42c6-a965-ed8880d114a2", - "modified": "2021-01-06T18:28:43.327Z", + "modified": "2021-01-13T01:50:52.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.328Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:50:52.960Z", "id": "relationship--44d43678-3519-4895-a2b4-f2fea8238ab3", - "modified": "2021-01-06T18:28:43.328Z", + "modified": "2021-01-13T01:50:52.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.329Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.961Z", "id": "relationship--f02d1f41-dcd7-4b42-9ea4-ebc01ad6d4a2", - "modified": "2021-01-06T18:28:43.329Z", + "modified": "2021-01-13T01:50:52.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.330Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.962Z", "id": "relationship--505bcb4f-a980-4691-b693-6ee6b432c040", - "modified": "2021-01-06T18:28:43.330Z", + "modified": "2021-01-13T01:50:52.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.331Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.963Z", "id": "relationship--fa599f75-59fc-4c6a-94dc-5958da19c4ad", - "modified": "2021-01-06T18:28:43.331Z", + "modified": "2021-01-13T01:50:52.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.332Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.964Z", "id": "relationship--bf5c2cb2-6750-4a29-91fc-650cbde09ea8", - "modified": "2021-01-06T18:28:43.332Z", + "modified": "2021-01-13T01:50:52.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.332Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.964Z", "id": "relationship--4beb570f-e318-4dd0-899f-e367a16026e3", - "modified": "2021-01-06T18:28:43.332Z", + "modified": "2021-01-13T01:50:52.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.333Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.965Z", "id": "relationship--f584dd51-e3f3-4572-a889-ad26b2611b6b", - "modified": "2021-01-06T18:28:43.333Z", + "modified": "2021-01-13T01:50:52.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.334Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.965Z", "id": "relationship--e0e3e089-d0cd-4705-8004-8ac31a11f323", - "modified": "2021-01-06T18:28:43.334Z", + "modified": "2021-01-13T01:50:52.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.335Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.966Z", "id": "relationship--7e30598d-8e9d-46e3-b84e-7b31eae632cf", - "modified": "2021-01-06T18:28:43.335Z", + "modified": "2021-01-13T01:50:52.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--a5b3ad71-d4d0-4703-b01f-820923569302", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--e69ea5ff-7b35-4e4c-87c1-6a6cc61b07fb", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--775cdfaa-28f0-47b0-a93f-1a95438f42ab", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.968Z", "id": "relationship--0daa542e-4564-4376-afab-52baf753bf28", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.337Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.968Z", "id": "relationship--74062e1b-2343-414b-9c30-9bbb0686ad30", - "modified": "2021-01-06T18:28:43.337Z", + "modified": "2021-01-13T01:50:52.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.337Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.969Z", "id": "relationship--5e45a01c-6106-47b2-bbb6-517a9b184b89", - "modified": "2021-01-06T18:28:43.337Z", + "modified": "2021-01-13T01:50:52.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.338Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.969Z", "id": "relationship--385cf347-b06a-4b9b-b665-5fdba8db94ad", - "modified": "2021-01-06T18:28:43.338Z", + "modified": "2021-01-13T01:50:52.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.338Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.970Z", "id": "relationship--c29bb1b6-9739-4083-8964-e1bdd9b6e293", - "modified": "2021-01-06T18:28:43.338Z", + "modified": "2021-01-13T01:50:52.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.339Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.970Z", "id": "relationship--0db7a786-f86b-494e-ae10-aa445c45bcf8", - "modified": "2021-01-06T18:28:43.339Z", + "modified": "2021-01-13T01:50:52.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.340Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.971Z", "id": "relationship--98d4b045-bee9-4535-b366-d4125413dce5", - "modified": "2021-01-06T18:28:43.340Z", + "modified": "2021-01-13T01:50:52.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--51ce091f-672c-41e7-b934-c29d5e545141", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--fa8a088c-9a31-40cc-ab00-d7c5d0a0264c", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--432bc81f-7289-4475-97de-c3502373370b", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--e4dccee2-c7d3-4700-8718-0e29412e079e", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--194c365b-d5ee-4bff-b6a1-7b40fed26492", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--7af36f8d-1e73-4d98-a001-3dffbd5e24b3", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--24632c4c-a2b7-4981-bdb1-82815922d1cb", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--b64d1c94-ccd9-4a1b-a7fa-e89510fbbbfd", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.343Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.974Z", "id": "relationship--6fbebf13-fc7e-4865-97c9-74f4a9924762", - "modified": "2021-01-06T18:28:43.343Z", + "modified": "2021-01-13T01:50:52.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.343Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.974Z", "id": "relationship--bd67c740-f9df-4ff1-a758-cbcbb93c10b3", - "modified": "2021-01-06T18:28:43.343Z", + "modified": "2021-01-13T01:50:52.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.975Z", "id": "relationship--12f9e7ff-7d38-40f6-a45c-77873f77a3f6", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--d734673f-f627-4c45-bceb-e76e246a6c69", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--9da2bfd7-fdfa-4867-81c7-51758bd596a1", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--a51184ab-0ff1-4ab6-bfaf-278e822be7f4", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.345Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--49d2cece-baed-4e3d-a44b-06cb3ffe677b", - "modified": "2021-01-06T18:28:43.345Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.345Z", - "description": "System Monitoring, malware", - "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", - "modified": "2021-01-06T18:28:43.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.346Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.977Z", "id": "relationship--c05ce0d2-a51b-4c3b-aaac-02ae37bfd707", - "modified": "2021-01-06T18:28:43.346Z", + "modified": "2021-01-13T01:50:52.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.346Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--39ecba2a-ed51-47c7-945e-8c97e8b9596f", - "modified": "2021-01-06T18:28:43.346Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--bd3c033e-0496-4f6f-9cd0-3d5ec52d0f9e", - "modified": "2021-01-06T18:28:43.347Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--ebd6af84-c9f6-427b-89c2-8af92858fd91", - "modified": "2021-01-06T18:28:43.347Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Configuring system settings", - "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", - "modified": "2021-01-06T18:28:43.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.979Z", "id": "relationship--030318dc-f321-45ff-b5cf-c222e73af5c0", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.980Z", "id": "relationship--8ae6bbe7-e159-45ba-be0b-394f454c571a", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.980Z", "id": "relationship--54775a4d-4e70-4902-bb45-eb4f98def51b", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--7b2ec446-d272-4b18-b998-17011ac2eef9", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--5955f00e-19ef-4d31-83d5-5b82150307a5", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--d3f2c2e1-512f-427f-b615-b93a68e77c13", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--fbe97332-e43c-4ef2-ab30-2fd48403d24d", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--8d1257ea-70ee-4f61-a88e-41e9e9ca58c9", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--a94d6c49-dbda-4eab-8904-2d5680e6d7cc", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--0e5d9f7e-c341-4a35-9be0-debd6a33c2f7", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--d666029d-61f0-473f-8032-d864fa58fd72", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--db3ad7bc-855f-443b-a439-6e52dcc65f39", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--52e7291c-d462-4817-b9d4-b89794d5d093", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--193b501f-b68a-4f39-964d-7882758d3439", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--234d5353-6723-4849-83e7-d06443f0725d", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--9d344b76-4b93-4869-8c77-003587a6f0f4", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--561936ef-59bb-4705-8c8b-978a4e1eed0a", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--d8e93f4c-ee67-4160-bf37-a437a8109f21", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--c98eaca7-7110-45d7-800d-165be5c62fee", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--3274f2ca-6583-4834-8e20-b9c9afca6b8b", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--d399f6db-018e-4ad2-a5ca-a0714769d3e6", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--a407dd8d-e60a-40e9-a156-6602e2d64157", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--e341c287-d16b-424b-8c4e-de849b3a23bb", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--ed503b80-4f8b-4988-a69e-5cdad388e8be", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--eebb2099-e81f-4e2b-8820-d45ea50ed8fc", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--609b2118-e2b1-4ac8-b152-ef6466e0c460", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--3fa2db45-92a2-4e59-a83c-338c7307b4ad", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--67f75bb6-c607-414d-ad3d-ad6537f4def7", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.985Z", "id": "relationship--549965f4-4fb1-417b-be9d-a010c95fc5b8", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.355Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.985Z", "id": "relationship--142d2dea-94d0-41a0-8c32-9179a4da0f89", - "modified": "2021-01-06T18:28:43.355Z", + "modified": "2021-01-13T01:50:52.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--b3856c40-f961-44bc-92ee-997a1ccf136b", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--57ffa76c-75bc-4dee-8745-407db2618a6e", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--5d43ca22-9803-45ff-878b-0b2715f92d33", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--cdc709a1-689f-4b77-8f19-73fe8ebc0b06", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--3c7d1c87-4b43-447e-865d-4238e45a8b26", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--7c13d27d-8534-40c5-9e43-1474148a38ca", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--2cd8e40d-f31e-450f-8e5c-2fb897e03cb0", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--07d0d22e-02dc-4a8e-ae4d-c66faeee3b5a", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--04711ba0-fa05-4084-a91b-ed527bccee51", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--5dcc6dbf-a9ca-4fe3-b238-71bc7b5d1f74", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--690f17d8-9503-4ef7-89d4-3d04ef91763a", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--67ac422e-a0c9-4edc-b040-aa724ac89e51", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--e05bcebd-5e20-4ee4-861c-dac0b023fc4d", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--12ae4635-3d2c-43cd-891e-4893783e8438", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--c09f0a44-7404-4e0a-a241-883b4adbd4ef", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--9601540f-0adf-46da-aeaf-3b2eaf4e79a8", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--799141d9-83cb-40d5-91ee-38f14ca65c62", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--00133a3f-3ef5-42d5-bc4e-7563d0226303", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--4d28e528-83cf-4275-94e8-bfaef2edf0c7", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--875ee3ad-bef6-4bca-8ee2-8aab28d1e6cd", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--9f100076-30e7-4d82-8b33-0b3b54fef356", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--f694180a-c77b-425c-9dac-2ba03a258515", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--0cff7ccc-d9d3-4cd1-af75-22f1f09fa322", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--74e4a54a-8fe3-4297-85a6-07a7fd1aad36", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--5945f151-b64a-40c7-993c-014f0026d432", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--779ebc54-5f3e-4b27-91c2-9914abd6445c", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--03b2e5a3-29b6-46c5-b40f-4461bd2e0913", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--d93503b2-76ac-4983-b0b2-cc1ae7779377", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--4a7744e6-9529-43db-9ac3-74c86644af12", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--610c8373-aeed-4e62-9c54-bf39c7ba120b", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.362Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:50:52.992Z", "id": "relationship--ec80c721-b330-4d28-93c7-40e5376ebc0d", - "modified": "2021-01-06T18:28:43.362Z", + "modified": "2021-01-13T01:50:52.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.363Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:50:52.993Z", "id": "relationship--265fdd2d-21d3-4794-b89f-95f22db15bf7", - "modified": "2021-01-06T18:28:43.363Z", + "modified": "2021-01-13T01:50:52.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--ca9d3402-ada3-484d-876a-d717bd6e05f2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.364Z", - "description": "Transmission of security attributes, session authenticity", - "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", - "modified": "2021-01-06T18:28:43.364Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.365Z", - "description": "Transmission of security attributes, session authenticity", - "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", - "modified": "2021-01-06T18:28:43.365Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.369Z", + "created": "2021-01-13T01:50:52.996Z", "id": "relationship--cd3d0c88-9c8f-4299-b81e-0e3f0791671e", - "modified": "2021-01-06T18:28:43.369Z", + "modified": "2021-01-13T01:50:52.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.369Z", + "created": "2021-01-13T01:50:52.997Z", "id": "relationship--7254670f-a017-4d88-8606-d2cea6799a67", - "modified": "2021-01-06T18:28:43.369Z", + "modified": "2021-01-13T01:50:52.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.371Z", + "created": "2021-01-13T01:50:52.998Z", "id": "relationship--b467c1b0-2929-463b-a6fc-fee933b6ea7e", - "modified": "2021-01-06T18:28:43.371Z", + "modified": "2021-01-13T01:50:52.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.371Z", + "created": "2021-01-13T01:50:52.998Z", "id": "relationship--c3fa16d7-a8b6-4060-9d94-7ee771d6a7bf", - "modified": "2021-01-06T18:28:43.371Z", + "modified": "2021-01-13T01:50:52.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--2355e77c-1e18-4be0-bc89-499653288e2e", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--323ef976-1520-4b6b-85b6-9fbe95846636", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--1c127fa3-72c2-428e-bb93-332b2272e1c8", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--0cbe1a4e-521a-417d-9e51-417c118ddf25", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.374Z", + "created": "2021-01-13T01:50:53.000Z", "id": "relationship--1c948993-8591-4ed1-9cbf-8b3e5abc4471", - "modified": "2021-01-06T18:28:43.374Z", + "modified": "2021-01-13T01:50:53.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.375Z", + "created": "2021-01-13T01:50:53.001Z", "id": "relationship--1dc97b73-f514-4d88-a885-839e411d20f0", - "modified": "2021-01-06T18:28:43.375Z", + "modified": "2021-01-13T01:50:53.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.376Z", + "created": "2021-01-13T01:50:53.002Z", "id": "relationship--7684a10a-1956-42cd-afa6-66d3e1d9beb1", - "modified": "2021-01-06T18:28:43.376Z", + "modified": "2021-01-13T01:50:53.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.377Z", + "created": "2021-01-13T01:50:53.002Z", "id": "relationship--65b5067d-4dc1-42d9-b4ce-3aa39d5c26d4", - "modified": "2021-01-06T18:28:43.377Z", + "modified": "2021-01-13T01:50:53.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.378Z", + "created": "2021-01-13T01:50:53.003Z", "id": "relationship--fae174fd-0e57-4deb-8659-ec62fea4f40a", - "modified": "2021-01-06T18:28:43.378Z", + "modified": "2021-01-13T01:50:53.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.379Z", + "created": "2021-01-13T01:50:53.004Z", "id": "relationship--a4134892-9572-453e-ab45-807b48551d0f", - "modified": "2021-01-06T18:28:43.379Z", + "modified": "2021-01-13T01:50:53.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.380Z", + "created": "2021-01-13T01:50:53.005Z", "id": "relationship--d5591ec4-ebfc-49b9-ad6f-9aa101c2ef6f", - "modified": "2021-01-06T18:28:43.380Z", + "modified": "2021-01-13T01:50:53.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.381Z", + "created": "2021-01-13T01:50:53.005Z", "id": "relationship--668ca66d-dd2c-4fa3-b6ed-123ac1526352", - "modified": "2021-01-06T18:28:43.381Z", + "modified": "2021-01-13T01:50:53.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.382Z", - "description": "Remote access", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:43.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.383Z", - "description": "Least privilege", - "id": "relationship--1bc90079-711b-4472-ac1a-b13a4fbe5f3e", - "modified": "2021-01-06T18:28:43.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.385Z", - "description": "Remote access, data mining protection", - "id": "relationship--6926e5eb-2fce-45cf-aee2-4379af077fbf", - "modified": "2021-01-06T18:28:43.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.386Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:50:53.009Z", "id": "relationship--5c54824b-deb9-4452-aebf-d2a627e2d08d", - "modified": "2021-01-06T18:28:43.386Z", + "modified": "2021-01-13T01:50:53.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.386Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:50:53.009Z", "id": "relationship--e8dfdadf-28bb-48bc-9122-81364747ec15", - "modified": "2021-01-06T18:28:43.386Z", + "modified": "2021-01-13T01:50:53.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.388Z", - "description": "Use of external information systems", + "created": "2021-01-13T01:50:53.010Z", "id": "relationship--ba5b9d09-493e-4541-bd42-732a5151aa95", - "modified": "2021-01-06T18:28:43.388Z", + "modified": "2021-01-13T01:50:53.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.389Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:53.011Z", "id": "relationship--1745ace5-b314-4d35-9dda-d02af0a041b0", - "modified": "2021-01-06T18:28:43.389Z", + "modified": "2021-01-13T01:50:53.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.391Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:50:53.012Z", "id": "relationship--ecc108b7-a7ff-415d-9848-91dc1f3ffcd8", - "modified": "2021-01-06T18:28:43.391Z", + "modified": "2021-01-13T01:50:53.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.392Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", - "modified": "2021-01-06T18:28:43.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.393Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", - "modified": "2021-01-06T18:28:43.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.394Z", - "description": "Remote access", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:43.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.395Z", - "id": "relationship--b9582b24-186f-461c-b84e-01b4af8d8a78", - "modified": "2021-01-06T18:28:43.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--f8734fa4-9e96-4d1f-b5b2-cfa4a5767dab", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--9f2c1c23-d1a8-4036-98c6-1fe766b042af", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--af647ad8-da6c-4899-87a5-02dc14db3c1f", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.397Z", - "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:43.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.398Z", - "id": "relationship--396a7485-7c77-46a9-8562-3f5cf2811764", - "modified": "2021-01-06T18:28:43.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.398Z", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:43.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.399Z", - "id": "relationship--6cae7608-6e02-4083-9c6b-85414a3e0a58", - "modified": "2021-01-06T18:28:43.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.399Z", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:43.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.400Z", - "id": "relationship--a7b125ef-ee19-4da3-97c7-9e5f88a9c37f", - "modified": "2021-01-06T18:28:43.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.400Z", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:43.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.401Z", - "id": "relationship--efa2faa4-2283-4c61-acc6-d0b0f4265ed5", - "modified": "2021-01-06T18:28:43.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.401Z", - "id": "relationship--29be95a5-4b1c-4bc3-a19a-d810bc58ba1a", - "modified": "2021-01-06T18:28:43.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.402Z", - "id": "relationship--c766bbc6-6b85-42b9-9ca6-4ea076c7191b", - "modified": "2021-01-06T18:28:43.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.402Z", - "id": "relationship--0079f7f0-5d6b-4bb7-925a-02c834e1674d", - "modified": "2021-01-06T18:28:43.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.403Z", - "id": "relationship--2c20dc0e-2a5d-4015-9115-b0f287e6f9dc", - "modified": "2021-01-06T18:28:43.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.403Z", - "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:43.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.405Z", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:43.405Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.407Z", + "created": "2021-01-13T01:50:53.023Z", "id": "relationship--48aac41b-68c3-47bc-9476-bb746e768196", - "modified": "2021-01-06T18:28:43.407Z", + "modified": "2021-01-13T01:50:53.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--391d824f-0ef1-47a0-b0ee-c59a75e27670", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--008e270a-950b-4983-8217-f87879c639a2", - "modified": "2021-01-06T18:28:43.408Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", - "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", - "modified": "2021-01-06T18:28:43.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--e164beb5-17e3-4974-a1cc-25295e55f625", - "modified": "2021-01-06T18:28:43.408Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.409Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--5c9bfaa5-d5ac-4334-b1a6-d58cc41a60ae", - "modified": "2021-01-06T18:28:43.409Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.410Z", - "description": "least privilege", + "created": "2021-01-13T01:50:53.025Z", "id": "relationship--a82cf4db-3a39-49d3-8587-10ba6b1b1fe2", - "modified": "2021-01-06T18:28:43.410Z", + "modified": "2021-01-13T01:50:53.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.411Z", - "description": "Configuration settings, least functionality", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:43.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.411Z", - "description": "Configuration settings, least functionality", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:43.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.412Z", - "description": "Least privilege", - "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:43.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.413Z", - "description": "Identification and authentication (organizational users)", - "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:43.413Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.414Z", - "description": "Configuration settings", - "id": "relationship--a1074983-5f31-4262-bd53-52d0bb0db978", - "modified": "2021-01-06T18:28:43.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.415Z", - "description": "Information flow enforcement", - "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:43.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.416Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:50:53.031Z", "id": "relationship--6e80ba71-e526-42fb-a0db-5d42c9aca91e", - "modified": "2021-01-06T18:28:43.416Z", + "modified": "2021-01-13T01:50:53.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.416Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--e6ee2e79-92b0-40d1-aef8-61cd7bb016a9", - "modified": "2021-01-06T18:28:43.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.417Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:50:53.032Z", "id": "relationship--8128e934-8180-4ef8-af7d-3a639a0319ff", - "modified": "2021-01-06T18:28:43.417Z", + "modified": "2021-01-13T01:50:53.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.418Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--54c8d65b-afcb-49af-80d1-4771e41a8e23", - "modified": "2021-01-06T18:28:43.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.419Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:50:53.034Z", "id": "relationship--b41df583-9cbc-49f9-b442-2755534acf26", - "modified": "2021-01-06T18:28:43.419Z", + "modified": "2021-01-13T01:50:53.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.419Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:50:53.034Z", "id": "relationship--942d0630-aef3-450c-9dd9-ebd74d4f9360", - "modified": "2021-01-06T18:28:43.419Z", + "modified": "2021-01-13T01:50:53.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.420Z", - "description": "baseline configuration", - "id": "relationship--82dbbdee-39be-4dc0-b780-a361430e6441", - "modified": "2021-01-06T18:28:43.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--d735cbff-953a-477d-81ff-219f386a1b57", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--e023aae3-0115-4c6f-bf8e-9635760a4c7d", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--a6d6b055-5589-4f7a-a4cc-0fd1465e75aa", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.422Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--01870576-6b9c-494a-8fa9-c76c32dc9970", - "modified": "2021-01-06T18:28:43.422Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.422Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:50:53.037Z", "id": "relationship--9d7dd46a-05e7-4f81-9806-25fc28cb7768", - "modified": "2021-01-06T18:28:43.422Z", + "modified": "2021-01-13T01:50:53.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.423Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:50:53.037Z", "id": "relationship--54e2df98-c38d-4b64-ae9e-1206e0c02b2f", - "modified": "2021-01-06T18:28:43.423Z", + "modified": "2021-01-13T01:50:53.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.424Z", - "description": "session authenticity", + "created": "2021-01-13T01:50:53.038Z", "id": "relationship--d7aa601b-9576-41b8-8d0d-fd8d47246c42", - "modified": "2021-01-06T18:28:43.424Z", + "modified": "2021-01-13T01:50:53.038Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--59bd0dec-f8b2-4b9a-9141-37a1e6899761", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.424Z", - "description": "configuration settings", - "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:43.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.425Z", - "description": "User-installed software", + "created": "2021-01-13T01:50:53.040Z", "id": "relationship--f7adeb0b-1623-4d39-84a4-4146611294a6", - "modified": "2021-01-06T18:28:43.425Z", + "modified": "2021-01-13T01:50:53.040Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.426Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.041Z", "id": "relationship--a2312bd1-e507-41b9-bd22-c97a7b643c54", - "modified": "2021-01-06T18:28:43.426Z", + "modified": "2021-01-13T01:50:53.041Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.427Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.042Z", "id": "relationship--e03d2f90-fbde-45dd-901f-8a89d6588a71", - "modified": "2021-01-06T18:28:43.427Z", + "modified": "2021-01-13T01:50:53.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.427Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.042Z", "id": "relationship--02d920a7-6dea-47b0-93f3-75d1c3287b59", - "modified": "2021-01-06T18:28:43.427Z", + "modified": "2021-01-13T01:50:53.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.428Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:50:53.043Z", "id": "relationship--6e132068-3233-43ad-9f30-baac55e830bb", - "modified": "2021-01-06T18:28:43.428Z", + "modified": "2021-01-13T01:50:53.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.429Z", - "description": "Service identification and authentication", + "created": "2021-01-13T01:50:53.044Z", "id": "relationship--49406fc0-238e-409f-851e-8d7569f2787c", - "modified": "2021-01-06T18:28:43.429Z", + "modified": "2021-01-13T01:50:53.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--e01d240a-18c2-4e45-b2bf-a33067adc0b0", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--ab4b994d-edfc-44f1-afe9-1336e25eba81", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--dcb9f8d8-6131-4ac5-8dc2-a57057f23e39", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.431Z", - "description": "Configuration settings, least functionality, software usage restrictions", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.431Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.432Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.046Z", "id": "relationship--5a834df7-fe0d-4e52-85d2-6cb912d0e9c9", - "modified": "2021-01-06T18:28:43.432Z", + "modified": "2021-01-13T01:50:53.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.432Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.046Z", "id": "relationship--0bdcbf31-1ee7-417c-be3a-81c4efb938ed", - "modified": "2021-01-06T18:28:43.432Z", + "modified": "2021-01-13T01:50:53.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:43.433Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.433Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.048Z", "id": "relationship--d69af2d9-c6fc-4990-879e-801b625cab11", - "modified": "2021-01-06T18:28:43.433Z", + "modified": "2021-01-13T01:50:53.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.048Z", "id": "relationship--0f2df459-4953-4665-8bff-a4c6191364ce", - "modified": "2021-01-06T18:28:43.433Z", + "modified": "2021-01-13T01:50:53.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.435Z", - "description": "Transmission Confidentiality and Integrity", + "created": "2021-01-13T01:50:53.049Z", "id": "relationship--3650cb8f-3905-48c8-b4c4-1f25c4e789e0", - "modified": "2021-01-06T18:28:43.435Z", + "modified": "2021-01-13T01:50:53.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.436Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.050Z", "id": "relationship--b92f3fe5-dedd-4c74-a039-6315e70987e0", - "modified": "2021-01-06T18:28:43.436Z", + "modified": "2021-01-13T01:50:53.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.436Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.050Z", "id": "relationship--70c785d9-6093-4b98-994a-433c9da94aeb", - "modified": "2021-01-06T18:28:43.436Z", + "modified": "2021-01-13T01:50:53.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.437Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.051Z", "id": "relationship--163468c7-ab56-459c-9493-bca43a671078", - "modified": "2021-01-06T18:28:43.437Z", + "modified": "2021-01-13T01:50:53.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.437Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.051Z", "id": "relationship--7691b773-2ebb-41bf-a162-09ae041b7640", - "modified": "2021-01-06T18:28:43.437Z", + "modified": "2021-01-13T01:50:53.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.438Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:50:53.052Z", "id": "relationship--e604dede-d62d-42dd-9bd6-8672ece63576", - "modified": "2021-01-06T18:28:43.438Z", + "modified": "2021-01-13T01:50:53.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.438Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:50:53.052Z", "id": "relationship--5a7b00d1-8288-44b9-b267-31a1e3d33314", - "modified": "2021-01-06T18:28:43.438Z", + "modified": "2021-01-13T01:50:53.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.439Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:50:53.053Z", "id": "relationship--d40b5642-a0dd-484d-ae95-561c20a6607a", - "modified": "2021-01-06T18:28:43.439Z", + "modified": "2021-01-13T01:50:53.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.439Z", - "description": "Least privilege, software firmware and information integrity", - "id": "relationship--787bbfe7-c599-464e-9c79-1ec0bdef9621", - "modified": "2021-01-06T18:28:43.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.440Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:43.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.440Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--ad9e965b-b4b8-422f-884e-174e19ded319", - "modified": "2021-01-06T18:28:43.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.441Z", - "id": "relationship--d3ffd103-0a39-4de3-886f-9b1d050e96a6", - "modified": "2021-01-06T18:28:43.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.442Z", + "created": "2021-01-13T01:50:53.055Z", "id": "relationship--03b2b31e-1af9-4ab4-9d58-56bb09f9425f", - "modified": "2021-01-06T18:28:43.442Z", + "modified": "2021-01-13T01:50:53.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.442Z", + "created": "2021-01-13T01:50:53.056Z", "id": "relationship--62903191-a7f6-4d4d-8169-df5fe58c1e7b", - "modified": "2021-01-06T18:28:43.442Z", + "modified": "2021-01-13T01:50:53.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.443Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:50:53.056Z", "id": "relationship--c02b858e-8af3-423f-ad01-12cf42fd9630", - "modified": "2021-01-06T18:28:43.443Z", + "modified": "2021-01-13T01:50:53.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.443Z", - "description": "Least privilege, software firmware and information integrity", - "id": "relationship--b3e70027-0bd0-4f7a-9852-870e29653a9c", - "modified": "2021-01-06T18:28:43.443Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:43.444Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3ee55c44-3433-46b4-ba10-5f255e162bd6", - "modified": "2021-01-06T18:28:43.444Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.058Z", "id": "relationship--23afa071-2a8b-4420-8291-5a583f598322", - "modified": "2021-01-06T18:28:43.444Z", + "modified": "2021-01-13T01:50:53.058Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:43.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--480bb83d-3fbd-459a-8880-10c6d2a5704d", - "modified": "2021-01-06T18:28:43.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.059Z", "id": "relationship--1276b13b-592d-4657-9a7d-05eff3195ea3", - "modified": "2021-01-06T18:28:43.445Z", + "modified": "2021-01-13T01:50:53.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.446Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:43.446Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.447Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--a5b1455d-535a-461e-8f25-eb28844cd4bd", - "modified": "2021-01-06T18:28:43.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.447Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.060Z", "id": "relationship--f2c0d04f-b06d-42a7-87fb-2af833937770", - "modified": "2021-01-06T18:28:43.447Z", + "modified": "2021-01-13T01:50:53.060Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:43.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--bec85872-5751-40ed-9a64-cd321895c690", - "modified": "2021-01-06T18:28:43.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.061Z", "id": "relationship--0c80555c-19d0-41e0-a4dd-e9a317d54d32", - "modified": "2021-01-06T18:28:43.448Z", + "modified": "2021-01-13T01:50:53.061Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.449Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:43.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.449Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:43.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.450Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:50:53.062Z", "id": "relationship--3dd99046-a12e-49d9-a599-fbf6f81e6f85", - "modified": "2021-01-06T18:28:43.450Z", + "modified": "2021-01-13T01:50:53.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.450Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:50:53.063Z", "id": "relationship--e0ccf41f-ff23-4843-8564-ff04e2f87572", - "modified": "2021-01-06T18:28:43.450Z", + "modified": "2021-01-13T01:50:53.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.451Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--8fa0a2c4-5e28-4148-99a3-90af85f15e16", - "modified": "2021-01-06T18:28:43.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.452Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--5c9bce1c-4077-4b2d-a7f2-cfec966093eb", - "modified": "2021-01-06T18:28:43.452Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" } ], "spec_version": "2.0", diff --git a/frameworks/nist800-53-r4/stix/nist800-53-r4-mappings.json b/frameworks/nist800-53-r4/stix/nist800-53-r4-mappings.json index 154165ae..eada3935 100644 --- a/frameworks/nist800-53-r4/stix/nist800-53-r4-mappings.json +++ b/frameworks/nist800-53-r4/stix/nist800-53-r4-mappings.json @@ -1,56758 +1,37076 @@ { - "id": "bundle--e6493f18-da90-40bc-8f49-0b63c7fef598", + "id": "bundle--df1a811e-0121-41a1-bb06-1288b18bf3e7", "objects": [ { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--524d14da-10bd-4636-9d7c-fa113fccf1cd", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--5dfdde4e-7b84-4447-ad7c-b3fca037ae46", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--0544c420-a51c-4eb2-86fa-0f915fbaf34f", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--0933758d-b37f-4b6d-856f-0475f62b6e7a", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.247Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--78808e3c-a0c4-4502-8349-a073f951e3c1", - "modified": "2021-01-06T18:28:41.247Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--d7a7d73b-8a4f-43b2-8146-d02aade10de1", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--13fad715-8eb8-448e-8edc-1057ea918910", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.515Z", "id": "relationship--7386085f-64c0-4efd-aa6f-0f61f9de334b", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.515Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--daea9b13-5d55-4de9-b0f9-58d44b9ae1b8", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--6b6ca108-05ca-4f68-8a2a-af4ac0238c0e", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.248Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--a47cda8c-2761-4044-8380-0259fd4e83ff", - "modified": "2021-01-06T18:28:41.248Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--326c8894-1a36-4be8-8484-085be16e7e82", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--05220038-1046-48aa-8267-9ef1af0c7f3c", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.249Z", + "created": "2021-01-13T01:50:51.516Z", "id": "relationship--338a3145-b978-40c7-b728-3438905283c5", - "modified": "2021-01-06T18:28:41.249Z", + "modified": "2021-01-13T01:50:51.516Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.251Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.251Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--a5d3d24d-0223-4022-954a-83959c2665ef", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.517Z", "id": "relationship--c2f8f668-941f-4332-8aaf-0f9a744f151a", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.517Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--a95a32ab-075f-41f8-82cb-d93a6a79eff4", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--9b180ef6-a3f3-44a5-9f78-73887da29d7e", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--626db871-5246-46c8-8b40-f602587b5a38", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--4a207090-d41b-493a-bf45-50fc77e72916", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.252Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.252Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.518Z", "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.518Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--b9059dc2-343b-4934-967e-82d61ea04371", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.253Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:41.253Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--0a89d084-0676-4a1a-8687-55645baaa83b", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.254Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--2b57f79a-58fe-4504-92d6-474b62016ddb", - "modified": "2021-01-06T18:28:41.254Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--76e70d4a-1149-48b3-bf20-c7bcf8712d3f", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.519Z", "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.519Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.520Z", "id": "relationship--5ce52437-8796-4c52-a497-649f7d55bd72", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.255Z", + "created": "2021-01-13T01:50:51.520Z", "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.255Z", + "modified": "2021-01-13T01:50:51.520Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.257Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:41.257Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.258Z", + "created": "2021-01-13T01:50:51.521Z", "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.258Z", + "modified": "2021-01-13T01:50:51.521Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.260Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--e6276163-61ae-4548-adab-307b82ef3271", - "modified": "2021-01-06T18:28:41.260Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.260Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--eaa37a0a-3193-49c3-ae00-1eac3b4eef57", - "modified": "2021-01-06T18:28:41.260Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--97b89cc5-7185-496e-a7b9-6ee87f9dcd44", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.522Z", "id": "relationship--1ba8d8f1-31df-4cd6-aa06-6e1cd13b9a65", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.522Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--7f6de78a-4196-4cba-b810-770815c4cd13", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--7138a317-9add-4625-a361-cdf55665facf", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.261Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--0e0cb589-de92-4c2f-9572-867343430033", - "modified": "2021-01-06T18:28:41.261Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--431aa8f1-c18d-4dc9-a103-8db470a9e557", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--4f5db8f7-38f9-46c3-808e-8d1444d9bfa2", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--69e53e00-112a-4e4d-ac1d-51d4704c4fd1", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--43e010c1-3e80-4a77-b532-3d90acb9c863", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.262Z", + "created": "2021-01-13T01:50:51.523Z", "id": "relationship--e1f86682-5b7c-4476-9849-2b98fd756a3f", - "modified": "2021-01-06T18:28:41.262Z", + "modified": "2021-01-13T01:50:51.523Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--b7dc639b-24cd-482d-a7f1-8897eda21023", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.263Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:41.263Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--84ff810b-888c-4ff5-b8ef-8e01ff72b01c", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.524Z", "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.524Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.264Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--33c431ce-ac1b-47d3-b841-4ce178cfb132", - "modified": "2021-01-06T18:28:41.264Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.265Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--8f08fd61-06f7-4a69-a2de-dd77059011f2", - "modified": "2021-01-06T18:28:41.265Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.525Z", "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.525Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--79ba1107-96f2-4324-b547-7ae9a3760aa3", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--b87774cc-526a-4979-8332-4b9556b7adc1", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.266Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--55868cac-d09c-4813-8c17-60066fc8b603", - "modified": "2021-01-06T18:28:41.266Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--9dd0e74f-3d04-45c8-b5ac-fa5ac46c679e", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--5d980f58-6f37-4c90-b72b-c7d353dd9e26", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--255adae6-4658-4747-b6bc-a5ca6c2b32df", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.267Z", + "created": "2021-01-13T01:50:51.526Z", "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:41.267Z", + "modified": "2021-01-13T01:50:51.526Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--58fc17b8-c938-496c-86ef-567346ad1012", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.269Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--6a7e7dce-6b32-4e8c-9b64-f4e966b8ab47", - "modified": "2021-01-06T18:28:41.269Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.527Z", "id": "relationship--11d87255-1c10-4afa-8d79-80c0a0afeb65", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.527Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--e9b1fd78-2697-482a-9a86-64fb0dabe753", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--82394a14-bf93-4c09-af4e-8e4bd26bccfe", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--4a4add5c-7c1a-451b-a7bc-d7bc585f97cf", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--c83a1a89-6cac-4f82-b5b2-21479298030f", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.270Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--d8cdb86d-21bb-4cf1-92b4-b245e833dad5", - "modified": "2021-01-06T18:28:41.270Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--a04f35ca-8178-47c2-8890-61cad498ff27", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.271Z", + "created": "2021-01-13T01:50:51.528Z", "id": "relationship--d4b0c3a7-9800-40e8-b6b8-2f6c30ac438d", - "modified": "2021-01-06T18:28:41.271Z", + "modified": "2021-01-13T01:50:51.528Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.272Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.529Z", "id": "relationship--e55f2175-f5ff-42a0-bc4c-a7e1d553965c", - "modified": "2021-01-06T18:28:41.272Z", + "modified": "2021-01-13T01:50:51.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.273Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.529Z", "id": "relationship--6c789fad-0139-423c-ac9e-041ee105bb47", - "modified": "2021-01-06T18:28:41.273Z", + "modified": "2021-01-13T01:50:51.529Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.274Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.530Z", "id": "relationship--ee9acb10-cf11-42b0-9462-06cf4d3d1153", - "modified": "2021-01-06T18:28:41.274Z", + "modified": "2021-01-13T01:50:51.530Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--d5b70112-4b78-4bab-b868-3e6fbdd41adc", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--7c135a15-9b9f-4438-97c7-69d85774a639", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--e6c1ee8b-74e6-4d93-93c6-23784252cec9", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.275Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--641322b8-707a-4454-8268-505646af5c09", - "modified": "2021-01-06T18:28:41.275Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.276Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--5916a3ee-d9b1-4bcb-b8e0-385b126f896a", - "modified": "2021-01-06T18:28:41.276Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.276Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.531Z", "id": "relationship--dba82b23-b216-4bc0-8017-9da0362aaec7", - "modified": "2021-01-06T18:28:41.276Z", + "modified": "2021-01-13T01:50:51.531Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--cde1aa43-c993-4754-ae0c-604e92fd6ddf", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--5e302437-98dd-4751-80f7-63ceb77aab4d", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.277Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.532Z", "id": "relationship--c208c3cb-017c-424a-ad2c-19c45ea8fdee", - "modified": "2021-01-06T18:28:41.277Z", + "modified": "2021-01-13T01:50:51.532Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.278Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.533Z", "id": "relationship--eef86f0a-99c9-4612-918f-a4741b1c6980", - "modified": "2021-01-06T18:28:41.278Z", + "modified": "2021-01-13T01:50:51.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6b34885c-5b2e-4f1a-bc77-47e6950dc2eb", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.278Z", - "description": "Security Assessment", + "created": "2021-01-13T01:50:51.533Z", "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:41.278Z", + "modified": "2021-01-13T01:50:51.533Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.279Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.534Z", "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:41.279Z", + "modified": "2021-01-13T01:50:51.534Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.280Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--7bc9a679-c3ff-4cca-bd97-2041eff9ad89", - "modified": "2021-01-06T18:28:41.280Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--987828e6-25a6-40b0-a085-c252b2a93cc9", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.281Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--da918df2-ae58-4317-8d51-280bbdcbd4f6", - "modified": "2021-01-06T18:28:41.281Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.282Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:41.282Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.282Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.535Z", "id": "relationship--bdb744dd-dea2-4c02-bef1-2a231cb03f4f", - "modified": "2021-01-06T18:28:41.282Z", + "modified": "2021-01-13T01:50:51.535Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.283Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:41.283Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--088ba60b-98f1-45da-86c2-fb2a6663ba46", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--e3550930-fc87-42d1-9a58-c132af707837", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:41.284Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.284Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--88eae706-58d3-49d2-897c-77c44e92bac6", - "modified": "2021-01-06T18:28:41.284Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.536Z", "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.536Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.285Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.537Z", "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:41.285Z", + "modified": "2021-01-13T01:50:51.537Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.286Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--ca12d7e5-0c28-411d-88b8-22575c6445d3", - "modified": "2021-01-06T18:28:41.286Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.286Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--9c929bbf-e489-4f1a-8949-0a9c20f098b4", - "modified": "2021-01-06T18:28:41.286Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--bf26bf8d-c9b0-48d2-bd16-900f5dcc9470", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--8b8699d3-c6f4-46c9-b6e0-cb59f6674549", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--2d03dd06-9be0-4a2b-8a2d-5998468c6015", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--3c26cd38-9bb3-4f19-8677-198ecac6fb8e", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.287Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.538Z", "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:41.287Z", + "modified": "2021-01-13T01:50:51.538Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--da4ea6b2-b159-432d-b1c0-84c5affd26fc", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.288Z", - "description": "Protection of Information at Rest, Process Isolation", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--dbebf656-c22c-4acd-b11a-c06cbeb2e720", - "modified": "2021-01-06T18:28:41.288Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.539Z", "id": "relationship--8bd55ee2-7322-496c-a012-e8cc2421eef9", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.539Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--f7f4d6fe-ce51-44ea-9887-330285e599b6", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.289Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--fbcdd028-a157-419a-af7d-7410b0645ac4", - "modified": "2021-01-06T18:28:41.289Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--120fb7d5-74a3-4e12-958b-00e2efd2b0eb", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--cd352ead-32fa-4524-b31b-add76f7175a4", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.290Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:41.290Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.291Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:41.291Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.291Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.540Z", "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:41.291Z", + "modified": "2021-01-13T01:50:51.540Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.292Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.292Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.292Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:41.292Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.541Z", "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.541Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:41.293Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.293Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:41.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--42d03166-40e3-4ce9-96eb-f3e7e6b50f57", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--7c54c514-377a-426e-a993-b44568d6da3a", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.294Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.542Z", "id": "relationship--51107fe1-a080-49ba-a6f8-066d2e239d43", - "modified": "2021-01-06T18:28:41.294Z", + "modified": "2021-01-13T01:50:51.542Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.296Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:41.296Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.543Z", "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.543Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:41.297Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.297Z", - "description": "Account Management, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.297Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.298Z", - "description": "Account Management, Least Privilege", + "created": "2021-01-13T01:50:51.544Z", "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:41.298Z", + "modified": "2021-01-13T01:50:51.544Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--ed7a35bd-089b-4511-b3cd-62720e032611", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--cbc164c3-c34d-4fc0-a084-d15ce86554f8", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.299Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.545Z", "id": "relationship--1ca9e2a4-57d3-4413-99b4-2fbdbd3ad0bb", - "modified": "2021-01-06T18:28:41.299Z", + "modified": "2021-01-13T01:50:51.545Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.301Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.546Z", "id": "relationship--025baca2-78a8-4b60-a5b5-92a150e2b19e", - "modified": "2021-01-06T18:28:41.301Z", + "modified": "2021-01-13T01:50:51.546Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a2029942-0a85-4947-b23c-ca434698171d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.302Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.303Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:41.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.304Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory ", + "created": "2021-01-13T01:50:51.548Z", "id": "relationship--310e0b8c-bfa3-4b53-ba42-5da8eb07cc59", - "modified": "2021-01-06T18:28:41.304Z", + "modified": "2021-01-13T01:50:51.548Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.305Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.549Z", "id": "relationship--ff613865-8575-4b55-9c7d-f82c67a27ed6", - "modified": "2021-01-06T18:28:41.305Z", + "modified": "2021-01-13T01:50:51.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.306Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.549Z", "id": "relationship--f7839f3a-324a-4652-822a-d23d1afa5d0d", - "modified": "2021-01-06T18:28:41.306Z", + "modified": "2021-01-13T01:50:51.549Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.307Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.550Z", "id": "relationship--966d8c9b-af66-44e7-adef-597479381516", - "modified": "2021-01-06T18:28:41.307Z", + "modified": "2021-01-13T01:50:51.550Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.308Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--48eadbfa-982d-4fcf-a391-f16894679fa0", - "modified": "2021-01-06T18:28:41.308Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.308Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--f5f4a6eb-fc49-422a-bff7-87c1e3b6f42b", - "modified": "2021-01-06T18:28:41.308Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.309Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--27bda1c7-8049-47c9-b807-b998539895b4", - "modified": "2021-01-06T18:28:41.309Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.309Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", + "created": "2021-01-13T01:50:51.551Z", "id": "relationship--42cc05f0-b702-4f39-adf6-fbaa52690087", - "modified": "2021-01-06T18:28:41.309Z", + "modified": "2021-01-13T01:50:51.551Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--dd43c543-bb85-4a6f-aa6e-160d90d06a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.310Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.552Z", "id": "relationship--3056cd2b-124d-4a0f-8bf1-ac37cc12b5cf", - "modified": "2021-01-06T18:28:41.310Z", + "modified": "2021-01-13T01:50:51.552Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--b98e1f8e-821a-4384-bd75-37bde2d23e0c", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--3f72ff48-6909-4b8b-a8f8-f59c5ac9dc3f", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.311Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--d1009198-3192-416e-be03-e15b1cd39c9b", - "modified": "2021-01-06T18:28:41.311Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.312Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, User Installed Software", + "created": "2021-01-13T01:50:51.553Z", "id": "relationship--9e2758bc-9ffb-4f84-b240-611e32c98413", - "modified": "2021-01-06T18:28:41.312Z", + "modified": "2021-01-13T01:50:51.553Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.312Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:41.312Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.313Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--95e80603-ca55-459d-9909-c5615ba66525", - "modified": "2021-01-06T18:28:41.313Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.313Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.554Z", "id": "relationship--e5f02d01-3412-49ca-aa10-538ca0a17f42", - "modified": "2021-01-06T18:28:41.313Z", + "modified": "2021-01-13T01:50:51.554Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--7ccaf949-3d6d-4591-bd3a-7deff7cd3663", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--68d4a479-72f8-40da-9fbb-0d0765d70b69", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.314Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.555Z", "id": "relationship--0c65f585-d066-4b16-9980-e1b16b4c2331", - "modified": "2021-01-06T18:28:41.314Z", + "modified": "2021-01-13T01:50:51.555Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.315Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.556Z", "id": "relationship--04be455f-a60e-4d6d-bb35-077f890ee962", - "modified": "2021-01-06T18:28:41.315Z", + "modified": "2021-01-13T01:50:51.556Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.317Z", - "description": "Account Management, ", + "created": "2021-01-13T01:50:51.557Z", "id": "relationship--985acde3-b4aa-427c-81f6-6df43216a248", - "modified": "2021-01-06T18:28:41.317Z", + "modified": "2021-01-13T01:50:51.557Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.318Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:50:51.558Z", "id": "relationship--0b3a0fb5-36b6-42b3-96d8-5a9dce46ac99", - "modified": "2021-01-06T18:28:41.318Z", + "modified": "2021-01-13T01:50:51.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.319Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.558Z", "id": "relationship--7ade19cd-4cde-46cb-bef1-c9e9d5bad962", - "modified": "2021-01-06T18:28:41.319Z", + "modified": "2021-01-13T01:50:51.558Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--049c85a0-db49-47e4-b381-e1a156343366", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--2bc93b37-3253-4fc7-b823-400065326116", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--9989b7bd-f9d2-4205-8eb6-d3ef4a5331cb", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.320Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--a4e481fb-75b4-4bb0-9cd4-b5139a707979", - "modified": "2021-01-06T18:28:41.320Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.321Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.559Z", "id": "relationship--9a8253b2-6a7b-4734-87fd-d1dad0ca8bdc", - "modified": "2021-01-06T18:28:41.321Z", + "modified": "2021-01-13T01:50:51.559Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.321Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--5320f531-8e22-41ba-b0d4-6e616c969e1b", - "modified": "2021-01-06T18:28:41.321Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.322Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--5e01c5f9-e4c9-4e0e-8ff7-0f240a0dacb9", - "modified": "2021-01-06T18:28:41.322Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.322Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.560Z", "id": "relationship--c3780403-411c-40e9-a6ea-1ad9b5885696", - "modified": "2021-01-06T18:28:41.322Z", + "modified": "2021-01-13T01:50:51.560Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--93154c94-1f5d-4df3-8752-7f92c94c8d70", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--988f259c-c637-45e7-b330-15692e4b29b3", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.323Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--c2eae2e4-4230-459a-807d-af9b266a3923", - "modified": "2021-01-06T18:28:41.323Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--2c340be9-3174-4ceb-95e1-8c85fceed4fd", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--71eebd8b-27da-4c4e-bf8c-11df4571f0f7", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.324Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.561Z", "id": "relationship--6adefa66-af0c-476b-9696-b495057321ce", - "modified": "2021-01-06T18:28:41.324Z", + "modified": "2021-01-13T01:50:51.561Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.325Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--a7bf759e-b80a-4f31-8c09-099fbffa41bc", - "modified": "2021-01-06T18:28:41.325Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.325Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:41.325Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.326Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.562Z", "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:41.326Z", + "modified": "2021-01-13T01:50:51.562Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--ca778c05-a05e-4903-9c57-1e8082cb7feb", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.327Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--45401765-2174-4672-8653-5c2119c9f5d4", - "modified": "2021-01-06T18:28:41.327Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.328Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:41.328Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.328Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.563Z", "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:41.328Z", + "modified": "2021-01-13T01:50:51.563Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.564Z", "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.564Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--aebd8610-3415-4fda-b30d-747a7058e8b7", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.330Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--706ea452-7d39-4532-83b5-9aff4850849f", - "modified": "2021-01-06T18:28:41.330Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--f5c5df5e-7c22-4e4b-9f3f-b2ce14f11cb0", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--681631b3-dfdc-4079-89f8-344a1e361933", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--02c86be2-11e2-4d87-bda9-b0472902ca5b", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--eb74f6dc-7ad8-4cbb-9c4f-d43069faa929", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.331Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:41.331Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--edde791f-ec18-4bad-a139-b78dd7a7ca26", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.565Z", "id": "relationship--bf0b14cd-3b3a-470b-a4c3-137e8d991fa1", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.565Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--daf185c8-8bfb-4077-a1d2-f981adc56117", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.332Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--67fdc1b7-d794-4996-a658-b53e6ef8f9e6", - "modified": "2021-01-06T18:28:41.332Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--912b3150-ed98-4345-81c4-ea577612cb2c", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--2cf8fee1-6342-4def-b754-49efa1999273", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.333Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--9f91e67b-22c9-45f7-93f7-a73ad96ddbb0", - "modified": "2021-01-06T18:28:41.333Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--1b6a79bd-5383-415d-8c60-1f678265b2f3", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--b7ccc913-207a-472f-b2bf-ca9dfa41ac5a", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--19ed50e2-aa85-4869-90d7-641cbd8c4ae5", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--bbc81aa1-8d99-4c8a-8f5e-2cd14f9869d2", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--fe3b9a9a-69fa-418e-9aaa-13faa71c192e", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.334Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Security Attributes; Remote Access, Information Sharing, Data Mining Protection", + "created": "2021-01-13T01:50:51.566Z", "id": "relationship--cdc4e75b-3b8a-4ec9-87f3-d0fc0ef0d8da", - "modified": "2021-01-06T18:28:41.334Z", + "modified": "2021-01-13T01:50:51.566Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.335Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--a6632db0-d0ad-45cd-b3de-23ffdd301d60", - "modified": "2021-01-06T18:28:41.335Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.336Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--9d1358b4-d4cd-4fe2-8376-207b725abc89", - "modified": "2021-01-06T18:28:41.336Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.336Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.567Z", "id": "relationship--1f8bd37c-bb54-4e3c-ba01-c0f4d1df05c5", - "modified": "2021-01-06T18:28:41.336Z", + "modified": "2021-01-13T01:50:51.567Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--ecb573ba-b70b-4f6a-9550-0ae71d7c5552", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--08985481-67ab-45b0-8654-fc183711b425", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--a535f899-7b71-49c7-a1d4-6965179c1580", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.337Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--c1af77f2-b582-407f-944b-d4509316cad1", - "modified": "2021-01-06T18:28:41.337Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.568Z", "id": "relationship--efd04ad4-b0c7-4578-8374-4546490fb74d", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.568Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--2dd977fc-8bd8-44f1-84d8-d54f220be777", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0def5210-3189-4625-84fc-236a97a54050", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--42cc528f-f076-4596-b9e3-c2850a3a123d", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.338Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0acf4fab-1bce-49f1-a945-1ef19cfc874e", - "modified": "2021-01-06T18:28:41.338Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--8653c39c-4a4a-4588-917d-f5be9ab7ee6f", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--40547ead-1d57-41a3-83c0-7ce082ce84d4", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--3e6a29b0-f0b5-4ab8-9554-eea0aa3ca3f3", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--0a2cc091-3985-42fb-8e2e-6dad1b8eb720", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--c85deb66-98e6-4feb-bb95-1546fd79708f", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.339Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restriction for Change, Configuration Settings, Information System Component, Inventory", + "created": "2021-01-13T01:50:51.569Z", "id": "relationship--a99473b3-402d-45a6-b817-a49eba982871", - "modified": "2021-01-06T18:28:41.339Z", + "modified": "2021-01-13T01:50:51.569Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--862ec38b-ea68-409e-99de-1b54f76d4f2e", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--cd114be2-ac9d-47d8-b9d9-fe080e0232b0", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.341Z", - "description": "Protection of Information at Rest", + "created": "2021-01-13T01:50:51.570Z", "id": "relationship--cf6bc76f-2fab-46f5-b85b-54213606372a", - "modified": "2021-01-06T18:28:41.341Z", + "modified": "2021-01-13T01:50:51.570Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.342Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--f859bc3a-5811-4805-9e4d-12eb1a442e76", - "modified": "2021-01-06T18:28:41.342Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--4d0289b0-ce4d-4912-ad67-38b649b57ab5", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--fa7f8405-65ca-4e55-bb57-9186eb4d139c", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.571Z", "id": "relationship--4bccf3a1-40bd-423f-b0da-870a9dfbb9b8", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--6bcf5635-779b-4228-82e6-8c7e0ac08f37", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.343Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--8a2d7038-928e-4bc7-8e51-226c3922a3d6", - "modified": "2021-01-06T18:28:41.343Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.572Z", "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.572Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.344Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--4663250d-6195-4c2d-8acc-2e3f32900e63", - "modified": "2021-01-06T18:28:41.344Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.345Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:41.345Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.345Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.573Z", "id": "relationship--703c0e03-6a13-4884-8cd4-8d2568e479fd", - "modified": "2021-01-06T18:28:41.345Z", + "modified": "2021-01-13T01:50:51.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.346Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.574Z", "id": "relationship--9054ee20-c7b5-49da-ab47-0285596f3c68", - "modified": "2021-01-06T18:28:41.346Z", + "modified": "2021-01-13T01:50:51.574Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.347Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.575Z", "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:41.347Z", + "modified": "2021-01-13T01:50:51.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.348Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.575Z", "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:41.348Z", + "modified": "2021-01-13T01:50:51.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--07ec7e20-d937-4d66-a694-9895671c7ff2", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.349Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--ead3731b-171c-43f2-8288-dda59326eec4", - "modified": "2021-01-06T18:28:41.349Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--0637c8dc-388f-498d-bd92-288925d1b02d", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.350Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.576Z", "id": "relationship--6fde4b7c-9465-46c6-ab34-1c0f9475bc55", - "modified": "2021-01-06T18:28:41.350Z", + "modified": "2021-01-13T01:50:51.576Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.351Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.577Z", "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:41.351Z", + "modified": "2021-01-13T01:50:51.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.352Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.577Z", "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:41.352Z", + "modified": "2021-01-13T01:50:51.577Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.354Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.578Z", "id": "relationship--ccb5393e-1989-487d-9d44-95fef73b9dc6", - "modified": "2021-01-06T18:28:41.354Z", + "modified": "2021-01-13T01:50:51.578Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.357Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.579Z", "id": "relationship--29c9e42e-fb7c-4440-8148-b47f1eec21d9", - "modified": "2021-01-06T18:28:41.357Z", + "modified": "2021-01-13T01:50:51.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.359Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:50:51.579Z", "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.359Z", + "modified": "2021-01-13T01:50:51.579Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.359Z", - "description": "Identification and Authentication (Organizational Users), Identifier Management ", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:41.359Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.360Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--b155ced1-ea31-47a6-9758-c1c218cfadee", - "modified": "2021-01-06T18:28:41.360Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.361Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.580Z", "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:41.361Z", + "modified": "2021-01-13T01:50:51.580Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.363Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.581Z", "id": "relationship--476682dc-ebc4-4fb5-ab98-328d03b06fdf", - "modified": "2021-01-06T18:28:41.363Z", + "modified": "2021-01-13T01:50:51.581Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.365Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.582Z", "id": "relationship--2241bf7b-9c39-4ada-8d7e-e1dc374d2423", - "modified": "2021-01-06T18:28:41.365Z", + "modified": "2021-01-13T01:50:51.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.366Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.582Z", "id": "relationship--b30db6f4-14a2-49f7-9333-a0222644dc28", - "modified": "2021-01-06T18:28:41.366Z", + "modified": "2021-01-13T01:50:51.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.368Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--5a008fc9-d555-4188-947d-3220ac8dfda9", - "modified": "2021-01-06T18:28:41.368Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.368Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--7b4caa87-22e4-4a72-9547-691969a3cfe4", - "modified": "2021-01-06T18:28:41.368Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--cd208dfa-d4d3-48f9-8609-8d5d48b08c92", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--383c6344-b987-45b1-94b3-75bb6e3194c5", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--f7e977f6-e79b-4d55-9add-256b22b9c627", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--d110af3d-baee-4e1a-9705-082819a016fc", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.369Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--faa9de7f-dec7-47b8-8d1d-35f76b044738", - "modified": "2021-01-06T18:28:41.369Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.583Z", "id": "relationship--db54294b-e768-49cd-9498-6d3acf496220", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.583Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--71095018-2cf2-4115-a2d4-b9502db558f4", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.370Z", - "description": "Baseline Configuration, Configuration Change Control, Access Restiction for Change, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--81c3a0fb-4555-4665-b096-7676c63f06dc", - "modified": "2021-01-06T18:28:41.370Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.371Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.584Z", "id": "relationship--837934b5-d1b0-4b9c-98ba-3c7ee61f47e2", - "modified": "2021-01-06T18:28:41.371Z", + "modified": "2021-01-13T01:50:51.584Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.371Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--585ab51b-a59b-428a-965d-9f6b800bbe5d", - "modified": "2021-01-06T18:28:41.371Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.372Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--cf5e4550-7734-46db-aa43-3b4b84b16e2b", - "modified": "2021-01-06T18:28:41.372Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.372Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--70e337bd-b057-4366-9663-f59a52b30f76", - "modified": "2021-01-06T18:28:41.372Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.373Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--ee02acdd-ed91-412b-a31c-c49123992791", - "modified": "2021-01-06T18:28:41.373Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.373Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.585Z", "id": "relationship--caab116b-2943-42f7-adb5-9fbdd374b042", - "modified": "2021-01-06T18:28:41.373Z", + "modified": "2021-01-13T01:50:51.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.374Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.586Z", "id": "relationship--3bc78f76-ac1d-4cea-a5bd-24cdd415d4bd", - "modified": "2021-01-06T18:28:41.374Z", + "modified": "2021-01-13T01:50:51.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9dd0e74f-3d04-45c8-b5ac-fa5ac46c679e", - "modified": "2021-01-06T18:28:41.375Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.586Z", "id": "relationship--1b17e7e5-8a57-45df-8a38-f97ef39bd417", - "modified": "2021-01-06T18:28:41.375Z", + "modified": "2021-01-13T01:50:51.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.375Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:41.375Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.377Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:50:51.587Z", "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:41.377Z", + "modified": "2021-01-13T01:50:51.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.377Z", - "description": "Identification and Authentication (Organizational Users)", + "created": "2021-01-13T01:50:51.587Z", "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:41.377Z", + "modified": "2021-01-13T01:50:51.587Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:41.378Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--cc566247-0f2f-4f98-91a1-9fc3e3721144", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.378Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:41.378Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.588Z", "id": "relationship--099309d5-29bf-4236-ba76-45a1144bbbc5", - "modified": "2021-01-06T18:28:41.379Z", + "modified": "2021-01-13T01:50:51.588Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:41.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--082007e1-06d2-444d-bfe2-7783054a8bd3", - "modified": "2021-01-06T18:28:41.379Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.379Z", - "description": "Account Management, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:41.379Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.380Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:41.380Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.380Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.589Z", "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:41.380Z", + "modified": "2021-01-13T01:50:51.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.381Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--3fa2d61c-1517-45b3-96e8-fa1d2fe2caca", - "modified": "2021-01-06T18:28:41.381Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.381Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:41.381Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.382Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:41.382Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.382Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.590Z", "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:41.382Z", + "modified": "2021-01-13T01:50:51.590Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.383Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.591Z", "id": "relationship--09c3f201-a35e-4afc-8927-ab8bc1d78823", - "modified": "2021-01-06T18:28:41.383Z", + "modified": "2021-01-13T01:50:51.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.384Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.591Z", "id": "relationship--4c566c4c-c21a-4c21-a06a-07d9deb62ba1", - "modified": "2021-01-06T18:28:41.384Z", + "modified": "2021-01-13T01:50:51.591Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.385Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--fdb419ff-57eb-4b03-84c5-450f41628c04", - "modified": "2021-01-06T18:28:41.385Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.592Z", "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.592Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--db5103f0-aa5f-4912-b669-8aeca8eed5bc", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.386Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--3c2207ac-a26a-4578-a6e4-a795410c8833", - "modified": "2021-01-06T18:28:41.386Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--5363c89a-6f80-4a5d-9a5c-3cccd39976a9", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--98b10b78-86cc-4e1a-8096-e641838ec403", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.387Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.593Z", "id": "relationship--344da011-86ac-433c-bad4-f0e3c7b234ea", - "modified": "2021-01-06T18:28:41.387Z", + "modified": "2021-01-13T01:50:51.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--3cedd134-7cdf-4e45-89b5-66673d71c464", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--2535d843-55cd-4445-99fd-2440a227020e", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--f3058437-6b49-4def-8b8e-f7a2322642db", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.389Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.594Z", "id": "relationship--50cdaaec-1842-46cd-ba97-3873f9bec666", - "modified": "2021-01-06T18:28:41.389Z", + "modified": "2021-01-13T01:50:51.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.390Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:41.390Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.390Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:41.390Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--cea89952-63f9-4ede-ab2d-891d946a1dac", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--fe4bd807-eae4-4c61-8477-e260023c33bb", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--de29bbd7-8b61-4d5d-8a28-5dd95359981e", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.391Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.595Z", "id": "relationship--b74e4c72-a7d8-4bac-b790-81596ea035b4", - "modified": "2021-01-06T18:28:41.391Z", + "modified": "2021-01-13T01:50:51.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.392Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--28148035-4e92-41f8-8ee8-a0a231ed5820", - "modified": "2021-01-06T18:28:41.392Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.392Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--75a893ff-7442-45a5-93c8-106c9a13e4c2", - "modified": "2021-01-06T18:28:41.392Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.393Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.596Z", "id": "relationship--0dcd4589-d204-47de-9638-97dcc4e4d21c", - "modified": "2021-01-06T18:28:41.393Z", + "modified": "2021-01-13T01:50:51.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.393Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--6125938a-3713-4cba-a8c4-c28ac33ac33a", - "modified": "2021-01-06T18:28:41.393Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--a3a47645-d85d-4f2d-a59d-a05794abd26c", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.597Z", "id": "relationship--176e4840-8df4-4952-9cd1-af72215c8a52", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.597Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.394Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--6ab9fc4b-07ec-4659-b4cd-37325cee3dd2", - "modified": "2021-01-06T18:28:41.394Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--15066b22-1735-472e-9aed-9b8c47ec21d7", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--4a789516-e876-480f-8662-ca90dc52963c", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--cfdfdb3c-e0c5-4593-a0aa-d0b2b71ae1c5", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--8c8d36e5-8304-4ed5-a64f-96b187565955", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--29d37714-06fd-4873-8673-c21368896284", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.395Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--861d5753-b10f-44c7-8f44-42f480cf4c6c", - "modified": "2021-01-06T18:28:41.395Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--ee663b1f-01d7-4f21-9262-0bea1a5c5713", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--f60b12fb-e623-49af-b25f-2f962be0fecd", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.396Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", + "created": "2021-01-13T01:50:51.598Z", "id": "relationship--dda6174f-98fb-47f3-830e-8881ae1b2369", - "modified": "2021-01-06T18:28:41.396Z", + "modified": "2021-01-13T01:50:51.598Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--e4c0c4a4-2f9e-4080-a7e4-d89d40621012", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--22ff8044-539d-4c81-9a59-f241a688ddc2", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.397Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--2d20d1d2-530e-4337-ac81-82aab8f9f5d8", - "modified": "2021-01-06T18:28:41.397Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.398Z", - "description": "Continous Monitoring", + "created": "2021-01-13T01:50:51.599Z", "id": "relationship--ac4e304d-6c1f-465c-b86f-863b5562e553", - "modified": "2021-01-06T18:28:41.398Z", + "modified": "2021-01-13T01:50:51.599Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--1e4c8852-62a9-4abb-a149-cd05b0c14090", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--d26b1738-e17c-4832-af3e-1be2b1bf1c50", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--f7a45fb7-d281-498c-b6ec-ebed5c808631", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.600Z", "id": "relationship--b3d76d60-e5d5-4ff0-afd9-ad602e1dfa44", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.600Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.399Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--52590fc9-9517-46b6-9768-ba13cb20fe12", - "modified": "2021-01-06T18:28:41.399Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--fa4810c0-1ad8-465c-8375-d86210894d9c", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--c38183a3-6664-48e5-a5a4-9153cd9336d6", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.400Z", - "description": "Boundary Protection, Detonation Chambers", + "created": "2021-01-13T01:50:51.601Z", "id": "relationship--26bd3e30-bd60-4213-b9a4-87cd9aca731c", - "modified": "2021-01-06T18:28:41.400Z", + "modified": "2021-01-13T01:50:51.601Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.401Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--b4b5036b-ad6f-4b7b-91bb-78568f20b8c9", - "modified": "2021-01-06T18:28:41.401Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--cca0ccb6-a068-4574-a722-b1556f86833a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.401Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--29ed9123-dd6a-4cea-9393-719c0f04cf84", - "modified": "2021-01-06T18:28:41.401Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--8982a661-d84c-48c0-b4ec-1db29c6cf3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.402Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--ff5a098a-65b6-47b4-85c5-26774fae31e9", - "modified": "2021-01-06T18:28:41.402Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2d3f5b3c-54ca-4f4d-bb1f-849346d31230", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.402Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.602Z", "id": "relationship--0c672987-6a45-481a-acbb-34f6819fb24f", - "modified": "2021-01-06T18:28:41.402Z", + "modified": "2021-01-13T01:50:51.602Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f870408c-b1cd-49c7-a5c7-0ef0fc496cc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.403Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:41.403Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.403Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--0ead6392-dd34-4235-81a7-d79f27e4f82e", - "modified": "2021-01-06T18:28:41.403Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--aff786e2-4a91-48d8-b8b0-ae93007b6411", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.603Z", "id": "relationship--86865f42-1fb8-43bf-a101-fe50d8c21636", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.404Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--538fc01b-05e6-4585-8993-b934a73ab435", - "modified": "2021-01-06T18:28:41.404Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--c81b9290-28a4-48b1-b02a-d484fb71d307", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--2f2c40c6-6dee-48ad-bb44-3e5b8d1577e1", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--f78f256d-000f-4de7-bf95-b1d731d6982c", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.405Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--4c2976fe-6609-4539-b4e6-012bdcd50945", - "modified": "2021-01-06T18:28:41.405Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.406Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.604Z", "id": "relationship--e5e97119-2f5c-4252-a804-c3a060dbc04d", - "modified": "2021-01-06T18:28:41.406Z", + "modified": "2021-01-13T01:50:51.604Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--e3164bcc-554b-4625-bdce-4ec4ba50c7c2", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--de026ce1-9ab7-44ce-a4a1-278381b9d05b", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.407Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.605Z", "id": "relationship--1f1b885b-359a-4072-a800-e117708b5377", - "modified": "2021-01-06T18:28:41.407Z", + "modified": "2021-01-13T01:50:51.605Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.408Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.606Z", "id": "relationship--0819e476-dfd4-47f9-853f-ec537614e53e", - "modified": "2021-01-06T18:28:41.408Z", + "modified": "2021-01-13T01:50:51.606Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--8c6a4d19-5493-4d3a-8744-f59dc4043c16", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--12d4b824-c076-492c-816c-43682f0c4cb5", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.409Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--727e92cd-8b5f-49a9-840a-2360bfa86311", - "modified": "2021-01-06T18:28:41.409Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--467b5685-4673-4759-b470-0e59838782f7", - "modified": "2021-01-06T18:28:41.410Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.410Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.607Z", "id": "relationship--1341c25e-2c85-4932-a244-ac392b770dbb", - "modified": "2021-01-06T18:28:41.410Z", + "modified": "2021-01-13T01:50:51.607Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.411Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.608Z", "id": "relationship--a9ac73e0-8001-4d47-9338-73a21e791d99", - "modified": "2021-01-06T18:28:41.411Z", + "modified": "2021-01-13T01:50:51.608Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.412Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.609Z", "id": "relationship--10d50932-cf37-4b00-bc5a-fd67e2992fb3", - "modified": "2021-01-06T18:28:41.412Z", + "modified": "2021-01-13T01:50:51.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.413Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--92e46290-1a1e-4bc9-9790-877f3f0afdc6", - "modified": "2021-01-06T18:28:41.413Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.413Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:41.413Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--f91d2d17-f523-41bb-b38e-31c8d1f04353", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--af550742-cc28-4369-a6ce-9f09a0e8d12e", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.414Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.414Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--4a94d079-5482-4075-9bbf-509b15c48d7a", - "modified": "2021-01-06T18:28:41.415Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.415Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.610Z", "id": "relationship--a5521b36-114a-49c4-97c0-6c8123295887", - "modified": "2021-01-06T18:28:41.415Z", + "modified": "2021-01-13T01:50:51.610Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--7410fcdd-0d9b-46d6-94ee-64581c4201a9", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--bde4980f-c775-4b09-b62c-dc95637d7ff9", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--bd2ad0f0-7d39-4b12-a7a0-b2f43124c5d0", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--fff5fe25-44f9-4fbb-850d-4f796680b54c", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.416Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.416Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--077c7baa-066a-4f0e-89c1-a7f9a495b05f", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--2eb7ae6a-186d-444b-89d5-018f172320f5", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--8aa0e041-d8b6-405a-8211-6744bd677e35", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.417Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--47af864f-76af-4b02-bd43-df9aaf47f5f6", - "modified": "2021-01-06T18:28:41.417Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--90a065ae-7d35-4cc6-86c5-cd4b51e7a4fd", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--2e6d8f09-002f-4cce-abc7-0585a412a45f", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.611Z", "id": "relationship--f75b8e4f-4141-4ea4-91e2-0feab2dc4978", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.611Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--4c49c778-6d54-4371-a237-1e60a5f1fd84", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--0b201002-86d1-4267-a398-766e695e62e4", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--74c4043b-40f5-4f9c-a60a-b938762f358b", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.418Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:41.418Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.419Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:41.419Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.419Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.612Z", "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.419Z", + "modified": "2021-01-13T01:50:51.612Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--7be7d278-9610-4b6f-b5d5-100fbbc6de09", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--ea97ea6c-ab42-4da5-9409-3ff41a3d1a6c", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--c5392917-8265-46d3-94f2-5f5d1bcff28e", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--30e4633f-e101-4dbd-9e75-3a34287a032b", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.420Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--97dcb7f9-d75d-42db-8b71-f8aec7c9a05c", - "modified": "2021-01-06T18:28:41.420Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.421Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--85529de5-2354-4b3e-b217-4010096c970a", - "modified": "2021-01-06T18:28:41.421Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.421Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.613Z", "id": "relationship--f025071b-e0b1-4e48-be5b-60115963cbf1", - "modified": "2021-01-06T18:28:41.421Z", + "modified": "2021-01-13T01:50:51.613Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--d9c0df34-bc61-4cc5-bdef-2e8fecf169a5", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.614Z", "id": "relationship--38828dc6-2f6e-4a2e-b6a5-2946efe404ea", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.614Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--c9bd0e9a-e9c9-47f5-a03d-0d3c0924ccb7", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.422Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.615Z", "id": "relationship--37c025aa-01c9-4dfd-ac7c-c6587540835b", - "modified": "2021-01-06T18:28:41.422Z", + "modified": "2021-01-13T01:50:51.615Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.423Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--2899eabf-1c83-4045-b80f-a6dd003a0dcd", - "modified": "2021-01-06T18:28:41.423Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--cc7cc633-5af4-414a-a98e-40489e28122d", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--4a972afb-8825-4d75-9115-a62fe1f87ff4", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.424Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.616Z", "id": "relationship--0d0d9d87-1ce1-4f5e-93cc-070fb687a6be", - "modified": "2021-01-06T18:28:41.424Z", + "modified": "2021-01-13T01:50:51.616Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.426Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.617Z", "id": "relationship--333af2dc-2655-41c3-9b0a-50cf84458060", - "modified": "2021-01-06T18:28:41.426Z", + "modified": "2021-01-13T01:50:51.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.427Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.617Z", "id": "relationship--d5e145d7-adfb-4716-9dc9-f3f3260dee0d", - "modified": "2021-01-06T18:28:41.427Z", + "modified": "2021-01-13T01:50:51.617Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.427Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.618Z", "id": "relationship--a98b16bf-5921-4841-b1a2-607ca704e184", - "modified": "2021-01-06T18:28:41.427Z", + "modified": "2021-01-13T01:50:51.618Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.428Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.428Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.429Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.429Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.429Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.430Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.649Z", "id": "relationship--7342e29b-5e2b-45db-9aca-5eb2db605886", - "modified": "2021-01-06T18:28:41.430Z", + "modified": "2021-01-13T01:50:51.649Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.431Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.650Z", "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:41.431Z", + "modified": "2021-01-13T01:50:51.650Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.432Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:41.432Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.433Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.651Z", "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:41.433Z", + "modified": "2021-01-13T01:50:51.651Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.434Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.652Z", "id": "relationship--bfbd6c2a-4dc6-4f3f-982b-a8d4d9956356", - "modified": "2021-01-06T18:28:41.434Z", + "modified": "2021-01-13T01:50:51.652Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.435Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.653Z", "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:41.435Z", + "modified": "2021-01-13T01:50:51.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.653Z", "id": "relationship--91e3888b-cae1-4d51-b454-bd15d9e6c5f4", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.653Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--3bf5b987-b09b-4e65-bf35-629a373cd189", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--85107aae-f980-40f1-a8ff-404be6078999", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.437Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--9ef6d146-7baf-4f41-8871-298cff991853", - "modified": "2021-01-06T18:28:41.437Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.438Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.654Z", "id": "relationship--020fc378-843d-4316-850c-b19df028d401", - "modified": "2021-01-06T18:28:41.438Z", + "modified": "2021-01-13T01:50:51.654Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.438Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--7a7dad9f-03ad-4ef0-b56c-23fc8c6e43ab", - "modified": "2021-01-06T18:28:41.438Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--8f104855-e5b7-4077-b1f5-bc3103b41abe", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.655Z", "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--03895cdb-773f-454a-b1e0-023fb66b2817", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.440Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.656Z", "id": "relationship--f77f477d-534a-4d66-a8bb-b0f92b25ec21", - "modified": "2021-01-06T18:28:41.440Z", + "modified": "2021-01-13T01:50:51.656Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.441Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--eb17a6a1-0ace-4d8a-a22f-a9fe7c7cea0f", - "modified": "2021-01-06T18:28:41.441Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--bd358cb0-0b10-449c-b7ee-d8d1abf4f803", - "modified": "2021-01-06T18:28:41.442Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.442Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--85448e89-c513-4ea0-8b21-ec21ce981066", - "modified": "2021-01-06T18:28:41.442Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.488Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--8b34f91d-05e3-4929-9bfd-768b9531043f", - "modified": "2021-01-06T18:28:41.488Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--e9cfb843-fdd8-43af-bbf1-e5bb241b04e2", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--2a71dd45-8a9d-4e2a-acbf-0e54789017f4", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--a2e3a301-8f7e-4f98-a25b-91b7c2b72509", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--b192bd04-3c75-4183-9f34-f68861822178", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--6216261a-c71c-404e-928d-f6e6a9d492df", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.489Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.657Z", "id": "relationship--78f43327-d3c3-4d8b-bb27-ae1ed1168524", - "modified": "2021-01-06T18:28:41.489Z", + "modified": "2021-01-13T01:50:51.657Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--b1e3aa8f-33ee-4e87-843d-a3bb5916572d", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--3f5f96bc-9eed-458a-8d53-68524873fd13", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--51efc053-6f21-4827-87de-3bbff017a742", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--72b30836-50d3-4ef3-bbf8-be20ba36c26c", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.490Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--766486a7-a9bb-4b83-8008-3e503ffa6b29", - "modified": "2021-01-06T18:28:41.490Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.491Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.658Z", "id": "relationship--4b4d32e8-a9d5-4e24-9392-c9568d7effab", - "modified": "2021-01-06T18:28:41.491Z", + "modified": "2021-01-13T01:50:51.658Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--c7289be7-4b9f-4eae-ae16-e3f7c7f49640", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--3d56f277-7a35-4caf-8fa1-27f0bf5a1f97", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--f03688e5-ca08-4035-91bc-40f8640837cb", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.492Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.659Z", "id": "relationship--dee24bb0-b664-4548-933c-f20068daf2fe", - "modified": "2021-01-06T18:28:41.492Z", + "modified": "2021-01-13T01:50:51.659Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.493Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--8de150b7-6331-4581-a5c8-024dada3ebdf", - "modified": "2021-01-06T18:28:41.493Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.493Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--3130eb74-7a91-4729-bd3c-3421adaea415", - "modified": "2021-01-06T18:28:41.493Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.494Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--448c8862-dc62-40d6-a4c4-6d39cf97130d", - "modified": "2021-01-06T18:28:41.494Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.494Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.660Z", "id": "relationship--4c65565e-f173-477b-8fd5-e082092df64a", - "modified": "2021-01-06T18:28:41.494Z", + "modified": "2021-01-13T01:50:51.660Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--985acde3-b4aa-427c-81f6-6df43216a248", - "modified": "2021-01-06T18:28:41.495Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--c51bdd33-df88-46dc-ae36-f86884d2648b", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--1f3c8eb6-395c-429b-aee6-bc01214e389a", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.495Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.661Z", "id": "relationship--bb42d369-5de9-4289-a3af-b9eac67c605b", - "modified": "2021-01-06T18:28:41.495Z", + "modified": "2021-01-13T01:50:51.661Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.496Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.662Z", "id": "relationship--e129bb46-fa9c-402a-a5db-aa7c9370b601", - "modified": "2021-01-06T18:28:41.496Z", + "modified": "2021-01-13T01:50:51.662Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.498Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.663Z", "id": "relationship--38fa9004-0fbf-47dd-bbb2-e0116b9ebe52", - "modified": "2021-01-06T18:28:41.498Z", + "modified": "2021-01-13T01:50:51.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--544b0346-29ad-41e1-a808-501bb4193f47", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.663Z", "id": "relationship--d48c81eb-51a5-4687-bf79-1058b7731640", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.663Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--81c2f704-7a9d-4fa1-a798-08a50c6add2b", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.499Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--d1a56bed-362f-4833-95e3-7e284560b47d", - "modified": "2021-01-06T18:28:41.499Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.500Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.664Z", "id": "relationship--33ef7b59-d79e-4114-9545-2eb9e3d2a887", - "modified": "2021-01-06T18:28:41.500Z", + "modified": "2021-01-13T01:50:51.664Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.501Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.665Z", "id": "relationship--335f9e74-cea2-4cf0-a3bf-d5c677257499", - "modified": "2021-01-06T18:28:41.501Z", + "modified": "2021-01-13T01:50:51.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.502Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.665Z", "id": "relationship--0908f4b2-7b7a-4d92-b918-a457e60b4b12", - "modified": "2021-01-06T18:28:41.502Z", + "modified": "2021-01-13T01:50:51.665Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.503Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:41.503Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--aebd8610-3415-4fda-b30d-747a7058e8b7", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--706ea452-7d39-4532-83b5-9aff4850849f", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f5c5df5e-7c22-4e4b-9f3f-b2ce14f11cb0", - "modified": "2021-01-06T18:28:41.504Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--892fe962-257e-48e0-9814-01efaedd6228", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--3411f2f9-462f-43e3-bbdb-f24cef37b3d3", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.504Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.667Z", "id": "relationship--34faa08f-16ce-4d43-9421-414ee039af82", - "modified": "2021-01-06T18:28:41.504Z", + "modified": "2021-01-13T01:50:51.667Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.505Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:41.505Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--0def5210-3189-4625-84fc-236a97a54050", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--42cc528f-f076-4596-b9e3-c2850a3a123d", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.506Z", - "description": "Information System Change Restrictions", - "id": "relationship--0acf4fab-1bce-49f1-a945-1ef19cfc874e", - "modified": "2021-01-06T18:28:41.506Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.668Z", "id": "relationship--c5428385-879e-4ffd-bff6-bd506499c94a", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.668Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--dd42798d-049a-402c-b186-5ebe9d2f5970", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--e2ee4219-6f79-4329-adde-0301d2faac05", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.507Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--edb0df8b-9ec0-40b5-94e0-5720ba9665a1", - "modified": "2021-01-06T18:28:41.507Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.508Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--16425e57-eea3-4e69-8626-660d75d6e438", - "modified": "2021-01-06T18:28:41.508Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.508Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.669Z", "id": "relationship--8999094b-f2a9-4648-bf4f-444cac78beaf", - "modified": "2021-01-06T18:28:41.508Z", + "modified": "2021-01-13T01:50:51.669Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--f649d5c3-4cab-4df7-b96f-9994907f6c34", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--d8165d3d-abad-49a0-aaa0-957b07a8cfc8", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--f825c2b9-ac53-481c-aa6a-695ae3cce15f", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.509Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.670Z", "id": "relationship--fc8f7147-a2ec-4bb9-9f61-6b137d2faacf", - "modified": "2021-01-06T18:28:41.509Z", + "modified": "2021-01-13T01:50:51.670Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.510Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.671Z", "id": "relationship--fdc35d57-8238-4d2f-b3fd-82315c77cead", - "modified": "2021-01-06T18:28:41.510Z", + "modified": "2021-01-13T01:50:51.671Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.511Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.672Z", "id": "relationship--6ceda5b3-b48c-431d-a6a3-e37e12ebd950", - "modified": "2021-01-06T18:28:41.511Z", + "modified": "2021-01-13T01:50:51.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.512Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.672Z", "id": "relationship--248564ad-8acb-4207-9782-1490d6f18dc4", - "modified": "2021-01-06T18:28:41.512Z", + "modified": "2021-01-13T01:50:51.672Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.512Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--9215090d-353c-4045-b126-0fa1d109c383", - "modified": "2021-01-06T18:28:41.512Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.513Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--00fff955-3cd3-43c5-ad80-031d032af016", - "modified": "2021-01-06T18:28:41.513Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.513Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:41.513Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.514Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.673Z", "id": "relationship--ad9e965b-b4b8-422f-884e-174e19ded319", - "modified": "2021-01-06T18:28:41.514Z", + "modified": "2021-01-13T01:50:51.673Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.515Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.674Z", "id": "relationship--cb488b88-05f2-40ca-9c2c-de1a363c7ee8", - "modified": "2021-01-06T18:28:41.515Z", + "modified": "2021-01-13T01:50:51.674Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--07ec7e20-d937-4d66-a694-9895671c7ff2", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.517Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0637c8dc-388f-498d-bd92-288925d1b02d", - "modified": "2021-01-06T18:28:41.517Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.518Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.518Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.519Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.676Z", "id": "relationship--f7338e94-a0c6-4fef-a01d-d516dfd151e9", - "modified": "2021-01-06T18:28:41.519Z", + "modified": "2021-01-13T01:50:51.676Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.521Z", - "description": "User Access Permissions", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.521Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.521Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.677Z", "id": "relationship--1cdea45b-d7d0-491c-a623-b6bb300aa1cf", - "modified": "2021-01-06T18:28:41.521Z", + "modified": "2021-01-13T01:50:51.677Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.522Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--bf7cfe75-20ed-4e64-9741-2bb86698ccb9", - "modified": "2021-01-06T18:28:41.522Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.523Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.678Z", "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:41.523Z", + "modified": "2021-01-13T01:50:51.678Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.524Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.679Z", "id": "relationship--912ee5c5-1539-4ff5-8271-fdf81d6bfb85", - "modified": "2021-01-06T18:28:41.524Z", + "modified": "2021-01-13T01:50:51.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.525Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.679Z", "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:41.525Z", + "modified": "2021-01-13T01:50:51.679Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.525Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.680Z", "id": "relationship--acd8798a-167f-4ece-aabc-04d2adb28165", - "modified": "2021-01-06T18:28:41.525Z", + "modified": "2021-01-13T01:50:51.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.680Z", "id": "relationship--4ea3f401-d11b-4484-bf67-00d57a224b19", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.680Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--1a5135a5-893b-478a-879c-f3f0e3c38a63", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.526Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--02dc504b-b23d-4493-89a3-e37e7ad14c51", - "modified": "2021-01-06T18:28:41.526Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.528Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.681Z", "id": "relationship--5d4cad38-1a48-49f9-bf26-54ffa517faa1", - "modified": "2021-01-06T18:28:41.528Z", + "modified": "2021-01-13T01:50:51.681Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.529Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.682Z", "id": "relationship--71759600-496d-4fca-a810-357db14d5fcd", - "modified": "2021-01-06T18:28:41.529Z", + "modified": "2021-01-13T01:50:51.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.529Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.682Z", "id": "relationship--6562a581-b7dc-4316-9093-fc06bc454496", - "modified": "2021-01-06T18:28:41.529Z", + "modified": "2021-01-13T01:50:51.682Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--fb978752-d9aa-45d5-87ff-37b5de246be4", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--ec186cec-b93e-49d8-8a87-002a2f0c03aa", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--6626c47b-fa66-4d59-a531-508181b9aba5", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.530Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.683Z", "id": "relationship--baecf6de-abac-4811-ad93-c857a73f79b2", - "modified": "2021-01-06T18:28:41.530Z", + "modified": "2021-01-13T01:50:51.683Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.531Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.684Z", "id": "relationship--a605db1a-a976-4c37-ab43-8230df304651", - "modified": "2021-01-06T18:28:41.531Z", + "modified": "2021-01-13T01:50:51.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.532Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.684Z", "id": "relationship--638a2116-79ea-4f78-9609-96e8fca08901", - "modified": "2021-01-06T18:28:41.532Z", + "modified": "2021-01-13T01:50:51.684Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--e49920b0-6c54-40c1-9571-73723653205f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.533Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--e9d2abae-3004-4a66-bf21-08dd2cc73379", - "modified": "2021-01-06T18:28:41.533Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.533Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--e6a4fdd4-b9c6-46a1-ad21-fe9ff7c91a90", - "modified": "2021-01-06T18:28:41.533Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--040e50cc-b923-45d8-96ed-333007afec96", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--38309b7f-6d97-465e-b887-ad460a70743b", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.685Z", "id": "relationship--f6f4ea16-b7ef-4feb-9f3e-ec1ae467399a", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--dcc19e64-ef16-4ec7-99c8-9561ea1e96f4", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--d54eef8c-540e-4f09-bf86-ed27861d5079", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.534Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--7edace2f-90df-4c4c-93c8-4d68403a81d0", - "modified": "2021-01-06T18:28:41.534Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--0fb5714d-9e45-47b0-bb42-1a873f4c8ee4", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--140320c9-34e0-4dbd-a5f3-78a0c27f538b", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--28116651-8c0c-4746-a8d3-f797a549d875", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--ab58a23f-bbea-4b85-9386-22a85400ff0a", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.535Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--6c5d874b-f9da-4d53-8c70-1082c3ce7ca7", - "modified": "2021-01-06T18:28:41.535Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--77dfddb4-b1b4-4555-98db-27322fa6d197", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.686Z", "id": "relationship--3bb8ffd3-d390-43fd-b2e6-3f795a716af3", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.686Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--03e491f2-195f-48ba-8656-062ff15dc12a", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.536Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--db7d2671-298d-40b4-a025-b6fc98d281a8", - "modified": "2021-01-06T18:28:41.536Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.687Z", "id": "relationship--cb67ebbe-f2f5-4b2a-af77-2662c1334366", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.687Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--eca0889e-87ac-45cf-84d0-964d8c1fb2c1", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.537Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--c1047e96-6026-4c7f-99d4-8e656b7070b2", - "modified": "2021-01-06T18:28:41.537Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--6bebbd68-e413-467f-80cb-7c2f18b0aedd", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--622b8fc1-632a-4c1b-bb15-9c5213a4d776", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--1573bd1d-2500-4984-83ae-587716c2c1db", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.538Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:41.538Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.539Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.688Z", "id": "relationship--b086680d-6ae4-438c-9662-25d4ff0f83e0", - "modified": "2021-01-06T18:28:41.539Z", + "modified": "2021-01-13T01:50:51.688Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--faccd1b9-0ac5-44ce-a18f-9af1d56b4f83", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--e30a1046-2df8-4957-9f12-dc380080cd38", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d10cbd34-42e3-45c0-84d2-535a09849584", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--1f9feb85-1143-4ac8-8c73-f9776dbfb6c3", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--573ad264-1371-4ae0-8482-d2673b719dba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.689Z", "id": "relationship--3e453be5-8b97-4bb5-91ee-94a7795178fc", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.540Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--69a0f355-ff87-4694-a5eb-d3123aacb378", - "modified": "2021-01-06T18:28:41.540Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.541Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--e62cd748-16fa-4876-93cd-17791c60d272", - "modified": "2021-01-06T18:28:41.541Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.690Z", "id": "relationship--38ee0da5-b9f0-4975-b350-11ab8ba003d8", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.690Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--2aee4f44-3794-415b-83c3-aa550a669f40", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.542Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--153b572b-6563-43fc-b371-3e77128ef2b7", - "modified": "2021-01-06T18:28:41.542Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.543Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.691Z", "id": "relationship--77f5d653-ab6c-4593-aa6f-5e9009972cb0", - "modified": "2021-01-06T18:28:41.543Z", + "modified": "2021-01-13T01:50:51.691Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.544Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.692Z", "id": "relationship--b52adc77-25e6-4331-b3a9-f29e3e8c0d84", - "modified": "2021-01-06T18:28:41.544Z", + "modified": "2021-01-13T01:50:51.692Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--1fefdd84-f71f-4c93-b936-eb23d6b19aed", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--d0fff8f7-1497-4208-8ecb-6b7b2b2cedfd", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.545Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--6dead381-4128-413a-950d-4b06f56bcb3d", - "modified": "2021-01-06T18:28:41.545Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--e26c6074-3c27-4e3c-9f21-44e947f45082", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--5d7f4ac5-0fe9-43c5-8708-4f06104aaebb", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.693Z", "id": "relationship--fe6f54e9-c944-4cea-99d9-ed4af845f64b", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.693Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--b53d2b1b-f87f-4e9a-bcf0-baab371debf6", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--dc3a2d94-15b9-496f-b766-57396bc48cb4", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--c88acd69-1084-4747-a38c-563933fd3ded", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--2e7b4d34-c822-4161-80b3-9d2913bd7351", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.546Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--aac9910b-1cb4-4dd2-b6c8-c8efb6077433", - "modified": "2021-01-06T18:28:41.546Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.547Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.694Z", "id": "relationship--70ee1cfb-017b-43b9-a2a3-26e5cd9722c2", - "modified": "2021-01-06T18:28:41.547Z", + "modified": "2021-01-13T01:50:51.694Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.548Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--56167ecc-0d33-45fd-b8d8-2c634176fc22", - "modified": "2021-01-06T18:28:41.548Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.548Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--38bfd7cc-dc95-4847-8568-e2cbb4824b17", - "modified": "2021-01-06T18:28:41.548Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.549Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.695Z", "id": "relationship--70efec1c-2635-415e-bec8-1fdf95195249", - "modified": "2021-01-06T18:28:41.549Z", + "modified": "2021-01-13T01:50:51.695Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--f85627a6-1a5d-4eee-b59d-ce07dd7ae221", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2de47683-f398-448f-b947-9abcc3e32fad", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--ec6672b9-52aa-44a0-85ba-d0d8ddf62d5a", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.550Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.696Z", "id": "relationship--1e18e302-d379-465a-8d6a-cda6598bf511", - "modified": "2021-01-06T18:28:41.550Z", + "modified": "2021-01-13T01:50:51.696Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--68b2218c-da71-4854-bbfc-bc27f286ccc1", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:41.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--76e0294f-749c-4044-b80c-132cdbc4b10e", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.552Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--88480167-f9d5-4cce-aa4b-9e15f98bf20f", - "modified": "2021-01-06T18:28:41.552Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--71b88164-a923-4f65-913d-2ebaece59cfb", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--fe78983d-6080-4bff-8abe-1b291d20f370", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:41.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.697Z", "id": "relationship--fc0eee43-2c9d-479c-9e41-d0c35cfe723f", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.697Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--c32b4a7f-2f35-4d54-9e1f-26209a82d707", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:41.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.553Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:41.553Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.554Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--79e945fb-e00b-49ae-8b1f-36165ca52f16", - "modified": "2021-01-06T18:28:41.554Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.554Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.698Z", "id": "relationship--8499cd1c-6245-4e65-9a98-295b9a727bd9", - "modified": "2021-01-06T18:28:41.554Z", + "modified": "2021-01-13T01:50:51.698Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.555Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--e5141746-d8db-4085-9de8-6417faaaac4f", - "modified": "2021-01-06T18:28:41.555Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--1754fef6-9f78-4c99-971f-05c73c5a3cea", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--e89a2613-d7b3-4c50-81fe-1931547ab434", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.556Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.699Z", "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:41.556Z", + "modified": "2021-01-13T01:50:51.699Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.557Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--849d1531-82f7-4968-82c2-a1e5147aa91e", - "modified": "2021-01-06T18:28:41.557Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.557Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--7e788b60-9bdb-4d12-a9d1-80e8d120db09", - "modified": "2021-01-06T18:28:41.557Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.700Z", "id": "relationship--816be60a-1322-4f91-a087-643256df9bc8", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--a9bee93a-c706-4d14-94bd-b3ef3f8cb0ea", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--decc7f59-6998-4bbc-bbb7-4ffa022f02a9", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.558Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--f221c37f-ce57-4f2a-a546-8c037e97c8cd", - "modified": "2021-01-06T18:28:41.558Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--d9384747-8f1a-46fd-b347-70719369107d", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--e626b3e2-4c92-48c9-9397-6179ff778442", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--4ed01a4e-0c69-4335-8792-e7c2d8b872e8", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--575a7fb8-66cf-4230-9669-46a1970336bc", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--7c798c67-740c-4b17-9358-2e0069c3c8a5", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.559Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.701Z", "id": "relationship--b0a4bc20-9a4c-447e-99e7-315d6d3a1e2d", - "modified": "2021-01-06T18:28:41.559Z", + "modified": "2021-01-13T01:50:51.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--481339ac-a2ec-455e-8347-10f8ec3ae148", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--476b5673-d78d-4db9-ae99-fb9f78e3dec2", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--2cec8089-a5e7-4ab8-bb40-ff05f3daaee6", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--e7322ad6-9014-44ef-9727-0b18d98b08fc", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--d7f837bd-f179-413c-860d-acea0564e168", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--d896cc02-c662-478c-a20f-bcc759c06aba", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--bf39fa34-10a1-4b4a-acbf-9c0e465a047b", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.560Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--7d741a69-70b1-4c0f-a371-2957f5833edf", - "modified": "2021-01-06T18:28:41.560Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--25aefbcb-bf44-4c01-b761-a7523e5254e9", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.702Z", "id": "relationship--a7f4feb2-a995-4ada-b2a6-6c9ec3915ab1", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.561Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.703Z", "id": "relationship--81813aad-03f2-42e6-a50f-8e54e26095df", - "modified": "2021-01-06T18:28:41.561Z", + "modified": "2021-01-13T01:50:51.703Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.562Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--66229b07-2bfa-4792-a2ce-0bdeba390618", - "modified": "2021-01-06T18:28:41.562Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.562Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--a5b1455d-535a-461e-8f25-eb28844cd4bd", - "modified": "2021-01-06T18:28:41.562Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--fe8d9d57-6d8d-4d93-92a5-6cdc1fda64d5", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--bec85872-5751-40ed-9a64-cd321895c690", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--480bb83d-3fbd-459a-8880-10c6d2a5704d", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--3ee55c44-3433-46b4-ba10-5f255e162bd6", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.563Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.704Z", "id": "relationship--752def0c-ec5f-4bf0-9df0-3d953b986843", - "modified": "2021-01-06T18:28:41.563Z", + "modified": "2021-01-13T01:50:51.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--12a5b360-9de1-4a95-abee-42106f2fba7e", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--cacc40da-4c9e-462c-80d5-fd70a178b12d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--bdb27afb-819c-4fa1-8745-199161393189", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.564Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--c4602abb-11bd-4fb6-a8c5-3b78bfe3daff", - "modified": "2021-01-06T18:28:41.564Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--77532a55-c283-4cd2-bc5d-2d0b65e9d88c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--80fde8e0-ae0a-4ee7-8f43-6b85952b6297", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--9045902c-3971-4106-aebd-06d016c058b9", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--e951935f-b9a8-4f11-9de7-04574cb8ad92", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.565Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.705Z", "id": "relationship--8e4f6086-a596-4dfc-bd50-83c0c3e120be", - "modified": "2021-01-06T18:28:41.565Z", + "modified": "2021-01-13T01:50:51.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.566Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--5fda0916-3efa-41df-beab-ecbe789a946f", - "modified": "2021-01-06T18:28:41.566Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.566Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:41.566Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--baee3277-7779-4904-9f7b-a47d2fb60c38", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--279f6a00-a6a3-4c3d-9831-a5e4621f7dc2", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--d0e02db3-92c9-4182-91de-8f73229a77bf", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.706Z", "id": "relationship--dfa46476-46b3-4384-9d34-a840971ff87d", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.706Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--585e7b4b-3c5b-4fca-bd4d-ea4d8f80eaf6", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.567Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--e828fde7-143f-467a-aa2b-26a3ba424b07", - "modified": "2021-01-06T18:28:41.567Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.568Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.707Z", "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:41.568Z", + "modified": "2021-01-13T01:50:51.707Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.569Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--f986bdb9-3a86-4005-95d9-a2855ca64686", - "modified": "2021-01-06T18:28:41.569Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.569Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--4034116c-170a-4e2b-8196-7233107d88d7", - "modified": "2021-01-06T18:28:41.569Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.570Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--63b8669b-7ad5-4ecd-aa3a-20b12f6cd2e0", - "modified": "2021-01-06T18:28:41.570Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.570Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.708Z", "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:41.570Z", + "modified": "2021-01-13T01:50:51.708Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--d987fc0d-badd-44d1-9b5d-f0bf77b0390b", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--c92e894c-56c1-494a-9c50-b83f5c4e27fe", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.709Z", "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.571Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--f7f2756c-919a-40f5-9394-8476f56bc5dc", - "modified": "2021-01-06T18:28:41.571Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--c6cdf977-829b-4325-a2e8-8efadafde751", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--008eb80c-8b27-4a28-a4f4-ed7616a7152c", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.572Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:41.572Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.710Z", "id": "relationship--ea20873e-dcc4-4c78-93d3-96ff68b9c674", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--4b9f278c-7020-400b-8bc3-8d664760a717", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--c5085e7c-edd6-4397-9ad8-8837fb974ab5", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.573Z", - "description": "Information System Change Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--f160e307-5572-4e55-b758-d0096700e9d4", - "modified": "2021-01-06T18:28:41.573Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.574Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--33499a55-a52a-4a94-ad29-0a7ca200171f", - "modified": "2021-01-06T18:28:41.574Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--810aa4ad-61c9-49cb-993f-daa06199421d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.574Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.711Z", "id": "relationship--966e0b75-0ea4-469f-8213-b1961c40f27b", - "modified": "2021-01-06T18:28:41.574Z", + "modified": "2021-01-13T01:50:51.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.575Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--e605b05d-13c9-47b1-b235-32fd8058d41f", - "modified": "2021-01-06T18:28:41.575Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.575Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--779dee36-5e42-4455-8103-09516c090ba2", - "modified": "2021-01-06T18:28:41.575Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.712Z", "id": "relationship--be8ccbec-ac3a-4e7e-93b5-685a1d837dfa", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--48b9e304-0ed8-4c6c-b57e-588f19c3b5a2", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--3d155b62-1dd9-4e5b-afcc-7a8b57a0713a", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e522e370-b46f-414d-a0e5-5879018eb07b", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e4471b6a-a50e-483f-9533-8a02c8c6f297", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.576Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--4dfa8a66-6545-4ec8-860b-caf68745f16c", - "modified": "2021-01-06T18:28:41.576Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--e164f712-0cc0-44d4-9164-69171383e9c9", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--0fa5a92e-dc42-43a3-8056-08de88592e58", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--f82d8625-68b7-41c6-940c-2f4b07b35819", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--12cceeb1-0ae2-4980-a2d3-d121f5505b1e", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.713Z", "id": "relationship--8fa0a2c4-5e28-4148-99a3-90af85f15e16", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.577Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--467a911f-9cfa-4f58-92f0-ecd1e53ef687", - "modified": "2021-01-06T18:28:41.577Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.578Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:41.578Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.578Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--7e1e1151-b608-4696-ba04-c7e613449dae", - "modified": "2021-01-06T18:28:41.578Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.714Z", "id": "relationship--5c9bce1c-4077-4b2d-a7f2-cfec966093eb", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--2c38dda8-6f75-4e90-ada4-f49b6dc95302", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--30ae6d37-2622-4f72-ac8e-9915ff6c7880", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.579Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.715Z", "id": "relationship--bf34ac7d-4b5a-48e1-98a2-2770a360271a", - "modified": "2021-01-06T18:28:41.579Z", + "modified": "2021-01-13T01:50:51.715Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.580Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--5f52032e-3627-4cb0-9ae1-b0f8751fb416", - "modified": "2021-01-06T18:28:41.580Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--0b33aee5-0f08-4026-87e2-596cd8d28b83", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--f0a75750-e816-4cdd-b578-b0745bf25e60", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.581Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.716Z", "id": "relationship--6816f43b-3887-4da9-9cc1-a4ea3ee68a05", - "modified": "2021-01-06T18:28:41.581Z", + "modified": "2021-01-13T01:50:51.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.582Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--59bb170b-ac30-41c6-a96d-9a8b483d7334", - "modified": "2021-01-06T18:28:41.582Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--5a73e757-e951-4269-9f35-0bb6f5361b0a", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--7e5e57c6-7eb6-4dc2-aeb8-fbae798ccbfd", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a5329576-ea4b-4435-9fe1-04f42fb06f5c", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--d399485f-c93f-4f2f-9509-4fe8bf11c99c", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--8939ba9c-8ec4-4eb9-9f91-a312a46d2401", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.583Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--354e4c97-e06d-4a68-88bf-0f013c17f4a2", - "modified": "2021-01-06T18:28:41.583Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--996255ac-f9a0-4ae0-a396-dd9c632a96c4", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a0366550-61b7-41fd-9f43-542edb7f5316", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.717Z", "id": "relationship--a9b28a86-d282-4646-a9da-b98dd144b4ee", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.717Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--6097fec9-917d-474d-8cf2-dd38adf5e406", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.584Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--4163254a-168b-47c2-a634-b8b6ac5c830b", - "modified": "2021-01-06T18:28:41.584Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--c6d8d3d0-1c0b-4b04-9b6f-2d3915c604b6", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--72ae01ac-9079-4a46-b5bc-e0a2c8100380", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--99709171-a6c6-4a0a-bd87-ae334b0a87c6", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.585Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.718Z", "id": "relationship--6ec8417a-6142-4814-af0a-6afb14b6eb74", - "modified": "2021-01-06T18:28:41.585Z", + "modified": "2021-01-13T01:50:51.718Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.586Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--49fa465b-d9e9-4d22-9488-4806012ab632", - "modified": "2021-01-06T18:28:41.586Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--f60f01e0-a7ec-4a0e-97d4-ee8fed156d5f", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--c70a78a9-c985-4ae8-843e-5baed058e427", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.587Z", - "description": "Information System Change Restrictions", + "created": "2021-01-13T01:50:51.719Z", "id": "relationship--1a88bac3-a42c-42ae-b11a-b0388de2d725", - "modified": "2021-01-06T18:28:41.587Z", + "modified": "2021-01-13T01:50:51.719Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.588Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--85349f0d-ad08-43ed-800d-854c8b84468c", - "modified": "2021-01-06T18:28:41.588Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.588Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--c7a962b9-0c1d-48d3-a60d-6623b2076a85", - "modified": "2021-01-06T18:28:41.588Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.589Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--867cc3d2-75d5-4443-8d0d-85fcc10bd108", - "modified": "2021-01-06T18:28:41.589Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.589Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.720Z", "id": "relationship--30523245-ac13-4ca8-bec5-106789f0d712", - "modified": "2021-01-06T18:28:41.589Z", + "modified": "2021-01-13T01:50:51.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--60835612-0c3e-4285-b22e-d7eb369233c7", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--737f5638-cbc2-42dd-8d6c-3fa72cafee72", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--ed88a743-7314-4e63-b24b-f1e180af41e7", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.590Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.721Z", "id": "relationship--498243a8-3eae-4829-8ef3-070ae9c4d74f", - "modified": "2021-01-06T18:28:41.590Z", + "modified": "2021-01-13T01:50:51.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.591Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.722Z", "id": "relationship--5b0e6428-040f-49c1-89e6-3911bda128e6", - "modified": "2021-01-06T18:28:41.591Z", + "modified": "2021-01-13T01:50:51.722Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--57a3d31a-d04f-4663-b2da-7df8ec3f8c9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.593Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:50:51.723Z", "id": "relationship--d7f0ae85-e2a3-4f46-bd24-994f3552f9c5", - "modified": "2021-01-06T18:28:41.593Z", + "modified": "2021-01-13T01:50:51.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.594Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.723Z", "id": "relationship--8d58226a-0b58-4f4c-80f3-d7013cebe97f", - "modified": "2021-01-06T18:28:41.594Z", + "modified": "2021-01-13T01:50:51.723Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.594Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--f7f1efdb-054e-46f2-bada-b9edb3eb4e70", - "modified": "2021-01-06T18:28:41.594Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.595Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--b36781be-2438-4586-b351-407d929e87d0", - "modified": "2021-01-06T18:28:41.595Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.595Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.724Z", "id": "relationship--4e33cc8b-8fdf-4c6b-bbc7-a087600685f0", - "modified": "2021-01-06T18:28:41.595Z", + "modified": "2021-01-13T01:50:51.724Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.596Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.725Z", "id": "relationship--c499d99d-4f50-4674-aca7-b69819665057", - "modified": "2021-01-06T18:28:41.596Z", + "modified": "2021-01-13T01:50:51.725Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.597Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.726Z", "id": "relationship--2bd95d36-cc97-49a1-a2ef-9a0c4fd00a9c", - "modified": "2021-01-06T18:28:41.597Z", + "modified": "2021-01-13T01:50:51.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.597Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.726Z", "id": "relationship--754696d6-0ace-4199-a59e-b89de8409c95", - "modified": "2021-01-06T18:28:41.597Z", + "modified": "2021-01-13T01:50:51.726Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.598Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.727Z", "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:41.598Z", + "modified": "2021-01-13T01:50:51.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.598Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.727Z", "id": "relationship--6eb1daeb-874d-4779-83d6-aa3b1a4e064f", - "modified": "2021-01-06T18:28:41.598Z", + "modified": "2021-01-13T01:50:51.727Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.600Z", - "description": "Continuous Monitoring, Penetration Testing", - "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:41.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.600Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.728Z", "id": "relationship--0c583568-bed1-4e96-9e19-5b62dd205e0c", - "modified": "2021-01-06T18:28:41.600Z", + "modified": "2021-01-13T01:50:51.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.601Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.728Z", "id": "relationship--02610bdc-0440-44b4-82a6-fd4d7747bd30", - "modified": "2021-01-06T18:28:41.601Z", + "modified": "2021-01-13T01:50:51.728Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.601Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.729Z", "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:41.601Z", + "modified": "2021-01-13T01:50:51.729Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.603Z", - "description": "Vulnerability Scanning", - "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:41.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.604Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.730Z", "id": "relationship--3e2a7514-228e-47d8-82f7-606b85852ecc", - "modified": "2021-01-06T18:28:41.604Z", + "modified": "2021-01-13T01:50:51.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.604Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.730Z", "id": "relationship--38ac16b4-0f0c-4d57-a81b-ef1984c8af41", - "modified": "2021-01-06T18:28:41.604Z", + "modified": "2021-01-13T01:50:51.730Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.605Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.731Z", "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:41.605Z", + "modified": "2021-01-13T01:50:51.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.605Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.731Z", "id": "relationship--4c4687c3-6774-44ed-8f9a-2967f7cbf561", - "modified": "2021-01-06T18:28:41.605Z", + "modified": "2021-01-13T01:50:51.731Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.606Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--b84f5fdc-a960-4ca7-867a-576a195b5d42", - "modified": "2021-01-06T18:28:41.606Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.606Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--5d19fc07-8791-4b56-8f60-75dde2ff45dc", - "modified": "2021-01-06T18:28:41.606Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.608Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.732Z", "id": "relationship--ceec417d-1099-4a8f-b196-54582a7833cc", - "modified": "2021-01-06T18:28:41.608Z", + "modified": "2021-01-13T01:50:51.732Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.608Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.733Z", "id": "relationship--a132df39-3422-4720-88be-add16ea15b2d", - "modified": "2021-01-06T18:28:41.608Z", + "modified": "2021-01-13T01:50:51.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.609Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.733Z", "id": "relationship--77bcd33b-aeef-4d01-9054-135dd118b729", - "modified": "2021-01-06T18:28:41.609Z", + "modified": "2021-01-13T01:50:51.733Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.610Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.734Z", "id": "relationship--c8af40e8-799b-4491-8fbf-03111d5c82f3", - "modified": "2021-01-06T18:28:41.610Z", + "modified": "2021-01-13T01:50:51.734Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.611Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.734Z", "id": "relationship--3f85bdd9-1f59-48f0-89fc-62e9c1a7260d", - "modified": "2021-01-06T18:28:41.611Z", + "modified": "2021-01-13T01:50:51.734Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.612Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.735Z", "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:41.612Z", + "modified": "2021-01-13T01:50:51.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.612Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.735Z", "id": "relationship--a13ca5d5-c276-4b32-90cd-c90d4cad2a52", - "modified": "2021-01-06T18:28:41.612Z", + "modified": "2021-01-13T01:50:51.735Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.613Z", - "description": "Account Monitoring", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--535567fb-cd5e-4eeb-9d1c-5f2dcf39f15f", - "modified": "2021-01-06T18:28:41.613Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.614Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--941360cc-457e-416a-9504-abf9df53a07c", - "modified": "2021-01-06T18:28:41.614Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.614Z", - "description": "Continuous Monitoring, Penetration Testing", + "created": "2021-01-13T01:50:51.736Z", "id": "relationship--c8b41503-6ce1-4a0f-ab7a-8d7016f0dfc5", - "modified": "2021-01-06T18:28:41.614Z", + "modified": "2021-01-13T01:50:51.736Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.615Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.737Z", "id": "relationship--6fafa2c6-880f-47c0-a29d-7cef545d5a60", - "modified": "2021-01-06T18:28:41.615Z", + "modified": "2021-01-13T01:50:51.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.616Z", - "description": "Baseline Configuration, Configuration Monitoring", + "created": "2021-01-13T01:50:51.737Z", "id": "relationship--55f250e9-a024-4f92-9074-52acee4b08f3", - "modified": "2021-01-06T18:28:41.616Z", + "modified": "2021-01-13T01:50:51.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.617Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.738Z", "id": "relationship--9760a697-2625-4da0-9407-a6cca4944845", - "modified": "2021-01-06T18:28:41.617Z", + "modified": "2021-01-13T01:50:51.738Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.618Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.739Z", "id": "relationship--270dfde3-428e-433c-8439-3bd5896e431f", - "modified": "2021-01-06T18:28:41.618Z", + "modified": "2021-01-13T01:50:51.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--cc5dde11-4f6f-4c59-9855-c5784f454663", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.618Z", - "description": "Threat Intelligence Gathering", + "created": "2021-01-13T01:50:51.739Z", "id": "relationship--618abd96-b077-4d0a-b422-b24417ac6c54", - "modified": "2021-01-06T18:28:41.618Z", + "modified": "2021-01-13T01:50:51.739Z", "relationship_type": "mitigates", "source_ref": "course-of-action--02cf8e55-950f-4f5a-92d7-617860e1fc3f", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.620Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.740Z", "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:41.620Z", + "modified": "2021-01-13T01:50:51.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.620Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.740Z", "id": "relationship--cac6604e-eb4d-487e-89a0-3633b00bfd07", - "modified": "2021-01-06T18:28:41.620Z", + "modified": "2021-01-13T01:50:51.740Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5087402f-aeff-404a-9459-f874e9e0b846", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--4f19a941-4162-432c-893e-47b203e7c270", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--23f376cd-9343-4aa0-b2d8-72d180aef209", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.621Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--4601ae75-4642-414e-b16c-142ec466b1d0", - "modified": "2021-01-06T18:28:41.621Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--09357d8f-7193-480d-87e0-65c44edc02ea", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--682adc3d-298f-4ea5-8ba4-364042e51a09", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.622Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.741Z", "id": "relationship--91683571-f109-4b26-96ab-c230ffcb421c", - "modified": "2021-01-06T18:28:41.622Z", + "modified": "2021-01-13T01:50:51.741Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--dcb9034b-bac0-46d7-a6b5-04479695c19d", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--4c631efc-d3ba-4677-aaac-32248d054c9f", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.623Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.742Z", "id": "relationship--d7f076d7-5381-4052-8494-f539289db073", - "modified": "2021-01-06T18:28:41.623Z", + "modified": "2021-01-13T01:50:51.742Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.624Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--c176ea35-c49e-4da5-82d3-9f1d06477ccc", - "modified": "2021-01-06T18:28:41.624Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.624Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--259271cb-6c2d-4c18-9cbd-7a27496e4d1d", - "modified": "2021-01-06T18:28:41.624Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--8767deb8-9573-44d8-95f3-ec3641099966", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.743Z", "id": "relationship--b0ca4bbe-dc6b-4f0e-a260-988e751ecb05", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.743Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--1299ad81-082b-41e0-b62e-27fbc1bbd7bf", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--7a2e6ff8-3fa6-4572-98c7-fb7c1c0ff7e8", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--c52275a9-10be-4bea-b041-0c62b80d9361", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.625Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.744Z", "id": "relationship--0577f38f-6a36-471f-bf5b-dbd6315c3d85", - "modified": "2021-01-06T18:28:41.625Z", + "modified": "2021-01-13T01:50:51.744Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--fd37262c-6c27-492d-8c33-4c220e4effb8", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--cdd7402a-923d-4c78-b743-e819acbcc535", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--0a4cecb1-58ea-4e95-8f61-3245c6e124ed", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.627Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.745Z", "id": "relationship--a62c005e-2fba-46b4-b5fe-b5077e68c911", - "modified": "2021-01-06T18:28:41.627Z", + "modified": "2021-01-13T01:50:51.745Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--1614ce97-f0a1-4eb6-abdc-dac5f15ecccb", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--40d166e4-948a-4e96-9dc0-572038ce8e4a", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--a70b577d-9930-43ae-be8d-24664adcdc23", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.628Z", - "description": "Information Flow Enforcement", + "created": "2021-01-13T01:50:51.746Z", "id": "relationship--dffd4cca-3a57-40ad-98f5-5091e09cfe80", - "modified": "2021-01-06T18:28:41.628Z", + "modified": "2021-01-13T01:50:51.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.629Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--ebad5c56-2b9b-436d-9714-b70b2ee43d2b", - "modified": "2021-01-06T18:28:41.629Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--06b816e2-8b12-43da-b40b-cbaa19ce7065", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--9bcde945-a185-4358-adf6-47d25af8bdbb", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.630Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.747Z", "id": "relationship--43756742-f5c7-461d-9294-4378dc4f23b9", - "modified": "2021-01-06T18:28:41.630Z", + "modified": "2021-01-13T01:50:51.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.631Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.748Z", "id": "relationship--67fe3a54-7cca-4faa-8ac0-dec9cebba25a", - "modified": "2021-01-06T18:28:41.631Z", + "modified": "2021-01-13T01:50:51.748Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.631Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.748Z", "id": "relationship--2f08590b-0e39-4bba-aa39-99000c90303d", - "modified": "2021-01-06T18:28:41.631Z", + "modified": "2021-01-13T01:50:51.748Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.632Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.749Z", "id": "relationship--872a7b4f-9ed5-4871-a149-1d7fd43a7d6d", - "modified": "2021-01-06T18:28:41.632Z", + "modified": "2021-01-13T01:50:51.749Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.634Z", - "description": "Information Flow Enforcement", - "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:41.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.634Z", - "description": "Information Flow Enforcement", - "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:41.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.635Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:41.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.636Z", - "description": "Malicious Code Protection", - "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:41.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.637Z", - "description": "Malicious Code Protection", - "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:41.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--988f259c-c637-45e7-b330-15692e4b29b3", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--c2eae2e4-4230-459a-807d-af9b266a3923", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--71eebd8b-27da-4c4e-bf8c-11df4571f0f7", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.638Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--6adefa66-af0c-476b-9696-b495057321ce", - "modified": "2021-01-06T18:28:41.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.640Z", - "description": "Mobile Code", + "created": "2021-01-13T01:50:51.753Z", "id": "relationship--b2d4d967-cde7-44f1-a671-28ab8443bb3a", - "modified": "2021-01-06T18:28:41.640Z", + "modified": "2021-01-13T01:50:51.753Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.641Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:41.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.641Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:41.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--ead3731b-171c-43f2-8288-dda59326eec4", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.642Z", - "description": "Account Management, Information Flow Enforcement, Least Privilege", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:41.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:41.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", - "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:41.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.643Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management", + "created": "2021-01-13T01:50:51.756Z", "id": "relationship--c71c09b0-5cf6-409b-afc5-fc755c915cd6", - "modified": "2021-01-06T18:28:41.643Z", + "modified": "2021-01-13T01:50:51.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.644Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.756Z", "id": "relationship--02a9c259-866f-455b-ae4e-42020ab52b02", - "modified": "2021-01-06T18:28:41.644Z", + "modified": "2021-01-13T01:50:51.756Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.645Z", - "description": "Transmission Confidentiality and Integrity, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--7ec3ad69-f064-4cd7-a2d0-a38fc36d5727", - "modified": "2021-01-06T18:28:41.645Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--d6c84d36-92a1-44b8-be99-f7831d0e297f", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.757Z", "id": "relationship--50ad1754-658e-4bbc-a103-a12ba8c9f78d", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.757Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.646Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.758Z", "id": "relationship--6f4e7de5-c543-4c47-a03a-6c0adb6360df", - "modified": "2021-01-06T18:28:41.646Z", + "modified": "2021-01-13T01:50:51.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.647Z", - "description": "Baseline Configuration, Configuration Settings, Software Usage Restrictions, User-Installed Software", + "created": "2021-01-13T01:50:51.758Z", "id": "relationship--926cf4e2-cf51-4f40-b322-12c37a129dfc", - "modified": "2021-01-06T18:28:41.647Z", + "modified": "2021-01-13T01:50:51.758Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.647Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:41.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--cea89952-63f9-4ede-ab2d-891d946a1dac", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--fe4bd807-eae4-4c61-8477-e260023c33bb", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.648Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:41.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--de29bbd7-8b61-4d5d-8a28-5dd95359981e", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.649Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--b74e4c72-a7d8-4bac-b790-81596ea035b4", - "modified": "2021-01-06T18:28:41.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.650Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:41.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.650Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:41.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--fdb419ff-57eb-4b03-84c5-450f41628c04", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.651Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--98b10b78-86cc-4e1a-8096-e641838ec403", - "modified": "2021-01-06T18:28:41.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2b742742-28c3-4e1b-bab7-8350d6300fa7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.652Z", - "description": "Malicious Code Protection, Spam Protection", - "id": "relationship--344da011-86ac-433c-bad4-f0e3c7b234ea", - "modified": "2021-01-06T18:28:41.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--7a38d780-1b24-4142-8331-80aea14dc3f2", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--f49e2ad7-45e8-40a4-888f-790a01fcd4e6", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.653Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.761Z", "id": "relationship--713f1c0f-fcae-4eab-b364-307958239fae", - "modified": "2021-01-06T18:28:41.653Z", + "modified": "2021-01-13T01:50:51.761Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--518174a5-4c93-4b70-a3dc-080c82baf6c0", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--8787d4d5-0b43-4c3b-8c45-7979c4f7bd4d", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.654Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--cc5eafd8-f256-4848-a695-2f7e64e0b1ae", - "modified": "2021-01-06T18:28:41.654Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--2b2a88e5-ba83-4a8e-8212-71ffcbb511ae", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--40597f16-0963-4249-bf4c-ac93b7fb9807", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--94e126ef-2864-4740-b7d5-d52fb1ebf934", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--bf1b6176-597c-4600-bfcd-ac989670f96b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.655Z", - "description": "Information Flow Enforcement, Use of External Information Systems", + "created": "2021-01-13T01:50:51.762Z", "id": "relationship--08cb75b2-8b46-4b0e-8506-cd444adf4561", - "modified": "2021-01-06T18:28:41.655Z", + "modified": "2021-01-13T01:50:51.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--86a96bf6-cf8b-411c-aaeb-8959944d64f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.656Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.763Z", "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:41.656Z", + "modified": "2021-01-13T01:50:51.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.656Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:51.763Z", "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:41.656Z", + "modified": "2021-01-13T01:50:51.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--f5b85731-9e3d-4002-8d22-0dfcf49808b0", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--f846069e-7435-4105-aa82-22d41302aaa5", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--bac8b643-4386-4182-9e57-df0c4bb702c1", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.657Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--028527a7-52b3-47d6-8095-1be0f05e2b10", - "modified": "2021-01-06T18:28:41.657Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.658Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.764Z", "id": "relationship--51a3464d-3795-426c-afbd-c0ca6fcbd1be", - "modified": "2021-01-06T18:28:41.658Z", + "modified": "2021-01-13T01:50:51.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.658Z", - "description": "Secure Name/Address Resolution Service (Authoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--84fa21b9-0f5b-4e7c-b050-566e503a31c1", - "modified": "2021-01-06T18:28:41.658Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.765Z", "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.765Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--972841fb-3e88-48a3-9021-a7480022c97e", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--5d6bbc1b-23e2-45d3-ad12-9d07955ccf55", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.659Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--6e6eb3c0-ad78-48e9-8a20-955968bab877", - "modified": "2021-01-06T18:28:41.659Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.660Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.766Z", "id": "relationship--edb0524a-8c46-4a43-bc54-d5b274e173f6", - "modified": "2021-01-06T18:28:41.660Z", + "modified": "2021-01-13T01:50:51.766Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.660Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--5c3fe0d3-8237-4285-8dcc-916b44e5cd70", - "modified": "2021-01-06T18:28:41.660Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--c41c92cc-f8d1-4531-b85a-046778091e7c", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--985993c8-d8c0-4a4d-9c4e-0c7bc2e9beba", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.661Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.767Z", "id": "relationship--e3a98e56-6b8b-4235-a7b0-7bcf2d4f2431", - "modified": "2021-01-06T18:28:41.661Z", + "modified": "2021-01-13T01:50:51.767Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--a20109bd-2f21-46a9-a726-f6c159cf237f", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--0517db0b-a818-48d6-b7af-1eba4d847b6a", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--ce631fb7-1608-4dc2-ba24-55d01da3b542", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--00275f92-565d-4d7c-869c-390394f8bb8e", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.662Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.768Z", "id": "relationship--19c874aa-b9a3-498c-9b5b-ff4d773f895f", - "modified": "2021-01-06T18:28:41.662Z", + "modified": "2021-01-13T01:50:51.768Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--7f972695-34fd-4c43-8a5c-f78a9e99ed15", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--47232b2d-f5a8-4fcf-af4b-8e37949f78af", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--c6301f6f-ca9f-4fab-819a-820c15853cbb", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.663Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--06d57781-a2ae-4fa3-b085-457af32d9fbc", - "modified": "2021-01-06T18:28:41.663Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--28b3040e-e0c8-415a-bd6d-62cb2e1237f2", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--4c52ef65-0840-4ff2-bde4-f30efae31a74", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--24776902-36cf-4934-b173-2bf020dc0f8e", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--b7109bc7-e41d-4364-934d-d788728132ea", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.664Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.769Z", "id": "relationship--dfaccd31-dfb7-4932-9d93-ba20e6276cac", - "modified": "2021-01-06T18:28:41.664Z", + "modified": "2021-01-13T01:50:51.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.770Z", "id": "relationship--3a045954-59dd-48f7-95c4-e85e8fbc262e", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.770Z", "id": "relationship--9a40ae5d-c566-47b4-8f48-f6ce779ed10b", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.770Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.666Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--546140c6-b484-4358-8b3d-ced420f0d1fd", - "modified": "2021-01-06T18:28:41.666Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.667Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--a1babcd1-2d58-43eb-8a74-d352fa1458b7", - "modified": "2021-01-06T18:28:41.667Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.667Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--a51700b6-6244-4bbc-8f41-3e1f0a9dc36d", - "modified": "2021-01-06T18:28:41.667Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--cb6134aa-d30e-4388-8969-e895c9727bd5", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.771Z", "id": "relationship--101774e4-08fd-468a-aa1e-fc73c65a44eb", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.771Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--5fe4d47c-b96b-46c3-84b3-41b0d44fa739", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.668Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--f5231a8e-5dee-4fa4-a1f0-6ffcec3b8224", - "modified": "2021-01-06T18:28:41.668Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--f483fa00-9031-4f3c-a1ea-d8bbd936b7b0", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--9f14ee23-a1c9-4d6a-bc8d-0aa464be2e76", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--3f341f88-76d0-442b-b4ca-9d6ba0c45311", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--e132f0cf-397f-4401-b133-e314b5b7f5c6", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.669Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--0512e3a2-a195-4894-a416-5391931c655a", - "modified": "2021-01-06T18:28:41.669Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--91b46b14-d410-4697-b9fa-6cfc3b89b693", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--d49fce65-3d59-4371-b702-88f3f492bc4f", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--95dbe829-c2ed-489e-8067-a5a55970e0d5", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.772Z", "id": "relationship--b82d214b-0ff9-4dae-a4c0-c2e398ebfabf", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.772Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--4336267a-db8c-4e3f-9a6f-d800c2d116f3", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.670Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--79196a3f-1973-48f1-b5fa-5a125b72d209", - "modified": "2021-01-06T18:28:41.670Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.671Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--516dc2b1-f457-414e-a6a3-cb511785c93e", - "modified": "2021-01-06T18:28:41.671Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.671Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--3d89ee66-3a06-4dee-bf42-4809a7104c6a", - "modified": "2021-01-06T18:28:41.671Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.773Z", "id": "relationship--731f8269-4416-42e1-95f1-bca1b1892cf7", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.773Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--2e407487-c29e-4556-b72e-bdc1e8173e58", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.672Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--223325f7-0b61-4be4-bd4e-4bedee7e623a", - "modified": "2021-01-06T18:28:41.672Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--d835c646-9fef-42a3-b7a1-a790ebff9563", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--de5eafd2-03d7-4b32-967b-287b48c4aba2", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.774Z", "id": "relationship--44dde8f4-2b0b-4874-a5d3-dba43e166365", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.774Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--2b2ed917-1898-4d17-860e-0cc02619b232", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--f1718c4c-ab47-4aa1-9b8d-2359bf5f3edf", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.673Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--c1f81ac5-0e67-4513-9669-2c5a04baea5f", - "modified": "2021-01-06T18:28:41.673Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--a7eabad0-1ee6-453d-bcd0-d75ad8841402", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--43ba2b05-cf72-4b6c-8243-03a4aba41ee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--0f1c121b-4a6a-4a9d-9e7e-7fe3c333def4", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c63a348e-ffc2-486a-b9d9-d7f11ec54d99", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--45000972-502d-4382-bd71-8c187a0dfb34", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dca670cf-eeec-438f-8185-fd959d9ef211", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.674Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.775Z", "id": "relationship--2066f9b8-7c9f-4cde-9b22-92c854bb318e", - "modified": "2021-01-06T18:28:41.674Z", + "modified": "2021-01-13T01:50:51.775Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c0dfe7b0-b873-4618-9ff8-53e31f70907f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.675Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.676Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--cee31cfb-b91c-49fc-8923-5b013aeb6b87", - "modified": "2021-01-06T18:28:41.676Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.677Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--2df6c6d8-7691-4320-9f74-52dbe3382140", - "modified": "2021-01-06T18:28:41.677Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.678Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.777Z", "id": "relationship--4223f0df-3353-40b3-adfa-fbc952ae18b9", - "modified": "2021-01-06T18:28:41.678Z", + "modified": "2021-01-13T01:50:51.777Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.679Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.778Z", "id": "relationship--7e8c47c5-5c5d-4c8b-96f7-f535f657f1ae", - "modified": "2021-01-06T18:28:41.679Z", + "modified": "2021-01-13T01:50:51.778Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.680Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.779Z", "id": "relationship--27a939a9-f548-4bed-bcf9-37dd8870a21d", - "modified": "2021-01-06T18:28:41.680Z", + "modified": "2021-01-13T01:50:51.779Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--bc46a92b-d254-45c1-9f79-abbf66ab9e6a", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--f6b608c1-c0a3-466f-8fbf-4c0fb0cde231", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.681Z", - "description": "Malicious Code Protection, Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.780Z", "id": "relationship--944010c6-4c43-427f-bc08-26ff18086f2e", - "modified": "2021-01-06T18:28:41.681Z", + "modified": "2021-01-13T01:50:51.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--2cc0330c-795e-443d-8554-67a52479c367", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--ae95c06a-bceb-4bdf-88c1-d6be18848d86", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.682Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--148ae650-0ad5-4012-9906-e877c83b95dc", - "modified": "2021-01-06T18:28:41.682Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--2a4b7099-f561-47d5-b376-e9a2dd0390d9", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--5611e357-4d51-422e-83b9-3fb074a8cb73", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--a727f667-1dbe-42b1-83ba-a160cf1dfa57", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--48d67533-26b3-4095-9ac3-6263436f23ae", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.683Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--01483c2e-80cb-48fc-b040-079f77fb526a", - "modified": "2021-01-06T18:28:41.683Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--e079cbe2-c73d-43c8-beda-9f0003bcda26", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.781Z", "id": "relationship--4b85867d-1b06-43b3-bed1-45d3267f93a2", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--1b292f74-334f-4932-95c4-30830fae1631", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--3467f573-102e-403e-9f29-5b5aa2906852", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--d9485a28-95d3-4fd3-a800-633fa441e3ab", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.684Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--79fff1e0-708f-4d13-ae3c-ea194892205e", - "modified": "2021-01-06T18:28:41.684Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.685Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--29e83c0b-d798-45b0-b9dd-eba9e9e293dd", - "modified": "2021-01-06T18:28:41.685Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.685Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.782Z", "id": "relationship--1e4cbdaa-9eb1-4169-8732-a7d58e733df7", - "modified": "2021-01-06T18:28:41.685Z", + "modified": "2021-01-13T01:50:51.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--d5ca9e3c-1ebc-467a-8950-d19be107a05d", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--e52cf03a-e451-45e1-a0f4-5fe81e78bd13", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--bbc1dbcc-ff24-41f4-b042-a570290509af", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--bb3a7976-e7f3-4b6a-af8b-252e2ed995b0", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.686Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--47a73154-8c83-4fc2-a6c6-c5860ece1bd4", - "modified": "2021-01-06T18:28:41.686Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--cf63ba16-ad9f-4bbb-b9d1-32626d73f54d", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--37b31e7e-6a8e-4692-a598-548186a8004c", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.687Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.783Z", "id": "relationship--cbaadaad-7f0c-42f4-b98a-4137a7a55e68", - "modified": "2021-01-06T18:28:41.687Z", + "modified": "2021-01-13T01:50:51.783Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--44700bab-709c-4131-87b1-a6f53e5ad52d", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--8c39c92a-a6d1-4a08-afa4-345866cdcbec", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--a80b8d9a-b249-4cd4-be97-461d5f87ff9e", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.688Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.784Z", "id": "relationship--4797d24d-eb26-4903-905d-99d076cbd310", - "modified": "2021-01-06T18:28:41.688Z", + "modified": "2021-01-13T01:50:51.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--580f666a-12bb-4933-827b-e3bc32a48301", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--8d8bffd6-6604-4218-8f12-1fbe3a2fc6ec", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.689Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--2b971fe3-24f4-402c-94c1-8e8056cd59fa", - "modified": "2021-01-06T18:28:41.689Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--eb3093b7-6c23-48fb-bcc7-4dd58aaa09d6", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--ec0d4013-dcf3-48dd-ac7b-1e210b0a3ec1", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.785Z", "id": "relationship--555cd1be-720f-4e10-8ad5-959f2547cf5a", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--41bdd389-f3bd-43b0-9a42-9ca6981965d1", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--ef4fede2-c770-4ce1-8562-a26688a67184", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--df39de32-bc16-42e6-b57e-c619f807c430", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--2f4a4e5c-a5f3-41b5-8fc5-cb7e89b0d4b4", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.690Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--a5b35027-5a21-41c3-93d1-a1eaaf0cb3c9", - "modified": "2021-01-06T18:28:41.690Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.691Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.786Z", "id": "relationship--be8716b6-5da2-4e2e-8a03-afe0ede5ed7a", - "modified": "2021-01-06T18:28:41.691Z", + "modified": "2021-01-13T01:50:51.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.692Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.787Z", "id": "relationship--389e48b9-6e04-45a0-9616-9f9125e099cd", - "modified": "2021-01-06T18:28:41.692Z", + "modified": "2021-01-13T01:50:51.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.693Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--8d37e36f-af7f-49f0-b8fc-ad83247a6db8", - "modified": "2021-01-06T18:28:41.693Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.694Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--ce2e3acb-ac61-4edb-8f72-dd888671aeab", - "modified": "2021-01-06T18:28:41.694Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.694Z", - "description": "Information in Shared Resources, Boundary Protection", + "created": "2021-01-13T01:50:51.788Z", "id": "relationship--e45b0c86-847d-4110-ad12-77e3a02bc749", - "modified": "2021-01-06T18:28:41.694Z", + "modified": "2021-01-13T01:50:51.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.696Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.789Z", "id": "relationship--396f4b33-aa05-4d83-bedd-d963e44ca1ba", - "modified": "2021-01-06T18:28:41.696Z", + "modified": "2021-01-13T01:50:51.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--ff4186b7-573e-4af4-802d-3a078895b0f1", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--a362a7cd-bf23-4f57-9e76-debb7bbc0ff6", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.697Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.790Z", "id": "relationship--32b24f77-a8c2-454e-8d0f-d9dc90ad7f19", - "modified": "2021-01-06T18:28:41.697Z", + "modified": "2021-01-13T01:50:51.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.698Z", - "description": "Cryptographic Key Establishment and Management", + "created": "2021-01-13T01:50:51.791Z", "id": "relationship--e67ca92d-2c83-4fe4-9da8-d0fe9567d70e", - "modified": "2021-01-06T18:28:41.698Z", + "modified": "2021-01-13T01:50:51.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.699Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.792Z", "id": "relationship--f0cb2405-2c6b-4af0-bc4b-b0c0a9f4c6c1", - "modified": "2021-01-06T18:28:41.699Z", + "modified": "2021-01-13T01:50:51.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.701Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.792Z", "id": "relationship--f5dbfa0e-4353-4a77-b954-39ca5eb2eaac", - "modified": "2021-01-06T18:28:41.701Z", + "modified": "2021-01-13T01:50:51.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.702Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.793Z", "id": "relationship--0da27c93-238a-45f7-9201-11c8e3e68316", - "modified": "2021-01-06T18:28:41.702Z", + "modified": "2021-01-13T01:50:51.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.703Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.794Z", "id": "relationship--f53981e8-35a4-42a9-81b4-51a58450f6bf", - "modified": "2021-01-06T18:28:41.703Z", + "modified": "2021-01-13T01:50:51.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.703Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.794Z", "id": "relationship--cdb93f46-dd5e-4182-8408-3c2d39e23e95", - "modified": "2021-01-06T18:28:41.703Z", + "modified": "2021-01-13T01:50:51.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.704Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--91703745-7335-450e-b5e1-af87f2a0f2d2", - "modified": "2021-01-06T18:28:41.704Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.705Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--49c3ef16-0064-4ffe-9981-ffeee2c5ef7f", - "modified": "2021-01-06T18:28:41.705Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.795Z", "id": "relationship--74e4cda9-c771-4f61-bb2d-6f9793efe0fc", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--10a6472b-8e3c-4861-9199-01005cd3be1b", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--44af0252-9b7e-45d9-a7a0-14db6a6d92eb", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--6f7fc462-90ba-4a22-b31a-695fbbca8abd", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.706Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--f1a6718b-c160-43ef-b3b3-82736d63c853", - "modified": "2021-01-06T18:28:41.706Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--74dd5bce-a52b-4bec-8d08-42eb6304afa7", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--956aac33-515f-45a1-a7cc-89a8cefb1272", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--ef3093c0-1d60-43f6-b70e-df6404dd99a0", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.707Z", - "description": "Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.796Z", "id": "relationship--26cb12f6-71d7-467c-968c-7470e7f2def2", - "modified": "2021-01-06T18:28:41.707Z", + "modified": "2021-01-13T01:50:51.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--d6bb5294-3e10-4c26-aafd-c81c09d81780", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--21f5452b-594c-462f-9059-c4384e567b5d", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.708Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.797Z", "id": "relationship--c8bafc3d-5e8d-4997-b1de-ef451a8f15b5", - "modified": "2021-01-06T18:28:41.708Z", + "modified": "2021-01-13T01:50:51.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--0e183583-2adf-4cdb-ba28-b16532590b98", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--a56924fe-9bb5-4fe8-baba-b8786362f1ca", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--6af13fd5-2045-47e3-9ad8-487181f6717f", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--f0f3d3e6-3751-485d-9dee-47d468ce0dbb", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.709Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--34a7e1c7-03c4-4a18-acdf-d02ea1a3f818", - "modified": "2021-01-06T18:28:41.709Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.710Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.798Z", "id": "relationship--129aa779-e35a-430a-9ecd-572b3425077f", - "modified": "2021-01-06T18:28:41.710Z", + "modified": "2021-01-13T01:50:51.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.710Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--248564ad-8acb-4207-9782-1490d6f18dc4", - "modified": "2021-01-06T18:28:41.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.711Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--9215090d-353c-4045-b126-0fa1d109c383", - "modified": "2021-01-06T18:28:41.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.711Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:41.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.712Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.800Z", "id": "relationship--13b8139f-8082-4503-abb4-87195a14ffe6", - "modified": "2021-01-06T18:28:41.712Z", + "modified": "2021-01-13T01:50:51.800Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.713Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--978378e9-982a-42a2-8c30-c878e5d0663a", - "modified": "2021-01-06T18:28:41.713Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.714Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:41.714Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.714Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.801Z", "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:41.714Z", + "modified": "2021-01-13T01:50:51.801Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:41.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:41.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:41.715Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.715Z", - "description": "Account Management, Access Enforcement, Security Attributes; Use of External Information Systems", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:41.715Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.717Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.803Z", "id": "relationship--34bac784-fbbd-48e5-8603-4025a864d4bc", - "modified": "2021-01-06T18:28:41.717Z", + "modified": "2021-01-13T01:50:51.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.718Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.804Z", "id": "relationship--e341c74b-f9b3-43c4-b368-541f0ff04944", - "modified": "2021-01-06T18:28:41.718Z", + "modified": "2021-01-13T01:50:51.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.718Z", - "description": "Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.804Z", "id": "relationship--a3ac5bdf-b7b6-453c-9f9b-fbf9b50b45ea", - "modified": "2021-01-06T18:28:41.718Z", + "modified": "2021-01-13T01:50:51.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.719Z", - "description": "Access Enforcement", - "id": "relationship--dcc19e64-ef16-4ec7-99c8-9561ea1e96f4", - "modified": "2021-01-06T18:28:41.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.719Z", - "description": "Access Enforcement", - "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.720Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--4c575d63-1270-48a5-8987-8c820ff45a86", - "modified": "2021-01-06T18:28:41.720Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--c26b4140-c382-4409-9800-0452a221f7e2", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--d5a6a834-1eea-401f-91b6-573fdf8209d9", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--8e88db90-4519-40d2-8748-ca6ee398737d", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--9554616e-aacd-4071-9f4a-3b37fb86fcf7", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--9754bf60-d996-48ce-8acc-73a383c0fa02", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.806Z", "id": "relationship--ffec17ba-b931-4b2f-beed-a0fd3b8f82bc", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.721Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity, Memory Protection", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--935df36d-415a-4dd8-af88-f61f296d34ab", - "modified": "2021-01-06T18:28:41.721Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.722Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--b25b53a8-378e-4643-ab50-97b81d402e72", - "modified": "2021-01-06T18:28:41.722Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.722Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.807Z", "id": "relationship--507a68e2-4f29-4e81-948a-34ceff71c7f3", - "modified": "2021-01-06T18:28:41.722Z", + "modified": "2021-01-13T01:50:51.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.723Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--e211e52b-a2d5-496c-88c5-9fc6c368d2de", - "modified": "2021-01-06T18:28:41.723Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.723Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--82f3e7f4-38a8-4192-99d2-fb3d6d983a48", - "modified": "2021-01-06T18:28:41.723Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--68732f78-9d7d-4fa2-a306-4cc51f30d9ff", - "modified": "2021-01-06T18:28:41.724Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", + "created": "2021-01-13T01:50:51.808Z", "id": "relationship--0c6e2b71-b6ec-4081-a19f-4ac8a5083545", - "modified": "2021-01-06T18:28:41.724Z", + "modified": "2021-01-13T01:50:51.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:41.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.724Z", - "description": "Baseline Configuration, Configuration Settings, User-Installed Software", - "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:41.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.725Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--d0476b23-ece9-48da-bbad-b5a801194e0c", - "modified": "2021-01-06T18:28:41.725Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--45743d32-1ccf-4b14-96da-5e2303fd13c9", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.809Z", "id": "relationship--70e10e5c-8ffc-48a6-9ae4-3d508e696821", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.726Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--6c2423cd-88f0-41ea-8c22-665193d156d8", - "modified": "2021-01-06T18:28:41.726Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.727Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--b9083338-00ad-4df1-9e88-9b73c744c7cd", - "modified": "2021-01-06T18:28:41.727Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.727Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.810Z", "id": "relationship--bff324ab-4da1-4159-8206-ce2d68120194", - "modified": "2021-01-06T18:28:41.727Z", + "modified": "2021-01-13T01:50:51.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.728Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--19236b8a-32d9-4a94-8bd2-8327b839cbfb", - "modified": "2021-01-06T18:28:41.728Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.728Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--d612598f-8687-4983-8041-564ba528bde1", - "modified": "2021-01-06T18:28:41.728Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--7593412c-d29d-4378-9215-51d66c9aeb27", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--64edf1f6-0395-4fe5-899c-efc4a1ff5441", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.811Z", "id": "relationship--f7f77e32-4409-4756-bc79-885e742520e7", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.729Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--082f3f53-7f13-4d5c-b0c5-f4d48e836dca", - "modified": "2021-01-06T18:28:41.729Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--0cac686f-9a4a-49f1-9e62-cd12d2b43e6e", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--62ee3793-fe2c-42fe-82a4-72e857ee71ee", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.730Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--70f65a6b-194c-493a-b838-0736ceecb3ba", - "modified": "2021-01-06T18:28:41.730Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.731Z", - "description": "Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.812Z", "id": "relationship--5c0c2cbe-83be-402e-9610-7c43b308d221", - "modified": "2021-01-06T18:28:41.731Z", + "modified": "2021-01-13T01:50:51.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.732Z", - "description": "Access Enforcement", - "id": "relationship--837934b5-d1b0-4b9c-98ba-3c7ee61f47e2", - "modified": "2021-01-06T18:28:41.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.732Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.813Z", "id": "relationship--d3ffd103-0a39-4de3-886f-9b1d050e96a6", - "modified": "2021-01-06T18:28:41.732Z", + "modified": "2021-01-13T01:50:51.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.733Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--ee02acdd-ed91-412b-a31c-c49123992791", - "modified": "2021-01-06T18:28:41.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.733Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--22c5a169-2928-4b8b-a6f5-b6a24593d990", - "modified": "2021-01-06T18:28:41.733Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.734Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--6eca6f7e-0326-45c8-9798-af3f00ff8791", - "modified": "2021-01-06T18:28:41.734Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.734Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.814Z", "id": "relationship--f94285e0-df37-48b5-8e32-43861d11dccc", - "modified": "2021-01-06T18:28:41.734Z", + "modified": "2021-01-13T01:50:51.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.735Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.815Z", "id": "relationship--490560ef-ad44-4ca7-9356-05eaeada7b01", - "modified": "2021-01-06T18:28:41.735Z", + "modified": "2021-01-13T01:50:51.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.735Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.815Z", "id": "relationship--b92b4d24-d519-4889-83a1-3f82f37f0fd9", - "modified": "2021-01-06T18:28:41.735Z", + "modified": "2021-01-13T01:50:51.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5a008fc9-d555-4188-947d-3220ac8dfda9", - "modified": "2021-01-06T18:28:41.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.816Z", "id": "relationship--015b83e4-e7bf-469f-88ad-9ee109d411c9", - "modified": "2021-01-06T18:28:41.736Z", + "modified": "2021-01-13T01:50:51.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--faa9de7f-dec7-47b8-8d1d-35f76b044738", - "modified": "2021-01-06T18:28:41.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6747daa2-3533-4e78-8fb8-446ebb86448a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.736Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.816Z", "id": "relationship--87276575-9dc2-45a8-95f5-5631d596078f", - "modified": "2021-01-06T18:28:41.736Z", + "modified": "2021-01-13T01:50:51.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.738Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.817Z", "id": "relationship--d5ef8b73-a512-4c0c-8d05-ba7bc8ec2452", - "modified": "2021-01-06T18:28:41.738Z", + "modified": "2021-01-13T01:50:51.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.738Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.817Z", "id": "relationship--ebbcfd83-7fc8-4dda-84ee-f6518dff3a47", - "modified": "2021-01-06T18:28:41.738Z", + "modified": "2021-01-13T01:50:51.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--3448e2e1-a734-46f3-814c-895c1f200ccf", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.739Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.818Z", "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:41.739Z", + "modified": "2021-01-13T01:50:51.818Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--948165d8-282d-4e3c-b852-d2c026391693", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--62e7e3fa-60b9-46dd-8ca3-0729c70ec9ac", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.740Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--18a03be2-1432-44bd-9145-5ac00f6ee8b2", - "modified": "2021-01-06T18:28:41.740Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--73f71313-f51b-4847-bc7f-4a4e61c20f05", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--686cd81d-98a5-426c-9f58-6fa95c5e5449", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.741Z", - "description": "Account Management, Access Enforcement, Least Privilege, Security Attributes", + "created": "2021-01-13T01:50:51.819Z", "id": "relationship--6edd8cb4-ae31-4bce-b6da-d048cfdf9e1e", - "modified": "2021-01-06T18:28:41.741Z", + "modified": "2021-01-13T01:50:51.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.742Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.820Z", "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:41.742Z", + "modified": "2021-01-13T01:50:51.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.742Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.820Z", "id": "relationship--2004dcd1-87e8-486b-9f20-dcd8b72152d0", - "modified": "2021-01-06T18:28:41.742Z", + "modified": "2021-01-13T01:50:51.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.743Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.821Z", "id": "relationship--c2d9e031-aeca-4360-9de1-d15d0e6d5e60", - "modified": "2021-01-06T18:28:41.743Z", + "modified": "2021-01-13T01:50:51.821Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.743Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.821Z", "id": "relationship--1920145c-612e-45f1-af83-7b1a1aad3287", - "modified": "2021-01-06T18:28:41.743Z", + "modified": "2021-01-13T01:50:51.821Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.744Z", - "description": "Continuous Monitoring", - "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:41.744Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.744Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.822Z", "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:41.744Z", + "modified": "2021-01-13T01:50:51.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.745Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:41.745Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.745Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:41.745Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.746Z", - "description": "Account Managment", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:41.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.746Z", - "description": "Account Managment", + "created": "2021-01-13T01:50:51.823Z", "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:41.746Z", + "modified": "2021-01-13T01:50:51.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.747Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:41.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.747Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:41.747Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.748Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:41.748Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.748Z", - "description": "Identification and Autentication (Organizational Users), Authenitcator Management", + "created": "2021-01-13T01:50:51.824Z", "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:41.748Z", + "modified": "2021-01-13T01:50:51.824Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.749Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3bc78f76-ac1d-4cea-a5bd-24cdd415d4bd", - "modified": "2021-01-06T18:28:41.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.749Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.825Z", "id": "relationship--e9404ee4-377c-49fa-8c57-a913b5b6395b", - "modified": "2021-01-06T18:28:41.749Z", + "modified": "2021-01-13T01:50:51.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.750Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1b17e7e5-8a57-45df-8a38-f97ef39bd417", - "modified": "2021-01-06T18:28:41.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.750Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.825Z", "id": "relationship--be667781-2a98-49d1-810c-0f5f9cc2a51b", - "modified": "2021-01-06T18:28:41.750Z", + "modified": "2021-01-13T01:50:51.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--3fa2d61c-1517-45b3-96e8-fa1d2fe2caca", - "modified": "2021-01-06T18:28:41.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--9914daf1-ce8a-4b4c-943b-a7c89274ce2d", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--55dae45a-e184-4c66-8901-12d8c9755229", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.751Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:41.751Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.752Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:41.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.752Z", - "description": "Boundary Protection, Cryptographic Key Establishment and Management, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.826Z", "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:41.752Z", + "modified": "2021-01-13T01:50:51.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.753Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.827Z", "id": "relationship--08371f83-8203-4202-96b9-40a1a0848840", - "modified": "2021-01-06T18:28:41.753Z", + "modified": "2021-01-13T01:50:51.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.755Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.828Z", "id": "relationship--1e7f8c90-1ac7-4b5e-b2ed-cf5a10023c60", - "modified": "2021-01-06T18:28:41.755Z", + "modified": "2021-01-13T01:50:51.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.756Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--cd22be46-9cba-4cb1-b1bd-782126fe9a75", - "modified": "2021-01-06T18:28:41.756Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.756Z", - "description": "Malicious Code Protection, Information System Monitoring", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--151bf7bd-9463-4127-952f-bdedfd6070b8", - "modified": "2021-01-06T18:28:41.756Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.757Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--eb593a72-5fbc-4a9a-8197-8c0758be2aab", - "modified": "2021-01-06T18:28:41.757Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.757Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.829Z", "id": "relationship--869a2bf4-9993-48eb-8224-a324158aa2f2", - "modified": "2021-01-06T18:28:41.757Z", + "modified": "2021-01-13T01:50:51.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--f933fb0a-2eb3-41a7-975d-8b2e5d21deb3", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--8c215b18-bf96-4488-bf86-b35e7fbb291b", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--56ec7bcb-2cb8-447c-bd51-ee76a8e7d8c0", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--33944dfc-42ce-4faa-9822-756d718d4f56", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.830Z", "id": "relationship--b8fb32b5-e002-4df1-af3d-4323973c90e3", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--0d1e88c2-c554-479f-ac0a-3da097853d15", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.759Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--0ec4426d-7016-4b97-b2c2-e28e51e32df7", - "modified": "2021-01-06T18:28:41.759Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--2ad92690-ce0b-4a32-af84-d89378838988", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--b4b1acfb-4c88-4fce-aa6f-de8f7c35d99e", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.760Z", - "description": "Baseline Configuration, Configuration Settings", + "created": "2021-01-13T01:50:51.831Z", "id": "relationship--30d1a7d9-d426-4b42-b44b-4331d104cf85", - "modified": "2021-01-06T18:28:41.760Z", + "modified": "2021-01-13T01:50:51.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7e788b60-9bdb-4d12-a9d1-80e8d120db09", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a9bee93a-c706-4d14-94bd-b3ef3f8cb0ea", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--decc7f59-6998-4bbc-bbb7-4ffa022f02a9", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.761Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f221c37f-ce57-4f2a-a546-8c037e97c8cd", - "modified": "2021-01-06T18:28:41.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e626b3e2-4c92-48c9-9397-6179ff778442", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--575a7fb8-66cf-4230-9669-46a1970336bc", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7c798c67-740c-4b17-9358-2e0069c3c8a5", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0a4bc20-9a4c-447e-99e7-315d6d3a1e2d", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--481339ac-a2ec-455e-8347-10f8ec3ae148", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2cec8089-a5e7-4ab8-bb40-ff05f3daaee6", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.762Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d7f837bd-f179-413c-860d-acea0564e168", - "modified": "2021-01-06T18:28:41.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d896cc02-c662-478c-a20f-bcc759c06aba", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bf39fa34-10a1-4b4a-acbf-9c0e465a047b", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7d741a69-70b1-4c0f-a371-2957f5833edf", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.763Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:41.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.764Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:41.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.764Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--81813aad-03f2-42e6-a50f-8e54e26095df", - "modified": "2021-01-06T18:28:41.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--579dab96-2da7-4de2-b1b7-c3bb20bdc531", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--7f089836-498e-4e53-96de-9a376bcb44de", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.765Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--44801476-3a08-4c61-b92d-98b80bc08f5e", - "modified": "2021-01-06T18:28:41.765Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.834Z", "id": "relationship--7c39cfa2-3b23-495d-8db4-419fece3991a", - "modified": "2021-01-06T18:28:41.766Z", + "modified": "2021-01-13T01:50:51.834Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.766Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--a4c323a4-3f76-410c-bccd-3bad52c2ef37", - "modified": "2021-01-06T18:28:41.766Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--907134bf-3299-469c-ac40-6e94cdecd208", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--28699dc3-1085-4885-b95e-94a2670fa436", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--9137cbe5-9133-48c5-b111-61773c8022fe", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.767Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.835Z", "id": "relationship--107de28b-73ce-403b-9632-03b36d69dbe8", - "modified": "2021-01-06T18:28:41.767Z", + "modified": "2021-01-13T01:50:51.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--4e35a3f1-289a-48b5-a011-4ac0252bec2f", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0f4ea6f9-37b3-46bc-a838-ec2e24198746", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--ec1d83db-c626-4e51-b440-d685d6983008", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--7f833927-c6df-4cb0-8ac9-9807f4a336b3", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--9be306f0-b40f-414c-8de6-458702c10f0f", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0e24c4b4-5cdf-4dce-a000-53207e3d1ff8", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--833f2319-ac4c-45cf-bd0c-d964f780934a", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.768Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--9c439e2a-9061-4b0e-abec-a77a03a4ffc4", - "modified": "2021-01-06T18:28:41.768Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--3defa4b7-d5f0-45d9-9161-cca2cb3746da", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--0199f84e-67fe-4290-b967-e9f641f13534", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.769Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.836Z", "id": "relationship--1de57ab9-773e-4954-a342-f0617d69aa02", - "modified": "2021-01-06T18:28:41.769Z", + "modified": "2021-01-13T01:50:51.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.770Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:41.770Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.770Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:41.770Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.771Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.837Z", "id": "relationship--09c12dfe-7f63-4142-bd09-eaaca163116f", - "modified": "2021-01-06T18:28:41.771Z", + "modified": "2021-01-13T01:50:51.837Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.771Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--4d6b42c1-becd-4109-999c-7e878655cfb6", - "modified": "2021-01-06T18:28:41.771Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.772Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--153fe739-71c0-492d-aeed-76845ca9e020", - "modified": "2021-01-06T18:28:41.772Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.772Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.838Z", "id": "relationship--263fbe27-db88-4766-872b-ff99a7932290", - "modified": "2021-01-06T18:28:41.772Z", + "modified": "2021-01-13T01:50:51.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.773Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.839Z", "id": "relationship--bf0b59af-69a2-4b58-8132-6c5930bf4345", - "modified": "2021-01-06T18:28:41.773Z", + "modified": "2021-01-13T01:50:51.839Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.774Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.840Z", "id": "relationship--be981616-8110-40f1-9c9a-23d50136f7fc", - "modified": "2021-01-06T18:28:41.774Z", + "modified": "2021-01-13T01:50:51.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.775Z", - "description": "Session Authenticity", + "created": "2021-01-13T01:50:51.840Z", "id": "relationship--946ffb9b-c4e0-4b1c-8717-223f1f9d10da", - "modified": "2021-01-06T18:28:41.775Z", + "modified": "2021-01-13T01:50:51.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.776Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.841Z", "id": "relationship--f22039fe-d893-44ec-b6df-c545b2872055", - "modified": "2021-01-06T18:28:41.776Z", + "modified": "2021-01-13T01:50:51.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.776Z", - "description": "Access Enforcement, Security Attributes", + "created": "2021-01-13T01:50:51.841Z", "id": "relationship--bb7301b6-c860-4a57-bbe8-e30ded9fbb8f", - "modified": "2021-01-06T18:28:41.776Z", + "modified": "2021-01-13T01:50:51.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.842Z", "id": "relationship--c5081d52-4f7e-4098-b785-d4b052965c9c", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.842Z", "id": "relationship--9e72e517-ec7d-4ad0-a5be-355f034a3f30", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.777Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--032a4e5f-affd-455f-970d-8fb47ad83571", - "modified": "2021-01-06T18:28:41.777Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.778Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--34bde7cc-966a-46f1-b67f-4563d14c11c6", - "modified": "2021-01-06T18:28:41.778Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f2857333-11d4-45bf-b064-2c28d8525be5", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.843Z", "id": "relationship--62e28a47-fc89-44cd-8ebd-3c81f7b2a960", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--376c6463-4675-417f-a366-f7c61f3aff73", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--c7ce48ce-4d92-4c13-a4f5-a34813951791", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--79d9b629-1142-491d-8c59-9a483c48b27f", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--a8392b76-f186-42d1-ad40-faed9db91282", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.779Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--36efc0ca-2e05-49f6-a0da-23400ff00dcc", - "modified": "2021-01-06T18:28:41.779Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--a69568b7-0584-4857-81f4-d4581939c547", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--622c46e4-2cd7-4a08-b4db-c1de50a9186a", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.780Z", - "description": "Information in Shared Resources, Boundary Protection, Protection of Information at Rest", + "created": "2021-01-13T01:50:51.844Z", "id": "relationship--e6f45fec-886e-4367-8aeb-ea907d43885a", - "modified": "2021-01-06T18:28:41.780Z", + "modified": "2021-01-13T01:50:51.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--c737e227-01ff-406f-8e74-679a8c903a31", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--1598c92b-066a-4440-b45e-e0a9ff85940e", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.782Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.845Z", "id": "relationship--2c2c9b20-f042-4880-9dc5-502ae0b8eb81", - "modified": "2021-01-06T18:28:41.782Z", + "modified": "2021-01-13T01:50:51.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--bc2cf628-c28d-481e-bd85-3caeda18899e", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--57bbff90-6a39-432f-ac4b-651576eee9d9", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.846Z", "id": "relationship--7fe210ad-d807-49f4-a3ba-512cb30396b7", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--2784e1da-41d9-4747-aaeb-d665f8ba269f", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--d8768050-d615-49f3-9c8b-7184e7a86e2c", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.784Z", - "description": "Information System Monitoring, Memory Protection", + "created": "2021-01-13T01:50:51.847Z", "id": "relationship--94ff2d8c-4034-4e93-ae21-11a503195b12", - "modified": "2021-01-06T18:28:41.784Z", + "modified": "2021-01-13T01:50:51.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--5dd14ce3-963c-4cd5-b43d-e5f2c8c63e82", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--38829e81-4544-4544-a5ce-9b2aae874e09", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.786Z", - "description": "Information System Backup", + "created": "2021-01-13T01:50:51.848Z", "id": "relationship--d04e9039-585a-4452-a5db-27ac3415da8a", - "modified": "2021-01-06T18:28:41.786Z", + "modified": "2021-01-13T01:50:51.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--a0d7d953-aed8-499f-a68d-63d7d907027c", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--894e1f92-4a9c-43a2-b955-d8fdef6ef178", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.788Z", - "description": "Access Enforcement", + "created": "2021-01-13T01:50:51.849Z", "id": "relationship--35d054be-959f-49ec-b0c1-c8cf26b64f6b", - "modified": "2021-01-06T18:28:41.788Z", + "modified": "2021-01-13T01:50:51.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--f8e65a65-b98d-4233-868d-7400ce74ab93", - "modified": "2021-01-06T18:28:41.789Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:41.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.789Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--081cac6d-814a-46ed-9b76-babc1dd83ce7", - "modified": "2021-01-06T18:28:41.789Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:41.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", + "created": "2021-01-13T01:50:51.850Z", "id": "relationship--d064a3c4-e0b2-4f57-b427-6787c1d292f9", - "modified": "2021-01-06T18:28:41.790Z", + "modified": "2021-01-13T01:50:51.850Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.790Z", - "description": "Account Management, Access Enforcement, Least Privilege", - "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:41.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.791Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--33575638-b696-48a6-a452-eec93dc4cae7", - "modified": "2021-01-06T18:28:41.791Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.791Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--648e6604-1522-468d-b00d-56713347840b", - "modified": "2021-01-06T18:28:41.791Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.852Z", "id": "relationship--ebf287bf-69db-4ef0-adf0-e77be6dcae4a", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--1a5778af-0bd7-450d-8554-319e9cb9f41e", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--0021a863-51fb-4b7b-81bc-ecc7b688c2a5", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--73b69a59-f0aa-4c10-9ffe-6d1cc9ea5b9c", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.792Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--9b888cdb-5448-4cdd-8c28-d5ecb052541b", - "modified": "2021-01-06T18:28:41.792Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.793Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.853Z", "id": "relationship--8dbb8411-90df-4611-a130-5c2c85ca3165", - "modified": "2021-01-06T18:28:41.793Z", + "modified": "2021-01-13T01:50:51.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--7d2a37dd-3790-47ab-987f-1bc98024ed24", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--85db5676-8dab-4969-afd1-173cb13c1b9d", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.794Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--e81c4ac7-a94c-4d03-999b-5e8d95d4d5da", - "modified": "2021-01-06T18:28:41.794Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--0adbe058-94d8-445d-a25e-bf917de7e6eb", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--e244e196-c3e2-48df-8c1b-0c91b44eb065", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.795Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", + "created": "2021-01-13T01:50:51.854Z", "id": "relationship--c436317d-151b-47ec-8ccb-a725c0d1a4c4", - "modified": "2021-01-06T18:28:41.795Z", + "modified": "2021-01-13T01:50:51.854Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--dff4d6a4-174c-45c0-93a5-0baf828e8630", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--beeefb23-1d50-43c9-9ecd-d9bdeb62ae68", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.796Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:41.796Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--60f73db9-ff96-4af7-be1e-fe42e76d1c6c", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.855Z", "id": "relationship--24308bb8-fa9b-4dc3-9851-ccb6bd498fe4", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.855Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--7a8d942f-c6fa-4bab-a9ad-faca4b22f9b2", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--7b782b8e-13b6-4795-bdcf-5f239212c816", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--8b2972b7-0e31-431e-90fa-86463b50e7cf", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.797Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:41.797Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--43f1889a-8025-4156-9083-9d2eb51bd833", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--9a45776b-544d-45e9-9a12-6de91953bad4", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--efe17a93-9e63-4578-9fbf-c8dfc165687c", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--2d069171-e0db-4a4b-acd9-c7f20b5c7f4a", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--101f92a2-0423-4e58-bcd6-2e7053ac07b9", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.798Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.856Z", "id": "relationship--2f3cf392-ba73-4d30-936f-db10f0191b4f", - "modified": "2021-01-06T18:28:41.798Z", + "modified": "2021-01-13T01:50:51.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--981cf678-6912-4820-ba4c-ec951c0aa675", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--f4d6e4fe-df04-4942-a2db-763d1754fd42", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.799Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--646452b3-e29b-45e7-b636-8f3bc45c6516", - "modified": "2021-01-06T18:28:41.799Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.857Z", "id": "relationship--e7544665-83db-4687-b027-cb31ce25d12e", - "modified": "2021-01-06T18:28:41.800Z", + "modified": "2021-01-13T01:50:51.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--633bfebe-c8a2-44ee-9c57-d02b4c251770", - "modified": "2021-01-06T18:28:41.800Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.800Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--be8ccbec-ac3a-4e7e-93b5-685a1d837dfa", - "modified": "2021-01-06T18:28:41.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--d17e7051-1762-4d50-82b4-126497923de7", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--e6879872-5512-49ce-8a0f-ba6864d8a9e2", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--6924f1c1-c249-4895-8f03-3863490e9f5b", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--b15651af-74d3-4633-a779-0c1ae01bd94f", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--4ffb3407-5d1e-4b74-b698-b2edd76847c1", - "modified": "2021-01-06T18:28:41.801Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.801Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e4471b6a-a50e-483f-9533-8a02c8c6f297", - "modified": "2021-01-06T18:28:41.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--90998636-7c6e-4f12-a4a3-cc494cb98549", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--ee21cf74-cd81-41c0-843c-d4878c74b000", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.858Z", "id": "relationship--36dd77bb-70ce-4c06-ae63-c9add8e8b749", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--0bb97591-5362-4957-8c94-099ce6e0be55", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--dbe637b3-c26e-4451-87ab-873100b1104a", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.802Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:41.802Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--13a97064-71e8-4ac1-8e37-d66cbdb23081", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--a46770f4-dd21-4840-a263-15e9abb34f8e", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--19f3222a-0827-401c-9574-16ff4fe9f54b", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--8ef92797-71bc-4705-834b-415ef091a5b4", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--f0fd61a4-88f8-486f-b82d-726e2025b560", - "modified": "2021-01-06T18:28:41.803Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.803Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f82d8625-68b7-41c6-940c-2f4b07b35819", - "modified": "2021-01-06T18:28:41.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--733ff8e2-cb2b-4f63-86e6-3af9a092ed78", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--7888546c-1232-42f2-aef0-63482c733ff8", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.804Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.859Z", "id": "relationship--eac9df9e-3c29-4916-b451-99f6b15bbed4", - "modified": "2021-01-06T18:28:41.804Z", + "modified": "2021-01-13T01:50:51.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--d28304b6-1754-44fc-8994-bb4e4d02ac37", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--9d9e3d82-d2c4-476e-97f7-a0df7633f0ab", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:41.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--2d4536cf-85b3-4fa9-9d04-9c6883fb23c4", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--636135ad-b9b7-4ccb-a10a-013967fc780f", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.805Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.860Z", "id": "relationship--5edd0fd6-c245-4e37-aee9-6c392f2d7dc2", - "modified": "2021-01-06T18:28:41.805Z", + "modified": "2021-01-13T01:50:51.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.806Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--108633c2-ee3a-4785-9dc8-f81eeccbb82b", - "modified": "2021-01-06T18:28:41.806Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--a45a3c40-c1c5-4376-9fe9-59db86f7932f", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--7acd1a7d-a71d-43e5-be45-990f06aec785", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--8b8f2bd6-a5ac-41e1-9db6-bfa01da667ca", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--b52b5538-8efc-4649-a3c3-9a60e45859a2", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.807Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.861Z", "id": "relationship--6b41fc0d-1752-417b-8eb4-4ebb0393a603", - "modified": "2021-01-06T18:28:41.807Z", + "modified": "2021-01-13T01:50:51.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--8345c770-0eda-4568-85a7-41d87b36d157", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--20323a6d-371f-4b11-bc3f-ea76a5f6f644", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ed77f10c-f49c-4ba2-9bab-a3cc99302219", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.808Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ee99d733-caf1-4965-91c5-0203463aff1e", - "modified": "2021-01-06T18:28:41.808Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--ca312aee-bc5e-42f2-a1ca-caee0c45a76d", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--6e232f58-58fd-47f9-81e1-8a21536a23c2", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--9d4c0eae-bfa9-49f6-a734-820a8594d71b", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.862Z", "id": "relationship--7986e2f0-c63c-4dc6-8cac-d30569870aaf", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--b954d500-cfd1-46b5-bae3-7c4c9695b0c9", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.809Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--20dc8172-e055-4118-bbcf-e16db1faef02", - "modified": "2021-01-06T18:28:41.809Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--33d19ae2-946c-4f3a-b1b3-f9e9f5960c24", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--0980315f-d451-42bf-8ccb-8427a52faba6", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--2c5d0949-a816-4254-b706-53bce51fa91e", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--88fed362-4477-41a6-bf98-1defd2b19836", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--772b7c79-a3cd-4200-9b01-652ecd8b6839", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.810Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--aa87a77e-fd82-4b99-a0bc-d539ac38e8c2", - "modified": "2021-01-06T18:28:41.810Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.811Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.863Z", "id": "relationship--4daf5677-d021-4f1a-8886-18969be564c4", - "modified": "2021-01-06T18:28:41.811Z", + "modified": "2021-01-13T01:50:51.863Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.811Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--f053ae47-5436-47cf-b56c-b1d000a28940", - "modified": "2021-01-06T18:28:41.811Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--df70dd3f-883e-4e99-98a0-1437172dac35", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--fc742192-19e3-466c-9eb5-964a97b29490", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--3556c095-33ff-4411-b913-c5dae06ca5c1", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.864Z", "id": "relationship--dd748a24-1f3d-4974-86eb-2d137cf69c5a", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.812Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:51.865Z", "id": "relationship--9afcabd0-59e9-4978-9677-3429891cbcea", - "modified": "2021-01-06T18:28:41.812Z", + "modified": "2021-01-13T01:50:51.865Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.813Z", - "description": "Continuous Monitoring", - "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:41.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.813Z", - "description": "Continuous Monitoring", - "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:41.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.815Z", - "description": "Configuration Setting", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.815Z", - "description": "Configuration Setting", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.817Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:41.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.818Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:41.818Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.819Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:41.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.820Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:41.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.820Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:41.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--35e4d5cf-b60c-4e7a-9b75-29612575f370", - "modified": "2021-01-06T18:28:41.821Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.821Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--b82d8878-9808-43df-afb5-94dec04b5259", - "modified": "2021-01-06T18:28:41.821Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--9e13e4c2-5293-4956-a38a-360048d55ca8", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--f56920f6-8077-445a-80b1-76491cb11c7b", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--b43ed141-3442-4c81-a1ed-1138a7303c62", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--78b93e2d-1e68-407a-9860-88c51fe0e18b", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.870Z", "id": "relationship--3434eb71-bd50-4d9e-9830-41b53c144ec1", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.822Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--ceabbbf0-6aed-4203-a2d0-1f3bb434bcab", - "modified": "2021-01-06T18:28:41.822Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.823Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--f574e234-5962-4e6e-a2ef-b6124ece97a1", - "modified": "2021-01-06T18:28:41.823Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.823Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:41.823Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.824Z", - "description": "Configuration Setting", + "created": "2021-01-13T01:50:51.871Z", "id": "relationship--a42e06f9-ae25-4dc2-8e29-ed45a6ff5202", - "modified": "2021-01-06T18:28:41.824Z", + "modified": "2021-01-13T01:50:51.871Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--22d3b30d-3aac-4cfc-ad36-4079339a24aa", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--b8cfed42-6a8a-4989-ad72-541af74475ec", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--356d7246-3e1f-400f-ab6b-2deaac0dd2fe", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.825Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.872Z", "id": "relationship--90d13ae6-6a61-46fc-9676-4c546f33a7f1", - "modified": "2021-01-06T18:28:41.825Z", + "modified": "2021-01-13T01:50:51.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--5095a853-299c-4876-abd7-ac0050fb5462", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--000cbab0-b5ae-45f7-8615-1b2b7b384556", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--b427cdfd-0c5f-4a45-8449-1182821880d6", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.827Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--d8b21ba0-fdf3-44cc-8a81-39502097441a", - "modified": "2021-01-06T18:28:41.827Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.828Z", - "description": "Access Restrictions for Change, Configuration Setting", + "created": "2021-01-13T01:50:51.873Z", "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:41.828Z", + "modified": "2021-01-13T01:50:51.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.828Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.874Z", "id": "relationship--422f00bc-a510-4819-a6d9-e2394f89e6b2", - "modified": "2021-01-06T18:28:41.828Z", + "modified": "2021-01-13T01:50:51.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.829Z", - "description": "Information System Monitoring", + "created": "2021-01-13T01:50:51.874Z", "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:41.829Z", + "modified": "2021-01-13T01:50:51.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.830Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.875Z", "id": "relationship--0fa9e5fd-a2a0-454a-9fff-11e04965efa9", - "modified": "2021-01-06T18:28:41.830Z", + "modified": "2021-01-13T01:50:51.875Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.830Z", - "description": "Account Management", + "created": "2021-01-13T01:50:51.875Z", "id": "relationship--0b3fa5f0-e96c-4a37-8ca2-c96f1af121a0", - "modified": "2021-01-06T18:28:41.830Z", + "modified": "2021-01-13T01:50:51.875Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.831Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--5f2965f9-52ac-49aa-b3ee-c1d3bda58e16", - "modified": "2021-01-06T18:28:41.831Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.831Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--f60c0afd-230d-467b-a7ca-cc11a3bd5355", - "modified": "2021-01-06T18:28:41.831Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.832Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.876Z", "id": "relationship--cd8edba6-0cfe-42db-a43e-d10f5a39085b", - "modified": "2021-01-06T18:28:41.832Z", + "modified": "2021-01-13T01:50:51.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.832Z", - "description": "Process Isolation", + "created": "2021-01-13T01:50:51.877Z", "id": "relationship--1d259144-971a-4552-a469-bf33391b5c08", - "modified": "2021-01-06T18:28:41.832Z", + "modified": "2021-01-13T01:50:51.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.877Z", "id": "relationship--f4e0d676-1cfe-4776-8db0-b0db863b3424", - "modified": "2021-01-06T18:28:41.834Z", + "modified": "2021-01-13T01:50:51.877Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.834Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:41.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--0079e813-75b5-468b-8484-45a0d7c5f649", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:41.835Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--c385eb81-0aa9-4461-9c69-1a39d06eb6cd", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--827c874e-19f4-4160-b892-882ac51802ed", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--701fcfc0-5786-40fb-bf73-0f15e285213a", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.835Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.878Z", "id": "relationship--6ace38b9-fdc8-4dbe-b312-2172f12fccac", - "modified": "2021-01-06T18:28:41.835Z", + "modified": "2021-01-13T01:50:51.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--ab6a0bb7-5da0-4cfc-8c3b-270cbc0bcef1", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--308ba998-3582-4f0a-9c3a-4799b8f33e3f", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--3eb33f1b-fd14-4933-b4ef-f0f849c01472", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--4f4c6f3e-707e-4450-a508-c201aa653892", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--91695f86-7097-4aa3-8a1c-d26ee006fa9f", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.836Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--1f75de19-bffb-465c-bf45-f8fe366b526c", - "modified": "2021-01-06T18:28:41.836Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--9b180ef6-a3f3-44a5-9f78-73887da29d7e", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--626db871-5246-46c8-8b40-f602587b5a38", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--a8a0d511-0c68-4e67-b3ff-70e605ee1db8", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--2acc6fb6-55e3-4183-8c5b-4348ed8e7614", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.879Z", "id": "relationship--5726a304-7492-43fd-8c57-e05ce4df0da2", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.879Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4a207090-d41b-493a-bf45-50fc77e72916", - "modified": "2021-01-06T18:28:41.837Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--845ad056-6faa-4072-9acc-dbc80067b5ee", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.837Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--2fad5ba2-6eef-4b31-8588-bfeea17502b8", - "modified": "2021-01-06T18:28:41.837Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--b9bfbe9b-5ff0-4f3f-821a-7d306308fa64", - "modified": "2021-01-06T18:28:41.838Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:41.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.838Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.880Z", "id": "relationship--cfe51f97-d038-4a08-9495-7d301df863f2", - "modified": "2021-01-06T18:28:41.838Z", + "modified": "2021-01-13T01:50:51.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.839Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:41.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--d05b0c70-7121-41b0-a491-83dee42f893a", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--317a7bbc-7a61-4c29-bd33-e358394d2f9d", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--9aff9dc1-2a91-4cb0-bc3b-4d1cefec08da", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.881Z", "id": "relationship--0ea16e27-bdbe-4db0-8c56-956e1effd6ca", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--1e7a025c-81b2-4483-b4f5-c95ddbfb0a33", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--9738c529-2994-43f1-ba13-6d80040574ef", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.840Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--1de283c2-e5b6-4269-afcf-e04a2d8db639", - "modified": "2021-01-06T18:28:41.840Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--21f8e1ae-c8d5-41e9-843e-1c73177c1140", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--d06bd4dc-443a-4327-83fb-04daaa9ff282", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.882Z", "id": "relationship--8878cd0b-e3a1-4a01-9322-1a9fc5b7f66a", - "modified": "2021-01-06T18:28:41.841Z", + "modified": "2021-01-13T01:50:51.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.841Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:41.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.883Z", "id": "relationship--a6219c53-a278-417c-8f1b-e014c49a9b72", - "modified": "2021-01-06T18:28:41.842Z", + "modified": "2021-01-13T01:50:51.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.842Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:41.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.883Z", "id": "relationship--a219b633-a1bb-46da-b054-320fcc814288", - "modified": "2021-01-06T18:28:41.843Z", + "modified": "2021-01-13T01:50:51.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:41.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.843Z", - "description": "User Access Permissions", - "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:41.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.884Z", "id": "relationship--9962eb64-e6db-43c4-b9e1-4ec791d81c40", - "modified": "2021-01-06T18:28:41.844Z", + "modified": "2021-01-13T01:50:51.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.844Z", - "description": "User Access Permissions", - "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:41.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.845Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--038f9855-87b6-4338-b880-f9f8ec0233a7", - "modified": "2021-01-06T18:28:41.845Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0ead6392-dd34-4235-81a7-d79f27e4f82e", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--1cefe2ac-a722-437b-be04-9b7486c37717", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--e3a1a447-ad75-47c2-b5f0-43ae1d12cbd1", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.885Z", "id": "relationship--e6261440-5ecd-4a77-922a-4518398b090d", - "modified": "2021-01-06T18:28:41.846Z", + "modified": "2021-01-13T01:50:51.885Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.846Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:41.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:41.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--0a48a251-2792-41db-a8b6-cad188a31366", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.847Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--bb140d78-31e0-4002-84fd-c5496af80f59", - "modified": "2021-01-06T18:28:41.847Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--538fc01b-05e6-4585-8993-b934a73ab435", - "modified": "2021-01-06T18:28:41.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--c81b9290-28a4-48b1-b02a-d484fb71d307", - "modified": "2021-01-06T18:28:41.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--323755e6-65c1-43a3-a3cf-017b34e72e56", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--acbdd41e-d7a3-4ba1-8a4b-657816d1e3f1", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.848Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--e9669724-a0cb-4b52-89ec-3f49357070f7", - "modified": "2021-01-06T18:28:41.848Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.886Z", "id": "relationship--1bc90079-711b-4472-ac1a-b13a4fbe5f3e", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--c3faa9ff-2632-4457-8d49-051a424937c2", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--2c5f44ed-921d-42e8-848a-e55508390ed0", - "modified": "2021-01-06T18:28:41.849Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.849Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:41.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4c2976fe-6609-4539-b4e6-012bdcd50945", - "modified": "2021-01-06T18:28:41.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--6926e5eb-2fce-45cf-aee2-4379af077fbf", - "modified": "2021-01-06T18:28:41.850Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.850Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:51.887Z", "id": "relationship--51f8b0a3-7a07-43c1-8fa0-32844efe748d", - "modified": "2021-01-06T18:28:41.850Z", + "modified": "2021-01-13T01:50:51.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--ce3d3862-b57d-4bf8-99c6-45ffd83a84b4", - "modified": "2021-01-06T18:28:41.851Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e3164bcc-554b-4625-bdce-4ec4ba50c7c2", - "modified": "2021-01-06T18:28:41.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.851Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--de026ce1-9ab7-44ce-a4a1-278381b9d05b", - "modified": "2021-01-06T18:28:41.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--f913bdf1-740d-4042-b0d8-72a860b77554", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--f81145b0-c75c-4138-bb22-01071cd4600e", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--e9067b7a-175b-4c5c-b932-d9893e2ddadf", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.852Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.888Z", "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:41.852Z", + "modified": "2021-01-13T01:50:51.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.853Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--e7c8a2a1-9344-4988-b18b-126a3d2d7408", - "modified": "2021-01-06T18:28:41.853Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.853Z", - "description": "User Access Permissions", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:41.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", - "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:41.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--37938e04-b71b-491b-8696-cafca70dfbcb", - "modified": "2021-01-06T18:28:41.854Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.854Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.889Z", "id": "relationship--aac12432-b831-4807-a5b7-ff761bbefd7f", - "modified": "2021-01-06T18:28:41.854Z", + "modified": "2021-01-13T01:50:51.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8c6a4d19-5493-4d3a-8744-f59dc4043c16", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--12d4b824-c076-492c-816c-43682f0c4cb5", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--727e92cd-8b5f-49a9-840a-2360bfa86311", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.855Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--467b5685-4673-4759-b470-0e59838782f7", - "modified": "2021-01-06T18:28:41.855Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.857Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--a9ac73e0-8001-4d47-9338-73a21e791d99", - "modified": "2021-01-06T18:28:41.857Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.857Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.891Z", "id": "relationship--b08175d0-e5d2-4d7f-8dc9-cff98a6ecbb8", - "modified": "2021-01-06T18:28:41.857Z", + "modified": "2021-01-13T01:50:51.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.858Z", - "description": "User Access Permissions", - "id": "relationship--10d50932-cf37-4b00-bc5a-fd67e2992fb3", - "modified": "2021-01-06T18:28:41.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--01a5a209-b94c-450b-b7f9-946497d91055", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.860Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:41.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.860Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:41.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--5c98d2a7-94e5-4cbd-a622-aee516c25db3", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a5521b36-114a-49c4-97c0-6c8123295887", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd2ad0f0-7d39-4b12-a7a0-b2f43124c5d0", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.861Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fff5fe25-44f9-4fbb-850d-4f796680b54c", - "modified": "2021-01-06T18:28:41.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--89b3c489-8503-447b-bc95-93b702e50a82", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2eb7ae6a-186d-444b-89d5-018f172320f5", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.862Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--90a065ae-7d35-4cc6-86c5-cd4b51e7a4fd", - "modified": "2021-01-06T18:28:41.862Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2e6d8f09-002f-4cce-abc7-0585a412a45f", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f75b8e4f-4141-4ea4-91e2-0feab2dc4978", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.863Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:41.863Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:41.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.864Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4539974a-9742-4291-ad13-7cbf90bcb987", - "modified": "2021-01-06T18:28:41.864Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.865Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--ea97ea6c-ab42-4da5-9409-3ff41a3d1a6c", - "modified": "2021-01-06T18:28:41.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.865Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--97dcb7f9-d75d-42db-8b71-f8aec7c9a05c", - "modified": "2021-01-06T18:28:41.865Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--85529de5-2354-4b3e-b217-4010096c970a", - "modified": "2021-01-06T18:28:41.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f025071b-e0b1-4e48-be5b-60115963cbf1", - "modified": "2021-01-06T18:28:41.866Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.866Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:41.866Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.867Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.895Z", "id": "relationship--448946df-8e69-4f85-866c-202b70bcd6fa", - "modified": "2021-01-06T18:28:41.867Z", + "modified": "2021-01-13T01:50:51.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.868Z", - "description": "User Access Permissions", - "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:41.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.868Z", - "description": "User Access Permissions", - "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:41.868Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.869Z", - "description": "User Access Permissions", - "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:41.869Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.869Z", - "description": "User Access Permissions", - "id": "relationship--37c025aa-01c9-4dfd-ac7c-c6587540835b", - "modified": "2021-01-06T18:28:41.869Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a542bac9-7bc1-4da7-9a09-96f69e23cc21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.870Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--9dcef4ee-a6a0-4660-b9ea-e6da26584f10", - "modified": "2021-01-06T18:28:41.870Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--09267961-6268-43bd-b637-7c9aa8df2a51", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--350a2731-c73d-4d80-9a6f-26c1e3c5b78a", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--e1068eb5-c886-4fae-a8c5-958fa526efc8", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--24c78286-bf0d-48b2-87b4-5dc0f72f79a6", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.871Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.897Z", "id": "relationship--1136c5db-878e-4d0f-b548-9fc97adf4c70", - "modified": "2021-01-06T18:28:41.871Z", + "modified": "2021-01-13T01:50:51.897Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.872Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--45a2ee3f-4cfa-4dbf-a725-870c95d8015a", - "modified": "2021-01-06T18:28:41.872Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.872Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--2edb4f3b-258f-42cb-ab06-f57ec0204557", - "modified": "2021-01-06T18:28:41.872Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--0d1b2a76-5b2b-445a-8aa5-7a326f728245", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--adb0a004-8bd6-4933-b786-44801c4e4e39", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.898Z", "id": "relationship--f0f6b3a5-0667-423d-a2b8-aff3695bd227", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.873Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--0070c0a1-2cf3-4c83-9943-8a0e6b5df7e8", - "modified": "2021-01-06T18:28:41.873Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--117ba743-d1b0-49cc-857b-acbc8a1f3e44", - "modified": "2021-01-06T18:28:41.874Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.874Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.899Z", "id": "relationship--039eb345-33f9-44e7-8e31-822f7a8f0010", - "modified": "2021-01-06T18:28:41.874Z", + "modified": "2021-01-13T01:50:51.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.875Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--bf4ea2fd-74e0-4147-866f-f02362568cba", - "modified": "2021-01-06T18:28:41.875Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--41ccb3b5-82be-430a-b2dd-cf74f83f03be", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.900Z", "id": "relationship--f6b0ece4-d2d2-46ba-91b1-6d8e534e0217", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.876Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--242be42b-3591-4c24-ada2-d60b2c05068d", - "modified": "2021-01-06T18:28:41.876Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.877Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--2442d3d1-c495-4a15-85b4-39162ad8607f", - "modified": "2021-01-06T18:28:41.877Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.878Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.901Z", "id": "relationship--5f54af85-708e-44f8-b32f-2cb3ae433ea2", - "modified": "2021-01-06T18:28:41.878Z", + "modified": "2021-01-13T01:50:51.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.879Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.902Z", "id": "relationship--ffc950c2-818c-48e1-8c56-9fa7a638f543", - "modified": "2021-01-06T18:28:41.879Z", + "modified": "2021-01-13T01:50:51.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--69e5226d-05dc-4f15-95d7-44f5ed78d06e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--e34fe402-5f0a-4209-b57d-32e69fbed466", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2899eabf-1c83-4045-b80f-a6dd003a0dcd", - "modified": "2021-01-06T18:28:41.880Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--8c28bcc4-5a76-4f04-892d-4d75bb58b065", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.880Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--f7b20983-6652-4186-b1a5-d8e6e041bbab", - "modified": "2021-01-06T18:28:41.880Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--cc7cc633-5af4-414a-a98e-40489e28122d", - "modified": "2021-01-06T18:28:41.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--b5ed2231-f2b6-46c7-a045-b4f69ea7511f", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.903Z", "id": "relationship--d96f908a-f491-490a-99f3-81f0898fc232", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4a972afb-8825-4d75-9115-a62fe1f87ff4", - "modified": "2021-01-06T18:28:41.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--2f1301b2-019d-4e67-a92b-2b8d475faddc", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.881Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--a5c125fa-b841-40bb-ba3b-0960821a5b67", - "modified": "2021-01-06T18:28:41.881Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.882Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0d0d9d87-1ce1-4f5e-93cc-070fb687a6be", - "modified": "2021-01-06T18:28:41.882Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.882Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--756874e0-48d9-4066-9f36-863c9f1421da", - "modified": "2021-01-06T18:28:41.882Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.883Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.904Z", "id": "relationship--dce27408-60af-4549-8be2-12fabccc3f0a", - "modified": "2021-01-06T18:28:41.883Z", + "modified": "2021-01-13T01:50:51.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.884Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--333af2dc-2655-41c3-9b0a-50cf84458060", - "modified": "2021-01-06T18:28:41.884Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.884Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--5773990b-efa0-4679-aae3-608d2ad0d8b6", - "modified": "2021-01-06T18:28:41.884Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:41.886Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--113bb9ba-96e0-4d55-852d-350993b42731", - "modified": "2021-01-06T18:28:41.886Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.886Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.905Z", "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:41.886Z", + "modified": "2021-01-13T01:50:51.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--370c334d-d223-4d00-b168-8dd19de916f5", - "modified": "2021-01-06T18:28:41.887Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", - "id": "relationship--d5e145d7-adfb-4716-9dc9-f3f3260dee0d", - "modified": "2021-01-06T18:28:41.887Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.887Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--c5d2f265-a89e-4258-9ebe-917959abf088", - "modified": "2021-01-06T18:28:41.887Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.906Z", "id": "relationship--e84ce07a-2cc5-42ba-9847-e20cd50f15ae", - "modified": "2021-01-06T18:28:41.888Z", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", - "id": "relationship--a98b16bf-5921-4841-b1a2-607ca704e184", - "modified": "2021-01-06T18:28:41.888Z", + "created": "2021-01-13T01:50:51.906Z", + "id": "relationship--fc7510ba-4458-45ed-9dae-72a8ad449d09", + "modified": "2021-01-13T01:50:51.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", - "target_ref": "attack-pattern--818302b2-d640-477b-bf88-873120ce85c4", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.888Z", - "description": "User Access Permissions", - "id": "relationship--fc7510ba-4458-45ed-9dae-72a8ad449d09", - "modified": "2021-01-06T18:28:41.888Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--49193a45-4f61-471a-8c14-9be0a28f17c5", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:41.892Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--e90ef3b2-8461-463e-83f5-9ba3463388b2", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:41.892Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--13f6da62-3a5c-4eeb-acf3-57ec54d4f022", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:41.892Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--d4b4c8e6-3490-4f50-a8ea-f73de6a79ba6", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.892Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:41.892Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--e84820bf-6e33-4255-9914-65d124dcdae3", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.894Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--7342e29b-5e2b-45db-9aca-5eb2db605886", - "modified": "2021-01-06T18:28:41.894Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--afc6e353-0a18-4aad-8577-7bb26cd5d0c3", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.894Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:41.894Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--91e447b4-1c1c-4d15-908d-8d643c57e6ec", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.896Z", - "description": "User Access Permissions", - "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:41.896Z", + "created": "2021-01-13T01:50:51.910Z", + "id": "relationship--6ad05843-49b7-42b8-8656-03ef25dd91b2", + "modified": "2021-01-13T01:50:51.910Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.897Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:41.897Z", + "created": "2021-01-13T01:50:51.911Z", + "id": "relationship--785aec0c-4c35-454d-abf2-3d387e300b79", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--49193a45-4f61-471a-8c14-9be0a28f17c5", - "modified": "2021-01-06T18:28:41.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e90ef3b2-8461-463e-83f5-9ba3463388b2", - "modified": "2021-01-06T18:28:41.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--13f6da62-3a5c-4eeb-acf3-57ec54d4f022", - "modified": "2021-01-06T18:28:41.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.898Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:41.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d4b4c8e6-3490-4f50-a8ea-f73de6a79ba6", - "modified": "2021-01-06T18:28:41.899Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e84820bf-6e33-4255-9914-65d124dcdae3", - "modified": "2021-01-06T18:28:41.899Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.899Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--afc6e353-0a18-4aad-8577-7bb26cd5d0c3", - "modified": "2021-01-06T18:28:41.899Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:41.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--91e447b4-1c1c-4d15-908d-8d643c57e6ec", - "modified": "2021-01-06T18:28:41.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6ad05843-49b7-42b8-8656-03ef25dd91b2", - "modified": "2021-01-06T18:28:41.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.900Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--785aec0c-4c35-454d-abf2-3d387e300b79", - "modified": "2021-01-06T18:28:41.900Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:41.901Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--9b97fa56-6b81-4286-aba5-ef3d2d78c3d2", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--6f5d1880-22d8-4141-80fc-1948d2df3303", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.901Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.911Z", "id": "relationship--181a63be-3dca-4d7c-bb5e-1c7f691c38be", - "modified": "2021-01-06T18:28:41.901Z", + "modified": "2021-01-13T01:50:51.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--bfbd6c2a-4dc6-4f3f-982b-a8d4d9956356", - "modified": "2021-01-06T18:28:41.903Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--6786103e-4c6b-41db-b5dd-e011b7b149aa", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--9629abd2-7f00-4f5e-a7ae-753a9f967f64", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--5b33e83c-0328-4b85-b440-524261964061", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.903Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--76f5d3a4-16af-46bc-815d-12cc8c1f9349", - "modified": "2021-01-06T18:28:41.903Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--90d97570-dc40-4885-aaa9-a7dd42076246", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--23ed1dbe-7ff7-42b3-a094-8a0eba3e94fe", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.904Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.912Z", "id": "relationship--e6502658-e627-42a6-b123-c4bf957c2bb9", - "modified": "2021-01-06T18:28:41.904Z", + "modified": "2021-01-13T01:50:51.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.905Z", - "description": "User Access Permissions", - "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:41.905Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.905Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--3c3564b6-eb14-4260-9e4d-a539e44be413", - "modified": "2021-01-06T18:28:41.905Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.906Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--4ac20274-44cb-459d-846a-88c1b2a1fc50", - "modified": "2021-01-06T18:28:41.906Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.906Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.913Z", "id": "relationship--ba29c872-ad48-432e-aac4-a01d0fb0c266", - "modified": "2021-01-06T18:28:41.906Z", + "modified": "2021-01-13T01:50:51.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--797707ff-06d3-46ca-b556-911c3685c186", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--2c8f335b-91cf-48d4-81ad-5b73c7303b4c", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--a9af9ecd-df12-4e39-8542-941f2d395cee", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--0c680e0a-c381-4e1f-a267-f57ab5642eda", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--c0ee039c-e54a-4bce-8cad-07018c2a98d7", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.908Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--a215d86e-c648-42c0-9f56-5a3c4ca2fabe", - "modified": "2021-01-06T18:28:41.908Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.914Z", "id": "relationship--6e4901ae-8568-46c0-9b1c-9b59f14b92f7", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--ab457d2c-f3ea-4612-ad95-161e294a48a1", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--9c09e37f-1e8f-4458-9074-8659f393ac88", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.909Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--9cc65c0a-7a64-400a-a3a9-02bdf3240bfa", - "modified": "2021-01-06T18:28:41.909Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--40f1f7d4-7233-4742-a820-d8cf0104e232", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--0740eceb-2896-4c38-8f1f-e01e215e6096", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--3eb3b8ef-9beb-438a-a3b6-586dd2be5336", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--51b5b06f-b099-4017-b87a-a89853300f04", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.910Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--b32f6a35-c342-482b-a1f5-9c07adbe5e8e", - "modified": "2021-01-06T18:28:41.910Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.911Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.915Z", "id": "relationship--ae710a30-37dd-4c91-9969-d87c0c0d6b25", - "modified": "2021-01-06T18:28:41.911Z", + "modified": "2021-01-13T01:50:51.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--ef39ec84-5958-4650-8be7-07e385b6a596", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--d51f9d60-45c4-4ceb-bde9-abd12863d500", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--773eeb5c-0d60-499e-a6df-dcc469435f66", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--fd0ee300-5c8d-4ca3-9073-472f04369dda", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.912Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:41.912Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.916Z", "id": "relationship--d0c7f04b-f0b7-44ac-b70c-d01ee0ae2193", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--15727435-53c7-4f1d-9ea0-38192c2a3aa9", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.913Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--fd07d558-da7c-4b21-94f7-854110130c15", - "modified": "2021-01-06T18:28:41.913Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.914Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--8721f57d-6968-4f0c-a90c-2e3aa0c1b520", - "modified": "2021-01-06T18:28:41.914Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.914Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.917Z", "id": "relationship--076e4ef0-e471-4e25-acb8-233aa9ed9962", - "modified": "2021-01-06T18:28:41.914Z", + "modified": "2021-01-13T01:50:51.917Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.918Z", "id": "relationship--a290264e-1f46-45c4-a46f-cb40a953a488", - "modified": "2021-01-06T18:28:41.915Z", + "modified": "2021-01-13T01:50:51.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.915Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.918Z", "id": "relationship--94d85c25-04ff-4b13-8159-1a7103686d8f", - "modified": "2021-01-06T18:28:41.915Z", + "modified": "2021-01-13T01:50:51.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.917Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--eb17a6a1-0ace-4d8a-a22f-a9fe7c7cea0f", - "modified": "2021-01-06T18:28:41.917Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--bd358cb0-0b10-449c-b7ee-d8d1abf4f803", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--85448e89-c513-4ea0-8b21-ec21ce981066", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8b34f91d-05e3-4929-9bfd-768b9531043f", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.918Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e9cfb843-fdd8-43af-bbf1-e5bb241b04e2", - "modified": "2021-01-06T18:28:41.918Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2a71dd45-8a9d-4e2a-acbf-0e54789017f4", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a2e3a301-8f7e-4f98-a25b-91b7c2b72509", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b192bd04-3c75-4183-9f34-f68861822178", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6216261a-c71c-404e-928d-f6e6a9d492df", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.919Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--78f43327-d3c3-4d8b-bb27-ae1ed1168524", - "modified": "2021-01-06T18:28:41.919Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--b1e3aa8f-33ee-4e87-843d-a3bb5916572d", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3f5f96bc-9eed-458a-8d53-68524873fd13", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--51efc053-6f21-4827-87de-3bbff017a742", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--72b30836-50d3-4ef3-bbf8-be20ba36c26c", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--766486a7-a9bb-4b83-8008-3e503ffa6b29", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.920Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4b4d32e8-a9d5-4e24-9392-c9568d7effab", - "modified": "2021-01-06T18:28:41.920Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--c7289be7-4b9f-4eae-ae16-e3f7c7f49640", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3d56f277-7a35-4caf-8fa1-27f0bf5a1f97", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.922Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f03688e5-ca08-4035-91bc-40f8640837cb", - "modified": "2021-01-06T18:28:41.922Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--dee24bb0-b664-4548-933c-f20068daf2fe", - "modified": "2021-01-06T18:28:41.923Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--bedeab32-e0ea-4624-ad1b-fd1ecb5ad372", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--2bf7596c-aa49-4c9b-9aef-db6b5d1a9c4e", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.923Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--462cdf0f-792a-464d-bf51-97402dd35e4b", - "modified": "2021-01-06T18:28:41.923Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.924Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.922Z", "id": "relationship--5abd6e83-1fa0-4894-a5df-908000336c41", - "modified": "2021-01-06T18:28:41.924Z", + "modified": "2021-01-13T01:50:51.922Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.924Z", - "description": "User Access Permissions", - "id": "relationship--8de150b7-6331-4581-a5c8-024dada3ebdf", - "modified": "2021-01-06T18:28:41.924Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--dcaa092b-7de9-4a21-977f-7fcb77e89c48", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--3130eb74-7a91-4729-bd3c-3421adaea415", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--677569f9-a8b0-459e-ab24-7f18091fa7bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--448c8862-dc62-40d6-a4c4-6d39cf97130d", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8cdeb020-e31e-4f88-a582-f53dcfbda819", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.925Z", - "description": "User Access Permissions", - "id": "relationship--4c65565e-f173-477b-8fd5-e082092df64a", - "modified": "2021-01-06T18:28:41.925Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--86850eff-2729-40c3-b85e-c4af26da4a2d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.925Z", "id": "relationship--f1c8cafa-b996-4bfa-98f6-564574a85ffc", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.925Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--6081efeb-cc0b-47b2-bb37-16159e08c447", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.926Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--a6ecdd39-5dee-4c80-877e-e014bc470ffa", - "modified": "2021-01-06T18:28:41.926Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--5e6afc0c-780b-432c-aa11-7ad8d9ef8210", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--7f95b061-d1e4-40a1-a1e7-0ae79696145d", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--b5a6cc39-4c8d-402a-ad0b-986d96b45416", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.926Z", "id": "relationship--8f73ba57-627f-4648-9d3c-0253f5bdaef8", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.927Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--4fef6667-c7f2-41d2-bde2-c7ec478b3a76", - "modified": "2021-01-06T18:28:41.927Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--6276dbc6-1269-4585-92dc-9693c75349bc", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--8db5adfb-e686-4c64-8faa-b1a43d9fbbfc", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--3ff08917-9cc6-4873-bf07-6a0172886bdb", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--b77aec5b-628f-42fc-8d23-c6b0c510d25c", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.928Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--6a1e9f51-4495-4908-bab9-8b91915e456c", - "modified": "2021-01-06T18:28:41.928Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.927Z", "id": "relationship--74e94d04-f70b-4cc0-bbc8-297519c8125c", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.928Z", "id": "relationship--d7da449b-edd3-4a28-8d7c-3ee57f6106ae", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.928Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.929Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.928Z", "id": "relationship--045d4fc7-fcbc-4704-b089-02860795f763", - "modified": "2021-01-06T18:28:41.929Z", + "modified": "2021-01-13T01:50:51.928Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--d4c4cf32-870e-42b4-974c-edbfa46667ca", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--2fce787b-1bf9-4358-a139-1a109b04bce9", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--5f3405fd-ecb0-4f0d-b3bc-ab3482dfe571", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--05b6af26-3b4a-4157-bbb5-df48805a4ddb", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.930Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.929Z", "id": "relationship--e9e85de8-0ef0-4cef-8a71-a5bdaa700f90", - "modified": "2021-01-06T18:28:41.930Z", + "modified": "2021-01-13T01:50:51.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.931Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.930Z", "id": "relationship--79ef267f-4658-4bba-a809-db20cd0d8ef7", - "modified": "2021-01-06T18:28:41.931Z", + "modified": "2021-01-13T01:50:51.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.931Z", "id": "relationship--ca8f1552-b89d-4e67-a53d-4eda1d95c45b", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.931Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--6dc11329-1a1b-43a7-b74b-392d9dde9dba", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.932Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--5b74652d-8dfb-4b23-9430-1d48653697b0", - "modified": "2021-01-06T18:28:41.932Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.933Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.932Z", "id": "relationship--c7f9015d-2898-46e6-8380-c6c4fe69a747", - "modified": "2021-01-06T18:28:41.933Z", + "modified": "2021-01-13T01:50:51.932Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.933Z", "id": "relationship--c4fa36b6-5997-4111-bd41-4460d0d190d4", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.933Z", "id": "relationship--10c5cb0f-d2b5-46e6-950a-c0a2ad8043cd", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.934Z", "id": "relationship--dce6a918-740b-4382-8ed3-d1d39082a462", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.934Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.934Z", "id": "relationship--e6b7e8c2-6744-4fcb-bbab-dab88c078f02", - "modified": "2021-01-06T18:28:41.934Z", + "modified": "2021-01-13T01:50:51.934Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.936Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.935Z", "id": "relationship--b0cdfc19-7557-4bfb-8bd9-45a0c6722613", - "modified": "2021-01-06T18:28:41.936Z", + "modified": "2021-01-13T01:50:51.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.936Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.935Z", "id": "relationship--915c6e8a-eaac-4498-bba8-7efdbe2ebb89", - "modified": "2021-01-06T18:28:41.936Z", + "modified": "2021-01-13T01:50:51.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.937Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.937Z", "id": "relationship--d907468d-643b-4603-8b8d-900f3772758e", - "modified": "2021-01-06T18:28:41.937Z", + "modified": "2021-01-13T01:50:51.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.937Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.937Z", "id": "relationship--0dadacf2-99eb-465d-941c-ec4cb2450a91", - "modified": "2021-01-06T18:28:41.937Z", + "modified": "2021-01-13T01:50:51.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.938Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--2287d8ff-db24-4d26-bc45-2ee2a54fc012", - "modified": "2021-01-06T18:28:41.938Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.938Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--51c0c5d6-619e-438f-ad76-0cabb40c2666", - "modified": "2021-01-06T18:28:41.938Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.939Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.938Z", "id": "relationship--d19790e3-0b15-4d64-a5c8-75e3d01f893a", - "modified": "2021-01-06T18:28:41.939Z", + "modified": "2021-01-13T01:50:51.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.939Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.939Z", "id": "relationship--8ab5f062-8f12-4f38-bdf9-e3a2156e1379", - "modified": "2021-01-06T18:28:41.939Z", + "modified": "2021-01-13T01:50:51.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.940Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.940Z", "id": "relationship--d1aaf170-f9fd-4e8a-9ee6-462a9427cd27", - "modified": "2021-01-06T18:28:41.940Z", + "modified": "2021-01-13T01:50:51.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.940Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:41.940Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.941Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.941Z", "id": "relationship--adc5b409-7159-4650-bda3-a76897081d54", - "modified": "2021-01-06T18:28:41.941Z", + "modified": "2021-01-13T01:50:51.941Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.941Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.942Z", "id": "relationship--7db4cda2-59c3-4fc2-a431-9d4799678057", - "modified": "2021-01-06T18:28:41.941Z", + "modified": "2021-01-13T01:50:51.942Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--3684492a-3ce1-4ad6-b5f0-ae8e113b0521", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--7f9163c5-0c10-4cf8-8abc-da26e8d6bbb6", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.942Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--e797ad3a-162b-491b-a26b-ab9c8e85045f", - "modified": "2021-01-06T18:28:41.942Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.943Z", "id": "relationship--767fad22-8dc5-4b1e-90e4-957f6e5a6f6b", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--60c1f5f2-4cc7-495f-bbcb-a01158029eae", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--8a256558-9eae-43e2-9493-865e66f2a030", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--de38c05a-3a38-43a1-b614-fc4d811a4fd9", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.943Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.944Z", "id": "relationship--289b762b-af1c-4170-84ee-85c87683924c", - "modified": "2021-01-06T18:28:41.943Z", + "modified": "2021-01-13T01:50:51.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.944Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.945Z", "id": "relationship--9b47368a-e92c-46fb-8174-25fe7bf6ac53", - "modified": "2021-01-06T18:28:41.944Z", + "modified": "2021-01-13T01:50:51.945Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--d44d0e6a-193c-4e63-9f65-5eb8c3215b5a", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--6d201db8-49f0-491b-9c70-e2d4559c32c4", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.945Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.946Z", "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:41.945Z", + "modified": "2021-01-13T01:50:51.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.946Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.947Z", "id": "relationship--06af1129-476d-46ac-a3f9-3db0e6bc4926", - "modified": "2021-01-06T18:28:41.946Z", + "modified": "2021-01-13T01:50:51.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--365be77f-fc0e-42ee-bac8-4faf806d9336", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.946Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.947Z", "id": "relationship--efb756d5-635a-4fae-bd74-575952ceaca9", - "modified": "2021-01-06T18:28:41.946Z", + "modified": "2021-01-13T01:50:51.947Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.947Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--6770cc82-b72a-4551-8aa9-05b124cad438", - "modified": "2021-01-06T18:28:41.947Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--86952b30-706b-41fb-8ccf-265f9cc88a94", - "modified": "2021-01-06T18:28:41.948Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.949Z", "id": "relationship--d896b04f-87b6-41af-822e-d717fdd45152", - "modified": "2021-01-06T18:28:41.948Z", + "modified": "2021-01-13T01:50:51.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74e4cda9-c771-4f61-bb2d-6f9793efe0fc", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--10a6472b-8e3c-4861-9199-01005cd3be1b", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.948Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--44af0252-9b7e-45d9-a7a0-14db6a6d92eb", - "modified": "2021-01-06T18:28:41.948Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--aa9acf68-7f81-4e8d-a398-1afba1e3ba4f", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--d55d1485-0005-4d20-99f0-51a23974930f", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.949Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.950Z", "id": "relationship--916067f8-8d62-40a4-bdfd-d32c335fbe09", - "modified": "2021-01-06T18:28:41.949Z", + "modified": "2021-01-13T01:50:51.950Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6f7fc462-90ba-4a22-b31a-695fbbca8abd", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f1a6718b-c160-43ef-b3b3-82736d63c853", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.950Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--74dd5bce-a52b-4bec-8d08-42eb6304afa7", - "modified": "2021-01-06T18:28:41.950Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.951Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.951Z", "id": "relationship--c68d9981-b8d2-4184-b07b-9f488e5c2ba7", - "modified": "2021-01-06T18:28:41.951Z", + "modified": "2021-01-13T01:50:51.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--8e9f77c8-076f-4b28-8d95-7f20e8c62aa5", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--45b86658-5acb-4265-a0d6-22e4a15d8a3f", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.952Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--df430aa2-c88e-4a97-bbff-d52a87cf40cb", - "modified": "2021-01-06T18:28:41.952Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.953Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--89a02bdc-b4e0-4aa9-a003-ed774ee2fc7c", - "modified": "2021-01-06T18:28:41.953Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.953Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.952Z", "id": "relationship--1f0fbd92-fd6f-4856-b3c0-3af6dd8eb682", - "modified": "2021-01-06T18:28:41.953Z", + "modified": "2021-01-13T01:50:51.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.954Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--6a9e4c13-a5e6-4aad-88ce-6743b1bbbc28", - "modified": "2021-01-06T18:28:41.954Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--65917ae0-b854-4139-83fe-bf2441cf0196", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.955Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--3317074d-d40b-41a4-8cf0-8aff4720dbc7", - "modified": "2021-01-06T18:28:41.955Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--09b130a2-a77e-4af0-a361-f46f9aad1345", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.955Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.953Z", "id": "relationship--33efc92a-e4c9-42e4-a16a-7ddd8e5d673c", - "modified": "2021-01-06T18:28:41.955Z", + "modified": "2021-01-13T01:50:51.953Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--34e793de-0274-4982-9c1a-246ed1c19dee", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.956Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--25dad28c-ed7d-4978-bf68-25709ae26f20", - "modified": "2021-01-06T18:28:41.956Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--f860e434-7e6c-41d5-b6f2-c003f58d3d6d", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--2567eb16-2586-44c9-9929-6fdf4a685f9e", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.957Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.954Z", "id": "relationship--caf16a80-58cc-4800-8947-7406efb6ca8e", - "modified": "2021-01-06T18:28:41.957Z", + "modified": "2021-01-13T01:50:51.954Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.958Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.955Z", "id": "relationship--320d8581-f9f8-46be-91af-8fab1e6ca259", - "modified": "2021-01-06T18:28:41.958Z", + "modified": "2021-01-13T01:50:51.955Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.959Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.955Z", "id": "relationship--a3a75392-5445-40a0-97c2-2c98a5fc080a", - "modified": "2021-01-06T18:28:41.959Z", + "modified": "2021-01-13T01:50:51.955Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.960Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.956Z", "id": "relationship--ff6d2e93-0e89-4349-ac0b-d23a197e0014", - "modified": "2021-01-06T18:28:41.960Z", + "modified": "2021-01-13T01:50:51.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.956Z", "id": "relationship--1d1464af-ab45-4f36-b6ea-29d89388f987", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.956Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--b2a8ee4f-9526-491b-9b38-5f28dac3434c", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--f6126ad3-bc83-4394-8fea-189f650b2849", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.962Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--ee5eee9c-cf47-4ee4-bfc8-b106d6a6e89d", - "modified": "2021-01-06T18:28:41.962Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--3847a76b-f0a9-43b6-b31f-0aa9db75d0c9", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7b808d97-7526-4ee5-af5e-f0efffc26c83", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--ce7d4f5d-c862-4a64-9e75-179580885463", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.963Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7ca1adff-0e0c-4c14-b2e4-bc2e6a512861", - "modified": "2021-01-06T18:28:41.963Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--0b23aaa1-a035-4cb6-b5be-1ad1009030bf", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--7eab1080-516d-43ba-9923-04fa391c2dc3", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.957Z", "id": "relationship--f9b9c6da-5412-4296-a00a-02ca82122ab9", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.957Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.964Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--fd5cec05-c717-4631-977d-5bda56f8a85d", - "modified": "2021-01-06T18:28:41.964Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--7924454e-77a6-43ff-9610-3ed72422c426", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--760006f1-8250-427f-9760-3d9038c8929a", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.966Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--f8476083-ddda-4a14-b0a5-a247fc82ab75", - "modified": "2021-01-06T18:28:41.966Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.958Z", "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.967Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:41.967Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.959Z", "id": "relationship--4bc62442-ba4a-4143-8d4e-1a88ecf4a75e", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--013807d9-bf31-4872-b7d2-02c653d7fa52", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.969Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--08891c51-d158-4f08-81be-e8e911309ff4", - "modified": "2021-01-06T18:28:41.969Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.960Z", "id": "relationship--65d68a6f-8f90-4649-8300-770f0a531f2e", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--c26375a3-0990-425b-ba80-7377b2fdca2f", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.971Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--9798b4bc-95aa-4456-a4d6-94456f9b27ee", - "modified": "2021-01-06T18:28:41.971Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.972Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.961Z", "id": "relationship--003eee65-82d9-49c2-8332-b92f854226c6", - "modified": "2021-01-06T18:28:41.972Z", + "modified": "2021-01-13T01:50:51.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.973Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--a73c4d26-a209-4895-bf6f-39fe128811fc", - "modified": "2021-01-06T18:28:41.973Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.973Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--cc804eea-16a5-43df-953d-1f7859bd4530", - "modified": "2021-01-06T18:28:41.973Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.974Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.962Z", "id": "relationship--600dee8c-a17c-414a-814a-b888189bc818", - "modified": "2021-01-06T18:28:41.974Z", + "modified": "2021-01-13T01:50:51.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--9c5f7943-5529-4361-8b88-ef35a8e32cff", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--4ff89de0-427e-4f43-9767-6c4a8f5b833d", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.963Z", "id": "relationship--a6ffbf6f-8af9-4795-a3f1-1cb0726bb9d6", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--c256825d-f7c8-4410-ac4e-78dea87946bd", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--4ba7bb36-8662-4fd5-8f77-b13702c6ebad", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.976Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--8895799c-c3c5-4f5c-93b1-81b2d8efd056", - "modified": "2021-01-06T18:28:41.976Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--62062dc9-c6d2-4bd1-b03d-0888686f20d1", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--19557c25-c895-4232-a686-eb7852b3dd23", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--375e79e5-c075-46b9-b812-98ca2d3c0826", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--9456e760-fd50-4ebd-b0f4-1f34f494c112", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--06106a8b-e76e-4fc0-8451-ab774978e663", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--7ac31d41-01da-4324-8ffa-a63f60ec4221", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.964Z", "id": "relationship--1eec13af-fe0d-4e8e-a596-b895db22fd69", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.977Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--6c8a8375-9ab2-4c34-8fba-a7192831a7b6", - "modified": "2021-01-06T18:28:41.977Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--3f55f09e-92bc-4b09-81f9-74e2cff6ea2c", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--8669ec42-0f78-487e-b536-4462886d318c", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.978Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--a8e3e951-ae0b-4255-86f6-ffb7155c89ef", - "modified": "2021-01-06T18:28:41.978Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.965Z", "id": "relationship--c176da7e-12a0-4fb4-b9eb-3e60ea9c94b7", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--adff285f-81f4-4092-805e-573d6815afe4", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--2fdcc2d3-5759-4aa7-80bc-8a5f27028407", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--c4386841-283e-410a-8e9f-094ed69202c8", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.979Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--dea7a262-58f6-4695-ba30-d3517db23614", - "modified": "2021-01-06T18:28:41.979Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.980Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.966Z", "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:41.980Z", + "modified": "2021-01-13T01:50:51.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.980Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--47668375-482a-492f-9728-80d083666a4a", - "modified": "2021-01-06T18:28:41.980Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--ee404c57-8958-4ed1-ba70-fecf68addfb5", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--872b5a94-dc22-4136-b6bd-84003f74698d", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--a01b5fd2-8436-4077-beb4-6ab95dbb2830", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--6aed45a2-b472-42b9-9933-179bb0e9abd2", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--ecb43be3-31d3-4164-99b0-46d51090b4dc", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.981Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--569d5985-ff2f-497d-8db9-cc8575760dcd", - "modified": "2021-01-06T18:28:41.981Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.982Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.967Z", "id": "relationship--f380bb71-f395-4464-90d3-cc9a66c36e30", - "modified": "2021-01-06T18:28:41.982Z", + "modified": "2021-01-13T01:50:51.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--a0158530-2bfc-4c51-bf56-8ca26fbc21c0", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--38309b7f-6d97-465e-b887-ad460a70743b", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e31242b8-7884-4e2c-9dc8-4fc437160360", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6c5d874b-f9da-4d53-8c70-1082c3ce7ca7", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.983Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:41.983Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.984Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:41.984Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.985Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0c6e2b71-b6ec-4081-a19f-4ac8a5083545", - "modified": "2021-01-06T18:28:41.985Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.986Z", - "description": "User Access Permissions", - "id": "relationship--3e453be5-8b97-4bb5-91ee-94a7795178fc", - "modified": "2021-01-06T18:28:41.986Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e62cd748-16fa-4876-93cd-17791c60d272", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--38ee0da5-b9f0-4975-b350-11ab8ba003d8", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--2aee4f44-3794-415b-83c3-aa550a669f40", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.987Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--153b572b-6563-43fc-b371-3e77128ef2b7", - "modified": "2021-01-06T18:28:41.987Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.988Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--77f5d653-ab6c-4593-aa6f-5e9009972cb0", - "modified": "2021-01-06T18:28:41.988Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.989Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.972Z", "id": "relationship--b7aa3d2b-81ab-41d3-b42e-9428d4709e62", - "modified": "2021-01-06T18:28:41.989Z", + "modified": "2021-01-13T01:50:51.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.990Z", - "description": "User Access Permissions", - "id": "relationship--b52adc77-25e6-4331-b3a9-f29e3e8c0d84", - "modified": "2021-01-06T18:28:41.990Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--910906dd-8c0a-475a-9cc1-5e029e2fad58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--88c41554-fbaa-4a4d-b50c-92729bf1a625", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--3398a45f-95b6-4c00-8146-2035a547ccd5", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--76a79243-d0ae-4991-89af-6433577b39f2", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.991Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.974Z", "id": "relationship--05b3c7fc-951d-45ad-85e8-db7c2a467033", - "modified": "2021-01-06T18:28:41.991Z", + "modified": "2021-01-13T01:50:51.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.992Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.975Z", "id": "relationship--fbc1dc54-00d3-4a9b-8d15-59f6b87d7cc7", - "modified": "2021-01-06T18:28:41.992Z", + "modified": "2021-01-13T01:50:51.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.992Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.975Z", "id": "relationship--5f1ebb8f-9aba-43c4-a1cb-44b17054ca3e", - "modified": "2021-01-06T18:28:41.992Z", + "modified": "2021-01-13T01:50:51.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.993Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.976Z", "id": "relationship--5acff5f9-b1d3-4978-a4dd-7c9c2bcdee7d", - "modified": "2021-01-06T18:28:41.993Z", + "modified": "2021-01-13T01:50:51.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.995Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:41.995Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--1ef5050e-834d-4a71-beb6-09e19f1e224d", - "modified": "2021-01-06T18:28:41.996Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--948165d8-282d-4e3c-b852-d2c026391693", - "modified": "2021-01-06T18:28:41.996Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--62e7e3fa-60b9-46dd-8ca3-0729c70ec9ac", - "modified": "2021-01-06T18:28:41.996Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.996Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--ce461fc0-792e-4e9a-86b8-3282df6d02b6", - "modified": "2021-01-06T18:28:41.996Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--18a03be2-1432-44bd-9145-5ac00f6ee8b2", - "modified": "2021-01-06T18:28:41.997Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.977Z", "id": "relationship--2434c1ae-2144-4514-9a70-74a43d9f23e7", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--dee90e48-b31d-4173-ad7a-187d6a8a346c", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.997Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--f29d547a-5c3d-4b7a-9135-28e0717add7e", - "modified": "2021-01-06T18:28:41.997Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:41.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.978Z", "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:41.998Z", + "modified": "2021-01-13T01:50:51.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:41.998Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--73f71313-f51b-4847-bc7f-4a4e61c20f05", - "modified": "2021-01-06T18:28:41.998Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:41.999Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--899926ba-9981-4f42-a2d5-48c2e80a0ab8", - "modified": "2021-01-06T18:28:41.999Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--5906e40b-10f7-4f36-822d-d6a17ba89518", - "modified": "2021-01-06T18:28:42.001Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--d07ef5d2-d603-42b4-9029-8675589da47e", - "modified": "2021-01-06T18:28:42.001Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.001Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.001Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.002Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.979Z", "id": "relationship--6cc55af2-abb4-41d6-8cba-e8b34298b78d", - "modified": "2021-01-06T18:28:42.002Z", + "modified": "2021-01-13T01:50:51.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.002Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:42.002Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.003Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--85920706-ff0a-4944-9883-88740b932d35", - "modified": "2021-01-06T18:28:42.003Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.004Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:42.004Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.004Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.980Z", "id": "relationship--7e2bc859-0579-4c3c-8297-23c440fee328", - "modified": "2021-01-06T18:28:42.004Z", + "modified": "2021-01-13T01:50:51.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--68b2218c-da71-4854-bbfc-bc27f286ccc1", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.005Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:42.005Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--76e0294f-749c-4044-b80c-132cdbc4b10e", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--88480167-f9d5-4cce-aa4b-9e15f98bf20f", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--71b88164-a923-4f65-913d-2ebaece59cfb", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.006Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fe78983d-6080-4bff-8abe-1b291d20f370", - "modified": "2021-01-06T18:28:42.006Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--fc0eee43-2c9d-479c-9e41-d0c35cfe723f", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c32b4a7f-2f35-4d54-9e1f-26209a82d707", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.007Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:42.007Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.008Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:42.008Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--79e945fb-e00b-49ae-8b1f-36165ca52f16", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--8499cd1c-6245-4e65-9a98-295b9a727bd9", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e5141746-d8db-4085-9de8-6417faaaac4f", - "modified": "2021-01-06T18:28:42.009Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.009Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.983Z", "id": "relationship--a1074983-5f31-4262-bd53-52d0bb0db978", - "modified": "2021-01-06T18:28:42.009Z", + "modified": "2021-01-13T01:50:51.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.010Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:42.010Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.010Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.983Z", "id": "relationship--665a6c15-a71e-4384-89b2-2bdf3c469205", - "modified": "2021-01-06T18:28:42.010Z", + "modified": "2021-01-13T01:50:51.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.011Z", - "description": "User Access Permissions", - "id": "relationship--1754fef6-9f78-4c99-971f-05c73c5a3cea", - "modified": "2021-01-06T18:28:42.011Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.012Z", - "description": "User Access Permissions", - "id": "relationship--e89a2613-d7b3-4c50-81fe-1931547ab434", - "modified": "2021-01-06T18:28:42.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.012Z", - "description": "User Access Permissions", - "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:42.012Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.013Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:42.013Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:42.014Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--8f8797c0-b508-4f3e-a5dd-81612ba7842e", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.014Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--0aa017ba-fcad-481c-95a3-387d296cc1cd", - "modified": "2021-01-06T18:28:42.014Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--28c67813-48f6-4701-b180-c3e1ec349c53", - "modified": "2021-01-06T18:28:42.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.985Z", "id": "relationship--3841bcf7-71ec-469d-b9ad-be24ff47e918", - "modified": "2021-01-06T18:28:42.015Z", + "modified": "2021-01-13T01:50:51.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.015Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--dd15b8d6-3ca1-4483-bda9-9112cceb71f1", - "modified": "2021-01-06T18:28:42.015Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--ed4cf110-b14d-43d8-b014-31aff822422f", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--c4dad0fb-5bbf-46c8-a82c-de176c8bc4e6", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.016Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.986Z", "id": "relationship--b5b0c903-df01-4388-b05e-5c4930759ca3", - "modified": "2021-01-06T18:28:42.016Z", + "modified": "2021-01-13T01:50:51.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.017Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.017Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.018Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.987Z", "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:42.018Z", + "modified": "2021-01-13T01:50:51.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.018Z", - "description": "User Access Permissions", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:42.018Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.019Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0fa9e5fd-a2a0-454a-9fff-11e04965efa9", - "modified": "2021-01-06T18:28:42.019Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.019Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--0b3fa5f0-e96c-4a37-8ca2-c96f1af121a0", - "modified": "2021-01-06T18:28:42.019Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--a13be02d-4e56-4895-8b9a-d24360e490c6", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--bc500f02-a190-4afa-be35-85d415017f05", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.988Z", "id": "relationship--9862d596-a093-4f7e-9bef-425971eff646", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--0ae28d1f-bb99-4913-b4ca-48de4fe5d2de", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--110be9f0-b3f8-463e-9bf2-3b379e8dba5d", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--e86996f1-2180-4300-a382-1777cd0b07b5", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.020Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--fe9fcdcf-13a2-45c1-8256-72119869c2e2", - "modified": "2021-01-06T18:28:42.020Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--c4f8de43-4863-4662-a51b-2b8155c834bd", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--6ab296d4-676d-4f81-b527-6233e09111e8", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--c44373be-ff9d-469d-a544-15b5bf6f7d52", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--35646cdd-bbd8-459e-bdca-5365fe9745ce", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.021Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.989Z", "id": "relationship--2dd44965-2d49-4301-9b96-1012dcab25d2", - "modified": "2021-01-06T18:28:42.021Z", + "modified": "2021-01-13T01:50:51.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.022Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--000cbab0-b5ae-45f7-8615-1b2b7b384556", - "modified": "2021-01-06T18:28:42.022Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b427cdfd-0c5f-4a45-8449-1182821880d6", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.990Z", "id": "relationship--a720107b-fcfc-4e36-8dd0-abb514f24a8b", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.990Z", "id": "relationship--0820061b-4e98-4cb0-a1d1-75b824a2f95d", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d8b21ba0-fdf3-44cc-8a81-39502097441a", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:42.023Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.991Z", "id": "relationship--104ad1f3-b9d1-471a-be97-2c91782b2c8a", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.023Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.991Z", "id": "relationship--70db27a0-0502-4697-afb9-d945eac8593f", - "modified": "2021-01-06T18:28:42.023Z", + "modified": "2021-01-13T01:50:51.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.024Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--8ef837fa-82fd-4a09-b9c5-cf4587fc751a", - "modified": "2021-01-06T18:28:42.024Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.024Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--48b72092-2c87-4975-a1ed-00a9570a9e4b", - "modified": "2021-01-06T18:28:42.024Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.025Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.025Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.025Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.992Z", "id": "relationship--7a5a2afe-ab11-4026-8c8c-7ff4d51f19b5", - "modified": "2021-01-06T18:28:42.025Z", + "modified": "2021-01-13T01:50:51.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--58fc17b8-c938-496c-86ef-567346ad1012", - "modified": "2021-01-06T18:28:42.026Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--45646a67-651a-41eb-bcbd-1678c2fef299", - "modified": "2021-01-06T18:28:42.026Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--b3be3766-2c4d-426e-9cf8-b7df36492a95", - "modified": "2021-01-06T18:28:42.026Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.026Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:42.026Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--f94191bb-f49b-49a4-a105-ed49b6f97602", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--a45ba5a6-2fab-48af-aa2f-80c2aa08e04f", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--2c3e83b8-9140-47e2-b744-340a107dbde6", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.993Z", "id": "relationship--005d51dd-a94d-4cf4-8c04-361068f9836e", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--6a7e7dce-6b32-4e8c-9b64-f4e966b8ab47", - "modified": "2021-01-06T18:28:42.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--792c8a54-25f9-406f-a7d5-8bc44d9308e2", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--5756dafb-8f00-48eb-a891-905413d54888", - "modified": "2021-01-06T18:28:42.027Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.027Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--11d87255-1c10-4afa-8d79-80c0a0afeb65", - "modified": "2021-01-06T18:28:42.027Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--e9b1fd78-2697-482a-9a86-64fb0dabe753", - "modified": "2021-01-06T18:28:42.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--b975bc18-55df-4e2d-b849-e267695455a6", - "modified": "2021-01-06T18:28:42.028Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.994Z", "id": "relationship--a1f92a70-b798-465c-af86-aef2013eff78", - "modified": "2021-01-06T18:28:42.028Z", + "modified": "2021-01-13T01:50:51.994Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.028Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--82394a14-bf93-4c09-af4e-8e4bd26bccfe", - "modified": "2021-01-06T18:28:42.028Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--c88a2400-4ab7-4afa-9e85-a39c613fca90", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--73cfa74f-2c4c-4eed-8a76-8a2ec4a90931", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--e929a8cd-cac5-4d90-b566-5ffb1748d91f", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--4300d756-4f0b-4b70-8098-5fea6021ca9a", - "modified": "2021-01-06T18:28:42.029Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.029Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--d8cdb86d-21bb-4cf1-92b4-b245e833dad5", - "modified": "2021-01-06T18:28:42.029Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--e5937d94-3a67-4941-b0b4-1ec793977a8d", - "modified": "2021-01-06T18:28:42.030Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.995Z", "id": "relationship--139d8a79-d5c6-4e62-846f-846d0be96a51", - "modified": "2021-01-06T18:28:42.030Z", + "modified": "2021-01-13T01:50:51.995Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.030Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:42.030Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--95dea599-40d9-400f-96e4-7b94ba8107aa", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--768dce68-8d0d-477a-b01d-0eea98b963a1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--0ed95861-5054-4bec-aaf9-a66947f9eebf", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--d157a036-7a68-4766-9812-d74361a199a2", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.031Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:51.996Z", "id": "relationship--03261c31-ef79-496d-b561-8513ad0c2e34", - "modified": "2021-01-06T18:28:42.031Z", + "modified": "2021-01-13T01:50:51.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.033Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--cc223b01-98c7-42c3-badf-448a69cc7483", - "modified": "2021-01-06T18:28:42.033Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.033Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--a5c962e9-03e2-4d1e-8586-f68249f98251", - "modified": "2021-01-06T18:28:42.033Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.997Z", "id": "relationship--46f762f9-17b6-4743-aba6-b47e8eaf1979", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--dd16f387-14f3-4a36-b574-37176164490f", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--f372a6be-4ed1-469c-965c-c797047f06d7", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.034Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--d90d094c-52ea-4603-82a4-362e2677a83d", - "modified": "2021-01-06T18:28:42.034Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.035Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:42.035Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.035Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:51.998Z", "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.035Z", + "modified": "2021-01-13T01:50:51.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--4c7c0818-3f9e-4fe1-b3ba-6c26fe12ac68", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--4f1b1e6c-77fa-4ae2-9d71-2f54cf69f533", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.036Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:42.036Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.037Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:51.999Z", "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.037Z", + "modified": "2021-01-13T01:50:51.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.038Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.000Z", "id": "relationship--b5c9b3ce-e4e5-4f21-98c6-20cce56098dc", - "modified": "2021-01-06T18:28:42.038Z", + "modified": "2021-01-13T01:50:52.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.038Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.000Z", "id": "relationship--d4f0f4e4-169d-415a-b93d-858c6f4f8774", - "modified": "2021-01-06T18:28:42.038Z", + "modified": "2021-01-13T01:50:52.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.039Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--5fda0916-3efa-41df-beab-ecbe789a946f", - "modified": "2021-01-06T18:28:42.039Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--4d6b42c1-becd-4109-999c-7e878655cfb6", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--baee3277-7779-4904-9f7b-a47d2fb60c38", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.040Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--279f6a00-a6a3-4c3d-9831-a5e4621f7dc2", - "modified": "2021-01-06T18:28:42.040Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--153fe739-71c0-492d-aeed-76845ca9e020", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--d0e02db3-92c9-4182-91de-8f73229a77bf", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--dfa46476-46b3-4384-9d34-a840971ff87d", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:52.001Z", "id": "relationship--b5dc6111-ad5f-44b9-b38d-5c27e613b146", - "modified": "2021-01-06T18:28:42.041Z", + "modified": "2021-01-13T01:50:52.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.041Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--585e7b4b-3c5b-4fca-bd4d-ea4d8f80eaf6", - "modified": "2021-01-06T18:28:42.041Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--263fbe27-db88-4766-872b-ff99a7932290", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--e828fde7-143f-467a-aa2b-26a3ba424b07", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.042Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:42.042Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.043Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege, Remote Access Permissions", + "created": "2021-01-13T01:50:52.002Z", "id": "relationship--9b218471-c7fc-4450-8ad7-85d373aca775", - "modified": "2021-01-06T18:28:42.043Z", + "modified": "2021-01-13T01:50:52.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--f986bdb9-3a86-4005-95d9-a2855ca64686", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4034116c-170a-4e2b-8196-7233107d88d7", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--8d1e43d7-e44d-4026-be88-b4f56689397d", - "modified": "2021-01-06T18:28:42.045Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.045Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.045Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.003Z", "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:42.045Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.046Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:42.046Z", + "modified": "2021-01-13T01:50:52.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.047Z", - "description": "User Access Permissions", - "id": "relationship--63b8669b-7ad5-4ecd-aa3a-20b12f6cd2e0", - "modified": "2021-01-06T18:28:42.047Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.048Z", - "description": "User Access Permissions", - "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:42.048Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.048Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.004Z", "id": "relationship--d2b7f990-b7b1-470e-9aea-de681d15fff0", - "modified": "2021-01-06T18:28:42.048Z", + "modified": "2021-01-13T01:50:52.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--f8e65a65-b98d-4233-868d-7400ce74ab93", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--54394342-a3d8-4a9b-9278-b65bf74deb59", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.049Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--081cac6d-814a-46ed-9b76-babc1dd83ce7", - "modified": "2021-01-06T18:28:42.049Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--a907984f-db08-4aec-972f-6f380fecb0ce", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.005Z", "id": "relationship--6a2ca4b7-9e25-4589-90b0-943870fc0bdc", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--c6cdf977-829b-4325-a2e8-8efadafde751", - "modified": "2021-01-06T18:28:42.050Z", + "modified": "2021-01-13T01:50:52.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.050Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--d064a3c4-e0b2-4f57-b427-6787c1d292f9", - "modified": "2021-01-06T18:28:42.050Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.051Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--893946d1-dd7b-4cc3-83b5-6c69f7d8ae7a", - "modified": "2021-01-06T18:28:42.051Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.006Z", "id": "relationship--e6b0b5d0-01ac-4c3e-8126-811d3315c46b", - "modified": "2021-01-06T18:28:42.052Z", + "modified": "2021-01-13T01:50:52.006Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--4b9f278c-7020-400b-8bc3-8d664760a717", - "modified": "2021-01-06T18:28:42.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.052Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--e81c4ac7-a94c-4d03-999b-5e8d95d4d5da", - "modified": "2021-01-06T18:28:42.052Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.053Z", - "description": "Information System Change Restrictions, Configuration Settings", - "id": "relationship--0adbe058-94d8-445d-a25e-bf917de7e6eb", - "modified": "2021-01-06T18:28:42.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.053Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.007Z", "id": "relationship--039e5143-4db4-4849-8fa0-a50cc7e52efd", - "modified": "2021-01-06T18:28:42.053Z", + "modified": "2021-01-13T01:50:52.007Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--f1951e8a-500e-4a26-8803-76d95c4554b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.054Z", - "description": "User Access Permissions", - "id": "relationship--966e0b75-0ea4-469f-8213-b1961c40f27b", - "modified": "2021-01-06T18:28:42.054Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d157f9d2-d09a-4efa-bb2a-64963f94e253", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--a9645d7c-91be-45b7-af36-571530764d95", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--78d49cc4-24a2-4c0b-87d6-a9dbd40713bb", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.055Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.008Z", "id": "relationship--f53d9bd8-1a9e-4186-a12d-7e2d52c52446", - "modified": "2021-01-06T18:28:42.055Z", + "modified": "2021-01-13T01:50:52.008Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--33e102b3-9fa6-427c-8a67-edddf2a30e12", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.056Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.056Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.057Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--6f45b031-e8a8-44db-aa32-1d0682f1902c", - "modified": "2021-01-06T18:28:42.057Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.009Z", "id": "relationship--4b0d5f22-3c0b-4f68-91cb-dc09577a6dbe", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.058Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.058Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.059Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.010Z", "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.059Z", + "modified": "2021-01-13T01:50:52.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.059Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.059Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.060Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--3375cfc9-9215-4067-8c36-e39c0f2a7875", - "modified": "2021-01-06T18:28:42.060Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.011Z", "id": "relationship--56094c2e-ccb9-4397-8f65-28170f97fd1b", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--a9037fea-0de7-453e-97ff-9206b757c1ee", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--73f3744e-7334-48fa-9ce7-e627c6ad4512", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.061Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--0ef7de69-903f-480e-bf5f-18bb1e0d85c0", - "modified": "2021-01-06T18:28:42.061Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--bc14b90f-a998-4303-822b-6f6223ca8fbf", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.062Z", - "description": "Account Management, Access Enforcement, Separation of Duties, Least Privilege", + "created": "2021-01-13T01:50:52.012Z", "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.062Z", + "modified": "2021-01-13T01:50:52.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.063Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.063Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.064Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.013Z", "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.064Z", + "modified": "2021-01-13T01:50:52.013Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.064Z", - "description": "Information System Change Restrictions, Configuration Settings", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.064Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.065Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.065Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.065Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.014Z", "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.065Z", + "modified": "2021-01-13T01:50:52.014Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.066Z", - "description": "User Access Permissions", + "created": "2021-01-13T01:50:52.015Z", "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.066Z", + "modified": "2021-01-13T01:50:52.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.015Z", "id": "relationship--dd81bf52-c1ef-4b63-ad9a-9fa5c1a0357e", - "modified": "2021-01-06T18:28:42.068Z", + "modified": "2021-01-13T01:50:52.015Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", - "id": "relationship--7bc9a679-c3ff-4cca-bd97-2041eff9ad89", - "modified": "2021-01-06T18:28:42.068Z", + "created": "2021-01-13T01:50:52.016Z", + "id": "relationship--4a9e9210-5f05-432d-992e-bfd641531a8b", + "modified": "2021-01-13T01:50:52.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.068Z", - "description": "Continuous Monitoring", - "id": "relationship--4a9e9210-5f05-432d-992e-bfd641531a8b", - "modified": "2021-01-06T18:28:42.068Z", + "created": "2021-01-13T01:50:52.016Z", + "id": "relationship--782152d1-5ae5-41a8-b342-b60811bf0b18", + "modified": "2021-01-13T01:50:52.016Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--987828e6-25a6-40b0-a085-c252b2a93cc9", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.017Z", + "id": "relationship--a5c5a97f-a9a4-46ae-9191-c1299c8ecb61", + "modified": "2021-01-13T01:50:52.017Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--f60c62e9-2ead-4c32-a2f0-bfdbdc292df3", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.018Z", + "id": "relationship--0f99df9a-7d64-439c-b593-0efa4f186338", + "modified": "2021-01-13T01:50:52.018Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--da918df2-ae58-4317-8d51-280bbdcbd4f6", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.019Z", + "id": "relationship--e6943807-201a-476a-acc4-552fc22bf4b5", + "modified": "2021-01-13T01:50:52.019Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.069Z", - "description": "Continuous Monitoring", - "id": "relationship--cef9890c-fd0c-444a-80f0-b581bb81a7ab", - "modified": "2021-01-06T18:28:42.069Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--6240d0f4-c8b6-4be4-913d-b95b84067b06", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.070Z", - "description": "Continuous Monitoring", - "id": "relationship--782152d1-5ae5-41a8-b342-b60811bf0b18", - "modified": "2021-01-06T18:28:42.070Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--8e3e703f-b5ba-4e85-a608-68a9570a0a5e", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.070Z", - "description": "Continuous Monitoring", - "id": "relationship--bdb744dd-dea2-4c02-bef1-2a231cb03f4f", - "modified": "2021-01-06T18:28:42.070Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--bce016d1-3df1-49f3-b51c-7dfbf12a44b8", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a5c5a97f-a9a4-46ae-9191-c1299c8ecb61", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.020Z", + "id": "relationship--e0646e39-5f2a-44bb-bf3a-ff44c38ed9a0", + "modified": "2021-01-13T01:50:52.020Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dc9b5efc-57ac-462c-bf6a-880b331cf384", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.021Z", + "id": "relationship--31490423-a6eb-4eb1-abec-2c10bb07f8e5", + "modified": "2021-01-13T01:50:52.021Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9059dc2-343b-4934-967e-82d61ea04371", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--0d2cbec7-2d28-46ef-bf9f-06fdd71561fd", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--088ba60b-98f1-45da-86c2-fb2a6663ba46", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--4b3f0952-02ec-41a4-9b8c-a42351eeeb18", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.071Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:42.071Z", + "created": "2021-01-13T01:50:52.022Z", + "id": "relationship--a4afcf8c-923e-4621-b0af-c452d3442a32", + "modified": "2021-01-13T01:50:52.022Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e3550930-fc87-42d1-9a58-c132af707837", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--68c0fbdf-9869-497e-b9f6-06dcf21ede76", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--7b4213d3-1f72-43cf-aa59-c75ec764bd97", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0f99df9a-7d64-439c-b593-0efa4f186338", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.023Z", + "id": "relationship--4e0cd895-2962-4c16-ab2b-5efcd841353c", + "modified": "2021-01-13T01:50:52.023Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--88eae706-58d3-49d2-897c-77c44e92bac6", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.025Z", + "id": "relationship--4145c7a1-651e-438b-a4ff-2680787dae39", + "modified": "2021-01-13T01:50:52.025Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8878cd0b-e3a1-4a01-9322-1a9fc5b7f66a", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.026Z", + "id": "relationship--a46ad5d9-b618-4873-afe1-dd02ef6e01f3", + "modified": "2021-01-13T01:50:52.026Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.029Z", + "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", + "modified": "2021-01-13T01:50:52.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.072Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--41d37464-2659-41c9-98b9-e0e6198ac335", - "modified": "2021-01-06T18:28:42.072Z", + "created": "2021-01-13T01:50:52.029Z", + "id": "relationship--e40a07f2-ce5a-4ad8-a4d8-6c9345da8b6d", + "modified": "2021-01-13T01:50:52.029Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0c701861-8119-4277-896c-06d8786ac8a0", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.030Z", + "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", + "modified": "2021-01-13T01:50:52.030Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.031Z", + "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", + "modified": "2021-01-13T01:50:52.031Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--f2f6cde6-4ff9-4a2e-9cb9-ac6ffe4ad3e7", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.032Z", + "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", + "modified": "2021-01-13T01:50:52.032Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.033Z", + "id": "relationship--64a8d3b7-1b19-4be3-b793-3a089b94cfe4", + "modified": "2021-01-13T01:50:52.033Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a6219c53-a278-417c-8f1b-e014c49a9b72", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.034Z", + "id": "relationship--cd695fc0-eeef-447f-becd-780e0f9a620a", + "modified": "2021-01-13T01:50:52.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.073Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:42.073Z", + "created": "2021-01-13T01:50:52.034Z", + "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", + "modified": "2021-01-13T01:50:52.034Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.074Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e6943807-201a-476a-acc4-552fc22bf4b5", - "modified": "2021-01-06T18:28:42.074Z", + "created": "2021-01-13T01:50:52.035Z", + "id": "relationship--d0dc263b-bf8c-459f-b931-459a7d6536f3", + "modified": "2021-01-13T01:50:52.035Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.074Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--ca12d7e5-0c28-411d-88b8-22575c6445d3", - "modified": "2021-01-06T18:28:42.074Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--1a5b0de0-7c0a-4708-a478-657c73a75c75", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--6240d0f4-c8b6-4be4-913d-b95b84067b06", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--02421603-75e2-4aec-8c1d-974d87d7f9dd", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--9c929bbf-e489-4f1a-8949-0a9c20f098b4", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--c93ff86e-43f4-40c7-be7d-48e7fa3fd552", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--0ccce5ec-8659-4ae9-8dfd-a389fb1ea3e7", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--363525ba-b454-45f8-b636-aea13db5f95a", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bf26bf8d-c9b0-48d2-bd16-900f5dcc9470", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--33aec9bf-a3a7-43d2-8483-132c421dba52", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--52a64d58-dfeb-4b74-b794-81c34b467da9", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--95289d8d-141c-4099-b32a-770aee094ed5", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--8e3e703f-b5ba-4e85-a608-68a9570a0a5e", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.037Z", + "id": "relationship--baa9f38a-6f38-4aba-9a66-6c6a6cb2b941", + "modified": "2021-01-13T01:50:52.037Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.075Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--8b8699d3-c6f4-46c9-b6e0-cb59f6674549", - "modified": "2021-01-06T18:28:42.075Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--0f6a51a3-d37e-4e46-8057-b95a6462a0df", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--bce016d1-3df1-49f3-b51c-7dfbf12a44b8", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--6cf6ed5f-3d7e-4006-96bf-13a148958aa2", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--2d03dd06-9be0-4a2b-8a2d-5998468c6015", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--3145a297-7511-43d2-a529-c4bfc143d080", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--e0646e39-5f2a-44bb-bf3a-ff44c38ed9a0", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--71e96109-6c19-428b-91b5-d90ed29d4f70", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--3c26cd38-9bb3-4f19-8677-198ecac6fb8e", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--1f512c08-c8e0-4577-a5a1-afa304dcfca7", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b7d51f43-7f8f-4dc9-9573-48c7a392e2df", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--667d406f-b54c-45ec-8bcd-54bca6f09522", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--da4ea6b2-b159-432d-b1c0-84c5affd26fc", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--4ef78ba8-22f7-4e56-b3c4-0c6803858d56", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.076Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--b08e886e-2a57-4bf1-974d-e1e227a0fef6", - "modified": "2021-01-06T18:28:42.076Z", + "created": "2021-01-13T01:50:52.038Z", + "id": "relationship--b5091ab0-95bf-47ca-9fea-3a4543010bb4", + "modified": "2021-01-13T01:50:52.038Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.077Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--31490423-a6eb-4eb1-abec-2c10bb07f8e5", - "modified": "2021-01-06T18:28:42.077Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--65d5aa5f-e0dd-4c2c-be58-75a53335a9e4", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.077Z", - "description": "Protection of Information at Rest, Process Isolation", - "id": "relationship--dbebf656-c22c-4acd-b11a-c06cbeb2e720", - "modified": "2021-01-06T18:28:42.077Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--4d4ca50a-5a86-478a-9a56-fe1d6633d793", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0d2cbec7-2d28-46ef-bf9f-06fdd71561fd", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--a7ff55ea-22d6-4ac5-8ba5-772291ec34c7", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8bd55ee2-7322-496c-a012-e8cc2421eef9", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--42a71968-8224-4295-92e9-fd430e8e1735", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4b3f0952-02ec-41a4-9b8c-a42351eeeb18", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--53455aa0-c11a-4ddb-8bac-b31f1ed337ec", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7f4d6fe-ce51-44ea-9887-330285e599b6", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--697b52ec-e071-4cd1-bbcf-615dae01e048", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2cb3fdd9-dc3d-41c5-b895-7163ff9df567", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--c099387d-e5bb-40cf-b566-98cd4b546bd8", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fbcdd028-a157-419a-af7d-7410b0645ac4", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--2eabf610-937d-4c7f-a82b-516be9cfebb9", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.078Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8f9439da-5157-4000-8863-d58deb8b3316", - "modified": "2021-01-06T18:28:42.078Z", + "created": "2021-01-13T01:50:52.039Z", + "id": "relationship--e16ce189-c502-4a61-83de-514702394691", + "modified": "2021-01-13T01:50:52.039Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a4afcf8c-923e-4621-b0af-c452d3442a32", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.040Z", + "id": "relationship--d72bea57-a91e-493c-aba9-e6674f0c0ec0", + "modified": "2021-01-13T01:50:52.040Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--120fb7d5-74a3-4e12-958b-00e2efd2b0eb", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.040Z", + "id": "relationship--fe338394-a81f-4b16-8afa-f2d8a34a1ade", + "modified": "2021-01-13T01:50:52.040Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--68c0fbdf-9869-497e-b9f6-06dcf21ede76", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.041Z", + "id": "relationship--a6cef958-8204-4ec2-b25c-e1f194ebcad9", + "modified": "2021-01-13T01:50:52.041Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--0764ed9f-3fa1-4771-875e-40d9227f9d92", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7b4213d3-1f72-43cf-aa59-c75ec764bd97", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--09f58eaa-d7bc-474a-bc1f-84da02f3bbf8", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.079Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cd352ead-32fa-4524-b31b-add76f7175a4", - "modified": "2021-01-06T18:28:42.079Z", + "created": "2021-01-13T01:50:52.042Z", + "id": "relationship--ce9853b0-e36f-4399-9388-2f1ea1df8770", + "modified": "2021-01-13T01:50:52.042Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.043Z", + "id": "relationship--b75c9cbe-4283-42bb-8b93-140764bdd620", + "modified": "2021-01-13T01:50:52.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.043Z", + "id": "relationship--676e316f-bdf3-4b0b-895d-c9562d3084f5", + "modified": "2021-01-13T01:50:52.043Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--1ffc3263-bfc3-419c-922c-40b39136847a", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4e0cd895-2962-4c16-ab2b-5efcd841353c", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--a940ddaa-aa06-4af3-8290-dd3f813cbf69", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.080Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:42.080Z", + "created": "2021-01-13T01:50:52.044Z", + "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", + "modified": "2021-01-13T01:50:52.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a219b633-a1bb-46da-b054-320fcc814288", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--d5b2567f-c1c9-4c78-93d2-832ba306f427", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--43d8bd51-e8f2-44f7-9e6e-c335e80f088e", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--dd75a408-d221-4bf0-b2f9-e894fd107b48", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3b6a0a8e-ae13-41d0-8856-075965ed84f4", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.045Z", + "id": "relationship--f69316e3-fbe4-4149-809c-60f413f3592e", + "modified": "2021-01-13T01:50:52.045Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.081Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--8bd370ba-9959-4e21-bb74-f09472b4c0b1", - "modified": "2021-01-06T18:28:42.081Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9c8d3ba0-e866-4e71-8464-f8863cf5c925", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--71337baa-3c1e-47a2-9404-6902b7713b17", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c0fc3d8-b31f-4129-b4c2-845dded8f7bc", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.082Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9962eb64-e6db-43c4-b9e1-4ec791d81c40", - "modified": "2021-01-06T18:28:42.082Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9f964822-7028-49df-8bc6-81e5711aea2d", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--4712b465-8d1b-47f2-b5e3-b3b7c14b99db", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--4145c7a1-651e-438b-a4ff-2680787dae39", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--aba9035b-4ba7-416e-b910-fdc32c274d35", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.083Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5e7b4be5-df3a-4e3d-97ae-d564aa334644", - "modified": "2021-01-06T18:28:42.083Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--f4f33f00-e218-43af-b821-c148001db0be", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--5ce52437-8796-4c52-a497-649f7d55bd72", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.046Z", + "id": "relationship--9cc8e575-ad64-4ed6-b8bf-33c6e957ca3d", + "modified": "2021-01-13T01:50:52.046Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--42d03166-40e3-4ce9-96eb-f3e7e6b50f57", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--03ddaf6b-75c7-40bd-9add-259f2020e339", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--cecdf4e6-749d-4d5c-aaa3-2e212f3965a6", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--7c54c514-377a-426e-a993-b44568d6da3a", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.084Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--691887ce-9fb5-427f-8665-decf99f8f42d", - "modified": "2021-01-06T18:28:42.084Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.085Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--a46ad5d9-b618-4873-afe1-dd02ef6e01f3", - "modified": "2021-01-06T18:28:42.085Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.085Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--51107fe1-a080-49ba-a6f8-066d2e239d43", - "modified": "2021-01-06T18:28:42.085Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--f4e0d676-1cfe-4776-8db0-b0db863b3424", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--d5b086ed-6dc5-4d29-abc5-ebbb5f3109a0", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--068c1ead-564d-4e6d-b814-4d227ea1dc5a", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--285d00a4-dfab-4f54-a7ae-3063fe849991", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--3d5e45b4-1e8f-460b-af18-40d0df6f25f9", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--c0f5768e-7078-416e-8a43-06f843e1a00c", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--c6011d37-a665-4cf4-9f32-2e75dfd5181c", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--f69dfdce-1d62-44bd-8c66-49b4ffe62da8", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--62e6a5ab-5156-4eb3-b01e-b9e1e8a16bb3", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.047Z", + "id": "relationship--1f76f4d1-58ee-4d19-9661-8796a2f5b69e", + "modified": "2021-01-13T01:50:52.047Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.086Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6087b1ce-0b57-40c9-8882-84592e74e9b5", - "modified": "2021-01-06T18:28:42.086Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--de4ef442-8dae-4a95-a2bd-b4e7dadc5fdc", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--7177c43a-243f-4c60-b06a-697a3535b11f", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--bdc3e37a-fa23-491c-b522-e54b48082d8e", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--0079e813-75b5-468b-8484-45a0d7c5f649", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.048Z", + "id": "relationship--dacdfac9-e0f1-4527-8d37-5685e7a8bd12", + "modified": "2021-01-13T01:50:52.048Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--5aaa5c57-183e-4a1d-9d3e-e43a6c8ce861", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--f8614b5b-119d-4e74-8e77-777c932e0cc8", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--b9bfbe9b-5ff0-4f3f-821a-7d306308fa64", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--57b098e7-49eb-4727-b091-afa9feeaabd9", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--92aa69e9-08bf-4b20-bcdd-4acd6a8cc0da", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.049Z", + "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", + "modified": "2021-01-13T01:50:52.049Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--cfd077be-dbae-4ea2-b7d5-f1492e4d3077", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f303a39a-6255-4b89-aecc-18c4d8ca7163", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--6e096448-90f1-4fb3-90ab-8272c50483e5", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.087Z", - "description": "Account Management, Least Privilege", - "id": "relationship--07a0201a-5819-49b8-b53f-9a51980b65a9", - "modified": "2021-01-06T18:28:42.087Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--ebeb3e2e-58fc-4630-95ca-c58fd79b7602", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.050Z", + "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", + "modified": "2021-01-13T01:50:52.050Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--88edd3ef-fa3c-40e0-9f45-54f51d07286f", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--07c8418f-d4a5-4bbe-9533-dcddc5b37a36", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--cfe51f97-d038-4a08-9495-7d301df863f2", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3120b9fa-23b8-4500-ae73-09494f607b7d", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.088Z", - "description": "Account Management, Least Privilege", - "id": "relationship--3ac273d0-47d0-49a5-9a85-87a5e923d482", - "modified": "2021-01-06T18:28:42.088Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.089Z", - "description": "Continuous Monitoring", - "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", - "modified": "2021-01-06T18:28:42.089Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.090Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e40a07f2-ce5a-4ad8-a4d8-6c9345da8b6d", - "modified": "2021-01-06T18:28:42.090Z", + "created": "2021-01-13T01:50:52.051Z", + "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", + "modified": "2021-01-13T01:50:52.051Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.090Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:42.090Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.091Z", - "description": "Information System Monitoring", - "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", - "modified": "2021-01-06T18:28:42.091Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--f20353de-df72-4265-916b-1c285b3e9b50", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.092Z", - "description": "Boundary Protection", - "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", - "modified": "2021-01-06T18:28:42.092Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--1585b2b2-e9fd-4b66-b96a-2c0c358f0dd5", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--1cefe2ac-a722-437b-be04-9b7486c37717", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--16ec5ed9-18b5-46c4-b6c4-8a2c86555a29", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--c0057c9c-6cb6-4328-ac14-350fd45895d8", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.093Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement", - "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", - "modified": "2021-01-06T18:28:42.093Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--f0b7516d-64cb-42b0-9c0d-ddb5b2ff39d2", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", + "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.094Z", - "description": "Continuous Monitoring", - "id": "relationship--64a8d3b7-1b19-4be3-b793-3a089b94cfe4", - "modified": "2021-01-06T18:28:42.094Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--4d290940-e68b-4222-9cb3-3493f780d103", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.095Z", - "description": "Baseline Configuration, Configuration Settings, Information System Component Inventory, ", - "id": "relationship--310e0b8c-bfa3-4b53-ba42-5da8eb07cc59", - "modified": "2021-01-06T18:28:42.095Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.096Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--cd695fc0-eeef-447f-becd-780e0f9a620a", - "modified": "2021-01-06T18:28:42.096Z", + "created": "2021-01-13T01:50:52.052Z", + "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", + "modified": "2021-01-13T01:50:52.052Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.097Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", - "modified": "2021-01-06T18:28:42.097Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.098Z", - "description": "Malicious Code Protection, Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--d0dc263b-bf8c-459f-b931-459a7d6536f3", - "modified": "2021-01-06T18:28:42.098Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--168a42ef-89c1-45da-96c5-a9c7eaaf50fa", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--dd5ff4ad-840a-482c-8e6a-f00a28f8d1c7", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.053Z", + "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", + "modified": "2021-01-13T01:50:52.053Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--59031ae1-ae1e-40dc-a519-76b7ce89edbb", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--d999317b-c24b-4ee3-ae38-63ea63abd7ca", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.099Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Separation of Duties, Least Privilege", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:42.099Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--ef87ea0e-bc86-44ed-aff7-03603bec16c8", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1a5b0de0-7c0a-4708-a478-657c73a75c75", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--32463329-793c-4283-a0d5-491aa0da34c0", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--02421603-75e2-4aec-8c1d-974d87d7f9dd", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--b65d2f49-d765-44d8-9193-268e1e6f9e43", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c93ff86e-43f4-40c7-be7d-48e7fa3fd552", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.054Z", + "id": "relationship--95e41c6a-d796-460a-953a-4cc2255fbb8a", + "modified": "2021-01-13T01:50:52.054Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.101Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--78808e3c-a0c4-4502-8349-a073f951e3c1", - "modified": "2021-01-06T18:28:42.101Z", + "created": "2021-01-13T01:50:52.055Z", + "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", + "modified": "2021-01-13T01:50:52.055Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ef0d892d-cb2e-42dd-8b7d-4dd851be8d62", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--363525ba-b454-45f8-b636-aea13db5f95a", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.056Z", + "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", + "modified": "2021-01-13T01:50:52.056Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--33aec9bf-a3a7-43d2-8483-132c421dba52", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.057Z", + "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", + "modified": "2021-01-13T01:50:52.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--95289d8d-141c-4099-b32a-770aee094ed5", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.057Z", + "id": "relationship--17488523-dc46-4a5b-bc02-d60d52a90275", + "modified": "2021-01-13T01:50:52.057Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--d7a7d73b-8a4f-43b2-8146-d02aade10de1", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.058Z", + "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", + "modified": "2021-01-13T01:50:52.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--16e7bc74-d92b-490c-9d5a-667fe1bafad9", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--baa9f38a-6f38-4aba-9a66-6c6a6cb2b941", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.058Z", + "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", + "modified": "2021-01-13T01:50:52.058Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--0f6a51a3-d37e-4e46-8057-b95a6462a0df", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.059Z", + "id": "relationship--b3f7588e-0881-4c87-b5ed-1631a7c878ce", + "modified": "2021-01-13T01:50:52.059Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.102Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--6cf6ed5f-3d7e-4006-96bf-13a148958aa2", - "modified": "2021-01-06T18:28:42.102Z", + "created": "2021-01-13T01:50:52.060Z", + "id": "relationship--bd104fa4-0442-476e-8568-dcea38cbe800", + "modified": "2021-01-13T01:50:52.060Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--13fad715-8eb8-448e-8edc-1057ea918910", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.060Z", + "id": "relationship--a5f8e88b-8e5d-4ad1-8664-baf8ef7ba407", + "modified": "2021-01-13T01:50:52.060Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--3145a297-7511-43d2-a529-c4bfc143d080", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.061Z", + "id": "relationship--065cbd74-eb74-4467-a647-423e66959499", + "modified": "2021-01-13T01:50:52.061Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--71e96109-6c19-428b-91b5-d90ed29d4f70", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.061Z", + "id": "relationship--a60e74ce-c1ee-4225-a4e9-35e4afcb966b", + "modified": "2021-01-13T01:50:52.061Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--1f512c08-c8e0-4577-a5a1-afa304dcfca7", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.062Z", + "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", + "modified": "2021-01-13T01:50:52.062Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--7386085f-64c0-4efd-aa6f-0f61f9de334b", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.063Z", + "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", + "modified": "2021-01-13T01:50:52.063Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--667d406f-b54c-45ec-8bcd-54bca6f09522", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.103Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4ef78ba8-22f7-4e56-b3c4-0c6803858d56", - "modified": "2021-01-06T18:28:42.103Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--b5091ab0-95bf-47ca-9fea-3a4543010bb4", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--80cad2b9-f9df-43de-9a99-4e7b0aff106e", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--daea9b13-5d55-4de9-b0f9-58d44b9ae1b8", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.064Z", + "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", + "modified": "2021-01-13T01:50:52.064Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--65d5aa5f-e0dd-4c2c-be58-75a53335a9e4", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.066Z", + "id": "relationship--5bb7c08d-c7d2-4ccd-9931-c901723dae01", + "modified": "2021-01-13T01:50:52.066Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--4d4ca50a-5a86-478a-9a56-fe1d6633d793", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.067Z", + "id": "relationship--76bece35-7fc5-44ce-af0e-9ec8450eb0f9", + "modified": "2021-01-13T01:50:52.067Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--a7ff55ea-22d6-4ac5-8ba5-772291ec34c7", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.070Z", + "id": "relationship--feadcf2c-3e34-42e0-8656-072cbb8bfdb4", + "modified": "2021-01-13T01:50:52.070Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--a47cda8c-2761-4044-8380-0259fd4e83ff", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.070Z", + "id": "relationship--7c424e1f-0a3c-4e4a-a377-4248e094229e", + "modified": "2021-01-13T01:50:52.070Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--42a71968-8224-4295-92e9-fd430e8e1735", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.104Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--53455aa0-c11a-4ddb-8bac-b31f1ed337ec", - "modified": "2021-01-06T18:28:42.104Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--697b52ec-e071-4cd1-bbcf-615dae01e048", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--e311c7c6-e417-4789-9be8-e25b97d3ba01", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--326c8894-1a36-4be8-8484-085be16e7e82", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--ea0dddbb-29f0-4963-9011-0358f603691c", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--fc9bccb9-108d-4b14-87de-6806237d6ad4", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--c099387d-e5bb-40cf-b566-98cd4b546bd8", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.071Z", + "id": "relationship--669f8711-5259-4fda-ad9e-5bd3264ec48a", + "modified": "2021-01-13T01:50:52.071Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--2eabf610-937d-4c7f-a82b-516be9cfebb9", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.072Z", + "id": "relationship--475a723a-8911-4310-b0fa-5006dc4cfaa9", + "modified": "2021-01-13T01:50:52.072Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--e16ce189-c502-4a61-83de-514702394691", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.073Z", + "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", + "modified": "2021-01-13T01:50:52.073Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.105Z", - "description": "System Development Life Cycle, Acquisition Process, Security Engineering Principles, Developer Configuration Management, Developer Security Testing and Evaluation, Development Process, Standards, and Tolls, Developer-Provided Trianing, Developer Security Architecture and Design", - "id": "relationship--05220038-1046-48aa-8267-9ef1af0c7f3c", - "modified": "2021-01-06T18:28:42.105Z", + "created": "2021-01-13T01:50:52.074Z", + "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", + "modified": "2021-01-13T01:50:52.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.106Z", - "description": "Protection of Information at Rest", - "id": "relationship--d72bea57-a91e-493c-aba9-e6674f0c0ec0", - "modified": "2021-01-06T18:28:42.106Z", + "created": "2021-01-13T01:50:52.074Z", + "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", + "modified": "2021-01-13T01:50:52.074Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.106Z", - "description": "Protection of Information at Rest", - "id": "relationship--fe338394-a81f-4b16-8afa-f2d8a34a1ade", - "modified": "2021-01-06T18:28:42.106Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.107Z", - "description": "Protection of Information at Rest", - "id": "relationship--a6cef958-8204-4ec2-b25c-e1f194ebcad9", - "modified": "2021-01-06T18:28:42.107Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.107Z", - "description": "Protection of Information at Rest", - "id": "relationship--338a3145-b978-40c7-b728-3438905283c5", - "modified": "2021-01-06T18:28:42.107Z", + "created": "2021-01-13T01:50:52.075Z", + "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", + "modified": "2021-01-13T01:50:52.075Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--1eca8a07-23ee-4bdf-8f88-26d2c7adcd73", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.076Z", + "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", + "modified": "2021-01-13T01:50:52.076Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--0764ed9f-3fa1-4771-875e-40d9227f9d92", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--8ff44d11-ec3b-4ed2-8f63-d3f30904d04d", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--e90ef3b2-8461-463e-83f5-9ba3463388b2", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--69406761-87e6-4220-a614-ab028ed18a65", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--13f6da62-3a5c-4eeb-acf3-57ec54d4f022", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.081Z", + "id": "relationship--c764917a-a83b-424d-8c81-3d7fb6b1f635", + "modified": "2021-01-13T01:50:52.081Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--b0a1d6a2-583b-471d-bb9b-2670ed3f6d19", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--6ec71e08-7ca0-4cfc-b926-d760a3f952ec", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.108Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--09f58eaa-d7bc-474a-bc1f-84da02f3bbf8", - "modified": "2021-01-06T18:28:42.108Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--ee9ee26f-12fa-47f6-b595-ad490c647f07", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6ad05843-49b7-42b8-8656-03ef25dd91b2", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.082Z", + "id": "relationship--3d24cfb7-4c8e-42f8-81fa-79de8ef37b87", + "modified": "2021-01-13T01:50:52.082Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--785aec0c-4c35-454d-abf2-3d387e300b79", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--d74a517c-2f5b-479a-b57c-2255bf9d9007", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--42be3081-0b6b-4ea4-8bfa-c86abf3f8c51", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ce9853b0-e36f-4399-9388-2f1ea1df8770", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.083Z", + "id": "relationship--1218a126-7456-4784-97ea-f27c5a3c80f9", + "modified": "2021-01-13T01:50:52.083Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6f5d1880-22d8-4141-80fc-1948d2df3303", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--bc5174bc-781a-4133-ad05-a0728060149c", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.109Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--181a63be-3dca-4d7c-bb5e-1c7f691c38be", - "modified": "2021-01-06T18:28:42.109Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--3ee28ea9-028c-4d12-8606-b2c7456bd29c", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--b75c9cbe-4283-42bb-8b93-140764bdd620", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--895e8018-64ec-46b9-b988-1a6a8f4807fa", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--676e316f-bdf3-4b0b-895d-c9562d3084f5", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.084Z", + "id": "relationship--a9f2b409-71fd-4bad-bbed-c48e76db578f", + "modified": "2021-01-13T01:50:52.084Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--1ffc3263-bfc3-419c-922c-40b39136847a", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--41ba0bd1-e872-4daa-a1bd-ed7d4f880db8", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.110Z", - "description": "Continuous Monitoring", - "id": "relationship--a940ddaa-aa06-4af3-8290-dd3f813cbf69", - "modified": "2021-01-06T18:28:42.110Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--73bbee58-fa63-490f-bd3a-1ce90d3d4efc", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", - "modified": "2021-01-06T18:28:42.111Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--45216264-01c8-4b5f-aab7-e646162716da", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--d5b2567f-c1c9-4c78-93d2-832ba306f427", - "modified": "2021-01-06T18:28:42.111Z", + "created": "2021-01-13T01:50:52.085Z", + "id": "relationship--b13e9efb-053b-4700-8b9f-f2bca142919f", + "modified": "2021-01-13T01:50:52.085Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6151cbea-819b-455a-9fa6-99a1cc58797d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.111Z", - "description": "Information System Monitoring", - "id": "relationship--dd75a408-d221-4bf0-b2f9-e894fd107b48", - "modified": "2021-01-06T18:28:42.111Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--79f59189-919d-4999-b0f8-5b421bcf3045", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fdc47f44-dd32-4b99-af5f-209f556f63c2", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.112Z", - "description": "Information System Monitoring", - "id": "relationship--f69316e3-fbe4-4149-809c-60f413f3592e", - "modified": "2021-01-06T18:28:42.112Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--e2444ad2-7132-429a-9f66-2f49076043ca", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b17a1a56-e99c-403c-8948-561df0cffe81", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--d7105a2d-260f-4305-9702-f7b0b08f27da", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.086Z", + "id": "relationship--4accda5f-bb2a-436a-bedf-42b8a64d7b6a", + "modified": "2021-01-13T01:50:52.086Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", - "modified": "2021-01-06T18:28:42.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", - "modified": "2021-01-06T18:28:42.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--4712b465-8d1b-47f2-b5e3-b3b7c14b99db", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.113Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--aba9035b-4ba7-416e-b910-fdc32c274d35", - "modified": "2021-01-06T18:28:42.113Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f4f33f00-e218-43af-b821-c148001db0be", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.087Z", + "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", + "modified": "2021-01-13T01:50:52.087Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--9cc8e575-ad64-4ed6-b8bf-33c6e957ca3d", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.088Z", + "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", + "modified": "2021-01-13T01:50:52.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--03ddaf6b-75c7-40bd-9add-259f2020e339", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.088Z", + "id": "relationship--12646806-2981-416b-ba44-c7a56d249cd3", + "modified": "2021-01-13T01:50:52.088Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.114Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.114Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--8fc11ac4-8e55-47d1-b860-486ca6901684", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.089Z", + "id": "relationship--e0ce7619-4c16-4a1e-ae0c-d276086b7ed6", + "modified": "2021-01-13T01:50:52.089Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.091Z", + "id": "relationship--d8b5b412-2495-416f-9235-b60f12225143", + "modified": "2021-01-13T01:50:52.091Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.093Z", + "id": "relationship--e65e36db-218a-44b1-96bf-b6ee1ab9d371", + "modified": "2021-01-13T01:50:52.093Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--d5b086ed-6dc5-4d29-abc5-ebbb5f3109a0", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.094Z", + "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", + "modified": "2021-01-13T01:50:52.094Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--285d00a4-dfab-4f54-a7ae-3063fe849991", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.094Z", + "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", + "modified": "2021-01-13T01:50:52.094Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.115Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--c0f5768e-7078-416e-8a43-06f843e1a00c", - "modified": "2021-01-06T18:28:42.115Z", + "created": "2021-01-13T01:50:52.095Z", + "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", + "modified": "2021-01-13T01:50:52.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.116Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--f69dfdce-1d62-44bd-8c66-49b4ffe62da8", - "modified": "2021-01-06T18:28:42.116Z", + "created": "2021-01-13T01:50:52.095Z", + "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", + "modified": "2021-01-13T01:50:52.095Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.116Z", - "description": "Identification and Authentication (Organization Users), Identifier Management, Authenticator Management, Re-Autentication", - "id": "relationship--1f76f4d1-58ee-4d19-9661-8796a2f5b69e", - "modified": "2021-01-06T18:28:42.116Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f570bfb-181f-487e-9edc-63606c9329d7", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.117Z", - "description": "Continuous Monitoring", - "id": "relationship--de4ef442-8dae-4a95-a2bd-b4e7dadc5fdc", - "modified": "2021-01-06T18:28:42.117Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.117Z", - "description": "Continuous Monitoring", - "id": "relationship--bdc3e37a-fa23-491c-b522-e54b48082d8e", - "modified": "2021-01-06T18:28:42.117Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--dacdfac9-e0f1-4527-8d37-5685e7a8bd12", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.096Z", + "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", + "modified": "2021-01-13T01:50:52.096Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--f8614b5b-119d-4e74-8e77-777c932e0cc8", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.097Z", + "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", + "modified": "2021-01-13T01:50:52.097Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.118Z", - "description": "Continuous Monitoring", - "id": "relationship--57b098e7-49eb-4727-b091-afa9feeaabd9", - "modified": "2021-01-06T18:28:42.118Z", + "created": "2021-01-13T01:50:52.097Z", + "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", + "modified": "2021-01-13T01:50:52.097Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.098Z", + "id": "relationship--4ee26bb0-a756-412d-b0d5-a6753d5a2fd0", + "modified": "2021-01-13T01:50:52.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.098Z", + "id": "relationship--a259ae15-0471-42f0-80b5-f2c34a0dffbd", + "modified": "2021-01-13T01:50:52.098Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.119Z", - "description": "Information System Monitoring", - "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", - "modified": "2021-01-06T18:28:42.119Z", + "created": "2021-01-13T01:50:52.100Z", + "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", + "modified": "2021-01-13T01:50:52.100Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.120Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:42.120Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.120Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:42.120Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--07c8418f-d4a5-4bbe-9533-dcddc5b37a36", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.102Z", + "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", + "modified": "2021-01-13T01:50:52.102Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--756dd64b-b687-4937-9055-d1ea983bab1c", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--e22a31ba-571a-4ced-8554-9237a48c2069", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--f5c81e99-17c5-49e9-a5ea-af519ad2940e", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.105Z", + "id": "relationship--af780919-8470-4cf6-a2cf-08ce99d9fe81", + "modified": "2021-01-13T01:50:52.105Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.107Z", + "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", + "modified": "2021-01-13T01:50:52.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.107Z", + "id": "relationship--03748d46-f602-4c3b-99f6-50f10523b76e", + "modified": "2021-01-13T01:50:52.107Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.121Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", - "modified": "2021-01-06T18:28:42.121Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--f20353de-df72-4265-916b-1c285b3e9b50", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--dc6b8663-f6d7-4ef9-8209-7e24b861ecb2", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--1585b2b2-e9fd-4b66-b96a-2c0c358f0dd5", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--6e0c98b4-a834-4e0a-b564-a2ba5b812f9d", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--16ec5ed9-18b5-46c4-b6c4-8a2c86555a29", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.108Z", + "id": "relationship--291317f4-8d40-44e1-92f3-1d1fbc6a0a92", + "modified": "2021-01-13T01:50:52.108Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--c0057c9c-6cb6-4328-ac14-350fd45895d8", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.109Z", + "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", + "modified": "2021-01-13T01:50:52.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--f0b7516d-64cb-42b0-9c0d-ddb5b2ff39d2", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.109Z", + "id": "relationship--4e34f824-2a85-4488-ac68-5e22b03625cd", + "modified": "2021-01-13T01:50:52.109Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.110Z", + "id": "relationship--61554426-e695-4d8c-8c4f-f45bafc89620", + "modified": "2021-01-13T01:50:52.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.110Z", + "id": "relationship--bd86956e-644a-496e-8092-0b960dcd42f3", + "modified": "2021-01-13T01:50:52.110Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.122Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", - "modified": "2021-01-06T18:28:42.122Z", + "created": "2021-01-13T01:50:52.111Z", + "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", + "modified": "2021-01-13T01:50:52.111Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.112Z", + "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", + "modified": "2021-01-13T01:50:52.112Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Account Management, Access Enforcement, Seperation of Duties, Unsuccessful Logon Attempts ", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.123Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", - "modified": "2021-01-06T18:28:42.123Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.113Z", + "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", + "modified": "2021-01-13T01:50:52.113Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--dd5ff4ad-840a-482c-8e6a-f00a28f8d1c7", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.114Z", + "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", + "modified": "2021-01-13T01:50:52.114Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d999317b-c24b-4ee3-ae38-63ea63abd7ca", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--17111b97-41fc-47b6-bf50-628039cdfbee", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--ef87ea0e-bc86-44ed-aff7-03603bec16c8", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--ce144bc0-dbf5-4394-ab77-9f2c7e997865", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--32463329-793c-4283-a0d5-491aa0da34c0", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--259b3709-2537-4aa6-8e7b-13278b0a3fa4", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.124Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b65d2f49-d765-44d8-9193-268e1e6f9e43", - "modified": "2021-01-06T18:28:42.124Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--3b84179d-56fd-4063-8224-4c6da43ba029", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.125Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--95e41c6a-d796-460a-953a-4cc2255fbb8a", - "modified": "2021-01-06T18:28:42.125Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--9bdacd2e-287d-4693-9cd5-c3be3e3d17f7", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.126Z", - "description": "Boundary Protection", - "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", - "modified": "2021-01-06T18:28:42.126Z", + "created": "2021-01-13T01:50:52.115Z", + "id": "relationship--f361c62a-f274-487e-963b-c9c99360e15e", + "modified": "2021-01-13T01:50:52.115Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.127Z", - "description": "Continuous Monitoring", - "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", - "modified": "2021-01-06T18:28:42.127Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--ab57f38d-9d46-4cc8-bdb2-0931fb31a12b", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.128Z", - "description": "Information System Monitoring", - "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", - "modified": "2021-01-06T18:28:42.128Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--355be5bc-4c61-4dca-adbe-77d6902f904d", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.129Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--17488523-dc46-4a5b-bc02-d60d52a90275", - "modified": "2021-01-06T18:28:42.129Z", + "created": "2021-01-13T01:50:52.116Z", + "id": "relationship--d566b1c6-3cd8-4db8-b717-bd7923800fb1", + "modified": "2021-01-13T01:50:52.116Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.129Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", - "modified": "2021-01-06T18:28:42.129Z", + "created": "2021-01-13T01:50:52.117Z", + "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", + "modified": "2021-01-13T01:50:52.117Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.130Z", - "description": "Information Flow Enforcement", - "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", - "modified": "2021-01-06T18:28:42.130Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.131Z", - "description": "Continuous Monitoring", - "id": "relationship--b3f7588e-0881-4c87-b5ed-1631a7c878ce", - "modified": "2021-01-06T18:28:42.131Z", + "created": "2021-01-13T01:50:52.117Z", + "id": "relationship--ee24380d-4a93-402d-aa2d-afb94464f7d9", + "modified": "2021-01-13T01:50:52.117Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.132Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bd104fa4-0442-476e-8568-dcea38cbe800", - "modified": "2021-01-06T18:28:42.132Z", + "created": "2021-01-13T01:50:52.118Z", + "id": "relationship--348dd7e3-8a6a-4230-9606-a2f4008b223e", + "modified": "2021-01-13T01:50:52.118Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.132Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a5f8e88b-8e5d-4ad1-8664-baf8ef7ba407", - "modified": "2021-01-06T18:28:42.132Z", + "created": "2021-01-13T01:50:52.119Z", + "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", + "modified": "2021-01-13T01:50:52.119Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.133Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--065cbd74-eb74-4467-a647-423e66959499", - "modified": "2021-01-06T18:28:42.133Z", + "created": "2021-01-13T01:50:52.119Z", + "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", + "modified": "2021-01-13T01:50:52.119Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.133Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a60e74ce-c1ee-4225-a4e9-35e4afcb966b", - "modified": "2021-01-06T18:28:42.133Z", + "created": "2021-01-13T01:50:52.120Z", + "id": "relationship--10fe7e70-6f16-424e-b57c-e52dca75baf8", + "modified": "2021-01-13T01:50:52.120Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b6075259-dba3-44e9-87c7-e954f37ec0d5", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.134Z", - "description": "Continuous Monitoring", - "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", - "modified": "2021-01-06T18:28:42.134Z", + "created": "2021-01-13T01:50:52.121Z", + "id": "relationship--7b60d6fd-4171-420d-b201-02c601d14b1a", + "modified": "2021-01-13T01:50:52.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.135Z", - "description": "Information System Monitoring", - "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", - "modified": "2021-01-06T18:28:42.135Z", + "created": "2021-01-13T01:50:52.121Z", + "id": "relationship--630a91a9-0c50-401e-9995-231813f23149", + "modified": "2021-01-13T01:50:52.121Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.136Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--4ea3f401-d11b-4484-bf67-00d57a224b19", - "modified": "2021-01-06T18:28:42.136Z", + "created": "2021-01-13T01:50:52.122Z", + "id": "relationship--1158a6c3-8449-4514-b46e-7e51a84f004f", + "modified": "2021-01-13T01:50:52.122Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.123Z", + "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", + "modified": "2021-01-13T01:50:52.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.123Z", + "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", + "modified": "2021-01-13T01:50:52.123Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--02dc504b-b23d-4493-89a3-e37e7ad14c51", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--80cad2b9-f9df-43de-9a99-4e7b0aff106e", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.137Z", - "description": "Account Management, Access Enforcement, Information Flow Enforcement, Least Privilege, Security Attributes, Remote Access, Use of External Information Systems, Protection of Information at Rest", - "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", - "modified": "2021-01-06T18:28:42.137Z", + "created": "2021-01-13T01:50:52.124Z", + "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", + "modified": "2021-01-13T01:50:52.124Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.138Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--84ff810b-888c-4ff5-b8ef-8e01ff72b01c", - "modified": "2021-01-06T18:28:42.138Z", + "created": "2021-01-13T01:50:52.125Z", + "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", + "modified": "2021-01-13T01:50:52.125Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.138Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4b7e3417-b018-4659-b1a5-18682a2a0415", - "modified": "2021-01-06T18:28:42.138Z", + "created": "2021-01-13T01:50:52.126Z", + "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", + "modified": "2021-01-13T01:50:52.126Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.139Z", - "description": "Continuous Monitoring", - "id": "relationship--5bb7c08d-c7d2-4ccd-9931-c901723dae01", - "modified": "2021-01-06T18:28:42.139Z", + "created": "2021-01-13T01:50:52.126Z", + "id": "relationship--66b560a7-2f9d-42c6-b84a-4885138c9345", + "modified": "2021-01-13T01:50:52.126Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.140Z", - "description": "Information System Monitoring", - "id": "relationship--76bece35-7fc5-44ce-af0e-9ec8450eb0f9", - "modified": "2021-01-06T18:28:42.140Z", + "created": "2021-01-13T01:50:52.127Z", + "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", + "modified": "2021-01-13T01:50:52.127Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--6560dc0c-0419-4446-8a9f-8e05c2e02878", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.128Z", + "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", + "modified": "2021-01-13T01:50:52.128Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--ca7d2b37-5886-407a-87c7-dd944e97536f", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9d52fded-a63a-455b-83ae-13a99535d208", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.141Z", - "description": "Account Management, Seperation of Duties, Least Privilege", - "id": "relationship--a4365e87-b8e0-4fc8-a4b6-d95c722190b6", - "modified": "2021-01-06T18:28:42.141Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--1f8d1b91-39d0-4ac6-bfc6-7bb11a2bc904", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.143Z", - "description": "Authenticator Management", - "id": "relationship--33c431ce-ac1b-47d3-b841-4ce178cfb132", - "modified": "2021-01-06T18:28:42.143Z", + "created": "2021-01-13T01:50:52.129Z", + "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", + "modified": "2021-01-13T01:50:52.129Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--7b211ac6-c815-4189-93a9-ab415deca926", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.130Z", + "id": "relationship--d16e6235-9854-4154-aca7-805870a6377d", + "modified": "2021-01-13T01:50:52.130Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--c851c0ed-93db-436f-980f-92c2804c5101", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.145Z", - "description": "Account Mangement", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:42.145Z", + "created": "2021-01-13T01:50:52.131Z", + "id": "relationship--3223a69c-7210-4635-9710-1c156e3acd05", + "modified": "2021-01-13T01:50:52.131Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--feadcf2c-3e34-42e0-8656-072cbb8bfdb4", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.132Z", + "id": "relationship--30ace806-b402-4791-80b6-be4b95d5ec05", + "modified": "2021-01-13T01:50:52.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--7c424e1f-0a3c-4e4a-a377-4248e094229e", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.132Z", + "id": "relationship--50a1ea3d-2c02-4eb3-8e92-d49fdccaaea5", + "modified": "2021-01-13T01:50:52.132Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.133Z", + "id": "relationship--a0fb55d4-f6da-467a-8b79-993443fb1381", + "modified": "2021-01-13T01:50:52.133Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--ddf35094-bca9-4025-89df-f4b8a7134cb5", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.146Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--55dae45a-e184-4c66-8901-12d8c9755229", - "modified": "2021-01-06T18:28:42.146Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--e311c7c6-e417-4789-9be8-e25b97d3ba01", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.134Z", + "id": "relationship--01a5b6dc-d3d8-4df4-b517-39cc4b7de0d1", + "modified": "2021-01-13T01:50:52.134Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.135Z", + "id": "relationship--4308bf35-e51f-43e0-bc6c-d98387b2f634", + "modified": "2021-01-13T01:50:52.135Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--ea0dddbb-29f0-4963-9011-0358f603691c", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--57c4d00f-215d-4bfc-960f-14ca2b51ce92", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--1d105256-8872-4dc3-9ce0-398b7c23fd4a", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--669f8711-5259-4fda-ad9e-5bd3264ec48a", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--ca3d8bd9-50f2-4f48-aa29-e3f4557d5a1b", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.136Z", + "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", + "modified": "2021-01-13T01:50:52.136Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.147Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:42.147Z", + "created": "2021-01-13T01:50:52.137Z", + "id": "relationship--c7e1f691-3c76-472a-8c7f-c0bd3af82867", + "modified": "2021-01-13T01:50:52.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--2906cc3f-d2ad-43e7-9cbd-9ca43d745ddb", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.137Z", + "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", + "modified": "2021-01-13T01:50:52.137Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--475a723a-8911-4310-b0fa-5006dc4cfaa9", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--564dac92-4957-4602-b388-444c88c1dff2", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.148Z", - "description": "Continuous Monitoring", - "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:42.148Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--eb6b7524-07ab-4b7e-84a4-572951c22d3e", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.149Z", - "description": "Continuous Monitoring", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:42.149Z", + "created": "2021-01-13T01:50:52.138Z", + "id": "relationship--c005cfee-1f92-46b8-a160-4cd10ca9d162", + "modified": "2021-01-13T01:50:52.138Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.139Z", + "id": "relationship--d37d5b85-d800-478e-aa96-d5514de3f2b0", + "modified": "2021-01-13T01:50:52.139Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.140Z", + "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", + "modified": "2021-01-13T01:50:52.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.140Z", + "id": "relationship--ddc5772f-2633-48cb-85ac-43e8978b4f4d", + "modified": "2021-01-13T01:50:52.140Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.150Z", - "description": "Information System Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.150Z", + "created": "2021-01-13T01:50:52.141Z", + "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", + "modified": "2021-01-13T01:50:52.141Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.142Z", + "id": "relationship--9a6ef947-ae54-47d3-8b81-b7dd64e40aa9", + "modified": "2021-01-13T01:50:52.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.142Z", + "id": "relationship--c913b693-7175-4860-9983-ac50fad7eb94", + "modified": "2021-01-13T01:50:52.142Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.151Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", - "modified": "2021-01-06T18:28:42.151Z", + "created": "2021-01-13T01:50:52.143Z", + "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", + "modified": "2021-01-13T01:50:52.143Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.152Z", - "description": "Development Process, Standards, and Tools", - "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", - "modified": "2021-01-06T18:28:42.152Z", + "created": "2021-01-13T01:50:52.143Z", + "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", + "modified": "2021-01-13T01:50:52.143Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.144Z", + "id": "relationship--b78fd120-51d6-409f-862a-d8a79097cf7f", + "modified": "2021-01-13T01:50:52.144Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.144Z", + "id": "relationship--25ed50bb-64f4-41b9-966b-28a5ea0cc346", + "modified": "2021-01-13T01:50:52.144Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.145Z", + "id": "relationship--18e8f5c2-ff62-4b3e-bd6a-ae0c94a5e4de", + "modified": "2021-01-13T01:50:52.145Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--b9439b32-09d4-4b46-a3d6-9038b994be97", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--833ad9fe-b919-4db5-84c3-06c5917120f6", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--26f73a02-49ca-4a72-8e4e-5de059fa8f3d", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.153Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:42.153Z", + "created": "2021-01-13T01:50:52.146Z", + "id": "relationship--915f43e5-9f93-4df9-a6b5-064045ec0bdc", + "modified": "2021-01-13T01:50:52.146Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.154Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:42.154Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--6c6912de-b200-439b-b35c-2c9355d9c4d1", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.154Z", - "description": "Account Mangement", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:42.154Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--1e56982a-0654-4c10-a279-522a945a052d", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--b36714b7-00a3-4659-8944-08721014135e", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--8ee4a0af-e82e-463a-9839-284202a3acc5", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--d3a18251-6481-43fa-bd34-3f8a8b311a10", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.155Z", - "description": "Infromation in Shared Resources, Cryptographic Key Establishment and Management, Protection of Information at Rest", - "id": "relationship--cad76945-39de-4368-9d37-95ee72a3d5d8", - "modified": "2021-01-06T18:28:42.155Z", + "created": "2021-01-13T01:50:52.147Z", + "id": "relationship--cda31037-1e64-4b1a-910f-19a39287cae1", + "modified": "2021-01-13T01:50:52.147Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.156Z", - "description": "Continuous Monitoring", - "id": "relationship--ee81c111-769f-4424-9721-adae7beada5b", - "modified": "2021-01-06T18:28:42.156Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--7ddbf77f-cc7e-4db1-b218-112778301aba", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.157Z", - "description": "Information System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.157Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--41b76c48-d1a4-4eb0-9ac1-ad5905bb50d9", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.158Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:42.158Z", + "created": "2021-01-13T01:50:52.148Z", + "id": "relationship--7df8a729-2157-449f-b9b7-ccbc17ccada3", + "modified": "2021-01-13T01:50:52.148Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.158Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:42.158Z", + "created": "2021-01-13T01:50:52.149Z", + "id": "relationship--1e736b30-2e2c-41d4-9935-63c1d3af961f", + "modified": "2021-01-13T01:50:52.149Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--8ff44d11-ec3b-4ed2-8f63-d3f30904d04d", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.150Z", + "id": "relationship--4c684ae9-5632-4134-a3d3-d74b309a0d2c", + "modified": "2021-01-13T01:50:52.150Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--69406761-87e6-4220-a614-ab028ed18a65", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.150Z", + "id": "relationship--6bdc7325-a702-4621-9ae3-fc3572af1af1", + "modified": "2021-01-13T01:50:52.150Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.159Z", - "description": "Continuous Monitoring", - "id": "relationship--c764917a-a83b-424d-8c81-3d7fb6b1f635", - "modified": "2021-01-06T18:28:42.159Z", + "created": "2021-01-13T01:50:52.151Z", + "id": "relationship--03df46e3-7212-4538-881b-b1f21952c1a8", + "modified": "2021-01-13T01:50:52.151Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--6ec71e08-7ca0-4cfc-b926-d760a3f952ec", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.151Z", + "id": "relationship--b0dbfd34-e1e0-49e8-9b36-5221babc51d5", + "modified": "2021-01-13T01:50:52.151Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--ee9ee26f-12fa-47f6-b595-ad490c647f07", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.152Z", + "id": "relationship--f37cf613-5234-413e-9e59-7efae6213eef", + "modified": "2021-01-13T01:50:52.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.160Z", - "description": "Information System Monitoring", - "id": "relationship--3d24cfb7-4c8e-42f8-81fa-79de8ef37b87", - "modified": "2021-01-06T18:28:42.160Z", + "created": "2021-01-13T01:50:52.152Z", + "id": "relationship--3edbc631-2138-48ce-a87a-d6ab0c393170", + "modified": "2021-01-13T01:50:52.152Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--d74a517c-2f5b-479a-b57c-2255bf9d9007", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--42be3081-0b6b-4ea4-8bfa-c86abf3f8c51", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.161Z", - "description": "Authenticator Management", - "id": "relationship--1218a126-7456-4784-97ea-f27c5a3c80f9", - "modified": "2021-01-06T18:28:42.161Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1a80d097-54df-41d8-9d33-34e755ec5e72", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.162Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--bc5174bc-781a-4133-ad05-a0728060149c", - "modified": "2021-01-06T18:28:42.162Z", + "created": "2021-01-13T01:50:52.153Z", + "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", + "modified": "2021-01-13T01:50:52.153Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.162Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--3ee28ea9-028c-4d12-8606-b2c7456bd29c", - "modified": "2021-01-06T18:28:42.162Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--0069e16f-842f-4b68-a2c4-7ffb26320985", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--895e8018-64ec-46b9-b988-1a6a8f4807fa", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--9924d109-4830-4993-af8d-22c81a20ff81", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c83a1a89-6cac-4f82-b5b2-21479298030f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--afff91fd-9b6c-4154-8d52-1cc026813460", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a9f2b409-71fd-4bad-bbed-c48e76db578f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.154Z", + "id": "relationship--30483162-5c4e-4eac-835f-689b0a9d1629", + "modified": "2021-01-13T01:50:52.154Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e5937d94-3a67-4941-b0b4-1ec793977a8d", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.155Z", + "id": "relationship--4df66e23-65d1-4b96-ac43-3f111e39c44d", + "modified": "2021-01-13T01:50:52.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--139d8a79-d5c6-4e62-846f-846d0be96a51", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.155Z", + "id": "relationship--bd3ce4ce-b308-41d9-8f94-54cdfcec9b5f", + "modified": "2021-01-13T01:50:52.155Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.163Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--45fa44ae-f529-4b40-950c-27611ddbf32f", - "modified": "2021-01-06T18:28:42.163Z", + "created": "2021-01-13T01:50:52.156Z", + "id": "relationship--6d4bc4fc-a9eb-4312-9a1d-13c576c1fdbc", + "modified": "2021-01-13T01:50:52.156Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--41ba0bd1-e872-4daa-a1bd-ed7d4f880db8", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.156Z", + "id": "relationship--a45eb61f-a1d2-4b66-9e23-a2492ad76c9e", + "modified": "2021-01-13T01:50:52.156Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--73bbee58-fa63-490f-bd3a-1ce90d3d4efc", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.164Z", - "description": "Continuous Monitoring", - "id": "relationship--45216264-01c8-4b5f-aab7-e646162716da", - "modified": "2021-01-06T18:28:42.164Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--817a1938-6477-4cf6-985a-dcf79f9de4e0", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.165Z", - "description": "Continuous Monitoring", - "id": "relationship--b13e9efb-053b-4700-8b9f-f2bca142919f", - "modified": "2021-01-06T18:28:42.165Z", + "created": "2021-01-13T01:50:52.157Z", + "id": "relationship--3a747d82-f2bf-4cec-bd46-83f302a528ab", + "modified": "2021-01-13T01:50:52.157Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--79f59189-919d-4999-b0f8-5b421bcf3045", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.158Z", + "id": "relationship--ee67353b-489f-4143-9b80-a64f890edc43", + "modified": "2021-01-13T01:50:52.158Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e2444ad2-7132-429a-9f66-2f49076043ca", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.158Z", + "id": "relationship--b6b36a39-5457-4517-a49d-67d268ad4e0e", + "modified": "2021-01-13T01:50:52.158Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.166Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d7105a2d-260f-4305-9702-f7b0b08f27da", - "modified": "2021-01-06T18:28:42.166Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4accda5f-bb2a-436a-bedf-42b8a64d7b6a", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--c8a5692a-4923-48ef-9dc5-d6d1bdb253df", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.159Z", + "id": "relationship--bcd84feb-0476-4b46-bb38-b62ed52920ec", + "modified": "2021-01-13T01:50:52.159Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.160Z", + "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", + "modified": "2021-01-13T01:50:52.160Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.160Z", + "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", + "modified": "2021-01-13T01:50:52.160Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.167Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", - "modified": "2021-01-06T18:28:42.167Z", + "created": "2021-01-13T01:50:52.161Z", + "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", + "modified": "2021-01-13T01:50:52.161Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.168Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", - "modified": "2021-01-06T18:28:42.168Z", + "created": "2021-01-13T01:50:52.161Z", + "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", + "modified": "2021-01-13T01:50:52.161Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--45646a67-651a-41eb-bcbd-1678c2fef299", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--b3be3766-2c4d-426e-9cf8-b7df36492a95", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--4f374a36-611f-4fda-bfb6-8d6fce634215", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.162Z", + "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", + "modified": "2021-01-13T01:50:52.162Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--12646806-2981-416b-ba44-c7a56d249cd3", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--a45ba5a6-2fab-48af-aa2f-80c2aa08e04f", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--2c3e83b8-9140-47e2-b744-340a107dbde6", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.169Z", - "description": "Account Management, Access Enforcement", - "id": "relationship--005d51dd-a94d-4cf4-8c04-361068f9836e", - "modified": "2021-01-06T18:28:42.169Z", + "created": "2021-01-13T01:50:52.163Z", + "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", + "modified": "2021-01-13T01:50:52.163Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--8fc11ac4-8e55-47d1-b860-486ca6901684", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.170Z", - "description": "Authenticator Management, ", - "id": "relationship--e0ce7619-4c16-4a1e-ae0c-d276086b7ed6", - "modified": "2021-01-06T18:28:42.170Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Authenticator Management, ", - "id": "relationship--d4b0c3a7-9800-40e8-b6b8-2f6c30ac438d", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.164Z", + "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", + "modified": "2021-01-13T01:50:52.164Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.171Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:42.171Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.172Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d2b7f990-b7b1-470e-9aea-de681d15fff0", - "modified": "2021-01-06T18:28:42.172Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.172Z", - "description": "Identification and Authentication (Organizational Users), Authenticator Management", - "id": "relationship--d8b5b412-2495-416f-9235-b60f12225143", - "modified": "2021-01-06T18:28:42.172Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.173Z", - "description": "Remote Access", - "id": "relationship--9b218471-c7fc-4450-8ad7-85d373aca775", - "modified": "2021-01-06T18:28:42.173Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.174Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--e65e36db-218a-44b1-96bf-b6ee1ab9d371", - "modified": "2021-01-06T18:28:42.174Z", + "created": "2021-01-13T01:50:52.165Z", + "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", + "modified": "2021-01-13T01:50:52.165Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.174Z", - "description": "Cryptographic Key Establishment and Managment, Session Authenticity", - "id": "relationship--946ffb9b-c4e0-4b1c-8717-223f1f9d10da", - "modified": "2021-01-06T18:28:42.174Z", + "created": "2021-01-13T01:50:52.166Z", + "id": "relationship--e8c74f70-331b-4e64-b233-3c02d7252ded", + "modified": "2021-01-13T01:50:52.166Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.167Z", + "id": "relationship--79976f25-c1ce-4bce-bdde-bfaed5b67000", + "modified": "2021-01-13T01:50:52.167Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.168Z", + "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", + "modified": "2021-01-13T01:50:52.168Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.169Z", + "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", + "modified": "2021-01-13T01:50:52.169Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.175Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.175Z", + "created": "2021-01-13T01:50:52.169Z", + "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", + "modified": "2021-01-13T01:50:52.169Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.176Z", - "description": "Continuous Monitoring", - "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", - "modified": "2021-01-06T18:28:42.176Z", + "created": "2021-01-13T01:50:52.170Z", + "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", + "modified": "2021-01-13T01:50:52.170Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.176Z", - "description": "Continuous Monitoring", - "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", - "modified": "2021-01-06T18:28:42.176Z", + "created": "2021-01-13T01:50:52.170Z", + "id": "relationship--9faaca0e-7c9c-4377-803a-79da99a04838", + "modified": "2021-01-13T01:50:52.170Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.177Z", - "description": "Information System Monitoring", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.177Z", + "created": "2021-01-13T01:50:52.171Z", + "id": "relationship--0135791d-ca0b-4942-b396-e3d06f42b4f7", + "modified": "2021-01-13T01:50:52.171Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.177Z", - "description": "Information System Monitoring", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.177Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--4dc55b27-a816-4ddf-b975-3cbf4b17f61c", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.178Z", - "description": "Boundary Protection", - "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", - "modified": "2021-01-06T18:28:42.178Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--d6d93e52-d749-449f-81b0-73152d35a89d", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.178Z", - "description": "Boundary Protection", - "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", - "modified": "2021-01-06T18:28:42.178Z", + "created": "2021-01-13T01:50:52.172Z", + "id": "relationship--7a59dfea-55af-48db-a375-d20eb9006d88", + "modified": "2021-01-13T01:50:52.172Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.179Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:42.179Z", + "created": "2021-01-13T01:50:52.173Z", + "id": "relationship--a894baa2-6c08-43a0-9b4c-2cbad220817b", + "modified": "2021-01-13T01:50:52.173Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.174Z", + "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", + "modified": "2021-01-13T01:50:52.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.174Z", + "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", + "modified": "2021-01-13T01:50:52.174Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.180Z", - "description": "Information Flow Enforcement, Least Privilege", - "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.180Z", + "created": "2021-01-13T01:50:52.175Z", + "id": "relationship--83dff653-d0ef-425e-8a62-4cf8dbb54b8c", + "modified": "2021-01-13T01:50:52.175Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.181Z", - "description": "Protection of Information at Rest", - "id": "relationship--4ee26bb0-a756-412d-b0d5-a6753d5a2fd0", - "modified": "2021-01-06T18:28:42.181Z", + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--659f98c1-b177-4107-9f64-c8ba54d0adff", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.181Z", - "description": "Protection of Information at Rest", - "id": "relationship--a259ae15-0471-42f0-80b5-f2c34a0dffbd", - "modified": "2021-01-06T18:28:42.181Z", + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--bd313706-7394-44f0-a5b1-c4e413819d47", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.182Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.182Z", + "created": "2021-01-13T01:50:52.176Z", + "id": "relationship--0a3ba214-5334-4ee3-9093-ac475d8ed917", + "modified": "2021-01-13T01:50:52.176Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.182Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.182Z", + "created": "2021-01-13T01:50:52.177Z", + "id": "relationship--b114fc5c-97a7-42b8-b869-3bc75192d966", + "modified": "2021-01-13T01:50:52.177Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.183Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:42.183Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--f5e596a5-5a52-4ad2-8b18-525ef2467e06", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.183Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:42.183Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--1b68f161-ee8b-4b63-97d5-88eca415ba8b", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.178Z", + "id": "relationship--00f751f7-fef0-4d08-984c-eae6a2eb09ca", + "modified": "2021-01-13T01:50:52.178Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.179Z", + "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", + "modified": "2021-01-13T01:50:52.179Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.180Z", + "id": "relationship--fa7d6d15-d3eb-42ae-8295-c2b2b294d0b5", + "modified": "2021-01-13T01:50:52.180Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.180Z", + "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", + "modified": "2021-01-13T01:50:52.180Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.181Z", + "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", + "modified": "2021-01-13T01:50:52.181Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.184Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.184Z", + "created": "2021-01-13T01:50:52.182Z", + "id": "relationship--85f534a5-c129-4756-bf6f-52ece7b86a30", + "modified": "2021-01-13T01:50:52.182Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.185Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.185Z", + "created": "2021-01-13T01:50:52.182Z", + "id": "relationship--a15c236f-62e8-498e-aa09-69e0583b633b", + "modified": "2021-01-13T01:50:52.182Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.183Z", + "id": "relationship--aba1f45c-d565-4cad-9f72-1a588efefdb4", + "modified": "2021-01-13T01:50:52.183Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.184Z", + "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", + "modified": "2021-01-13T01:50:52.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.186Z", - "description": "Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:42.186Z", + "created": "2021-01-13T01:50:52.184Z", + "id": "relationship--106f8bdd-dd31-480d-b42d-a8113b80129b", + "modified": "2021-01-13T01:50:52.184Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.185Z", + "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", + "modified": "2021-01-13T01:50:52.185Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.186Z", + "id": "relationship--716ef7f8-9062-4510-a90e-6cbd74ec147a", + "modified": "2021-01-13T01:50:52.186Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.187Z", - "description": "Least Privilege", - "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.187Z", + "created": "2021-01-13T01:50:52.187Z", + "id": "relationship--8b37cf53-18e5-4d50-95be-849b625795c2", + "modified": "2021-01-13T01:50:52.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.187Z", + "id": "relationship--b50dcf63-c9ea-48e0-9a73-19cac615deae", + "modified": "2021-01-13T01:50:52.187Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.188Z", + "id": "relationship--04cc86c0-8251-4d1a-81ec-26e82c792dbe", + "modified": "2021-01-13T01:50:52.188Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.188Z", - "description": "Identification and Authentication (Organizational Users)", - "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.188Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--46e29c11-dd8e-4342-8f14-dd3890168249", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.189Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57943a3f-e28c-4a6e-9da4-ee60e478938c", - "modified": "2021-01-06T18:28:42.189Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--0d6247ec-a4b2-443a-945b-89e59d7ff4b8", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.189Z", + "id": "relationship--38c7d2fa-b4b5-476b-bca6-3064cd07dff6", + "modified": "2021-01-13T01:50:52.189Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.190Z", + "id": "relationship--a39eabdb-9d30-45c3-9a79-168ff565e94b", + "modified": "2021-01-13T01:50:52.190Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.191Z", + "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", + "modified": "2021-01-13T01:50:52.191Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.191Z", + "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", + "modified": "2021-01-13T01:50:52.191Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--0ac849a7-c3d6-4d2d-a1af-7760a86eaba6", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--756dd64b-b687-4937-9055-d1ea983bab1c", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--e22a31ba-571a-4ced-8554-9237a48c2069", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.192Z", + "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", + "modified": "2021-01-13T01:50:52.192Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f5c81e99-17c5-49e9-a5ea-af519ad2940e", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.193Z", + "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", + "modified": "2021-01-13T01:50:52.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.190Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--af780919-8470-4cf6-a2cf-08ce99d9fe81", - "modified": "2021-01-06T18:28:42.190Z", + "created": "2021-01-13T01:50:52.193Z", + "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", + "modified": "2021-01-13T01:50:52.193Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--bbaf0ef2-47ff-4b35-a6ac-482836040274", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.194Z", + "id": "relationship--8b89b6a4-5cf7-40d3-9958-f3c1b183d327", + "modified": "2021-01-13T01:50:52.194Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6add2ab5-2711-4e9d-87c8-7a0be8531530", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.194Z", + "id": "relationship--bf0359c6-0a3d-4074-a80a-f276f09f7dca", + "modified": "2021-01-13T01:50:52.194Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.191Z", - "description": "OS Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.191Z", + "created": "2021-01-13T01:50:52.195Z", + "id": "relationship--c13fc9cf-c643-4f78-84f1-b005797eef39", + "modified": "2021-01-13T01:50:52.195Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.192Z", - "description": "OS Monitoring", - "id": "relationship--dc6658cb-dece-4d5e-9420-8c56bc0f2af2", - "modified": "2021-01-06T18:28:42.192Z", + "created": "2021-01-13T01:50:52.196Z", + "id": "relationship--4f6e7e6a-fa8d-4bcb-899a-3c3b9aee6ea1", + "modified": "2021-01-13T01:50:52.196Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1644e709-12d2-41e5-a60f-3470991f5011", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.193Z", - "description": "Wireless Access", - "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", - "modified": "2021-01-06T18:28:42.193Z", + "created": "2021-01-13T01:50:52.196Z", + "id": "relationship--b93db89e-d7f3-4090-9e13-b808180ea5e5", + "modified": "2021-01-13T01:50:52.196Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.193Z", - "description": "Wireless Access", - "id": "relationship--03748d46-f602-4c3b-99f6-50f10523b76e", - "modified": "2021-01-06T18:28:42.193Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--a1ebc826-bacf-4fc1-91a6-7a78cc1f2617", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--f9031f11-7d3f-4479-84fd-a1ed2edf8a56", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dc6b8663-f6d7-4ef9-8209-7e24b861ecb2", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.197Z", + "id": "relationship--efa1b48d-0146-4305-8d84-4a9bf2410c62", + "modified": "2021-01-13T01:50:52.197Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--6e0c98b4-a834-4e0a-b564-a2ba5b812f9d", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.198Z", + "id": "relationship--7db4206d-baf3-4610-951a-593307ccc407", + "modified": "2021-01-13T01:50:52.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.194Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--291317f4-8d40-44e1-92f3-1d1fbc6a0a92", - "modified": "2021-01-06T18:28:42.194Z", + "created": "2021-01-13T01:50:52.198Z", + "id": "relationship--91b07aa5-5bf8-48ea-bd89-16ef29af9d3a", + "modified": "2021-01-13T01:50:52.198Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.195Z", - "description": "OS Monitoring", - "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", - "modified": "2021-01-06T18:28:42.195Z", + "created": "2021-01-13T01:50:52.199Z", + "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", + "modified": "2021-01-13T01:50:52.199Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.195Z", - "description": "OS Monitoring", - "id": "relationship--4e34f824-2a85-4488-ac68-5e22b03625cd", - "modified": "2021-01-06T18:28:42.195Z", + "created": "2021-01-13T01:50:52.200Z", + "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", + "modified": "2021-01-13T01:50:52.200Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.196Z", - "description": "Session Management", - "id": "relationship--61554426-e695-4d8c-8c4f-f45bafc89620", - "modified": "2021-01-06T18:28:42.196Z", + "created": "2021-01-13T01:50:52.200Z", + "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", + "modified": "2021-01-13T01:50:52.200Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.196Z", - "description": "Session Management", - "id": "relationship--bd86956e-644a-496e-8092-0b960dcd42f3", - "modified": "2021-01-06T18:28:42.196Z", + "created": "2021-01-13T01:50:52.201Z", + "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", + "modified": "2021-01-13T01:50:52.201Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.197Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.197Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.197Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", - "modified": "2021-01-06T18:28:42.197Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.198Z", - "description": "OS Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.198Z", + "created": "2021-01-13T01:50:52.202Z", + "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", + "modified": "2021-01-13T01:50:52.202Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.203Z", + "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", + "modified": "2021-01-13T01:50:52.203Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.200Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", - "modified": "2021-01-06T18:28:42.200Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.201Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", - "modified": "2021-01-06T18:28:42.201Z", + "created": "2021-01-13T01:50:52.204Z", + "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", + "modified": "2021-01-13T01:50:52.204Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.202Z", - "description": "OS Monitoring", - "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", - "modified": "2021-01-06T18:28:42.202Z", + "created": "2021-01-13T01:50:52.205Z", + "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", + "modified": "2021-01-13T01:50:52.205Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--17111b97-41fc-47b6-bf50-628039cdfbee", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--84b41bc2-e627-44b1-9fcd-bafaea79adbb", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ce144bc0-dbf5-4394-ab77-9f2c7e997865", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--205410c9-5678-4da5-aed1-e441dabe6a7f", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--259b3709-2537-4aa6-8e7b-13278b0a3fa4", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--926a2141-93a7-4701-8ef4-0ddedffe3524", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--3b84179d-56fd-4063-8224-4c6da43ba029", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.206Z", + "id": "relationship--0658ea34-5653-4b75-9abc-3c9bd5e4f87d", + "modified": "2021-01-13T01:50:52.206Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.203Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9bdacd2e-287d-4693-9cd5-c3be3e3d17f7", - "modified": "2021-01-06T18:28:42.203Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--101e3ac0-5d85-4d84-be31-01b4d6094b98", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.204Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f361c62a-f274-487e-963b-c9c99360e15e", - "modified": "2021-01-06T18:28:42.204Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--c3c58d0b-c6fe-40e4-85f8-b225e7c0834d", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.204Z", - "description": "OS Monitoring", - "id": "relationship--ab57f38d-9d46-4cc8-bdb2-0931fb31a12b", - "modified": "2021-01-06T18:28:42.204Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--d51d701d-49d0-4070-a9ee-8c5a5fd213b1", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--72b74d71-8169-42aa-92e0-e7b04b9f5a08", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.205Z", - "description": "OS Monitoring", - "id": "relationship--355be5bc-4c61-4dca-adbe-77d6902f904d", - "modified": "2021-01-06T18:28:42.205Z", + "created": "2021-01-13T01:50:52.207Z", + "id": "relationship--bf3cfdf2-8bb7-47b5-80ed-4158ee217728", + "modified": "2021-01-13T01:50:52.207Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--21875073-b0ee-49e3-9077-1e2a885359af", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.205Z", - "description": "OS Monitoring", - "id": "relationship--d566b1c6-3cd8-4db8-b717-bd7923800fb1", - "modified": "2021-01-06T18:28:42.205Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--a41f1685-6cc6-4380-ad18-2988e6f66016", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--25659dd6-ea12-45c4-97e6-381e3e4b593e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.206Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", - "modified": "2021-01-06T18:28:42.206Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--dc51fa06-b389-4c38-94b1-da97beed1485", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.206Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ee24380d-4a93-402d-aa2d-afb94464f7d9", - "modified": "2021-01-06T18:28:42.206Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--509465fe-c9b5-460a-8b57-a24f3f2b0f7d", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.207Z", - "description": "Media Use", - "id": "relationship--348dd7e3-8a6a-4230-9606-a2f4008b223e", - "modified": "2021-01-06T18:28:42.207Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--b7499dd7-3d7b-4436-a75d-5c82e01ea06e", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.208Z", - "description": "OS Monitoring", - "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", - "modified": "2021-01-06T18:28:42.208Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--394821f8-8909-43ff-a27d-ddbcfb4498ee", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.209Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:42.209Z", + "created": "2021-01-13T01:50:52.208Z", + "id": "relationship--4593c77c-3e20-45cb-88fd-beba003791cf", + "modified": "2021-01-13T01:50:52.208Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.209Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", - "modified": "2021-01-06T18:28:42.209Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--90994318-85bf-4aa8-86fb-9cbb8c57f510", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.210Z", - "description": "OS Monitoring", - "id": "relationship--10fe7e70-6f16-424e-b57c-e52dca75baf8", - "modified": "2021-01-06T18:28:42.210Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--0d2d2d15-44cb-48c5-9263-3524e02c821e", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.211Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--7b60d6fd-4171-420d-b201-02c601d14b1a", - "modified": "2021-01-06T18:28:42.211Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--02afe20c-b23d-4f56-a4b5-753a98c1d3f9", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.211Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--630a91a9-0c50-401e-9995-231813f23149", - "modified": "2021-01-06T18:28:42.211Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--8361180b-f6a1-4acf-94d0-af776da035b5", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.212Z", - "description": "OS Monitoring", - "id": "relationship--1158a6c3-8449-4514-b46e-7e51a84f004f", - "modified": "2021-01-06T18:28:42.212Z", + "created": "2021-01-13T01:50:52.209Z", + "id": "relationship--2d263b34-e4d0-42da-88d9-a093945816e3", + "modified": "2021-01-13T01:50:52.209Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3489cfc5-640f-4bb3-a103-9137b97de79f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--907a90d2-e608-4cad-9f98-008530820e80", + "modified": "2021-01-13T01:50:52.210Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--e8cc2a82-97f0-41d4-ac27-4a365bc346d7", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--43dd1118-2711-4c50-843c-461250da3cb9", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--5b6bec73-f2ab-43b7-9a71-ed899a4ecf93", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.213Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", - "modified": "2021-01-06T18:28:42.213Z", + "created": "2021-01-13T01:50:52.210Z", + "id": "relationship--95703a3f-137c-418b-83f1-01c8ef58182f", + "modified": "2021-01-13T01:50:52.210Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.214Z", - "description": "OS Monitoring", - "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", - "modified": "2021-01-06T18:28:42.214Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--9d3c8de5-957c-4ef9-9f50-2b6a9cce4914", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.214Z", - "description": "OS Monitoring", - "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", - "modified": "2021-01-06T18:28:42.214Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--5e8614a4-a1f7-4175-9144-0fd2a3b01cfc", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.215Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", - "modified": "2021-01-06T18:28:42.215Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--3fad893d-3b75-4f47-ba90-33b585bf02d8", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.215Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", - "modified": "2021-01-06T18:28:42.215Z", + "created": "2021-01-13T01:50:52.211Z", + "id": "relationship--7804c993-c6a4-4c65-8ed5-89faaf0f4468", + "modified": "2021-01-13T01:50:52.211Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.216Z", - "description": "OS Monitoring", - "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", - "modified": "2021-01-06T18:28:42.216Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--ca7af652-15ac-4218-9c3f-7f0432e880f7", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.217Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", - "modified": "2021-01-06T18:28:42.217Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--850f496f-89a2-41d9-9d58-134b087aa55f", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.217Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--66b560a7-2f9d-42c6-b84a-4885138c9345", - "modified": "2021-01-06T18:28:42.217Z", + "created": "2021-01-13T01:50:52.212Z", + "id": "relationship--8832310c-4254-4c74-9ce9-1ba4bd9d0f7b", + "modified": "2021-01-13T01:50:52.212Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.218Z", - "description": "OS Monitoring", - "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", - "modified": "2021-01-06T18:28:42.218Z", + "created": "2021-01-13T01:50:52.213Z", + "id": "relationship--9963b42b-b82c-44e4-abba-163e750d0698", + "modified": "2021-01-13T01:50:52.213Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.219Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:42.219Z", + "created": "2021-01-13T01:50:52.214Z", + "id": "relationship--78c4d691-1b6d-43e6-8624-dc05e1e75385", + "modified": "2021-01-13T01:50:52.214Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.220Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", - "modified": "2021-01-06T18:28:42.220Z", + "created": "2021-01-13T01:50:52.215Z", + "id": "relationship--e0d451f9-ab93-4b54-9c8d-e864b174348a", + "modified": "2021-01-13T01:50:52.215Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.221Z", - "description": "OS Monitoring", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:42.221Z", + "created": "2021-01-13T01:50:52.215Z", + "id": "relationship--65617ae7-992a-448f-b72a-c87249f35f87", + "modified": "2021-01-13T01:50:52.215Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.222Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--1f8d1b91-39d0-4ac6-bfc6-7bb11a2bc904", - "modified": "2021-01-06T18:28:42.222Z", + "created": "2021-01-13T01:50:52.216Z", + "id": "relationship--b7eebe0f-4317-4580-8cee-bf2949891e40", + "modified": "2021-01-13T01:50:52.216Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.222Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", - "modified": "2021-01-06T18:28:42.222Z", + "created": "2021-01-13T01:50:52.217Z", + "id": "relationship--6617855c-ecb1-4070-b9f7-94699cde85c3", + "modified": "2021-01-13T01:50:52.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.224Z", - "description": "OS Monitoring", - "id": "relationship--d16e6235-9854-4154-aca7-805870a6377d", - "modified": "2021-01-06T18:28:42.224Z", + "created": "2021-01-13T01:50:52.217Z", + "id": "relationship--de0e93dd-2223-4177-a9d9-7ece5637d97b", + "modified": "2021-01-13T01:50:52.217Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.218Z", + "id": "relationship--81402d3d-db55-424d-8728-458642ee4209", + "modified": "2021-01-13T01:50:52.218Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c851c0ed-93db-436f-980f-92c2804c5101", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--79692160-46a5-4805-ab7e-619936f7aae7", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.225Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--cb4f834a-b773-473d-bbf9-ea58c0fbbc0a", - "modified": "2021-01-06T18:28:42.225Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--12726305-6b8e-4a35-843a-28cc06d2d6ad", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.219Z", + "id": "relationship--8d9a2eb4-cd2e-408c-a32a-a9054b18d43a", + "modified": "2021-01-13T01:50:52.219Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--3223a69c-7210-4635-9710-1c156e3acd05", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.220Z", + "id": "relationship--e91d76a2-2192-4b94-a442-4c2b1f9a8ad3", + "modified": "2021-01-13T01:50:52.220Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.226Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--30ace806-b402-4791-80b6-be4b95d5ec05", - "modified": "2021-01-06T18:28:42.226Z", + "created": "2021-01-13T01:50:52.221Z", + "id": "relationship--d11bdff9-191a-49b4-aa61-c3bba49969c1", + "modified": "2021-01-13T01:50:52.221Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.222Z", + "id": "relationship--ee4cd162-18dc-4f3f-9cbc-d8265c85c82a", + "modified": "2021-01-13T01:50:52.222Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--50a1ea3d-2c02-4eb3-8e92-d49fdccaaea5", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.223Z", + "id": "relationship--b3190077-d0d4-479a-9bf4-1b9e9d1ee218", + "modified": "2021-01-13T01:50:52.223Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6831414d-bb70-42b7-8030-d4e06b2660c9", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.228Z", - "description": "OS Monitoring", - "id": "relationship--2004dcd1-87e8-486b-9f20-dcd8b72152d0", - "modified": "2021-01-06T18:28:42.228Z", + "created": "2021-01-13T01:50:52.223Z", + "id": "relationship--faa76961-bece-4984-ab80-7de29c83c3b8", + "modified": "2021-01-13T01:50:52.223Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1365fe3b-0f50-455d-b4da-266ce31c23b0", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.229Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--a0fb55d4-f6da-467a-8b79-993443fb1381", - "modified": "2021-01-06T18:28:42.229Z", + "created": "2021-01-13T01:50:52.224Z", + "id": "relationship--af443bae-f605-4c63-bbb1-b2f4a0aa3827", + "modified": "2021-01-13T01:50:52.224Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.224Z", + "id": "relationship--4e661cac-a53a-41e1-884e-7ee31afb19d1", + "modified": "2021-01-13T01:50:52.224Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ddf35094-bca9-4025-89df-f4b8a7134cb5", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.225Z", + "id": "relationship--0a05e54b-54e1-4cdf-85e6-1fbdd75acd5e", + "modified": "2021-01-13T01:50:52.225Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.230Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:42.230Z", + "created": "2021-01-13T01:50:52.226Z", + "id": "relationship--3a6cdfcb-853f-4acb-bcd5-d053f11bdca8", + "modified": "2021-01-13T01:50:52.226Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.232Z", - "description": "Information at Rest Protection", - "id": "relationship--01a5b6dc-d3d8-4df4-b517-39cc4b7de0d1", - "modified": "2021-01-06T18:28:42.232Z", + "created": "2021-01-13T01:50:52.227Z", + "id": "relationship--138d57b3-1a10-4679-a9d2-ac983b351a1e", + "modified": "2021-01-13T01:50:52.227Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.232Z", - "description": "Information at Rest Protection", - "id": "relationship--94cedcec-070f-40d0-b871-083a943d8dd8", - "modified": "2021-01-06T18:28:42.232Z", + "created": "2021-01-13T01:50:52.227Z", + "id": "relationship--0c12ece3-5e08-44d4-93f4-a0a0fb2f5b97", + "modified": "2021-01-13T01:50:52.227Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.233Z", - "description": "OS Monitoring", - "id": "relationship--4308bf35-e51f-43e0-bc6c-d98387b2f634", - "modified": "2021-01-06T18:28:42.233Z", + "created": "2021-01-13T01:50:52.228Z", + "id": "relationship--d2007a89-ca1e-4e1e-be82-ba960f20b0c2", + "modified": "2021-01-13T01:50:52.228Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8187bd2a-866f-4457-9009-86b0ddedffa3", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.233Z", - "description": "OS Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.233Z", + "created": "2021-01-13T01:50:52.228Z", + "id": "relationship--be4c4e9d-cf76-4098-bb7d-bdc3bba49468", + "modified": "2021-01-13T01:50:52.228Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--57c4d00f-215d-4bfc-960f-14ca2b51ce92", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.229Z", + "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", + "modified": "2021-01-13T01:50:52.229Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.230Z", + "id": "relationship--ed52af34-8079-4d58-a228-409d64c484a1", + "modified": "2021-01-13T01:50:52.230Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.235Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ca3d8bd9-50f2-4f48-aa29-e3f4557d5a1b", - "modified": "2021-01-06T18:28:42.235Z", + "created": "2021-01-13T01:50:52.232Z", + "id": "relationship--6b759ca0-2ccb-47f4-bbc2-d43b2d0500f9", + "modified": "2021-01-13T01:50:52.232Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.236Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", - "modified": "2021-01-06T18:28:42.236Z", + "created": "2021-01-13T01:50:52.233Z", + "id": "relationship--d3d0b1cc-1865-4e78-b204-5c1364416db3", + "modified": "2021-01-13T01:50:52.233Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.237Z", - "description": "OS Monitoring", - "id": "relationship--c7e1f691-3c76-472a-8c7f-c0bd3af82867", - "modified": "2021-01-06T18:28:42.237Z", + "created": "2021-01-13T01:50:52.234Z", + "id": "relationship--89d3d0c0-9f16-40b2-9b9a-5a9253287d80", + "modified": "2021-01-13T01:50:52.234Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.237Z", - "description": "OS Monitoring", - "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", - "modified": "2021-01-06T18:28:42.237Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--16395758-b36a-4176-aa09-9855e0e2ab6f", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--23001653-29d5-4d89-86d6-db0c615dfc9a", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--8d626ddc-9f57-4bd3-b65e-99d3fc1b64b8", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--564dac92-4957-4602-b388-444c88c1dff2", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.235Z", + "id": "relationship--016734bf-da5f-48a7-81e0-a0813320d0f6", + "modified": "2021-01-13T01:50:52.235Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--eb6b7524-07ab-4b7e-84a4-572951c22d3e", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--46b61c11-f515-4b48-9ad4-fe7eb2a23a83", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.238Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--c005cfee-1f92-46b8-a160-4cd10ca9d162", - "modified": "2021-01-06T18:28:42.238Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--dcfe2c71-ecd1-4333-bdce-bac119a42371", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.239Z", - "description": "OS Monitoring", - "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:42.239Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--f7a1611f-9ad8-4a6b-a583-8d375f81d150", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.239Z", - "description": "OS Monitoring", - "id": "relationship--d37d5b85-d800-478e-aa96-d5514de3f2b0", - "modified": "2021-01-06T18:28:42.239Z", + "created": "2021-01-13T01:50:52.236Z", + "id": "relationship--7d9a698f-32fb-4553-af6c-e8dcde45fd65", + "modified": "2021-01-13T01:50:52.236Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.240Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", - "modified": "2021-01-06T18:28:42.240Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--72b3c822-3c63-4609-8568-d817963bd20f", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.241Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--ddc5772f-2633-48cb-85ac-43e8978b4f4d", - "modified": "2021-01-06T18:28:42.241Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--27bca785-3919-4c97-b09d-fbc57bbe35aa", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.242Z", - "description": "OS Monitoring", - "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", - "modified": "2021-01-06T18:28:42.242Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--4591e76e-80af-4dc0-b919-2c1e60d85aa1", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.243Z", - "description": "Session Management", - "id": "relationship--9a6ef947-ae54-47d3-8b81-b7dd64e40aa9", - "modified": "2021-01-06T18:28:42.243Z", + "created": "2021-01-13T01:50:52.237Z", + "id": "relationship--6d5dd55e-2d60-418a-92e3-04e627b97668", + "modified": "2021-01-13T01:50:52.237Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1c820dc6-9014-4abe-97e6-b6950f42d1b9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.243Z", - "description": "Session Management", - "id": "relationship--c913b693-7175-4860-9983-ac50fad7eb94", - "modified": "2021-01-06T18:28:42.243Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--ed65be15-cac0-477c-ac7c-8f98beccdaa6", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.244Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.244Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--7fd6f13f-f973-4b0e-8ebd-600549d4a1d6", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.244Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", - "modified": "2021-01-06T18:28:42.244Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--bc00957c-9101-4688-8092-4ac5b10b03a3", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.246Z", - "description": "OS Monitoring", - "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", - "modified": "2021-01-06T18:28:42.246Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.247Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--b78fd120-51d6-409f-862a-d8a79097cf7f", - "modified": "2021-01-06T18:28:42.247Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--0071bd17-6e52-44e1-881c-f831c9c5bd01", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.247Z", - "description": "OS Configuration, Least Functionality", - "id": "relationship--25ed50bb-64f4-41b9-966b-28a5ea0cc346", - "modified": "2021-01-06T18:28:42.247Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--a5a4314a-77a3-4670-91e7-54eecca41599", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.248Z", - "description": "OS Monitoring", - "id": "relationship--18e8f5c2-ff62-4b3e-bd6a-ae0c94a5e4de", - "modified": "2021-01-06T18:28:42.248Z", + "created": "2021-01-13T01:50:52.238Z", + "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", + "modified": "2021-01-13T01:50:52.238Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.250Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b9439b32-09d4-4b46-a3d6-9038b994be97", - "modified": "2021-01-06T18:28:42.250Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--833ad9fe-b919-4db5-84c3-06c5917120f6", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--f65afa24-ff21-4d40-a73d-af6952dae371", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--26f73a02-49ca-4a72-8e4e-5de059fa8f3d", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--915f43e5-9f93-4df9-a6b5-064045ec0bdc", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--6c6912de-b200-439b-b35c-2c9355d9c4d1", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.239Z", + "id": "relationship--0b3e32f8-cd34-472e-8080-f7364ac76afc", + "modified": "2021-01-13T01:50:52.239Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--1e56982a-0654-4c10-a279-522a945a052d", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--1b401738-22af-4ede-aff9-248e542063ab", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.251Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b36714b7-00a3-4659-8944-08721014135e", - "modified": "2021-01-06T18:28:42.251Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--5e7d7c5b-bb26-4322-a875-a588af21a11d", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.252Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--d3a18251-6481-43fa-bd34-3f8a8b311a10", - "modified": "2021-01-06T18:28:42.252Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--45411518-e996-4522-a01b-079fc8fefe20", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.252Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--cda31037-1e64-4b1a-910f-19a39287cae1", - "modified": "2021-01-06T18:28:42.252Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--b804d387-7c1b-4d4e-afe4-ba238ff8a54f", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--7ddbf77f-cc7e-4db1-b218-112778301aba", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--887ac699-df70-4526-bd59-d9a7cbfde7e0", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--41b76c48-d1a4-4eb0-9ac1-ad5905bb50d9", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--0872277f-485c-47f3-bd5d-855e82159650", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.254Z", - "description": "Distributed Storage and Processing", - "id": "relationship--7df8a729-2157-449f-b9b7-ccbc17ccada3", - "modified": "2021-01-06T18:28:42.254Z", + "created": "2021-01-13T01:50:52.240Z", + "id": "relationship--f121fcf4-8469-446a-ba28-a0afccd8d24b", + "modified": "2021-01-13T01:50:52.240Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.255Z", - "description": "Remote Access Management", - "id": "relationship--1e736b30-2e2c-41d4-9935-63c1d3af961f", - "modified": "2021-01-06T18:28:42.255Z", + "created": "2021-01-13T01:50:52.241Z", + "id": "relationship--34c1968f-1fc2-43c3-bf72-f32be194269e", + "modified": "2021-01-13T01:50:52.241Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7f8a2c05-5c75-44b1-bb55-be020cbe28c2", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.256Z", - "description": "Configuration Settings", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.256Z", + "created": "2021-01-13T01:50:52.241Z", + "id": "relationship--eb2fde71-ce15-4b13-bb91-7b54252d400c", + "modified": "2021-01-13T01:50:52.241Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.257Z", - "description": "Certificate Management", - "id": "relationship--4c684ae9-5632-4134-a3d3-d74b309a0d2c", - "modified": "2021-01-06T18:28:42.257Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.257Z", - "description": "Certificate Management", - "id": "relationship--6bdc7325-a702-4621-9ae3-fc3572af1af1", - "modified": "2021-01-06T18:28:42.257Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--1d5ba857-5d37-4f2c-8f81-970936ecaf71", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--03df46e3-7212-4538-881b-b1f21952c1a8", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--b0dbfd34-e1e0-49e8-9b36-5221babc51d5", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.242Z", + "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", + "modified": "2021-01-13T01:50:52.242Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.258Z", - "description": "Remote Storage and Processing, Information Backup", - "id": "relationship--f37cf613-5234-413e-9e59-7efae6213eef", - "modified": "2021-01-06T18:28:42.258Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--0c09fa88-d242-4604-8521-382f09d90e1d", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.259Z", - "description": "Distributed Storage", - "id": "relationship--3edbc631-2138-48ce-a87a-d6ab0c393170", - "modified": "2021-01-06T18:28:42.259Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--6d4fd787-38a5-45b6-b707-e5e72aa6723a", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.260Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", - "modified": "2021-01-06T18:28:42.260Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--0462058c-3dc4-4ce8-ab85-ce0e9d193c0b", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.260Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", - "modified": "2021-01-06T18:28:42.260Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--058c626a-3a2b-42fe-aeb2-08df5248366a", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.261Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.261Z", + "created": "2021-01-13T01:50:52.244Z", + "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", + "modified": "2021-01-13T01:50:52.244Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.261Z", - "description": "Baseline Configuration, Configuration Management", - "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", - "modified": "2021-01-06T18:28:42.261Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--0069e16f-842f-4b68-a2c4-7ffb26320985", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--9924d109-4830-4993-af8d-22c81a20ff81", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.245Z", + "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", + "modified": "2021-01-13T01:50:52.245Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--afff91fd-9b6c-4154-8d52-1cc026813460", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--d23f21d3-a8d7-4e19-ba4a-acc986d3f540", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--30483162-5c4e-4eac-835f-689b0a9d1629", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--22d65ece-6e8b-4fa0-8125-e7351ec9aeb6", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--5dd14ce3-963c-4cd5-b43d-e5f2c8c63e82", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--ea5ac750-2761-46f2-8b11-533eb205c029", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--d04e9039-585a-4452-a5db-27ac3415da8a", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.247Z", + "id": "relationship--b4a2177e-1717-4ea6-b436-5c2acfcb3efe", + "modified": "2021-01-13T01:50:52.247Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.262Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--4df66e23-65d1-4b96-ac43-3f111e39c44d", - "modified": "2021-01-06T18:28:42.262Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--e2b8bb6c-554a-474d-94b9-d27ee01dc3e3", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Remote Storage and Processing, System Backup, System Recovery", - "id": "relationship--bd3ce4ce-b308-41d9-8f94-54cdfcec9b5f", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--cc154a5e-f425-4ca7-87c2-9f879f605dcd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Distributed Storage", - "id": "relationship--6d4bc4fc-a9eb-4312-9a1d-13c576c1fdbc", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--3dd10dad-e61d-4cea-ad70-82b2bc46debd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.263Z", - "description": "Distributed Storage", - "id": "relationship--a45eb61f-a1d2-4b66-9e23-a2492ad76c9e", - "modified": "2021-01-06T18:28:42.263Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--7b37a7e8-4a0e-414a-b847-a792c80166e8", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8f5d9e77-2dcb-4a0f-9d46-56023fb65d11", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--aad167b4-c7b7-48bb-90c0-878e1cd5ff48", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--817a1938-6477-4cf6-985a-dcf79f9de4e0", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.249Z", + "id": "relationship--e69e69cd-8e13-474e-a761-91d3c42ebbfd", + "modified": "2021-01-13T01:50:52.249Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.265Z", - "description": "Information Flow Enforcement", - "id": "relationship--3a747d82-f2bf-4cec-bd46-83f302a528ab", - "modified": "2021-01-06T18:28:42.265Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--5edea047-9fdd-4c21-b75a-1fc2efdf36f1", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--56bf67dd-b855-4f4e-8edc-0c47d1c8f7f6", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.266Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:42.266Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--90a05fb9-e79e-4852-90eb-513aed0b32c8", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ee67353b-489f-4143-9b80-a64f890edc43", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--e0e6ca5e-dd06-4f28-a13a-d6a072db53cd", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1c133d73-c163-40d6-9bce-02b9a1b5d682", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--b0415e04-af35-41ce-924b-0e6b4093ce5e", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.267Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b6b36a39-5457-4517-a49d-67d268ad4e0e", - "modified": "2021-01-06T18:28:42.267Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--c2e6c2fa-4cbd-485b-a63e-60e9d298a97a", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--e0bb22bd-6485-455d-ba34-f34d29bb1bca", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--c8a5692a-4923-48ef-9dc5-d6d1bdb253df", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.250Z", + "id": "relationship--54c7e164-481b-4089-a1e7-e4740c75fd29", + "modified": "2021-01-13T01:50:52.250Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.268Z", - "description": "Subnetworks, Access Control", - "id": "relationship--bcd84feb-0476-4b46-bb38-b62ed52920ec", - "modified": "2021-01-06T18:28:42.268Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--351fa0f8-63fe-4ca0-9556-36d6cd8ab2f1", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.270Z", - "description": "Information Flow Enforcement", - "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", - "modified": "2021-01-06T18:28:42.270Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.270Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.270Z", + "created": "2021-01-13T01:50:52.251Z", + "id": "relationship--987032b6-f6b0-44a4-b45a-aa2dc21ee94b", + "modified": "2021-01-13T01:50:52.251Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.271Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", - "modified": "2021-01-06T18:28:42.271Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--15874212-3850-4ee4-b895-0516ddbb87a5", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.272Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", - "modified": "2021-01-06T18:28:42.272Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--f0f8c427-002a-43ee-847e-e7d177f44be4", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--d1da2416-1794-46e7-880b-cc3ebf6da5f2", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--b95b17a7-0221-44d9-883f-bd06d061863e", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--12e66fbe-50af-4cca-b779-39dd23fa5a4a", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.273Z", - "description": "Information Flow Enforcement", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.273Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--62ec0a84-a2fb-492e-be70-bbc90a4340aa", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--05e21240-8a90-4c2b-ac68-928841906ab8", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--549c9581-8913-48c7-a2ef-c7b69a820ff6", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.252Z", + "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", + "modified": "2021-01-13T01:50:52.252Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--ba016b07-af04-428b-84c0-3bcb85c69fef", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--6ec6f180-9b6a-4b12-902b-f9e70c92f4c5", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.274Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.274Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--6efab994-ab5f-4970-873b-f79fd2ede037", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.275Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.275Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--50af1c79-48dd-476c-a903-f3bd1e3fa978", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.275Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.275Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--2120f2f9-3e57-4199-9043-033ec37ca540", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--03f2f429-625d-44bd-a7a1-4836b9f8556d", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--e573d3fb-77c6-497d-9b8f-0b4cd50701a9", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.276Z", - "description": "Subnetworks, Access Control", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.276Z", + "created": "2021-01-13T01:50:52.253Z", + "id": "relationship--8c1fa586-feed-4a08-8f77-ec56a0bef82b", + "modified": "2021-01-13T01:50:52.253Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.277Z", - "description": "Information Flow Enforcement", - "id": "relationship--4e6e1431-a073-4bd4-ab5e-26ae185b9990", - "modified": "2021-01-06T18:28:42.277Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--d0888772-9ea7-45a2-b0c4-54cd38491843", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.278Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4273f000-2462-42ac-9b95-889ef8d9a290", - "modified": "2021-01-06T18:28:42.278Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--3d774e3c-d459-410f-af4f-0ceafde47465", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.278Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e8c74f70-331b-4e64-b233-3c02d7252ded", - "modified": "2021-01-06T18:28:42.278Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--0ff87b2f-aba3-4fe7-ae30-29196026ecf5", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.279Z", - "description": "Subnetworks, Access Control", - "id": "relationship--79976f25-c1ce-4bce-bdde-bfaed5b67000", - "modified": "2021-01-06T18:28:42.279Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--70b30aad-9c68-465d-af77-38fe46856f85", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.280Z", - "description": "Information Flow Enforcement", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.280Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--c6849a43-57dd-4f24-b299-2c3c8467a455", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.281Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.281Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--25f971f3-d721-432a-9e76-5ca966b5b01e", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.281Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.281Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--a8eaeb54-228a-4df9-a250-ce36c7a3e1db", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.282Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.282Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--7bf27d7e-57b7-4459-b410-c10e201632f3", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.283Z", - "description": "Information Flow Enforcement", - "id": "relationship--9faaca0e-7c9c-4377-803a-79da99a04838", - "modified": "2021-01-06T18:28:42.283Z", + "created": "2021-01-13T01:50:52.254Z", + "id": "relationship--57bb0afd-1098-4197-ac8c-5d35a6a1f897", + "modified": "2021-01-13T01:50:52.254Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.284Z", - "description": "Information Flow Enforcement", - "id": "relationship--0135791d-ca0b-4942-b396-e3d06f42b4f7", - "modified": "2021-01-06T18:28:42.284Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--addcf52d-f17e-4289-9992-6e4b7c477b83", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--57443f3f-9ee5-49da-a0ac-fa2bfddd9d14", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--c4c45097-be29-440d-a6d9-14b3a91ed990", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--15727435-53c7-4f1d-9ea0-38192c2a3aa9", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--001ec63c-877a-44b7-bdc5-34cbf3407cc9", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.285Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--77eb46f5-38f1-4be7-a802-5f4e231f683e", - "modified": "2021-01-06T18:28:42.285Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--ddee43df-5a03-4904-9cfd-36f00cd1c323", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.286Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--4dc55b27-a816-4ddf-b975-3cbf4b17f61c", - "modified": "2021-01-06T18:28:42.286Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--6e8eb5eb-efa4-4ecf-a8b6-c3a5c0f7e98a", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.286Z", - "description": "Subnetworks, Access Control", - "id": "relationship--d6d93e52-d749-449f-81b0-73152d35a89d", - "modified": "2021-01-06T18:28:42.286Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--67efa85f-7d12-4dfa-a675-e87f7bd8fde2", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a10641f4-87b4-45a3-a906-92a149cb2c27", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.287Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7a59dfea-55af-48db-a375-d20eb9006d88", - "modified": "2021-01-06T18:28:42.287Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--3b113689-1d2b-4fd3-a7d6-49a2a9703689", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.288Z", - "description": "Information Flow Enforcement", - "id": "relationship--a894baa2-6c08-43a0-9b4c-2cbad220817b", - "modified": "2021-01-06T18:28:42.288Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--5e8b16f1-c944-4da2-8e56-d26d9261d936", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.288Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", - "modified": "2021-01-06T18:28:42.288Z", + "created": "2021-01-13T01:50:52.255Z", + "id": "relationship--ac420a1d-0110-4001-8a3c-8077fb2e8b3d", + "modified": "2021-01-13T01:50:52.255Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.289Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", - "modified": "2021-01-06T18:28:42.289Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--a1743fdf-ce15-438e-97b8-f9c9059a4a2a", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.290Z", - "description": "Subnetworks, Access Control", - "id": "relationship--83dff653-d0ef-425e-8a62-4cf8dbb54b8c", - "modified": "2021-01-06T18:28:42.290Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--06f50d1b-dcf8-40df-92fb-0730e57df9f9", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--659f98c1-b177-4107-9f64-c8ba54d0adff", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.256Z", + "id": "relationship--fe27ff45-a365-4fcf-b434-ca21c1b8efef", + "modified": "2021-01-13T01:50:52.256Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--bd313706-7394-44f0-a5b1-c4e413819d47", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--9c2be0e2-7aed-4b89-886c-a337556bf96e", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.291Z", - "description": "Information Flow Enforcement", - "id": "relationship--0a3ba214-5334-4ee3-9093-ac475d8ed917", - "modified": "2021-01-06T18:28:42.291Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--18ab6cff-8536-4f1b-935c-2b36ebb946b5", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--e9e85de8-0ef0-4cef-8a71-a5bdaa700f90", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--862d26b7-c8ee-440d-968c-f440e0c15598", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--d3ffb3eb-783d-4d33-b0d6-316795427011", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--3a6c957a-41e0-4bb4-a58c-800ac55341f2", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--21bba895-644b-4642-b581-79e8a00988d3", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--4c5f77c3-a5aa-4607-9797-81f1a4ed2bda", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b114fc5c-97a7-42b8-b869-3bc75192d966", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--d3f7436b-6bc1-4d70-9926-d451aa3e8061", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--60d13458-f1e4-47ab-be80-510200a36944", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--019ae8a6-bb58-44e5-86ed-c41f3b8dd512", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.292Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--dfeeda93-0e07-47de-b987-4247a543840b", - "modified": "2021-01-06T18:28:42.292Z", + "created": "2021-01-13T01:50:52.257Z", + "id": "relationship--bb7914da-87b9-4990-9109-dd797408db6c", + "modified": "2021-01-13T01:50:52.257Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f5e596a5-5a52-4ad2-8b18-525ef2467e06", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--dd7a7e63-495a-4958-8da5-463471dd1c7b", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--1b68f161-ee8b-4b63-97d5-88eca415ba8b", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.293Z", - "description": "Subnetworks, Access Control", - "id": "relationship--00f751f7-fef0-4d08-984c-eae6a2eb09ca", - "modified": "2021-01-06T18:28:42.293Z", + "created": "2021-01-13T01:50:52.258Z", + "id": "relationship--121446f8-7ec6-42cb-b5a4-5c90755c5323", + "modified": "2021-01-13T01:50:52.258Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.294Z", - "description": "Information Flow Enforcement", - "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", - "modified": "2021-01-06T18:28:42.294Z", + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--fe6cb028-781d-458b-8449-19aa6c335f68", + "modified": "2021-01-13T01:50:52.259Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.295Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--915c6e8a-eaac-4498-bba8-7efdbe2ebb89", - "modified": "2021-01-06T18:28:42.295Z", + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--86806f96-c8eb-4f34-b509-41d35a3732bd", + "modified": "2021-01-13T01:50:52.259Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.295Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--fa7d6d15-d3eb-42ae-8295-c2b2b294d0b5", - "modified": "2021-01-06T18:28:42.295Z", + "created": "2021-01-13T01:50:52.259Z", + "id": "relationship--8cac841f-f70a-4d73-9e50-3eca52983f44", + "modified": "2021-01-13T01:50:52.259Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.296Z", - "description": "Subnetworks, Access Control, DMZ", - "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", - "modified": "2021-01-06T18:28:42.296Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.298Z", - "description": "Information Flow Enforcement", - "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", - "modified": "2021-01-06T18:28:42.298Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--d07cb403-7e0e-49b3-8dd9-563a2b4738c0", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.299Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--85f534a5-c129-4756-bf6f-52ece7b86a30", - "modified": "2021-01-06T18:28:42.299Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--2f956918-f292-48c2-b5e5-c59d81ab163e", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.299Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a15c236f-62e8-498e-aa09-69e0583b633b", - "modified": "2021-01-06T18:28:42.299Z", + "created": "2021-01-13T01:50:52.260Z", + "id": "relationship--4264f9ac-6ba0-4fdd-8631-b2ed5f73c3c4", + "modified": "2021-01-13T01:50:52.260Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.300Z", - "description": "Subnetworks, Access Control", - "id": "relationship--aba1f45c-d565-4cad-9f72-1a588efefdb4", - "modified": "2021-01-06T18:28:42.300Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--7e1aa134-48c8-4f3d-9737-1a983acae532", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.301Z", - "description": "Information Flow Enforcement", - "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", - "modified": "2021-01-06T18:28:42.301Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--14dcd170-665a-4d81-b2b9-9ae800c714cb", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.302Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:42.302Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--42621f22-e716-4d3a-8676-523ca3827467", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.303Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--106f8bdd-dd31-480d-b42d-a8113b80129b", - "modified": "2021-01-06T18:28:42.303Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--e41643f8-5dcb-4858-b4b6-a75077fabed1", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.304Z", - "description": "Subnetworks, Access Control", - "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", - "modified": "2021-01-06T18:28:42.304Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--0596a023-f3e9-438a-90cc-36d6c443c3f7", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.305Z", - "description": "Information Flow Enforcement", - "id": "relationship--716ef7f8-9062-4510-a90e-6cbd74ec147a", - "modified": "2021-01-06T18:28:42.305Z", + "created": "2021-01-13T01:50:52.261Z", + "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", + "modified": "2021-01-13T01:50:52.261Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.306Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8b37cf53-18e5-4d50-95be-849b625795c2", - "modified": "2021-01-06T18:28:42.306Z", + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--a4203a21-1348-4098-842f-e3e9db65631a", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.306Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b50dcf63-c9ea-48e0-9a73-19cac615deae", - "modified": "2021-01-06T18:28:42.306Z", + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--c19bbe12-fec5-43a7-b2bc-741df9971d3c", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.307Z", - "description": "Subnetworks, Access Control", - "id": "relationship--04cc86c0-8251-4d1a-81ec-26e82c792dbe", - "modified": "2021-01-06T18:28:42.307Z", + "created": "2021-01-13T01:50:52.262Z", + "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", + "modified": "2021-01-13T01:50:52.262Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.308Z", - "description": "Information Flow Enforcement", - "id": "relationship--46e29c11-dd8e-4342-8f14-dd3890168249", - "modified": "2021-01-06T18:28:42.308Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--ea311c0f-1e58-484e-b768-bfffb5f12859", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.309Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--0d6247ec-a4b2-443a-945b-89e59d7ff4b8", - "modified": "2021-01-06T18:28:42.309Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--4e2f364a-70f4-4247-bfe2-89c7276dc838", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.309Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--38c7d2fa-b4b5-476b-bca6-3064cd07dff6", - "modified": "2021-01-06T18:28:42.309Z", + "created": "2021-01-13T01:50:52.263Z", + "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", + "modified": "2021-01-13T01:50:52.263Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.310Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a39eabdb-9d30-45c3-9a79-168ff565e94b", - "modified": "2021-01-06T18:28:42.310Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--5c67f13a-e054-4277-b53b-21780062ede6", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.312Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.312Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--a87f3537-7823-4df6-8c4c-13d4c414fb41", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.312Z", - "description": "Information Flow Enforcement", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.312Z", + "created": "2021-01-13T01:50:52.264Z", + "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", + "modified": "2021-01-13T01:50:52.264Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--2745aa77-8f11-4032-b6ca-3c035883799f", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--bc19ffdf-480b-4ac0-85b1-7c6684bc190e", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--9a09fe50-851a-4dd1-b5e6-742c864901b9", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.313Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.313Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--ea695177-3d1a-478a-ac6e-409bc7c7d127", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.314Z", - "description": "Subnetworks, Access Control", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.314Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--b3a195ef-b7a2-4777-bc54-223e82efbd34", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.314Z", - "description": "Subnetworks, Access Control", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.314Z", + "created": "2021-01-13T01:50:52.265Z", + "id": "relationship--d6772b48-d18e-4bcc-aa06-692b5e9243b1", + "modified": "2021-01-13T01:50:52.265Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.315Z", - "description": "Information Flow Enforcement", - "id": "relationship--8b89b6a4-5cf7-40d3-9958-f3c1b183d327", - "modified": "2021-01-06T18:28:42.315Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--f00bb6ed-d855-4dc9-b6ab-1152bfcf9ff9", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.316Z", - "description": "Information Flow Enforcement", - "id": "relationship--bf0359c6-0a3d-4074-a80a-f276f09f7dca", - "modified": "2021-01-06T18:28:42.316Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--45f5cbae-09d5-4d59-b660-572cfc6bb3bc", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.266Z", + "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", + "modified": "2021-01-13T01:50:52.266Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.267Z", + "id": "relationship--81d5e977-0f8a-4098-851e-affb9f5c5043", + "modified": "2021-01-13T01:50:52.267Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--84a1897e-5040-4624-83a7-699d775d03f6", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.268Z", + "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", + "modified": "2021-01-13T01:50:52.268Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.317Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--c13fc9cf-c643-4f78-84f1-b005797eef39", - "modified": "2021-01-06T18:28:42.317Z", + "created": "2021-01-13T01:50:52.270Z", + "id": "relationship--bfe626b9-4bca-409d-accb-bcd6d8fd80ae", + "modified": "2021-01-13T01:50:52.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.318Z", - "description": "Subnetworks, Access Control", - "id": "relationship--4f6e7e6a-fa8d-4bcb-899a-3c3b9aee6ea1", - "modified": "2021-01-06T18:28:42.318Z", + "created": "2021-01-13T01:50:52.270Z", + "id": "relationship--97f009cf-5851-463b-86bc-bf0fad9c5471", + "modified": "2021-01-13T01:50:52.270Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.318Z", - "description": "Subnetworks, Access Control", - "id": "relationship--b93db89e-d7f3-4090-9e13-b808180ea5e5", - "modified": "2021-01-06T18:28:42.318Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--4547e117-96b1-43eb-b24d-c733a3999630", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.319Z", - "description": "Information Flow Enforcement", - "id": "relationship--a1ebc826-bacf-4fc1-91a6-7a78cc1f2617", - "modified": "2021-01-06T18:28:42.319Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--6614de33-6206-403f-8320-1135819108a0", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.319Z", - "description": "Information Flow Enforcement", - "id": "relationship--f9031f11-7d3f-4479-84fd-a1ed2edf8a56", - "modified": "2021-01-06T18:28:42.319Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--bd65d6f3-4d23-4085-9c9a-79c3f2832077", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.272Z", + "id": "relationship--05503e1b-690c-45ad-a406-7c3adf631791", + "modified": "2021-01-13T01:50:52.272Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--efa1b48d-0146-4305-8d84-4a9bf2410c62", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.273Z", + "id": "relationship--9964dce1-809c-457c-93fa-58bc4bd13685", + "modified": "2021-01-13T01:50:52.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.320Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--7db4206d-baf3-4610-951a-593307ccc407", - "modified": "2021-01-06T18:28:42.320Z", + "created": "2021-01-13T01:50:52.273Z", + "id": "relationship--198cdcae-b821-4dc0-8446-0290b12cf23a", + "modified": "2021-01-13T01:50:52.273Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.321Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--91b07aa5-5bf8-48ea-bd89-16ef29af9d3a", - "modified": "2021-01-06T18:28:42.321Z", + "created": "2021-01-13T01:50:52.274Z", + "id": "relationship--351dca53-f74b-4b0f-9774-63807ff9366c", + "modified": "2021-01-13T01:50:52.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.321Z", - "description": "Subnetworks, Access Control", - "id": "relationship--79d9b629-1142-491d-8c59-9a483c48b27f", - "modified": "2021-01-06T18:28:42.321Z", + "created": "2021-01-13T01:50:52.274Z", + "id": "relationship--1e162577-5dce-4340-a148-f2aed348eb84", + "modified": "2021-01-13T01:50:52.274Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.322Z", - "description": "Subnetworks, Access Control", - "id": "relationship--a8392b76-f186-42d1-ad40-faed9db91282", - "modified": "2021-01-06T18:28:42.322Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--ba675e68-23d8-4f8b-a5f2-60f7b2a9431b", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--1d649f4b-7d3a-4795-9a55-99cefedd8342", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--3fed03cf-3ac9-47ed-97a6-c732f7f0f107", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.323Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", - "modified": "2021-01-06T18:28:42.323Z", + "created": "2021-01-13T01:50:52.276Z", + "id": "relationship--34753ae2-4df5-45d7-83e8-39f133f20c59", + "modified": "2021-01-13T01:50:52.276Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.324Z", - "description": "Subnetworks, Access Control", - "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", - "modified": "2021-01-06T18:28:42.324Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--34a31ef7-f8a7-4a70-ac0c-5bfdbdfdd7ef", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.325Z", - "description": "Information Flow Enforcement", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.325Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--0ff35e04-8563-46bf-8471-807436d50fed", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.326Z", - "description": "Information Flow Enforcement", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.326Z", + "created": "2021-01-13T01:50:52.278Z", + "id": "relationship--4e157ead-7205-4155-80bc-1c3314f5539a", + "modified": "2021-01-13T01:50:52.278Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.326Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.326Z", + "created": "2021-01-13T01:50:52.279Z", + "id": "relationship--386177c8-ee60-45be-a6ae-a6744e07320e", + "modified": "2021-01-13T01:50:52.279Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.280Z", + "id": "relationship--c7656489-d8f8-4ede-bfcf-b4f7630dd730", + "modified": "2021-01-13T01:50:52.280Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.281Z", + "id": "relationship--bfe31c80-ed18-4b1b-bd33-6aa696f29756", + "modified": "2021-01-13T01:50:52.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.281Z", + "id": "relationship--3617e630-9e0c-40a7-ba68-744463bb4ea4", + "modified": "2021-01-13T01:50:52.281Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.282Z", + "id": "relationship--e5a474d2-872c-49c3-a3ed-fa6f50751e79", + "modified": "2021-01-13T01:50:52.282Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.283Z", + "id": "relationship--b39d58a0-b2be-40b5-906d-d8a1f1054bd3", + "modified": "2021-01-13T01:50:52.283Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.327Z", - "description": "Network Configuration, Endpoint Restrictions", - "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", - "modified": "2021-01-06T18:28:42.327Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--9a10458f-d56c-4069-a2be-0183fc275b31", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.328Z", - "description": "Subnetworks, Access Control", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.328Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--cdf8fe03-60ec-484d-85f3-fa6547ec8a24", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.328Z", - "description": "Subnetworks, Access Control", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.328Z", + "created": "2021-01-13T01:50:52.284Z", + "id": "relationship--31a2c80e-7260-4359-9f95-9935e8e2622d", + "modified": "2021-01-13T01:50:52.284Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.329Z", - "description": "Subnetworks, Access Control", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.329Z", + "created": "2021-01-13T01:50:52.285Z", + "id": "relationship--d37cf295-3395-4721-ba31-4a619d378bbf", + "modified": "2021-01-13T01:50:52.285Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--84b41bc2-e627-44b1-9fcd-bafaea79adbb", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--c90e2ee4-3515-4ca8-a5bd-7f1954f739e8", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--205410c9-5678-4da5-aed1-e441dabe6a7f", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--097d7cbd-b4fa-4e27-a391-d27e156ede4d", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--926a2141-93a7-4701-8ef4-0ddedffe3524", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.286Z", + "id": "relationship--93ff2e57-f059-4883-87cd-61cfb9931c1c", + "modified": "2021-01-13T01:50:52.286Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.330Z", - "description": "Continuous Monitoring", - "id": "relationship--0658ea34-5653-4b75-9abc-3c9bd5e4f87d", - "modified": "2021-01-06T18:28:42.330Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--c00a1dda-54d4-4bb9-a831-4034c0946023", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--101e3ac0-5d85-4d84-be31-01b4d6094b98", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--6b3ca4c3-f441-4be7-b0b1-f123393dee2c", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--c3c58d0b-c6fe-40e4-85f8-b225e7c0834d", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--edb39ddb-4643-4efb-89b0-589fca22f62d", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.331Z", - "description": "Information Flow Enforcement", - "id": "relationship--d51d701d-49d0-4070-a9ee-8c5a5fd213b1", - "modified": "2021-01-06T18:28:42.331Z", + "created": "2021-01-13T01:50:52.287Z", + "id": "relationship--d6ab41c8-6da2-4ce5-99ed-fc943bb77693", + "modified": "2021-01-13T01:50:52.287Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.332Z", - "description": "Information Flow Enforcement", - "id": "relationship--bf3cfdf2-8bb7-47b5-80ed-4158ee217728", - "modified": "2021-01-06T18:28:42.332Z", + "created": "2021-01-13T01:50:52.288Z", + "id": "relationship--869b95ed-f93f-471e-97bd-d92ad5d3b174", + "modified": "2021-01-13T01:50:52.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a41f1685-6cc6-4380-ad18-2988e6f66016", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.288Z", + "id": "relationship--b824bd88-8e67-4908-afa0-300742dcc4c5", + "modified": "2021-01-13T01:50:52.288Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--dc51fa06-b389-4c38-94b1-da97beed1485", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--504f7983-ae71-4b44-8803-15baedefef18", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--509465fe-c9b5-460a-8b57-a24f3f2b0f7d", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--f5e5c532-08c8-4d9f-b783-623417f4cda8", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.333Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b7499dd7-3d7b-4436-a75d-5c82e01ea06e", - "modified": "2021-01-06T18:28:42.333Z", + "created": "2021-01-13T01:50:52.289Z", + "id": "relationship--22552045-c6f3-4386-99fd-2c1833912975", + "modified": "2021-01-13T01:50:52.289Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--394821f8-8909-43ff-a27d-ddbcfb4498ee", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--21859c9a-fe90-46dd-a484-9ad952347581", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4593c77c-3e20-45cb-88fd-beba003791cf", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--3066c361-c15e-409f-878d-237b697fa9a0", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--90994318-85bf-4aa8-86fb-9cbb8c57f510", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--30c674f7-7be6-4f30-86ec-b22acc9bbbb3", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.334Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0d2d2d15-44cb-48c5-9263-3524e02c821e", - "modified": "2021-01-06T18:28:42.334Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--e8418da1-8e76-413b-ad39-313f3b67c2fc", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.335Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--02afe20c-b23d-4f56-a4b5-753a98c1d3f9", - "modified": "2021-01-06T18:28:42.335Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--f7374030-13bf-4310-a45c-41850bfe46f4", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--8361180b-f6a1-4acf-94d0-af776da035b5", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.290Z", + "id": "relationship--36e93395-4c78-43cc-bd7e-50677fa6fab0", + "modified": "2021-01-13T01:50:52.290Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--2d263b34-e4d0-42da-88d9-a093945816e3", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--b49c42ef-95c4-4201-80fc-0e1259d7746f", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--907a90d2-e608-4cad-9f98-008530820e80", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--f569e477-046f-435f-973b-3773e54036a8", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--e8cc2a82-97f0-41d4-ac27-4a365bc346d7", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.291Z", + "id": "relationship--43972423-c1b3-41e9-a734-5bde2dd1196b", + "modified": "2021-01-13T01:50:52.291Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--43dd1118-2711-4c50-843c-461250da3cb9", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--1c2125a9-e082-452b-854a-a3f932196157", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.336Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--5b6bec73-f2ab-43b7-9a71-ed899a4ecf93", - "modified": "2021-01-06T18:28:42.336Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--6aaed86b-d642-4710-a74a-4b265ca37b24", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.337Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--95703a3f-137c-418b-83f1-01c8ef58182f", - "modified": "2021-01-06T18:28:42.337Z", + "created": "2021-01-13T01:50:52.292Z", + "id": "relationship--e224da7d-857e-4fa6-8c7f-2a7ecaf01a65", + "modified": "2021-01-13T01:50:52.292Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--9d3c8de5-957c-4ef9-9f50-2b6a9cce4914", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.293Z", + "id": "relationship--bb6ea8db-7a43-45f8-97f8-8e34108bec64", + "modified": "2021-01-13T01:50:52.293Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ad255bfe-a9e6-4b52-a258-8d3462abe842", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--5e8614a4-a1f7-4175-9144-0fd2a3b01cfc", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.294Z", + "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", + "modified": "2021-01-13T01:50:52.294Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f7c0689c-4dbd-489b-81be-7cb7c7079ade", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--3fad893d-3b75-4f47-ba90-33b585bf02d8", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.295Z", + "id": "relationship--2d4074f6-725f-403e-b965-4d894b997f72", + "modified": "2021-01-13T01:50:52.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c325b232-d5bc-4dde-a3ec-71f3db9e8adc", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.338Z", - "description": "Boundary Protection", - "id": "relationship--7804c993-c6a4-4c65-8ed5-89faaf0f4468", - "modified": "2021-01-06T18:28:42.338Z", + "created": "2021-01-13T01:50:52.295Z", + "id": "relationship--1da2ebba-cb57-41b6-b06d-1ad1b7c2419d", + "modified": "2021-01-13T01:50:52.295Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--eec23884-3fa1-4d8a-ac50-6f104d51e235", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.339Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ca7af652-15ac-4218-9c3f-7f0432e880f7", - "modified": "2021-01-06T18:28:42.339Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.340Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--850f496f-89a2-41d9-9d58-134b087aa55f", - "modified": "2021-01-06T18:28:42.340Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.340Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8832310c-4254-4c74-9ce9-1ba4bd9d0f7b", - "modified": "2021-01-06T18:28:42.340Z", + "created": "2021-01-13T01:50:52.298Z", + "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", + "modified": "2021-01-13T01:50:52.298Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.341Z", - "description": "Continuous Monitoring", - "id": "relationship--9963b42b-b82c-44e4-abba-163e750d0698", - "modified": "2021-01-06T18:28:42.341Z", + "created": "2021-01-13T01:50:52.299Z", + "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", + "modified": "2021-01-13T01:50:52.299Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.341Z", - "description": "Information Flow Enforcement", - "id": "relationship--78c4d691-1b6d-43e6-8624-dc05e1e75385", - "modified": "2021-01-06T18:28:42.341Z", + "created": "2021-01-13T01:50:52.300Z", + "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", + "modified": "2021-01-13T01:50:52.300Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.342Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e0d451f9-ab93-4b54-9c8d-e864b174348a", - "modified": "2021-01-06T18:28:42.342Z", + "created": "2021-01-13T01:50:52.300Z", + "id": "relationship--cc1276a5-6ea0-43b7-a864-f5b1f8099c96", + "modified": "2021-01-13T01:50:52.300Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.301Z", + "id": "relationship--ec22bc58-0467-4586-98f7-1a4c58300c44", + "modified": "2021-01-13T01:50:52.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.343Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--65617ae7-992a-448f-b72a-c87249f35f87", - "modified": "2021-01-06T18:28:42.343Z", + "created": "2021-01-13T01:50:52.301Z", + "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", + "modified": "2021-01-13T01:50:52.301Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.344Z", - "description": "Boundary Protection", - "id": "relationship--b7eebe0f-4317-4580-8cee-bf2949891e40", - "modified": "2021-01-06T18:28:42.344Z", + "created": "2021-01-13T01:50:52.302Z", + "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", + "modified": "2021-01-13T01:50:52.302Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f24faf46-3b26-4dbb-98f2-63460498e433", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.345Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6617855c-ecb1-4070-b9f7-94699cde85c3", - "modified": "2021-01-06T18:28:42.345Z", + "created": "2021-01-13T01:50:52.303Z", + "id": "relationship--14432486-12ea-4c05-af05-3d33181ac41b", + "modified": "2021-01-13T01:50:52.303Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.345Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--de0e93dd-2223-4177-a9d9-7ece5637d97b", - "modified": "2021-01-06T18:28:42.345Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--8ec72826-a0ce-454d-be2c-b4c58752f7ed", + "modified": "2021-01-13T01:50:52.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.346Z", - "description": "Continuous Monitoring", - "id": "relationship--81402d3d-db55-424d-8728-458642ee4209", - "modified": "2021-01-06T18:28:42.346Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--2827bb20-7e06-46e4-a22c-f111d51c1f09", + "modified": "2021-01-13T01:50:52.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.347Z", - "description": "Information Flow Enforcement", - "id": "relationship--79692160-46a5-4805-ab7e-619936f7aae7", - "modified": "2021-01-06T18:28:42.347Z", + "created": "2021-01-13T01:50:52.307Z", + "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", + "modified": "2021-01-13T01:50:52.307Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.347Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--12726305-6b8e-4a35-843a-28cc06d2d6ad", - "modified": "2021-01-06T18:28:42.347Z", + "created": "2021-01-13T01:50:52.308Z", + "id": "relationship--ec5f214c-2080-4371-8d50-d00725ce6ac9", + "modified": "2021-01-13T01:50:52.308Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.348Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8d9a2eb4-cd2e-408c-a32a-a9054b18d43a", - "modified": "2021-01-06T18:28:42.348Z", + "created": "2021-01-13T01:50:52.308Z", + "id": "relationship--34cc3471-b3ef-4d6b-ada8-004c7bc791ca", + "modified": "2021-01-13T01:50:52.308Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.349Z", - "description": "Boundary Protection", - "id": "relationship--e91d76a2-2192-4b94-a442-4c2b1f9a8ad3", - "modified": "2021-01-06T18:28:42.349Z", + "created": "2021-01-13T01:50:52.309Z", + "id": "relationship--685b06fd-d2d7-40f4-9b28-00a665ac0f0e", + "modified": "2021-01-13T01:50:52.309Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4eeaf8a9-c86b-4954-a663-9555fb406466", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.350Z", - "description": "Continuous Monitoring", - "id": "relationship--d11bdff9-191a-49b4-aa61-c3bba49969c1", - "modified": "2021-01-06T18:28:42.350Z", + "created": "2021-01-13T01:50:52.309Z", + "id": "relationship--e81074ab-bdc6-4e9f-a374-cf2f9039f137", + "modified": "2021-01-13T01:50:52.309Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.351Z", - "description": "Information Flow Enforcement", - "id": "relationship--ee4cd162-18dc-4f3f-9cbc-d8265c85c82a", - "modified": "2021-01-06T18:28:42.351Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.352Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b3190077-d0d4-479a-9bf4-1b9e9d1ee218", - "modified": "2021-01-06T18:28:42.352Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.352Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--faa76961-bece-4984-ab80-7de29c83c3b8", - "modified": "2021-01-06T18:28:42.352Z", + "created": "2021-01-13T01:50:52.310Z", + "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", + "modified": "2021-01-13T01:50:52.310Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.353Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--af443bae-f605-4c63-bbb1-b2f4a0aa3827", - "modified": "2021-01-06T18:28:42.353Z", + "created": "2021-01-13T01:50:52.311Z", + "id": "relationship--6025c7fb-89bb-454d-9f78-ed0d89b567a5", + "modified": "2021-01-13T01:50:52.311Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.353Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--4e661cac-a53a-41e1-884e-7ee31afb19d1", - "modified": "2021-01-06T18:28:42.353Z", + "created": "2021-01-13T01:50:52.311Z", + "id": "relationship--465a96cc-7dfe-4086-bdb7-509e0045eeb7", + "modified": "2021-01-13T01:50:52.311Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.354Z", - "description": "Boundary Protection", - "id": "relationship--0a05e54b-54e1-4cdf-85e6-1fbdd75acd5e", - "modified": "2021-01-06T18:28:42.354Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", + "modified": "2021-01-13T01:50:52.312Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c3888c54-775d-4b2f-b759-75a2ececcbfd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.355Z", - "description": "Continuous Monitoring", - "id": "relationship--3a6cdfcb-853f-4acb-bcd5-d053f11bdca8", - "modified": "2021-01-06T18:28:42.355Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", + "modified": "2021-01-13T01:50:52.312Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.356Z", - "description": "Information Flow Enforcement", - "id": "relationship--138d57b3-1a10-4679-a9d2-ac983b351a1e", - "modified": "2021-01-06T18:28:42.356Z", + "created": "2021-01-13T01:50:52.312Z", + "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", + "modified": "2021-01-13T01:50:52.312Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.313Z", + "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", + "modified": "2021-01-13T01:50:52.313Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.357Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0c12ece3-5e08-44d4-93f4-a0a0fb2f5b97", - "modified": "2021-01-06T18:28:42.357Z", + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--848578ac-f07e-41d4-b984-56f2b377b334", + "modified": "2021-01-13T01:50:52.314Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.357Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d2007a89-ca1e-4e1e-be82-ba960f20b0c2", - "modified": "2021-01-06T18:28:42.357Z", + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--71ca06ed-8a98-48f8-82c4-3c18e80da284", + "modified": "2021-01-13T01:50:52.314Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.314Z", + "id": "relationship--e4b43e9b-c6a8-412a-887d-968c234b818e", + "modified": "2021-01-13T01:50:52.314Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.358Z", - "description": "Boundary Protection", - "id": "relationship--be4c4e9d-cf76-4098-bb7d-bdc3bba49468", - "modified": "2021-01-06T18:28:42.358Z", + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--92d7da27-2d91-488e-a00c-059dc162766d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.315Z", + "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", + "modified": "2021-01-13T01:50:52.315Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.359Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--80605446-1721-42c6-8388-e9fa585590ac", - "modified": "2021-01-06T18:28:42.359Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.360Z", - "description": "Continuous Monitoring", - "id": "relationship--ed52af34-8079-4d58-a228-409d64c484a1", - "modified": "2021-01-06T18:28:42.360Z", + "created": "2021-01-13T01:50:52.316Z", + "id": "relationship--b243be97-1242-46b9-ac7b-f3274322704b", + "modified": "2021-01-13T01:50:52.316Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.361Z", - "description": "Information Flow Enforcement", - "id": "relationship--b9bbf430-c5f2-492e-aade-e0cd5eb7e229", - "modified": "2021-01-06T18:28:42.361Z", + "created": "2021-01-13T01:50:52.317Z", + "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", + "modified": "2021-01-13T01:50:52.317Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.362Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6b759ca0-2ccb-47f4-bbc2-d43b2d0500f9", - "modified": "2021-01-06T18:28:42.362Z", + "created": "2021-01-13T01:50:52.317Z", + "id": "relationship--d1cd9967-c9a0-4f4b-994f-fab89a9c96f0", + "modified": "2021-01-13T01:50:52.317Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.362Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d3d0b1cc-1865-4e78-b204-5c1364416db3", - "modified": "2021-01-06T18:28:42.362Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.364Z", - "description": "Boundary Protection", - "id": "relationship--a82163ef-5276-4b24-a095-d24ffad7fef4", - "modified": "2021-01-06T18:28:42.364Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.365Z", - "description": "Continuous Monitoring", - "id": "relationship--89d3d0c0-9f16-40b2-9b9a-5a9253287d80", - "modified": "2021-01-06T18:28:42.365Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.366Z", - "description": "Continuous Monitoring", - "id": "relationship--16395758-b36a-4176-aa09-9855e0e2ab6f", - "modified": "2021-01-06T18:28:42.366Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", + "modified": "2021-01-13T01:50:52.318Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.366Z", - "description": "Continuous Monitoring", - "id": "relationship--8d626ddc-9f57-4bd3-b65e-99d3fc1b64b8", - "modified": "2021-01-06T18:28:42.366Z", + "created": "2021-01-13T01:50:52.318Z", + "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", + "modified": "2021-01-13T01:50:52.318Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.324Z", + "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", + "modified": "2021-01-13T01:50:52.324Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.367Z", - "description": "Information Flow Enforcement", - "id": "relationship--016734bf-da5f-48a7-81e0-a0813320d0f6", - "modified": "2021-01-06T18:28:42.367Z", + "created": "2021-01-13T01:50:52.324Z", + "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", + "modified": "2021-01-13T01:50:52.324Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.367Z", - "description": "Information Flow Enforcement", - "id": "relationship--46b61c11-f515-4b48-9ad4-fe7eb2a23a83", - "modified": "2021-01-06T18:28:42.367Z", + "created": "2021-01-13T01:50:52.325Z", + "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", + "modified": "2021-01-13T01:50:52.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.368Z", - "description": "Information Flow Enforcement", - "id": "relationship--dcfe2c71-ecd1-4333-bdce-bac119a42371", - "modified": "2021-01-06T18:28:42.368Z", + "created": "2021-01-13T01:50:52.325Z", + "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", + "modified": "2021-01-13T01:50:52.325Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7a1611f-9ad8-4a6b-a583-8d375f81d150", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7d9a698f-32fb-4553-af6c-e8dcde45fd65", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--72b3c822-3c63-4609-8568-d817963bd20f", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.369Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--27bca785-3919-4c97-b09d-fbc57bbe35aa", - "modified": "2021-01-06T18:28:42.369Z", + "created": "2021-01-13T01:50:52.326Z", + "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", + "modified": "2021-01-13T01:50:52.326Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.370Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4591e76e-80af-4dc0-b919-2c1e60d85aa1", - "modified": "2021-01-06T18:28:42.370Z", + "created": "2021-01-13T01:50:52.333Z", + "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", + "modified": "2021-01-13T01:50:52.333Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.370Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6d5dd55e-2d60-418a-92e3-04e627b97668", - "modified": "2021-01-06T18:28:42.370Z", + "created": "2021-01-13T01:50:52.334Z", + "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", + "modified": "2021-01-13T01:50:52.334Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.371Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--ed65be15-cac0-477c-ac7c-8f98beccdaa6", - "modified": "2021-01-06T18:28:42.371Z", + "created": "2021-01-13T01:50:52.335Z", + "id": "relationship--cd37cbfe-57f4-4c6e-a47b-3fab841d0fee", + "modified": "2021-01-13T01:50:52.335Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.371Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--7fd6f13f-f973-4b0e-8ebd-600549d4a1d6", - "modified": "2021-01-06T18:28:42.371Z", + "created": "2021-01-13T01:50:52.335Z", + "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", + "modified": "2021-01-13T01:50:52.335Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--bc00957c-9101-4688-8092-4ac5b10b03a3", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--14a2b13b-b34b-4857-9346-3ca95eaace59", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--0071bd17-6e52-44e1-881c-f831c9c5bd01", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.336Z", + "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", + "modified": "2021-01-13T01:50:52.336Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.372Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--a5a4314a-77a3-4670-91e7-54eecca41599", - "modified": "2021-01-06T18:28:42.372Z", + "created": "2021-01-13T01:50:52.337Z", + "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", + "modified": "2021-01-13T01:50:52.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.337Z", + "id": "relationship--2dc8f3ab-0a30-41e4-93bb-386c3f97b66e", + "modified": "2021-01-13T01:50:52.337Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.339Z", + "id": "relationship--cbe17ed0-3f00-4d37-be83-2dd6ba0949e5", + "modified": "2021-01-13T01:50:52.339Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f65afa24-ff21-4d40-a73d-af6952dae371", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.340Z", + "id": "relationship--1be0095a-cfec-41e7-ab07-5d0175585db7", + "modified": "2021-01-13T01:50:52.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.340Z", + "id": "relationship--7ac507b6-d448-4a44-8b12-b1b120d09cd3", + "modified": "2021-01-13T01:50:52.340Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--33ca6bb1-cd42-4562-9ea6-199837a30a43", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.373Z", - "description": "Boundary Protection, Cyptographic Key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--0b3e32f8-cd34-472e-8080-f7364ac76afc", - "modified": "2021-01-06T18:28:42.373Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.374Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1b401738-22af-4ede-aff9-248e542063ab", - "modified": "2021-01-06T18:28:42.374Z", + "created": "2021-01-13T01:50:52.342Z", + "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", + "modified": "2021-01-13T01:50:52.342Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5e7d7c5b-bb26-4322-a875-a588af21a11d", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.343Z", + "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", + "modified": "2021-01-13T01:50:52.343Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--45411518-e996-4522-a01b-079fc8fefe20", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.344Z", + "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", + "modified": "2021-01-13T01:50:52.344Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b804d387-7c1b-4d4e-afe4-ba238ff8a54f", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.345Z", + "id": "relationship--7bc6729d-b031-47c2-8d6e-83a704090756", + "modified": "2021-01-13T01:50:52.345Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--887ac699-df70-4526-bd59-d9a7cbfde7e0", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.345Z", + "id": "relationship--00720d20-420f-4fe9-898b-55d8566fc104", + "modified": "2021-01-13T01:50:52.345Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0872277f-485c-47f3-bd5d-855e82159650", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.346Z", + "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", + "modified": "2021-01-13T01:50:52.346Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f121fcf4-8469-446a-ba28-a0afccd8d24b", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--34c1968f-1fc2-43c3-bf72-f32be194269e", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.375Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--eb2fde71-ce15-4b13-bb91-7b54252d400c", - "modified": "2021-01-06T18:28:42.375Z", + "created": "2021-01-13T01:50:52.347Z", + "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", + "modified": "2021-01-13T01:50:52.347Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.376Z", - "description": "Continuous Monitoring", - "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", - "modified": "2021-01-06T18:28:42.376Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--dd1b81d5-b51e-4ab4-90d5-f01548b5c59a", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--54bbe46a-092f-4900-af93-f41a2a0fbfee", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.348Z", + "id": "relationship--accaa4df-1a0f-4a32-ba2f-3be36ebd107b", + "modified": "2021-01-13T01:50:52.348Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.377Z", - "description": "Continuous Monitoring", - "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", - "modified": "2021-01-06T18:28:42.377Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--a713ae45-84f5-4974-871f-335961e8721d", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--cb408d28-8cab-42ea-a7f6-dc47c8353f73", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--312ff30c-fbfb-4e55-8ce7-d9a3a3bd83ba", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--f3ace1b8-5fd3-4e0b-840f-c7d07bee1289", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.378Z", - "description": "Information Flow Enforcement", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.378Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--0f3c8987-8a42-4d0e-a389-65f055610296", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0c09fa88-d242-4604-8521-382f09d90e1d", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.349Z", + "id": "relationship--cd80f23f-edd6-4151-83ca-e9d9be6a469a", + "modified": "2021-01-13T01:50:52.349Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6d4fd787-38a5-45b6-b707-e5e72aa6723a", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--6900caa2-7b40-4c30-925d-28dd1ea9e7e8", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--0462058c-3dc4-4ce8-ab85-ce0e9d193c0b", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--4d6b121e-348c-4b5b-8c66-a44258a67451", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--058c626a-3a2b-42fe-aeb2-08df5248366a", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.350Z", + "id": "relationship--a6ab8da3-1abc-4177-9589-9ff4e22808d0", + "modified": "2021-01-13T01:50:52.350Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.379Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", - "modified": "2021-01-06T18:28:42.379Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.351Z", + "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", + "modified": "2021-01-13T01:50:52.351Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.380Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", - "modified": "2021-01-06T18:28:42.380Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.353Z", + "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", + "modified": "2021-01-13T01:50:52.353Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--21607e6d-5ceb-4d11-928a-362339a0cd06", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.381Z", - "description": "Boundary Protection", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.381Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--0348bb1f-8f3e-4913-bbec-0197a7540135", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--d23f21d3-a8d7-4e19-ba4a-acc986d3f540", - "modified": "2021-01-06T18:28:42.382Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--b8a1ec41-61a2-489a-ba59-c4fed8713776", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--22d65ece-6e8b-4fa0-8125-e7351ec9aeb6", - "modified": "2021-01-06T18:28:42.382Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--d51297ef-eeae-4b82-abbe-585e284adc83", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ea5ac750-2761-46f2-8b11-533eb205c029", - "modified": "2021-01-06T18:28:42.382Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--6102cdec-21a6-49a2-8566-94910bb97a1c", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.382Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b4a2177e-1717-4ea6-b436-5c2acfcb3efe", - "modified": "2021-01-06T18:28:42.382Z", + "created": "2021-01-13T01:50:52.355Z", + "id": "relationship--3c129315-d87f-411e-bf3a-4c9bd3be1394", + "modified": "2021-01-13T01:50:52.355Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--b8af9a0d-508c-4d55-8f6e-f68e68668ac7", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--e8fbdde1-a16d-4b4a-8187-64561fe872f9", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.356Z", + "id": "relationship--2440de4a-67f5-4cb8-85c5-b6d8e0c9c589", + "modified": "2021-01-13T01:50:52.356Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.357Z", + "id": "relationship--51c088c6-64af-4982-8784-15bbd8a16489", + "modified": "2021-01-13T01:50:52.357Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.383Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.383Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--cafc7f4a-40d4-4d1f-b20a-5298a61036d0", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.384Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.384Z", + "created": "2021-01-13T01:50:52.358Z", + "id": "relationship--794fec13-dcd0-4d44-a395-d39ed8a70fee", + "modified": "2021-01-13T01:50:52.358Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.384Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.384Z", + "created": "2021-01-13T01:50:52.359Z", + "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", + "modified": "2021-01-13T01:50:52.359Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e2b8bb6c-554a-474d-94b9-d27ee01dc3e3", - "modified": "2021-01-06T18:28:42.385Z", + "created": "2021-01-13T01:50:52.360Z", + "id": "relationship--833ccde2-70f7-4417-8f4f-1e17c850288b", + "modified": "2021-01-13T01:50:52.360Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--cc154a5e-f425-4ca7-87c2-9f879f605dcd", - "modified": "2021-01-06T18:28:42.385Z", + "created": "2021-01-13T01:50:52.361Z", + "id": "relationship--4fde6f08-230c-42d6-a030-407232b58857", + "modified": "2021-01-13T01:50:52.361Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3dd10dad-e61d-4cea-ad70-82b2bc46debd", - "modified": "2021-01-06T18:28:42.385Z", + "created": "2021-01-13T01:50:52.362Z", + "id": "relationship--ba5146a7-d241-4d12-ae60-b3d3574fdf8d", + "modified": "2021-01-13T01:50:52.362Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7b37a7e8-4a0e-414a-b847-a792c80166e8", - "modified": "2021-01-06T18:28:42.385Z", + "created": "2021-01-13T01:50:52.364Z", + "id": "relationship--a61c7afd-64dd-4605-8e46-9ede1328582c", + "modified": "2021-01-13T01:50:52.364Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.385Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--aad167b4-c7b7-48bb-90c0-878e1cd5ff48", - "modified": "2021-01-06T18:28:42.385Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--6bcf7578-9616-48c3-bc81-c7b5d27ef8c1", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e69e69cd-8e13-474e-a761-91d3c42ebbfd", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--6db9149c-7045-40ad-a4f0-01a0e5f36376", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.365Z", + "id": "relationship--fe26b191-58fd-47a7-bf45-2d636bf7fa17", + "modified": "2021-01-13T01:50:52.365Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--5edea047-9fdd-4c21-b75a-1fc2efdf36f1", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.366Z", + "id": "relationship--79877ed4-3899-4be9-a864-18467ce91600", + "modified": "2021-01-13T01:50:52.366Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--56bf67dd-b855-4f4e-8edc-0c47d1c8f7f6", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.366Z", + "id": "relationship--c4d6b208-1074-40b0-ba59-a820f5fc1e1a", + "modified": "2021-01-13T01:50:52.366Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--90a05fb9-e79e-4852-90eb-513aed0b32c8", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.367Z", + "id": "relationship--6114db17-1f90-46a3-a6c0-fccfe7e20639", + "modified": "2021-01-13T01:50:52.367Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.386Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e0e6ca5e-dd06-4f28-a13a-d6a072db53cd", - "modified": "2021-01-06T18:28:42.386Z", + "created": "2021-01-13T01:50:52.368Z", + "id": "relationship--bac1483d-e5bc-4275-b10c-055b9745c46d", + "modified": "2021-01-13T01:50:52.368Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b0415e04-af35-41ce-924b-0e6b4093ce5e", - "modified": "2021-01-06T18:28:42.387Z", + "created": "2021-01-13T01:50:52.369Z", + "id": "relationship--22d53496-dc2f-48a7-93b1-65df25e60f6c", + "modified": "2021-01-13T01:50:52.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c2e6c2fa-4cbd-485b-a63e-60e9d298a97a", - "modified": "2021-01-06T18:28:42.387Z", + "created": "2021-01-13T01:50:52.369Z", + "id": "relationship--87691e45-48e6-4e16-b3ed-e45d0c98de3d", + "modified": "2021-01-13T01:50:52.369Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e0bb22bd-6485-455d-ba34-f34d29bb1bca", - "modified": "2021-01-06T18:28:42.387Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--633f81f0-46ee-4230-8df4-36fe233c7173", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.387Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--54c7e164-481b-4089-a1e7-e4740c75fd29", - "modified": "2021-01-06T18:28:42.387Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--17807861-cfd4-4395-909f-18e0eaf0cd1f", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.388Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--351fa0f8-63fe-4ca0-9556-36d6cd8ab2f1", - "modified": "2021-01-06T18:28:42.388Z", + "created": "2021-01-13T01:50:52.370Z", + "id": "relationship--f90585fb-3bde-4e7d-b007-795f9b2aec26", + "modified": "2021-01-13T01:50:52.370Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--a2ae97e6-9e23-44e7-bb1e-2d6d977f9ab6", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--987032b6-f6b0-44a4-b45a-aa2dc21ee94b", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d7fdbcde-a6e6-42fb-81da-65de60b2560c", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--15874212-3850-4ee4-b895-0516ddbb87a5", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d842c277-ea54-4d2f-b519-626eb2de348d", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--f0f8c427-002a-43ee-847e-e7d177f44be4", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--a91bedca-8549-4a4d-bd8e-c24a09540551", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d1da2416-1794-46e7-880b-cc3ebf6da5f2", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--1f842b56-a5eb-46e3-a361-455886b7acf0", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--b95b17a7-0221-44d9-883f-bd06d061863e", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.371Z", + "id": "relationship--d1781e9c-7f72-4f03-a8da-6e7fb8e25a9b", + "modified": "2021-01-13T01:50:52.371Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.389Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--12e66fbe-50af-4cca-b779-39dd23fa5a4a", - "modified": "2021-01-06T18:28:42.389Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--575306b2-faa9-4406-8a93-13ab011df530", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--62ec0a84-a2fb-492e-be70-bbc90a4340aa", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--91e2f0b8-bc77-4f5a-b3cb-d84086258deb", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--05e21240-8a90-4c2b-ac68-928841906ab8", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--8f1c8fa3-5482-4e4b-9669-cc9809b256a0", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5a9bd927-ae53-47d0-8916-b047154f56d2", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--549c9581-8913-48c7-a2ef-c7b69a820ff6", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.374Z", + "id": "relationship--03991f55-e503-4f4f-84c1-c2ba3b53d046", + "modified": "2021-01-13T01:50:52.374Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--1786903a-a252-4763-9c05-05ffb12d4e6f", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ba016b07-af04-428b-84c0-3bcb85c69fef", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--6317eee1-9d8a-4592-a7a0-de1854210e1a", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6ec6f180-9b6a-4b12-902b-f9e70c92f4c5", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--e9225ae0-a142-4a02-93d3-4305f1925130", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.390Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6efab994-ab5f-4970-873b-f79fd2ede037", - "modified": "2021-01-06T18:28:42.390Z", + "created": "2021-01-13T01:50:52.375Z", + "id": "relationship--e9588a87-23ff-4067-93b8-4751f5560507", + "modified": "2021-01-13T01:50:52.375Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--50af1c79-48dd-476c-a903-f3bd1e3fa978", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--4f329168-a962-4c2b-affc-7809ed5b475a", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--e2f58512-0bdc-472f-9720-b6226130335e", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--2120f2f9-3e57-4199-9043-033ec37ca540", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--03f2f429-625d-44bd-a7a1-4836b9f8556d", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.380Z", + "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", + "modified": "2021-01-13T01:50:52.380Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--e573d3fb-77c6-497d-9b8f-0b4cd50701a9", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--6d3953ef-8182-40ff-9423-e3b543aba6d5", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.391Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--8c1fa586-feed-4a08-8f77-ec56a0bef82b", - "modified": "2021-01-06T18:28:42.391Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--f9e19eff-bc17-4490-ad6e-c2d676aa207a", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--d0888772-9ea7-45a2-b0c4-54cd38491843", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--00ea57e7-d5cd-465d-8820-a1ef7f1b231c", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--3d774e3c-d459-410f-af4f-0ceafde47465", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.381Z", + "id": "relationship--c6a68f2b-a9c5-4b9e-b5e0-e3af7b0723a9", + "modified": "2021-01-13T01:50:52.381Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--0ff87b2f-aba3-4fe7-ae30-29196026ecf5", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--5bff91b0-3db9-48c7-a8b8-beee627ef71e", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--70b30aad-9c68-465d-af77-38fe46856f85", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--65338008-33c6-4601-b89f-bcd848c3242f", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c6849a43-57dd-4f24-b299-2c3c8467a455", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--c1503d57-2c70-429b-ad4f-230d17628d27", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--25f971f3-d721-432a-9e76-5ca966b5b01e", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.382Z", + "id": "relationship--e177249e-bcbd-45f4-80a6-afe98af6229f", + "modified": "2021-01-13T01:50:52.382Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a8eaeb54-228a-4df9-a250-ce36c7a3e1db", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.383Z", + "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", + "modified": "2021-01-13T01:50:52.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.392Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--7bf27d7e-57b7-4459-b410-c10e201632f3", - "modified": "2021-01-06T18:28:42.392Z", + "created": "2021-01-13T01:50:52.383Z", + "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", + "modified": "2021-01-13T01:50:52.383Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--57bb0afd-1098-4197-ac8c-5d35a6a1f897", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--addcf52d-f17e-4289-9992-6e4b7c477b83", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--68687bd4-eb5e-4f24-9e1d-982235e104d7", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--c4c45097-be29-440d-a6d9-14b3a91ed990", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--6296e01f-8b70-4db3-8c92-3aa81ea815e3", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--001ec63c-877a-44b7-bdc5-34cbf3407cc9", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.384Z", + "id": "relationship--dc5e0380-cace-4b5b-b5e7-1435aad8a591", + "modified": "2021-01-13T01:50:52.384Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ddee43df-5a03-4904-9cfd-36f00cd1c323", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.385Z", + "id": "relationship--6cf0e025-aa5b-43cb-a3e1-3a9647428166", + "modified": "2021-01-13T01:50:52.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--6e8eb5eb-efa4-4ecf-a8b6-c3a5c0f7e98a", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.385Z", + "id": "relationship--3f94e128-dda4-4d2b-8974-5c3cdd163bb7", + "modified": "2021-01-13T01:50:52.385Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b948e5d7-e902-43bb-9296-0a0e87a8efac", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.393Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--67efa85f-7d12-4dfa-a675-e87f7bd8fde2", - "modified": "2021-01-06T18:28:42.393Z", + "created": "2021-01-13T01:50:52.386Z", + "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", + "modified": "2021-01-13T01:50:52.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--3b113689-1d2b-4fd3-a7d6-49a2a9703689", - "modified": "2021-01-06T18:28:42.394Z", + "created": "2021-01-13T01:50:52.386Z", + "id": "relationship--ce13b6b1-8ff8-4313-a17b-44d905ab2fda", + "modified": "2021-01-13T01:50:52.386Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--5e8b16f1-c944-4da2-8e56-d26d9261d936", - "modified": "2021-01-06T18:28:42.394Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--a7ebf3f4-47c4-49e0-8f4e-359968d18edf", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--ac420a1d-0110-4001-8a3c-8077fb2e8b3d", - "modified": "2021-01-06T18:28:42.394Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--d886cabc-6838-40cc-8077-9efd6413533f", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.394Z", - "description": "Boundary Protection, Network Disconnect, Secure Name/Address Resolution Service, Secure Name/Address Resolution Service, Architecture and Provisioning for Name/Address Resolution Service, Session Authenticity, Cover Channel Analysis, Out-of-Band Channels", - "id": "relationship--a1743fdf-ce15-438e-97b8-f9c9059a4a2a", - "modified": "2021-01-06T18:28:42.394Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--4191349e-de17-4f10-8498-d86f79e99374", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--9848d23a-cb95-4074-ba14-7a664ea7ce94", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06f50d1b-dcf8-40df-92fb-0730e57df9f9", - "modified": "2021-01-06T18:28:42.395Z", + "created": "2021-01-13T01:50:52.389Z", + "id": "relationship--11236c11-07f8-4fa9-ad49-929e29a04a5e", + "modified": "2021-01-13T01:50:52.389Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--fe27ff45-a365-4fcf-b434-ca21c1b8efef", - "modified": "2021-01-06T18:28:42.395Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--8720138e-4483-46ab-bd76-b580c2f6c79d", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9c2be0e2-7aed-4b89-886c-a337556bf96e", - "modified": "2021-01-06T18:28:42.395Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--4558adbd-6e13-4802-b630-db2fad25e01f", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.395Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--18ab6cff-8536-4f1b-935c-2b36ebb946b5", - "modified": "2021-01-06T18:28:42.395Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--e692440e-07fa-403b-9dbb-6283301afa8e", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--862d26b7-c8ee-440d-968c-f440e0c15598", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.391Z", + "id": "relationship--4d5a770c-3d2d-466c-a3d2-c05764f76139", + "modified": "2021-01-13T01:50:52.391Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3a6c957a-41e0-4bb4-a58c-800ac55341f2", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--0581a3c6-e36e-46c7-85d6-68b312bf7157", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4c5f77c3-a5aa-4607-9797-81f1a4ed2bda", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--b8d61b3e-a3d7-4154-9e1e-7718512a9ed0", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d3f7436b-6bc1-4d70-9926-d451aa3e8061", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--cf492346-58d3-45e5-b8e9-c29860903b26", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--019ae8a6-bb58-44e5-86ed-c41f3b8dd512", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--2761e24a-d435-4a7c-b232-46dbc7f8c1a4", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.396Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bb7914da-87b9-4990-9109-dd797408db6c", - "modified": "2021-01-06T18:28:42.396Z", + "created": "2021-01-13T01:50:52.392Z", + "id": "relationship--6b95f8af-5e4e-4b16-bdcc-f732a1d2a4a6", + "modified": "2021-01-13T01:50:52.392Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.397Z", - "description": "Continuous Monitoring", - "id": "relationship--dd7a7e63-495a-4958-8da5-463471dd1c7b", - "modified": "2021-01-06T18:28:42.397Z", + "created": "2021-01-13T01:50:52.393Z", + "id": "relationship--6b3540b8-ea86-4f5a-98c7-68d2a46fa430", + "modified": "2021-01-13T01:50:52.393Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", - "modified": "2021-01-06T18:28:42.398Z", + "created": "2021-01-13T01:50:52.394Z", + "id": "relationship--92ad3efd-0a0c-40e3-aa0f-80168c35351b", + "modified": "2021-01-13T01:50:52.394Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--121446f8-7ec6-42cb-b5a4-5c90755c5323", - "modified": "2021-01-06T18:28:42.398Z", + "created": "2021-01-13T01:50:52.396Z", + "id": "relationship--215eab32-611e-4c8f-8293-a81a801dd350", + "modified": "2021-01-13T01:50:52.396Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.398Z", - "description": "Continuous Monitoring", - "id": "relationship--fe6cb028-781d-458b-8449-19aa6c335f68", - "modified": "2021-01-06T18:28:42.398Z", + "created": "2021-01-13T01:50:52.397Z", + "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", + "modified": "2021-01-13T01:50:52.397Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.399Z", - "description": "Continuous Monitoring", - "id": "relationship--86806f96-c8eb-4f34-b509-41d35a3732bd", - "modified": "2021-01-06T18:28:42.399Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--c86d42d9-29ba-4b5c-8968-90bc26d8af37", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--8cac841f-f70a-4d73-9e50-3eca52983f44", - "modified": "2021-01-06T18:28:42.400Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--f2c3f042-b274-4346-ae3e-352d26ace5e6", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--355be19c-ffc9-46d5-8d50-d6a036c675b6", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", - "modified": "2021-01-06T18:28:42.400Z", + "created": "2021-01-13T01:50:52.398Z", + "id": "relationship--c4c685e9-7d97-4a57-97a5-2e187a64e7e0", + "modified": "2021-01-13T01:50:52.398Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--d07cb403-7e0e-49b3-8dd9-563a2b4738c0", - "modified": "2021-01-06T18:28:42.400Z", + "created": "2021-01-13T01:50:52.399Z", + "id": "relationship--f3e65e78-3c67-4c2e-a478-c5a3941aa213", + "modified": "2021-01-13T01:50:52.399Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.400Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f956918-f292-48c2-b5e5-c59d81ab163e", - "modified": "2021-01-06T18:28:42.400Z", + "created": "2021-01-13T01:50:52.399Z", + "id": "relationship--d8ef6cc3-0ad7-4d96-b6a2-b9b899153c6e", + "modified": "2021-01-13T01:50:52.399Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.401Z", - "description": "Information Flow Enforcement", - "id": "relationship--4264f9ac-6ba0-4fdd-8631-b2ed5f73c3c4", - "modified": "2021-01-06T18:28:42.401Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--ee5b5889-b514-40f8-9b6a-321be10d8530", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7e1aa134-48c8-4f3d-9737-1a983acae532", - "modified": "2021-01-06T18:28:42.402Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--db1e6bdf-38fa-4d45-8935-a3f75f40df51", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14dcd170-665a-4d81-b2b9-9ae800c714cb", - "modified": "2021-01-06T18:28:42.402Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--04378d95-acc9-4608-924d-57b85abb8873", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.402Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--42621f22-e716-4d3a-8676-523ca3827467", - "modified": "2021-01-06T18:28:42.402Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--775971d0-6985-4f71-a08b-c9ddba29fe2a", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--e41643f8-5dcb-4858-b4b6-a75077fabed1", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--2b388e1f-a975-4bc0-b719-5311fe8e4a29", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0596a023-f3e9-438a-90cc-36d6c443c3f7", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--865189bb-a679-45f1-8c9f-0ac531ff8316", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--6ed5f79d-db8a-4002-ab96-1cec4173bda8", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a4203a21-1348-4098-842f-e3e9db65631a", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.403Z", + "id": "relationship--678cecd7-6f89-4729-87cf-1d8487ecc0a6", + "modified": "2021-01-13T01:50:52.403Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c19bbe12-fec5-43a7-b2bc-741df9971d3c", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--fae97f86-b3c6-4212-b0ba-9c4077b1729b", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.403Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", - "modified": "2021-01-06T18:28:42.403Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--cc339e5e-9e20-45fd-9053-eee91ff1256c", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.404Z", - "description": "Continuous Monitoring", - "id": "relationship--ea311c0f-1e58-484e-b768-bfffb5f12859", - "modified": "2021-01-06T18:28:42.404Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.404Z", - "description": "Continuous Monitoring", - "id": "relationship--4e2f364a-70f4-4247-bfe2-89c7276dc838", - "modified": "2021-01-06T18:28:42.404Z", + "created": "2021-01-13T01:50:52.405Z", + "id": "relationship--66e229cd-2d90-4718-a442-25bd20408b48", + "modified": "2021-01-13T01:50:52.405Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.405Z", - "description": "Continuous Monitoring", - "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", - "modified": "2021-01-06T18:28:42.405Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.405Z", - "description": "Information Flow Enforcement", - "id": "relationship--5c67f13a-e054-4277-b53b-21780062ede6", - "modified": "2021-01-06T18:28:42.405Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--c6df6c24-706b-4e86-9a65-0bf43dfcdec0", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.405Z", - "description": "Information Flow Enforcement", - "id": "relationship--a87f3537-7823-4df6-8c4c-13d4c414fb41", - "modified": "2021-01-06T18:28:42.405Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--99c907b4-6eed-445f-b02d-5058fd396903", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.406Z", - "description": "Information Flow Enforcement", - "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", - "modified": "2021-01-06T18:28:42.406Z", + "created": "2021-01-13T01:50:52.406Z", + "id": "relationship--4c9bfeae-f59c-46ca-bf3c-bf0634d75ba7", + "modified": "2021-01-13T01:50:52.406Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.406Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--2745aa77-8f11-4032-b6ca-3c035883799f", - "modified": "2021-01-06T18:28:42.406Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bc19ffdf-480b-4ac0-85b1-7c6684bc190e", - "modified": "2021-01-06T18:28:42.407Z", + "created": "2021-01-13T01:50:52.407Z", + "id": "relationship--ff2589e9-64ef-4cdb-844b-0048e1d0467c", + "modified": "2021-01-13T01:50:52.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9a09fe50-851a-4dd1-b5e6-742c864901b9", - "modified": "2021-01-06T18:28:42.407Z", + "created": "2021-01-13T01:50:52.407Z", + "id": "relationship--65a63782-b061-42dc-a794-a005a3c81e35", + "modified": "2021-01-13T01:50:52.407Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ea695177-3d1a-478a-ac6e-409bc7c7d127", - "modified": "2021-01-06T18:28:42.407Z", + "created": "2021-01-13T01:50:52.409Z", + "id": "relationship--427d39c1-8caa-472f-8d87-56128d743226", + "modified": "2021-01-13T01:50:52.409Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--b3a195ef-b7a2-4777-bc54-223e82efbd34", - "modified": "2021-01-06T18:28:42.407Z", + "created": "2021-01-13T01:50:52.412Z", + "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", + "modified": "2021-01-13T01:50:52.412Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.407Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--d6772b48-d18e-4bcc-aa06-692b5e9243b1", - "modified": "2021-01-06T18:28:42.407Z", + "created": "2021-01-13T01:50:52.413Z", + "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", + "modified": "2021-01-13T01:50:52.413Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--f00bb6ed-d855-4dc9-b6ab-1152bfcf9ff9", - "modified": "2021-01-06T18:28:42.408Z", + "created": "2021-01-13T01:50:52.414Z", + "id": "relationship--2edbaf79-316d-4d8b-9a80-3af3f29df1fe", + "modified": "2021-01-13T01:50:52.414Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--45f5cbae-09d5-4d59-b660-572cfc6bb3bc", - "modified": "2021-01-06T18:28:42.408Z", + "created": "2021-01-13T01:50:52.414Z", + "id": "relationship--d32fa784-a03e-4c8d-83b9-b2a21793399f", + "modified": "2021-01-13T01:50:52.414Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.408Z", - "description": "Boundary Protection", - "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", - "modified": "2021-01-06T18:28:42.408Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--7f4546d2-2be3-4774-af4f-d469abc7a834", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--81d5e977-0f8a-4098-851e-affb9f5c5043", - "modified": "2021-01-06T18:28:42.409Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.409Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--1f427dca-2d62-48e3-801c-71f4b5ed8879", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.409Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.409Z", + "created": "2021-01-13T01:50:52.415Z", + "id": "relationship--45c3739b-86da-485d-a3df-abadf210402b", + "modified": "2021-01-13T01:50:52.415Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.410Z", - "description": "Continuous Monitoring", - "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", - "modified": "2021-01-06T18:28:42.410Z", + "created": "2021-01-13T01:50:52.418Z", + "id": "relationship--836c519e-e74c-4aea-918b-a91a222893c1", + "modified": "2021-01-13T01:50:52.418Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.411Z", - "description": "Information Flow Enforcement", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.411Z", + "created": "2021-01-13T01:50:52.418Z", + "id": "relationship--202c64fa-7c21-4cc8-a7fb-7406aff4c0e2", + "modified": "2021-01-13T01:50:52.418Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.412Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bfe626b9-4bca-409d-accb-bcd6d8fd80ae", - "modified": "2021-01-06T18:28:42.412Z", + "created": "2021-01-13T01:50:52.419Z", + "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", + "modified": "2021-01-13T01:50:52.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.412Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--97f009cf-5851-463b-86bc-bf0fad9c5471", - "modified": "2021-01-06T18:28:42.412Z", + "created": "2021-01-13T01:50:52.419Z", + "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", + "modified": "2021-01-13T01:50:52.419Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.413Z", - "description": "Boundary Protection", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.413Z", + "created": "2021-01-13T01:50:52.423Z", + "id": "relationship--78dfefcf-7b1b-421c-b034-fa4e73446806", + "modified": "2021-01-13T01:50:52.423Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c176ea35-c49e-4da5-82d3-9f1d06477ccc", - "modified": "2021-01-06T18:28:42.414Z", + "created": "2021-01-13T01:50:52.424Z", + "id": "relationship--e52e36a7-786c-4859-b997-e7958c7f2e41", + "modified": "2021-01-13T01:50:52.424Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--259271cb-6c2d-4c18-9cbd-7a27496e4d1d", - "modified": "2021-01-06T18:28:42.414Z", + "created": "2021-01-13T01:50:52.424Z", + "id": "relationship--8c38d169-38ea-45e9-b7eb-805b1ee8287e", + "modified": "2021-01-13T01:50:52.424Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8767deb8-9573-44d8-95f3-ec3641099966", - "modified": "2021-01-06T18:28:42.414Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.414Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b0ca4bbe-dc6b-4f0e-a260-988e751ecb05", - "modified": "2021-01-06T18:28:42.414Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1299ad81-082b-41e0-b62e-27fbc1bbd7bf", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.425Z", + "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", + "modified": "2021-01-13T01:50:52.425Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7a2e6ff8-3fa6-4572-98c7-fb7c1c0ff7e8", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.426Z", + "id": "relationship--360cc556-5972-40b3-ae8c-cefab0110047", + "modified": "2021-01-13T01:50:52.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c52275a9-10be-4bea-b041-0c62b80d9361", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.426Z", + "id": "relationship--2d4a2a98-e9c5-4b2d-8c11-8e806bd230b9", + "modified": "2021-01-13T01:50:52.426Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0577f38f-6a36-471f-bf5b-dbd6315c3d85", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.427Z", + "id": "relationship--96e40920-5744-4091-8472-23b2a57ecfc9", + "modified": "2021-01-13T01:50:52.427Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4547e117-96b1-43eb-b24d-c733a3999630", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--4b5c7843-1dd8-48fc-b72d-6a75dbfcdc25", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--6614de33-6206-403f-8320-1135819108a0", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--4c18c893-2afc-4dd7-8228-63cb790dfc33", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bd65d6f3-4d23-4085-9c9a-79c3f2832077", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.428Z", + "id": "relationship--27ec176a-d26e-4ad5-bf39-9970d12cc89e", + "modified": "2021-01-13T01:50:52.428Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.415Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--05503e1b-690c-45ad-a406-7c3adf631791", - "modified": "2021-01-06T18:28:42.415Z", + "created": "2021-01-13T01:50:52.429Z", + "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", + "modified": "2021-01-13T01:50:52.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.416Z", - "description": "Continuous Monitoring", - "id": "relationship--9964dce1-809c-457c-93fa-58bc4bd13685", - "modified": "2021-01-06T18:28:42.416Z", + "created": "2021-01-13T01:50:52.429Z", + "id": "relationship--57d172ec-c578-4441-967d-3d50196a0559", + "modified": "2021-01-13T01:50:52.429Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--198cdcae-b821-4dc0-8446-0290b12cf23a", - "modified": "2021-01-06T18:28:42.417Z", + "created": "2021-01-13T01:50:52.432Z", + "id": "relationship--a2c76cb2-2c12-46b5-a3f6-44159f6d5a8d", + "modified": "2021-01-13T01:50:52.432Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--351dca53-f74b-4b0f-9774-63807ff9366c", - "modified": "2021-01-06T18:28:42.417Z", + "created": "2021-01-13T01:50:52.434Z", + "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", + "modified": "2021-01-13T01:50:52.434Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.417Z", - "description": "Continuous Monitoring", - "id": "relationship--1e162577-5dce-4340-a148-f2aed348eb84", - "modified": "2021-01-06T18:28:42.417Z", + "created": "2021-01-13T01:50:52.434Z", + "id": "relationship--58c1f42b-0aa4-4ce5-b857-978e9a1f828f", + "modified": "2021-01-13T01:50:52.434Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--1614ce97-f0a1-4eb6-abdc-dac5f15ecccb", - "modified": "2021-01-06T18:28:42.418Z", + "created": "2021-01-13T01:50:52.435Z", + "id": "relationship--4f9af1cf-0858-4e49-8df6-12040d84c974", + "modified": "2021-01-13T01:50:52.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--40d166e4-948a-4e96-9dc0-572038ce8e4a", - "modified": "2021-01-06T18:28:42.418Z", + "created": "2021-01-13T01:50:52.435Z", + "id": "relationship--4d657527-fd02-4b45-981a-e2ce49e9c93f", + "modified": "2021-01-13T01:50:52.435Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--a70b577d-9930-43ae-be8d-24664adcdc23", - "modified": "2021-01-06T18:28:42.418Z", + "created": "2021-01-13T01:50:52.439Z", + "id": "relationship--06f29914-035c-4121-b383-3e56f7ce856e", + "modified": "2021-01-13T01:50:52.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", + "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.418Z", - "description": "Information Flow Enforcement", - "id": "relationship--dffd4cca-3a57-40ad-98f5-5091e09cfe80", - "modified": "2021-01-06T18:28:42.418Z", + "created": "2021-01-13T01:50:52.439Z", + "id": "relationship--34267ffa-1f84-482f-bf2a-a2fd80eabec5", + "modified": "2021-01-13T01:50:52.439Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", + "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ebad5c56-2b9b-436d-9714-b70b2ee43d2b", - "modified": "2021-01-06T18:28:42.419Z", + "created": "2021-01-13T01:50:52.443Z", + "id": "relationship--7759313d-dd9c-4400-8399-6715aa58c47d", + "modified": "2021-01-13T01:50:52.443Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06b816e2-8b12-43da-b40b-cbaa19ce7065", - "modified": "2021-01-06T18:28:42.419Z", + "created": "2021-01-13T01:50:52.444Z", + "id": "relationship--a957669b-b046-48b2-957a-eb5fa08ca5f3", + "modified": "2021-01-13T01:50:52.444Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.419Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--9bcde945-a185-4358-adf6-47d25af8bdbb", - "modified": "2021-01-06T18:28:42.419Z", + "created": "2021-01-13T01:50:52.444Z", + "id": "relationship--9dd148be-c7ad-489c-8c15-d9e2e39c896b", + "modified": "2021-01-13T01:50:52.444Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--43756742-f5c7-461d-9294-4378dc4f23b9", - "modified": "2021-01-06T18:28:42.420Z", + "created": "2021-01-13T01:50:52.445Z", + "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", + "modified": "2021-01-13T01:50:52.445Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ba675e68-23d8-4f8b-a5f2-60f7b2a9431b", - "modified": "2021-01-06T18:28:42.420Z", + "created": "2021-01-13T01:50:52.446Z", + "id": "relationship--aa9d8703-e5ac-401a-b645-b2e87ca8d873", + "modified": "2021-01-13T01:50:52.446Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--1d649f4b-7d3a-4795-9a55-99cefedd8342", - "modified": "2021-01-06T18:28:42.420Z", + "created": "2021-01-13T01:50:52.446Z", + "id": "relationship--450fa2a2-59e2-4307-a248-584f84a8fd47", + "modified": "2021-01-13T01:50:52.446Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3fed03cf-3ac9-47ed-97a6-c732f7f0f107", - "modified": "2021-01-06T18:28:42.420Z", + "created": "2021-01-13T01:50:52.447Z", + "id": "relationship--abc219c7-1a72-48c0-b31a-f7a12bf08a54", + "modified": "2021-01-13T01:50:52.447Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.420Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--34753ae2-4df5-45d7-83e8-39f133f20c59", - "modified": "2021-01-06T18:28:42.420Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--fd37262c-6c27-492d-8c33-4c220e4effb8", - "modified": "2021-01-06T18:28:42.421Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--3e99336b-90a3-4615-a8b4-57bec60447a6", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--be055942-6e63-49d7-9fa1-9cb7d8a8f3f4", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--cdd7402a-923d-4c78-b743-e819acbcc535", - "modified": "2021-01-06T18:28:42.421Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--8521a0be-e8a3-48fd-a76f-e8407ceeb1ee", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f7827069-0bf2-4764-af4f-23fae0d181b7", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--0a4cecb1-58ea-4e95-8f61-3245c6e124ed", - "modified": "2021-01-06T18:28:42.421Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--0b7db8ec-a900-44ad-b4cf-d0113258fcca", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9c99724c-a483-4d60-ad9d-7f004e42e8e8", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.421Z", - "description": "Boundary Protection", - "id": "relationship--a62c005e-2fba-46b4-b5fe-b5077e68c911", - "modified": "2021-01-06T18:28:42.421Z", + "created": "2021-01-13T01:50:52.448Z", + "id": "relationship--02566fc8-d990-4b2f-bb58-5776c42509cd", + "modified": "2021-01-13T01:50:52.448Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--830c9528-df21-472c-8c14-a036bf17d665", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.422Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--34a31ef7-f8a7-4a70-ac0c-5bfdbdfdd7ef", - "modified": "2021-01-06T18:28:42.422Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--2dfedb16-567e-4809-9812-538a46a604e9", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.422Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--0ff35e04-8563-46bf-8471-807436d50fed", - "modified": "2021-01-06T18:28:42.422Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--cf810d63-3051-4884-bead-899dbb924796", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.423Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--4e157ead-7205-4155-80bc-1c3314f5539a", - "modified": "2021-01-06T18:28:42.423Z", + "created": "2021-01-13T01:50:52.449Z", + "id": "relationship--a32de5fb-4352-4f2c-9a0d-674d92be76f6", + "modified": "2021-01-13T01:50:52.449Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.423Z", - "description": "Continuous Monitoring", - "id": "relationship--386177c8-ee60-45be-a6ae-a6744e07320e", - "modified": "2021-01-06T18:28:42.423Z", + "created": "2021-01-13T01:50:52.450Z", + "id": "relationship--703c2a66-1c58-4205-bf19-cdbc39254fdb", + "modified": "2021-01-13T01:50:52.450Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.424Z", - "description": "Information Flow Enforcement", - "id": "relationship--c7656489-d8f8-4ede-bfcf-b4f7630dd730", - "modified": "2021-01-06T18:28:42.424Z", + "created": "2021-01-13T01:50:52.455Z", + "id": "relationship--f349cac3-10fa-4389-a2e0-c722d528f3b6", + "modified": "2021-01-13T01:50:52.455Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.425Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--bfe31c80-ed18-4b1b-bd33-6aa696f29756", - "modified": "2021-01-06T18:28:42.425Z", + "created": "2021-01-13T01:50:52.455Z", + "id": "relationship--fd0d1c39-66ba-456c-95a9-df32370e30c7", + "modified": "2021-01-13T01:50:52.455Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.425Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3617e630-9e0c-40a7-ba68-744463bb4ea4", - "modified": "2021-01-06T18:28:42.425Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--c8b1b4a7-6f86-4c36-97b1-c329317260ad", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.426Z", - "description": "Boundary Protection", - "id": "relationship--e5a474d2-872c-49c3-a3ed-fa6f50751e79", - "modified": "2021-01-06T18:28:42.426Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--ba27d830-5bf4-427e-aa5a-f41fe2cf668b", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--84e02621-8fdf-470f-bd58-993bb6a89d91", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.427Z", - "description": "Continuous Monitoring", - "id": "relationship--b39d58a0-b2be-40b5-906d-d8a1f1054bd3", - "modified": "2021-01-06T18:28:42.427Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--fc48b6a8-cb0f-4958-9be7-b8339462ad2f", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.429Z", - "description": "Information Flow Enforcement", - "id": "relationship--9a10458f-d56c-4069-a2be-0183fc275b31", - "modified": "2021-01-06T18:28:42.429Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--0762d2b7-2fc7-440e-86f3-66719c3a6998", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.429Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cdf8fe03-60ec-484d-85f3-fa6547ec8a24", - "modified": "2021-01-06T18:28:42.429Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--620fea9b-99af-4eca-9d3e-6606d0ea94ec", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.430Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--31a2c80e-7260-4359-9f95-9935e8e2622d", - "modified": "2021-01-06T18:28:42.430Z", + "created": "2021-01-13T01:50:52.456Z", + "id": "relationship--7a82fc55-fe78-46dc-b362-c4aadba51aa7", + "modified": "2021-01-13T01:50:52.456Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.430Z", - "description": "Boundary Protection", - "id": "relationship--d37cf295-3395-4721-ba31-4a619d378bbf", - "modified": "2021-01-06T18:28:42.430Z", + "created": "2021-01-13T01:50:52.457Z", + "id": "relationship--c189979a-4779-4df9-874b-8153fce693f7", + "modified": "2021-01-13T01:50:52.457Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.431Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c90e2ee4-3515-4ca8-a5bd-7f1954f739e8", - "modified": "2021-01-06T18:28:42.431Z", + "created": "2021-01-13T01:50:52.462Z", + "id": "relationship--6967226a-ef18-434f-86b3-1c796b77d580", + "modified": "2021-01-13T01:50:52.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.432Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--097d7cbd-b4fa-4e27-a391-d27e156ede4d", - "modified": "2021-01-06T18:28:42.432Z", + "created": "2021-01-13T01:50:52.462Z", + "id": "relationship--e82083e3-ea44-49ef-a77b-b95e09b7a163", + "modified": "2021-01-13T01:50:52.462Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.433Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--93ff2e57-f059-4883-87cd-61cfb9931c1c", - "modified": "2021-01-06T18:28:42.433Z", + "created": "2021-01-13T01:50:52.463Z", + "id": "relationship--b4f2e8d0-9a1a-49be-8033-e004565a2d03", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--e6919abc-99f9-4c6c-95a5-14761e7b2add", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.434Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--c00a1dda-54d4-4bb9-a831-4034c0946023", - "modified": "2021-01-06T18:28:42.434Z", + "created": "2021-01-13T01:50:52.463Z", + "id": "relationship--8b70af8a-6321-4e6c-b269-a8f1e1365fb9", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--6b3ca4c3-f441-4be7-b0b1-f123393dee2c", - "modified": "2021-01-06T18:28:42.435Z", + "created": "2021-01-13T01:50:52.463Z", + "id": "relationship--b3431f4d-3a73-4ff8-b850-0b83250d27a2", + "modified": "2021-01-13T01:50:52.463Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--edb39ddb-4643-4efb-89b0-589fca22f62d", - "modified": "2021-01-06T18:28:42.435Z", + "created": "2021-01-13T01:50:52.464Z", + "id": "relationship--bbab5a97-bff4-4cd6-bb02-22f6140655b6", + "modified": "2021-01-13T01:50:52.464Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--d6ab41c8-6da2-4ce5-99ed-fc943bb77693", - "modified": "2021-01-06T18:28:42.435Z", + "created": "2021-01-13T01:50:52.465Z", + "id": "relationship--a4e89d6c-813f-467e-89bc-6490f35b68d4", + "modified": "2021-01-13T01:50:52.465Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--869b95ed-f93f-471e-97bd-d92ad5d3b174", - "modified": "2021-01-06T18:28:42.435Z", + "created": "2021-01-13T01:50:52.465Z", + "id": "relationship--773eb522-c358-4c3e-98a1-a3113fe27a9a", + "modified": "2021-01-13T01:50:52.465Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.435Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--b824bd88-8e67-4908-afa0-300742dcc4c5", - "modified": "2021-01-06T18:28:42.435Z", + "created": "2021-01-13T01:50:52.466Z", + "id": "relationship--e0dbf1d0-9735-492a-9f5f-534a78e1152f", + "modified": "2021-01-13T01:50:52.466Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.436Z", - "description": "Boundary Protection", - "id": "relationship--504f7983-ae71-4b44-8803-15baedefef18", - "modified": "2021-01-06T18:28:42.436Z", + "created": "2021-01-13T01:50:52.467Z", + "id": "relationship--13fe5f3e-0a58-469e-ab8e-8aee92863ad1", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.437Z", - "description": "Boundary Protection", - "id": "relationship--f5e5c532-08c8-4d9f-b783-623417f4cda8", - "modified": "2021-01-06T18:28:42.437Z", + "created": "2021-01-13T01:50:52.467Z", + "id": "relationship--048e7cb2-db78-4da9-81a7-96cd4c9b2460", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.437Z", - "description": "Boundary Protection", - "id": "relationship--22552045-c6f3-4386-99fd-2c1833912975", - "modified": "2021-01-06T18:28:42.437Z", + "created": "2021-01-13T01:50:52.467Z", + "id": "relationship--05f213d7-e130-4110-9abf-331a3913a549", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--21859c9a-fe90-46dd-a484-9ad952347581", - "modified": "2021-01-06T18:28:42.438Z", + "created": "2021-01-13T01:50:52.467Z", + "id": "relationship--b4aa2f2b-3516-41d5-9638-df37ca9e8d34", + "modified": "2021-01-13T01:50:52.467Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3066c361-c15e-409f-878d-237b697fa9a0", - "modified": "2021-01-06T18:28:42.438Z", + "created": "2021-01-13T01:50:52.468Z", + "id": "relationship--8ee96015-7439-4205-8c12-99fd77e7a25b", + "modified": "2021-01-13T01:50:52.468Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--30c674f7-7be6-4f30-86ec-b22acc9bbbb3", - "modified": "2021-01-06T18:28:42.438Z", + "created": "2021-01-13T01:50:52.472Z", + "id": "relationship--c3518993-8e2f-44ae-a22c-9333ed5132a5", + "modified": "2021-01-13T01:50:52.472Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e8418da1-8e76-413b-ad39-313f3b67c2fc", - "modified": "2021-01-06T18:28:42.438Z", + "created": "2021-01-13T01:50:52.472Z", + "id": "relationship--81942dc8-7aa2-4759-aa89-836544c98226", + "modified": "2021-01-13T01:50:52.472Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.438Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--f7374030-13bf-4310-a45c-41850bfe46f4", - "modified": "2021-01-06T18:28:42.438Z", + "created": "2021-01-13T01:50:52.473Z", + "id": "relationship--3e6b945f-dbd7-4b86-a62b-466626646253", + "modified": "2021-01-13T01:50:52.473Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.439Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--36e93395-4c78-43cc-bd7e-50677fa6fab0", - "modified": "2021-01-06T18:28:42.439Z", + "created": "2021-01-13T01:50:52.475Z", + "id": "relationship--96b79c87-2318-41ef-a219-5b2ca832f110", + "modified": "2021-01-13T01:50:52.475Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.439Z", - "description": "Information Flow Enforcement", - "id": "relationship--b49c42ef-95c4-4201-80fc-0e1259d7746f", - "modified": "2021-01-06T18:28:42.439Z", + "created": "2021-01-13T01:50:52.477Z", + "id": "relationship--ae24b4ee-a27e-42a8-9baa-579006ba0b40", + "modified": "2021-01-13T01:50:52.477Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.440Z", - "description": "Information Flow Enforcement", - "id": "relationship--f569e477-046f-435f-973b-3773e54036a8", - "modified": "2021-01-06T18:28:42.440Z", + "created": "2021-01-13T01:50:52.477Z", + "id": "relationship--4179d683-848f-4d67-bbe5-b537e7f27b49", + "modified": "2021-01-13T01:50:52.477Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.440Z", - "description": "Information Flow Enforcement", - "id": "relationship--43972423-c1b3-41e9-a734-5bde2dd1196b", - "modified": "2021-01-06T18:28:42.440Z", + "created": "2021-01-13T01:50:52.478Z", + "id": "relationship--4912bbb5-845c-4290-973b-fd19bdb09568", + "modified": "2021-01-13T01:50:52.478Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--1c2125a9-e082-452b-854a-a3f932196157", - "modified": "2021-01-06T18:28:42.441Z", + "created": "2021-01-13T01:50:52.479Z", + "id": "relationship--ab3f1305-16f9-4273-8c41-b8663e4246d4", + "modified": "2021-01-13T01:50:52.479Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--6aaed86b-d642-4710-a74a-4b265ca37b24", - "modified": "2021-01-06T18:28:42.441Z", + "created": "2021-01-13T01:50:52.481Z", + "id": "relationship--c0f64031-8a70-4ba0-9a11-de5dd92f03af", + "modified": "2021-01-13T01:50:52.481Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d467bc38-284b-4a00-96ac-125f447799fc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.441Z", - "description": "Continuous Monitoring", - "id": "relationship--e224da7d-857e-4fa6-8c7f-2a7ecaf01a65", - "modified": "2021-01-06T18:28:42.441Z", + "created": "2021-01-13T01:50:52.482Z", + "id": "relationship--cba415b6-b2d4-4a8a-b2d7-b27b53d57381", + "modified": "2021-01-13T01:50:52.482Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--04fd5427-79c7-44ea-ae13-11b24778ff1c", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--293a4f36-4ae8-4616-9b98-ea6dfd433fec", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.482Z", + "id": "relationship--6e082b12-e0d2-42b0-8cc5-12e288c9a5e2", + "modified": "2021-01-13T01:50:52.482Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.483Z", + "id": "relationship--a9be10b2-4d64-4d39-b1de-12e60f3e0c54", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--6351d284-bcef-4077-9cc1-730a9e1ddfd6", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.483Z", + "id": "relationship--e8e16a49-634e-446d-b08a-016bcfc09f03", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bb221a04-d4ba-48a7-ab8e-be955e910e1f", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.483Z", + "id": "relationship--a502a76c-934b-4d4a-854c-83fed8de97af", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--bb6ea8db-7a43-45f8-97f8-8e34108bec64", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.483Z", + "id": "relationship--a658eb89-7405-4bca-894d-0316b167d230", + "modified": "2021-01-13T01:50:52.483Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.442Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", - "modified": "2021-01-06T18:28:42.442Z", + "created": "2021-01-13T01:50:52.484Z", + "id": "relationship--1049070c-84fb-4007-b46a-e2ac7f099bee", + "modified": "2021-01-13T01:50:52.484Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.443Z", - "description": "Continuous Monitoring", - "id": "relationship--5e01c5f9-e4c9-4e0e-8ff7-0f240a0dacb9", - "modified": "2021-01-06T18:28:42.443Z", + "created": "2021-01-13T01:50:52.484Z", + "id": "relationship--c26898e9-b9ce-456b-a24e-2d1382152ee9", + "modified": "2021-01-13T01:50:52.484Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.443Z", - "description": "Continuous Monitoring", - "id": "relationship--c3780403-411c-40e9-a6ea-1ad9b5885696", - "modified": "2021-01-06T18:28:42.443Z", + "created": "2021-01-13T01:50:52.485Z", + "id": "relationship--4009e0b1-d0d4-45fd-ba12-979ceb3c3525", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.444Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2d4074f6-725f-403e-b965-4d894b997f72", - "modified": "2021-01-06T18:28:42.444Z", + "created": "2021-01-13T01:50:52.485Z", + "id": "relationship--35c32222-3407-4f86-8062-b45f84233416", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--1da2ebba-cb57-41b6-b06d-1ad1b7c2419d", - "modified": "2021-01-06T18:28:42.445Z", + "created": "2021-01-13T01:50:52.485Z", + "id": "relationship--a492b74f-2302-4e22-a4c4-c5a5f07a4fe8", + "modified": "2021-01-13T01:50:52.485Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2699ed4b-39f9-4a68-bfc3-e28a980df6e7", - "modified": "2021-01-06T18:28:42.445Z", + "created": "2021-01-13T01:50:52.486Z", + "id": "relationship--771657a6-aa86-4135-80d8-1ec41a2fc3b5", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--184b891b-fb3b-47ae-89f3-6fa8c1f311fa", - "modified": "2021-01-06T18:28:42.445Z", + "created": "2021-01-13T01:50:52.486Z", + "id": "relationship--9b496d16-d884-4aa7-a90b-8911efde65ee", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--2bc93b37-3253-4fc7-b823-400065326116", - "modified": "2021-01-06T18:28:42.445Z", + "created": "2021-01-13T01:50:52.486Z", + "id": "relationship--d0aedc49-5c19-4c4c-90a5-8037b3a1a87d", + "modified": "2021-01-13T01:50:52.486Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.445Z", - "description": "Flaw Remediation, Malicious Code Protection, Information System Monitoring", - "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:42.445Z", + "created": "2021-01-13T01:50:52.487Z", + "id": "relationship--d2586554-e6d7-4126-ab2f-2e7d265fad8b", + "modified": "2021-01-13T01:50:52.487Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.446Z", - "description": "Information Flow Enforcement", - "id": "relationship--f700f7c6-feec-4798-a478-6aa12ac260c0", - "modified": "2021-01-06T18:28:42.446Z", + "created": "2021-01-13T01:50:52.487Z", + "id": "relationship--1deae7fb-7370-4619-88d0-ec7181c7cf39", + "modified": "2021-01-13T01:50:52.487Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ef67e13e-5598-4adc-bdb2-998225874fa9", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.446Z", - "description": "Information Flow Enforcement", - "id": "relationship--50767656-fb15-40d9-a66f-740a494581c0", - "modified": "2021-01-06T18:28:42.446Z", + "created": "2021-01-13T01:50:52.488Z", + "id": "relationship--af5175bc-dc1b-4a4e-bfd2-f849bf9d0b41", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", - "modified": "2021-01-06T18:28:42.447Z", + "created": "2021-01-13T01:50:52.488Z", + "id": "relationship--ba75d66b-8b73-41ca-9528-c570cc0573aa", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", - "modified": "2021-01-06T18:28:42.447Z", + "created": "2021-01-13T01:50:52.488Z", + "id": "relationship--a6e602ed-a027-4a48-9fa2-7723490fe5aa", + "modified": "2021-01-13T01:50:52.488Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.447Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.447Z", + "created": "2021-01-13T01:50:52.489Z", + "id": "relationship--c18fc882-10b1-44a8-a225-40d084e46fa3", + "modified": "2021-01-13T01:50:52.489Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.448Z", - "description": "Continuous Monitoring", - "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", - "modified": "2021-01-06T18:28:42.448Z", + "created": "2021-01-13T01:50:52.489Z", + "id": "relationship--690434f8-aef4-4809-82bc-d6b3f94f31c7", + "modified": "2021-01-13T01:50:52.489Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.449Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", - "modified": "2021-01-06T18:28:42.449Z", + "created": "2021-01-13T01:50:52.490Z", + "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", + "modified": "2021-01-13T01:50:52.490Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.450Z", - "description": "Information Flow Enforcement, Remote Access", - "id": "relationship--cc1276a5-6ea0-43b7-a864-f5b1f8099c96", - "modified": "2021-01-06T18:28:42.450Z", + "created": "2021-01-13T01:50:52.490Z", + "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", + "modified": "2021-01-13T01:50:52.490Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.451Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--ec22bc58-0467-4586-98f7-1a4c58300c44", - "modified": "2021-01-06T18:28:42.451Z", + "created": "2021-01-13T01:50:52.491Z", + "id": "relationship--972cd8ad-1298-4ec9-b33f-7dec904c36bd", + "modified": "2021-01-13T01:50:52.491Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.451Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.451Z", + "created": "2021-01-13T01:50:52.492Z", + "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.452Z", - "description": "Boundary Protection", - "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", - "modified": "2021-01-06T18:28:42.452Z", + "created": "2021-01-13T01:50:52.492Z", + "id": "relationship--875ebf39-bd86-41a3-8ab1-666b6abf449c", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:42.453Z", + "created": "2021-01-13T01:50:52.492Z", + "id": "relationship--18fb970f-e115-4d76-b29b-170e5887c906", + "modified": "2021-01-13T01:50:52.492Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:42.453Z", + "created": "2021-01-13T01:50:52.493Z", + "id": "relationship--abaaf543-0a3f-4e1c-93fb-89f49ee66d8c", + "modified": "2021-01-13T01:50:52.493Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.453Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14432486-12ea-4c05-af05-3d33181ac41b", - "modified": "2021-01-06T18:28:42.453Z", + "created": "2021-01-13T01:50:52.497Z", + "id": "relationship--d16d88b4-cebe-48ac-bda6-39004d4f6796", + "modified": "2021-01-13T01:50:52.497Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.454Z", - "description": "Continuous Monitoring", - "id": "relationship--9054ee20-c7b5-49da-ab47-0285596f3c68", - "modified": "2021-01-06T18:28:42.454Z", + "created": "2021-01-13T01:50:52.497Z", + "id": "relationship--2daf7507-8911-48d3-bb84-823286e2a514", + "modified": "2021-01-13T01:50:52.497Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:42.455Z", + "created": "2021-01-13T01:50:52.498Z", + "id": "relationship--22f5561b-de7e-4bf1-8e6c-7671c85a55fd", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:42.455Z", + "created": "2021-01-13T01:50:52.498Z", + "id": "relationship--f26e9db2-57f1-43fb-b9e6-1483b93fa802", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.455Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--4663250d-6195-4c2d-8acc-2e3f32900e63", - "modified": "2021-01-06T18:28:42.455Z", + "created": "2021-01-13T01:50:52.498Z", + "id": "relationship--a53d12e9-9033-40f8-8e81-5791c9430acc", + "modified": "2021-01-13T01:50:52.498Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.456Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:42.456Z", + "created": "2021-01-13T01:50:52.499Z", + "id": "relationship--43fc3e5a-697e-4b9c-a722-47142ad2dd6c", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.456Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--703c0e03-6a13-4884-8cd4-8d2568e479fd", - "modified": "2021-01-06T18:28:42.456Z", + "created": "2021-01-13T01:50:52.499Z", + "id": "relationship--2c095030-aba9-4010-a0a5-e6b9db373178", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.457Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--8ec72826-a0ce-454d-be2c-b4c58752f7ed", - "modified": "2021-01-06T18:28:42.457Z", + "created": "2021-01-13T01:50:52.499Z", + "id": "relationship--bb77c8a6-56e0-492f-a4d9-61ea4d81a39e", + "modified": "2021-01-13T01:50:52.499Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--2827bb20-7e06-46e4-a22c-f111d51c1f09", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.500Z", + "id": "relationship--97838f19-7ccc-4a2d-b9f1-fd0fa3e25af2", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.500Z", + "id": "relationship--a176ee3d-c9e2-43c4-a509-f75c6c6806c3", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.500Z", + "id": "relationship--8dd5ed30-c7f9-433a-bfa8-3dba9ea82d5f", + "modified": "2021-01-13T01:50:52.500Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--ec5f214c-2080-4371-8d50-d00725ce6ac9", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--798e5bec-652c-44e4-9a0b-f0e75f854f3d", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--c0384fd8-559c-47e9-9efa-4b614f48b266", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--85e97807-c5a7-4a75-8cb2-80d13fdb69f7", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.458Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--34cc3471-b3ef-4d6b-ada8-004c7bc791ca", - "modified": "2021-01-06T18:28:42.458Z", + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--9d72bba7-7cb2-4bac-ae0e-5f9434e6d989", + "modified": "2021-01-13T01:50:52.501Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--4be00890-52d1-4d3e-b088-546892ad5d35", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.459Z", - "description": "Baseline Configuration, Access Restrictions for Change, Configuration Settings, Least Functionality", - "id": "relationship--2723a871-029f-498c-aff1-012572ba819b", - "modified": "2021-01-06T18:28:42.459Z", + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--fc301be2-368c-4648-a6e6-87791043dc96", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.460Z", - "description": "Continuous Monitoring", - "id": "relationship--685b06fd-d2d7-40f4-9b28-00a665ac0f0e", - "modified": "2021-01-06T18:28:42.460Z", + "created": "2021-01-13T01:50:52.501Z", + "id": "relationship--ed321e42-11c2-42ab-a0c9-adbb8fbfcbc6", + "modified": "2021-01-13T01:50:52.501Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.460Z", - "description": "Continuous Monitoring", - "id": "relationship--e81074ab-bdc6-4e9f-a374-cf2f9039f137", - "modified": "2021-01-06T18:28:42.460Z", + "created": "2021-01-13T01:50:52.502Z", + "id": "relationship--1631a6be-daed-460e-abc9-88bbe9c2d576", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", - "modified": "2021-01-06T18:28:42.461Z", + "created": "2021-01-13T01:50:52.502Z", + "id": "relationship--a38a4014-6a89-40ab-9fb3-660d787fdea9", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:42.461Z", + "created": "2021-01-13T01:50:52.502Z", + "id": "relationship--b7f0f0f1-c2fa-4b5a-b110-d2f34c1afd0c", + "modified": "2021-01-13T01:50:52.502Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:42.461Z", + "created": "2021-01-13T01:50:52.503Z", + "id": "relationship--4f229084-7e14-41c4-b8d5-00a42f320441", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.461Z", - "description": "Information System Monitoring, Software, Firmware, and Information Integrity", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:42.461Z", + "created": "2021-01-13T01:50:52.503Z", + "id": "relationship--113181ed-6d28-478e-a6d4-e732ea9cbad7", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6025c7fb-89bb-454d-9f78-ed0d89b567a5", - "modified": "2021-01-06T18:28:42.462Z", + "created": "2021-01-13T01:50:52.503Z", + "id": "relationship--ec4dada2-14b6-4094-a198-4a565da638e9", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--19557c25-c895-4232-a686-eb7852b3dd23", - "modified": "2021-01-06T18:28:42.462Z", + "created": "2021-01-13T01:50:52.503Z", + "id": "relationship--1110b5b2-5192-4a87-822e-ade8f1a548b2", + "modified": "2021-01-13T01:50:52.503Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--465a96cc-7dfe-4086-bdb7-509e0045eeb7", - "modified": "2021-01-06T18:28:42.462Z", + "created": "2021-01-13T01:50:52.504Z", + "id": "relationship--6556616e-daa0-48c8-81b6-d987c3c28fd8", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.462Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--8669ec42-0f78-487e-b536-4462886d318c", - "modified": "2021-01-06T18:28:42.462Z", + "created": "2021-01-13T01:50:52.504Z", + "id": "relationship--99711ad5-4ff0-4ca8-9239-89b53b95056c", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.463Z", - "description": "Continuous Monitoring", - "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", - "modified": "2021-01-06T18:28:42.463Z", + "created": "2021-01-13T01:50:52.504Z", + "id": "relationship--1d0ff2c4-dd67-46cc-94a8-f8fd5c2708ee", + "modified": "2021-01-13T01:50:52.504Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.464Z", - "description": "Continuous Monitoring", - "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", - "modified": "2021-01-06T18:28:42.464Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--63ed37e4-364e-4ad6-b8ba-52fa86307624", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.464Z", - "description": "Continuous Monitoring", - "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", - "modified": "2021-01-06T18:28:42.464Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--90f3421d-a024-4392-9bcf-d9c03a75d85e", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", - "modified": "2021-01-06T18:28:42.465Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--c5891cce-72ab-4aee-9343-590bf8e8fac7", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.465Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--62c08831-4763-46c5-937a-883682eb6ee0", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.465Z", - "description": "Information Flow Enforcement", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.465Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--9eae3ec4-a58b-46d0-92a1-2925cd512df8", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.466Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--848578ac-f07e-41d4-b984-56f2b377b334", - "modified": "2021-01-06T18:28:42.466Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--a5e1d1ce-a17a-4b86-aadf-c71d8bfe6572", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.466Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--71ca06ed-8a98-48f8-82c4-3c18e80da284", - "modified": "2021-01-06T18:28:42.466Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--c96e1802-9ebb-4b25-a2ca-2179c8d6c773", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--e4b43e9b-c6a8-412a-887d-968c234b818e", - "modified": "2021-01-06T18:28:42.467Z", + "created": "2021-01-13T01:50:52.505Z", + "id": "relationship--26e43003-2a77-4aa7-9460-c4ac2e1d4957", + "modified": "2021-01-13T01:50:52.505Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.467Z", + "created": "2021-01-13T01:50:52.506Z", + "id": "relationship--6c0b69b3-fb47-488d-b51f-07958c2d7c7a", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:42.467Z", + "created": "2021-01-13T01:50:52.506Z", + "id": "relationship--b5bde6ee-fa1c-439e-bc2f-dc75ee03f403", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.467Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.467Z", + "created": "2021-01-13T01:50:52.506Z", + "id": "relationship--307db0c6-c09a-4329-9a66-8007013e87e2", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.468Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", - "modified": "2021-01-06T18:28:42.468Z", + "created": "2021-01-13T01:50:52.506Z", + "id": "relationship--ccd36d4c-d7e2-4b37-83a8-e3b68ad80f52", + "modified": "2021-01-13T01:50:52.506Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.468Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.468Z", + "created": "2021-01-13T01:50:52.507Z", + "id": "relationship--ca2ccc5e-7fb4-46ac-86a1-3be84c1c0d17", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.507Z", + "id": "relationship--4b510a2f-79ad-4951-8819-b1233b5e19c6", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.507Z", + "id": "relationship--ede058b2-bfe5-4fde-ad0e-b6656540b123", + "modified": "2021-01-13T01:50:52.507Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--b243be97-1242-46b9-ac7b-f3274322704b", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--fb9596ec-a208-425d-b13a-3f3f50f0db81", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--ce3e47b7-d015-49aa-a940-85523152097f", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--09c3f201-a35e-4afc-8927-ab8bc1d78823", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--5524976d-9e0b-42ad-b3ae-2640bf1ed27d", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--d1cd9967-c9a0-4f4b-994f-fab89a9c96f0", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--6810b20c-9b96-4e21-8cca-33f75b9acd8e", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.469Z", - "description": "Boundary Protection, Transmission Confidentiality and Integrity, Session Authenticity", - "id": "relationship--4c566c4c-c21a-4c21-a06a-07d9deb62ba1", - "modified": "2021-01-06T18:28:42.469Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--8363e0d7-9e51-402f-91a1-d5be4dbbcc90", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.470Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:42.470Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--5945d863-0a82-4b32-a1b4-3dd4b8a9d721", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.470Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", - "modified": "2021-01-06T18:28:42.470Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--ba3be8bd-eb7c-47cc-9dc4-e3f077af7a37", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--2dbe3b8b-cac0-47d3-a3d6-15b6d0c61da3", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.508Z", + "id": "relationship--61ff469e-dd8a-41ce-ad50-065657fdfca0", + "modified": "2021-01-13T01:50:52.508Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.509Z", + "id": "relationship--0c70c2d7-ee7d-401f-aaac-374c0a8c1fca", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.509Z", + "id": "relationship--eb67e12e-0fac-46e1-83f0-741e91bff088", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.509Z", + "id": "relationship--87cbb28a-e553-4013-bc98-d9f09cafc05c", + "modified": "2021-01-13T01:50:52.509Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.510Z", + "id": "relationship--d67b6fc7-4213-4295-8482-682609a395c4", + "modified": "2021-01-13T01:50:52.510Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.471Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.471Z", + "created": "2021-01-13T01:50:52.510Z", + "id": "relationship--3f5cdf3e-349f-4f23-bc87-950991a2233f", + "modified": "2021-01-13T01:50:52.510Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.473Z", - "description": "Continuous Monitoring", - "id": "relationship--3cedd134-7cdf-4e45-89b5-66673d71c464", - "modified": "2021-01-06T18:28:42.473Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--42996766-37d2-426a-b4a0-727d93d9bb95", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.473Z", - "description": "Continuous Monitoring", - "id": "relationship--2535d843-55cd-4445-99fd-2440a227020e", - "modified": "2021-01-06T18:28:42.473Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--042b7cda-0d11-4e6c-be38-94bbde3f47b6", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.474Z", - "description": "Information Flow Enforcement", - "id": "relationship--28148035-4e92-41f8-8ee8-a0a231ed5820", - "modified": "2021-01-06T18:28:42.474Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--0e3ac3c6-f42a-4b9e-aeed-09a27c02c784", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.474Z", - "description": "Information Flow Enforcement", - "id": "relationship--75a893ff-7442-45a5-93c8-106c9a13e4c2", - "modified": "2021-01-06T18:28:42.474Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--eceab300-3c1c-41a9-9b34-99de6a56b277", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:42.475Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--37d9f348-927a-403c-9ee9-50655728a633", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--45923cfc-ecd5-4b40-984c-c33be48dd751", - "modified": "2021-01-06T18:28:42.475Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--c4e37f39-b2c4-4d2e-8366-47839e144844", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:42.475Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--f75017b4-bf93-4fb8-90d9-8b195ea262ad", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--db5103f0-aa5f-4912-b669-8aeca8eed5bc", - "modified": "2021-01-06T18:28:42.475Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--fd4ea8d0-44ce-4727-91df-b3555274dea1", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.475Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--67582871-0617-4962-8223-722ae3d5c9b7", - "modified": "2021-01-06T18:28:42.475Z", + "created": "2021-01-13T01:50:52.511Z", + "id": "relationship--073aecff-310e-4f67-b2da-327f29251aed", + "modified": "2021-01-13T01:50:52.511Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.476Z", - "description": "Malicious Code Protection, Information System Monitoring, Spam Protection", - "id": "relationship--70aa2a11-8bb5-4dac-a653-6e7bed5cfa9e", - "modified": "2021-01-06T18:28:42.476Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--b8f346c4-c9a5-42ad-9d81-1e32b1c1fb8c", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57338ae8-c99b-4a46-b52e-473c1d2546ee", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.476Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--560df56b-1300-428b-8cb1-ef47dc874d8f", - "modified": "2021-01-06T18:28:42.476Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--e16ea92b-55d3-4c2b-ba75-d1a590059d06", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--a3ac2917-7853-4cd6-aeeb-a3244b6a52f5", - "modified": "2021-01-06T18:28:42.477Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--56479ba1-2a6d-46da-8f28-476dfcc5007e", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--7b94a7e1-93fc-4ba0-b556-a19a1c92c81f", - "modified": "2021-01-06T18:28:42.477Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--8d644260-bf9c-4e3a-ba0e-d174802670e3", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.477Z", - "description": "Boundary Protection, Detonation Chambers", - "id": "relationship--3fb0fad4-de37-40b2-ba11-c7a266a74ea0", - "modified": "2021-01-06T18:28:42.477Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--3b806c37-1243-4e23-936a-f03780e7e48d", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2e01e615-21ef-49ec-adfe-5380efa1e051", - "target_ref": "attack-pattern--2e34237d-8574-43f6-aace-ae2915de8597", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.478Z", - "description": "Continuous Monitoring", - "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", - "modified": "2021-01-06T18:28:42.478Z", + "created": "2021-01-13T01:50:52.512Z", + "id": "relationship--868802a7-c65a-45ce-8be4-958ac2904c68", + "modified": "2021-01-13T01:50:52.512Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.478Z", - "description": "Continuous Monitoring", - "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", - "modified": "2021-01-06T18:28:42.478Z", + "created": "2021-01-13T01:50:52.513Z", + "id": "relationship--d5a69e86-fc3b-4ef6-9300-ce4d4513531a", + "modified": "2021-01-13T01:50:52.513Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.479Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", - "modified": "2021-01-06T18:28:42.479Z", + "created": "2021-01-13T01:50:52.516Z", + "id": "relationship--95b2dadc-6ba2-4013-b82d-12869e2bbd38", + "modified": "2021-01-13T01:50:52.516Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.479Z", - "description": "Information Flow Enforcement", - "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", - "modified": "2021-01-06T18:28:42.479Z", + "created": "2021-01-13T01:50:52.517Z", + "id": "relationship--f4da3c0e-bc4a-4349-aead-3153b29ae5d5", + "modified": "2021-01-13T01:50:52.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", - "modified": "2021-01-06T18:28:42.480Z", + "created": "2021-01-13T01:50:52.517Z", + "id": "relationship--a93de52e-25ad-48e1-b708-8f095cee26b3", + "modified": "2021-01-13T01:50:52.517Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", - "modified": "2021-01-06T18:28:42.480Z", + "created": "2021-01-13T01:50:52.519Z", + "id": "relationship--59d4d5e1-93ba-4232-94fe-5a217601b1fc", + "modified": "2021-01-13T01:50:52.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", - "modified": "2021-01-06T18:28:42.480Z", + "created": "2021-01-13T01:50:52.519Z", + "id": "relationship--b653e12f-cbf8-4a58-b0c8-b14e0d6bb329", + "modified": "2021-01-13T01:50:52.519Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.480Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", - "modified": "2021-01-06T18:28:42.480Z", + "created": "2021-01-13T01:50:52.522Z", + "id": "relationship--7f7fe602-a786-4821-8a68-bbc8f94bd4ae", + "modified": "2021-01-13T01:50:52.522Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:42.481Z", + "created": "2021-01-13T01:50:52.522Z", + "id": "relationship--1f1ef544-28af-47b5-96eb-4707ab9850e9", + "modified": "2021-01-13T01:50:52.522Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:42.481Z", + "created": "2021-01-13T01:50:52.523Z", + "id": "relationship--046969dc-bf88-4f42-9d54-604849dac059", + "modified": "2021-01-13T01:50:52.523Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--f5b85731-9e3d-4002-8d22-0dfcf49808b0", - "modified": "2021-01-06T18:28:42.481Z", + "created": "2021-01-13T01:50:52.523Z", + "id": "relationship--38912acf-7f73-4f25-bc14-771379ae34a3", + "modified": "2021-01-13T01:50:52.523Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--f846069e-7435-4105-aa82-22d41302aaa5", - "modified": "2021-01-06T18:28:42.481Z", + "created": "2021-01-13T01:50:52.524Z", + "id": "relationship--b5b65d40-d256-413e-b550-1db72b57fdfa", + "modified": "2021-01-13T01:50:52.524Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.481Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--bac8b643-4386-4182-9e57-df0c4bb702c1", - "modified": "2021-01-06T18:28:42.481Z", + "created": "2021-01-13T01:50:52.525Z", + "id": "relationship--09db74d2-047e-449f-94a1-598d780f99bd", + "modified": "2021-01-13T01:50:52.525Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--028527a7-52b3-47d6-8095-1be0f05e2b10", - "modified": "2021-01-06T18:28:42.482Z", + "created": "2021-01-13T01:50:52.525Z", + "id": "relationship--e184026e-fad4-452d-b1f5-774790e09509", + "modified": "2021-01-13T01:50:52.525Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--51a3464d-3795-426c-afbd-c0ca6fcbd1be", - "modified": "2021-01-06T18:28:42.482Z", + "created": "2021-01-13T01:50:52.526Z", + "id": "relationship--b9582b24-186f-461c-b84e-01b4af8d8a78", + "modified": "2021-01-13T01:50:52.526Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.482Z", - "description": "Boundary Protection, Secure Name/Address Resolution Service (Autoritative Source), Secure Name/Address Resolution Service (Recursive or Caching Resolver), Architecture and Provisioning for Name/Address Resolution Service ", - "id": "relationship--84fa21b9-0f5b-4e7c-b050-566e503a31c1", - "modified": "2021-01-06T18:28:42.482Z", + "created": "2021-01-13T01:50:52.527Z", + "id": "relationship--f8734fa4-9e96-4d1f-b5b2-cfa4a5767dab", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--064fc7c9-7ab3-434f-ab24-e5bd12c95b11", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.483Z", - "description": "Continuous Monitoring", - "id": "relationship--d02df215-cc43-4ef0-9966-4b1839b11c31", - "modified": "2021-01-06T18:28:42.483Z", + "created": "2021-01-13T01:50:52.527Z", + "id": "relationship--9f2c1c23-d1a8-4036-98c6-1fe766b042af", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.483Z", - "description": "Continuous Monitoring", - "id": "relationship--3159b1ed-518b-448c-9d5c-7c94fc09cc68", - "modified": "2021-01-06T18:28:42.483Z", + "created": "2021-01-13T01:50:52.527Z", + "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.484Z", - "description": "Information Flow Enforcement", - "id": "relationship--3ea53515-fd62-4796-b04b-41e4f6ac4eb2", - "modified": "2021-01-06T18:28:42.484Z", + "created": "2021-01-13T01:50:52.527Z", + "id": "relationship--af647ad8-da6c-4899-87a5-02dc14db3c1f", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.484Z", - "description": "Information Flow Enforcement", - "id": "relationship--dd9729fb-adbc-4371-89c2-82add58d5360", - "modified": "2021-01-06T18:28:42.484Z", + "created": "2021-01-13T01:50:52.527Z", + "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", + "modified": "2021-01-13T01:50:52.527Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3720da54-cdbd-4f6c-804d-acb05cef0c25", - "modified": "2021-01-06T18:28:42.485Z", + "created": "2021-01-13T01:50:52.528Z", + "id": "relationship--396a7485-7c77-46a9-8562-3f5cf2811764", + "modified": "2021-01-13T01:50:52.528Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8b6899c5-83ff-46a6-80c8-24ce13924609", - "modified": "2021-01-06T18:28:42.485Z", + "created": "2021-01-13T01:50:52.529Z", + "id": "relationship--6cae7608-6e02-4083-9c6b-85414a3e0a58", + "modified": "2021-01-13T01:50:52.529Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.485Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--8456c2bd-3127-41cd-88d3-eab1e88712ad", - "modified": "2021-01-06T18:28:42.485Z", + "created": "2021-01-13T01:50:52.529Z", + "id": "relationship--a7b125ef-ee19-4da3-97c7-9e5f88a9c37f", + "modified": "2021-01-13T01:50:52.529Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.486Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--c73b253a-44f9-4578-ab6c-a4dc40fdffe0", - "modified": "2021-01-06T18:28:42.486Z", + "created": "2021-01-13T01:50:52.530Z", + "id": "relationship--efa2faa4-2283-4c61-acc6-d0b0f4265ed5", + "modified": "2021-01-13T01:50:52.530Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.486Z", - "description": "Boundary Protection", - "id": "relationship--0f12b8c5-645a-4db2-939e-2462fedc6be0", - "modified": "2021-01-06T18:28:42.486Z", + "created": "2021-01-13T01:50:52.530Z", + "id": "relationship--29be95a5-4b1c-4bc3-a19a-d810bc58ba1a", + "modified": "2021-01-13T01:50:52.530Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--118f61a5-eb3e-4fb6-931f-2096647f4ecd", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.487Z", - "description": "Boundary Protection", - "id": "relationship--c069b98e-b11c-4060-8764-51c8aa0a72be", - "modified": "2021-01-06T18:28:42.487Z", + "created": "2021-01-13T01:50:52.531Z", + "id": "relationship--c766bbc6-6b85-42b9-9ca6-4ea076c7191b", + "modified": "2021-01-13T01:50:52.531Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7bd9c723-2f78-4309-82c5-47cad406572b", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.488Z", - "description": "Continuous Monitoring", - "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", - "modified": "2021-01-06T18:28:42.488Z", + "created": "2021-01-13T01:50:52.531Z", + "id": "relationship--0079f7f0-5d6b-4bb7-925a-02c834e1674d", + "modified": "2021-01-13T01:50:52.531Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.488Z", - "description": "Information Flow Enforcement", - "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", - "modified": "2021-01-06T18:28:42.488Z", + "created": "2021-01-13T01:50:52.532Z", + "id": "relationship--2c20dc0e-2a5d-4015-9115-b0f287e6f9dc", + "modified": "2021-01-13T01:50:52.532Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.489Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--cd37cbfe-57f4-4c6e-a47b-3fab841d0fee", - "modified": "2021-01-06T18:28:42.489Z", + "created": "2021-01-13T01:50:52.533Z", + "id": "relationship--84537d74-144f-4924-af98-1209d4b688cf", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.489Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", - "modified": "2021-01-06T18:28:42.489Z", + "created": "2021-01-13T01:50:52.533Z", + "id": "relationship--0ca863bb-2c4d-44c2-a41b-ae96972bd4e7", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.490Z", - "description": "Boundary Protection", - "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", - "modified": "2021-01-06T18:28:42.490Z", + "created": "2021-01-13T01:50:52.533Z", + "id": "relationship--e557b4bd-32aa-4bbe-a913-b9228a547c34", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--14a2b13b-b34b-4857-9346-3ca95eaace59", - "modified": "2021-01-06T18:28:42.491Z", + "created": "2021-01-13T01:50:52.533Z", + "id": "relationship--beac07e7-5f32-4772-adf1-dbae99efce66", + "modified": "2021-01-13T01:50:52.533Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", - "modified": "2021-01-06T18:28:42.491Z", + "created": "2021-01-13T01:50:52.534Z", + "id": "relationship--aec88f4f-50a7-4f1f-9cc3-bb34817c76e7", + "modified": "2021-01-13T01:50:52.534Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.491Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", - "modified": "2021-01-06T18:28:42.491Z", + "created": "2021-01-13T01:50:52.535Z", + "id": "relationship--1fe8af30-185a-43ba-810b-84201e914785", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.492Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--2dc8f3ab-0a30-41e4-93bb-386c3f97b66e", - "modified": "2021-01-06T18:28:42.492Z", + "created": "2021-01-13T01:50:52.535Z", + "id": "relationship--ed904066-9ad4-45e8-a978-437dde2b9d4c", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.492Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--26b74832-d63a-4efd-9c6a-0e6f1aa45ebc", - "modified": "2021-01-06T18:28:42.492Z", + "created": "2021-01-13T01:50:52.535Z", + "id": "relationship--423f0e66-8e26-4bac-bc8a-3e64c29d0695", + "modified": "2021-01-13T01:50:52.535Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.493Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--8421b1c3-73c9-4ff7-b552-ef2917c0d34b", - "modified": "2021-01-06T18:28:42.493Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--7df56434-eef4-4a6e-8e17-6f2db8c784e2", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.493Z", - "description": "Continuous Monitoring", - "id": "relationship--cbe17ed0-3f00-4d37-be83-2dd6ba0949e5", - "modified": "2021-01-06T18:28:42.493Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--30b1c2cd-21ef-42fa-9f18-5c284804bdec", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.494Z", - "description": "Information Flow Enforcement", - "id": "relationship--c6ffcd86-474c-4a38-a851-ca826d6fd105", - "modified": "2021-01-06T18:28:42.494Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--dae44126-d7af-48e6-8891-3c74ecc049b5", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--1be0095a-cfec-41e7-ab07-5d0175585db7", - "modified": "2021-01-06T18:28:42.495Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--87da20cf-d505-47bd-9475-5de2ad2a7f20", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.495Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7ac507b6-d448-4a44-8b12-b1b120d09cd3", - "modified": "2021-01-06T18:28:42.495Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--50a40a34-0f8b-4092-97cd-6e5c744253bc", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.496Z", - "description": "Boundary Protection", - "id": "relationship--cd50ea2b-d23d-4898-93cd-f6e5195cf0a4", - "modified": "2021-01-06T18:28:42.496Z", + "created": "2021-01-13T01:50:52.540Z", + "id": "relationship--3aedc46a-9663-48fe-b1a2-cd27588b9be5", + "modified": "2021-01-13T01:50:52.540Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b18eae87-b469-4e14-b454-b171b416bc18", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--33ca6bb1-cd42-4562-9ea6-199837a30a43", - "modified": "2021-01-06T18:28:42.498Z", + "created": "2021-01-13T01:50:52.541Z", + "id": "relationship--acef280f-4611-4452-ba78-4d2abeb9dc5a", + "modified": "2021-01-13T01:50:52.541Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", - "modified": "2021-01-06T18:28:42.498Z", + "created": "2021-01-13T01:50:52.545Z", + "id": "relationship--cf782d56-ebf2-4dc5-82e1-c2b858c60aa4", + "modified": "2021-01-13T01:50:52.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.498Z", - "description": "Baseline Configuration, Configuration Settings, Least Functionality", - "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", - "modified": "2021-01-06T18:28:42.498Z", + "created": "2021-01-13T01:50:52.545Z", + "id": "relationship--f1a0154f-e205-4604-ab0e-1a5813b3949a", + "modified": "2021-01-13T01:50:52.545Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.499Z", - "description": "Continuous Monitoring", - "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", - "modified": "2021-01-06T18:28:42.499Z", + "created": "2021-01-13T01:50:52.546Z", + "id": "relationship--313aa1e3-d4b1-446b-a288-cd7afea7cbb8", + "modified": "2021-01-13T01:50:52.546Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.500Z", - "description": "Information Flow Enforcement", - "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", - "modified": "2021-01-06T18:28:42.500Z", + "created": "2021-01-13T01:50:52.550Z", + "id": "relationship--d1bb6cf2-ca21-4df8-bcf7-8204e4c74acf", + "modified": "2021-01-13T01:50:52.550Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.501Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--7bc6729d-b031-47c2-8d6e-83a704090756", - "modified": "2021-01-06T18:28:42.501Z", + "created": "2021-01-13T01:50:52.550Z", + "id": "relationship--9e5c24d8-9af9-4099-ba58-7c764f950269", + "modified": "2021-01-13T01:50:52.550Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.501Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--00720d20-420f-4fe9-898b-55d8566fc104", - "modified": "2021-01-06T18:28:42.501Z", + "created": "2021-01-13T01:50:52.553Z", + "id": "relationship--e4531376-9d3f-4796-9914-77e85888a2b7", + "modified": "2021-01-13T01:50:52.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.502Z", - "description": "Boundary Protection", - "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", - "modified": "2021-01-06T18:28:42.502Z", + "created": "2021-01-13T01:50:52.553Z", + "id": "relationship--52436074-3033-4f1d-acb1-85bab7a3c9d8", + "modified": "2021-01-13T01:50:52.553Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", - "modified": "2021-01-06T18:28:42.503Z", + "created": "2021-01-13T01:50:52.555Z", + "id": "relationship--1062add1-05fd-4287-a09d-1d875b67be7a", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", - "modified": "2021-01-06T18:28:42.503Z", + "created": "2021-01-13T01:50:52.555Z", + "id": "relationship--9abad197-3a16-4a90-adb6-bfb17c42b71b", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", - "modified": "2021-01-06T18:28:42.503Z", + "created": "2021-01-13T01:50:52.555Z", + "id": "relationship--c77bc137-41b5-4edd-bbd8-3c2ea23c2007", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.503Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.503Z", + "created": "2021-01-13T01:50:52.555Z", + "id": "relationship--9efd48df-cb6b-4875-8796-308e775f63cb", + "modified": "2021-01-13T01:50:52.555Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", + "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.556Z", + "id": "relationship--da85bbb8-378d-4fa6-a53f-8ed4456e4328", + "modified": "2021-01-13T01:50:52.556Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.504Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.504Z", + "created": "2021-01-13T01:50:52.556Z", + "id": "relationship--c1936130-b7fb-4e61-a607-fd1d482ee97e", + "modified": "2021-01-13T01:50:52.556Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.504Z", - "description": "Baseline Configuration, Configuration Settings", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.504Z", + "created": "2021-01-13T01:50:52.556Z", + "id": "relationship--b5bf8437-4f4e-432e-99f5-6877bc85191c", + "modified": "2021-01-13T01:50:52.556Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--dd1b81d5-b51e-4ab4-90d5-f01548b5c59a", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--23277cb5-4b15-4a17-9fab-0937b0bfbff5", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--54bbe46a-092f-4900-af93-f41a2a0fbfee", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--023c15e4-0c8f-4d35-9e93-4fd41e9d19da", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--accaa4df-1a0f-4a32-ba2f-3be36ebd107b", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--7619d492-4804-46fc-8748-52c1d182584a", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--8a6d1458-d96a-4ed5-a8ad-78fcd70f41e6", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--fa9096cf-5705-4e53-b18d-a786de974669", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.557Z", + "id": "relationship--af0e4ebf-0d6a-41e0-807f-ebce1bf74a5e", + "modified": "2021-01-13T01:50:52.557Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.505Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--a713ae45-84f5-4974-871f-335961e8721d", - "modified": "2021-01-06T18:28:42.505Z", + "created": "2021-01-13T01:50:52.560Z", + "id": "relationship--34c170ea-51f8-41ad-83f0-deccdd1e4973", + "modified": "2021-01-13T01:50:52.560Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--cb408d28-8cab-42ea-a7f6-dc47c8353f73", - "modified": "2021-01-06T18:28:42.506Z", + "created": "2021-01-13T01:50:52.560Z", + "id": "relationship--ebc7e103-2892-4a83-a768-fa4e6d6eaf6e", + "modified": "2021-01-13T01:50:52.560Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--312ff30c-fbfb-4e55-8ce7-d9a3a3bd83ba", - "modified": "2021-01-06T18:28:42.506Z", + "created": "2021-01-13T01:50:52.561Z", + "id": "relationship--30d13aaf-93be-4b26-96d8-a92298cca232", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", + "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--f3ace1b8-5fd3-4e0b-840f-c7d07bee1289", - "modified": "2021-01-06T18:28:42.506Z", + "created": "2021-01-13T01:50:52.561Z", + "id": "relationship--15716f4c-c1fd-42ea-8565-b8df9f43bb2e", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--0f3c8987-8a42-4d0e-a389-65f055610296", - "modified": "2021-01-06T18:28:42.506Z", + "created": "2021-01-13T01:50:52.561Z", + "id": "relationship--73185afd-93e2-4487-aa95-446ed18456dd", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.506Z", - "description": "Security Function Isolation, Boundary Protection, Transmission Confidentiality and Integrity, Protection of Information at Rest", - "id": "relationship--cd80f23f-edd6-4151-83ca-e9d9be6a469a", - "modified": "2021-01-06T18:28:42.506Z", + "created": "2021-01-13T01:50:52.561Z", + "id": "relationship--cfad7fa4-3583-4108-ab7f-b77d337afb69", + "modified": "2021-01-13T01:50:52.561Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--2bd399b4-c42d-4e4d-bd57-cd6386c50264", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--6900caa2-7b40-4c30-925d-28dd1ea9e7e8", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--d1e6595e-1d7d-4f5b-84f1-ef68df354555", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--4d6b121e-348c-4b5b-8c66-a44258a67451", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--554b6166-4880-416d-b078-7a9818f41dcb", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--a6ab8da3-1abc-4177-9589-9ff4e22808d0", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--15258c47-84ce-4550-b020-873b5a19d1b7", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--3a0aa652-b6b9-4714-84c8-7aab9a486ccc", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--8a2e6258-9e8f-45bf-bda9-893bc9d3938b", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.507Z", - "description": "Malicious Code Protection, Information System Monitoring", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.507Z", + "created": "2021-01-13T01:50:52.563Z", + "id": "relationship--fef1ee07-5c91-4deb-904e-38bb91b62956", + "modified": "2021-01-13T01:50:52.563Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.508Z", - "description": "Information Flow Enforcement", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.508Z", + "created": "2021-01-13T01:50:52.565Z", + "id": "relationship--4b0b4c66-a044-4b18-9034-285b0eaa44fb", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.508Z", - "description": "Information Flow Enforcement", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.508Z", + "created": "2021-01-13T01:50:52.565Z", + "id": "relationship--ba374b5c-8533-4086-866b-f4a1fc54bad5", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.509Z", - "description": "Information Flow Enforcement", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.509Z", + "created": "2021-01-13T01:50:52.565Z", + "id": "relationship--df8bec88-965c-48bd-87f8-6a1b87a39535", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.509Z", - "description": "Continuous Monitoring", - "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", - "modified": "2021-01-06T18:28:42.509Z", + "created": "2021-01-13T01:50:52.565Z", + "id": "relationship--af3f2f7d-338b-400d-b275-525348209dad", + "modified": "2021-01-13T01:50:52.565Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.510Z", - "description": "Continuous Monitoring", - "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", - "modified": "2021-01-06T18:28:42.510Z", + "created": "2021-01-13T01:50:52.566Z", + "id": "relationship--ea9408fc-6013-49e7-b3aa-21c0f5178b1b", + "modified": "2021-01-13T01:50:52.566Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.510Z", - "description": "Continuous Monitoring", - "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", - "modified": "2021-01-06T18:28:42.510Z", + "created": "2021-01-13T01:50:52.566Z", + "id": "relationship--99a4ed9a-3e1e-47d6-a9cd-ad3274655fac", + "modified": "2021-01-13T01:50:52.566Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0db0de28-3446-43c0-94ec-705e5fcbc3a6", - "modified": "2021-01-06T18:28:42.511Z", + "created": "2021-01-13T01:50:52.567Z", + "id": "relationship--4d254cca-7919-436e-8828-8e12666fa165", + "modified": "2021-01-13T01:50:52.567Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--723a2943-0e79-4be6-8019-1f1c0ec657d3", - "modified": "2021-01-06T18:28:42.511Z", + "created": "2021-01-13T01:50:52.568Z", + "id": "relationship--08281c26-b603-443b-816d-51a96c9af643", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--86865f42-1fb8-43bf-a101-fe50d8c21636", - "modified": "2021-01-06T18:28:42.511Z", + "created": "2021-01-13T01:50:52.568Z", + "id": "relationship--bfc817a3-c9fe-4f13-8f04-5a11583ce1ce", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.511Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:42.511Z", + "created": "2021-01-13T01:50:52.568Z", + "id": "relationship--b2800bc0-62ff-460d-a48a-88f4b4d6fffd", + "modified": "2021-01-13T01:50:52.568Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4698ee55-9b3d-47b8-9233-43b89b05b1a3", - "modified": "2021-01-06T18:28:42.512Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--1613bc51-18ed-416b-80db-aa7bef85feb8", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--f78f256d-000f-4de7-bf95-b1d731d6982c", - "modified": "2021-01-06T18:28:42.512Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--e327b94b-7194-4ff9-a7c3-6d14d3ac8896", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.512Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--21607e6d-5ceb-4d11-928a-362339a0cd06", - "modified": "2021-01-06T18:28:42.512Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--02d8b4e1-be82-457c-8b79-2e4757cae398", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0348bb1f-8f3e-4913-bbec-0197a7540135", - "modified": "2021-01-06T18:28:42.513Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--16226aae-8f2b-4799-a30f-56f827ce5452", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--b8a1ec41-61a2-489a-ba59-c4fed8713776", - "modified": "2021-01-06T18:28:42.513Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--79b7a1fa-664d-4c49-ae91-6465ced25db9", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d51297ef-eeae-4b82-abbe-585e284adc83", - "modified": "2021-01-06T18:28:42.513Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--79c51fac-fbc1-4766-be8c-b010647a47fd", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6102cdec-21a6-49a2-8566-94910bb97a1c", - "modified": "2021-01-06T18:28:42.513Z", + "created": "2021-01-13T01:50:52.569Z", + "id": "relationship--fdf3ac7e-9224-43be-8662-ff17226c7cf6", + "modified": "2021-01-13T01:50:52.569Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.513Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3c129315-d87f-411e-bf3a-4c9bd3be1394", - "modified": "2021-01-06T18:28:42.513Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--906ce409-0aaf-4a55-bce8-ccafb7cf2e4a", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:42.514Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--f6fe7fa3-e19f-4629-ab63-834af13ca5c7", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f2d0a2d4-6953-435c-8579-b4cd37efb9bc", - "modified": "2021-01-06T18:28:42.514Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--347e9e36-5e80-40b0-afad-680a7322ab44", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.514Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0819e476-dfd4-47f9-853f-ec537614e53e", - "modified": "2021-01-06T18:28:42.514Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--2b9b0895-d5c6-473d-b4b0-e1cfcfad907e", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b8af9a0d-508c-4d55-8f6e-f68e68668ac7", - "modified": "2021-01-06T18:28:42.515Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--60c2dee2-5588-4acd-bbb9-0b97fe27394a", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e8fbdde1-a16d-4b4a-8187-64561fe872f9", - "modified": "2021-01-06T18:28:42.515Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--4aab7ccd-d251-4e55-a896-c86fbc473fb5", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.515Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--2440de4a-67f5-4cb8-85c5-b6d8e0c9c589", - "modified": "2021-01-06T18:28:42.515Z", + "created": "2021-01-13T01:50:52.570Z", + "id": "relationship--3066f603-d78c-4abb-9573-8eb03f487805", + "modified": "2021-01-13T01:50:52.570Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.517Z", - "description": "Information System Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.517Z", + "created": "2021-01-13T01:50:52.571Z", + "id": "relationship--90cd0928-5e32-4ef7-8936-5d00d760368b", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.517Z", - "description": "Information System Monitoring", - "id": "relationship--51c088c6-64af-4982-8784-15bbd8a16489", - "modified": "2021-01-06T18:28:42.517Z", + "created": "2021-01-13T01:50:52.571Z", + "id": "relationship--34bcd1dc-25cf-4838-a45f-b177b8bf08a8", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--54a649ff-439a-41a4-9856-8d144a2551ba", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.518Z", - "description": "Information System Monitoring", - "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", - "modified": "2021-01-06T18:28:42.518Z", + "created": "2021-01-13T01:50:52.571Z", + "id": "relationship--8e5b9f64-2990-46d3-aec1-547e6a1e52b7", + "modified": "2021-01-13T01:50:52.571Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.519Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--cafc7f4a-40d4-4d1f-b20a-5298a61036d0", - "modified": "2021-01-06T18:28:42.519Z", + "created": "2021-01-13T01:50:52.572Z", + "id": "relationship--89796b86-a75e-413c-afe8-be7851591104", + "modified": "2021-01-13T01:50:52.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.519Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--794fec13-dcd0-4d44-a395-d39ed8a70fee", - "modified": "2021-01-06T18:28:42.519Z", + "created": "2021-01-13T01:50:52.572Z", + "id": "relationship--b421673d-4b9b-4b3d-89d3-6715b3ed996a", + "modified": "2021-01-13T01:50:52.572Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.521Z", - "description": "Information System Monitoring", - "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", - "modified": "2021-01-06T18:28:42.521Z", + "created": "2021-01-13T01:50:52.573Z", + "id": "relationship--6de72fa9-7a51-464b-9070-02f04f706492", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.522Z", - "description": "Transmission Confidentiality and Integrity ", - "id": "relationship--833ccde2-70f7-4417-8f4f-1e17c850288b", - "modified": "2021-01-06T18:28:42.522Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.523Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--3affdca4-e4a1-428e-af6d-113518ad9ddb", - "modified": "2021-01-06T18:28:42.523Z", + "created": "2021-01-13T01:50:52.573Z", + "id": "relationship--86c7e71b-d36c-44c5-bb1d-d4ebe01892f2", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.523Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--1aa542c3-d512-49f6-be53-e1d1768fd610", - "modified": "2021-01-06T18:28:42.523Z", + "created": "2021-01-13T01:50:52.573Z", + "id": "relationship--88eb0321-da01-401a-917e-2e6e5690c42c", + "modified": "2021-01-13T01:50:52.573Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.524Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4fde6f08-230c-42d6-a030-407232b58857", - "modified": "2021-01-06T18:28:42.524Z", + "created": "2021-01-13T01:50:52.574Z", + "id": "relationship--99f9c7bf-21d1-4f56-8b72-075c9998ed64", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.524Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c09e2966-7103-4481-a1a4-154b27f714d0", - "modified": "2021-01-06T18:28:42.524Z", + "created": "2021-01-13T01:50:52.574Z", + "id": "relationship--b5932f52-10cc-483b-b956-e841e8420768", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.524Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ba5146a7-d241-4d12-ae60-b3d3574fdf8d", - "modified": "2021-01-06T18:28:42.524Z", + "created": "2021-01-13T01:50:52.574Z", + "id": "relationship--2b6f2243-8871-4299-93c3-4c12f3f09cff", + "modified": "2021-01-13T01:50:52.574Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.525Z", - "description": "Information System Monitoring", - "id": "relationship--f7e13f43-9260-4296-81e0-bbba5cf41640", - "modified": "2021-01-06T18:28:42.525Z", + "created": "2021-01-13T01:50:52.575Z", + "id": "relationship--b3d457e5-dc75-4171-8261-3a66a0e50132", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.526Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--ade30775-6a8d-44eb-a3cf-fc7af71e4d83", - "modified": "2021-01-06T18:28:42.526Z", + "created": "2021-01-13T01:50:52.575Z", + "id": "relationship--229cf14f-900d-4006-8d6f-74536f37e6c8", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.526Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d4b4c8e6-3490-4f50-a8ea-f73de6a79ba6", - "modified": "2021-01-06T18:28:42.526Z", + "created": "2021-01-13T01:50:52.575Z", + "id": "relationship--e356e6b9-2d9f-4982-b0b1-c72e45004018", + "modified": "2021-01-13T01:50:52.575Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--d47c996a-a748-43cf-b0cd-788f3ee0f7b0", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.576Z", + "id": "relationship--619a8478-6522-45b9-997d-96ba85113181", + "modified": "2021-01-13T01:50:52.576Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--9b97fa56-6b81-4286-aba5-ef3d2d78c3d2", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.576Z", + "id": "relationship--d9159aac-d3be-45c3-9fc1-733206e716c5", + "modified": "2021-01-13T01:50:52.576Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a61c7afd-64dd-4605-8e46-9ede1328582c", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.577Z", + "id": "relationship--5f9d27e5-5d22-43fc-af4f-49f679914ca3", + "modified": "2021-01-13T01:50:52.577Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6bcf7578-9616-48c3-bc81-c7b5d27ef8c1", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.578Z", + "id": "relationship--ed32b481-aaec-4d4a-b65c-62ad8e9c647c", + "modified": "2021-01-13T01:50:52.578Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6db9149c-7045-40ad-a4f0-01a0e5f36376", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.579Z", + "id": "relationship--72cc102e-c65a-470a-adbe-70cfac81076c", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.527Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--fe26b191-58fd-47a7-bf45-2d636bf7fa17", - "modified": "2021-01-06T18:28:42.527Z", + "created": "2021-01-13T01:50:52.579Z", + "id": "relationship--941f37c4-4b11-4c64-8451-c139ba20389d", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c9d8dfc0-43d2-4c65-8c15-77b695573923", - "modified": "2021-01-06T18:28:42.528Z", + "created": "2021-01-13T01:50:52.579Z", + "id": "relationship--331a3a80-dc82-4a54-9765-c6ee03410c15", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3c3564b6-eb14-4260-9e4d-a539e44be413", - "modified": "2021-01-06T18:28:42.528Z", + "created": "2021-01-13T01:50:52.579Z", + "id": "relationship--0892bbd9-ae71-4a5f-8121-aa4e4f7b074a", + "modified": "2021-01-13T01:50:52.579Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--79877ed4-3899-4be9-a864-18467ce91600", - "modified": "2021-01-06T18:28:42.528Z", + "created": "2021-01-13T01:50:52.580Z", + "id": "relationship--e96de249-ba91-4f21-b49f-b4d37f0f8f6b", + "modified": "2021-01-13T01:50:52.580Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.528Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c4d6b208-1074-40b0-ba59-a820f5fc1e1a", - "modified": "2021-01-06T18:28:42.528Z", + "created": "2021-01-13T01:50:52.581Z", + "id": "relationship--61eae578-2f3c-4d0b-a0f0-4321270d0a55", + "modified": "2021-01-13T01:50:52.581Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.529Z", - "description": "Information System Monitoring", - "id": "relationship--db3f3b8e-bf00-4566-a9d5-a1f4fdb88594", - "modified": "2021-01-06T18:28:42.529Z", + "created": "2021-01-13T01:50:52.582Z", + "id": "relationship--8749b9b2-d5b3-49c9-8c96-bb2904c50907", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f232fa7a-025c-4d43-abc7-318e81a73d65", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.530Z", - "description": "Information System Monitoring", - "id": "relationship--6114db17-1f90-46a3-a6c0-fccfe7e20639", - "modified": "2021-01-06T18:28:42.530Z", + "created": "2021-01-13T01:50:52.582Z", + "id": "relationship--e986bf4e-76a4-4296-9550-5affd8ea5b8f", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.530Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a215d86e-c648-42c0-9f56-5a3c4ca2fabe", - "modified": "2021-01-06T18:28:42.530Z", + "created": "2021-01-13T01:50:52.582Z", + "id": "relationship--f7abc651-b4c1-4a3d-8167-306f6b481155", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--6e4901ae-8568-46c0-9b1c-9b59f14b92f7", - "modified": "2021-01-06T18:28:42.531Z", + "created": "2021-01-13T01:50:52.582Z", + "id": "relationship--89c1f8c6-ce3e-47f5-a6f2-1d14c12e8240", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ab457d2c-f3ea-4612-ad95-161e294a48a1", - "modified": "2021-01-06T18:28:42.531Z", + "created": "2021-01-13T01:50:52.582Z", + "id": "relationship--730e4110-7bf1-4c2d-96b2-5e2ed8a197f8", + "modified": "2021-01-13T01:50:52.582Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--51b5b06f-b099-4017-b87a-a89853300f04", - "modified": "2021-01-06T18:28:42.531Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--062b863f-fa10-41a9-a125-420552600894", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--b32f6a35-c342-482b-a1f5-9c07adbe5e8e", - "modified": "2021-01-06T18:28:42.531Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--9042fbcd-62ff-4638-b645-cf7bdeafe6f4", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.531Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--ae710a30-37dd-4c91-9969-d87c0c0d6b25", - "modified": "2021-01-06T18:28:42.531Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--3d45f9fb-a1cf-40a3-9228-e35d0d17c4a4", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--bac1483d-e5bc-4275-b10c-055b9745c46d", - "modified": "2021-01-06T18:28:42.532Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--42171dab-4080-41b8-ac08-1035c00c65a7", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--22d53496-dc2f-48a7-93b1-65df25e60f6c", - "modified": "2021-01-06T18:28:42.532Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--451dd3f1-07dc-47aa-9874-f31dffcc7133", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.532Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--87691e45-48e6-4e16-b3ed-e45d0c98de3d", - "modified": "2021-01-06T18:28:42.532Z", + "created": "2021-01-13T01:50:52.583Z", + "id": "relationship--a956e52c-68f1-4efe-9160-cc6cf35b72d1", + "modified": "2021-01-13T01:50:52.583Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--076e4ef0-e471-4e25-acb8-233aa9ed9962", - "modified": "2021-01-06T18:28:42.533Z", + "created": "2021-01-13T01:50:52.584Z", + "id": "relationship--59c6fc9d-b5c8-46b4-91e2-156a4c25e44d", + "modified": "2021-01-13T01:50:52.584Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--a290264e-1f46-45c4-a46f-cb40a953a488", - "modified": "2021-01-06T18:28:42.533Z", + "created": "2021-01-13T01:50:52.584Z", + "id": "relationship--1a8a3271-6d88-4801-966a-66c90eea5326", + "modified": "2021-01-13T01:50:52.584Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.533Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--94d85c25-04ff-4b13-8159-1a7103686d8f", - "modified": "2021-01-06T18:28:42.533Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--388a5478-1ca9-4efe-bb7f-6f429197b468", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--633f81f0-46ee-4230-8df4-36fe233c7173", - "modified": "2021-01-06T18:28:42.534Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--9b2abe67-2b24-403d-be69-dcc9790c5a8b", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--17807861-cfd4-4395-909f-18e0eaf0cd1f", - "modified": "2021-01-06T18:28:42.534Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--84d23c31-759b-4cab-be72-02444d7ad5bb", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.534Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f90585fb-3bde-4e7d-b007-795f9b2aec26", - "modified": "2021-01-06T18:28:42.534Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--d3e770af-f34f-4e4c-a711-85556f7b8867", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.535Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a2ae97e6-9e23-44e7-bb1e-2d6d977f9ab6", - "modified": "2021-01-06T18:28:42.535Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.535Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d7fdbcde-a6e6-42fb-81da-65de60b2560c", - "modified": "2021-01-06T18:28:42.535Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--1ead29f4-39ff-418b-9554-edca69094587", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d842c277-ea54-4d2f-b519-626eb2de348d", - "modified": "2021-01-06T18:28:42.536Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--d72bc49f-d7fc-4a17-8351-5a832efbb626", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--a91bedca-8549-4a4d-bd8e-c24a09540551", - "modified": "2021-01-06T18:28:42.536Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--c33e0324-489e-4789-9b13-82ef700a73f0", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1f842b56-a5eb-46e3-a361-455886b7acf0", - "modified": "2021-01-06T18:28:42.536Z", + "created": "2021-01-13T01:50:52.585Z", + "id": "relationship--a2462eb2-ecf0-42c3-af33-f2c72feb2a45", + "modified": "2021-01-13T01:50:52.585Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.536Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--d1781e9c-7f72-4f03-a8da-6e7fb8e25a9b", - "modified": "2021-01-06T18:28:42.536Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--2d7c4e6b-92bf-44ed-b196-343d3063aa54", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--e74de37c-a829-446c-937d-56a44f0e9306", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--3f407e19-ec46-4c40-bf57-62cdc84616de", - "modified": "2021-01-06T18:28:42.537Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--6faad2d0-a789-495d-a688-0a54b36f23f2", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--65365a0f-5a88-4ba2-a908-2d5f95568eda", - "modified": "2021-01-06T18:28:42.537Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--7acc7754-ea93-4f48-ab20-3baca2021682", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1b350d4e-8696-4207-9749-de988b313634", - "modified": "2021-01-06T18:28:42.537Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--daa293a6-e721-42a0-bb5e-dadafdff53c2", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.537Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2cffa669-d04d-4c41-b750-4d89e85b3507", - "modified": "2021-01-06T18:28:42.537Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--d210a69d-1e5b-4505-a773-12af67e0e4df", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--7ee6c85f-a1e0-4249-b50b-9a5cead6bb32", - "modified": "2021-01-06T18:28:42.538Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--04aaa4cc-1a52-44ee-acd7-4f313e8bff5a", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--03895cdb-773f-454a-b1e0-023fb66b2817", - "modified": "2021-01-06T18:28:42.538Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--8b9ec25d-8823-44a6-8a07-82bd2f2cd0c7", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--f77f477d-534a-4d66-a8bb-b0f92b25ec21", - "modified": "2021-01-06T18:28:42.538Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--8c1dfd95-e1d2-47d9-ac6a-f984bc445f87", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--575306b2-faa9-4406-8a93-13ab011df530", - "modified": "2021-01-06T18:28:42.538Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--da72fa55-83f3-41d1-bb48-119840874091", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.538Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--91e2f0b8-bc77-4f5a-b3cb-d84086258deb", - "modified": "2021-01-06T18:28:42.538Z", + "created": "2021-01-13T01:50:52.586Z", + "id": "relationship--ce590995-a1fa-46d5-8dc7-81e1e66a6e52", + "modified": "2021-01-13T01:50:52.586Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8f1c8fa3-5482-4e4b-9669-cc9809b256a0", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.587Z", + "id": "relationship--2e124bcf-ea68-4688-8420-987e77039e1c", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.587Z", + "id": "relationship--ba4f3831-d8ce-474e-bf0c-eb0df4f96081", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.587Z", + "id": "relationship--53d8923c-b0ac-4525-b219-5548e517f037", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2a78c709-5585-4382-b4ee-54981eb4d507", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.587Z", + "id": "relationship--d03f20b5-b528-4867-9eff-c01b2c4f4963", + "modified": "2021-01-13T01:50:52.587Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--2c369f23-9324-4dee-9459-f0deb3119c44", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.539Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.539Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--ce56406b-43dd-493a-9676-623ce4a799c0", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--03991f55-e503-4f4f-84c1-c2ba3b53d046", - "modified": "2021-01-06T18:28:42.540Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--22c88035-94e3-4472-bfbb-75c36fd3c533", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--1786903a-a252-4763-9c05-05ffb12d4e6f", - "modified": "2021-01-06T18:28:42.540Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--3c810962-3f5b-496d-9813-d044fa0875ff", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6317eee1-9d8a-4592-a7a0-de1854210e1a", - "modified": "2021-01-06T18:28:42.540Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--943f1377-376e-4bd1-bcca-9f53b6c09f1f", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9225ae0-a142-4a02-93d3-4305f1925130", - "modified": "2021-01-06T18:28:42.540Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--0e143146-f275-42a8-8d73-9b783baf4b0a", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.540Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--e9588a87-23ff-4067-93b8-4751f5560507", - "modified": "2021-01-06T18:28:42.540Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--65cc15eb-d9ef-4b6b-9330-085a923e45e4", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0706356b-0bef-44e6-9755-966cab813475", - "modified": "2021-01-06T18:28:42.542Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--88d67e1c-a2c9-48fc-b4f1-2b9e85411c6a", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--1e18a8c0-15f2-4d01-ab95-7bd70a1c3b1f", - "modified": "2021-01-06T18:28:42.542Z", + "created": "2021-01-13T01:50:52.588Z", + "id": "relationship--384c6b3d-927d-4068-913f-3026e3ad43e5", + "modified": "2021-01-13T01:50:52.588Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c1491033-6151-40cb-b9dc-393f997f8a85", - "modified": "2021-01-06T18:28:42.542Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--ab995d58-298d-4043-87b8-6379b359dc2a", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.542Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--021992df-2067-421a-8042-ae4f9212681f", - "modified": "2021-01-06T18:28:42.542Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--8dad7373-4889-4734-aac7-fbcae98c4843", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5fff7756-ce97-4b2d-849c-71b7dca181ef", - "modified": "2021-01-06T18:28:42.543Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--0bce5245-6457-4969-9287-35dd966cac69", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--80727724-6e24-483d-8bd6-7b7ce6cd1836", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.543Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.543Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--8f8daa34-7dd9-4e15-832f-e3503c131e98", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--5bb57a9f-fe4a-4bff-b323-a2a1cef94c7d", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--eb421efd-96be-460b-a9de-004188bd2891", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1d24cdee-9ea2-4189-b08e-af110bf2435d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--1792506c-b6ff-46f0-bbdd-dd7120b33d33", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.545Z", - "description": "Information System Monitoring", - "id": "relationship--95db16a0-00a3-4c6a-ac6b-a6d800522bb7", - "modified": "2021-01-06T18:28:42.545Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--4f329168-a962-4c2b-affc-7809ed5b475a", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--e2f58512-0bdc-472f-9720-b6226130335e", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.547Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", - "modified": "2021-01-06T18:28:42.547Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.548Z", - "description": "Access Enforcement, Use of External Information Systems", - "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", - "modified": "2021-01-06T18:28:42.548Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.549Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--6d3953ef-8182-40ff-9423-e3b543aba6d5", - "modified": "2021-01-06T18:28:42.549Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--f9e19eff-bc17-4490-ad6e-c2d676aa207a", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--00ea57e7-d5cd-465d-8820-a1ef7f1b231c", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.550Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--c6a68f2b-a9c5-4b9e-b5e0-e3af7b0723a9", - "modified": "2021-01-06T18:28:42.550Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.551Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5bff91b0-3db9-48c7-a8b8-beee627ef71e", - "modified": "2021-01-06T18:28:42.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.551Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--65338008-33c6-4601-b89f-bcd848c3242f", - "modified": "2021-01-06T18:28:42.551Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.552Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c1503d57-2c70-429b-ad4f-230d17628d27", - "modified": "2021-01-06T18:28:42.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.552Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e177249e-bcbd-45f4-80a6-afe98af6229f", - "modified": "2021-01-06T18:28:42.552Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.553Z", - "description": "Information System Monitoring", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:42.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.553Z", - "description": "Information System Monitoring", - "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", - "modified": "2021-01-06T18:28:42.553Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.554Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", - "modified": "2021-01-06T18:28:42.554Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--68687bd4-eb5e-4f24-9e1d-982235e104d7", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6296e01f-8b70-4db3-8c92-3aa81ea815e3", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.555Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--dc5e0380-cace-4b5b-b5e7-1435aad8a591", - "modified": "2021-01-06T18:28:42.555Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.556Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6cf0e025-aa5b-43cb-a3e1-3a9647428166", - "modified": "2021-01-06T18:28:42.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.556Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3f94e128-dda4-4d2b-8974-5c3cdd163bb7", - "modified": "2021-01-06T18:28:42.556Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.557Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", - "modified": "2021-01-06T18:28:42.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.557Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ce13b6b1-8ff8-4313-a17b-44d905ab2fda", - "modified": "2021-01-06T18:28:42.557Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.558Z", - "description": "Least Functionality", - "id": "relationship--f670fa02-b3ce-49e4-a20d-2a07e6baa6a6", - "modified": "2021-01-06T18:28:42.558Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--7f95b061-d1e4-40a1-a1e7-0ae79696145d", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--b5a6cc39-4c8d-402a-ad0b-986d96b45416", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--8f73ba57-627f-4648-9d3c-0253f5bdaef8", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.559Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4fef6667-c7f2-41d2-bde2-c7ec478b3a76", - "modified": "2021-01-06T18:28:42.559Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--6a1e9f51-4495-4908-bab9-8b91915e456c", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--74e94d04-f70b-4cc0-bbc8-297519c8125c", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d7da449b-edd3-4a28-8d7c-3ee57f6106ae", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--045d4fc7-fcbc-4704-b089-02860795f763", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--a7ebf3f4-47c4-49e0-8f4e-359968d18edf", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--d886cabc-6838-40cc-8077-9efd6413533f", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--4191349e-de17-4f10-8498-d86f79e99374", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.560Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--11236c11-07f8-4fa9-ad49-929e29a04a5e", - "modified": "2021-01-06T18:28:42.560Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.561Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ca8f1552-b89d-4e67-a53d-4eda1d95c45b", - "modified": "2021-01-06T18:28:42.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.561Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6dc11329-1a1b-43a7-b74b-392d9dde9dba", - "modified": "2021-01-06T18:28:42.561Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--5b74652d-8dfb-4b23-9430-1d48653697b0", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c7f9015d-2898-46e6-8380-c6c4fe69a747", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8720138e-4483-46ab-bd76-b580c2f6c79d", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4558adbd-6e13-4802-b630-db2fad25e01f", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e692440e-07fa-403b-9dbb-6283301afa8e", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.562Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--4d5a770c-3d2d-466c-a3d2-c05764f76139", - "modified": "2021-01-06T18:28:42.562Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--0581a3c6-e36e-46c7-85d6-68b312bf7157", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--852721ac-f3a5-4922-9851-404b3ef21e41", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8f9b478-b9a6-42be-9298-95b4cc7e2c7b", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b8d61b3e-a3d7-4154-9e1e-7718512a9ed0", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.563Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf492346-58d3-45e5-b8e9-c29860903b26", - "modified": "2021-01-06T18:28:42.563Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a009cb25-4801-4116-9105-80a91cf15c1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--2761e24a-d435-4a7c-b232-46dbc7f8c1a4", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--e01be9c5-e763-4caf-aeb7-000b416aef67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6b95f8af-5e4e-4b16-bdcc-f732a1d2a4a6", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7610cada-1499-41a4-b3dd-46467b68d177", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.564Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--6b3540b8-ea86-4f5a-98c7-68d2a46fa430", - "modified": "2021-01-06T18:28:42.564Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--635cbe30-392d-4e27-978e-66774357c762", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--92ad3efd-0a0c-40e3-aa0f-80168c35351b", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.565Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.565Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.567Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:42.567Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.567Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.567Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.568Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:42.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.568Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--215eab32-611e-4c8f-8293-a81a801dd350", - "modified": "2021-01-06T18:28:42.568Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.570Z", - "description": "Information System Monitoring", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.570Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c86d42d9-29ba-4b5c-8968-90bc26d8af37", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--f2c3f042-b274-4346-ae3e-352d26ace5e6", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.571Z", - "description": "Access Enforcement, Least Privilege, Use of External Information Systems", - "id": "relationship--c4c685e9-7d97-4a57-97a5-2e187a64e7e0", - "modified": "2021-01-06T18:28:42.571Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.572Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--f3e65e78-3c67-4c2e-a478-c5a3941aa213", - "modified": "2021-01-06T18:28:42.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.572Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d8ef6cc3-0ad7-4d96-b6a2-b9b899153c6e", - "modified": "2021-01-06T18:28:42.572Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.574Z", - "description": "Information System Monitoring", - "id": "relationship--b30db6f4-14a2-49f7-9333-a0222644dc28", - "modified": "2021-01-06T18:28:42.574Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.575Z", - "description": "Configuration Settings", - "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:42.575Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--9862d596-a093-4f7e-9bef-425971eff646", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--0ae28d1f-bb99-4913-b4ca-48de4fe5d2de", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.576Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--110be9f0-b3f8-463e-9bf2-3b379e8dba5d", - "modified": "2021-01-06T18:28:42.576Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--c44373be-ff9d-469d-a544-15b5bf6f7d52", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--35646cdd-bbd8-459e-bdca-5365fe9745ce", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2dd44965-2d49-4301-9b96-1012dcab25d2", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--ee5b5889-b514-40f8-9b6a-321be10d8530", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--db1e6bdf-38fa-4d45-8935-a3f75f40df51", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.577Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--04378d95-acc9-4608-924d-57b85abb8873", - "modified": "2021-01-06T18:28:42.577Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--775971d0-6985-4f71-a08b-c9ddba29fe2a", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--2b388e1f-a975-4bc0-b719-5311fe8e4a29", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--865189bb-a679-45f1-8c9f-0ac531ff8316", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--6ed5f79d-db8a-4002-ab96-1cec4173bda8", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.578Z", - "description": "Access Enforcement, Least Privilege, Unsuccessful Logon Attempts, Use of External Information Systems", - "id": "relationship--678cecd7-6f89-4729-87cf-1d8487ecc0a6", - "modified": "2021-01-06T18:28:42.578Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8ef837fa-82fd-4a09-b9c5-cf4587fc751a", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--48b72092-2c87-4975-a1ed-00a9570a9e4b", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--7a5a2afe-ab11-4026-8c8c-7ff4d51f19b5", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.579Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--fae97f86-b3c6-4212-b0ba-9c4077b1729b", - "modified": "2021-01-06T18:28:42.579Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--cc339e5e-9e20-45fd-9053-eee91ff1256c", - "modified": "2021-01-06T18:28:42.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", - "modified": "2021-01-06T18:28:42.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.580Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--66e229cd-2d90-4718-a442-25bd20408b48", - "modified": "2021-01-06T18:28:42.580Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--422f00bc-a510-4819-a6d9-e2394f89e6b2", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f8810ed7-61d9-4f71-af8c-e36fba57cbf6", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.581Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--c6df6c24-706b-4e86-9a65-0bf43dfcdec0", - "modified": "2021-01-06T18:28:42.581Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--99c907b4-6eed-445f-b02d-5058fd396903", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d4b96d2c-1032-4b22-9235-2b5b649d0605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4c9bfeae-f59c-46ca-bf3c-bf0634d75ba7", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--f4c1826f-a322-41cd-9557-562100848c84", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--ff2589e9-64ef-4cdb-844b-0048e1d0467c", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.582Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--65a63782-b061-42dc-a794-a005a3c81e35", - "modified": "2021-01-06T18:28:42.582Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--06c00069-771a-4d57-8ef5-d3718c1a8771", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.584Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a452ea2e-5cdf-44fc-879b-36db1c5f1b9e", - "modified": "2021-01-06T18:28:42.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.584Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--4c452898-b856-47e5-8b77-f559ce3f6806", - "modified": "2021-01-06T18:28:42.584Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.586Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--427d39c1-8caa-472f-8d87-56128d743226", - "modified": "2021-01-06T18:28:42.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.586Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--104ad1f3-b9d1-471a-be97-2c91782b2c8a", - "modified": "2021-01-06T18:28:42.586Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.587Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--dce2edb5-f728-4400-9413-b7a64f902d20", - "modified": "2021-01-06T18:28:42.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.587Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--0646a69f-9c5e-457b-9169-98fa4d3c4d22", - "modified": "2021-01-06T18:28:42.587Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.589Z", - "description": "Information System Monitoring", - "id": "relationship--c50ee595-31c3-4dee-80b4-aec7822362c2", - "modified": "2021-01-06T18:28:42.589Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fa44a152-ac48-441e-a524-dd7b04b8adcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--46f762f9-17b6-4743-aba6-b47e8eaf1979", - "modified": "2021-01-06T18:28:42.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--dd16f387-14f3-4a36-b574-37176164490f", - "modified": "2021-01-06T18:28:42.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:42.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.590Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.590Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", - "modified": "2021-01-06T18:28:42.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:42.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.591Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:42.591Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.592Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.592Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--b5c9b3ce-e4e5-4f21-98c6-20cce56098dc", - "modified": "2021-01-06T18:28:42.592Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d4f0f4e4-169d-415a-b93d-858c6f4f8774", - "modified": "2021-01-06T18:28:42.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--2edbaf79-316d-4d8b-9a80-3af3f29df1fe", - "modified": "2021-01-06T18:28:42.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.593Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--d32fa784-a03e-4c8d-83b9-b2a21793399f", - "modified": "2021-01-06T18:28:42.593Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--7f4546d2-2be3-4774-af4f-d469abc7a834", - "modified": "2021-01-06T18:28:42.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:42.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--1f427dca-2d62-48e3-801c-71f4b5ed8879", - "modified": "2021-01-06T18:28:42.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.594Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--45c3739b-86da-485d-a3df-abadf210402b", - "modified": "2021-01-06T18:28:42.594Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.595Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.595Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.595Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.596Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--a920f660-8890-472d-9451-a8adcb8902d6", - "modified": "2021-01-06T18:28:42.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.596Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--6f189743-d20f-4931-8dca-839739c68ea5", - "modified": "2021-01-06T18:28:42.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.596Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:42.596Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:42.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.597Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.597Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--c9d5f705-4e18-496b-a002-4419e36e3cf5", - "modified": "2021-01-06T18:28:42.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--43e6cd02-bed1-4b59-b711-cb81aa3b1aa6", - "modified": "2021-01-06T18:28:42.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--836c519e-e74c-4aea-918b-a91a222893c1", - "modified": "2021-01-06T18:28:42.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.598Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--202c64fa-7c21-4cc8-a7fb-7406aff4c0e2", - "modified": "2021-01-06T18:28:42.598Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", - "modified": "2021-01-06T18:28:42.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.600Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", - "modified": "2021-01-06T18:28:42.600Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--7c354ffb-2288-4eb2-9137-e92452a6cf58", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--4e43632e-70c3-4bc6-a41c-d43373995cc0", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.602Z", - "description": "Access Enforcement, Least Privilege", - "id": "relationship--cc861f59-923d-4055-9f40-b0804f6d1248", - "modified": "2021-01-06T18:28:42.602Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.603Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:42.603Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:42.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:42.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:42.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:42.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.604Z", - "description": "Configuration Management, Configuration Settings", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:42.604Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.605Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--6aa70886-0e04-414c-80fa-1558eb2ad458", - "modified": "2021-01-06T18:28:42.605Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.605Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--3ae4a0fd-9e97-4a3a-bb0b-8116f31e8157", - "modified": "2021-01-06T18:28:42.605Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--ec7add30-c013-496c-8fa2-da9e70fc49cc", - "modified": "2021-01-06T18:28:42.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--78dfefcf-7b1b-421c-b034-fa4e73446806", - "modified": "2021-01-06T18:28:42.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--e52e36a7-786c-4859-b997-e7958c7f2e41", - "modified": "2021-01-06T18:28:42.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.606Z", - "description": "Identification and Authentication, Authenticator Management", - "id": "relationship--8c38d169-38ea-45e9-b7eb-805b1ee8287e", - "modified": "2021-01-06T18:28:42.606Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:42.607Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:42.607Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:42.607Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:42.607Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.607Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:42.607Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.608Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:42.608Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--360cc556-5972-40b3-ae8c-cefab0110047", - "modified": "2021-01-06T18:28:42.609Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--2d4a2a98-e9c5-4b2d-8c11-8e806bd230b9", - "modified": "2021-01-06T18:28:42.609Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.609Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--96e40920-5744-4091-8472-23b2a57ecfc9", - "modified": "2021-01-06T18:28:42.609Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4b5c7843-1dd8-48fc-b72d-6a75dbfcdc25", - "modified": "2021-01-06T18:28:42.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4c18c893-2afc-4dd7-8228-63cb790dfc33", - "modified": "2021-01-06T18:28:42.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.610Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--27ec176a-d26e-4ad5-bf39-9970d12cc89e", - "modified": "2021-01-06T18:28:42.610Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.611Z", - "description": "Limit Software Installation", - "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", - "modified": "2021-01-06T18:28:42.611Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.612Z", - "description": "Least Privilege", - "id": "relationship--57d172ec-c578-4441-967d-3d50196a0559", - "modified": "2021-01-06T18:28:42.612Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--b98e1f8e-821a-4384-bd75-37bde2d23e0c", - "modified": "2021-01-06T18:28:42.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--3f72ff48-6909-4b8b-a8f8-f59c5ac9dc3f", - "modified": "2021-01-06T18:28:42.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.613Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--9e2758bc-9ffb-4f84-b240-611e32c98413", - "modified": "2021-01-06T18:28:42.613Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.614Z", - "description": "Least Privilege", - "id": "relationship--a2c76cb2-2c12-46b5-a3f6-44159f6d5a8d", - "modified": "2021-01-06T18:28:42.614Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.616Z", - "description": "Limit Software Installation", - "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:42.616Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.617Z", - "description": "Least Privilege", - "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", - "modified": "2021-01-06T18:28:42.617Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.618Z", - "description": "Limit Software Installation", - "id": "relationship--58c1f42b-0aa4-4ce5-b857-978e9a1f828f", - "modified": "2021-01-06T18:28:42.618Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4f9af1cf-0858-4e49-8df6-12040d84c974", - "modified": "2021-01-06T18:28:42.619Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--4d657527-fd02-4b45-981a-e2ce49e9c93f", - "modified": "2021-01-06T18:28:42.619Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.619Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--cb67ebbe-f2f5-4b2a-af77-2662c1334366", - "modified": "2021-01-06T18:28:42.619Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--255b7e3d-b4fb-429a-a089-a7ad936bb1db", - "modified": "2021-01-06T18:28:42.620Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--40601cdd-abb8-43c4-9cab-a08a37eafa71", - "modified": "2021-01-06T18:28:42.620Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.620Z", - "description": "Configuration Change Control, Acess Restriction for Change, User-installed Software", - "id": "relationship--6fe99a8b-d2cd-448c-bd15-b531d2eee1e1", - "modified": "2021-01-06T18:28:42.620Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.621Z", - "description": "Least Privilege", - "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:42.621Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.621Z", - "description": "Least Privilege", - "id": "relationship--03432f21-994a-4afb-b82a-a72157e2e8fc", - "modified": "2021-01-06T18:28:42.621Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.622Z", - "description": "Limit Software Installation", - "id": "relationship--4c575d63-1270-48a5-8987-8c820ff45a86", - "modified": "2021-01-06T18:28:42.622Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.622Z", - "description": "Limit Software Installation", - "id": "relationship--c26b4140-c382-4409-9800-0452a221f7e2", - "modified": "2021-01-06T18:28:42.622Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.623Z", - "description": "Unsupported System Components", - "id": "relationship--06f29914-035c-4121-b383-3e56f7ce856e", - "modified": "2021-01-06T18:28:42.623Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.623Z", - "description": "Unsupported System Components", - "id": "relationship--34267ffa-1f84-482f-bf2a-a2fd80eabec5", - "modified": "2021-01-06T18:28:42.623Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", - "target_ref": "attack-pattern--dfefe2ed-4389-4318-8762-f0272b350a1b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--55b4c2ae-6893-4c47-bd16-9eac4fb17330", - "modified": "2021-01-06T18:28:42.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--b3f92fac-c201-4644-bc24-4a222e88f159", - "modified": "2021-01-06T18:28:42.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--d3ff4125-d8ac-455c-a5b5-6175ae8b7f81", - "modified": "2021-01-06T18:28:42.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.624Z", - "id": "relationship--5e7d9732-070a-4d3a-8b2b-d144ece877b5", - "modified": "2021-01-06T18:28:42.624Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--fe99e900-a9b8-4244-89a0-023c3c4f5d52", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--148683c6-9fcf-437b-80ba-39c5174ef8a3", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--5ae85cd1-dd55-45c3-9f93-0dc5eb114a0d", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--40233726-eaa6-45f1-8af2-9b01a290e5f3", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--77fc1562-0ba7-4c7a-86e4-44ade423f376", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--7a1fadd1-310d-4f99-bd71-5732e0b91ff8", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--a7e4d0f1-abe5-46ca-b9b0-d20d4e22df54", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--e63da28d-ef38-4096-b672-456a0269ef7c", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.625Z", - "id": "relationship--7c3766c7-3b2f-401d-94b0-7cada9ce0d83", - "modified": "2021-01-06T18:28:42.625Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--96fa2251-9af3-4f31-a499-f3cd98b202c0", - "modified": "2021-01-06T18:28:42.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--a93494bb-4b80-4ea1-8695-3236a49916fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--eb4c5f6b-0f1d-4a42-91fa-acf1dc07d057", - "modified": "2021-01-06T18:28:42.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--b2d03cea-aec1-45ca-9744-9ee583c1e1cc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--744d2145-ad93-46a9-bbf6-c34c9e3a32e4", - "modified": "2021-01-06T18:28:42.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.626Z", - "id": "relationship--d9e48d8b-73dd-4ef4-9c6f-a07508e21e13", - "modified": "2021-01-06T18:28:42.626Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--692074ae-bb62-4a5e-a735-02cb6bde458c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--2015692d-a641-4537-a8e7-f40de7b1a2b2", - "modified": "2021-01-06T18:28:42.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--7759313d-dd9c-4400-8399-6715aa58c47d", - "modified": "2021-01-06T18:28:42.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--c3c247b4-cb57-4ecb-9180-904b1d031c45", - "modified": "2021-01-06T18:28:42.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.627Z", - "description": "Protect and prevent credential access", - "id": "relationship--a957669b-b046-48b2-957a-eb5fa08ca5f3", - "modified": "2021-01-06T18:28:42.627Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.628Z", - "description": "Continuous Monitoring", - "id": "relationship--e83c506a-97c2-4c61-854d-84ceadb532d4", - "modified": "2021-01-06T18:28:42.628Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.628Z", - "description": "Continuous Monitoring", - "id": "relationship--9dd148be-c7ad-489c-8c15-d9e2e39c896b", - "modified": "2021-01-06T18:28:42.628Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8a0c71b7-1444-429f-827a-144ee6d1a063", - "modified": "2021-01-06T18:28:42.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", - "modified": "2021-01-06T18:28:42.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.629Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--aa9d8703-e5ac-401a-b645-b2e87ca8d873", - "modified": "2021-01-06T18:28:42.629Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.630Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--450fa2a2-59e2-4307-a248-584f84a8fd47", - "modified": "2021-01-06T18:28:42.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.630Z", - "description": "Boundary Protection", - "id": "relationship--919cda31-eed9-4e56-a532-c6b732cb9af2", - "modified": "2021-01-06T18:28:42.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.630Z", - "description": "Boundary Protection", - "id": "relationship--abc219c7-1a72-48c0-b31a-f7a12bf08a54", - "modified": "2021-01-06T18:28:42.630Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.631Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--45f8d601-7465-4bd6-b67a-c7fc5e698ea4", - "modified": "2021-01-06T18:28:42.631Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:42.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3e99336b-90a3-4615-a8b4-57bec60447a6", - "modified": "2021-01-06T18:28:42.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8521a0be-e8a3-48fd-a76f-e8407ceeb1ee", - "modified": "2021-01-06T18:28:42.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0b7db8ec-a900-44ad-b4cf-d0113258fcca", - "modified": "2021-01-06T18:28:42.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.632Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--02566fc8-d990-4b2f-bb58-5776c42509cd", - "modified": "2021-01-06T18:28:42.632Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.633Z", - "description": "Protect and prevent credential access", - "id": "relationship--2dfedb16-567e-4809-9812-538a46a604e9", - "modified": "2021-01-06T18:28:42.633Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.633Z", - "description": "Protect and prevent credential access", - "id": "relationship--cf810d63-3051-4884-bead-899dbb924796", - "modified": "2021-01-06T18:28:42.633Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--a32de5fb-4352-4f2c-9a0d-674d92be76f6", - "modified": "2021-01-06T18:28:42.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--703c2a66-1c58-4205-bf19-cdbc39254fdb", - "modified": "2021-01-06T18:28:42.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--c651a88c-e856-4242-a724-e472afc858da", - "modified": "2021-01-06T18:28:42.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--d6faf86b-d7d7-43a2-a4bd-09b4b17de998", - "modified": "2021-01-06T18:28:42.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.634Z", - "description": "Protect and prevent credential access", - "id": "relationship--3856d7df-5bea-4d35-bacf-16d3ef5a90ea", - "modified": "2021-01-06T18:28:42.634Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.635Z", - "description": "Protect and prevent credential access", - "id": "relationship--21c52605-02fb-4a98-8ece-86be505d7af2", - "modified": "2021-01-06T18:28:42.635Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--1f62b2eb-e877-4953-8503-860ac4ae8db6", - "modified": "2021-01-06T18:28:42.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--4f319e28-b984-4e28-b086-b4654b1c7106", - "modified": "2021-01-06T18:28:42.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--096ce2c1-6d41-4d11-b38d-8a16ba80eb9c", - "modified": "2021-01-06T18:28:42.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.636Z", - "description": "Continuous Monitoring", - "id": "relationship--3d795f28-076e-40b5-a1c4-89726197ddec", - "modified": "2021-01-06T18:28:42.636Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7fc5c551-c36f-41b0-9fc6-2a290d76ba35", - "modified": "2021-01-06T18:28:42.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fdff27b7-7c74-45a7-b310-0fbed9624dfb", - "modified": "2021-01-06T18:28:42.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b50e3bde-2575-4415-9e8b-bc6bf3ed0270", - "modified": "2021-01-06T18:28:42.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.637Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--394548f6-33f5-41d2-84a6-9f0bd1d3fb7b", - "modified": "2021-01-06T18:28:42.637Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--058535b2-7e9b-42fd-9496-c0b93cfb1cb0", - "modified": "2021-01-06T18:28:42.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--798a7113-72c5-4733-aac1-b11637a790ec", - "modified": "2021-01-06T18:28:42.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f7fc0448-e2c4-4cdc-9bb9-01d827919829", - "modified": "2021-01-06T18:28:42.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.638Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--91dcc716-fec8-439e-8064-38fa8478ebc3", - "modified": "2021-01-06T18:28:42.638Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--0fc67aa8-89bb-42f8-a8f2-763929a42c7e", - "modified": "2021-01-06T18:28:42.639Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--ced4e158-c0b5-417f-a693-c695eecd5408", - "modified": "2021-01-06T18:28:42.639Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.639Z", - "description": "Boundary Protection", - "id": "relationship--ed499470-fa9b-434f-8bf9-d427f20f128a", - "modified": "2021-01-06T18:28:42.639Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.640Z", - "description": "Boundary Protection", - "id": "relationship--729457df-77bc-4d0a-bf41-6129deddafbd", - "modified": "2021-01-06T18:28:42.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.640Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--05929a38-a588-429b-95f0-c57259c24974", - "modified": "2021-01-06T18:28:42.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.640Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8c67e3a7-68ea-4ad0-9eee-e5186ef25c17", - "modified": "2021-01-06T18:28:42.640Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--76547a2a-c383-4867-bfd6-08383247b462", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--5c5fa902-9d06-46c3-bb98-dc9b159dde13", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f349cac3-10fa-4389-a2e0-c722d528f3b6", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fd0d1c39-66ba-456c-95a9-df32370e30c7", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--c8b1b4a7-6f86-4c36-97b1-c329317260ad", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.641Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--ba27d830-5bf4-427e-aa5a-f41fe2cf668b", - "modified": "2021-01-06T18:28:42.641Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fc48b6a8-cb0f-4958-9be7-b8339462ad2f", - "modified": "2021-01-06T18:28:42.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--a19e86f8-1c0a-4fea-8407-23b73d615776", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0762d2b7-2fc7-440e-86f3-66719c3a6998", - "modified": "2021-01-06T18:28:42.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--620fea9b-99af-4eca-9d3e-6606d0ea94ec", - "modified": "2021-01-06T18:28:42.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--79a4052e-1a89-4b09-aea6-51f1d11fe19c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.642Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7a82fc55-fe78-46dc-b362-c4aadba51aa7", - "modified": "2021-01-06T18:28:42.642Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--fb8d023d-45be-47e9-bc51-f56bcae6435b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.643Z", - "description": "Protect and prevent credential access", - "id": "relationship--c189979a-4779-4df9-874b-8153fce693f7", - "modified": "2021-01-06T18:28:42.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.643Z", - "description": "Protect and prevent credential access", - "id": "relationship--43bdc384-a720-4313-8bc6-c1b702e97e16", - "modified": "2021-01-06T18:28:42.643Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.644Z", - "description": "Continuous Monitoring", - "id": "relationship--f49a3942-d6e5-4cc8-a8fe-ccec0769e892", - "modified": "2021-01-06T18:28:42.644Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.645Z", - "description": "Configuring system settings", - "id": "relationship--92883057-db2a-4888-a19a-9679026a229f", - "modified": "2021-01-06T18:28:42.645Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--9dcbb698-bcc2-493f-aba9-d24b3e37db2f", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--baa4096d-6978-41bb-8a04-002c6109fd86", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.646Z", - "description": "Boundary Protection, Secure Name/Address Resolution", - "id": "relationship--edc52fc2-19c7-4993-a409-316632ba5a0f", - "modified": "2021-01-06T18:28:42.646Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f613ea49-373c-4dcc-a69b-015ffc2c3873", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.647Z", - "description": "Information validation and filtering", - "id": "relationship--6967226a-ef18-434f-86b3-1c796b77d580", - "modified": "2021-01-06T18:28:42.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.647Z", - "description": "Information validation and filtering", - "id": "relationship--e82083e3-ea44-49ef-a77b-b95e09b7a163", - "modified": "2021-01-06T18:28:42.647Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--1996eef1-ced3-4d7f-bf94-33298cabbf72", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.648Z", - "description": "Protect and prevent credential access", - "id": "relationship--b4f2e8d0-9a1a-49be-8033-e004565a2d03", - "modified": "2021-01-06T18:28:42.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.648Z", - "description": "Protect and prevent credential access", - "id": "relationship--8b70af8a-6321-4e6c-b269-a8f1e1365fb9", - "modified": "2021-01-06T18:28:42.648Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.649Z", - "description": "Protect and prevent credential access", - "id": "relationship--b3431f4d-3a73-4ff8-b850-0b83250d27a2", - "modified": "2021-01-06T18:28:42.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.649Z", - "description": "Protect and prevent credential access", - "id": "relationship--d7d738c8-a742-4d09-acdb-1ede4fa402e5", - "modified": "2021-01-06T18:28:42.649Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.650Z", - "description": "Continuous Monitoring", - "id": "relationship--bbab5a97-bff4-4cd6-bb02-22f6140655b6", - "modified": "2021-01-06T18:28:42.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.650Z", - "description": "Continuous Monitoring", - "id": "relationship--ed3eb409-53ce-477b-bbb4-620623f09297", - "modified": "2021-01-06T18:28:42.650Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.651Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a4e89d6c-813f-467e-89bc-6490f35b68d4", - "modified": "2021-01-06T18:28:42.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.651Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3de57473-fe64-4a20-9411-a998296c1616", - "modified": "2021-01-06T18:28:42.651Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.652Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--773eb522-c358-4c3e-98a1-a3113fe27a9a", - "modified": "2021-01-06T18:28:42.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.652Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--047451a3-5990-41b4-a834-a80afc8322b0", - "modified": "2021-01-06T18:28:42.652Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.653Z", - "description": "Boundary Protection", - "id": "relationship--e0dbf1d0-9735-492a-9f5f-534a78e1152f", - "modified": "2021-01-06T18:28:42.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.653Z", - "description": "Boundary Protection", - "id": "relationship--1aa90fc0-7c1d-4015-ae63-9dadc127b806", - "modified": "2021-01-06T18:28:42.653Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", - "id": "relationship--13fe5f3e-0a58-469e-ab8e-8aee92863ad1", - "modified": "2021-01-06T18:28:42.654Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", - "id": "relationship--048e7cb2-db78-4da9-81a7-96cd4c9b2460", - "modified": "2021-01-06T18:28:42.654Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", - "id": "relationship--05f213d7-e130-4110-9abf-331a3913a549", - "modified": "2021-01-06T18:28:42.654Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--a782ebe2-daba-42c7-bc82-e8e9d923162d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.654Z", - "description": "Information validation and filtering", - "id": "relationship--b4aa2f2b-3516-41d5-9638-df37ca9e8d34", - "modified": "2021-01-06T18:28:42.654Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.655Z", - "description": "Protect and prevent credential access", - "id": "relationship--8ee96015-7439-4205-8c12-99fd77e7a25b", - "modified": "2021-01-06T18:28:42.655Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.655Z", - "description": "Protect and prevent credential access", - "id": "relationship--546bc9c0-9dbf-40a7-ad91-6d1fd7858f03", - "modified": "2021-01-06T18:28:42.655Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.656Z", - "description": "Continuous Monitoring", - "id": "relationship--102f54d7-1ec5-450f-a098-356f67d780c9", - "modified": "2021-01-06T18:28:42.656Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.657Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c1327945-1ce9-40d9-a14c-6f7b13a546d5", - "modified": "2021-01-06T18:28:42.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.657Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1ab1669d-b4ce-4963-90f2-2f5bd10f2c8a", - "modified": "2021-01-06T18:28:42.657Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.658Z", - "description": "Boundary Protection", - "id": "relationship--1be5fb68-8c4f-45ea-a696-a6cfd54434b6", - "modified": "2021-01-06T18:28:42.658Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.659Z", - "description": "Information validation and filtering", - "id": "relationship--c3518993-8e2f-44ae-a22c-9333ed5132a5", - "modified": "2021-01-06T18:28:42.659Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.659Z", - "description": "Information validation and filtering", - "id": "relationship--81942dc8-7aa2-4759-aa89-836544c98226", - "modified": "2021-01-06T18:28:42.659Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--c21d5a77-d422-4a69-acd7-2c53c1faa34b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.660Z", - "description": "Protect and prevent credential access", - "id": "relationship--3e6b945f-dbd7-4b86-a62b-466626646253", - "modified": "2021-01-06T18:28:42.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.660Z", - "description": "Protect and prevent credential access", - "id": "relationship--92bd7eff-9039-4ebc-a695-8fa7a7d105ee", - "modified": "2021-01-06T18:28:42.660Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.661Z", - "description": "Continuous Monitoring", - "id": "relationship--0fff0b5e-cd11-46c5-8822-7ccbe3d84874", - "modified": "2021-01-06T18:28:42.661Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.662Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--19620b2c-7011-4b21-ba41-8aa60f11ecbf", - "modified": "2021-01-06T18:28:42.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.662Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--96b79c87-2318-41ef-a219-5b2ca832f110", - "modified": "2021-01-06T18:28:42.662Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.663Z", - "description": "Boundary Protection", - "id": "relationship--bd264b1b-0825-4e8e-bfd0-9d931f60100d", - "modified": "2021-01-06T18:28:42.663Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--85ed35f7-26e8-4dc0-a579-8169f4ccdce0", - "modified": "2021-01-06T18:28:42.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--ae24b4ee-a27e-42a8-9baa-579006ba0b40", - "modified": "2021-01-06T18:28:42.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.664Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4179d683-848f-4d67-bbe5-b537e7f27b49", - "modified": "2021-01-06T18:28:42.664Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--b77cf5f3-6060-475d-bd60-40ccbf28fdc2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.665Z", - "description": "Protect and prevent credential access", - "id": "relationship--81c2f704-7a9d-4fa1-a798-08a50c6add2b", - "modified": "2021-01-06T18:28:42.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.665Z", - "description": "Protect and prevent credential access", - "id": "relationship--4912bbb5-845c-4290-973b-fd19bdb09568", - "modified": "2021-01-06T18:28:42.665Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.666Z", - "description": "Continuous Monitoring", - "id": "relationship--ab3f1305-16f9-4273-8c41-b8663e4246d4", - "modified": "2021-01-06T18:28:42.666Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.667Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b18f44d9-6d14-4f29-832b-5a4aefe7683e", - "modified": "2021-01-06T18:28:42.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.667Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dbc64cb6-7809-431b-b663-7af4e4e3ec34", - "modified": "2021-01-06T18:28:42.667Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.668Z", - "description": "Boundary Protection", - "id": "relationship--c0f64031-8a70-4ba0-9a11-de5dd92f03af", - "modified": "2021-01-06T18:28:42.668Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--09e5d93c-aa94-4aff-b6c8-dc1f2a088640", - "modified": "2021-01-06T18:28:42.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--cba415b6-b2d4-4a8a-b2d7-b27b53d57381", - "modified": "2021-01-06T18:28:42.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.669Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--6e082b12-e0d2-42b0-8cc5-12e288c9a5e2", - "modified": "2021-01-06T18:28:42.669Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--c8e87b83-edbb-48d4-9295-4974897525b7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.670Z", - "description": "Protect and prevent credential access", - "id": "relationship--a9be10b2-4d64-4d39-b1de-12e60f3e0c54", - "modified": "2021-01-06T18:28:42.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.670Z", - "description": "Protect and prevent credential access", - "id": "relationship--e8e16a49-634e-446d-b08a-016bcfc09f03", - "modified": "2021-01-06T18:28:42.670Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.671Z", - "description": "Protect and prevent credential access", - "id": "relationship--a502a76c-934b-4d4a-854c-83fed8de97af", - "modified": "2021-01-06T18:28:42.671Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.671Z", - "description": "Protect and prevent credential access", - "id": "relationship--a658eb89-7405-4bca-894d-0316b167d230", - "modified": "2021-01-06T18:28:42.671Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.671Z", - "description": "Continuous Monitoring", - "id": "relationship--1049070c-84fb-4007-b46a-e2ac7f099bee", - "modified": "2021-01-06T18:28:42.671Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.672Z", - "description": "Continuous Monitoring", - "id": "relationship--c26898e9-b9ce-456b-a24e-2d1382152ee9", - "modified": "2021-01-06T18:28:42.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.672Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--4009e0b1-d0d4-45fd-ba12-979ceb3c3525", - "modified": "2021-01-06T18:28:42.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.672Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--35c32222-3407-4f86-8062-b45f84233416", - "modified": "2021-01-06T18:28:42.672Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.673Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a492b74f-2302-4e22-a4c4-c5a5f07a4fe8", - "modified": "2021-01-06T18:28:42.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.673Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--771657a6-aa86-4135-80d8-1ec41a2fc3b5", - "modified": "2021-01-06T18:28:42.673Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.674Z", - "description": "Boundary Protection", - "id": "relationship--9b496d16-d884-4aa7-a90b-8911efde65ee", - "modified": "2021-01-06T18:28:42.674Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.674Z", - "description": "Boundary Protection", - "id": "relationship--d0aedc49-5c19-4c4c-90a5-8037b3a1a87d", - "modified": "2021-01-06T18:28:42.674Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--d2586554-e6d7-4126-ab2f-2e7d265fad8b", - "modified": "2021-01-06T18:28:42.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--1deae7fb-7370-4619-88d0-ec7181c7cf39", - "modified": "2021-01-06T18:28:42.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--af5175bc-dc1b-4a4e-bfd2-f849bf9d0b41", - "modified": "2021-01-06T18:28:42.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--8868cb5b-d575-4a60-acb2-07d37389a2fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.675Z", - "description": "System Monitoring, Information filtering", - "id": "relationship--ba75d66b-8b73-41ca-9528-c570cc0573aa", - "modified": "2021-01-06T18:28:42.675Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--451a9977-d255-43c9-b431-66de80130c8c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.676Z", - "description": "Protect and prevent credential access", - "id": "relationship--a6e602ed-a027-4a48-9fa2-7723490fe5aa", - "modified": "2021-01-06T18:28:42.676Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.677Z", - "description": "Protect and prevent credential access", - "id": "relationship--c18fc882-10b1-44a8-a225-40d084e46fa3", - "modified": "2021-01-06T18:28:42.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.677Z", - "description": "Continuous Monitoring", - "id": "relationship--690434f8-aef4-4809-82bc-d6b3f94f31c7", - "modified": "2021-01-06T18:28:42.677Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.678Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:42.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.678Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:42.678Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.679Z", - "description": "Boundary Protection", - "id": "relationship--972cd8ad-1298-4ec9-b33f-7dec904c36bd", - "modified": "2021-01-06T18:28:42.679Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:42.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--875ebf39-bd86-41a3-8ab1-666b6abf449c", - "modified": "2021-01-06T18:28:42.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.680Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--18fb970f-e115-4d76-b29b-170e5887c906", - "modified": "2021-01-06T18:28:42.680Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.681Z", - "description": "Protect and prevent credential access", - "id": "relationship--abaaf543-0a3f-4e1c-93fb-89f49ee66d8c", - "modified": "2021-01-06T18:28:42.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.681Z", - "description": "Protect and prevent credential access", - "id": "relationship--db7e2a96-493d-45d0-9885-314a39a6622b", - "modified": "2021-01-06T18:28:42.681Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.683Z", - "description": "Continuous Monitoring", - "id": "relationship--88f4c178-64e3-4994-b302-0efa80f918b6", - "modified": "2021-01-06T18:28:42.683Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b9ee558e-3113-4d6c-8214-e036abdc5c9e", - "modified": "2021-01-06T18:28:42.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.684Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.684Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.685Z", - "description": "Boundary Protection", - "id": "relationship--3ab3eba4-07c6-4670-a2d8-1f172b26e12a", - "modified": "2021-01-06T18:28:42.685Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.686Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.686Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.686Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d16d88b4-cebe-48ac-bda6-39004d4f6796", - "modified": "2021-01-06T18:28:42.686Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.687Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--2daf7507-8911-48d3-bb84-823286e2a514", - "modified": "2021-01-06T18:28:42.687Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", - "id": "relationship--22f5561b-de7e-4bf1-8e6c-7671c85a55fd", - "modified": "2021-01-06T18:28:42.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", - "id": "relationship--f26e9db2-57f1-43fb-b9e6-1483b93fa802", - "modified": "2021-01-06T18:28:42.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", - "id": "relationship--a53d12e9-9033-40f8-8e81-5791c9430acc", - "modified": "2021-01-06T18:28:42.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", - "id": "relationship--43fc3e5a-697e-4b9c-a722-47142ad2dd6c", - "modified": "2021-01-06T18:28:42.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.688Z", - "description": "Protect and prevent credential access", - "id": "relationship--2c095030-aba9-4010-a0a5-e6b9db373178", - "modified": "2021-01-06T18:28:42.688Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.689Z", - "description": "Protect and prevent credential access", - "id": "relationship--bb77c8a6-56e0-492f-a4d9-61ea4d81a39e", - "modified": "2021-01-06T18:28:42.689Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.690Z", - "description": "Continuous Monitoring", - "id": "relationship--97838f19-7ccc-4a2d-b9f1-fd0fa3e25af2", - "modified": "2021-01-06T18:28:42.690Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.690Z", - "description": "Continuous Monitoring", - "id": "relationship--a176ee3d-c9e2-43c4-a509-f75c6c6806c3", - "modified": "2021-01-06T18:28:42.690Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.691Z", - "description": "Continuous Monitoring", - "id": "relationship--8dd5ed30-c7f9-433a-bfa8-3dba9ea82d5f", - "modified": "2021-01-06T18:28:42.691Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.691Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--798e5bec-652c-44e4-9a0b-f0e75f854f3d", - "modified": "2021-01-06T18:28:42.691Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--85e97807-c5a7-4a75-8cb2-80d13fdb69f7", - "modified": "2021-01-06T18:28:42.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9d72bba7-7cb2-4bac-ae0e-5f9434e6d989", - "modified": "2021-01-06T18:28:42.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--4be00890-52d1-4d3e-b088-546892ad5d35", - "modified": "2021-01-06T18:28:42.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fc301be2-368c-4648-a6e6-87791043dc96", - "modified": "2021-01-06T18:28:42.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.692Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ed321e42-11c2-42ab-a0c9-adbb8fbfcbc6", - "modified": "2021-01-06T18:28:42.692Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", - "id": "relationship--1631a6be-daed-460e-abc9-88bbe9c2d576", - "modified": "2021-01-06T18:28:42.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", - "id": "relationship--a38a4014-6a89-40ab-9fb3-660d787fdea9", - "modified": "2021-01-06T18:28:42.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.693Z", - "description": "Boundary Protection", - "id": "relationship--b7f0f0f1-c2fa-4b5a-b110-d2f34c1afd0c", - "modified": "2021-01-06T18:28:42.693Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", - "id": "relationship--4f229084-7e14-41c4-b8d5-00a42f320441", - "modified": "2021-01-06T18:28:42.694Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", - "id": "relationship--113181ed-6d28-478e-a6d4-e732ea9cbad7", - "modified": "2021-01-06T18:28:42.694Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.694Z", - "description": "Information validation and filtering", - "id": "relationship--ec4dada2-14b6-4094-a198-4a565da638e9", - "modified": "2021-01-06T18:28:42.694Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", - "id": "relationship--1110b5b2-5192-4a87-822e-ade8f1a548b2", - "modified": "2021-01-06T18:28:42.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--0bda01d5-4c1d-4062-8ee2-6872334383c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", - "id": "relationship--6556616e-daa0-48c8-81b6-d987c3c28fd8", - "modified": "2021-01-06T18:28:42.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--d74c4a7e-ffbf-432f-9365-7ebf1f787cab", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.695Z", - "description": "Information validation and filtering", - "id": "relationship--99711ad5-4ff0-4ca8-9239-89b53b95056c", - "modified": "2021-01-06T18:28:42.695Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--36b2a1d7-e09e-49bf-b45e-477076c2ec01", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--1d0ff2c4-dd67-46cc-94a8-f8fd5c2708ee", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--63ed37e4-364e-4ad6-b8ba-52fa86307624", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--90f3421d-a024-4392-9bcf-d9c03a75d85e", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--c5891cce-72ab-4aee-9343-590bf8e8fac7", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--62c08831-4763-46c5-937a-883682eb6ee0", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.696Z", - "description": "Protect and prevent credential access", - "id": "relationship--9eae3ec4-a58b-46d0-92a1-2925cd512df8", - "modified": "2021-01-06T18:28:42.696Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", - "id": "relationship--a5e1d1ce-a17a-4b86-aadf-c71d8bfe6572", - "modified": "2021-01-06T18:28:42.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", - "id": "relationship--c96e1802-9ebb-4b25-a2ca-2179c8d6c773", - "modified": "2021-01-06T18:28:42.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", - "id": "relationship--26e43003-2a77-4aa7-9460-c4ac2e1d4957", - "modified": "2021-01-06T18:28:42.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.697Z", - "description": "Protect and prevent credential access", - "id": "relationship--6c0b69b3-fb47-488d-b51f-07958c2d7c7a", - "modified": "2021-01-06T18:28:42.697Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.698Z", - "description": "Continuous Monitoring", - "id": "relationship--b5bde6ee-fa1c-439e-bc2f-dc75ee03f403", - "modified": "2021-01-06T18:28:42.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.698Z", - "description": "Continuous Monitoring", - "id": "relationship--307db0c6-c09a-4329-9a66-8007013e87e2", - "modified": "2021-01-06T18:28:42.698Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", - "id": "relationship--ccd36d4c-d7e2-4b37-83a8-e3b68ad80f52", - "modified": "2021-01-06T18:28:42.699Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", - "id": "relationship--ca2ccc5e-7fb4-46ac-86a1-3be84c1c0d17", - "modified": "2021-01-06T18:28:42.699Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.699Z", - "description": "Continuous Monitoring", - "id": "relationship--4b510a2f-79ad-4951-8819-b1233b5e19c6", - "modified": "2021-01-06T18:28:42.699Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ede058b2-bfe5-4fde-ad0e-b6656540b123", - "modified": "2021-01-06T18:28:42.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--fb9596ec-a208-425d-b13a-3f3f50f0db81", - "modified": "2021-01-06T18:28:42.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ce3e47b7-d015-49aa-a940-85523152097f", - "modified": "2021-01-06T18:28:42.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--5524976d-9e0b-42ad-b3ae-2640bf1ed27d", - "modified": "2021-01-06T18:28:42.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.701Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6810b20c-9b96-4e21-8cca-33f75b9acd8e", - "modified": "2021-01-06T18:28:42.701Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8363e0d7-9e51-402f-91a1-d5be4dbbcc90", - "modified": "2021-01-06T18:28:42.702Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--5945d863-0a82-4b32-a1b4-3dd4b8a9d721", - "modified": "2021-01-06T18:28:42.702Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ba3be8bd-eb7c-47cc-9dc4-e3f077af7a37", - "modified": "2021-01-06T18:28:42.702Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--2dbe3b8b-cac0-47d3-a3d6-15b6d0c61da3", - "modified": "2021-01-06T18:28:42.702Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.702Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--61ff469e-dd8a-41ce-ad50-065657fdfca0", - "modified": "2021-01-06T18:28:42.702Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.703Z", - "description": "Boundary Protection", - "id": "relationship--0c70c2d7-ee7d-401f-aaac-374c0a8c1fca", - "modified": "2021-01-06T18:28:42.703Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", - "id": "relationship--eb67e12e-0fac-46e1-83f0-741e91bff088", - "modified": "2021-01-06T18:28:42.704Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", - "id": "relationship--87cbb28a-e553-4013-bc98-d9f09cafc05c", - "modified": "2021-01-06T18:28:42.704Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", - "id": "relationship--d67b6fc7-4213-4295-8482-682609a395c4", - "modified": "2021-01-06T18:28:42.704Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.704Z", - "description": "Boundary Protection", - "id": "relationship--3f5cdf3e-349f-4f23-bc87-950991a2233f", - "modified": "2021-01-06T18:28:42.704Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--42996766-37d2-426a-b4a0-727d93d9bb95", - "modified": "2021-01-06T18:28:42.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--042b7cda-0d11-4e6c-be38-94bbde3f47b6", - "modified": "2021-01-06T18:28:42.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.705Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0e3ac3c6-f42a-4b9e-aeed-09a27c02c784", - "modified": "2021-01-06T18:28:42.705Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--eceab300-3c1c-41a9-9b34-99de6a56b277", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--37d9f348-927a-403c-9ee9-50655728a633", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--c4e37f39-b2c4-4d2e-8366-47839e144844", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f75017b4-bf93-4fb8-90d9-8b195ea262ad", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fd4ea8d0-44ce-4727-91df-b3555274dea1", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--073aecff-310e-4f67-b2da-327f29251aed", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.706Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b8f346c4-c9a5-42ad-9d81-1e32b1c1fb8c", - "modified": "2021-01-06T18:28:42.706Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e16ea92b-55d3-4c2b-ba75-d1a590059d06", - "modified": "2021-01-06T18:28:42.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--18cffc21-3260-437e-80e4-4ab8bf2ba5e9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--56479ba1-2a6d-46da-8f28-476dfcc5007e", - "modified": "2021-01-06T18:28:42.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--2bee5ffb-7a7a-4119-b1f2-158151b19ac0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8d644260-bf9c-4e3a-ba0e-d174802670e3", - "modified": "2021-01-06T18:28:42.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--c675646d-e204-4aa8-978d-e3d6d65885c4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3b806c37-1243-4e23-936a-f03780e7e48d", - "modified": "2021-01-06T18:28:42.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--0df05477-c572-4ed6-88a9-47c581f548f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.707Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--868802a7-c65a-45ce-8be4-958ac2904c68", - "modified": "2021-01-06T18:28:42.707Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--38eb0c22-6caf-46ce-8869-5964bd735858", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--02f808dc-a2f2-4f17-ab3e-f3f96cdf8b7c", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--d5a69e86-fc3b-4ef6-9300-ce4d4513531a", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.709Z", - "description": "Access Control, External Systems", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.709Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.710Z", - "description": "Continuous Monitoring", - "id": "relationship--34bac784-fbbd-48e5-8603-4025a864d4bc", - "modified": "2021-01-06T18:28:42.710Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.711Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.711Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--95b2dadc-6ba2-4013-b82d-12869e2bbd38", - "modified": "2021-01-06T18:28:42.711Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.712Z", - "description": "Identification", - "id": "relationship--f4da3c0e-bc4a-4349-aead-3153b29ae5d5", - "modified": "2021-01-06T18:28:42.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.712Z", - "description": "Identification", - "id": "relationship--a93de52e-25ad-48e1-b708-8f095cee26b3", - "modified": "2021-01-06T18:28:42.712Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.713Z", - "description": "Boundary Protection", - "id": "relationship--e341c74b-f9b3-43c4-b368-541f0ff04944", - "modified": "2021-01-06T18:28:42.713Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.714Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.714Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.715Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--59d4d5e1-93ba-4232-94fe-5a217601b1fc", - "modified": "2021-01-06T18:28:42.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.715Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--b653e12f-cbf8-4a58-b0c8-b14e0d6bb329", - "modified": "2021-01-06T18:28:42.715Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--3254ccd0-d1b5-49fc-8627-611f7562877a", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--b99186be-89bc-46a4-a0b4-7c8ec894d1e0", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--d5377f2c-3089-424f-9a7c-f080ef08d3e6", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.717Z", - "description": "Access Control, External Systems", - "id": "relationship--8dae65f5-9f22-49dc-a0bf-58317930677b", - "modified": "2021-01-06T18:28:42.717Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.719Z", - "description": "Continuous Monitoring", - "id": "relationship--10d96dd7-20c4-45ee-9253-9c91df450907", - "modified": "2021-01-06T18:28:42.719Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.720Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7f7fe602-a786-4821-8a68-bbc8f94bd4ae", - "modified": "2021-01-06T18:28:42.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.720Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1f1ef544-28af-47b5-96eb-4707ab9850e9", - "modified": "2021-01-06T18:28:42.720Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.721Z", - "description": "Identification", - "id": "relationship--046969dc-bf88-4f42-9d54-604849dac059", - "modified": "2021-01-06T18:28:42.721Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.722Z", - "description": "Identification", - "id": "relationship--38912acf-7f73-4f25-bc14-771379ae34a3", - "modified": "2021-01-06T18:28:42.722Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.723Z", - "description": "Boundary Protection", - "id": "relationship--b5b65d40-d256-413e-b550-1db72b57fdfa", - "modified": "2021-01-06T18:28:42.723Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dfeaf323-e583-478d-938e-90c720976a4b", - "modified": "2021-01-06T18:28:42.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--09db74d2-047e-449f-94a1-598d780f99bd", - "modified": "2021-01-06T18:28:42.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.724Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e184026e-fad4-452d-b1f5-774790e09509", - "modified": "2021-01-06T18:28:42.724Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--d4bdbdea-eaec-4071-b4f9-5105e12ea4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--b9582b24-186f-461c-b84e-01b4af8d8a78", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--f8734fa4-9e96-4d1f-b5b2-cfa4a5767dab", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.725Z", - "description": "Access Control, External Systems", - "id": "relationship--9f2c1c23-d1a8-4036-98c6-1fe766b042af", - "modified": "2021-01-06T18:28:42.725Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", - "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:42.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", - "id": "relationship--af647ad8-da6c-4899-87a5-02dc14db3c1f", - "modified": "2021-01-06T18:28:42.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.726Z", - "description": "Access Control, External Systems", - "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:42.726Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.727Z", - "description": "Continuous Monitoring", - "id": "relationship--396a7485-7c77-46a9-8562-3f5cf2811764", - "modified": "2021-01-06T18:28:42.727Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.727Z", - "description": "Continuous Monitoring", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:42.727Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6cae7608-6e02-4083-9c6b-85414a3e0a58", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a7b125ef-ee19-4da3-97c7-9e5f88a9c37f", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.728Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:42.728Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", - "id": "relationship--efa2faa4-2283-4c61-acc6-d0b0f4265ed5", - "modified": "2021-01-06T18:28:42.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", - "id": "relationship--29be95a5-4b1c-4bc3-a19a-d810bc58ba1a", - "modified": "2021-01-06T18:28:42.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", - "id": "relationship--c766bbc6-6b85-42b9-9ca6-4ea076c7191b", - "modified": "2021-01-06T18:28:42.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.729Z", - "description": "Identification", - "id": "relationship--0079f7f0-5d6b-4bb7-925a-02c834e1674d", - "modified": "2021-01-06T18:28:42.729Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.730Z", - "description": "Boundary Protection", - "id": "relationship--2c20dc0e-2a5d-4015-9115-b0f287e6f9dc", - "modified": "2021-01-06T18:28:42.730Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.730Z", - "description": "Boundary Protection", - "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:42.730Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.731Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--84537d74-144f-4924-af98-1209d4b688cf", - "modified": "2021-01-06T18:28:42.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.731Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.731Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--0ca863bb-2c4d-44c2-a41b-ae96972bd4e7", - "modified": "2021-01-06T18:28:42.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--e557b4bd-32aa-4bbe-a913-b9228a547c34", - "modified": "2021-01-06T18:28:42.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--beac07e7-5f32-4772-adf1-dbae99efce66", - "modified": "2021-01-06T18:28:42.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.732Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--aec88f4f-50a7-4f1f-9cc3-bb34817c76e7", - "modified": "2021-01-06T18:28:42.732Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.733Z", - "description": "Protect and prevent credential access", - "id": "relationship--1fe8af30-185a-43ba-810b-84201e914785", - "modified": "2021-01-06T18:28:42.733Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--ed904066-9ad4-45e8-a978-437dde2b9d4c", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--423f0e66-8e26-4bac-bc8a-3e64c29d0695", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--c1059f14-7ee4-4e15-ac6c-6c429d194186", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.734Z", - "description": "Protect and prevent credential access", - "id": "relationship--3ced5320-cd89-4b6e-9dd5-e4d06d773123", - "modified": "2021-01-06T18:28:42.734Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.735Z", - "description": "Protect and prevent credential access", - "id": "relationship--363ef381-4277-40db-a7b1-b78510bdc631", - "modified": "2021-01-06T18:28:42.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.735Z", - "description": "Continuous Monitoring", - "id": "relationship--a30fc414-ffc5-4c43-85d9-5e0f358e1f6f", - "modified": "2021-01-06T18:28:42.735Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Continuous Monitoring", - "id": "relationship--6066b5ca-bfb4-4b91-b0c6-b07d5ed89c24", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Continuous Monitoring", - "id": "relationship--208021f9-013d-4066-9153-37df5e27cecf", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.736Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.736Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ff701f61-a4e6-4310-8b32-45eeeca22394", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--f373e546-e65c-46a2-8983-470ce2b2224c", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.737Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--1689e63b-dcf3-425b-a448-78dd906b24f2", - "modified": "2021-01-06T18:28:42.737Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--4b04720a-aac9-4e96-822c-cdb1ae7565be", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--0537ae42-7cbc-4615-adab-2a84d8622360", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.738Z", - "description": "Boundary Protection", - "id": "relationship--6548971f-22b9-455b-9330-d95bb07ddff2", - "modified": "2021-01-06T18:28:42.738Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.739Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.739Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--7df56434-eef4-4a6e-8e17-6f2db8c784e2", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--30b1c2cd-21ef-42fa-9f18-5c284804bdec", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--dae44126-d7af-48e6-8891-3c74ecc049b5", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--87da20cf-d505-47bd-9475-5de2ad2a7f20", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--50a40a34-0f8b-4092-97cd-6e5c744253bc", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.740Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3aedc46a-9663-48fe-b1a2-cd27588b9be5", - "modified": "2021-01-06T18:28:42.740Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.741Z", - "description": "Protect and prevent credential access", - "id": "relationship--acef280f-4611-4452-ba78-4d2abeb9dc5a", - "modified": "2021-01-06T18:28:42.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.741Z", - "description": "Protect and prevent credential access", - "id": "relationship--d60ced7d-7029-4524-b8cc-cf56d06c9914", - "modified": "2021-01-06T18:28:42.741Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.742Z", - "description": "Continuous Monitoring", - "id": "relationship--285cc5eb-0bcb-4be6-bec1-dee3a80747ea", - "modified": "2021-01-06T18:28:42.742Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.743Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--c3a019ad-7e71-4205-905c-37c8420a26d9", - "modified": "2021-01-06T18:28:42.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.743Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a436584b-5596-4f47-8f2e-b1fd2ff5afc9", - "modified": "2021-01-06T18:28:42.743Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.745Z", - "description": "Boundary Protection", - "id": "relationship--9084d3d8-bea2-4957-ae12-411e4fdbc345", - "modified": "2021-01-06T18:28:42.745Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3d727b0a-2091-4948-b4b7-1fc83f380f8d", - "modified": "2021-01-06T18:28:42.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--cf782d56-ebf2-4dc5-82e1-c2b858c60aa4", - "modified": "2021-01-06T18:28:42.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.746Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--f1a0154f-e205-4604-ab0e-1a5813b3949a", - "modified": "2021-01-06T18:28:42.746Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--bf90d72c-c00b-45e3-b3aa-68560560d4c5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.747Z", - "description": "Protect and prevent credential access", - "id": "relationship--313aa1e3-d4b1-446b-a288-cd7afea7cbb8", - "modified": "2021-01-06T18:28:42.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.747Z", - "description": "Protect and prevent credential access", - "id": "relationship--8af9a670-9e81-4f25-9590-a40dad5d01da", - "modified": "2021-01-06T18:28:42.747Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.748Z", - "description": "Continuous Monitoring", - "id": "relationship--986c64c6-4f1b-493a-8a40-480efd009c20", - "modified": "2021-01-06T18:28:42.748Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.749Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--3e0c9cc8-7e46-4988-ba04-d3ce0928efee", - "modified": "2021-01-06T18:28:42.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.749Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a5e2e305-57b2-403b-9b28-2d023f083cc7", - "modified": "2021-01-06T18:28:42.749Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.750Z", - "description": "Boundary Protection", - "id": "relationship--b737f256-2d87-42c2-9e25-67fb89cc34f5", - "modified": "2021-01-06T18:28:42.750Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.751Z", - "description": "Information validation and filtering", - "id": "relationship--d1bb6cf2-ca21-4df8-bcf7-8204e4c74acf", - "modified": "2021-01-06T18:28:42.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.751Z", - "description": "Information validation and filtering", - "id": "relationship--9e5c24d8-9af9-4099-ba58-7c764f950269", - "modified": "2021-01-06T18:28:42.751Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--4fe28b27-b13c-453e-a386-c2ef362a573b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.752Z", - "description": "Protect and prevent credential access", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:42.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.752Z", - "description": "Protect and prevent credential access", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:42.752Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.753Z", - "description": "Protect and prevent credential access", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:42.753Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.753Z", - "description": "Protect and prevent credential access", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:42.753Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.754Z", - "description": "Continuous Monitoring", - "id": "relationship--7aac4d37-fcf7-4353-8cc3-354c320123f5", - "modified": "2021-01-06T18:28:42.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.754Z", - "description": "Continuous Monitoring", - "id": "relationship--a5e3887a-3b7f-456d-80a8-92879b4b5510", - "modified": "2021-01-06T18:28:42.754Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--e4531376-9d3f-4796-9914-77e85888a2b7", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.755Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--52436074-3033-4f1d-acb1-85bab7a3c9d8", - "modified": "2021-01-06T18:28:42.755Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.756Z", - "description": "Boundary Protection", - "id": "relationship--ad1881a3-3a28-4627-a801-15a74fff9ae6", - "modified": "2021-01-06T18:28:42.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.756Z", - "description": "Boundary Protection", - "id": "relationship--c010c2b6-5258-4834-9102-4734f24a0d84", - "modified": "2021-01-06T18:28:42.756Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--1062add1-05fd-4287-a09d-1d875b67be7a", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--9abad197-3a16-4a90-adb6-bfb17c42b71b", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--c77bc137-41b5-4edd-bbd8-3c2ea23c2007", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.757Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--9efd48df-cb6b-4875-8796-308e775f63cb", - "modified": "2021-01-06T18:28:42.757Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.758Z", - "description": "Access Control, External Systems", - "id": "relationship--da85bbb8-378d-4fa6-a53f-8ed4456e4328", - "modified": "2021-01-06T18:28:42.758Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--c1936130-b7fb-4e61-a607-fd1d482ee97e", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--b5bf8437-4f4e-432e-99f5-6877bc85191c", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--0e19599f-b9db-4039-9bbf-62aeddfaea14", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--bdb565f6-b2fb-4ad1-8a85-cd76d2080ea8", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.759Z", - "description": "Access Control, External Systems", - "id": "relationship--2f069c7b-e084-4022-ae43-c811b8c19e5d", - "modified": "2021-01-06T18:28:42.759Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", - "id": "relationship--23277cb5-4b15-4a17-9fab-0937b0bfbff5", - "modified": "2021-01-06T18:28:42.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", - "id": "relationship--023c15e4-0c8f-4d35-9e93-4fd41e9d19da", - "modified": "2021-01-06T18:28:42.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.760Z", - "description": "Access Control, External Systems", - "id": "relationship--7619d492-4804-46fc-8748-52c1d182584a", - "modified": "2021-01-06T18:28:42.760Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", - "id": "relationship--8a6d1458-d96a-4ed5-a8ad-78fcd70f41e6", - "modified": "2021-01-06T18:28:42.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", - "id": "relationship--fa9096cf-5705-4e53-b18d-a786de974669", - "modified": "2021-01-06T18:28:42.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.761Z", - "description": "Access Control, External Systems", - "id": "relationship--af0e4ebf-0d6a-41e0-807f-ebce1bf74a5e", - "modified": "2021-01-06T18:28:42.761Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--aeada094-4aa3-4852-ac76-1850f6b5e6ff", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--a5beaa99-dd96-40d0-969c-e6f28d180b99", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.762Z", - "description": "Continuous Monitoring", - "id": "relationship--7aaa2269-9d43-47ac-a4a7-859dab253bf5", - "modified": "2021-01-06T18:28:42.762Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--99b64fc2-7b49-40be-ae3b-3caf896a71bd", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.763Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b2174f7e-3f37-4018-acf5-6c6986f5388d", - "modified": "2021-01-06T18:28:42.763Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.764Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--ae9633eb-c14f-4d52-addb-1ef28ef49d56", - "modified": "2021-01-06T18:28:42.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.764Z", - "description": "Identification", - "id": "relationship--34c170ea-51f8-41ad-83f0-deccdd1e4973", - "modified": "2021-01-06T18:28:42.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.764Z", - "description": "Identification", - "id": "relationship--ebc7e103-2892-4a83-a768-fa4e6d6eaf6e", - "modified": "2021-01-06T18:28:42.764Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", - "id": "relationship--30d13aaf-93be-4b26-96d8-a92298cca232", - "modified": "2021-01-06T18:28:42.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", - "id": "relationship--15716f4c-c1fd-42ea-8565-b8df9f43bb2e", - "modified": "2021-01-06T18:28:42.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", - "id": "relationship--73185afd-93e2-4487-aa95-446ed18456dd", - "modified": "2021-01-06T18:28:42.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.765Z", - "description": "Identification", - "id": "relationship--cfad7fa4-3583-4108-ab7f-b77d337afb69", - "modified": "2021-01-06T18:28:42.765Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.766Z", - "description": "Boundary Protection", - "id": "relationship--7870d021-99a5-40b5-a7d6-5c39e4d06a83", - "modified": "2021-01-06T18:28:42.766Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.767Z", - "description": "Boundary Protection", - "id": "relationship--3198face-d867-4ddb-aad2-10b560caa1fb", - "modified": "2021-01-06T18:28:42.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.767Z", - "description": "Boundary Protection", - "id": "relationship--f4dfb795-0734-4e68-a63d-fc5045fdd0f1", - "modified": "2021-01-06T18:28:42.767Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--d1e6595e-1d7d-4f5b-84f1-ef68df354555", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--554b6166-4880-416d-b078-7a9818f41dcb", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--15258c47-84ce-4550-b020-873b5a19d1b7", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.768Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--3a0aa652-b6b9-4714-84c8-7aab9a486ccc", - "modified": "2021-01-06T18:28:42.768Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.769Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--8a2e6258-9e8f-45bf-bda9-893bc9d3938b", - "modified": "2021-01-06T18:28:42.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.769Z", - "description": "System Monitoring, Information validation and filtering", - "id": "relationship--fef1ee07-5c91-4deb-904e-38bb91b62956", - "modified": "2021-01-06T18:28:42.769Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c82d8ed8-d9c5-4da6-b77b-14053b20d95d", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ce631fb7-1608-4dc2-ba24-55d01da3b542", - "modified": "2021-01-06T18:28:42.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--00275f92-565d-4d7c-869c-390394f8bb8e", - "modified": "2021-01-06T18:28:42.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.770Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--4b0b4c66-a044-4b18-9034-285b0eaa44fb", - "modified": "2021-01-06T18:28:42.770Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ba374b5c-8533-4086-866b-f4a1fc54bad5", - "modified": "2021-01-06T18:28:42.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--df8bec88-965c-48bd-87f8-6a1b87a39535", - "modified": "2021-01-06T18:28:42.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.771Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--af3f2f7d-338b-400d-b275-525348209dad", - "modified": "2021-01-06T18:28:42.771Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ea9408fc-6013-49e7-b3aa-21c0f5178b1b", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.772Z", - "description": "Configuration Management, Application Control", - "id": "relationship--99a4ed9a-3e1e-47d6-a9cd-ad3274655fac", - "modified": "2021-01-06T18:28:42.772Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.773Z", - "description": "Configuration Management, Application Control", - "id": "relationship--4d254cca-7919-436e-8828-8e12666fa165", - "modified": "2021-01-06T18:28:42.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.773Z", - "description": "Configuration Management, Application Control", - "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:42.773Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--682adc3d-298f-4ea5-8ba4-364042e51a09", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--08281c26-b603-443b-816d-51a96c9af643", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--bfc817a3-c9fe-4f13-8f04-5a11583ce1ce", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--91683571-f109-4b26-96ab-c230ffcb421c", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.774Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b2800bc0-62ff-460d-a48a-88f4b4d6fffd", - "modified": "2021-01-06T18:28:42.774Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", - "id": "relationship--1613bc51-18ed-416b-80db-aa7bef85feb8", - "modified": "2021-01-06T18:28:42.775Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", - "id": "relationship--e327b94b-7194-4ff9-a7c3-6d14d3ac8896", - "modified": "2021-01-06T18:28:42.775Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", - "id": "relationship--02d8b4e1-be82-457c-8b79-2e4757cae398", - "modified": "2021-01-06T18:28:42.775Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.775Z", - "description": "Information Validation", - "id": "relationship--16226aae-8f2b-4799-a30f-56f827ce5452", - "modified": "2021-01-06T18:28:42.775Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--79b7a1fa-664d-4c49-ae91-6465ced25db9", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--79c51fac-fbc1-4766-be8c-b010647a47fd", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--fdf3ac7e-9224-43be-8662-ff17226c7cf6", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--906ce409-0aaf-4a55-bce8-ccafb7cf2e4a", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--f6fe7fa3-e19f-4629-ab63-834af13ca5c7", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--347e9e36-5e80-40b0-afad-680a7322ab44", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--2b9b0895-d5c6-473d-b4b0-e1cfcfad907e", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.776Z", - "description": "Information Validation", - "id": "relationship--60c2dee2-5588-4acd-bbb9-0b97fe27394a", - "modified": "2021-01-06T18:28:42.776Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a9d4b653-6915-42af-98b2-5758c4ceee56", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.777Z", - "description": "Information Validation", - "id": "relationship--4aab7ccd-d251-4e55-a896-c86fbc473fb5", - "modified": "2021-01-06T18:28:42.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.777Z", - "description": "Information Validation", - "id": "relationship--3066f603-d78c-4abb-9573-8eb03f487805", - "modified": "2021-01-06T18:28:42.777Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--d1fcf083-a721-4223-aedf-bf8960798d62", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--90cd0928-5e32-4ef7-8936-5d00d760368b", - "modified": "2021-01-06T18:28:42.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--34bcd1dc-25cf-4838-a45f-b177b8bf08a8", - "modified": "2021-01-06T18:28:42.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.778Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8e5b9f64-2990-46d3-aec1-547e6a1e52b7", - "modified": "2021-01-06T18:28:42.778Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.779Z", - "description": "Configuration Management, Application Control", - "id": "relationship--89796b86-a75e-413c-afe8-be7851591104", - "modified": "2021-01-06T18:28:42.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.779Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b421673d-4b9b-4b3d-89d3-6715b3ed996a", - "modified": "2021-01-06T18:28:42.779Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6de72fa9-7a51-464b-9070-02f04f706492", - "modified": "2021-01-06T18:28:42.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--86c7e71b-d36c-44c5-bb1d-d4ebe01892f2", - "modified": "2021-01-06T18:28:42.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.780Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--88eb0321-da01-401a-917e-2e6e5690c42c", - "modified": "2021-01-06T18:28:42.780Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--99f9c7bf-21d1-4f56-8b72-075c9998ed64", - "modified": "2021-01-06T18:28:42.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--b5932f52-10cc-483b-b956-e841e8420768", - "modified": "2021-01-06T18:28:42.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.781Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2b6f2243-8871-4299-93c3-4c12f3f09cff", - "modified": "2021-01-06T18:28:42.781Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.782Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--b3d457e5-dc75-4171-8261-3a66a0e50132", - "modified": "2021-01-06T18:28:42.782Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.783Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--229cf14f-900d-4006-8d6f-74536f37e6c8", - "modified": "2021-01-06T18:28:42.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.783Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--e356e6b9-2d9f-4982-b0b1-c72e45004018", - "modified": "2021-01-06T18:28:42.783Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.784Z", - "description": "Configuration Management, Application Control", - "id": "relationship--619a8478-6522-45b9-997d-96ba85113181", - "modified": "2021-01-06T18:28:42.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.784Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d9159aac-d3be-45c3-9fc1-733206e716c5", - "modified": "2021-01-06T18:28:42.784Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0a5231ec-41af-4a35-83d0-6bdf11f28c65", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.785Z", - "description": "Information Validation", - "id": "relationship--e5f02d01-3412-49ca-aa10-538ca0a17f42", - "modified": "2021-01-06T18:28:42.785Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.785Z", - "description": "Information Validation", - "id": "relationship--5f9d27e5-5d22-43fc-af4f-49f679914ca3", - "modified": "2021-01-06T18:28:42.785Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.786Z", - "description": "Configuration Management, Application Control", - "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:42.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.786Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ed32b481-aaec-4d4a-b65c-62ad8e9c647c", - "modified": "2021-01-06T18:28:42.786Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--049c85a0-db49-47e4-b381-e1a156343366", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cf9c7098-abd7-467c-ace2-8a4f6520cdc0", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--72cc102e-c65a-470a-adbe-70cfac81076c", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.787Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--941f37c4-4b11-4c64-8451-c139ba20389d", - "modified": "2021-01-06T18:28:42.787Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.788Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--331a3a80-dc82-4a54-9765-c6ee03410c15", - "modified": "2021-01-06T18:28:42.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.788Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--0892bbd9-ae71-4a5f-8121-aa4e4f7b074a", - "modified": "2021-01-06T18:28:42.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.788Z", - "description": "Configuration Management, Application Control", - "id": "relationship--ca778c05-a05e-4903-9c57-1e8082cb7feb", - "modified": "2021-01-06T18:28:42.788Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", - "id": "relationship--bf33b7e8-072f-4b25-b933-ec61a98e24d3", - "modified": "2021-01-06T18:28:42.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", - "id": "relationship--e96de249-ba91-4f21-b49f-b4d37f0f8f6b", - "modified": "2021-01-06T18:28:42.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--232b7f21-adf9-4b42-b936-b9d6f7df856e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.789Z", - "description": "Configuration Management, Application Control", - "id": "relationship--deeacc55-5471-4134-8fcb-1d07d9f70503", - "modified": "2021-01-06T18:28:42.789Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--8c32eb4d-805f-4fc5-bf60-c4d476c131b5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--61eae578-2f3c-4d0b-a0f0-4321270d0a55", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8749b9b2-d5b3-49c9-8c96-bb2904c50907", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--e986bf4e-76a4-4296-9550-5affd8ea5b8f", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--f7abc651-b4c1-4a3d-8167-306f6b481155", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--89c1f8c6-ce3e-47f5-a6f2-1d14c12e8240", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.790Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--730e4110-7bf1-4c2d-96b2-5e2ed8a197f8", - "modified": "2021-01-06T18:28:42.790Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--062b863f-fa10-41a9-a125-420552600894", - "modified": "2021-01-06T18:28:42.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9042fbcd-62ff-4638-b645-cf7bdeafe6f4", - "modified": "2021-01-06T18:28:42.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3d45f9fb-a1cf-40a3-9228-e35d0d17c4a4", - "modified": "2021-01-06T18:28:42.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.791Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--42171dab-4080-41b8-ac08-1035c00c65a7", - "modified": "2021-01-06T18:28:42.791Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.792Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--451dd3f1-07dc-47aa-9874-f31dffcc7133", - "modified": "2021-01-06T18:28:42.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--09cd431f-eaf4-4d2a-acaf-2a7acfe7ed58", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.792Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a956e52c-68f1-4efe-9160-cc6cf35b72d1", - "modified": "2021-01-06T18:28:42.792Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f6fe9070-7a65-49ea-ae72-76292f42cebe", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--59c6fc9d-b5c8-46b4-91e2-156a4c25e44d", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--1a8a3271-6d88-4801-966a-66c90eea5326", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cdb93f46-dd5e-4182-8408-3c2d39e23e95", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--388a5478-1ca9-4efe-bb7f-6f429197b468", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.793Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--9b2abe67-2b24-403d-be69-dcc9790c5a8b", - "modified": "2021-01-06T18:28:42.793Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--84d23c31-759b-4cab-be72-02444d7ad5bb", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d3e770af-f34f-4e4c-a711-85556f7b8867", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--1ead29f4-39ff-418b-9554-edca69094587", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d72bc49f-d7fc-4a17-8351-5a832efbb626", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--c33e0324-489e-4789-9b13-82ef700a73f0", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.794Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--a2462eb2-ecf0-42c3-af33-f2c72feb2a45", - "modified": "2021-01-06T18:28:42.794Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2d7c4e6b-92bf-44ed-b196-343d3063aa54", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6faad2d0-a789-495d-a688-0a54b36f23f2", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7acc7754-ea93-4f48-ab20-3baca2021682", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--daa293a6-e721-42a0-bb5e-dadafdff53c2", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d210a69d-1e5b-4505-a773-12af67e0e4df", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.795Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--04aaa4cc-1a52-44ee-acd7-4f313e8bff5a", - "modified": "2021-01-06T18:28:42.795Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8b9ec25d-8823-44a6-8a07-82bd2f2cd0c7", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--8c1dfd95-e1d2-47d9-ac6a-f984bc445f87", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--da72fa55-83f3-41d1-bb48-119840874091", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ce590995-a1fa-46d5-8dc7-81e1e66a6e52", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--2e124bcf-ea68-4688-8420-987e77039e1c", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--ba4f3831-d8ce-474e-bf0c-eb0df4f96081", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--53d8923c-b0ac-4525-b219-5548e517f037", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.796Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--875ebf39-bd86-41a3-8ab1-666b6abf449c", - "modified": "2021-01-06T18:28:42.796Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.797Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d03f20b5-b528-4867-9eff-c01b2c4f4963", - "modified": "2021-01-06T18:28:42.797Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2c369f23-9324-4dee-9459-f0deb3119c44", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--91703745-7335-450e-b5e1-af87f2a0f2d2", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ce56406b-43dd-493a-9676-623ce4a799c0", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--22c88035-94e3-4472-bfbb-75c36fd3c533", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c810962-3f5b-496d-9813-d044fa0875ff", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.798Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--943f1377-376e-4bd1-bcca-9f53b6c09f1f", - "modified": "2021-01-06T18:28:42.798Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0e143146-f275-42a8-8d73-9b783baf4b0a", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--65cc15eb-d9ef-4b6b-9330-085a923e45e4", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--88d67e1c-a2c9-48fc-b4f1-2b9e85411c6a", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--384c6b3d-927d-4068-913f-3026e3ad43e5", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--49c3ef16-0064-4ffe-9981-ffeee2c5ef7f", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ab995d58-298d-4043-87b8-6379b359dc2a", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.799Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--8dad7373-4889-4734-aac7-fbcae98c4843", - "modified": "2021-01-06T18:28:42.799Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0bce5245-6457-4969-9287-35dd966cac69", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--feda0e27-c455-4e2a-b6a7-21e1d50ac1b6", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.800Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f25e0d44-1e42-43d8-b65d-cfe534379d41", - "modified": "2021-01-06T18:28:42.800Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--1084eb8d-c9a8-4f15-a297-09e0507cdc4d", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--cd85580d-1ff8-4ac4-a93f-bfb442dd89e0", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c4702970-8cbf-4b30-a8b9-f89d4c664cf9", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--931beed3-59aa-45db-bbaf-a0eefb8c2280", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--1057f0df-28cd-4fc2-91dc-b74f2d70bae9", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3158c0c5-d138-4c46-9d4d-8f9ce0c4990f", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--25ceface-51b5-481a-a887-73cafc946c71", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.801Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:42.801Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.802Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--137ad219-1a88-4062-b2f8-58874f52f5d4", - "modified": "2021-01-06T18:28:42.802Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.803Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--19008922-b254-43c6-862d-8a00391b6579", - "modified": "2021-01-06T18:28:42.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.803Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--d16d88b4-cebe-48ac-bda6-39004d4f6796", - "modified": "2021-01-06T18:28:42.803Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.804Z", - "description": "Configuration Management, Application Control", - "id": "relationship--48ae36f5-b42b-4d21-bfd7-7c451fa50475", - "modified": "2021-01-06T18:28:42.804Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.804Z", - "description": "Configuration Management, Application Control", - "id": "relationship--f6f16a13-4e0b-4ed5-8200-7a99b2b59866", - "modified": "2021-01-06T18:28:42.804Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--40237e37-bc4d-42ba-9233-5679c41a619d", - "modified": "2021-01-06T18:28:42.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6c23f787-1fb6-4628-84de-524ccb68aac1", - "modified": "2021-01-06T18:28:42.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.805Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7b32e813-3519-4590-bca4-b418760c6931", - "modified": "2021-01-06T18:28:42.805Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--53e74cc9-88e0-4fc2-a35c-b4c4d06c0619", - "modified": "2021-01-06T18:28:42.806Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--88506fb7-989a-49df-82f8-3232f948e624", - "modified": "2021-01-06T18:28:42.806Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.806Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0d3a3357-f26f-4598-881f-d1936da05e32", - "modified": "2021-01-06T18:28:42.806Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", - "id": "relationship--b9241485-eb79-4092-850f-e23b37ba63b4", - "modified": "2021-01-06T18:28:42.807Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", - "id": "relationship--fdeb7f0c-fa0a-462e-bc4a-e9000035184b", - "modified": "2021-01-06T18:28:42.807Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.807Z", - "description": "Information Validation", - "id": "relationship--582ed0a5-ec1d-4c8f-8fbf-d2af124d9d9f", - "modified": "2021-01-06T18:28:42.807Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", - "id": "relationship--dc4afa37-5b4d-488a-b804-4016811e9b3f", - "modified": "2021-01-06T18:28:42.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", - "id": "relationship--066fefd6-d761-47fd-8b15-ec3dea15a5c7", - "modified": "2021-01-06T18:28:42.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", - "id": "relationship--7fb9e3ac-b0f4-4528-9eec-9a039ab282ae", - "modified": "2021-01-06T18:28:42.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", - "id": "relationship--de4fab79-380f-45b7-a22b-670ae2815ed0", - "modified": "2021-01-06T18:28:42.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.808Z", - "description": "Information Validation", - "id": "relationship--26d89a98-a5b9-4906-a582-4483fb419eab", - "modified": "2021-01-06T18:28:42.808Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d288a5bc-fb7c-4481-af58-fe71f57244da", - "modified": "2021-01-06T18:28:42.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", - "id": "relationship--01f0ef43-cdb1-40c2-90be-c0da84b6c866", - "modified": "2021-01-06T18:28:42.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", - "id": "relationship--1be41b7e-9e66-4a4f-a8d9-791982fc49ec", - "modified": "2021-01-06T18:28:42.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.809Z", - "description": "Configuration Management, Application Control", - "id": "relationship--e967b9e8-f563-4476-979b-e254ae112911", - "modified": "2021-01-06T18:28:42.809Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.810Z", - "description": "Information Validation", - "id": "relationship--b977b261-831d-47fe-9c77-bb7cd387be1e", - "modified": "2021-01-06T18:28:42.810Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.810Z", - "description": "Information Validation", - "id": "relationship--120cab3b-cf48-4329-bdfd-b6f53dad9b93", - "modified": "2021-01-06T18:28:42.810Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.811Z", - "description": "Information Validation", - "id": "relationship--ef8b0c11-3ff9-48b4-b0bf-70830dee27e9", - "modified": "2021-01-06T18:28:42.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.811Z", - "description": "Information Validation", - "id": "relationship--5a353ab0-0e49-4b7e-a715-66a88d46dfcd", - "modified": "2021-01-06T18:28:42.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.811Z", - "description": "Configuration Management, Application Control", - "id": "relationship--174ab331-d8c2-47bb-93a7-486801f48889", - "modified": "2021-01-06T18:28:42.811Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.812Z", - "description": "Configuration Management, Application Control", - "id": "relationship--6499b7e7-1b10-4654-a3c5-aa51a1dbf53f", - "modified": "2021-01-06T18:28:42.812Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", - "id": "relationship--7e49d83a-7ffd-4e8d-a09c-4082e404ebc3", - "modified": "2021-01-06T18:28:42.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", - "id": "relationship--ad4232f7-e8a0-47d1-87a1-9aa3b0e2ca46", - "modified": "2021-01-06T18:28:42.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", - "id": "relationship--1afbcab3-a83b-46c6-aaf0-831d6c12e9e3", - "modified": "2021-01-06T18:28:42.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.813Z", - "description": "Code execution", - "id": "relationship--af6b6ddf-6834-46ce-9676-88e8b3473d0e", - "modified": "2021-01-06T18:28:42.813Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", - "id": "relationship--bd06bf0b-43d5-4e20-b6b9-1c4431524ff4", - "modified": "2021-01-06T18:28:42.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", - "id": "relationship--b7495c4d-cfc4-4bcd-bb4f-4953b186c1e1", - "modified": "2021-01-06T18:28:42.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:42.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.814Z", - "description": "System Monitoring", - "id": "relationship--9b407b06-0cc4-4984-a71c-ae690a312903", - "modified": "2021-01-06T18:28:42.814Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--db16f4c7-2ffd-4506-baa7-93895226d93a", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--9b3e123e-4270-4480-bf7b-2f599b5e5615", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--686f74d5-6c17-49ab-af1a-82880b09c59e", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--8a2ef42e-4104-41b1-9342-725301c63305", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--a123451a-bb81-4cbf-a2cf-e420026b1f1b", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.815Z", - "description": "System Monitoring", - "id": "relationship--bef4f0cd-514e-4090-8427-2d557640f490", - "modified": "2021-01-06T18:28:42.815Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.816Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:42.816Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a26c4aaf-2f88-419e-8925-598be511d465", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0a33d09b-9466-485f-99a7-e9bc22008ea7", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--397948e9-3230-4cce-866f-a5258b7d8bc2", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.817Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--7e444870-66d8-4cc9-b205-4c4047e9c76c", - "modified": "2021-01-06T18:28:42.817Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.818Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c74a1b22-8aeb-43ec-8129-9f4177e6aa57", - "modified": "2021-01-06T18:28:42.818Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--b8933b97-831d-46fe-8fb8-fe0574ad25f6", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--151bf7bd-9463-4127-952f-bdedfd6070b8", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--6dd10eed-07da-49c3-925a-434b471adeac", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--cf9d8545-ef6d-4cad-8c3c-955436db1857", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--787bbfe7-c599-464e-9c79-1ec0bdef9621", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.819Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--b3e70027-0bd0-4f7a-9852-870e29653a9c", - "modified": "2021-01-06T18:28:42.819Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--7cc2fc9b-0ea8-48c6-a23e-49db57d27f91", - "modified": "2021-01-06T18:28:42.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--00841fd1-6bfd-41b2-b9df-c70384e1647b", - "modified": "2021-01-06T18:28:42.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.820Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--70a0b812-22d3-4699-b70a-f19dad2b9185", - "modified": "2021-01-06T18:28:42.820Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--528545c2-7036-408d-b4fc-723477e960ab", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--eb593a72-5fbc-4a9a-8197-8c0758be2aab", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--53a00835-83d8-43ef-b0f1-4a82fee41c8f", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c2e3195f-31a3-4763-86b9-2689e9571974", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.821Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--869a2bf4-9993-48eb-8224-a324158aa2f2", - "modified": "2021-01-06T18:28:42.821Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--25463e75-16d0-41ad-b069-7a22d10feff0", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c3c6514-cd47-4c6b-9700-5a54c9cead25", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--2754d367-7ae1-4404-9cf6-2e19c57484b6", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.822Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--49f057fa-f266-440e-a763-03bdccffd5ad", - "modified": "2021-01-06T18:28:42.822Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", - "id": "relationship--d2304f5e-0058-46d7-a21e-e6c421c90658", - "modified": "2021-01-06T18:28:42.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", - "id": "relationship--f99ee096-a155-4ec3-ab04-21203493fe81", - "modified": "2021-01-06T18:28:42.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", - "id": "relationship--bf8e2b69-1059-4ce1-80d3-015ca720febb", - "modified": "2021-01-06T18:28:42.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.823Z", - "description": "Information Validation", - "id": "relationship--316a9a4e-4872-4709-85c7-c2354c462782", - "modified": "2021-01-06T18:28:42.823Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.824Z", - "description": "Configuration Management, Application Control", - "id": "relationship--eeae1f2a-d8ef-47e2-b44b-8ad4119f838a", - "modified": "2021-01-06T18:28:42.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.824Z", - "description": "Configuration Management, Application Control", - "id": "relationship--3f13ca2a-df5b-4249-89ce-990ef3bf006b", - "modified": "2021-01-06T18:28:42.824Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.825Z", - "description": "Information Validation", - "id": "relationship--d22b1f66-20b1-495b-8452-4b371116722a", - "modified": "2021-01-06T18:28:42.825Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--7adebd26-8543-4c4b-9a15-12839e0b05cb", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--88fed362-4477-41a6-bf98-1defd2b19836", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--f1a91b46-88b6-4617-a7c8-ec83ea0a999b", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--772b7c79-a3cd-4200-9b01-652ecd8b6839", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.826Z", - "description": "Information Validation", - "id": "relationship--aa87a77e-fd82-4b99-a0bc-d539ac38e8c2", - "modified": "2021-01-06T18:28:42.826Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--4daf5677-d021-4f1a-8886-18969be564c4", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--71f3ce26-3626-4d1e-8311-0676b0090a86", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--bd8e6dca-1c5a-4343-8661-754e6bdc37ec", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--ac80640a-a963-4d4e-9b44-1ef2f41c8b66", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.827Z", - "description": "Information Validation", - "id": "relationship--9060843b-6185-4288-9d25-ff72a2a1cd61", - "modified": "2021-01-06T18:28:42.827Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", - "id": "relationship--f1c8ae18-449a-4ea5-a6ab-2935dcf2d0fb", - "modified": "2021-01-06T18:28:42.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", - "id": "relationship--0629b5b3-763d-4ad1-bda7-b32a0fed2682", - "modified": "2021-01-06T18:28:42.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.828Z", - "description": "Information Validation", - "id": "relationship--f52f5768-ffe7-4a67-954a-8067cc89df55", - "modified": "2021-01-06T18:28:42.828Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", - "id": "relationship--9bb99b75-4caa-49c5-9548-a4dc096f1b0a", - "modified": "2021-01-06T18:28:42.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", - "id": "relationship--d8a68077-0c96-4e00-bc96-904254f428bc", - "modified": "2021-01-06T18:28:42.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", - "id": "relationship--c244f069-8cca-473f-aae6-bc7414650278", - "modified": "2021-01-06T18:28:42.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", - "id": "relationship--3ed6688d-5192-41e2-ad25-87a8efd63c24", - "modified": "2021-01-06T18:28:42.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.829Z", - "description": "Configuration Management, Application Control", - "id": "relationship--9dfbef8d-b13e-4ab2-a89a-741edc03d18c", - "modified": "2021-01-06T18:28:42.829Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.830Z", - "description": "Configuration Management, Application Control", - "id": "relationship--3e3f4ac1-f9f5-4edd-92b8-5052d758a27d", - "modified": "2021-01-06T18:28:42.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.830Z", - "description": "Configuration Management, Application Control", - "id": "relationship--4d701fb7-38b3-4f23-bdea-81f91ed606bd", - "modified": "2021-01-06T18:28:42.830Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.831Z", - "description": "System Monitoring", - "id": "relationship--ec0d4013-dcf3-48dd-ac7b-1e210b0a3ec1", - "modified": "2021-01-06T18:28:42.831Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.832Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d5ca9e3c-1ebc-467a-8950-d19be107a05d", - "modified": "2021-01-06T18:28:42.832Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.833Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--47a73154-8c83-4fc2-a6c6-c5860ece1bd4", - "modified": "2021-01-06T18:28:42.833Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3aef9463-9a7a-43ba-8957-a867e07c1e6a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.834Z", - "description": "System Monitoring", - "id": "relationship--a32f8f88-39f0-4647-8539-2d8ae0803b59", - "modified": "2021-01-06T18:28:42.834Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.836Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5be53824-e09f-467c-bbd7-09fa23446df2", - "modified": "2021-01-06T18:28:42.836Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.836Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dd091275-c84a-4b41-b2ff-8beded4ab666", - "modified": "2021-01-06T18:28:42.836Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.838Z", - "id": "relationship--cd432f7d-e6dc-4dcb-97a7-19d7455f2d98", - "modified": "2021-01-06T18:28:42.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.838Z", - "id": "relationship--c05681a7-128a-4e5d-bacf-012e2e8b5808", - "modified": "2021-01-06T18:28:42.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.838Z", - "id": "relationship--06440a18-dc9e-410a-8675-76019da8fd76", - "modified": "2021-01-06T18:28:42.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.838Z", - "id": "relationship--f2fa7d49-f4f2-4a9a-833a-7b9cd3a598f6", - "modified": "2021-01-06T18:28:42.838Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.839Z", - "id": "relationship--48f7ee21-7025-4794-ad92-d7798174343d", - "modified": "2021-01-06T18:28:42.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.839Z", - "id": "relationship--d361fccf-12f4-487f-8a9a-4655e330cf3d", - "modified": "2021-01-06T18:28:42.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.839Z", - "id": "relationship--8700d5c0-aebe-45b8-b8d2-271482e1e317", - "modified": "2021-01-06T18:28:42.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.839Z", - "id": "relationship--45a2ee3f-4cfa-4dbf-a725-870c95d8015a", - "modified": "2021-01-06T18:28:42.839Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", - "id": "relationship--2edb4f3b-258f-42cb-ab06-f57ec0204557", - "modified": "2021-01-06T18:28:42.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", - "id": "relationship--c2d107bb-2955-4c84-8d96-0717d43ac4c7", - "modified": "2021-01-06T18:28:42.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", - "id": "relationship--28cae601-4f93-4631-93bd-5e75404522fb", - "modified": "2021-01-06T18:28:42.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.840Z", - "id": "relationship--7622590e-e812-4a8f-b8f5-873f25a7b799", - "modified": "2021-01-06T18:28:42.840Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--2032f0df-5342-44fb-ae62-28639749f8ad", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--dad19b38-acb0-4d3c-b021-a938121b7640", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--7833a633-e6bc-447a-a77e-e9b0efa86a47", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--7284f2fe-d2f6-4b1a-a6c9-cc20f0be770e", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--f55f4200-2b71-4997-940a-25e7558569bd", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.841Z", - "id": "relationship--bde6c907-2a86-4672-bc91-f3c1f075f8ec", - "modified": "2021-01-06T18:28:42.841Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.842Z", - "id": "relationship--68dd5bec-c6d8-4a9e-a1a6-2eb5b3074be1", - "modified": "2021-01-06T18:28:42.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.842Z", - "id": "relationship--8ce60e46-2a0d-410c-9323-4c294196f76b", - "modified": "2021-01-06T18:28:42.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.842Z", - "id": "relationship--12c160e6-09e2-422e-8c4f-c55dcec097c4", - "modified": "2021-01-06T18:28:42.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.842Z", - "id": "relationship--f4a8492f-3276-4295-b290-2bc2cf048689", - "modified": "2021-01-06T18:28:42.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.842Z", - "id": "relationship--250e2df0-59ee-458b-bdae-2de4d77135b1", - "modified": "2021-01-06T18:28:42.842Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.843Z", - "id": "relationship--3d9d6f28-13a3-4426-a456-1f05166aaed9", - "modified": "2021-01-06T18:28:42.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.843Z", - "id": "relationship--9ed50368-d6bf-4cc3-805e-d02722cd21f0", - "modified": "2021-01-06T18:28:42.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.843Z", - "id": "relationship--53f54e25-2741-4a2c-a310-d6f2dcf2ec0a", - "modified": "2021-01-06T18:28:42.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.843Z", - "id": "relationship--ed7ae8f3-23b8-43ce-8be3-8eb814f1259b", - "modified": "2021-01-06T18:28:42.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.843Z", - "id": "relationship--8b971df0-56e3-4151-8ad2-ee2f6095cde9", - "modified": "2021-01-06T18:28:42.843Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--2ddc4e2a-b774-4fa5-a6fd-850c4fabcc08", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--79ad2ea5-4179-453d-b457-18ca60360fd1", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--e17c6f7e-2a5b-44ce-93a9-dd9718f57017", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--c4e31292-60a9-419c-ae02-b701ed7aff02", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--c1fd60e6-ad90-4213-b794-919b82f61f75", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--d98b0f21-9012-4e3f-b0a5-53c089820ad3", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.844Z", - "id": "relationship--534c0f4d-e25e-4799-9a26-3e4b9bb7ed58", - "modified": "2021-01-06T18:28:42.844Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.845Z", - "id": "relationship--84f3a4e9-38bd-4c48-879f-d9a618340bc0", - "modified": "2021-01-06T18:28:42.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.845Z", - "id": "relationship--ccbaab28-c340-4503-9cf8-fdbfaf715f98", - "modified": "2021-01-06T18:28:42.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.845Z", - "id": "relationship--5d3d1afa-fd0a-4f95-8d9e-1ed9cef36a05", - "modified": "2021-01-06T18:28:42.845Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.846Z", - "id": "relationship--1655fca8-06cd-4fe8-9516-3d24e5db3d23", - "modified": "2021-01-06T18:28:42.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.846Z", - "id": "relationship--fb0b2d73-3db5-44e5-8518-328bcc40e577", - "modified": "2021-01-06T18:28:42.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.846Z", - "id": "relationship--2f153971-16cb-47cb-97f8-7c2eaf6f371b", - "modified": "2021-01-06T18:28:42.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.846Z", - "id": "relationship--2a57ac0b-ae20-470a-b6a7-6c2f6d440803", - "modified": "2021-01-06T18:28:42.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.846Z", - "id": "relationship--b63f931e-24c6-4bba-b5ae-288ca3d90c1a", - "modified": "2021-01-06T18:28:42.846Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.847Z", - "id": "relationship--2e5c9706-6d90-472d-a70c-a6a3c6cc6eb2", - "modified": "2021-01-06T18:28:42.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.847Z", - "id": "relationship--4192568a-0f9b-48a2-90ea-f4f5adf736b5", - "modified": "2021-01-06T18:28:42.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.847Z", - "id": "relationship--3d4ecb8b-48ab-4409-8563-3983238ca5c8", - "modified": "2021-01-06T18:28:42.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.847Z", - "id": "relationship--4d86d33e-487b-4813-aaae-52377281720c", - "modified": "2021-01-06T18:28:42.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.847Z", - "id": "relationship--a7186dce-0ec6-4d3c-bb73-eba82993812c", - "modified": "2021-01-06T18:28:42.847Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.848Z", - "id": "relationship--3442f080-2528-4113-87a2-01dc5a4bf08f", - "modified": "2021-01-06T18:28:42.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.848Z", - "id": "relationship--a0850ead-1b6d-4960-b288-bf0d7556a083", - "modified": "2021-01-06T18:28:42.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.848Z", - "id": "relationship--7b3b069e-50df-43b7-8df9-5febde0c0d26", - "modified": "2021-01-06T18:28:42.848Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.849Z", - "id": "relationship--bf83c84b-f764-4207-84d4-8e0dfa49862d", - "modified": "2021-01-06T18:28:42.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.849Z", - "id": "relationship--bc46a92b-d254-45c1-9f79-abbf66ab9e6a", - "modified": "2021-01-06T18:28:42.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.849Z", - "id": "relationship--53b53d1e-262c-4cb0-bb37-8fbe6466a6c1", - "modified": "2021-01-06T18:28:42.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.849Z", - "id": "relationship--cd2a062f-635d-4a94-b7b0-f94a6d68cd83", - "modified": "2021-01-06T18:28:42.849Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.850Z", - "id": "relationship--74f68704-0617-4346-bdf0-d95961d2a32e", - "modified": "2021-01-06T18:28:42.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.850Z", - "id": "relationship--23be73b7-ed90-4d02-b5d3-00a682a66041", - "modified": "2021-01-06T18:28:42.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.850Z", - "id": "relationship--9aeb9e88-a62a-42d1-bb64-18f96d3655cb", - "modified": "2021-01-06T18:28:42.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.850Z", - "id": "relationship--dbef4540-920c-433a-9c3b-99a62ab53982", - "modified": "2021-01-06T18:28:42.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.850Z", - "id": "relationship--da72cc92-4d2e-43fe-a77c-34c90e7e6058", - "modified": "2021-01-06T18:28:42.850Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.851Z", - "id": "relationship--101418dd-911b-41cb-a4c3-7e2a36c5b219", - "modified": "2021-01-06T18:28:42.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.851Z", - "id": "relationship--38fb348a-3a64-463a-9a76-d78a2396d1c0", - "modified": "2021-01-06T18:28:42.851Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.852Z", - "id": "relationship--238229f5-ac4a-4223-81a1-3b324313549c", - "modified": "2021-01-06T18:28:42.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.852Z", - "id": "relationship--8b2cfa25-0cd3-4933-bd3c-094fcd81bace", - "modified": "2021-01-06T18:28:42.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.852Z", - "id": "relationship--f6b608c1-c0a3-466f-8fbf-4c0fb0cde231", - "modified": "2021-01-06T18:28:42.852Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", - "id": "relationship--d5e12b98-df17-4a84-922a-d77067a57d0a", - "modified": "2021-01-06T18:28:42.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", - "id": "relationship--410a6128-ec5b-4fe6-ade6-81f9550e39ee", - "modified": "2021-01-06T18:28:42.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", - "id": "relationship--71d4ee38-472c-4b5c-aa01-09d59d4a1fa6", - "modified": "2021-01-06T18:28:42.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", - "id": "relationship--213f7e5e-2292-4875-8f8c-626939d25cc3", - "modified": "2021-01-06T18:28:42.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.853Z", - "id": "relationship--6d997ec6-fc81-453c-a15c-953cefcc4cdb", - "modified": "2021-01-06T18:28:42.853Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.854Z", - "id": "relationship--ae55a13c-a542-47ce-a2b3-6a515bd01260", - "modified": "2021-01-06T18:28:42.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.854Z", - "id": "relationship--d664c37c-61f8-4de9-a6b4-5bdc8e9b34d2", - "modified": "2021-01-06T18:28:42.854Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.858Z", - "id": "relationship--c27a415e-6ae0-4f52-a69f-194c6cfe05fe", - "modified": "2021-01-06T18:28:42.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.858Z", - "id": "relationship--d3f1b214-c7c8-46f9-86ad-6b4890ecffb2", - "modified": "2021-01-06T18:28:42.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.858Z", - "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:42.858Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.859Z", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:42.859Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.860Z", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:42.860Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--feda0e27-c455-4e2a-b6a7-21e1d50ac1b6", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.860Z", - "id": "relationship--6bc4e8ea-6737-414b-8833-b5de67900241", - "modified": "2021-01-06T18:28:42.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.860Z", - "id": "relationship--de79aadf-2a0d-4b2a-93e0-3a14acf895e5", - "modified": "2021-01-06T18:28:42.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.860Z", - "id": "relationship--de5e4e56-5978-4b3a-807b-74d520ea5c72", - "modified": "2021-01-06T18:28:42.860Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.861Z", - "id": "relationship--da8bae22-759f-46b9-8dae-d6474fd59d1b", - "modified": "2021-01-06T18:28:42.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.861Z", - "id": "relationship--9a7cc9f1-28b1-4013-aeca-71c2990e9ad7", - "modified": "2021-01-06T18:28:42.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.861Z", - "id": "relationship--1bba09f0-3f34-432c-a558-a1cacccf8bfe", - "modified": "2021-01-06T18:28:42.861Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", - "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--f25e0d44-1e42-43d8-b65d-cfe534379d41", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.861Z", - "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:42.861Z", + "created": "2021-01-13T01:50:52.589Z", + "id": "relationship--1084eb8d-c9a8-4f15-a297-09e0507cdc4d", + "modified": "2021-01-13T01:50:52.589Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.862Z", - "id": "relationship--44764853-5e29-4aff-835b-0730acdbaebe", - "modified": "2021-01-06T18:28:42.862Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--cd85580d-1ff8-4ac4-a93f-bfb442dd89e0", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--4ff5d6a8-c062-4c68-a778-36fc5edd564f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.862Z", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:42.862Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--c4702970-8cbf-4b30-a8b9-f89d4c664cf9", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.865Z", - "description": "Access Control", - "id": "relationship--49daba4b-b969-4d0a-9430-38637f938876", - "modified": "2021-01-06T18:28:42.865Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--931beed3-59aa-45db-bbaf-a0eefb8c2280", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.865Z", - "description": "Access Control", - "id": "relationship--59485c91-3752-4609-91dc-1cb699f076fd", - "modified": "2021-01-06T18:28:42.865Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--1057f0df-28cd-4fc2-91dc-b74f2d70bae9", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.867Z", - "description": "Data backup", - "id": "relationship--9fe9b018-6c4d-45d7-9358-e82bbbe53f66", - "modified": "2021-01-06T18:28:42.867Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--3158c0c5-d138-4c46-9d4d-8f9ce0c4990f", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.868Z", - "description": "Data backup", - "id": "relationship--d2fd7024-1c5e-40f4-9f65-2907f8bed62a", - "modified": "2021-01-06T18:28:42.868Z", + "created": "2021-01-13T01:50:52.590Z", + "id": "relationship--25ceface-51b5-481a-a887-73cafc946c71", + "modified": "2021-01-13T01:50:52.590Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.869Z", - "description": "System Monitoring", - "id": "relationship--8c25c20e-247e-4694-a3db-f031707a40a9", - "modified": "2021-01-06T18:28:42.869Z", + "created": "2021-01-13T01:50:52.591Z", + "id": "relationship--19008922-b254-43c6-862d-8a00391b6579", + "modified": "2021-01-13T01:50:52.591Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--4061e78c-1284-44b4-9116-73e4ac3912f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:42.870Z", + "created": "2021-01-13T01:50:52.593Z", + "id": "relationship--40237e37-bc4d-42ba-9233-5679c41a619d", + "modified": "2021-01-13T01:50:52.593Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", - "id": "relationship--27e4fe98-94e5-4044-a84e-4edc6731611a", - "modified": "2021-01-06T18:28:42.870Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.870Z", - "description": "System Monitoring", - "id": "relationship--23764515-4c4f-45ec-87d9-36a5c66f1e23", - "modified": "2021-01-06T18:28:42.870Z", + "created": "2021-01-13T01:50:52.594Z", + "id": "relationship--6c23f787-1fb6-4628-84de-524ccb68aac1", + "modified": "2021-01-13T01:50:52.594Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.871Z", - "description": "System Monitoring", - "id": "relationship--78b16134-c29a-43d5-91b6-9f62f7e5b247", - "modified": "2021-01-06T18:28:42.871Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.871Z", - "description": "System Monitoring", - "id": "relationship--a2aaf351-66ce-402a-9391-242095279fc2", - "modified": "2021-01-06T18:28:42.871Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.873Z", - "description": "Access Control", - "id": "relationship--1760b215-cac8-4de0-9d7d-836bb74ed47e", - "modified": "2021-01-06T18:28:42.873Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.873Z", - "description": "Access Control", - "id": "relationship--f5a8abdd-dc8e-40bc-b8ee-edcb83d66b67", - "modified": "2021-01-06T18:28:42.873Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", - "id": "relationship--6df18447-a945-4e6b-982a-f180478daf2f", - "modified": "2021-01-06T18:28:42.874Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", - "id": "relationship--71cef190-66b3-4420-a43d-bee4a406c8aa", - "modified": "2021-01-06T18:28:42.874Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.874Z", - "description": "Access Control", - "id": "relationship--15bfc79f-dee5-4171-b96e-43147649c980", - "modified": "2021-01-06T18:28:42.874Z", + "created": "2021-01-13T01:50:52.594Z", + "id": "relationship--7b32e813-3519-4590-bca4-b418760c6931", + "modified": "2021-01-13T01:50:52.594Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.876Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7f8efe88-cf39-42b6-b404-1236e8ed5a7a", - "modified": "2021-01-06T18:28:42.876Z", + "created": "2021-01-13T01:50:52.595Z", + "id": "relationship--53e74cc9-88e0-4fc2-a35c-b4c4d06c0619", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.876Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f2a945a3-03ae-470d-89e4-193d7b981eba", - "modified": "2021-01-06T18:28:42.876Z", + "created": "2021-01-13T01:50:52.595Z", + "id": "relationship--88506fb7-989a-49df-82f8-3232f948e624", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.877Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--46275a9c-c869-4ca3-8562-f7af08933d3e", - "modified": "2021-01-06T18:28:42.877Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.878Z", - "description": "Off-system Storage", - "id": "relationship--3415270a-3f08-4ff5-842b-0be539b3882f", - "modified": "2021-01-06T18:28:42.878Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.879Z", - "description": "System Monitoring", - "id": "relationship--44fd4891-406c-43be-b3f3-15878840e784", - "modified": "2021-01-06T18:28:42.879Z", + "created": "2021-01-13T01:50:52.595Z", + "id": "relationship--0d3a3357-f26f-4598-881f-d1936da05e32", + "modified": "2021-01-13T01:50:52.595Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ebbe170d-aa74-4946-8511-9921243415a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.879Z", - "description": "System Monitoring", - "id": "relationship--90f95861-6f0c-421f-9706-4c1bb3c5b5c3", - "modified": "2021-01-06T18:28:42.879Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--b9241485-eb79-4092-850f-e23b37ba63b4", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.880Z", - "description": "System Monitoring", - "id": "relationship--ad4fe594-c9fd-473a-af0c-24d5a1342c94", - "modified": "2021-01-06T18:28:42.880Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", - "id": "relationship--15cd82e4-965e-4c57-920b-ec5557a64481", - "modified": "2021-01-06T18:28:42.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", - "id": "relationship--2c232256-0944-406f-bcac-880d760f4b47", - "modified": "2021-01-06T18:28:42.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", - "id": "relationship--2f455c9d-8e9c-4946-ac15-7e15875519ca", - "modified": "2021-01-06T18:28:42.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.881Z", - "description": "Access Control", - "id": "relationship--41a6f46f-7fae-408b-b8ed-b4089d54cf98", - "modified": "2021-01-06T18:28:42.881Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.883Z", - "description": "Off-system Storage", - "id": "relationship--de8ce4d1-844a-4d4c-b183-90e19dd2661d", - "modified": "2021-01-06T18:28:42.883Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--fdeb7f0c-fa0a-462e-bc4a-e9000035184b", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.885Z", - "description": "System Monitoring", - "id": "relationship--78f0aa52-e28e-4e0a-88fe-1d4d7c13a12a", - "modified": "2021-01-06T18:28:42.885Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--582ed0a5-ec1d-4c8f-8fbf-d2af124d9d9f", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.885Z", - "description": "System Monitoring", - "id": "relationship--19b69442-154f-4927-955b-79d75d0d11d9", - "modified": "2021-01-06T18:28:42.885Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--dc4afa37-5b4d-488a-b804-4016811e9b3f", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.886Z", - "description": "System Monitoring", - "id": "relationship--4878f74b-0827-4989-a3d1-10e702a1e3f8", - "modified": "2021-01-06T18:28:42.886Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--066fefd6-d761-47fd-8b15-ec3dea15a5c7", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.887Z", - "description": "Access Control", - "id": "relationship--d2bbc8e5-47ed-492a-9124-d0af1ed74c76", - "modified": "2021-01-06T18:28:42.887Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--7fb9e3ac-b0f4-4528-9eec-9a039ab282ae", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.887Z", - "description": "Access Control", - "id": "relationship--00f0e326-b3d2-4c94-a9db-d051887ffb05", - "modified": "2021-01-06T18:28:42.887Z", + "created": "2021-01-13T01:50:52.596Z", + "id": "relationship--de4fab79-380f-45b7-a22b-670ae2815ed0", + "modified": "2021-01-13T01:50:52.596Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.888Z", - "description": "Access Control", - "id": "relationship--a9ca60f6-1f54-42e4-adfa-e60d35d1acaa", - "modified": "2021-01-06T18:28:42.888Z", + "created": "2021-01-13T01:50:52.597Z", + "id": "relationship--26d89a98-a5b9-4906-a582-4483fb419eab", + "modified": "2021-01-13T01:50:52.597Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", - "id": "relationship--3fc81acb-da49-406b-9dbf-a548a1df95ec", - "modified": "2021-01-06T18:28:42.889Z", + "created": "2021-01-13T01:50:52.598Z", + "id": "relationship--01f0ef43-cdb1-40c2-90be-c0da84b6c866", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--7d57b371-10c2-45e5-b3cc-83a8fb380e4c", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", - "id": "relationship--18cfb441-f1b1-4aee-9cbd-b44d0e6b630f", - "modified": "2021-01-06T18:28:42.889Z", + "created": "2021-01-13T01:50:52.598Z", + "id": "relationship--1be41b7e-9e66-4a4f-a8d9-791982fc49ec", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", - "id": "relationship--47f33d2c-8427-4ccb-a809-2399fc5140ed", - "modified": "2021-01-06T18:28:42.889Z", + "created": "2021-01-13T01:50:52.598Z", + "id": "relationship--e967b9e8-f563-4476-979b-e254ae112911", + "modified": "2021-01-13T01:50:52.598Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.889Z", - "description": "Access Control", - "id": "relationship--7b3ec0ac-d580-4887-bb07-8a85da06520d", - "modified": "2021-01-06T18:28:42.889Z", + "created": "2021-01-13T01:50:52.599Z", + "id": "relationship--b977b261-831d-47fe-9c77-bb7cd387be1e", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", - "id": "relationship--793f528f-718a-4f89-80d9-cc7cb4085041", - "modified": "2021-01-06T18:28:42.890Z", + "created": "2021-01-13T01:50:52.599Z", + "id": "relationship--120cab3b-cf48-4329-bdfd-b6f53dad9b93", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", - "id": "relationship--5533cbbf-bf56-4e58-aa0b-d5801a1b14d9", - "modified": "2021-01-06T18:28:42.890Z", + "created": "2021-01-13T01:50:52.599Z", + "id": "relationship--ef8b0c11-3ff9-48b4-b0bf-70830dee27e9", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", - "id": "relationship--e13503f2-fb2f-455e-ac42-db051ad1c2ff", - "modified": "2021-01-06T18:28:42.890Z", + "created": "2021-01-13T01:50:52.599Z", + "id": "relationship--5a353ab0-0e49-4b7e-a715-66a88d46dfcd", + "modified": "2021-01-13T01:50:52.599Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", - "id": "relationship--49eea86b-a8a0-4343-920c-f12b1da4fe58", - "modified": "2021-01-06T18:28:42.890Z", + "created": "2021-01-13T01:50:52.600Z", + "id": "relationship--174ab331-d8c2-47bb-93a7-486801f48889", + "modified": "2021-01-13T01:50:52.600Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.890Z", - "description": "Access Control", - "id": "relationship--6ea35f61-2aa3-4fb5-8520-5390d5269e85", - "modified": "2021-01-06T18:28:42.890Z", + "created": "2021-01-13T01:50:52.600Z", + "id": "relationship--6499b7e7-1b10-4654-a3c5-aa51a1dbf53f", + "modified": "2021-01-13T01:50:52.600Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--6836813e-8ec8-4375-b459-abb388cb1a35", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", - "id": "relationship--eaf1c8ae-7dc3-4d7c-be38-ccaf63d6c5dc", - "modified": "2021-01-06T18:28:42.892Z", + "created": "2021-01-13T01:50:52.601Z", + "id": "relationship--7e49d83a-7ffd-4e8d-a09c-4082e404ebc3", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", - "id": "relationship--a5dd0c59-b589-4048-b8dc-14de1044c91e", - "modified": "2021-01-06T18:28:42.892Z", + "created": "2021-01-13T01:50:52.601Z", + "id": "relationship--ad4232f7-e8a0-47d1-87a1-9aa3b0e2ca46", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.892Z", - "description": "Off-system Storage", - "id": "relationship--4703ed7a-0b31-4c1e-85a4-84a45f7b84f2", - "modified": "2021-01-06T18:28:42.892Z", + "created": "2021-01-13T01:50:52.601Z", + "id": "relationship--1afbcab3-a83b-46c6-aaf0-831d6c12e9e3", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--555cd1be-720f-4e10-8ad5-959f2547cf5a", - "modified": "2021-01-06T18:28:42.894Z", + "created": "2021-01-13T01:50:52.601Z", + "id": "relationship--af6b6ddf-6834-46ce-9676-88e8b3473d0e", + "modified": "2021-01-13T01:50:52.601Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--41bdd389-f3bd-43b0-9a42-9ca6981965d1", - "modified": "2021-01-06T18:28:42.894Z", + "created": "2021-01-13T01:50:52.602Z", + "id": "relationship--bd06bf0b-43d5-4e20-b6b9-1c4431524ff4", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--ef4fede2-c770-4ce1-8562-a26688a67184", - "modified": "2021-01-06T18:28:42.894Z", + "created": "2021-01-13T01:50:52.602Z", + "id": "relationship--b7495c4d-cfc4-4bcd-bb4f-4953b186c1e1", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--2f4a4e5c-a5f3-41b5-8fc5-cb7e89b0d4b4", - "modified": "2021-01-06T18:28:42.894Z", + "created": "2021-01-13T01:50:52.602Z", + "id": "relationship--9b407b06-0cc4-4984-a71c-ae690a312903", + "modified": "2021-01-13T01:50:52.602Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.894Z", - "description": "System Monitoring", - "id": "relationship--a5b35027-5a21-41c3-93d1-a1eaaf0cb3c9", - "modified": "2021-01-06T18:28:42.894Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--db16f4c7-2ffd-4506-baa7-93895226d93a", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", - "id": "relationship--be8716b6-5da2-4e2e-8a03-afe0ede5ed7a", - "modified": "2021-01-06T18:28:42.895Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--9b3e123e-4270-4480-bf7b-2f599b5e5615", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", - "id": "relationship--5d6f8449-07c6-4d1b-a260-22b2cadb4115", - "modified": "2021-01-06T18:28:42.895Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.895Z", - "description": "System Monitoring", - "id": "relationship--2b9f201d-5eb4-4836-ae29-f81e97cc69d0", - "modified": "2021-01-06T18:28:42.895Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--686f74d5-6c17-49ab-af1a-82880b09c59e", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.896Z", - "description": "System Monitoring", - "id": "relationship--a2e2834e-62af-424e-9745-e95a8b63b363", - "modified": "2021-01-06T18:28:42.896Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--8a2ef42e-4104-41b1-9342-725301c63305", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", - "id": "relationship--5de1283f-ee5a-4f78-a5a6-21b6a2df516a", - "modified": "2021-01-06T18:28:42.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", - "id": "relationship--5fd57278-97e4-45d0-af3f-280895379042", - "modified": "2021-01-06T18:28:42.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.897Z", - "description": "Access Control", - "id": "relationship--f3d4fde9-a311-42f2-9d69-3bf408096c17", - "modified": "2021-01-06T18:28:42.897Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--ba887655-6d3d-4bbf-84d0-c829cf389fe6", - "modified": "2021-01-06T18:28:42.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--dbf827cd-0d99-449b-ab9e-ce93013984f3", - "modified": "2021-01-06T18:28:42.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--9c74393b-bfd4-4e90-8988-c630fe425f60", - "modified": "2021-01-06T18:28:42.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--1da0c3a8-6ddc-4f52-95e5-82c7033e7b16", - "modified": "2021-01-06T18:28:42.898Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--30386774-690c-452f-a6ab-52998f581e62", - "modified": "2021-01-06T18:28:42.898Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--a123451a-bb81-4cbf-a2cf-e420026b1f1b", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.898Z", - "description": "Access Control", - "id": "relationship--1b71b7ca-d0fb-41c2-b579-26cb7d97916d", - "modified": "2021-01-06T18:28:42.898Z", + "created": "2021-01-13T01:50:52.603Z", + "id": "relationship--bef4f0cd-514e-4090-8427-2d557640f490", + "modified": "2021-01-13T01:50:52.603Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--c00c5398-eb76-4aac-bda3-50fb4883be62", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", - "id": "relationship--4ae356f0-a956-4b4f-939a-420c3ccfafca", - "modified": "2021-01-06T18:28:42.899Z", + "created": "2021-01-13T01:50:52.604Z", + "id": "relationship--a26c4aaf-2f88-419e-8925-598be511d465", + "modified": "2021-01-13T01:50:52.604Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", - "id": "relationship--a02e7bde-314b-4326-b6ac-de1fdd0d6230", - "modified": "2021-01-06T18:28:42.899Z", + "created": "2021-01-13T01:50:52.604Z", + "id": "relationship--0a33d09b-9466-485f-99a7-e9bc22008ea7", + "modified": "2021-01-13T01:50:52.604Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", - "id": "relationship--e0233f9d-f60b-44fb-8a7b-57d9dbce8507", - "modified": "2021-01-06T18:28:42.899Z", + "created": "2021-01-13T01:50:52.605Z", + "id": "relationship--397948e9-3230-4cce-866f-a5258b7d8bc2", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", - "id": "relationship--f80bdc5b-42ac-47df-855d-5d5bb5740fab", - "modified": "2021-01-06T18:28:42.899Z", + "created": "2021-01-13T01:50:52.605Z", + "id": "relationship--7e444870-66d8-4cc9-b205-4c4047e9c76c", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.899Z", - "description": "Access Control", - "id": "relationship--e3cb6c03-1756-46f6-baa8-72681caacd4a", - "modified": "2021-01-06T18:28:42.899Z", + "created": "2021-01-13T01:50:52.605Z", + "id": "relationship--c74a1b22-8aeb-43ec-8129-9f4177e6aa57", + "modified": "2021-01-13T01:50:52.605Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--b84903f0-c7d5-435d-a69e-de47cc3578c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--f84b0946-9b74-4b02-b19a-031e38320a6a", - "modified": "2021-01-06T18:28:42.900Z", + "created": "2021-01-13T01:50:52.606Z", + "id": "relationship--b8933b97-831d-46fe-8fb8-fe0574ad25f6", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--a17c605b-80e1-473b-a2b6-bf487185eb6d", - "modified": "2021-01-06T18:28:42.900Z", + "created": "2021-01-13T01:50:52.606Z", + "id": "relationship--cf9d8545-ef6d-4cad-8c3c-955436db1857", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--50c12749-ae8d-4d9e-aeb8-9b2af3b86591", - "modified": "2021-01-06T18:28:42.900Z", + "created": "2021-01-13T01:50:52.606Z", + "id": "relationship--787bbfe7-c599-464e-9c79-1ec0bdef9621", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--49c450b2-1f62-4539-b3bb-9547bce9fe96", - "modified": "2021-01-06T18:28:42.900Z", + "created": "2021-01-13T01:50:52.606Z", + "id": "relationship--b3e70027-0bd0-4f7a-9852-870e29653a9c", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.900Z", - "description": "Access Control", - "id": "relationship--1be34a86-303a-4f9f-805c-82fb04720263", - "modified": "2021-01-06T18:28:42.900Z", + "created": "2021-01-13T01:50:52.606Z", + "id": "relationship--7cc2fc9b-0ea8-48c6-a23e-49db57d27f91", + "modified": "2021-01-13T01:50:52.606Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.901Z", - "description": "Access Control", - "id": "relationship--e2ed9524-e469-44a9-87cb-81061c82cee4", - "modified": "2021-01-06T18:28:42.901Z", + "created": "2021-01-13T01:50:52.607Z", + "id": "relationship--00841fd1-6bfd-41b2-b9df-c70384e1647b", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:42.902Z", + "created": "2021-01-13T01:50:52.607Z", + "id": "relationship--70a0b812-22d3-4699-b70a-f19dad2b9185", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--94ba0e80-7323-4e3a-99ec-ac52d53ade22", - "modified": "2021-01-06T18:28:42.902Z", + "created": "2021-01-13T01:50:52.607Z", + "id": "relationship--528545c2-7036-408d-b4fc-723477e960ab", + "modified": "2021-01-13T01:50:52.607Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--585e3116-a99d-4fe2-9d83-f99d4f79afb3", - "modified": "2021-01-06T18:28:42.902Z", + "created": "2021-01-13T01:50:52.608Z", + "id": "relationship--53a00835-83d8-43ef-b0f1-4a82fee41c8f", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.902Z", - "description": "System Monitoring", - "id": "relationship--765e6e16-b723-4507-a7e0-b0fa26b61a0b", - "modified": "2021-01-06T18:28:42.902Z", + "created": "2021-01-13T01:50:52.608Z", + "id": "relationship--c2e3195f-31a3-4763-86b9-2689e9571974", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--e5884876-75f0-4c22-b5bd-f2a5799b83a1", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.608Z", + "id": "relationship--3c3c6514-cd47-4c6b-9700-5a54c9cead25", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--31a0a2ac-c67c-4a7e-b9ed-6a96477d4e8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--83b2c39f-2b08-41b3-8537-17a1d45cda50", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.608Z", + "id": "relationship--2754d367-7ae1-4404-9cf6-2e19c57484b6", + "modified": "2021-01-13T01:50:52.608Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--95e75805-6ec8-4f30-8da2-e45941990555", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.609Z", + "id": "relationship--d2304f5e-0058-46d7-a21e-e6c421c90658", + "modified": "2021-01-13T01:50:52.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--a0c378d6-e788-486d-b099-05250339c424", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.609Z", + "id": "relationship--f99ee096-a155-4ec3-ab04-21203493fe81", + "modified": "2021-01-13T01:50:52.609Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--29e8e420-9d33-4aaf-a9d3-9c1144e2e16e", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.610Z", + "id": "relationship--bf8e2b69-1059-4ce1-80d3-015ca720febb", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.903Z", - "description": "System Monitoring", - "id": "relationship--4abfbbc5-1a42-41ef-b942-62c400ef5b06", - "modified": "2021-01-06T18:28:42.903Z", + "created": "2021-01-13T01:50:52.610Z", + "id": "relationship--316a9a4e-4872-4709-85c7-c2354c462782", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.904Z", - "description": "System Monitoring", - "id": "relationship--52c0ac51-f5e1-4d9c-b1e0-ab3ac14ba7e2", - "modified": "2021-01-06T18:28:42.904Z", + "created": "2021-01-13T01:50:52.610Z", + "id": "relationship--eeae1f2a-d8ef-47e2-b44b-8ad4119f838a", + "modified": "2021-01-13T01:50:52.610Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--cbb66055-0325-4111-aca0-40547b6ad5b0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.904Z", - "description": "System Monitoring", - "id": "relationship--991a974f-ed4b-40d4-b129-f71683a8c37d", - "modified": "2021-01-06T18:28:42.904Z", + "created": "2021-01-13T01:50:52.611Z", + "id": "relationship--3f13ca2a-df5b-4249-89ce-990ef3bf006b", + "modified": "2021-01-13T01:50:52.611Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", - "id": "relationship--f18cc6c2-587b-48f3-914d-86da6a9d55f7", - "modified": "2021-01-06T18:28:42.905Z", + "created": "2021-01-13T01:50:52.612Z", + "id": "relationship--d22b1f66-20b1-495b-8452-4b371116722a", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", - "id": "relationship--4632463b-12ab-4487-9ee3-de1b5f638c29", - "modified": "2021-01-06T18:28:42.905Z", + "created": "2021-01-13T01:50:52.612Z", + "id": "relationship--7adebd26-8543-4c4b-9a15-12839e0b05cb", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.905Z", - "description": "Access Control", - "id": "relationship--6495291d-1999-499a-9224-d3c24a5ef298", - "modified": "2021-01-06T18:28:42.905Z", + "created": "2021-01-13T01:50:52.612Z", + "id": "relationship--f1a91b46-88b6-4617-a7c8-ec83ea0a999b", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.906Z", - "description": "Access Control", - "id": "relationship--cc920365-441d-416d-b5fc-c6f17e7e20c9", - "modified": "2021-01-06T18:28:42.906Z", + "created": "2021-01-13T01:50:52.612Z", + "id": "relationship--71f3ce26-3626-4d1e-8311-0676b0090a86", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.906Z", - "description": "Access Control", - "id": "relationship--e5af417b-edad-4c99-871c-4b852b1bc7df", - "modified": "2021-01-06T18:28:42.906Z", + "created": "2021-01-13T01:50:52.612Z", + "id": "relationship--bd8e6dca-1c5a-4343-8661-754e6bdc37ec", + "modified": "2021-01-13T01:50:52.612Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.907Z", - "description": "Off-system Storage", - "id": "relationship--3b819d3a-a1a7-4972-a0c1-f37049ca22b8", - "modified": "2021-01-06T18:28:42.907Z", + "created": "2021-01-13T01:50:52.613Z", + "id": "relationship--ac80640a-a963-4d4e-9b44-1ef2f41c8b66", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", - "id": "relationship--c80ee180-d631-4c02-a516-374b105b536e", - "modified": "2021-01-06T18:28:42.908Z", + "created": "2021-01-13T01:50:52.613Z", + "id": "relationship--9060843b-6185-4288-9d25-ff72a2a1cd61", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", - "id": "relationship--41b7cf73-a67b-4013-ae12-518d512d58ae", - "modified": "2021-01-06T18:28:42.908Z", + "created": "2021-01-13T01:50:52.613Z", + "id": "relationship--f1c8ae18-449a-4ea5-a6ab-2935dcf2d0fb", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.908Z", - "description": "System Monitoring", - "id": "relationship--f1038e9c-cc56-484b-9d0f-df538407972b", - "modified": "2021-01-06T18:28:42.908Z", + "created": "2021-01-13T01:50:52.613Z", + "id": "relationship--0629b5b3-763d-4ad1-bda7-b32a0fed2682", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.909Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8f09a774-e8c3-4715-a50a-1f0b112391f2", - "modified": "2021-01-06T18:28:42.909Z", + "created": "2021-01-13T01:50:52.613Z", + "id": "relationship--f52f5768-ffe7-4a67-954a-8067cc89df55", + "modified": "2021-01-13T01:50:52.613Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", + "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.910Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7c632fdd-de72-471f-afc7-f4e28e424232", - "modified": "2021-01-06T18:28:42.910Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--9bb99b75-4caa-49c5-9548-a4dc096f1b0a", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.910Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--de303e3a-d73f-4632-a075-b8c8b1ae0745", - "modified": "2021-01-06T18:28:42.910Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--d8a68077-0c96-4e00-bc96-904254f428bc", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", - "id": "relationship--edc0e032-90f0-4593-b1a7-7cca7647921b", - "modified": "2021-01-06T18:28:42.911Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--c244f069-8cca-473f-aae6-bc7414650278", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", - "id": "relationship--e5c809e7-a93d-4cad-a67e-7bbfe7bd8ee6", - "modified": "2021-01-06T18:28:42.911Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--3ed6688d-5192-41e2-ad25-87a8efd63c24", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--633a100c-b2c9-41bf-9be5-905c1b16c825", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", - "id": "relationship--8f6367c7-3ed2-403b-9f87-f4dc0de84209", - "modified": "2021-01-06T18:28:42.911Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--9dfbef8d-b13e-4ab2-a89a-741edc03d18c", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.911Z", - "description": "Access Control", - "id": "relationship--e45272dc-6689-4182-9957-035d1942911f", - "modified": "2021-01-06T18:28:42.911Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--3e3f4ac1-f9f5-4edd-92b8-5052d758a27d", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.912Z", - "description": "Access Control", - "id": "relationship--19fcb7c8-92c8-4e8a-9854-57c14ffa36eb", - "modified": "2021-01-06T18:28:42.912Z", + "created": "2021-01-13T01:50:52.614Z", + "id": "relationship--4d701fb7-38b3-4f23-bdea-81f91ed606bd", + "modified": "2021-01-13T01:50:52.614Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", + "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.913Z", - "description": "Off-system Storage", - "id": "relationship--4a128334-2d9b-43b8-b40c-70c2c1bd79c9", - "modified": "2021-01-06T18:28:42.913Z", + "created": "2021-01-13T01:50:52.618Z", + "id": "relationship--5be53824-e09f-467c-bbd7-09fa23446df2", + "modified": "2021-01-13T01:50:52.618Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--8f504411-cb96-4dac-a537-8d2bb7679c59", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:42.914Z", + "created": "2021-01-13T01:50:52.619Z", + "id": "relationship--cd432f7d-e6dc-4dcb-97a7-19d7455f2d98", + "modified": "2021-01-13T01:50:52.619Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", - "id": "relationship--eaa2615a-eb39-4039-af37-69a05ea0fa95", - "modified": "2021-01-06T18:28:42.914Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--c05681a7-128a-4e5d-bacf-012e2e8b5808", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.914Z", - "description": "System Monitoring", - "id": "relationship--9e8c4ad3-12f8-403f-bb55-509d74921b54", - "modified": "2021-01-06T18:28:42.914Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--06440a18-dc9e-410a-8675-76019da8fd76", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.916Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b0cde1fc-16d4-47aa-bfba-15b36ab73136", - "modified": "2021-01-06T18:28:42.916Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--f2fa7d49-f4f2-4a9a-833a-7b9cd3a598f6", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.917Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:42.917Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--48f7ee21-7025-4794-ad92-d7798174343d", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.917Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4bcf4783-c7b6-4f55-b78d-0c08f8c2aa5c", - "modified": "2021-01-06T18:28:42.917Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--d361fccf-12f4-487f-8a9a-4655e330cf3d", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.921Z", - "description": "Access Control", - "id": "relationship--06ae75b3-94d5-4137-a2c5-31201a1da2f1", - "modified": "2021-01-06T18:28:42.921Z", + "created": "2021-01-13T01:50:52.620Z", + "id": "relationship--8700d5c0-aebe-45b8-b8d2-271482e1e317", + "modified": "2021-01-13T01:50:52.620Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.921Z", - "description": "Access Control", - "id": "relationship--f0997432-8fcc-41d3-9784-9eda445f6414", - "modified": "2021-01-06T18:28:42.921Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--c2d107bb-2955-4c84-8d96-0717d43ac4c7", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.922Z", - "description": "Access Control", - "id": "relationship--8e936da1-01c9-4345-b46e-339464183eb2", - "modified": "2021-01-06T18:28:42.922Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--28cae601-4f93-4631-93bd-5e75404522fb", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.922Z", - "description": "Access Control", - "id": "relationship--2163468d-d78a-4dab-9a5d-4529b62cc62b", - "modified": "2021-01-06T18:28:42.922Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--7622590e-e812-4a8f-b8f5-873f25a7b799", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.924Z", - "description": "System Monitoring", - "id": "relationship--84eea744-3934-45e9-bdd7-c0967728e68c", - "modified": "2021-01-06T18:28:42.924Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--2032f0df-5342-44fb-ae62-28639749f8ad", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.925Z", - "description": "System Monitoring", - "id": "relationship--0dc1983a-717d-46c0-838b-f1776ecd4b3e", - "modified": "2021-01-06T18:28:42.925Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--dad19b38-acb0-4d3c-b021-a938121b7640", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.925Z", - "description": "System Monitoring", - "id": "relationship--80cd997d-9580-40b2-a8dc-3b5b0906bc28", - "modified": "2021-01-06T18:28:42.925Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--7833a633-e6bc-447a-a77e-e9b0efa86a47", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.928Z", - "description": "Access Control", - "id": "relationship--c951c349-d833-457c-ad18-8dade6d88c0c", - "modified": "2021-01-06T18:28:42.928Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--7284f2fe-d2f6-4b1a-a6c9-cc20f0be770e", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.929Z", - "description": "Access Control", - "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:42.929Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--f55f4200-2b71-4997-940a-25e7558569bd", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.929Z", - "description": "Access Control", - "id": "relationship--3b74a599-ceef-40bc-92d9-944e7b354e91", - "modified": "2021-01-06T18:28:42.929Z", + "created": "2021-01-13T01:50:52.621Z", + "id": "relationship--bde6c907-2a86-4672-bc91-f3c1f075f8ec", + "modified": "2021-01-13T01:50:52.621Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.930Z", - "description": "Access Control", - "id": "relationship--e9350dff-40d7-4013-93a8-9fe8989ff98d", - "modified": "2021-01-06T18:28:42.930Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--68dd5bec-c6d8-4a9e-a1a6-2eb5b3074be1", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.930Z", - "description": "Access Control", - "id": "relationship--62194298-570b-4a62-b5dc-a102409c5842", - "modified": "2021-01-06T18:28:42.930Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--8ce60e46-2a0d-410c-9323-4c294196f76b", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.931Z", - "description": "Access Control", - "id": "relationship--654db8e5-6409-48e2-8aad-de34c8da2eae", - "modified": "2021-01-06T18:28:42.931Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--12c160e6-09e2-422e-8c4f-c55dcec097c4", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.931Z", - "description": "Access Control", - "id": "relationship--527df502-cc22-44fe-a06b-c452133fed26", - "modified": "2021-01-06T18:28:42.931Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--f4a8492f-3276-4295-b290-2bc2cf048689", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.932Z", - "description": "Access Control", - "id": "relationship--13ba8bd8-2037-433c-b5e4-703f81bc3ced", - "modified": "2021-01-06T18:28:42.932Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--250e2df0-59ee-458b-bdae-2de4d77135b1", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.932Z", - "description": "Access Control", - "id": "relationship--fe32c2d4-b812-4673-80c1-32e645e5c6b3", - "modified": "2021-01-06T18:28:42.932Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--3d9d6f28-13a3-4426-a456-1f05166aaed9", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.933Z", - "description": "Access Control", - "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:42.933Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--9ed50368-d6bf-4cc3-805e-d02722cd21f0", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.936Z", - "description": "Off-system Storage", - "id": "relationship--415cc4e8-0eea-4245-bd98-eab017cb184c", - "modified": "2021-01-06T18:28:42.936Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--53f54e25-2741-4a2c-a310-d6f2dcf2ec0a", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.937Z", - "description": "Off-system Storage", - "id": "relationship--802ed8de-b954-46b9-bf16-446456d49b07", - "modified": "2021-01-06T18:28:42.937Z", + "created": "2021-01-13T01:50:52.622Z", + "id": "relationship--ed7ae8f3-23b8-43ce-8be3-8eb814f1259b", + "modified": "2021-01-13T01:50:52.622Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:42.939Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--8b971df0-56e3-4151-8ad2-ee2f6095cde9", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:42.939Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--2ddc4e2a-b774-4fa5-a6fd-850c4fabcc08", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.939Z", - "description": "System Monitoring", - "id": "relationship--5d939c96-5faf-4d7a-8b1e-452edddb2fae", - "modified": "2021-01-06T18:28:42.939Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--79ad2ea5-4179-453d-b457-18ca60360fd1", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", - "id": "relationship--5a15cef7-d919-490c-a19a-4ed170bcdec2", - "modified": "2021-01-06T18:28:42.940Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--e17c6f7e-2a5b-44ce-93a9-dd9718f57017", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", - "id": "relationship--ef402c35-de30-4994-870c-915787df3d64", - "modified": "2021-01-06T18:28:42.940Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--c4e31292-60a9-419c-ae02-b701ed7aff02", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.940Z", - "description": "System Monitoring", - "id": "relationship--cf52ac42-783c-4913-8cda-6ee1d6a9ab4e", - "modified": "2021-01-06T18:28:42.940Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--c1fd60e6-ad90-4213-b794-919b82f61f75", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", - "id": "relationship--a3c04a8f-4125-4558-a9c6-5b8e6c4041bf", - "modified": "2021-01-06T18:28:42.941Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--d98b0f21-9012-4e3f-b0a5-53c089820ad3", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", - "id": "relationship--adece807-d46b-45bb-87b6-ae9bbf3c035c", - "modified": "2021-01-06T18:28:42.941Z", + "created": "2021-01-13T01:50:52.623Z", + "id": "relationship--534c0f4d-e25e-4799-9a26-3e4b9bb7ed58", + "modified": "2021-01-13T01:50:52.623Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.941Z", - "description": "Access Control", - "id": "relationship--8eb03e13-87b0-4723-a846-ef77791c6d3f", - "modified": "2021-01-06T18:28:42.941Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--84f3a4e9-38bd-4c48-879f-d9a618340bc0", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--53b4f057-0de9-430c-9a93-858d8d7f56fd", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--ccbaab28-c340-4503-9cf8-fdbfaf715f98", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--7b5fbada-10b1-43af-8566-8f78a7fc2e6f", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--5d3d1afa-fd0a-4f95-8d9e-1ed9cef36a05", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--e19527e7-6e2b-4357-85d1-b39a481e6dd7", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--1655fca8-06cd-4fe8-9516-3d24e5db3d23", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--06fa0ead-4040-4053-bb68-ab5ea4247e89", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--fb0b2d73-3db5-44e5-8518-328bcc40e577", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--72545826-23d3-4d76-be6e-864341c2fd17", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--2f153971-16cb-47cb-97f8-7c2eaf6f371b", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--d201d4cc-214d-4a74-a1ba-b3fa09fd4591", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--09298e36-a174-4482-955e-d555127bdca3", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--2a57ac0b-ae20-470a-b6a7-6c2f6d440803", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.942Z", - "description": "Access Control", - "id": "relationship--639c9857-2bba-4906-8c84-ea3faef2df25", - "modified": "2021-01-06T18:28:42.942Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--b63f931e-24c6-4bba-b5ae-288ca3d90c1a", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.943Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:42.943Z", + "created": "2021-01-13T01:50:52.624Z", + "id": "relationship--2e5c9706-6d90-472d-a70c-a6a3c6cc6eb2", + "modified": "2021-01-13T01:50:52.624Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.943Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:42.943Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--4192568a-0f9b-48a2-90ea-f4f5adf736b5", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:42.944Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--3d4ecb8b-48ab-4409-8563-3983238ca5c8", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:42.944Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--4d86d33e-487b-4813-aaae-52377281720c", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5575338f-7f6f-40f6-932e-dbc25ab8a5eb", - "modified": "2021-01-06T18:28:42.944Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--a7186dce-0ec6-4d3c-bb73-eba82993812c", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.944Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4fecd284-768d-4c3b-912c-16941048cb68", - "modified": "2021-01-06T18:28:42.944Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--3442f080-2528-4113-87a2-01dc5a4bf08f", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.945Z", - "description": "Off-system Storage", - "id": "relationship--649d8e33-9fa4-433b-83de-838faa09b49a", - "modified": "2021-01-06T18:28:42.945Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--a0850ead-1b6d-4960-b288-bf0d7556a083", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.945Z", - "description": "Off-system Storage", - "id": "relationship--3df8be7e-8fce-4ac7-aa2e-398266705617", - "modified": "2021-01-06T18:28:42.945Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--7b3b069e-50df-43b7-8df9-5febde0c0d26", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--396a4bd0-b86a-4f77-894d-626967d9753a", - "modified": "2021-01-06T18:28:42.946Z", + "created": "2021-01-13T01:50:52.625Z", + "id": "relationship--bf83c84b-f764-4207-84d4-8e0dfa49862d", + "modified": "2021-01-13T01:50:52.625Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--4e67e8c8-bf91-4525-8576-86aa7967c838", - "modified": "2021-01-06T18:28:42.946Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--53b53d1e-262c-4cb0-bb37-8fbe6466a6c1", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--a2bd18b6-3f8a-4693-9ae4-f0b7abc0cc38", - "modified": "2021-01-06T18:28:42.946Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--cd2a062f-635d-4a94-b7b0-f94a6d68cd83", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--116bf075-e331-4d30-849c-5915a11edcf9", - "modified": "2021-01-06T18:28:42.946Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--74f68704-0617-4346-bdf0-d95961d2a32e", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.946Z", - "description": "System Monitoring", - "id": "relationship--7bd7ecc6-3440-448c-817a-d94ed55907d0", - "modified": "2021-01-06T18:28:42.946Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--23be73b7-ed90-4d02-b5d3-00a682a66041", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "System Monitoring", - "id": "relationship--62b3a11f-e9c7-435c-8aac-5e3e3b779881", - "modified": "2021-01-06T18:28:42.947Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--9aeb9e88-a62a-42d1-bb64-18f96d3655cb", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "Access Control", - "id": "relationship--8079c015-9cde-490e-8e8e-85903ed94557", - "modified": "2021-01-06T18:28:42.947Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--dbef4540-920c-433a-9c3b-99a62ab53982", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.947Z", - "description": "Access Control", - "id": "relationship--01821457-8373-4076-8ed4-cd572fd44503", - "modified": "2021-01-06T18:28:42.947Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--da72cc92-4d2e-43fe-a77c-34c90e7e6058", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", - "id": "relationship--faa7d51d-7e42-4b13-ad3d-0419e0f5c8f0", - "modified": "2021-01-06T18:28:42.948Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--101418dd-911b-41cb-a4c3-7e2a36c5b219", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7c0f17c9-1af6-4628-9cbd-9e45482dd605", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", - "id": "relationship--450210d4-c9fc-4a99-bffa-282eda6cde34", - "modified": "2021-01-06T18:28:42.948Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--38fb348a-3a64-463a-9a76-d78a2396d1c0", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f4599aa0-4f85-4a32-80ea-fc39dc965945", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", - "id": "relationship--23f030f4-8219-4ccc-8af0-3b3e953047ec", - "modified": "2021-01-06T18:28:42.948Z", + "created": "2021-01-13T01:50:52.626Z", + "id": "relationship--238229f5-ac4a-4223-81a1-3b324313549c", + "modified": "2021-01-13T01:50:52.626Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--0042a9f5-f053-4769-b3ef-9ad018dfa298", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", - "id": "relationship--4e9b7e28-be92-4dd1-9e95-016f85d2d305", - "modified": "2021-01-06T18:28:42.948Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--8b2cfa25-0cd3-4933-bd3c-094fcd81bace", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--806a49c4-970d-43f9-9acc-ac0ee11e6662", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.948Z", - "description": "Access Control", - "id": "relationship--13ce0b6d-d6bd-4fdf-807d-071104267d71", - "modified": "2021-01-06T18:28:42.948Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--d5e12b98-df17-4a84-922a-d77067a57d0a", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7007935a-a8a7-4c0b-bd98-4e85be8ed197", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.949Z", - "description": "Access Control", - "id": "relationship--4ec84fbf-5c1f-4971-a75e-50f36ec83283", - "modified": "2021-01-06T18:28:42.949Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--410a6128-ec5b-4fe6-ade6-81f9550e39ee", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--b200542e-e877-4395-875b-cf1a44537ca4", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.949Z", - "description": "Access Control", - "id": "relationship--17e9e6dd-270c-4bba-bdbb-91d9a1d2fc42", - "modified": "2021-01-06T18:28:42.949Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--71d4ee38-472c-4b5c-aa01-09d59d4a1fa6", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--43e7dc91-05b2-474c-b9ac-2ed4fe101f4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", - "id": "relationship--3cf9dc7a-5845-4f4e-b8f8-ee0e184eec86", - "modified": "2021-01-06T18:28:42.950Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--213f7e5e-2292-4875-8f8c-626939d25cc3", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--ea016b56-ae0e-47fe-967a-cc0ad51af67f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", - "id": "relationship--ce8666cd-19c1-4d4c-a443-e1c166c4d9df", - "modified": "2021-01-06T18:28:42.950Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--6d997ec6-fc81-453c-a15c-953cefcc4cdb", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--41d9846c-f6af-4302-a654-24bba2729bc6", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", - "id": "relationship--00dc0803-3f7e-4124-ac7d-cf08310eac13", - "modified": "2021-01-06T18:28:42.950Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--ae55a13c-a542-47ce-a2b3-6a515bd01260", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--e49ee9d2-0d98-44ef-85e5-5d3100065744", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.950Z", - "description": "Access Control", - "id": "relationship--13bc25df-c4d1-4a87-927f-4d4408a324c4", - "modified": "2021-01-06T18:28:42.950Z", + "created": "2021-01-13T01:50:52.627Z", + "id": "relationship--d664c37c-61f8-4de9-a6b4-5bdc8e9b34d2", + "modified": "2021-01-13T01:50:52.627Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--98be40f2-c86b-4ade-b6fc-4964932040e5", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", - "id": "relationship--8b56555a-60ba-43a9-afa3-012fcb9409a1", - "modified": "2021-01-06T18:28:42.951Z", + "created": "2021-01-13T01:50:52.628Z", + "id": "relationship--c27a415e-6ae0-4f52-a69f-194c6cfe05fe", + "modified": "2021-01-13T01:50:52.628Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", - "id": "relationship--550c02f8-b715-4699-86a9-4e738a3b4a94", - "modified": "2021-01-06T18:28:42.951Z", + "created": "2021-01-13T01:50:52.629Z", + "id": "relationship--d3f1b214-c7c8-46f9-86ad-6b4890ecffb2", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.951Z", - "description": "Access Control", - "id": "relationship--3512d578-3aa5-48c3-ae1c-d26982780e1d", - "modified": "2021-01-06T18:28:42.951Z", + "created": "2021-01-13T01:50:52.629Z", + "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", - "id": "relationship--d989ead6-6aed-430a-9623-2911b708cd3d", - "modified": "2021-01-06T18:28:42.952Z", + "created": "2021-01-13T01:50:52.629Z", + "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", - "id": "relationship--71440795-8e64-49e6-94d6-5a58c2464db3", - "modified": "2021-01-06T18:28:42.952Z", + "created": "2021-01-13T01:50:52.629Z", + "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", - "id": "relationship--e3ef143b-8cb0-4bd5-83a8-4ab9d2bb543c", - "modified": "2021-01-06T18:28:42.952Z", + "created": "2021-01-13T01:50:52.629Z", + "id": "relationship--6bc4e8ea-6737-414b-8833-b5de67900241", + "modified": "2021-01-13T01:50:52.629Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.952Z", - "description": "Off-system Storage", - "id": "relationship--4098a823-fa6d-425c-a9b9-dcd4460fafce", - "modified": "2021-01-06T18:28:42.952Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--de79aadf-2a0d-4b2a-93e0-3a14acf895e5", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:42.953Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--de5e4e56-5978-4b3a-807b-74d520ea5c72", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--b8f67a4d-a928-4e9d-b97a-abe46c4ef6f9", - "modified": "2021-01-06T18:28:42.953Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--da8bae22-759f-46b9-8dae-d6474fd59d1b", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.953Z", - "description": "System Monitoring", - "id": "relationship--2dc9ef76-c437-4dbc-8546-f7056aeb305e", - "modified": "2021-01-06T18:28:42.953Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--9a7cc9f1-28b1-4013-aeca-71c2990e9ad7", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--7a3d97e1-f5c6-4902-bf4b-b46c24585797", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--1bba09f0-3f34-432c-a558-a1cacccf8bfe", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--2e37376d-32da-4d0e-91c3-ee73d7f63076", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--830684e5-2e7c-4835-8035-0924991206bf", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--d275cb34-0529-47ee-ac96-1fe8e6b43997", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.630Z", + "id": "relationship--44764853-5e29-4aff-835b-0730acdbaebe", + "modified": "2021-01-13T01:50:52.630Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--00761b43-30f9-4846-bbdc-a278bb5f9c52", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.631Z", + "id": "relationship--49daba4b-b969-4d0a-9430-38637f938876", + "modified": "2021-01-13T01:50:52.631Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--be91fdb5-981d-403f-ac2b-1caaedbfa64e", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.632Z", + "id": "relationship--59485c91-3752-4609-91dc-1cb699f076fd", + "modified": "2021-01-13T01:50:52.632Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--c6638411-1e4d-4d0b-a194-ece999863033", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.632Z", + "id": "relationship--9fe9b018-6c4d-45d7-9358-e82bbbe53f66", + "modified": "2021-01-13T01:50:52.632Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.954Z", - "description": "System Monitoring", - "id": "relationship--0001af98-7db9-4323-8760-e9a6838d417a", - "modified": "2021-01-06T18:28:42.954Z", + "created": "2021-01-13T01:50:52.633Z", + "id": "relationship--d2fd7024-1c5e-40f4-9f65-2907f8bed62a", + "modified": "2021-01-13T01:50:52.633Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", + "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.955Z", - "description": "System Monitoring", - "id": "relationship--f3ee88ef-f1be-48b6-b58d-a2c67d3e2a6f", - "modified": "2021-01-06T18:28:42.955Z", + "created": "2021-01-13T01:50:52.634Z", + "id": "relationship--27e4fe98-94e5-4044-a84e-4edc6731611a", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", - "id": "relationship--69200e06-3e34-4f8a-ae1e-eb94b54bac6b", - "modified": "2021-01-06T18:28:42.956Z", + "created": "2021-01-13T01:50:52.634Z", + "id": "relationship--23764515-4c4f-45ec-87d9-36a5c66f1e23", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", - "id": "relationship--0c57a323-997f-4c81-9e04-5b923eba8376", - "modified": "2021-01-06T18:28:42.956Z", + "created": "2021-01-13T01:50:52.634Z", + "id": "relationship--78b16134-c29a-43d5-91b6-9f62f7e5b247", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--edf91964-b26e-4b4a-9600-ccacd7d7df24", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", - "id": "relationship--e1f0e95b-48fd-4d72-bff4-ac2abf50b345", - "modified": "2021-01-06T18:28:42.956Z", + "created": "2021-01-13T01:50:52.634Z", + "id": "relationship--a2aaf351-66ce-402a-9391-242095279fc2", + "modified": "2021-01-13T01:50:52.634Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", - "id": "relationship--c93b5604-5bb8-4c15-886a-06fabf3229aa", - "modified": "2021-01-06T18:28:42.956Z", + "created": "2021-01-13T01:50:52.635Z", + "id": "relationship--1760b215-cac8-4de0-9d7d-836bb74ed47e", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.956Z", - "description": "Access Control", - "id": "relationship--9080f7f7-f56d-4af8-be38-061d6361b4cc", - "modified": "2021-01-06T18:28:42.956Z", + "created": "2021-01-13T01:50:52.635Z", + "id": "relationship--f5a8abdd-dc8e-40bc-b8ee-edcb83d66b67", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--c7b8def6-3194-4d0c-adb9-910076490e6d", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.635Z", + "id": "relationship--6df18447-a945-4e6b-982a-f180478daf2f", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--506c6a8c-e75e-4336-83a5-f6664a9c79cd", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.635Z", + "id": "relationship--71cef190-66b3-4420-a43d-bee4a406c8aa", + "modified": "2021-01-13T01:50:52.635Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--0d02a8c9-3c0f-494a-8c62-cffbcca63b0b", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.636Z", + "id": "relationship--15bfc79f-dee5-4171-b96e-43147649c980", + "modified": "2021-01-13T01:50:52.636Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--4edd7758-b582-4fba-9bac-13c5918c0422", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.636Z", + "id": "relationship--7f8efe88-cf39-42b6-b404-1236e8ed5a7a", + "modified": "2021-01-13T01:50:52.636Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--e068b4e2-5f70-424b-81ea-cf1aca0be992", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.637Z", + "id": "relationship--f2a945a3-03ae-470d-89e4-193d7b981eba", + "modified": "2021-01-13T01:50:52.637Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--9f769fb1-5ff6-47a1-bd7a-4e71cd99f931", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.637Z", + "id": "relationship--46275a9c-c869-4ca3-8562-f7af08933d3e", + "modified": "2021-01-13T01:50:52.637Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.957Z", - "description": "Access Control", - "id": "relationship--733efa5c-c073-4224-94fb-804b246fbd02", - "modified": "2021-01-06T18:28:42.957Z", + "created": "2021-01-13T01:50:52.638Z", + "id": "relationship--3415270a-3f08-4ff5-842b-0be539b3882f", + "modified": "2021-01-13T01:50:52.638Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", - "id": "relationship--9ad7bf1d-e49c-4109-ba81-c4fd3a825a45", - "modified": "2021-01-06T18:28:42.958Z", + "created": "2021-01-13T01:50:52.639Z", + "id": "relationship--44fd4891-406c-43be-b3f3-15878840e784", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", - "id": "relationship--cf2ed786-2f36-4d1f-b388-2666300cf87b", - "modified": "2021-01-06T18:28:42.958Z", + "created": "2021-01-13T01:50:52.639Z", + "id": "relationship--90f95861-6f0c-421f-9706-4c1bb3c5b5c3", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.958Z", - "description": "Access Control", - "id": "relationship--0385407a-52d8-4299-9037-838abc1ce468", - "modified": "2021-01-06T18:28:42.958Z", + "created": "2021-01-13T01:50:52.639Z", + "id": "relationship--ad4fe594-c9fd-473a-af0c-24d5a1342c94", + "modified": "2021-01-13T01:50:52.639Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--7c46b364-8496-4234-8a56-f7e6727e21e1", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", - "id": "relationship--62e28a47-fc89-44cd-8ebd-3c81f7b2a960", - "modified": "2021-01-06T18:28:42.959Z", + "created": "2021-01-13T01:50:52.640Z", + "id": "relationship--15cd82e4-965e-4c57-920b-ec5557a64481", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", - "id": "relationship--c7ce48ce-4d92-4c13-a4f5-a34813951791", - "modified": "2021-01-06T18:28:42.959Z", + "created": "2021-01-13T01:50:52.640Z", + "id": "relationship--2c232256-0944-406f-bcac-880d760f4b47", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.959Z", - "description": "Off-system Storage", - "id": "relationship--891fcf60-8ae4-4ab9-a6ee-6d03ec1757ea", - "modified": "2021-01-06T18:28:42.959Z", + "created": "2021-01-13T01:50:52.640Z", + "id": "relationship--2f455c9d-8e9c-4946-ac15-7e15875519ca", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--bc2cf628-c28d-481e-bd85-3caeda18899e", - "modified": "2021-01-06T18:28:42.960Z", + "created": "2021-01-13T01:50:52.640Z", + "id": "relationship--41a6f46f-7fae-408b-b8ed-b4089d54cf98", + "modified": "2021-01-13T01:50:52.640Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--7fe210ad-d807-49f4-a3ba-512cb30396b7", - "modified": "2021-01-06T18:28:42.960Z", + "created": "2021-01-13T01:50:52.641Z", + "id": "relationship--de8ce4d1-844a-4d4c-b183-90e19dd2661d", + "modified": "2021-01-13T01:50:52.641Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--9a65374f-8ca1-4b89-b439-4b77e1e25130", - "modified": "2021-01-06T18:28:42.960Z", + "created": "2021-01-13T01:50:52.642Z", + "id": "relationship--19b69442-154f-4927-955b-79d75d0d11d9", + "modified": "2021-01-13T01:50:52.642Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.960Z", - "description": "System Monitoring", - "id": "relationship--e5ee6723-498f-4574-aaaf-562e453b8731", - "modified": "2021-01-06T18:28:42.960Z", + "created": "2021-01-13T01:50:52.642Z", + "id": "relationship--4878f74b-0827-4989-a3d1-10e702a1e3f8", + "modified": "2021-01-13T01:50:52.642Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--3257eb21-f9a7-4430-8de1-d8b6e288f529", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", - "id": "relationship--0f207181-76e7-4a2d-86fe-d7137ce83be7", - "modified": "2021-01-06T18:28:42.961Z", + "created": "2021-01-13T01:50:52.643Z", + "id": "relationship--d2bbc8e5-47ed-492a-9124-d0af1ed74c76", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", - "id": "relationship--2bb51427-f480-4a51-8e9b-f66f271318cb", - "modified": "2021-01-06T18:28:42.961Z", + "created": "2021-01-13T01:50:52.643Z", + "id": "relationship--00f0e326-b3d2-4c94-a9db-d051887ffb05", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", - "id": "relationship--80ecddab-20d2-4f10-b9c7-0226247a3d7a", - "modified": "2021-01-06T18:28:42.961Z", + "created": "2021-01-13T01:50:52.643Z", + "id": "relationship--a9ca60f6-1f54-42e4-adfa-e60d35d1acaa", + "modified": "2021-01-13T01:50:52.643Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", - "id": "relationship--3e283471-ede7-47e8-aa47-e20e6f22f2e6", - "modified": "2021-01-06T18:28:42.961Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--3fc81acb-da49-406b-9dbf-a548a1df95ec", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.961Z", - "description": "System Monitoring", - "id": "relationship--28e297ba-af86-4c99-9b6a-49ef43b5dc29", - "modified": "2021-01-06T18:28:42.961Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--18cfb441-f1b1-4aee-9cbd-b44d0e6b630f", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.962Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--159bf81e-14b2-4082-9bc8-f79fd11c8109", - "modified": "2021-01-06T18:28:42.962Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--47f33d2c-8427-4ccb-a809-2399fc5140ed", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d6146f70-446f-47cd-a608-2e8386e8af66", - "modified": "2021-01-06T18:28:42.963Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--7b3ec0ac-d580-4887-bb07-8a85da06520d", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8946df31-5b5e-4e50-ba7e-a41e211c1a1b", - "modified": "2021-01-06T18:28:42.963Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--793f528f-718a-4f89-80d9-cc7cb4085041", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--573ab816-e95b-402f-9e5a-0270ed2e9e0d", - "modified": "2021-01-06T18:28:42.963Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--5533cbbf-bf56-4e58-aa0b-d5801a1b14d9", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.963Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--42fbd6f1-a9c6-4c11-aebb-53a6e1024874", - "modified": "2021-01-06T18:28:42.963Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--e13503f2-fb2f-455e-ac42-db051ad1c2ff", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a2d4fb0b-9c7e-4d89-976a-c975290e7538", - "modified": "2021-01-06T18:28:42.964Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--49eea86b-a8a0-4343-920c-f12b1da4fe58", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6dbb0ca8-c44f-493e-ac04-b36e599388d7", - "modified": "2021-01-06T18:28:42.964Z", + "created": "2021-01-13T01:50:52.644Z", + "id": "relationship--6ea35f61-2aa3-4fb5-8520-5390d5269e85", + "modified": "2021-01-13T01:50:52.644Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0a485737-8c34-4059-a4b8-408a7cf8a4e4", - "modified": "2021-01-06T18:28:42.964Z", + "created": "2021-01-13T01:50:52.645Z", + "id": "relationship--eaf1c8ae-7dc3-4d7c-be38-ccaf63d6c5dc", + "modified": "2021-01-13T01:50:52.645Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.964Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ba34acdd-4b63-4af8-aa4b-b5f5e307bf3a", - "modified": "2021-01-06T18:28:42.964Z", + "created": "2021-01-13T01:50:52.645Z", + "id": "relationship--a5dd0c59-b589-4048-b8dc-14de1044c91e", + "modified": "2021-01-13T01:50:52.645Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--23277cb5-4b15-4a17-9fab-0937b0bfbff5", - "modified": "2021-01-06T18:28:42.965Z", + "created": "2021-01-13T01:50:52.646Z", + "id": "relationship--4703ed7a-0b31-4c1e-85a4-84a45f7b84f2", + "modified": "2021-01-13T01:50:52.646Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--023c15e4-0c8f-4d35-9e93-4fd41e9d19da", - "modified": "2021-01-06T18:28:42.965Z", + "created": "2021-01-13T01:50:52.647Z", + "id": "relationship--5d6f8449-07c6-4d1b-a260-22b2cadb4115", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--2bce5b30-7014-4a5d-ade7-12913fe6ac36", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.965Z", - "description": "Access Control", - "id": "relationship--7619d492-4804-46fc-8748-52c1d182584a", - "modified": "2021-01-06T18:28:42.965Z", + "created": "2021-01-13T01:50:52.647Z", + "id": "relationship--2b9f201d-5eb4-4836-ae29-f81e97cc69d0", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--6495ae23-3ab4-43c5-a94f-5638a2c31fd2", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", - "id": "relationship--9c5911c4-b8cf-4829-96a2-86e5efc0a9c5", - "modified": "2021-01-06T18:28:42.966Z", + "created": "2021-01-13T01:50:52.647Z", + "id": "relationship--a2e2834e-62af-424e-9745-e95a8b63b363", + "modified": "2021-01-13T01:50:52.647Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--799ace7f-e227-4411-baa0-8868704f2a69", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", - "id": "relationship--0605497b-9d63-4bd9-a4ce-5ea53bdfba97", - "modified": "2021-01-06T18:28:42.966Z", + "created": "2021-01-13T01:50:52.648Z", + "id": "relationship--5de1283f-ee5a-4f78-a5a6-21b6a2df516a", + "modified": "2021-01-13T01:50:52.648Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.966Z", - "description": "Access Control", - "id": "relationship--4cff7d54-48cd-4527-847f-acc677f872d6", - "modified": "2021-01-06T18:28:42.966Z", + "created": "2021-01-13T01:50:52.648Z", + "id": "relationship--5fd57278-97e4-45d0-af3f-280895379042", + "modified": "2021-01-13T01:50:52.648Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", - "id": "relationship--643bb04b-16ee-4197-9769-c4db5d9feaef", - "modified": "2021-01-06T18:28:42.967Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--f3d4fde9-a311-42f2-9d69-3bf408096c17", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", - "id": "relationship--06e601cf-ba4e-4ab2-8935-fac23b4439e2", - "modified": "2021-01-06T18:28:42.967Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--ba887655-6d3d-4bbf-84d0-c829cf389fe6", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", - "id": "relationship--8774b106-c51e-405c-a74a-f51516354310", - "modified": "2021-01-06T18:28:42.967Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--dbf827cd-0d99-449b-ab9e-ce93013984f3", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", - "id": "relationship--7eca14b8-f16f-4528-b9b2-b24b6def0959", - "modified": "2021-01-06T18:28:42.967Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--9c74393b-bfd4-4e90-8988-c630fe425f60", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.967Z", - "description": "Access Control", - "id": "relationship--2e24c8d0-a0db-4f18-9cc0-f70a0a82ab87", - "modified": "2021-01-06T18:28:42.967Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--1da0c3a8-6ddc-4f52-95e5-82c7033e7b16", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--13f2e949-318e-46d3-86dc-c5101cef09ea", - "modified": "2021-01-06T18:28:42.968Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--30386774-690c-452f-a6ab-52998f581e62", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--8a6d1458-d96a-4ed5-a8ad-78fcd70f41e6", - "modified": "2021-01-06T18:28:42.968Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--1b71b7ca-d0fb-41c2-b579-26cb7d97916d", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--fa9096cf-5705-4e53-b18d-a786de974669", - "modified": "2021-01-06T18:28:42.968Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--4ae356f0-a956-4b4f-939a-420c3ccfafca", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.968Z", - "description": "Access Control", - "id": "relationship--af0e4ebf-0d6a-41e0-807f-ebce1bf74a5e", - "modified": "2021-01-06T18:28:42.968Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--a02e7bde-314b-4326-b6ac-de1fdd0d6230", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a508d1bb-9f7b-4555-9598-de1b267948f0", - "modified": "2021-01-06T18:28:42.969Z", + "created": "2021-01-13T01:50:52.649Z", + "id": "relationship--e0233f9d-f60b-44fb-8a7b-57d9dbce8507", + "modified": "2021-01-13T01:50:52.649Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62731413-d90d-4f7e-9064-5f7a5ea656ac", - "modified": "2021-01-06T18:28:42.969Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--f80bdc5b-42ac-47df-855d-5d5bb5740fab", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.969Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--151daf94-b6ce-4895-8375-3ca18c7b0b8f", - "modified": "2021-01-06T18:28:42.969Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--e3cb6c03-1756-46f6-baa8-72681caacd4a", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--faa5eeaa-13d8-472c-a03a-cc698191b900", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--f84b0946-9b74-4b02-b19a-031e38320a6a", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09dbe9ad-4dc2-470a-a131-e026a7b1e5c5", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--a17c605b-80e1-473b-a2b6-bf487185eb6d", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a0efc622-dfdd-4919-a937-9aef9915238f", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--49c450b2-1f62-4539-b3bb-9547bce9fe96", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dbab608c-7870-4ea9-98c5-19ddcd5f2033", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.650Z", + "id": "relationship--1be34a86-303a-4f9f-805c-82fb04720263", + "modified": "2021-01-13T01:50:52.650Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ab2494b9-b9de-4990-bacd-6299cb105287", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.651Z", + "id": "relationship--94ba0e80-7323-4e3a-99ec-ac52d53ade22", + "modified": "2021-01-13T01:50:52.651Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.970Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f376757d-88e4-4362-9ef8-f2b46dd469a0", - "modified": "2021-01-06T18:28:42.970Z", + "created": "2021-01-13T01:50:52.651Z", + "id": "relationship--585e3116-a99d-4fe2-9d83-f99d4f79afb3", + "modified": "2021-01-13T01:50:52.651Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", - "id": "relationship--61769047-f4be-43aa-aa68-1731f0576fa9", - "modified": "2021-01-06T18:28:42.972Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--e5884876-75f0-4c22-b5bd-f2a5799b83a1", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", - "id": "relationship--663006c1-774b-4719-90ab-70307e7d1df8", - "modified": "2021-01-06T18:28:42.972Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--83b2c39f-2b08-41b3-8537-17a1d45cda50", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.972Z", - "description": "Off-system Storage", - "id": "relationship--c2e3c26b-f6e2-4729-b45b-cb1fbb34ca8f", - "modified": "2021-01-06T18:28:42.972Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--95e75805-6ec8-4f30-8da2-e45941990555", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.973Z", - "description": "System Monitoring", - "id": "relationship--200ad355-5a1b-4870-acba-9343ce9abd57", - "modified": "2021-01-06T18:28:42.973Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--a0c378d6-e788-486d-b099-05250339c424", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.973Z", - "description": "System Monitoring", - "id": "relationship--06f0a5a8-97d0-49cc-896a-077aa76c9ac3", - "modified": "2021-01-06T18:28:42.973Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--29e8e420-9d33-4aaf-a9d3-9c1144e2e16e", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--64393fb2-e00f-40e3-aa19-f594452f4680", - "modified": "2021-01-06T18:28:42.974Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--4abfbbc5-1a42-41ef-b942-62c400ef5b06", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--17f7bb5a-08b7-453d-931d-0ffd98ddf081", - "modified": "2021-01-06T18:28:42.974Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--52c0ac51-f5e1-4d9c-b1e0-ab3ac14ba7e2", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--1e9eb839-294b-48cc-b0d3-c45555a2a004", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--69091c0a-20cd-45e8-9731-20e695694a64", - "modified": "2021-01-06T18:28:42.974Z", + "created": "2021-01-13T01:50:52.652Z", + "id": "relationship--991a974f-ed4b-40d4-b129-f71683a8c37d", + "modified": "2021-01-13T01:50:52.652Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--b4694861-542c-48ea-9eb1-10d356e7140a", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--eb860199-29af-46a0-a95b-ced7e7494f9b", - "modified": "2021-01-06T18:28:42.974Z", + "created": "2021-01-13T01:50:52.653Z", + "id": "relationship--f18cc6c2-587b-48f3-914d-86da6a9d55f7", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.974Z", - "description": "System Monitoring", - "id": "relationship--b1ca1c6e-4197-475b-a68e-73f0b042e6f2", - "modified": "2021-01-06T18:28:42.974Z", + "created": "2021-01-13T01:50:52.653Z", + "id": "relationship--4632463b-12ab-4487-9ee3-de1b5f638c29", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.975Z", - "description": "System Monitoring", - "id": "relationship--03524695-c3b6-4b82-ba83-2f74efa3701a", - "modified": "2021-01-06T18:28:42.975Z", + "created": "2021-01-13T01:50:52.653Z", + "id": "relationship--6495291d-1999-499a-9224-d3c24a5ef298", + "modified": "2021-01-13T01:50:52.653Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.975Z", - "description": "System Monitoring", - "id": "relationship--0af3bfef-cc1b-4a51-a369-a9fd6f836f26", - "modified": "2021-01-06T18:28:42.975Z", + "created": "2021-01-13T01:50:52.654Z", + "id": "relationship--cc920365-441d-416d-b5fc-c6f17e7e20c9", + "modified": "2021-01-13T01:50:52.654Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", - "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.977Z", - "description": "Vulnerability Scanning", - "id": "relationship--41e2e799-4020-4b14-95bb-6885cef78e36", - "modified": "2021-01-06T18:28:42.977Z", + "created": "2021-01-13T01:50:52.654Z", + "id": "relationship--e5af417b-edad-4c99-871c-4b852b1bc7df", + "modified": "2021-01-13T01:50:52.654Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.978Z", - "description": "System Monitoring, malware", - "id": "relationship--2d942da6-837d-4339-9b6b-0494e8f3f6fb", - "modified": "2021-01-06T18:28:42.978Z", + "created": "2021-01-13T01:50:52.655Z", + "id": "relationship--3b819d3a-a1a7-4972-a0c1-f37049ca22b8", + "modified": "2021-01-13T01:50:52.655Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.978Z", - "description": "System Monitoring, malware", - "id": "relationship--212b8cf5-4388-44bc-bf9f-9fc73a2f7fdf", - "modified": "2021-01-06T18:28:42.978Z", + "created": "2021-01-13T01:50:52.655Z", + "id": "relationship--c80ee180-d631-4c02-a516-374b105b536e", + "modified": "2021-01-13T01:50:52.655Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.980Z", - "description": "Wireless access", - "id": "relationship--75233595-6e7f-475e-bd96-19230769608d", - "modified": "2021-01-06T18:28:42.980Z", + "created": "2021-01-13T01:50:52.656Z", + "id": "relationship--41b7cf73-a67b-4013-ae12-518d512d58ae", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.981Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--11bc4f0d-a8d7-4538-8650-2a9dbf0a5f3f", - "modified": "2021-01-06T18:28:42.981Z", + "created": "2021-01-13T01:50:52.656Z", + "id": "relationship--f1038e9c-cc56-484b-9d0f-df538407972b", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.981Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4d311caf-85b8-46a5-be67-6e210ed9bd28", - "modified": "2021-01-06T18:28:42.981Z", + "created": "2021-01-13T01:50:52.656Z", + "id": "relationship--8f09a774-e8c3-4715-a50a-1f0b112391f2", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.982Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--38062425-1dd5-47f1-8ad5-48a4a4041866", - "modified": "2021-01-06T18:28:42.982Z", + "created": "2021-01-13T01:50:52.656Z", + "id": "relationship--7c632fdd-de72-471f-afc7-f4e28e424232", + "modified": "2021-01-13T01:50:52.656Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.983Z", - "description": "Vulnerability Scanning", - "id": "relationship--a9223498-3983-4d42-8a6d-d087f8dcc236", - "modified": "2021-01-06T18:28:42.983Z", + "created": "2021-01-13T01:50:52.657Z", + "id": "relationship--de303e3a-d73f-4632-a075-b8c8b1ae0745", + "modified": "2021-01-13T01:50:52.657Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--30208d3e-0d6b-43c8-883e-44462a514619", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", - "id": "relationship--7b440b6a-f8c0-4971-b60a-2f71ec864a7f", - "modified": "2021-01-06T18:28:42.984Z", + "created": "2021-01-13T01:50:52.658Z", + "id": "relationship--e5c809e7-a93d-4cad-a67e-7bbfe7bd8ee6", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", - "id": "relationship--a1c47e51-c90b-4992-9700-be667705d596", - "modified": "2021-01-06T18:28:42.984Z", + "created": "2021-01-13T01:50:52.658Z", + "id": "relationship--8f6367c7-3ed2-403b-9f87-f4dc0de84209", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.984Z", - "description": "Vulnerability Scanning", - "id": "relationship--7c4fedb8-42f7-45cc-b4d0-5d25bfd05058", - "modified": "2021-01-06T18:28:42.984Z", + "created": "2021-01-13T01:50:52.658Z", + "id": "relationship--e45272dc-6689-4182-9957-035d1942911f", + "modified": "2021-01-13T01:50:52.658Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.985Z", - "description": "Vulnerability Scanning", - "id": "relationship--32bac8f5-2e56-4903-bbcd-fa8d4411b423", - "modified": "2021-01-06T18:28:42.985Z", + "created": "2021-01-13T01:50:52.659Z", + "id": "relationship--4a128334-2d9b-43b8-b40c-70c2c1bd79c9", + "modified": "2021-01-13T01:50:52.659Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--22a20df6-62f8-4c31-b61e-b2db2ab59ebd", - "modified": "2021-01-06T18:28:42.986Z", + "created": "2021-01-13T01:50:52.660Z", + "id": "relationship--eaa2615a-eb39-4039-af37-69a05ea0fa95", + "modified": "2021-01-13T01:50:52.660Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:42.986Z", + "created": "2021-01-13T01:50:52.660Z", + "id": "relationship--9e8c4ad3-12f8-403f-bb55-509d74921b54", + "modified": "2021-01-13T01:50:52.660Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--10e57c04-9a32-4c1e-b1e2-df9f80bf3370", - "modified": "2021-01-06T18:28:42.986Z", + "created": "2021-01-13T01:50:52.661Z", + "id": "relationship--4bcf4783-c7b6-4f55-b78d-0c08f8c2aa5c", + "modified": "2021-01-13T01:50:52.661Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.986Z", - "description": "System Monitoring", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:42.986Z", + "created": "2021-01-13T01:50:52.662Z", + "id": "relationship--06ae75b3-94d5-4137-a2c5-31201a1da2f1", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.987Z", - "description": "System Monitoring", - "id": "relationship--3d810d76-2523-423c-8700-04ba4b8d53c5", - "modified": "2021-01-06T18:28:42.987Z", + "created": "2021-01-13T01:50:52.662Z", + "id": "relationship--f0997432-8fcc-41d3-9784-9eda445f6414", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ebbe7bfb-d8be-4a0c-9332-2122972516d9", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.662Z", + "id": "relationship--8e936da1-01c9-4345-b46e-339464183eb2", + "modified": "2021-01-13T01:50:52.662Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6fc77504-40f0-41c4-93f0-a4a0f3fee358", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.663Z", + "id": "relationship--2163468d-d78a-4dab-9a5d-4529b62cc62b", + "modified": "2021-01-13T01:50:52.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2b6a2bde-2fb8-4d0a-9fbc-36d3100f19f7", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.663Z", + "id": "relationship--84eea744-3934-45e9-bdd7-c0967728e68c", + "modified": "2021-01-13T01:50:52.663Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--51b51024-a53c-41cf-b667-ab297e7616ca", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.664Z", + "id": "relationship--0dc1983a-717d-46c0-838b-f1776ecd4b3e", + "modified": "2021-01-13T01:50:52.664Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--283ede6c-1d47-42c6-b711-ba6d71cde063", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.664Z", + "id": "relationship--80cd997d-9580-40b2-a8dc-3b5b0906bc28", + "modified": "2021-01-13T01:50:52.664Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--f005e783-57d4-4837-88ad-dbe7faee1c51", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.988Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:42.988Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--c951c349-d833-457c-ad18-8dade6d88c0c", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--06aea732-dd55-448f-a3a9-bef487086304", - "modified": "2021-01-06T18:28:42.989Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--3b74a599-ceef-40bc-92d9-944e7b354e91", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6f7e7323-d4f0-48e7-9d29-bf52ed4031ae", - "modified": "2021-01-06T18:28:42.989Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--e9350dff-40d7-4013-93a8-9fe8989ff98d", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6353f8cc-9970-4635-b34a-6b06aea1c07a", - "modified": "2021-01-06T18:28:42.989Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--62194298-570b-4a62-b5dc-a102409c5842", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.989Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--692caa1c-b64c-4efd-9c79-97204cfcbb8c", - "modified": "2021-01-06T18:28:42.989Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--654db8e5-6409-48e2-8aad-de34c8da2eae", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--206add57-83ee-4645-ac38-6dd55f2c51e9", - "modified": "2021-01-06T18:28:42.990Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--527df502-cc22-44fe-a06b-c452133fed26", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--85323b0a-753d-49b3-ade7-c42285c98391", - "modified": "2021-01-06T18:28:42.990Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--13ba8bd8-2037-433c-b5e4-703f81bc3ced", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5f6bd771-8d22-49c0-8287-a61bf1aec2d7", - "modified": "2021-01-06T18:28:42.990Z", + "created": "2021-01-13T01:50:52.665Z", + "id": "relationship--fe32c2d4-b812-4673-80c1-32e645e5c6b3", + "modified": "2021-01-13T01:50:52.665Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.990Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b467a281-4c2a-4bbb-822e-17c6775aa39a", - "modified": "2021-01-06T18:28:42.990Z", + "created": "2021-01-13T01:50:52.667Z", + "id": "relationship--5d939c96-5faf-4d7a-8b1e-452edddb2fae", + "modified": "2021-01-13T01:50:52.667Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.991Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b2c54ea8-ad9a-404e-9008-d0060340c263", - "modified": "2021-01-06T18:28:42.991Z", + "created": "2021-01-13T01:50:52.668Z", + "id": "relationship--5a15cef7-d919-490c-a19a-4ed170bcdec2", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.992Z", - "description": "Vulnerability Scanning", - "id": "relationship--f4959335-5935-49cf-91ba-d19bb6b53492", - "modified": "2021-01-06T18:28:42.992Z", + "created": "2021-01-13T01:50:52.668Z", + "id": "relationship--ef402c35-de30-4994-870c-915787df3d64", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.994Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--69f057ab-7e84-4d4f-a46c-fac431df1723", - "modified": "2021-01-06T18:28:42.994Z", + "created": "2021-01-13T01:50:52.668Z", + "id": "relationship--cf52ac42-783c-4913-8cda-6ee1d6a9ab4e", + "modified": "2021-01-13T01:50:52.668Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.994Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--e2c8e9e1-7dea-41c4-9bbf-53a565135bcd", - "modified": "2021-01-06T18:28:42.994Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--a3c04a8f-4125-4558-a9c6-5b8e6c4041bf", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.995Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--04234f16-7aaa-4e29-a7e8-16386aecc4e2", - "modified": "2021-01-06T18:28:42.995Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--adece807-d46b-45bb-87b6-ae9bbf3c035c", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.996Z", - "description": "Vulnerability Scanning", - "id": "relationship--93fcff2d-3b2a-4365-acd5-1ae875ae7d50", - "modified": "2021-01-06T18:28:42.996Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--8eb03e13-87b0-4723-a846-ef77791c6d3f", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.997Z", - "description": "Vulnerability Scanning", - "id": "relationship--58031ac6-a709-4a44-9762-b4dde34bf75f", - "modified": "2021-01-06T18:28:42.997Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--53b4f057-0de9-430c-9a93-858d8d7f56fd", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", - "id": "relationship--2de21be6-cb7f-4a7d-9494-89b74dafde05", - "modified": "2021-01-06T18:28:42.998Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--7b5fbada-10b1-43af-8566-8f78a7fc2e6f", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", - "id": "relationship--c8805abc-b6de-4c17-9da8-a28ee01471aa", - "modified": "2021-01-06T18:28:42.998Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--e19527e7-6e2b-4357-85d1-b39a481e6dd7", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", - "id": "relationship--964a9d89-59cf-4f02-b22f-fc6178eca32d", - "modified": "2021-01-06T18:28:42.998Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--06fa0ead-4040-4053-bb68-ab5ea4247e89", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:42.998Z", - "description": "System Monitoring, malware", - "id": "relationship--dc0371e4-823c-470e-b94f-53b9b65db23a", - "modified": "2021-01-06T18:28:42.998Z", + "created": "2021-01-13T01:50:52.669Z", + "id": "relationship--72545826-23d3-4d76-be6e-864341c2fd17", + "modified": "2021-01-13T01:50:52.669Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3778004a-635f-43e0-8ea0-9c6406db14b7", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.670Z", + "id": "relationship--09298e36-a174-4482-955e-d555127bdca3", + "modified": "2021-01-13T01:50:52.670Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d26c3537-b543-4cb7-9890-35f100323f83", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.670Z", + "id": "relationship--639c9857-2bba-4906-8c84-ea3faef2df25", + "modified": "2021-01-13T01:50:52.670Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--de15cb03-3b17-4264-9139-7dfd96b147d9", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.671Z", + "id": "relationship--5575338f-7f6f-40f6-932e-dbc25ab8a5eb", + "modified": "2021-01-13T01:50:52.671Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--849de4bf-cd76-490a-bb15-fb87a066d646", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.671Z", + "id": "relationship--4fecd284-768d-4c3b-912c-16941048cb68", + "modified": "2021-01-13T01:50:52.671Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--327dd8ab-b71d-44ce-9a57-6794a4529f0f", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.672Z", + "id": "relationship--649d8e33-9fa4-433b-83de-838faa09b49a", + "modified": "2021-01-13T01:50:52.672Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.000Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--60e9f7f2-550a-4169-98a4-43f2fcdc829a", - "modified": "2021-01-06T18:28:43.000Z", + "created": "2021-01-13T01:50:52.672Z", + "id": "relationship--3df8be7e-8fce-4ac7-aa2e-398266705617", + "modified": "2021-01-13T01:50:52.672Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.003Z", - "description": "Vulnerability Scanning", - "id": "relationship--95ae76f2-4310-4a4e-8d7f-9d35e4c176d0", - "modified": "2021-01-06T18:28:43.003Z", + "created": "2021-01-13T01:50:52.673Z", + "id": "relationship--a2bd18b6-3f8a-4693-9ae4-f0b7abc0cc38", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.003Z", - "description": "Vulnerability Scanning", - "id": "relationship--5424b2e0-5965-41b3-a5ea-34b2041a0fcd", - "modified": "2021-01-06T18:28:43.003Z", + "created": "2021-01-13T01:50:52.673Z", + "id": "relationship--116bf075-e331-4d30-849c-5915a11edcf9", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.004Z", - "description": "Vulnerability Scanning", - "id": "relationship--fa3ecbfb-9eca-4133-a285-b972a29f784c", - "modified": "2021-01-06T18:28:43.004Z", + "created": "2021-01-13T01:50:52.673Z", + "id": "relationship--7bd7ecc6-3440-448c-817a-d94ed55907d0", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.004Z", - "description": "Vulnerability Scanning", - "id": "relationship--b42920b5-1ee0-40c5-b15c-cd2eed73d558", - "modified": "2021-01-06T18:28:43.004Z", + "created": "2021-01-13T01:50:52.673Z", + "id": "relationship--62b3a11f-e9c7-435c-8aac-5e3e3b779881", + "modified": "2021-01-13T01:50:52.673Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.005Z", - "description": "System Monitoring, malware", - "id": "relationship--9ffb0125-920f-4821-9af7-cf2af4cbbce8", - "modified": "2021-01-06T18:28:43.005Z", + "created": "2021-01-13T01:50:52.674Z", + "id": "relationship--8079c015-9cde-490e-8e8e-85903ed94557", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.005Z", - "description": "System Monitoring, malware", - "id": "relationship--ac028c28-bb45-4d75-8969-0cf48b7113e4", - "modified": "2021-01-06T18:28:43.005Z", + "created": "2021-01-13T01:50:52.674Z", + "id": "relationship--01821457-8373-4076-8ed4-cd572fd44503", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", - "id": "relationship--4d233343-ade8-401c-b143-1dbf3e2055a4", - "modified": "2021-01-06T18:28:43.006Z", + "created": "2021-01-13T01:50:52.674Z", + "id": "relationship--faa7d51d-7e42-4b13-ad3d-0419e0f5c8f0", + "modified": "2021-01-13T01:50:52.674Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", - "id": "relationship--6af5809f-f0cb-4a4d-a400-80083a0f6521", - "modified": "2021-01-06T18:28:43.006Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--450210d4-c9fc-4a99-bffa-282eda6cde34", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", - "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.006Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--23f030f4-8219-4ccc-8af0-3b3e953047ec", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", - "id": "relationship--155dbb8e-cae5-4d5d-a304-edfaccd49878", - "modified": "2021-01-06T18:28:43.006Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--4e9b7e28-be92-4dd1-9e95-016f85d2d305", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.006Z", - "description": "System Monitoring, malware", - "id": "relationship--4371adfa-df38-4603-9696-e57fed241678", - "modified": "2021-01-06T18:28:43.006Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--13ce0b6d-d6bd-4fdf-807d-071104267d71", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.007Z", - "description": "System Monitoring, malware", - "id": "relationship--b7d6c9b5-30cc-47ab-8250-abe6c18e3851", - "modified": "2021-01-06T18:28:43.007Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--4ec84fbf-5c1f-4971-a75e-50f36ec83283", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.008Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--17e9e6dd-270c-4bba-bdbb-91d9a1d2fc42", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4f19a941-4162-432c-893e-47b203e7c270", - "modified": "2021-01-06T18:28:43.008Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--3cf9dc7a-5845-4f4e-b8f8-ee0e184eec86", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.008Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5befe2d1-b9ce-40a1-8556-5e65be22263d", - "modified": "2021-01-06T18:28:43.008Z", + "created": "2021-01-13T01:50:52.675Z", + "id": "relationship--ce8666cd-19c1-4d4c-a443-e1c166c4d9df", + "modified": "2021-01-13T01:50:52.675Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--23f376cd-9343-4aa0-b2d8-72d180aef209", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.676Z", + "id": "relationship--00dc0803-3f7e-4124-ac7d-cf08310eac13", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.676Z", + "id": "relationship--13bc25df-c4d1-4a87-927f-4d4408a324c4", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4601ae75-4642-414e-b16c-142ec466b1d0", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.676Z", + "id": "relationship--8b56555a-60ba-43a9-afa3-012fcb9409a1", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.676Z", + "id": "relationship--550c02f8-b715-4699-86a9-4e738a3b4a94", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--09357d8f-7193-480d-87e0-65c44edc02ea", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.676Z", + "id": "relationship--3512d578-3aa5-48c3-ae1c-d26982780e1d", + "modified": "2021-01-13T01:50:52.676Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.009Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ae2274b9-4ba9-4fb7-ae08-204fbb46bcf3", - "modified": "2021-01-06T18:28:43.009Z", + "created": "2021-01-13T01:50:52.677Z", + "id": "relationship--d989ead6-6aed-430a-9623-2911b708cd3d", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--51d36bf0-2ca0-491a-8474-330983a0f964", - "modified": "2021-01-06T18:28:43.010Z", + "created": "2021-01-13T01:50:52.677Z", + "id": "relationship--71440795-8e64-49e6-94d6-5a58c2464db3", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0f361745-aa21-43c0-be20-ed81a84f3751", - "modified": "2021-01-06T18:28:43.010Z", + "created": "2021-01-13T01:50:52.677Z", + "id": "relationship--e3ef143b-8cb0-4bd5-83a8-4ab9d2bb543c", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.010Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--17fa5f3c-3a56-438d-bb37-d0024bedfdc1", - "modified": "2021-01-06T18:28:43.010Z", + "created": "2021-01-13T01:50:52.677Z", + "id": "relationship--4098a823-fa6d-425c-a9b9-dcd4460fafce", + "modified": "2021-01-13T01:50:52.677Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.012Z", - "description": "Vulnerability Scanning", - "id": "relationship--72cb24e1-34d2-460d-8701-afc0671ada2d", - "modified": "2021-01-06T18:28:43.012Z", + "created": "2021-01-13T01:50:52.678Z", + "id": "relationship--2e37376d-32da-4d0e-91c3-ee73d7f63076", + "modified": "2021-01-13T01:50:52.678Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.014Z", - "description": "System Monitoring, malware", - "id": "relationship--d4ae1542-47c5-4b79-8f7b-b35c4d31aab1", - "modified": "2021-01-06T18:28:43.014Z", + "created": "2021-01-13T01:50:52.678Z", + "id": "relationship--830684e5-2e7c-4835-8035-0924991206bf", + "modified": "2021-01-13T01:50:52.678Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.014Z", - "description": "System Monitoring, malware", - "id": "relationship--eaffc58c-9218-401c-8313-2df407a27b5b", - "modified": "2021-01-06T18:28:43.014Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--d275cb34-0529-47ee-ac96-1fe8e6b43997", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.015Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dea74d24-27aa-46bb-9719-e4f36a435378", - "modified": "2021-01-06T18:28:43.015Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--00761b43-30f9-4846-bbdc-a278bb5f9c52", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.016Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--384f0000-f3b3-4f96-9d1d-d2fbf14b8ac0", - "modified": "2021-01-06T18:28:43.016Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--be91fdb5-981d-403f-ac2b-1caaedbfa64e", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.016Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--675bd3c9-3077-403a-81f6-2423bd88f1d5", - "modified": "2021-01-06T18:28:43.016Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--c6638411-1e4d-4d0b-a194-ece999863033", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--f2877f7f-9a4c-4251-879f-1224e3006bee", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.018Z", - "description": "Vulnerability Scanning", - "id": "relationship--a5923ee7-3e80-43a7-a0ed-69d12a0f14ea", - "modified": "2021-01-06T18:28:43.018Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--0001af98-7db9-4323-8760-e9a6838d417a", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--d273434a-448e-4598-8e14-607f4a0d5e27", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.019Z", - "description": "System Monitoring, malware", - "id": "relationship--809291a0-04f6-4231-b8b3-10cb3602f0e7", - "modified": "2021-01-06T18:28:43.019Z", + "created": "2021-01-13T01:50:52.679Z", + "id": "relationship--f3ee88ef-f1be-48b6-b58d-a2c67d3e2a6f", + "modified": "2021-01-13T01:50:52.679Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--3fc01293-ef5e-41c6-86ce-61f10706b64a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.019Z", - "description": "System Monitoring, malware", - "id": "relationship--3e78fb31-931b-4982-903c-6b745f34d832", - "modified": "2021-01-06T18:28:43.019Z", + "created": "2021-01-13T01:50:52.680Z", + "id": "relationship--69200e06-3e34-4f8a-ae1e-eb94b54bac6b", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1c69e293-581a-43ec-a63a-4efeaeb9a4a0", - "modified": "2021-01-06T18:28:43.020Z", + "created": "2021-01-13T01:50:52.680Z", + "id": "relationship--0c57a323-997f-4c81-9e04-5b923eba8376", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ec21544d-d6a9-4665-a961-5a025577c7aa", - "modified": "2021-01-06T18:28:43.020Z", + "created": "2021-01-13T01:50:52.680Z", + "id": "relationship--e1f0e95b-48fd-4d72-bff4-ac2abf50b345", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.020Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--714a46dd-aa66-4c19-bf61-833b1c341390", - "modified": "2021-01-06T18:28:43.020Z", + "created": "2021-01-13T01:50:52.680Z", + "id": "relationship--c93b5604-5bb8-4c15-886a-06fabf3229aa", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.022Z", - "description": "Vulnerability Scanning", - "id": "relationship--76b37b71-c27d-4f05-ab4b-942bcff29385", - "modified": "2021-01-06T18:28:43.022Z", + "created": "2021-01-13T01:50:52.680Z", + "id": "relationship--9080f7f7-f56d-4af8-be38-061d6361b4cc", + "modified": "2021-01-13T01:50:52.680Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.023Z", - "description": "System Monitoring, malware", - "id": "relationship--ddaf1484-0dab-446a-a144-77be72e0eccd", - "modified": "2021-01-06T18:28:43.023Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--c7b8def6-3194-4d0c-adb9-910076490e6d", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.023Z", - "description": "System Monitoring, malware", - "id": "relationship--8577d457-5ff6-42a3-a65f-d21b2664e163", - "modified": "2021-01-06T18:28:43.023Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--506c6a8c-e75e-4336-83a5-f6664a9c79cd", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.024Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--ff4186b7-573e-4af4-802d-3a078895b0f1", - "modified": "2021-01-06T18:28:43.024Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--0d02a8c9-3c0f-494a-8c62-cffbcca63b0b", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.024Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a362a7cd-bf23-4f57-9e76-debb7bbc0ff6", - "modified": "2021-01-06T18:28:43.024Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--4edd7758-b582-4fba-9bac-13c5918c0422", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.025Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--029296ec-516e-411b-87c5-dea7f7e6356a", - "modified": "2021-01-06T18:28:43.025Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--e068b4e2-5f70-424b-81ea-cf1aca0be992", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.026Z", - "description": "Vulnerability Scanning", - "id": "relationship--44a59e1b-6856-4fd5-9c16-160f16cc4b11", - "modified": "2021-01-06T18:28:43.026Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--9f769fb1-5ff6-47a1-bd7a-4e71cd99f931", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.026Z", - "description": "Vulnerability Scanning", - "id": "relationship--dbf09b17-8315-40d6-aeaf-05b9c5d87539", - "modified": "2021-01-06T18:28:43.026Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--733efa5c-c073-4224-94fb-804b246fbd02", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.027Z", - "description": "System Monitoring", - "id": "relationship--8fea732b-9383-4c96-883e-d53fa8b97aa0", - "modified": "2021-01-06T18:28:43.027Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--9ad7bf1d-e49c-4109-ba81-c4fd3a825a45", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.027Z", - "description": "System Monitoring", - "id": "relationship--6de72fa9-7a51-464b-9070-02f04f706492", - "modified": "2021-01-06T18:28:43.027Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--cf2ed786-2f36-4d1f-b388-2666300cf87b", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.028Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--49f23fff-349a-44c7-b4fb-7f6ddb03507b", - "modified": "2021-01-06T18:28:43.028Z", + "created": "2021-01-13T01:50:52.681Z", + "id": "relationship--0385407a-52d8-4299-9037-838abc1ce468", + "modified": "2021-01-13T01:50:52.681Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--99f9c7bf-21d1-4f56-8b72-075c9998ed64", - "modified": "2021-01-06T18:28:43.029Z", + "created": "2021-01-13T01:50:52.682Z", + "id": "relationship--891fcf60-8ae4-4ab9-a6ee-6d03ec1757ea", + "modified": "2021-01-13T01:50:52.682Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f311e4cd-2543-440d-8393-ead13bedbe17", - "modified": "2021-01-06T18:28:43.029Z", + "created": "2021-01-13T01:50:52.683Z", + "id": "relationship--9a65374f-8ca1-4b89-b439-4b77e1e25130", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b5932f52-10cc-483b-b956-e841e8420768", - "modified": "2021-01-06T18:28:43.029Z", + "created": "2021-01-13T01:50:52.683Z", + "id": "relationship--e5ee6723-498f-4574-aaaf-562e453b8731", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3b5ed362-2f2b-42f9-a237-6378f7fba0f1", - "modified": "2021-01-06T18:28:43.029Z", + "created": "2021-01-13T01:50:52.683Z", + "id": "relationship--0f207181-76e7-4a2d-86fe-d7137ce83be7", + "modified": "2021-01-13T01:50:52.683Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.029Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6d6effa6-3dae-42f0-b8d2-7f1aff30dc15", - "modified": "2021-01-06T18:28:43.029Z", + "created": "2021-01-13T01:50:52.684Z", + "id": "relationship--2bb51427-f480-4a51-8e9b-f66f271318cb", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.030Z", - "description": "Protect credential access", - "id": "relationship--8d2f5a92-43d9-4429-9f40-3baa232749cd", - "modified": "2021-01-06T18:28:43.030Z", + "created": "2021-01-13T01:50:52.684Z", + "id": "relationship--80ecddab-20d2-4f10-b9c7-0226247a3d7a", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.032Z", - "description": "Vulnerability Scanning", - "id": "relationship--54134f02-2920-44e2-9e12-381c8269e50c", - "modified": "2021-01-06T18:28:43.032Z", + "created": "2021-01-13T01:50:52.684Z", + "id": "relationship--3e283471-ede7-47e8-aa47-e20e6f22f2e6", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.033Z", - "description": "System Monitoring", - "id": "relationship--be98061d-9a32-44c1-b533-61febafa447b", - "modified": "2021-01-06T18:28:43.033Z", + "created": "2021-01-13T01:50:52.684Z", + "id": "relationship--28e297ba-af86-4c99-9b6a-49ef43b5dc29", + "modified": "2021-01-13T01:50:52.684Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.035Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5708481d-7335-47a7-862e-389ec3ebdabe", - "modified": "2021-01-06T18:28:43.035Z", + "created": "2021-01-13T01:50:52.685Z", + "id": "relationship--8946df31-5b5e-4e50-ba7e-a41e211c1a1b", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.035Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f5ed69b9-4e24-4961-897d-31a0da319a78", - "modified": "2021-01-06T18:28:43.035Z", + "created": "2021-01-13T01:50:52.685Z", + "id": "relationship--a2d4fb0b-9c7e-4d89-976a-c975290e7538", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.036Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7810b1b1-5de9-4729-857f-c93727aa8397", - "modified": "2021-01-06T18:28:43.036Z", + "created": "2021-01-13T01:50:52.685Z", + "id": "relationship--6dbb0ca8-c44f-493e-ac04-b36e599388d7", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", + "target_ref": "attack-pattern--ac9e6b22-11bf-45d7-9181-c1cb08360931", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.037Z", - "description": "Vulnerability Scanning", - "id": "relationship--6e6727fd-0a30-40d2-87d3-cc21fed7056c", - "modified": "2021-01-06T18:28:43.037Z", + "created": "2021-01-13T01:50:52.685Z", + "id": "relationship--0a485737-8c34-4059-a4b8-408a7cf8a4e4", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--1cfcb312-b8d7-47a4-b560-4b16cc677292", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.038Z", - "description": "Vulnerability Scanning", - "id": "relationship--58224c03-11a4-4f29-a369-b6adf33a98f7", - "modified": "2021-01-06T18:28:43.038Z", + "created": "2021-01-13T01:50:52.685Z", + "id": "relationship--ba34acdd-4b63-4af8-aa4b-b5f5e307bf3a", + "modified": "2021-01-13T01:50:52.685Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--d0613359-5781-4fd2-b5be-c269270be1f6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.039Z", - "description": "System Monitoring, malware", - "id": "relationship--8b072edb-84a2-4c0f-a3b6-32320f1a87f4", - "modified": "2021-01-06T18:28:43.039Z", + "created": "2021-01-13T01:50:52.686Z", + "id": "relationship--9c5911c4-b8cf-4829-96a2-86e5efc0a9c5", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.039Z", - "description": "System Monitoring, malware", - "id": "relationship--fd3db84f-b20e-4e6b-9dd1-21cccb61bdd2", - "modified": "2021-01-06T18:28:43.039Z", + "created": "2021-01-13T01:50:52.686Z", + "id": "relationship--0605497b-9d63-4bd9-a4ce-5ea53bdfba97", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.040Z", - "description": "System Monitoring, malware", - "id": "relationship--1cfae21c-d8a6-4cca-91e6-40572050d5ec", - "modified": "2021-01-06T18:28:43.040Z", + "created": "2021-01-13T01:50:52.686Z", + "id": "relationship--4cff7d54-48cd-4527-847f-acc677f872d6", + "modified": "2021-01-13T01:50:52.686Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.040Z", - "description": "System Monitoring, malware", - "id": "relationship--65ea67e4-ac0e-4c57-9d71-5bc1ceaaa9fd", - "modified": "2021-01-06T18:28:43.040Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--643bb04b-16ee-4197-9769-c4db5d9feaef", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--82dbbdee-39be-4dc0-b780-a361430e6441", - "modified": "2021-01-06T18:28:43.041Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--06e601cf-ba4e-4ab2-8935-fac23b4439e2", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c962f2da-9019-40e8-ad42-b2b96feb14bb", - "modified": "2021-01-06T18:28:43.041Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--8774b106-c51e-405c-a74a-f51516354310", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--bd5e0c3a-db3a-43df-8588-197574a6a464", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.041Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--34c934bd-ee2c-4ec1-8332-1454ebb299fd", - "modified": "2021-01-06T18:28:43.041Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--7eca14b8-f16f-4528-b9b2-b24b6def0959", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--205adbae-197c-44a0-8dbb-2685b83db869", - "modified": "2021-01-06T18:28:43.042Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--2e24c8d0-a0db-4f18-9cc0-f70a0a82ab87", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--54262ee4-77ee-49fb-ac93-41b836c1e5a4", - "modified": "2021-01-06T18:28:43.042Z", + "created": "2021-01-13T01:50:52.687Z", + "id": "relationship--13f2e949-318e-46d3-86dc-c5101cef09ea", + "modified": "2021-01-13T01:50:52.687Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", + "source_ref": "course-of-action--7738d25b-d547-4a02-8262-921af5ca85ed", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.042Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--d86c84b8-c229-44b2-98a3-44c8620fb373", - "modified": "2021-01-06T18:28:43.042Z", + "created": "2021-01-13T01:50:52.689Z", + "id": "relationship--dbab608c-7870-4ea9-98c5-19ddcd5f2033", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.043Z", - "description": "Vulnerability Scanning", - "id": "relationship--0aa59769-8636-4479-9be0-81908a461d8c", - "modified": "2021-01-06T18:28:43.043Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.045Z", - "description": "System Monitoring", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.045Z", + "created": "2021-01-13T01:50:52.689Z", + "id": "relationship--ab2494b9-b9de-4990-bacd-6299cb105287", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--02610bdc-0440-44b4-82a6-fd4d7747bd30", - "modified": "2021-01-06T18:28:43.047Z", + "created": "2021-01-13T01:50:52.689Z", + "id": "relationship--f376757d-88e4-4362-9ef8-f2b46dd469a0", + "modified": "2021-01-13T01:50:52.689Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--3b0b770e-1e54-46e1-b9c5-645d70ffa6e5", - "modified": "2021-01-06T18:28:43.047Z", + "created": "2021-01-13T01:50:52.690Z", + "id": "relationship--61769047-f4be-43aa-aa68-1731f0576fa9", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.047Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--72add5e5-d08f-4270-bf64-9eceda8ad597", - "modified": "2021-01-06T18:28:43.047Z", + "created": "2021-01-13T01:50:52.690Z", + "id": "relationship--663006c1-774b-4719-90ab-70307e7d1df8", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--d03f20b5-b528-4867-9eff-c01b2c4f4963", - "modified": "2021-01-06T18:28:43.049Z", + "created": "2021-01-13T01:50:52.690Z", + "id": "relationship--c2e3c26b-f6e2-4729-b45b-cb1fbb34ca8f", + "modified": "2021-01-13T01:50:52.690Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--f376a72b-66e2-48e7-a6ca-c27df38608cd", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ce56406b-43dd-493a-9676-623ce4a799c0", - "modified": "2021-01-06T18:28:43.049Z", + "created": "2021-01-13T01:50:52.691Z", + "id": "relationship--17f7bb5a-08b7-453d-931d-0ffd98ddf081", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.049Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--22c88035-94e3-4472-bfbb-75c36fd3c533", - "modified": "2021-01-06T18:28:43.049Z", + "created": "2021-01-13T01:50:52.691Z", + "id": "relationship--69091c0a-20cd-45e8-9731-20e695694a64", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3c810962-3f5b-496d-9813-d044fa0875ff", - "modified": "2021-01-06T18:28:43.050Z", + "created": "2021-01-13T01:50:52.691Z", + "id": "relationship--eb860199-29af-46a0-a95b-ced7e7494f9b", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--943f1377-376e-4bd1-bcca-9f53b6c09f1f", - "modified": "2021-01-06T18:28:43.050Z", + "created": "2021-01-13T01:50:52.691Z", + "id": "relationship--b1ca1c6e-4197-475b-a68e-73f0b042e6f2", + "modified": "2021-01-13T01:50:52.691Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--0ad7bc5c-235a-4048-944b-3b286676cb74", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0e143146-f275-42a8-8d73-9b783baf4b0a", - "modified": "2021-01-06T18:28:43.050Z", + "created": "2021-01-13T01:50:52.692Z", + "id": "relationship--03524695-c3b6-4b82-ba83-2f74efa3701a", + "modified": "2021-01-13T01:50:52.692Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--52759bf1-fe12-4052-ace6-c5b0cf7dd7fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.050Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--65cc15eb-d9ef-4b6b-9330-085a923e45e4", - "modified": "2021-01-06T18:28:43.050Z", + "created": "2021-01-13T01:50:52.692Z", + "id": "relationship--0af3bfef-cc1b-4a51-a369-a9fd6f836f26", + "modified": "2021-01-13T01:50:52.692Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--e6440539-5ea3-494a-b7cd-9b0f8cc760e9", + "target_ref": "attack-pattern--ee7ff928-801c-4f34-8a99-3df965e581a5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--88d67e1c-a2c9-48fc-b4f1-2b9e85411c6a", - "modified": "2021-01-06T18:28:43.051Z", + "created": "2021-01-13T01:50:52.693Z", + "id": "relationship--41e2e799-4020-4b14-95bb-6885cef78e36", + "modified": "2021-01-13T01:50:52.693Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--ab995d58-298d-4043-87b8-6379b359dc2a", - "modified": "2021-01-06T18:28:43.051Z", + "created": "2021-01-13T01:50:52.694Z", + "id": "relationship--2d942da6-837d-4339-9b6b-0494e8f3f6fb", + "modified": "2021-01-13T01:50:52.694Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--8dad7373-4889-4734-aac7-fbcae98c4843", - "modified": "2021-01-06T18:28:43.051Z", + "created": "2021-01-13T01:50:52.695Z", + "id": "relationship--11bc4f0d-a8d7-4538-8650-2a9dbf0a5f3f", + "modified": "2021-01-13T01:50:52.695Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--0bce5245-6457-4969-9287-35dd966cac69", - "modified": "2021-01-06T18:28:43.051Z", + "created": "2021-01-13T01:50:52.696Z", + "id": "relationship--38062425-1dd5-47f1-8ad5-48a4a4041866", + "modified": "2021-01-13T01:50:52.696Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--613d08bc-e8f4-4791-80b0-c8b974340dfd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.051Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--feda0e27-c455-4e2a-b6a7-21e1d50ac1b6", - "modified": "2021-01-06T18:28:43.051Z", + "created": "2021-01-13T01:50:52.697Z", + "id": "relationship--a9223498-3983-4d42-8a6d-d087f8dcc236", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--a603745e-2f56-4847-bdba-dcfe2f21ad53", - "modified": "2021-01-06T18:28:43.052Z", + "created": "2021-01-13T01:50:52.697Z", + "id": "relationship--7b440b6a-f8c0-4971-b60a-2f71ec864a7f", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--078ab382-1809-4b7f-809c-a3e221030539", - "modified": "2021-01-06T18:28:43.052Z", + "created": "2021-01-13T01:50:52.697Z", + "id": "relationship--a1c47e51-c90b-4992-9700-be667705d596", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f25e0d44-1e42-43d8-b65d-cfe534379d41", - "modified": "2021-01-06T18:28:43.052Z", + "created": "2021-01-13T01:50:52.697Z", + "id": "relationship--7c4fedb8-42f7-45cc-b4d0-5d25bfd05058", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--c4702970-8cbf-4b30-a8b9-f89d4c664cf9", - "modified": "2021-01-06T18:28:43.052Z", + "created": "2021-01-13T01:50:52.697Z", + "id": "relationship--32bac8f5-2e56-4903-bbcd-fa8d4411b423", + "modified": "2021-01-13T01:50:52.697Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.052Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--931beed3-59aa-45db-bbaf-a0eefb8c2280", - "modified": "2021-01-06T18:28:43.052Z", + "created": "2021-01-13T01:50:52.698Z", + "id": "relationship--22a20df6-62f8-4c31-b61e-b2db2ab59ebd", + "modified": "2021-01-13T01:50:52.698Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--1057f0df-28cd-4fc2-91dc-b74f2d70bae9", - "modified": "2021-01-06T18:28:43.053Z", + "created": "2021-01-13T01:50:52.698Z", + "id": "relationship--3d810d76-2523-423c-8700-04ba4b8d53c5", + "modified": "2021-01-13T01:50:52.698Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--3158c0c5-d138-4c46-9d4d-8f9ce0c4990f", - "modified": "2021-01-06T18:28:43.053Z", + "created": "2021-01-13T01:50:52.699Z", + "id": "relationship--ebbe7bfb-d8be-4a0c-9332-2122972516d9", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--25ceface-51b5-481a-a887-73cafc946c71", - "modified": "2021-01-06T18:28:43.053Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "created": "2021-01-13T01:50:52.699Z", + "id": "relationship--6fc77504-40f0-41c4-93f0-a4a0f3fee358", + "modified": "2021-01-13T01:50:52.699Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--64cbf8af-f662-4bd1-addb-bb3e3da420d3", - "modified": "2021-01-06T18:28:43.053Z", + "created": "2021-01-13T01:50:52.699Z", + "id": "relationship--2b6a2bde-2fb8-4d0a-9fbc-36d3100f19f7", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.053Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--8de059d1-d260-40de-b9a2-5fd29277736b", - "modified": "2021-01-06T18:28:43.053Z", + "created": "2021-01-13T01:50:52.699Z", + "id": "relationship--51b51024-a53c-41cf-b667-ab297e7616ca", + "modified": "2021-01-13T01:50:52.699Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--fa287f3e-4c4e-45e7-aeca-c8c193892075", - "modified": "2021-01-06T18:28:43.054Z", + "created": "2021-01-13T01:50:52.700Z", + "id": "relationship--283ede6c-1d47-42c6-b711-ba6d71cde063", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f83ab457-21de-4382-8ab3-ee7947be42ee", - "modified": "2021-01-06T18:28:43.054Z", + "created": "2021-01-13T01:50:52.700Z", + "id": "relationship--6f7e7323-d4f0-48e7-9d29-bf52ed4031ae", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--67d12b51-a9f0-41ac-a7f8-0693d22b0779", - "modified": "2021-01-06T18:28:43.054Z", + "created": "2021-01-13T01:50:52.700Z", + "id": "relationship--206add57-83ee-4645-ac38-6dd55f2c51e9", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.054Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--72532510-6fa6-4f1f-b160-eff125a740a8", - "modified": "2021-01-06T18:28:43.054Z", + "created": "2021-01-13T01:50:52.700Z", + "id": "relationship--85323b0a-753d-49b3-ade7-c42285c98391", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.055Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--f23b767f-20d2-4507-9953-ed4acc1d7d22", - "modified": "2021-01-06T18:28:43.055Z", + "created": "2021-01-13T01:50:52.700Z", + "id": "relationship--5f6bd771-8d22-49c0-8287-a61bf1aec2d7", + "modified": "2021-01-13T01:50:52.700Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "target_ref": "attack-pattern--2db31dcd-54da-405d-acef-b9129b816ed6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.055Z", - "description": "Configuring system settings, Configuration Management, Application Control", - "id": "relationship--9e4e6c96-8447-4d64-b127-36ea4f8369a0", - "modified": "2021-01-06T18:28:43.055Z", + "created": "2021-01-13T01:50:52.701Z", + "id": "relationship--b467a281-4c2a-4bbb-822e-17c6775aa39a", + "modified": "2021-01-13T01:50:52.701Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", - "id": "relationship--69da9376-07ad-4144-8c25-f189ddfb67ae", - "modified": "2021-01-06T18:28:43.056Z", + "created": "2021-01-13T01:50:52.701Z", + "id": "relationship--b2c54ea8-ad9a-404e-9008-d0060340c263", + "modified": "2021-01-13T01:50:52.701Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--60d0c01d-e2bf-49dd-a453-f8a9c9fa6f65", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", - "id": "relationship--f1fcaefe-01a6-45c7-b100-378cbf6bcbe5", - "modified": "2021-01-06T18:28:43.056Z", + "created": "2021-01-13T01:50:52.702Z", + "id": "relationship--f4959335-5935-49cf-91ba-d19bb6b53492", + "modified": "2021-01-13T01:50:52.702Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", - "id": "relationship--e3809a56-ce8b-4d5a-b782-b0c2fe38e811", - "modified": "2021-01-06T18:28:43.056Z", + "created": "2021-01-13T01:50:52.703Z", + "id": "relationship--04234f16-7aaa-4e29-a7e8-16386aecc4e2", + "modified": "2021-01-13T01:50:52.703Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--e3a12395-188d-4051-9a16-ea8e14d07b88", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.056Z", - "description": "Vulnerability Scanning", - "id": "relationship--7d0d0bbe-dba3-4531-b70e-40ca5896a76f", - "modified": "2021-01-06T18:28:43.056Z", + "created": "2021-01-13T01:50:52.704Z", + "id": "relationship--93fcff2d-3b2a-4365-acd5-1ae875ae7d50", + "modified": "2021-01-13T01:50:52.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", - "id": "relationship--6f494880-569f-4cab-9121-870de10a7c3d", - "modified": "2021-01-06T18:28:43.057Z", + "created": "2021-01-13T01:50:52.704Z", + "id": "relationship--58031ac6-a709-4a44-9762-b4dde34bf75f", + "modified": "2021-01-13T01:50:52.704Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", - "id": "relationship--5d0cecdf-d403-4e60-a10e-679904799133", - "modified": "2021-01-06T18:28:43.057Z", + "created": "2021-01-13T01:50:52.705Z", + "id": "relationship--2de21be6-cb7f-4a7d-9494-89b74dafde05", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.057Z", - "description": "Vulnerability Scanning", - "id": "relationship--575075b4-1a4a-44fc-b3a1-1488e7d58b51", - "modified": "2021-01-06T18:28:43.057Z", + "created": "2021-01-13T01:50:52.705Z", + "id": "relationship--c8805abc-b6de-4c17-9da8-a28ee01471aa", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--59c6fc9d-b5c8-46b4-91e2-156a4c25e44d", - "modified": "2021-01-06T18:28:43.058Z", + "created": "2021-01-13T01:50:52.705Z", + "id": "relationship--964a9d89-59cf-4f02-b22f-fc6178eca32d", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--388a5478-1ca9-4efe-bb7f-6f429197b468", - "modified": "2021-01-06T18:28:43.058Z", + "created": "2021-01-13T01:50:52.705Z", + "id": "relationship--dc0371e4-823c-470e-b94f-53b9b65db23a", + "modified": "2021-01-13T01:50:52.705Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--9b2abe67-2b24-403d-be69-dcc9790c5a8b", - "modified": "2021-01-06T18:28:43.058Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--3778004a-635f-43e0-8ea0-9c6406db14b7", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--84d23c31-759b-4cab-be72-02444d7ad5bb", - "modified": "2021-01-06T18:28:43.058Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--d26c3537-b543-4cb7-9890-35f100323f83", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.058Z", - "description": "System Monitoring", - "id": "relationship--d3e770af-f34f-4e4c-a711-85556f7b8867", - "modified": "2021-01-06T18:28:43.058Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--de15cb03-3b17-4264-9139-7dfd96b147d9", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.059Z", - "description": "System Monitoring", - "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:43.059Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--849de4bf-cd76-490a-bb15-fb87a066d646", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.059Z", - "description": "System Monitoring", - "id": "relationship--ae3fcedc-1a59-4b6f-b278-431e75f1222a", - "modified": "2021-01-06T18:28:43.059Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--327dd8ab-b71d-44ce-9a57-6794a4529f0f", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.061Z", - "description": "Vulnerability Scanning", - "id": "relationship--c16e5dcc-379a-417f-a3dd-095114c682a9", - "modified": "2021-01-06T18:28:43.061Z", + "created": "2021-01-13T01:50:52.706Z", + "id": "relationship--60e9f7f2-550a-4169-98a4-43f2fcdc829a", + "modified": "2021-01-13T01:50:52.706Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.062Z", - "description": "System Monitoring, malware", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:43.062Z", + "created": "2021-01-13T01:50:52.707Z", + "id": "relationship--95ae76f2-4310-4a4e-8d7f-9d35e4c176d0", + "modified": "2021-01-13T01:50:52.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.062Z", - "description": "System Monitoring, malware", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:43.062Z", + "created": "2021-01-13T01:50:52.707Z", + "id": "relationship--5424b2e0-5965-41b3-a5ea-34b2041a0fcd", + "modified": "2021-01-13T01:50:52.707Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.063Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--2d4a4b5d-6e35-4495-9a48-f8bc39c22aad", - "modified": "2021-01-06T18:28:43.063Z", + "created": "2021-01-13T01:50:52.708Z", + "id": "relationship--fa3ecbfb-9eca-4133-a285-b972a29f784c", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.064Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--62958cc0-db57-4cc8-9679-cbedc107793b", - "modified": "2021-01-06T18:28:43.064Z", + "created": "2021-01-13T01:50:52.708Z", + "id": "relationship--b42920b5-1ee0-40c5-b15c-cd2eed73d558", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.064Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--fe3f8f27-e39b-4035-b57b-a417d3a3a278", - "modified": "2021-01-06T18:28:43.064Z", + "created": "2021-01-13T01:50:52.708Z", + "id": "relationship--9ffb0125-920f-4821-9af7-cf2af4cbbce8", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.065Z", - "description": "Vulnerability Scanning", - "id": "relationship--6159a1b4-0078-4c1e-aba5-b9a48729ded3", - "modified": "2021-01-06T18:28:43.065Z", + "created": "2021-01-13T01:50:52.708Z", + "id": "relationship--ac028c28-bb45-4d75-8969-0cf48b7113e4", + "modified": "2021-01-13T01:50:52.708Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.065Z", - "description": "Vulnerability Scanning", - "id": "relationship--cb6e4d52-a369-4e99-96e3-847648887f0c", - "modified": "2021-01-06T18:28:43.065Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--4d233343-ade8-401c-b143-1dbf3e2055a4", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", - "id": "relationship--016e6eac-1751-41b2-af53-731ab934a748", - "modified": "2021-01-06T18:28:43.066Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--6af5809f-f0cb-4a4d-a400-80083a0f6521", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", - "id": "relationship--bca08250-3f25-41a1-92f2-93387ea8bfc0", - "modified": "2021-01-06T18:28:43.066Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.066Z", - "description": "System Monitoring, malware", - "id": "relationship--5d03df53-8472-4ffb-aa41-616187fee5e5", - "modified": "2021-01-06T18:28:43.066Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--155dbb8e-cae5-4d5d-a304-edfaccd49878", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.067Z", - "description": "System Monitoring, malware", - "id": "relationship--eb2d50f2-c955-4acb-be3f-6433ffb1df3d", - "modified": "2021-01-06T18:28:43.067Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--4371adfa-df38-4603-9696-e57fed241678", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--36fb05ec-bcf8-4b8b-99b3-3a848a957ef0", - "modified": "2021-01-06T18:28:43.068Z", + "created": "2021-01-13T01:50:52.709Z", + "id": "relationship--b7d6c9b5-30cc-47ab-8250-abe6c18e3851", + "modified": "2021-01-13T01:50:52.709Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f960eaf6-8d0c-469d-9cec-eb05af04be56", - "modified": "2021-01-06T18:28:43.068Z", + "created": "2021-01-13T01:50:52.710Z", + "id": "relationship--5befe2d1-b9ce-40a1-8556-5e65be22263d", + "modified": "2021-01-13T01:50:52.710Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.068Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--6c0c3a63-4062-48fc-9f45-7471ce5b7295", - "modified": "2021-01-06T18:28:43.068Z", + "created": "2021-01-13T01:50:52.711Z", + "id": "relationship--ae2274b9-4ba9-4fb7-ae08-204fbb46bcf3", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--67f5386d-4721-4eaf-a9cc-f35e54bd62fc", - "modified": "2021-01-06T18:28:43.069Z", + "created": "2021-01-13T01:50:52.711Z", + "id": "relationship--51d36bf0-2ca0-491a-8474-330983a0f964", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--0f4a0c76-ab2d-4cb0-85d3-3f0efb8cba0d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--10decda9-ca58-47df-a5c0-6a79f1d35364", - "modified": "2021-01-06T18:28:43.069Z", + "created": "2021-01-13T01:50:52.711Z", + "id": "relationship--0f361745-aa21-43c0-be20-ed81a84f3751", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.069Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7042746a-5186-46ae-af51-ed1beb84c9ef", - "modified": "2021-01-06T18:28:43.069Z", + "created": "2021-01-13T01:50:52.711Z", + "id": "relationship--17fa5f3c-3a56-438d-bb37-d0024bedfdc1", + "modified": "2021-01-13T01:50:52.711Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", + "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.070Z", - "description": "Vulnerability Scanning", - "id": "relationship--90a6c81a-170b-487a-9f9e-fa9100713d13", - "modified": "2021-01-06T18:28:43.070Z", + "created": "2021-01-13T01:50:52.712Z", + "id": "relationship--72cb24e1-34d2-460d-8701-afc0671ada2d", + "modified": "2021-01-13T01:50:52.712Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.071Z", - "description": "System Monitoring, malware", - "id": "relationship--8cf595ad-cfc2-4e42-8d97-ca7dd91a9560", - "modified": "2021-01-06T18:28:43.071Z", + "created": "2021-01-13T01:50:52.713Z", + "id": "relationship--d4ae1542-47c5-4b79-8f7b-b35c4d31aab1", + "modified": "2021-01-13T01:50:52.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.071Z", - "description": "System Monitoring, malware", - "id": "relationship--caab116b-2943-42f7-adb5-9fbdd374b042", - "modified": "2021-01-06T18:28:43.071Z", + "created": "2021-01-13T01:50:52.713Z", + "id": "relationship--eaffc58c-9218-401c-8313-2df407a27b5b", + "modified": "2021-01-13T01:50:52.713Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7b4caa87-22e4-4a72-9547-691969a3cfe4", - "modified": "2021-01-06T18:28:43.072Z", + "created": "2021-01-13T01:50:52.714Z", + "id": "relationship--dea74d24-27aa-46bb-9719-e4f36a435378", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--db54294b-e768-49cd-9498-6d3acf496220", - "modified": "2021-01-06T18:28:43.072Z", + "created": "2021-01-13T01:50:52.714Z", + "id": "relationship--384f0000-f3b3-4f96-9d1d-d2fbf14b8ac0", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.072Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--800c8cc3-5a45-4765-9e72-3cbb38231bed", - "modified": "2021-01-06T18:28:43.072Z", + "created": "2021-01-13T01:50:52.714Z", + "id": "relationship--675bd3c9-3077-403a-81f6-2423bd88f1d5", + "modified": "2021-01-13T01:50:52.714Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--da12b5cc-b953-4d48-ab06-d856f8337947", - "modified": "2021-01-06T18:28:43.073Z", + "created": "2021-01-13T01:50:52.715Z", + "id": "relationship--a5923ee7-3e80-43a7-a0ed-69d12a0f14ea", + "modified": "2021-01-13T01:50:52.715Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--097ac5d0-091f-488f-b1a9-b2186fbdf6b2", - "modified": "2021-01-06T18:28:43.073Z", + "created": "2021-01-13T01:50:52.716Z", + "id": "relationship--809291a0-04f6-4231-b8b3-10cb3602f0e7", + "modified": "2021-01-13T01:50:52.716Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--eb010660-ab99-4b05-b6e4-3efea66ba8f6", - "modified": "2021-01-06T18:28:43.073Z", + "created": "2021-01-13T01:50:52.716Z", + "id": "relationship--1c69e293-581a-43ec-a63a-4efeaeb9a4a0", + "modified": "2021-01-13T01:50:52.716Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.073Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--dc39cff6-55c0-4f28-a961-ea26487d1a83", - "modified": "2021-01-06T18:28:43.073Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--23f7ef61-90d0-4c47-88e0-608f97f61bc2", - "modified": "2021-01-06T18:28:43.074Z", + "created": "2021-01-13T01:50:52.717Z", + "id": "relationship--714a46dd-aa66-4c19-bf61-833b1c341390", + "modified": "2021-01-13T01:50:52.717Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--64196062-5210-42c3-9a02-563a0d1797ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--7ce18e8c-7e2c-40ce-b187-045ee5714b03", - "modified": "2021-01-06T18:28:43.074Z", + "created": "2021-01-13T01:50:52.718Z", + "id": "relationship--76b37b71-c27d-4f05-ab4b-942bcff29385", + "modified": "2021-01-13T01:50:52.718Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5575338f-7f6f-40f6-932e-dbc25ab8a5eb", - "modified": "2021-01-06T18:28:43.074Z", + "created": "2021-01-13T01:50:52.718Z", + "id": "relationship--ddaf1484-0dab-446a-a144-77be72e0eccd", + "modified": "2021-01-13T01:50:52.718Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--5f9d3ce6-828f-49c2-8133-0b7820e0a87d", - "modified": "2021-01-06T18:28:43.074Z", + "created": "2021-01-13T01:50:52.719Z", + "id": "relationship--8577d457-5ff6-42a3-a65f-d21b2664e163", + "modified": "2021-01-13T01:50:52.719Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.074Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4fecd284-768d-4c3b-912c-16941048cb68", - "modified": "2021-01-06T18:28:43.074Z", + "created": "2021-01-13T01:50:52.720Z", + "id": "relationship--029296ec-516e-411b-87c5-dea7f7e6356a", + "modified": "2021-01-13T01:50:52.720Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "target_ref": "attack-pattern--6b57dc31-b814-4a03-8706-28bc20d739c4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", - "id": "relationship--7de06c20-50b5-4486-a73e-b5baa56d3879", - "modified": "2021-01-06T18:28:43.075Z", + "created": "2021-01-13T01:50:52.721Z", + "id": "relationship--44a59e1b-6856-4fd5-9c16-160f16cc4b11", + "modified": "2021-01-13T01:50:52.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", - "id": "relationship--14e67078-f21c-4f75-9647-4ffa7c6e2d8f", - "modified": "2021-01-06T18:28:43.075Z", + "created": "2021-01-13T01:50:52.721Z", + "id": "relationship--dbf09b17-8315-40d6-aeaf-05b9c5d87539", + "modified": "2021-01-13T01:50:52.721Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.075Z", - "description": "Vulnerability Scanning", - "id": "relationship--80a14dee-487e-47bb-bc03-f8111ab14616", - "modified": "2021-01-06T18:28:43.075Z", + "created": "2021-01-13T01:50:52.722Z", + "id": "relationship--8fea732b-9383-4c96-883e-d53fa8b97aa0", + "modified": "2021-01-13T01:50:52.722Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.077Z", - "description": "System Monitoring", - "id": "relationship--23e910db-df28-4956-a07e-b76c6e3398a1", - "modified": "2021-01-06T18:28:43.077Z", + "created": "2021-01-13T01:50:52.723Z", + "id": "relationship--49f23fff-349a-44c7-b4fb-7f6ddb03507b", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.077Z", - "description": "Vulnerability Scanning", - "id": "relationship--c7cab8d6-c9a1-4c53-b27e-ea1528ab135a", - "modified": "2021-01-06T18:28:43.077Z", + "created": "2021-01-13T01:50:52.723Z", + "id": "relationship--f311e4cd-2543-440d-8393-ead13bedbe17", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.078Z", - "description": "Vulnerability Scanning", - "id": "relationship--6ad43e6c-38e1-4f1f-80e5-283af6c7c608", - "modified": "2021-01-06T18:28:43.078Z", + "created": "2021-01-13T01:50:52.723Z", + "id": "relationship--3b5ed362-2f2b-42f9-a237-6378f7fba0f1", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--c92e3d68-2349-49e4-a341-7edca2deff96", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.078Z", - "description": "System Monitoring, malware", - "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:43.078Z", + "created": "2021-01-13T01:50:52.723Z", + "id": "relationship--6d6effa6-3dae-42f0-b8d2-7f1aff30dc15", + "modified": "2021-01-13T01:50:52.723Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--ff25900d-76d5-449b-a351-8824e62fc81b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.078Z", - "description": "System Monitoring, malware", - "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:43.078Z", + "created": "2021-01-13T01:50:52.725Z", + "id": "relationship--54134f02-2920-44e2-9e12-381c8269e50c", + "modified": "2021-01-13T01:50:52.725Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.079Z", - "description": "System Monitoring, malware", - "id": "relationship--44764853-5e29-4aff-835b-0730acdbaebe", - "modified": "2021-01-06T18:28:43.079Z", + "created": "2021-01-13T01:50:52.727Z", + "id": "relationship--5708481d-7335-47a7-862e-389ec3ebdabe", + "modified": "2021-01-13T01:50:52.727Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.079Z", - "description": "System Monitoring, malware", - "id": "relationship--70b661fd-2f33-4d5c-8b4c-b9ec244cfd6d", - "modified": "2021-01-06T18:28:43.079Z", + "created": "2021-01-13T01:50:52.727Z", + "id": "relationship--7810b1b1-5de9-4729-857f-c93727aa8397", + "modified": "2021-01-13T01:50:52.727Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.079Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:43.079Z", + "created": "2021-01-13T01:50:52.728Z", + "id": "relationship--6e6727fd-0a30-40d2-87d3-cc21fed7056c", + "modified": "2021-01-13T01:50:52.728Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:43.080Z", + "created": "2021-01-13T01:50:52.728Z", + "id": "relationship--58224c03-11a4-4f29-a369-b6adf33a98f7", + "modified": "2021-01-13T01:50:52.728Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.080Z", + "created": "2021-01-13T01:50:52.729Z", + "id": "relationship--8b072edb-84a2-4c0f-a3b6-32320f1a87f4", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.080Z", + "created": "2021-01-13T01:50:52.729Z", + "id": "relationship--fd3db84f-b20e-4e6b-9dd1-21cccb61bdd2", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--313be095-1e2e-4def-9649-3b5e2008c8c1", - "modified": "2021-01-06T18:28:43.080Z", + "created": "2021-01-13T01:50:52.729Z", + "id": "relationship--1cfae21c-d8a6-4cca-91e6-40572050d5ec", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.080Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f31914fc-fc91-4ffe-be3e-71e477ffd77c", - "modified": "2021-01-06T18:28:43.080Z", + "created": "2021-01-13T01:50:52.729Z", + "id": "relationship--65ea67e4-ac0e-4c57-9d71-5bc1ceaaa9fd", + "modified": "2021-01-13T01:50:52.729Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.081Z", - "description": "Vulnerability Scanning", - "id": "relationship--54a27eb4-a3e9-44f7-b19f-a8bdf8bb18ce", - "modified": "2021-01-06T18:28:43.081Z", + "created": "2021-01-13T01:50:52.730Z", + "id": "relationship--82dbbdee-39be-4dc0-b780-a361430e6441", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.081Z", - "description": "Vulnerability Scanning", - "id": "relationship--70b3f1c3-e451-48ac-bf21-b4b0c71bdcbc", - "modified": "2021-01-06T18:28:43.081Z", + "created": "2021-01-13T01:50:52.730Z", + "id": "relationship--c962f2da-9019-40e8-ad42-b2b96feb14bb", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.082Z", - "description": "Vulnerability Scanning", - "id": "relationship--d7070538-9078-4401-ae98-62285893c1f7", - "modified": "2021-01-06T18:28:43.082Z", + "created": "2021-01-13T01:50:52.730Z", + "id": "relationship--34c934bd-ee2c-4ec1-8332-1454ebb299fd", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.083Z", - "description": "System Monitoring", - "id": "relationship--acb3007d-8142-48f0-aeac-0594a07ac76c", - "modified": "2021-01-06T18:28:43.083Z", + "created": "2021-01-13T01:50:52.730Z", + "id": "relationship--205adbae-197c-44a0-8dbb-2685b83db869", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.083Z", - "description": "System Monitoring", - "id": "relationship--185adffe-6ba2-4273-a016-ea6a675194ae", - "modified": "2021-01-06T18:28:43.083Z", + "created": "2021-01-13T01:50:52.730Z", + "id": "relationship--54262ee4-77ee-49fb-ac93-41b836c1e5a4", + "modified": "2021-01-13T01:50:52.730Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.084Z", - "description": "System Monitoring", - "id": "relationship--be981616-8110-40f1-9c9a-23d50136f7fc", - "modified": "2021-01-06T18:28:43.084Z", + "created": "2021-01-13T01:50:52.731Z", + "id": "relationship--d86c84b8-c229-44b2-98a3-44c8620fb373", + "modified": "2021-01-13T01:50:52.731Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--79a47ad0-fc3b-4821-9f01-a026b1ddba21", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--35cb8d2c-530f-4b3a-8350-89c3d0eb3150", - "modified": "2021-01-06T18:28:43.085Z", + "created": "2021-01-13T01:50:52.733Z", + "id": "relationship--72add5e5-d08f-4270-bf64-9eceda8ad597", + "modified": "2021-01-13T01:50:52.733Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--0a39696e-9c6b-4e0e-9911-5dafb4ed1392", - "modified": "2021-01-06T18:28:43.085Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--8de059d1-d260-40de-b9a2-5fd29277736b", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--1b22a903-3dfa-4d2a-a9ff-df426501b3e4", - "modified": "2021-01-06T18:28:43.085Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--fa287f3e-4c4e-45e7-aeca-c8c193892075", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--f9414643-19bb-4bec-bfed-a097cb92bd66", - "modified": "2021-01-06T18:28:43.085Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--f83ab457-21de-4382-8ab3-ee7947be42ee", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.085Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--855aa393-8937-40d0-8125-bb523ca83eac", - "modified": "2021-01-06T18:28:43.085Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--67d12b51-a9f0-41ac-a7f8-0693d22b0779", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--b53142c9-60ad-4bbb-b35c-6fe2492ffc74", - "modified": "2021-01-06T18:28:43.086Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--72532510-6fa6-4f1f-b160-eff125a740a8", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4c7fa805-4786-429a-b851-6c28a62207e5", - "modified": "2021-01-06T18:28:43.086Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--f23b767f-20d2-4507-9953-ed4acc1d7d22", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--073431d3-060d-40a8-aba5-ebf0d241871b", - "modified": "2021-01-06T18:28:43.086Z", + "created": "2021-01-13T01:50:52.737Z", + "id": "relationship--9e4e6c96-8447-4d64-b127-36ea4f8369a0", + "modified": "2021-01-13T01:50:52.737Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.086Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--4f304051-c401-4094-b746-e681fe51b17c", - "modified": "2021-01-06T18:28:43.086Z", + "created": "2021-01-13T01:50:52.738Z", + "id": "relationship--69da9376-07ad-4144-8c25-f189ddfb67ae", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--4cbc6a62-9e34-4f94-8a19-5c1a11392a49", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--858e5832-d7a3-477a-891b-83b28fa5d78c", - "modified": "2021-01-06T18:28:43.087Z", + "created": "2021-01-13T01:50:52.738Z", + "id": "relationship--f1fcaefe-01a6-45c7-b100-378cbf6bcbe5", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--2cd950a6-16c4-404a-aa01-044322395107", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--a9c0d921-c112-4bae-98c8-d07ee52a12b7", - "modified": "2021-01-06T18:28:43.087Z", + "created": "2021-01-13T01:50:52.738Z", + "id": "relationship--e3809a56-ce8b-4d5a-b782-b0c2fe38e811", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--840a987a-99bd-4a80-a5c9-0cb2baa6cade", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--c5065cfe-dec5-4b86-acbc-0809fd8e8350", - "modified": "2021-01-06T18:28:43.087Z", + "created": "2021-01-13T01:50:52.738Z", + "id": "relationship--7d0d0bbe-dba3-4531-b70e-40ca5896a76f", + "modified": "2021-01-13T01:50:52.738Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--6e3bd510-6b33-41a4-af80-2d80f3ee0071", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.087Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--067a71e6-b3c5-40f5-be9d-a80aaa78c553", - "modified": "2021-01-06T18:28:43.087Z", + "created": "2021-01-13T01:50:52.739Z", + "id": "relationship--6f494880-569f-4cab-9121-870de10a7c3d", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--c48a67ee-b657-45c1-91bf-6cdbe27205f8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.088Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--cc4e2a10-0073-44be-bae9-d1bec31efea9", - "modified": "2021-01-06T18:28:43.088Z", + "created": "2021-01-13T01:50:52.739Z", + "id": "relationship--5d0cecdf-d403-4e60-a10e-679904799133", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.088Z", - "description": "Configuring system settings, Configuration Management", - "id": "relationship--47adf7b7-776d-49ab-99d0-50df5bffc051", - "modified": "2021-01-06T18:28:43.088Z", + "created": "2021-01-13T01:50:52.739Z", + "id": "relationship--575075b4-1a4a-44fc-b3a1-1488e7d58b51", + "modified": "2021-01-13T01:50:52.739Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--808e6329-ca91-4b87-ac2d-8eadc5f8f327", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "System Monitoring", - "id": "relationship--160991ff-1473-46aa-a528-4424683e7f07", - "modified": "2021-01-06T18:28:43.089Z", + "created": "2021-01-13T01:50:52.741Z", + "id": "relationship--c16e5dcc-379a-417f-a3dd-095114c682a9", + "modified": "2021-01-13T01:50:52.741Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "System Monitoring", - "id": "relationship--5e618f98-00d3-4051-ae47-4a1e821f1408", - "modified": "2021-01-06T18:28:43.089Z", + "created": "2021-01-13T01:50:52.744Z", + "id": "relationship--fe3f8f27-e39b-4035-b57b-a417d3a3a278", + "modified": "2021-01-13T01:50:52.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.089Z", - "description": "Protect and prevent credential access", - "id": "relationship--ab6a0bb7-5da0-4cfc-8c3b-270cbc0bcef1", - "modified": "2021-01-06T18:28:43.089Z", + "created": "2021-01-13T01:50:52.744Z", + "id": "relationship--6159a1b4-0078-4c1e-aba5-b9a48729ded3", + "modified": "2021-01-13T01:50:52.744Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", - "id": "relationship--3eb33f1b-fd14-4933-b4ef-f0f849c01472", - "modified": "2021-01-06T18:28:43.090Z", + "created": "2021-01-13T01:50:52.745Z", + "id": "relationship--cb6e4d52-a369-4e99-96e3-847648887f0c", + "modified": "2021-01-13T01:50:52.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", - "id": "relationship--f0467cfb-920f-4a67-a985-285f9d68a7a6", - "modified": "2021-01-06T18:28:43.090Z", + "created": "2021-01-13T01:50:52.745Z", + "id": "relationship--016e6eac-1751-41b2-af53-731ab934a748", + "modified": "2021-01-13T01:50:52.745Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.090Z", - "description": "Protect and prevent credential access", - "id": "relationship--a95a32ab-075f-41f8-82cb-d93a6a79eff4", - "modified": "2021-01-06T18:28:43.090Z", + "created": "2021-01-13T01:50:52.746Z", + "id": "relationship--bca08250-3f25-41a1-92f2-93387ea8bfc0", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.091Z", - "description": "System Monitoring", - "id": "relationship--ea6d0674-33e4-4b92-bcd0-09a825afd4c5", - "modified": "2021-01-06T18:28:43.091Z", + "created": "2021-01-13T01:50:52.746Z", + "id": "relationship--5d03df53-8472-4ffb-aa41-616187fee5e5", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.091Z", - "description": "System Monitoring", - "id": "relationship--8c1290fa-aff1-49bb-bd3d-8d308e1e9edb", - "modified": "2021-01-06T18:28:43.091Z", + "created": "2021-01-13T01:50:52.746Z", + "id": "relationship--eb2d50f2-c955-4acb-be3f-6433ffb1df3d", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--827ef2ee-a28c-4472-807e-af6c313721ed", - "modified": "2021-01-06T18:28:43.092Z", + "created": "2021-01-13T01:50:52.746Z", + "id": "relationship--36fb05ec-bcf8-4b8b-99b3-3a848a957ef0", + "modified": "2021-01-13T01:50:52.746Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--65dc0e6f-9e03-40c9-9b33-b39d8b0ec86d", - "modified": "2021-01-06T18:28:43.092Z", + "created": "2021-01-13T01:50:52.747Z", + "id": "relationship--f960eaf6-8d0c-469d-9cec-eb05af04be56", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--4417aeb7-b431-43e4-b275-b4a440aff913", - "modified": "2021-01-06T18:28:43.092Z", + "created": "2021-01-13T01:50:52.747Z", + "id": "relationship--6c0c3a63-4062-48fc-9f45-7471ce5b7295", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.092Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b9cf9f5d-bcc7-4edb-805d-1d30b8dc3ba3", - "modified": "2021-01-06T18:28:43.092Z", + "created": "2021-01-13T01:50:52.747Z", + "id": "relationship--67f5386d-4721-4eaf-a9cc-f35e54bd62fc", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0a3ead4e-6d47-4ccb-854c-a6a4f9d96b22", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.093Z", - "description": "System Monitoring", - "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:43.093Z", + "created": "2021-01-13T01:50:52.747Z", + "id": "relationship--10decda9-ca58-47df-a5c0-6a79f1d35364", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--9c45eaa3-8604-4780-8988-b5074dbb9ecd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.094Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--b3c8bf50-e0e9-4bfe-89e0-d4b4928cf98d", - "modified": "2021-01-06T18:28:43.094Z", + "created": "2021-01-13T01:50:52.747Z", + "id": "relationship--7042746a-5186-46ae-af51-ed1beb84c9ef", + "modified": "2021-01-13T01:50:52.747Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--ce4b7013-640e-48a9-b501-d0025a95f4bf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.094Z", - "description": "Configuring system settings, Group policy, Registry ", - "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:43.094Z", + "created": "2021-01-13T01:50:52.748Z", + "id": "relationship--90a6c81a-170b-487a-9f9e-fa9100713d13", + "modified": "2021-01-13T01:50:52.748Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--0514f359-02a7-4045-8fb6-2f34992c4e9f", - "modified": "2021-01-06T18:28:43.095Z", + "created": "2021-01-13T01:50:52.749Z", + "id": "relationship--8cf595ad-cfc2-4e42-8d97-ca7dd91a9560", + "modified": "2021-01-13T01:50:52.749Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--e55dacc5-36a1-462a-8bd5-036cf2a42927", - "modified": "2021-01-06T18:28:43.095Z", + "created": "2021-01-13T01:50:52.750Z", + "id": "relationship--800c8cc3-5a45-4765-9e72-3cbb38231bed", + "modified": "2021-01-13T01:50:52.750Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--e5cc9e7a-e61a-46a1-b869-55fb6eab058e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--d0408470-2a66-411e-ab3a-e591137a2d3e", - "modified": "2021-01-06T18:28:43.095Z", + "created": "2021-01-13T01:50:52.752Z", + "id": "relationship--5f9d3ce6-828f-49c2-8133-0b7820e0a87d", + "modified": "2021-01-13T01:50:52.752Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.095Z", - "description": "Protect and prevent credential access", - "id": "relationship--010c7b5e-ce7c-40c5-9dc5-6e15b30d438a", - "modified": "2021-01-06T18:28:43.095Z", + "created": "2021-01-13T01:50:52.753Z", + "id": "relationship--7de06c20-50b5-4486-a73e-b5baa56d3879", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.096Z", - "description": "Configuring system settings, Registry", - "id": "relationship--9e64a5ce-1872-49eb-a22e-985a1827e4e7", - "modified": "2021-01-06T18:28:43.096Z", + "created": "2021-01-13T01:50:52.753Z", + "id": "relationship--14e67078-f21c-4f75-9647-4ffa7c6e2d8f", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--650c784b-7504-4df7-ab2c-4ea882384d1e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.096Z", - "description": "Configuring system settings, Registry", - "id": "relationship--99ed142f-280d-4607-92bb-be7b527517ab", - "modified": "2021-01-06T18:28:43.096Z", + "created": "2021-01-13T01:50:52.753Z", + "id": "relationship--80a14dee-487e-47bb-bc03-f8111ab14616", + "modified": "2021-01-13T01:50:52.753Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.097Z", - "description": "Configuring system settings, Registry", - "id": "relationship--6fc0257b-c976-4605-b7cb-28d587adb11f", - "modified": "2021-01-06T18:28:43.097Z", + "created": "2021-01-13T01:50:52.755Z", + "id": "relationship--c7cab8d6-c9a1-4c53-b27e-ea1528ab135a", + "modified": "2021-01-13T01:50:52.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.097Z", - "description": "Configuring system settings, Registry", - "id": "relationship--920d6f59-dbe8-4b8b-9c9f-dd6c62ee9a72", - "modified": "2021-01-06T18:28:43.097Z", + "created": "2021-01-13T01:50:52.755Z", + "id": "relationship--6ad43e6c-38e1-4f1f-80e5-283af6c7c608", + "modified": "2021-01-13T01:50:52.755Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cca80565-b48d-446a-bedb-93a404cbc652", - "modified": "2021-01-06T18:28:43.098Z", + "created": "2021-01-13T01:50:52.757Z", + "id": "relationship--313be095-1e2e-4def-9649-3b5e2008c8c1", + "modified": "2021-01-13T01:50:52.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--419994d2-0536-4288-ad33-93d036a6a604", - "modified": "2021-01-06T18:28:43.098Z", + "created": "2021-01-13T01:50:52.757Z", + "id": "relationship--f31914fc-fc91-4ffe-be3e-71e477ffd77c", + "modified": "2021-01-13T01:50:52.757Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--3a9145f7-4b3f-414d-8b55-73ea8a17969e", - "modified": "2021-01-06T18:28:43.098Z", + "created": "2021-01-13T01:50:52.758Z", + "id": "relationship--54a27eb4-a3e9-44f7-b19f-a8bdf8bb18ce", + "modified": "2021-01-13T01:50:52.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--4ffc1794-ec3b-45be-9e52-42dbcb2af2de", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.098Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--4dd7f53b-b8c7-4f2f-bc7d-47dd47f43548", - "modified": "2021-01-06T18:28:43.098Z", + "created": "2021-01-13T01:50:52.758Z", + "id": "relationship--70b3f1c3-e451-48ac-bf21-b4b0c71bdcbc", + "modified": "2021-01-13T01:50:52.758Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b8017880-4b1e-42de-ad10-ae7ac6705166", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--300d9bc1-9d93-49f3-a07e-e30414472b84", - "modified": "2021-01-06T18:28:43.099Z", + "created": "2021-01-13T01:50:52.759Z", + "id": "relationship--d7070538-9078-4401-ae98-62285893c1f7", + "modified": "2021-01-13T01:50:52.759Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--75024096-567e-4ed0-ac8f-9f1b004167df", - "modified": "2021-01-06T18:28:43.099Z", + "created": "2021-01-13T01:50:52.760Z", + "id": "relationship--185adffe-6ba2-4273-a016-ea6a675194ae", + "modified": "2021-01-13T01:50:52.760Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.099Z", - "description": "Protect and prevent credential access", - "id": "relationship--44adfca2-8982-4170-8911-4cd0aa9a44b5", - "modified": "2021-01-06T18:28:43.099Z", + "created": "2021-01-13T01:50:52.761Z", + "id": "relationship--35cb8d2c-530f-4b3a-8350-89c3d0eb3150", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", - "id": "relationship--2d681256-1726-41dd-b535-a1c215b310c5", - "modified": "2021-01-06T18:28:43.100Z", + "created": "2021-01-13T01:50:52.761Z", + "id": "relationship--0a39696e-9c6b-4e0e-9911-5dafb4ed1392", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", - "id": "relationship--6f077e3b-7824-4c4c-91d7-59c6c0c24a20", - "modified": "2021-01-06T18:28:43.100Z", + "created": "2021-01-13T01:50:52.761Z", + "id": "relationship--4c7fa805-4786-429a-b851-6c28a62207e5", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--e0033c16-a07e-48aa-8204-7c3ca669998c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.100Z", - "description": "Protect and prevent credential access", - "id": "relationship--35b55a41-294a-4c62-8944-175290f36c2f", - "modified": "2021-01-06T18:28:43.100Z", + "created": "2021-01-13T01:50:52.761Z", + "id": "relationship--073431d3-060d-40a8-aba5-ebf0d241871b", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.101Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:43.101Z", + "created": "2021-01-13T01:50:52.761Z", + "id": "relationship--4f304051-c401-4094-b746-e681fe51b17c", + "modified": "2021-01-13T01:50:52.761Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--4d2a5b3e-340d-4600-9123-309dd63c9bf8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:43.102Z", + "created": "2021-01-13T01:50:52.762Z", + "id": "relationship--858e5832-d7a3-477a-891b-83b28fa5d78c", + "modified": "2021-01-13T01:50:52.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:43.102Z", + "created": "2021-01-13T01:50:52.762Z", + "id": "relationship--a9c0d921-c112-4bae-98c8-d07ee52a12b7", + "modified": "2021-01-13T01:50:52.762Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:43.102Z", + "created": "2021-01-13T01:50:52.763Z", + "id": "relationship--c5065cfe-dec5-4b86-acbc-0809fd8e8350", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:43.102Z", + "created": "2021-01-13T01:50:52.763Z", + "id": "relationship--067a71e6-b3c5-40f5-be9d-a80aaa78c553", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.102Z", - "description": "Configuring system settings, Registry", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:43.102Z", + "created": "2021-01-13T01:50:52.763Z", + "id": "relationship--cc4e2a10-0073-44be-bae9-d1bec31efea9", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.103Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:43.103Z", + "created": "2021-01-13T01:50:52.763Z", + "id": "relationship--47adf7b7-776d-49ab-99d0-50df5bffc051", + "modified": "2021-01-13T01:50:52.763Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", + "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.103Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:43.103Z", + "created": "2021-01-13T01:50:52.764Z", + "id": "relationship--160991ff-1473-46aa-a528-4424683e7f07", + "modified": "2021-01-13T01:50:52.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:43.104Z", + "created": "2021-01-13T01:50:52.764Z", + "id": "relationship--5e618f98-00d3-4051-ae47-4a1e821f1408", + "modified": "2021-01-13T01:50:52.764Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.104Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", + "target_ref": "attack-pattern--c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.104Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.104Z", + "created": "2021-01-13T01:50:52.765Z", + "id": "relationship--f0467cfb-920f-4a67-a985-285f9d68a7a6", + "modified": "2021-01-13T01:50:52.765Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--65f2d882-3f41-4d48-8a06-29af77ec9f90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.105Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:50:52.769Z", "id": "relationship--b3c8bf50-e0e9-4bfe-89e0-d4b4928cf98d", - "modified": "2021-01-06T18:28:43.105Z", + "modified": "2021-01-13T01:50:52.769Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.105Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--a4c12cf0-17b2-4b87-93a0-8a1794edd7ca", - "modified": "2021-01-06T18:28:43.105Z", + "created": "2021-01-13T01:50:52.774Z", + "id": "relationship--2d681256-1726-41dd-b535-a1c215b310c5", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.106Z", - "description": "Vulnerability Scanning", - "id": "relationship--de93250c-b059-4dda-b280-c78de5d2a8ec", - "modified": "2021-01-06T18:28:43.106Z", + "created": "2021-01-13T01:50:52.774Z", + "id": "relationship--6f077e3b-7824-4c4c-91d7-59c6c0c24a20", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.107Z", - "description": "System Monitoring, Malware", - "id": "relationship--b82d8878-9808-43df-afb5-94dec04b5259", - "modified": "2021-01-06T18:28:43.107Z", + "created": "2021-01-13T01:50:52.774Z", + "id": "relationship--35b55a41-294a-4c62-8944-175290f36c2f", + "modified": "2021-01-13T01:50:52.774Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", + "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.107Z", - "description": "System Monitoring, Malware", - "id": "relationship--38e90af0-76b6-46b8-b942-df4add35acab", - "modified": "2021-01-06T18:28:43.107Z", + "created": "2021-01-13T01:50:52.778Z", + "id": "relationship--de93250c-b059-4dda-b280-c78de5d2a8ec", + "modified": "2021-01-13T01:50:52.778Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f0589bc3-a6ae-425a-a3d5-5659bfee07f4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:50:52.780Z", "id": "relationship--573120db-1fc9-4cf1-986e-e72ba5e4df1e", - "modified": "2021-01-06T18:28:43.108Z", + "modified": "2021-01-13T01:50:52.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:43.108Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.108Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", + "created": "2021-01-13T01:50:52.780Z", "id": "relationship--9623b3a7-699c-48d0-9fa6-084f416a909f", - "modified": "2021-01-06T18:28:43.108Z", + "modified": "2021-01-13T01:50:52.780Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.109Z", - "description": "Configuration Management, Configuration Settings, Information System Component Inventories", - "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:43.109Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.110Z", - "description": "Vulnerability Scanning", + "created": "2021-01-13T01:50:52.781Z", "id": "relationship--e2d5805b-abde-460b-8d76-9bc9831ba50e", - "modified": "2021-01-06T18:28:43.110Z", + "modified": "2021-01-13T01:50:52.781Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.110Z", - "description": "Vulnerability Scanning", - "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:43.110Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:50:52.782Z", "id": "relationship--004a1612-47a2-4ea0-be61-1365621f7d82", - "modified": "2021-01-06T18:28:43.111Z", + "modified": "2021-01-13T01:50:52.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", - "id": "relationship--ed77f10c-f49c-4ba2-9bab-a3cc99302219", - "modified": "2021-01-06T18:28:43.111Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.111Z", - "description": "System Monitoring, Malware", + "created": "2021-01-13T01:50:52.782Z", "id": "relationship--8ef7e7ca-7e31-4d76-8605-e4ab490d38bc", - "modified": "2021-01-06T18:28:43.111Z", + "modified": "2021-01-13T01:50:52.782Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.112Z", - "description": "System Monitoring, Malware", - "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:43.112Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.113Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--17747313-65f2-46d0-ba9e-750d99d2aaf7", - "modified": "2021-01-06T18:28:43.113Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.113Z", - "id": "relationship--17445e9c-e502-4990-b310-6982242fedf9", - "modified": "2021-01-06T18:28:43.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.113Z", - "id": "relationship--598be6a7-f924-4a89-8f06-1fe83802ee96", - "modified": "2021-01-06T18:28:43.113Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--16934d3f-24c2-4679-a244-590115a13c6b", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", - "id": "relationship--5d6bbc1b-23e2-45d3-ad12-9d07955ccf55", - "modified": "2021-01-06T18:28:43.114Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", - "id": "relationship--6e6eb3c0-ad78-48e9-8a20-955968bab877", - "modified": "2021-01-06T18:28:43.114Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.784Z", "id": "relationship--6417483d-40a0-4174-9f65-a1bb10ec7491", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.784Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--5bfe4186-084f-46d5-ab27-c6f2c7450387", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.114Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--9a33d272-1f8b-4714-8a8f-2fe3e4b52e57", - "modified": "2021-01-06T18:28:43.114Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.115Z", + "created": "2021-01-13T01:50:52.785Z", "id": "relationship--fa2d0544-15f1-4392-a397-160ed68d01cc", - "modified": "2021-01-06T18:28:43.115Z", + "modified": "2021-01-13T01:50:52.785Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b4b7458f-81f2-4d38-84be-1c5ba0167a52", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.115Z", - "id": "relationship--4b0b4c66-a044-4b18-9034-285b0eaa44fb", - "modified": "2021-01-06T18:28:43.115Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--42e8de7b-37b2-4258-905a-6897815e58e0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.115Z", - "id": "relationship--ba374b5c-8533-4086-866b-f4a1fc54bad5", - "modified": "2021-01-06T18:28:43.115Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.116Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--fbe602fe-40fc-4468-9677-8b6387e9099d", - "modified": "2021-01-06T18:28:43.116Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.117Z", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.117Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.117Z", - "id": "relationship--5befe2d1-b9ce-40a1-8556-5e65be22263d", - "modified": "2021-01-06T18:28:43.117Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.117Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--cd281b71-6fdd-451d-a215-4aeecd665628", - "modified": "2021-01-06T18:28:43.117Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.118Z", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.118Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.118Z", - "id": "relationship--d89fcbb8-3881-453f-8d6c-f948ec47cc7c", - "modified": "2021-01-06T18:28:43.118Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.118Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--7e0a0b44-103a-444d-becf-d390bc0dd9a8", - "modified": "2021-01-06T18:28:43.118Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.118Z", + "created": "2021-01-13T01:50:52.786Z", "id": "relationship--486ba8a4-25b4-474d-ad62-77a92773470f", - "modified": "2021-01-06T18:28:43.118Z", + "modified": "2021-01-13T01:50:52.786Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.119Z", + "created": "2021-01-13T01:50:52.787Z", "id": "relationship--b0af7c0a-04ea-4f35-b105-c7a1baa57eb0", - "modified": "2021-01-06T18:28:43.119Z", + "modified": "2021-01-13T01:50:52.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.119Z", - "id": "relationship--1613bc51-18ed-416b-80db-aa7bef85feb8", - "modified": "2021-01-06T18:28:43.119Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.119Z", - "id": "relationship--e327b94b-7194-4ff9-a7c3-6d14d3ac8896", - "modified": "2021-01-06T18:28:43.119Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.120Z", + "created": "2021-01-13T01:50:52.787Z", "id": "relationship--4d034b9c-2ddb-4f44-bb90-5d30aad9bc59", - "modified": "2021-01-06T18:28:43.120Z", + "modified": "2021-01-13T01:50:52.787Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.121Z", + "created": "2021-01-13T01:50:52.788Z", "id": "relationship--de177dcc-647d-4f6e-a0c0-c7fad7f6aca1", - "modified": "2021-01-06T18:28:43.121Z", + "modified": "2021-01-13T01:50:52.788Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--37b11151-1776-4f8f-b328-30939fbf2ceb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--3fa756bd-1851-4f6b-b47f-605681e27061", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--3107fb50-3261-438f-bdc1-2736867fb4ba", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", + "created": "2021-01-13T01:50:52.789Z", "id": "relationship--658b22e5-f39f-45b9-a52d-e4da4642f0c1", - "modified": "2021-01-06T18:28:43.123Z", + "modified": "2021-01-13T01:50:52.789Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.123Z", - "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:43.123Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", - "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:43.124Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", - "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:43.124Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--943a6c6d-ef9f-404b-8caa-7620feee6aeb", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--3ce0dbe6-6bd0-41e4-ae76-104ca50e7341", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--3f977c0b-fb20-41a2-ac47-2112a098c0a1", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--2c5ca741-2c27-49b3-a526-ef836b074128", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.124Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--1558ddfc-ef72-4353-964b-b70baba83504", - "modified": "2021-01-06T18:28:43.124Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--39939054-3734-4de8-811e-5d5eed9634aa", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.790Z", "id": "relationship--4e3de08d-86c3-42d9-b1a6-9390becb63f5", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.790Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.791Z", "id": "relationship--4a08f564-53aa-4562-b5f0-7c668a63d98f", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.125Z", + "created": "2021-01-13T01:50:52.791Z", "id": "relationship--2f4a6966-e4c0-4959-93ba-cb49a4592008", - "modified": "2021-01-06T18:28:43.125Z", + "modified": "2021-01-13T01:50:52.791Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.126Z", + "created": "2021-01-13T01:50:52.792Z", "id": "relationship--db4382e2-06c0-4e8d-a567-b6b8dc83d11c", - "modified": "2021-01-06T18:28:43.126Z", + "modified": "2021-01-13T01:50:52.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.126Z", + "created": "2021-01-13T01:50:52.792Z", "id": "relationship--cad8c842-a761-4644-b577-6777106ac450", - "modified": "2021-01-06T18:28:43.126Z", + "modified": "2021-01-13T01:50:52.792Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.127Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--9ef22024-8765-43b9-8e2c-45ffdd1f143d", - "modified": "2021-01-06T18:28:43.127Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--e9c8dfaa-c489-4d94-a71a-41edff1158d4", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", - "id": "relationship--45743d32-1ccf-4b14-96da-5e2303fd13c9", - "modified": "2021-01-06T18:28:43.128Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--b37c4c3a-af36-4d3c-be47-fad6e67106af", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.793Z", "id": "relationship--df851f87-72e2-40b0-9031-600f427a98fd", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.793Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", - "id": "relationship--6c2423cd-88f0-41ea-8c22-665193d156d8", - "modified": "2021-01-06T18:28:43.128Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--2eca88db-2bca-4384-a61c-3cbc44671357", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--136a459d-d57f-4b6c-8a24-980150d53f96", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.128Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--fb5d6dc4-117a-470c-99e3-bb7dbcf1d493", - "modified": "2021-01-06T18:28:43.128Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.129Z", + "created": "2021-01-13T01:50:52.794Z", "id": "relationship--01f01f1a-5f4f-46ff-a2db-c231e27b1ee9", - "modified": "2021-01-06T18:28:43.129Z", + "modified": "2021-01-13T01:50:52.794Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b6301b64-ef57-4cce-bb0b-77026f14a8db", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.129Z", - "id": "relationship--582ed0a5-ec1d-4c8f-8fbf-d2af124d9d9f", - "modified": "2021-01-06T18:28:43.129Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.129Z", - "id": "relationship--082f3f53-7f13-4d5c-b0c5-f4d48e836dca", - "modified": "2021-01-06T18:28:43.129Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.130Z", + "created": "2021-01-13T01:50:52.795Z", "id": "relationship--fb5d8abf-dd78-49ee-b822-e7830d062826", - "modified": "2021-01-06T18:28:43.130Z", + "modified": "2021-01-13T01:50:52.795Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--667fdf6f-b683-44f7-96d7-23659bc123aa", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--65ab849a-f74b-4889-986e-a35cda103923", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.131Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--e2c5d1d7-1600-4902-ad9d-fef234ef0961", - "modified": "2021-01-06T18:28:43.131Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.796Z", "id": "relationship--36c2f637-d262-4bd3-81af-1e20d68d085d", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.796Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--b8029008-ce24-427a-af72-f1538e55eb5a", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--932ed216-e66f-4764-b329-6ec34dc8b192", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e23f6f72-0ec4-49c7-b71d-c1098a67b20e", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.132Z", + "created": "2021-01-13T01:50:52.797Z", "id": "relationship--98a7864f-9ae5-441e-ae6b-d0a7c871e744", - "modified": "2021-01-06T18:28:43.132Z", + "modified": "2021-01-13T01:50:52.797Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--960c3c86-1480-4d72-b4e0-8c242e84a5c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b5c278bd-d60b-4099-b0a3-e47acc01e874", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--77e265ba-cd25-4721-a771-14c127f8ddb6", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--b959cca6-1fe1-4e1c-bf85-4324f2e09c46", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.133Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--a9626e28-bc25-46b4-8d3c-bc7617dabcb5", - "modified": "2021-01-06T18:28:43.133Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--8bcc7ab0-62c5-42dd-a1a8-3646c5f1da04", - "modified": "2021-01-06T18:28:43.134Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", - "id": "relationship--48a8b41c-7bb7-454a-ab52-1c9834216730", - "modified": "2021-01-06T18:28:43.134Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--48e4673f-1492-4ffb-826b-f5eb3d4d03c6", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--690d94cc-b821-4e2c-a668-f4161c52a911", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.134Z", - "description": "Configuring system settings, Application Control", + "created": "2021-01-13T01:50:52.798Z", "id": "relationship--dd6dce52-c15d-410d-8543-6f0922a65833", - "modified": "2021-01-06T18:28:43.134Z", + "modified": "2021-01-13T01:50:52.798Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.135Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--873d6a85-80d3-4ff7-8e96-1fc8eb8ea4cd", - "modified": "2021-01-06T18:28:43.135Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.135Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--56098de5-79a6-438c-a699-c5a60bd5349d", - "modified": "2021-01-06T18:28:43.135Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.136Z", - "description": "Supply Chain Protection", + "created": "2021-01-13T01:50:52.799Z", "id": "relationship--71f93104-0371-46d4-806d-01c542ab1559", - "modified": "2021-01-06T18:28:43.136Z", + "modified": "2021-01-13T01:50:52.799Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bdadda53-f51b-4d95-83a4-8382dae8d4fa", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--fe2aa95e-fdcf-4423-9ca7-2df789d0d53e", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--eb548a7d-1b08-4033-aac8-34b5b728a2f0", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--cf7a00b2-ea00-4966-ba12-8be547c93209", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.137Z", - "description": "Information System Monitoring; Software, Firmware, and Information Integrity", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.137Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--0b007643-6b60-4f0f-827f-9c014b82ab3f", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--c66ec4ed-e020-4011-9bfa-1995de7b660e", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--5afb82b8-666e-41ed-95fc-9e08beff8dee", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.802Z", "id": "relationship--5f5c00d7-23f5-4b2c-af08-125e81a99570", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.802Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--a708b559-c7a6-46df-a6be-ab1975aadf3a", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.139Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--c4795a01-80cd-4fd4-b1a9-8eee8977fba5", - "modified": "2021-01-06T18:28:43.139Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--d9aa6f36-5092-4e93-8d3d-13490a80e6ad", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--706f2cf9-55e4-49b5-a520-bd6f2fc0f5eb", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--b547aeab-17b4-4e2b-bf25-5d32503a0210", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--b7a11e7d-a7ed-42c5-8d5c-c2e0952f4d7f", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.140Z", + "created": "2021-01-13T01:50:52.803Z", "id": "relationship--3cbcb34b-9973-4be6-aa75-14ad561f47df", - "modified": "2021-01-06T18:28:43.140Z", + "modified": "2021-01-13T01:50:52.803Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--39131305-9282-45e4-ac3b-591d2d4fc3ef", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.141Z", + "created": "2021-01-13T01:50:52.804Z", "id": "relationship--001d6438-2972-4513-8e46-852fb5cb421a", - "modified": "2021-01-06T18:28:43.141Z", + "modified": "2021-01-13T01:50:52.804Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--7a8762f1-c775-4f4e-8cda-14263cd9df17", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", - "id": "relationship--320d8581-f9f8-46be-91af-8fab1e6ca259", - "modified": "2021-01-06T18:28:43.142Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--5186ac08-2767-4fb2-bce9-5cb582cf2334", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--3f943f64-112e-44f2-950a-7ec2d15f4322", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--a67c6982-f134-4fc3-be09-0fdcc5eea84f", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--7a234194-a462-4770-8cee-52a773b024a8", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.142Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--24a30c3a-ed80-4437-8aaa-2eb51e763c51", - "modified": "2021-01-06T18:28:43.142Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.143Z", + "created": "2021-01-13T01:50:52.805Z", "id": "relationship--2acacc19-1edb-421a-a885-6871027a3097", - "modified": "2021-01-06T18:28:43.143Z", + "modified": "2021-01-13T01:50:52.805Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.143Z", + "created": "2021-01-13T01:50:52.806Z", "id": "relationship--b9c4fccd-ac2b-4904-9e87-781230047439", - "modified": "2021-01-06T18:28:43.143Z", + "modified": "2021-01-13T01:50:52.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.806Z", "id": "relationship--a849ffae-d58d-44fb-bb14-b49e5b984b83", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.806Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--efd9122c-b099-4159-af1f-284da1d3652f", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--35ff655a-d124-4f67-a9be-1c6d3bcacea1", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--6c7788fe-c948-4e14-9ffe-401403cdb17a", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--f8b0360b-17e7-44f5-bad4-0f5cd59b8f5f", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4c0ed0ef-d78f-4d44-85ca-d8ae44d90bc6", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.144Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4e2b72de-71f7-4343-a78c-f07f43d60b89", - "modified": "2021-01-06T18:28:43.144Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--7aac942d-d0b3-43a6-894c-fd39a8760fc3", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--4263046a-797b-49f9-b36c-3367a221a5b2", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", + "created": "2021-01-13T01:50:52.807Z", "id": "relationship--2785d294-288e-4682-b6c1-c6e46fd0329a", - "modified": "2021-01-06T18:28:43.145Z", + "modified": "2021-01-13T01:50:52.807Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--a8e3e951-ae0b-4255-86f6-ffb7155c89ef", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--c176da7e-12a0-4fb4-b9eb-3e60ea9c94b7", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--fa13c899-04cf-4234-b22a-3b5fa9d2bea5", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--adff285f-81f4-4092-805e-573d6815afe4", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.145Z", - "id": "relationship--8ce197f9-067c-4333-b134-ffa06a23fcc5", - "modified": "2021-01-06T18:28:43.145Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--ce29e63c-6994-4464-ae46-89e3552ccbed", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--50426f1e-7182-4290-8f7f-fc5e1dd36450", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--db19ca24-73db-4e1c-9ada-0868f740e382", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--b0e779c6-6862-4cb3-8a51-6442c7a643b7", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.808Z", "id": "relationship--7ae30d00-0b72-4d53-9241-074ab2efa761", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.808Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--b4c5ef0b-aa60-4f5a-bcc0-f6844c4af901", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--75e24444-0e93-41b2-984f-34ac2ba3a50a", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.146Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--5c7d9759-3592-4bf4-8388-cfa0061286ad", - "modified": "2021-01-06T18:28:43.146Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--7da289fb-45f1-4ab1-85c0-b319076df172", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.809Z", "id": "relationship--0a29d4c2-aa57-4c11-9514-18e9bd30e723", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.809Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--9f94b021-9844-46d6-9ded-337601e728d2", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--3f774284-3329-4b3e-9213-bf4592453131", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--3e7ba560-7cb4-4d40-afd4-3dcfe2ca78dd", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.147Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--309d1eca-0165-4c1f-9db4-d6d007226c08", - "modified": "2021-01-06T18:28:43.147Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--412fcb06-c65b-4b99-84e5-7918b0c6f24b", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--f82a3299-bb0b-45f7-803d-57687baead41", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--98517185-dfd2-4532-99e6-2113d3af3be8", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.810Z", "id": "relationship--1da75daa-6b94-40e3-a9bc-6a794cd002fd", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.810Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--17f56220-732e-4ae2-812c-6a6255db085a", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--d7161afc-d7e9-49b1-86d3-784b34d0e0d5", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--d0104806-7bf8-46c2-baf7-933a816a87d1", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.148Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--347b9741-0126-4010-9818-0082da15c81c", - "modified": "2021-01-06T18:28:43.148Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--a96482c9-f150-41f8-a803-7a76beeef110", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--991a1401-c269-48cb-acb9-5eaa2d66538c", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--e8839c17-a98e-43bc-b974-3ba4bb912854", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--8f8a075f-d4c3-42da-8312-6a07df7e241e", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.811Z", "id": "relationship--9041b58a-5128-4986-b4f2-d1b60bf1fbc0", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.811Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--bf4cf806-c39f-46d4-8151-202f2f986374", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.149Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--13ad4d9d-888c-4dce-83c3-ef7e801a4117", - "modified": "2021-01-06T18:28:43.149Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--5dba59b3-9b85-43ac-9f9a-733d374c1dca", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--7f6cdda7-34d2-4819-9b47-8546e65bcbd2", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--b761591c-c791-4eff-8028-ad35d68f5773", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--ee718414-25b2-4a12-9b37-b77765f628be", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--818dff85-9492-4ef0-a418-25d25bc2c815", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.150Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--d3359ade-8810-481c-b2be-3730965b0191", - "modified": "2021-01-06T18:28:43.150Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.812Z", "id": "relationship--76abf412-8bfe-496b-985d-6d9a67f48885", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.812Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1b7b1806-7746-41a1-a35d-e48dae25ddba", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.813Z", "id": "relationship--bdad1f23-1453-4c0e-ad5e-185e8c68c010", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:43.151Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.151Z", + "created": "2021-01-13T01:50:52.813Z", "id": "relationship--9779bfa9-9722-4bc9-bdc2-b282a0979836", - "modified": "2021-01-06T18:28:43.151Z", + "modified": "2021-01-13T01:50:52.813Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.151Z", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:43.151Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--f9ad1400-58b1-4b4d-88e7-0095a800f3ef", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--8b5977a6-8f82-450c-850c-8b562308a5a0", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.152Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--4ec4e15a-2867-4468-9984-8f9f670e3363", - "modified": "2021-01-06T18:28:43.152Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--4219f34a-cb96-4f9f-91da-a81854a431f8", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--55de4925-1f56-434e-a6b0-0894d747120e", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.814Z", "id": "relationship--53b12bbb-7e87-4418-8563-9f25ab36102b", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.814Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c946f210-1dca-4936-920e-e384204fa2a6", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--d71c31f1-e2b7-4348-8740-11162895485b", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--71513977-a794-4e92-841f-3b954f524406", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", - "id": "relationship--e1758bbf-3bfa-4f26-b3a5-4c0b7f03e085", - "modified": "2021-01-06T18:28:43.153Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.153Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--470d8d53-0d09-40b3-b54b-078c80262768", - "modified": "2021-01-06T18:28:43.153Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--890a0042-15d5-424f-9f71-c7105b636e1e", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--47d038d0-bd83-4e52-9215-93c2fc69aee9", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--963387aa-ca19-4ff1-8a48-2fe3d64a34c3", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--a1fb75e1-33be-405e-941e-6d471e82e714", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.815Z", "id": "relationship--50ad73a4-f8ab-4cd5-813f-e7d88f12f5a9", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.815Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e1a9abbc-9819-4d37-84b8-8006c8bcf29c", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--50617ade-8c03-468c-927e-aef71b3639ea", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--a3bc6a83-d291-467e-b207-b65386247239", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.154Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--2ae5cd2c-7a57-4fdb-8513-0373e2819083", - "modified": "2021-01-06T18:28:43.154Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--4c3d09b6-4d15-4c76-958e-c08d84d9ecf0", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--84861084-83d1-4b07-bf9e-e58a37f3721e", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--0bd2643f-18c5-4e21-a0a2-861d219ff948", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--4ee2e6cd-d4d0-4d52-85eb-6c81605d827a", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--6c24eecb-d937-494a-a89f-7ed7aa56d2d8", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.816Z", "id": "relationship--dd4c3bad-cc29-40ed-99e0-15aac796ebde", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.816Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e9548ba2-6b87-44f7-9e7e-a39f33ae30ef", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--c000dc6c-d35d-4a30-973c-3965b0934246", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.155Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--3bdcd1b8-7db1-4040-a293-b53471551d43", - "modified": "2021-01-06T18:28:43.155Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--162c5e52-2f9e-4a84-aa21-cde006de1776", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f76effe0-682f-4c3e-9e95-9383ff324b0b", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--928144a6-2aa3-47b2-95fb-4ed40affa199", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--13e806dd-c82c-49a2-8f68-3a6936f10ff5", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", + "created": "2021-01-13T01:50:52.817Z", "id": "relationship--8b44d04c-8747-4564-8b7d-392c0c391f52", - "modified": "2021-01-06T18:28:43.156Z", + "modified": "2021-01-13T01:50:52.817Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--f6cfb99b-753b-4b8e-bd21-6e32eeff3944", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--fc74ba38-dc98-461f-8611-b3dbf9978e3d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--15f9e894-6831-448d-a65e-c8f736930722", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--ae7f3575-0a5e-427e-991b-fe03ad44c754", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.156Z", - "id": "relationship--b76ab99e-5f87-4d71-98b2-a5df45ed51e0", - "modified": "2021-01-06T18:28:43.156Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--d245808a-7086-4310-984a-a84aaaa43f8f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--3f0a9a8b-0ce2-4859-834f-784b4c6771d9", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", + "created": "2021-01-13T01:50:52.819Z", "id": "relationship--c36b1855-b14f-42da-a072-1941aa1e69a2", - "modified": "2021-01-06T18:28:43.158Z", + "modified": "2021-01-13T01:50:52.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--100a6852-331d-477e-bed0-b94d1adf2da5", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--7fe4dce1-bdb3-45e8-878b-18f4bee22e31", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:43.158Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.158Z", + "created": "2021-01-13T01:50:52.819Z", "id": "relationship--54ecf193-9cf1-4758-9851-3835ddef262e", - "modified": "2021-01-06T18:28:43.158Z", + "modified": "2021-01-13T01:50:52.819Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--9991378b-d504-42a0-a610-d4c1f9b888b2", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--bf512f5f-2b1c-4a0d-af38-99592ee135cf", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", - "id": "relationship--22fa64aa-de2c-496f-a870-1876f5bb6857", - "modified": "2021-01-06T18:28:43.159Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--765768ab-1cfb-45e5-a571-ca7dec5dbf63", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--f423d363-fe4f-4677-bd8d-eb859da64203", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--c5135c51-36e4-4b87-b791-a0f385f9e680", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.159Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--19a552c8-16de-441a-a4c4-c114798f105b", - "modified": "2021-01-06T18:28:43.159Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.160Z", + "created": "2021-01-13T01:50:52.820Z", "id": "relationship--6377be32-2146-47b9-a1df-09622b85063c", - "modified": "2021-01-06T18:28:43.160Z", + "modified": "2021-01-13T01:50:52.820Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--7b440b6a-f8c0-4971-b60a-2f71ec864a7f", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--7c4fedb8-42f7-45cc-b4d0-5d25bfd05058", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--dbec1362-cc83-47a3-ac72-ffcc184199cf", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.160Z", - "id": "relationship--fa8c7859-932d-4683-9017-a35986d03aa3", - "modified": "2021-01-06T18:28:43.160Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--01327cde-66c4-4123-bf34-5f258d59457b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--1136c548-dedf-4b85-b457-d86cea7f775f", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--6a2b226d-03f3-43bb-821c-7f70625679e5", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--785126ce-4941-44cf-b29a-141030ab3904", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.161Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--b8b1b8e4-df84-48f3-b979-0f0ecfa71b92", - "modified": "2021-01-06T18:28:43.161Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.822Z", "id": "relationship--2d4d6e49-0387-40b6-857d-889f785b25ed", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.822Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--b615f6df-f607-4c58-addb-82ed4c4cc5d4", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--7652fcee-ea22-4a3b-ae30-c4a200b60db3", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--6636bc83-0611-45a6-b74f-1f3daf635b8e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--d0547b1e-4292-4bf7-9659-4dfb9517066e", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2acf44aa-542f-4366-b4eb-55ef5747759c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.162Z", + "created": "2021-01-13T01:50:52.823Z", "id": "relationship--63ca04a5-7d91-4ce5-ac71-a2080039cc9f", - "modified": "2021-01-06T18:28:43.162Z", + "modified": "2021-01-13T01:50:52.823Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8faedf87-dceb-4c35-b2a2-7286f59a3bc3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.163Z", - "id": "relationship--04f1f68d-7820-4742-928d-4717d3d1001a", - "modified": "2021-01-06T18:28:43.163Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--39618c0f-d788-4b1f-9ff4-676a8efc3507", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--a2b44e39-9bed-4714-9367-38f336cbe977", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--d15a17ec-f0e9-4f2b-af25-52638cdabe11", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--8bcaf31e-da55-4d0f-844f-fa20283d0b01", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", - "id": "relationship--51c37774-aa60-4da7-a10e-fe691132b3b7", - "modified": "2021-01-06T18:28:43.164Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.164Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--bc2277f4-daa5-4604-9ae6-b09b291b4e34", - "modified": "2021-01-06T18:28:43.164Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.164Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--f0b28abc-801a-473b-b0cc-ce46caa5cc05", - "modified": "2021-01-06T18:28:43.164Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--1ef088ef-e9d0-46f7-870c-8b44a1766d66", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--dd16b72f-4efb-4ac8-bca7-d7571b3c5c71", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--2b88524d-f456-45aa-abb6-00f589a604e5", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", + "created": "2021-01-13T01:50:52.825Z", "id": "relationship--141637c7-3f2c-4b10-82d7-9dd7b7c8ebee", - "modified": "2021-01-06T18:28:43.165Z", + "modified": "2021-01-13T01:50:52.825Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--39a7edbd-796d-46e4-8b45-37dd644d4118", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--7b9d3594-9a6a-4b0c-abbb-7ef047762fb1", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.165Z", - "id": "relationship--aa0bd352-91c3-42fe-a75e-68b0fed9be69", - "modified": "2021-01-06T18:28:43.165Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--7f875790-fd10-441a-8aef-16f6cdeb36b7", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--b4bb67e1-0f65-4a60-80fd-1d67dc91fa3a", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", - "id": "relationship--92cfeed7-fd33-43df-8227-6dd5168bbfb5", - "modified": "2021-01-06T18:28:43.166Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--c43ae380-8ec0-4911-a513-14d4e16d263c", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--d74463bd-5257-41f5-bfca-599a6ccb9594", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.166Z", + "created": "2021-01-13T01:50:52.826Z", "id": "relationship--c4e48495-bad0-4a66-a4ca-cb1e741f89b2", - "modified": "2021-01-06T18:28:43.166Z", + "modified": "2021-01-13T01:50:52.826Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--7ab9f100-999d-46dd-af21-39773bc7303e", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--e29d721d-9995-47ee-b7c1-5928d8551499", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", - "id": "relationship--d6a91f78-913a-4b70-bb75-258bf631dbaa", - "modified": "2021-01-06T18:28:43.167Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--323f09ec-3685-42db-8bfa-d94e4e5742e1", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--bba6ede7-9640-4646-870f-26afb694059d", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.167Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--86197c60-39c3-4ff8-be42-afbfa5ecf172", - "modified": "2021-01-06T18:28:43.167Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--c2d21892-7c3d-45dd-9420-39cbe34216a0", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.827Z", "id": "relationship--fb6b98e0-341f-4f70-9a1f-cd25f278934f", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.827Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", + "created": "2021-01-13T01:50:52.828Z", "id": "relationship--79b2783f-e0b4-48c6-817a-0527e592b883", - "modified": "2021-01-06T18:28:43.168Z", + "modified": "2021-01-13T01:50:52.828Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--1378efce-8244-40c2-b1ec-0a03533b56d6", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f3d95a1f-bba2-44ce-9af7-37866cd63fd0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--727b74f2-ed50-4bbb-8874-69fd83184800", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--005a06c6-14bf-4118-afa0-ebcd8aebb0c9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.168Z", - "id": "relationship--7f239029-7c32-4fb5-b4b6-2dc23a8ae729", - "modified": "2021-01-06T18:28:43.168Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--35dd844a-b219-4e2b-a6bb-efa9a75995a9", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", + "created": "2021-01-13T01:50:52.829Z", "id": "relationship--f20a8594-f705-4e36-8f3b-afe23b894370", - "modified": "2021-01-06T18:28:43.170Z", + "modified": "2021-01-13T01:50:52.829Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--7f3a8b6e-8acc-4eee-a1d5-51ad2a7e36e8", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--8a60034b-a13a-462a-be37-fdaccdfbf926", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--fa810fc6-a238-4363-895a-98b11b7ad47c", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--ae2274b9-4ba9-4fb7-ae08-204fbb46bcf3", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", + "created": "2021-01-13T01:50:52.830Z", "id": "relationship--fa1f32e2-8a6c-4358-b4e4-83f5900c131e", - "modified": "2021-01-06T18:28:43.170Z", + "modified": "2021-01-13T01:50:52.830Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--95ae76f2-4310-4a4e-8d7f-9d35e4c176d0", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.170Z", - "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.170Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--5de1283f-ee5a-4f78-a5a6-21b6a2df516a", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--5fd57278-97e4-45d0-af3f-280895379042", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", + "created": "2021-01-13T01:50:52.831Z", "id": "relationship--56160da9-7751-42c8-9fc7-499a875fa934", - "modified": "2021-01-06T18:28:43.172Z", + "modified": "2021-01-13T01:50:52.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.172Z", + "created": "2021-01-13T01:50:52.831Z", "id": "relationship--6438d44c-a947-4c5f-9c45-b8effcfd2152", - "modified": "2021-01-06T18:28:43.172Z", + "modified": "2021-01-13T01:50:52.831Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--26504ce2-f1dc-499e-a6e3-fc5341a8d381", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--1608f3e1-598a-42f4-a01a-2e252e81728f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.172Z", - "id": "relationship--94ba0e80-7323-4e3a-99ec-ac52d53ade22", - "modified": "2021-01-06T18:28:43.172Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", + "created": "2021-01-13T01:50:52.832Z", "id": "relationship--f3577cfd-96ca-499f-a02f-34e5d1050a86", - "modified": "2021-01-06T18:28:43.174Z", + "modified": "2021-01-13T01:50:52.832Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--b95af128-b164-4279-9941-d9e1890f3bfd", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", + "created": "2021-01-13T01:50:52.832Z", "id": "relationship--5de67f8a-7d7f-4b1c-935e-f122961bb3e4", - "modified": "2021-01-06T18:28:43.174Z", + "modified": "2021-01-13T01:50:52.832Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.174Z", + "created": "2021-01-13T01:50:52.833Z", "id": "relationship--bf726cf5-3ca2-48fb-b2cf-f6e7a2a75ce2", - "modified": "2021-01-06T18:28:43.174Z", + "modified": "2021-01-13T01:50:52.833Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--07a38715-2800-4559-8e6b-acb4ce038f98", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.174Z", - "id": "relationship--95e80603-ca55-459d-9909-c5615ba66525", - "modified": "2021-01-06T18:28:43.174Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--389735f1-f21c-4208-b8f0-f8031e7169b8", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--229573d1-7226-4fd3-a988-8e8d95720442", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--2977c8d1-22f8-4406-be59-b558ecc6072b", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--b6d52cc6-0397-4c14-9408-640365384f1e", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--74dc6f40-6d93-40e4-a6d3-f4b1e03732f0", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--57a44878-0813-4583-90b8-ff1eb7194fe7", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", - "id": "relationship--432bd911-350e-4e99-a55f-2211cb62608b", - "modified": "2021-01-06T18:28:43.176Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.176Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--afc87e21-3864-4725-b19f-d1d1d7db0050", - "modified": "2021-01-06T18:28:43.176Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--359ad002-fced-4d64-8809-da09e263b162", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--538abf12-241f-41ad-a23b-5ae186ff0ad8", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--8653c39c-4a4a-4588-917d-f5be9ab7ee6f", - "modified": "2021-01-06T18:28:43.177Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--40547ead-1d57-41a3-83c0-7ce082ce84d4", - "modified": "2021-01-06T18:28:43.177Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.177Z", - "id": "relationship--3e6a29b0-f0b5-4ab8-9554-eea0aa3ca3f3", - "modified": "2021-01-06T18:28:43.177Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--24595f4c-2a53-4e90-8f8e-e19a7dc1f539", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.835Z", "id": "relationship--fcaa5338-f149-48f3-96f9-9845b583b20f", - "modified": "2021-01-06T18:28:43.177Z", + "modified": "2021-01-13T01:50:52.835Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.177Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--50347863-1223-45cd-b570-9593f2e4c3de", - "modified": "2021-01-06T18:28:43.177Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--c5428385-879e-4ffd-bff6-bd506499c94a", - "modified": "2021-01-06T18:28:43.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--dd42798d-049a-402c-b186-5ebe9d2f5970", - "modified": "2021-01-06T18:28:43.178Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.178Z", - "id": "relationship--e2ee4219-6f79-4329-adde-0301d2faac05", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--c6fedd07-76e3-4cf5-82fd-ab9dbf3700c7", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--3bc63a3f-89fc-4392-b26e-de434ae9329b", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--de07b2e3-1234-4669-bd27-663fa13ea0fd", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--7e1e1885-d82a-4623-a618-9b85f8f780a5", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.178Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--6ae54c1b-347f-449f-8f5c-0c0ab12d05c7", - "modified": "2021-01-06T18:28:43.178Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.179Z", + "created": "2021-01-13T01:50:52.836Z", "id": "relationship--7a55e5ba-88be-4574-ae3e-f6eb1cff4167", - "modified": "2021-01-06T18:28:43.179Z", + "modified": "2021-01-13T01:50:52.836Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--f859bc3a-5811-4805-9e4d-12eb1a442e76", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7ad38ef1-381a-406d-872a-38b136eb5ecc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--4d0289b0-ce4d-4912-ad67-38b649b57ab5", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d28ef391-8ed4-45dc-bc4a-2f43abf54416", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.179Z", - "id": "relationship--fa7f8405-65ca-4e55-bb57-9186eb4d139c", - "modified": "2021-01-06T18:28:43.179Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0c4b4fda-9062-47da-98b9-ceae2dcf052a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--fa16489a-51fe-4ea6-a706-a191b6a20cbb", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--f1e651f0-fe30-4aaf-92f5-3c5f3cf8c538", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eae28954-438e-4936-b9e7-4863cfd456bb", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--aa903dde-81cd-4c19-9375-110060b44e14", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--5df4ec19-c331-4c6a-88ab-5a461fc5ba25", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.180Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--61edaa85-8488-4702-a839-7febb17a3dd6", - "modified": "2021-01-06T18:28:43.180Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--9a24af36-3658-4def-a360-677da5cef1d0", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.181Z", + "created": "2021-01-13T01:50:52.838Z", "id": "relationship--22f61a84-9a68-400e-bdbd-a576085b281e", - "modified": "2021-01-06T18:28:43.181Z", + "modified": "2021-01-13T01:50:52.838Z", "relationship_type": "mitigates", "source_ref": "course-of-action--eac08f4a-5c7f-4207-9e3a-aebe9b316524", "target_ref": "attack-pattern--767dbf9e-df3f-45cb-8998-4903ab5f80c0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--f649d5c3-4cab-4df7-b96f-9994907f6c34", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--d8165d3d-abad-49a0-aaa0-957b07a8cfc8", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--51cb5a46-053e-42aa-a94b-dc674f8c58ea", - "modified": "2021-01-06T18:28:43.182Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.182Z", - "id": "relationship--fc8f7147-a2ec-4bb9-9f61-6b137d2faacf", - "modified": "2021-01-06T18:28:43.182Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.182Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--cb0bca2f-d8b1-4ddf-ab48-881be66c1695", - "modified": "2021-01-06T18:28:43.182Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--5ed4b08c-e063-427e-b4ca-f21269e05cd8", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", - "id": "relationship--fdc35d57-8238-4d2f-b3fd-82315c77cead", - "modified": "2021-01-06T18:28:43.183Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--69f28117-2350-4461-a50d-c7f9bbf1e786", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.183Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--bc03a550-428c-4869-9721-5800c919a286", - "modified": "2021-01-06T18:28:43.183Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.184Z", + "created": "2021-01-13T01:50:52.840Z", "id": "relationship--10f0b0b3-6712-45c8-8621-cc3d50026d88", - "modified": "2021-01-06T18:28:43.184Z", + "modified": "2021-01-13T01:50:52.840Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.184Z", + "created": "2021-01-13T01:50:52.841Z", "id": "relationship--596e3ecc-2917-4cfc-9865-c0bfbdbf9254", - "modified": "2021-01-06T18:28:43.184Z", + "modified": "2021-01-13T01:50:52.841Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ebb42bbe-62d7-47d7-a55f-3b08b61d792d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--65be5812-4e3a-4dbe-99ed-7832cd7f8bb5", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--b4fc349b-d367-443a-832f-bb07fa24d7f5", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", + "created": "2021-01-13T01:50:52.842Z", "id": "relationship--19630ed3-b099-44f1-a62c-fdc99e173478", - "modified": "2021-01-06T18:28:43.185Z", + "modified": "2021-01-13T01:50:52.842Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.185Z", - "id": "relationship--3fa756bd-1851-4f6b-b47f-605681e27061", - "modified": "2021-01-06T18:28:43.185Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--3107fb50-3261-438f-bdc1-2736867fb4ba", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--658b22e5-f39f-45b9-a52d-e4da4642f0c1", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--57e98a75-549b-44d5-b384-795bbf70f71d", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--be7de50d-4138-40b1-bcd9-1a732f64e801", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", - "id": "relationship--753f5c08-c0f0-43e4-91d0-6989dc28bd74", - "modified": "2021-01-06T18:28:43.186Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.186Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--0c958f1f-925b-4064-9eaf-a9c1e463ccc9", - "modified": "2021-01-06T18:28:43.186Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.186Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--66f97730-8dec-424f-bc5b-aeaad1866a34", - "modified": "2021-01-06T18:28:43.186Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--bbd93e62-539e-4ae6-802d-4f9e19a552f4", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--d160f19a-629a-4af8-92f1-a61b7612cfac", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--43af6d9d-bbcb-4c97-ba48-e1e8daf83f51", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.843Z", "id": "relationship--691aacec-6771-4257-b511-6e122731391d", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.843Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--304da300-8fe7-48f8-ba39-e8e4cfa452ee", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--1bd19f3c-9eda-4eb7-8b0a-7849c22db320", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.187Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--9b8282ef-0372-477c-be1c-bfab5efaa9fa", - "modified": "2021-01-06T18:28:43.187Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--892250a1-a7a6-492b-9443-ee0c2fe5d432", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--e8b1cb7f-8d0d-41eb-8e98-99fb672d95ac", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--53373a0b-b45e-4f74-991c-5778a6131c12", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e20678b2-e0ec-4bd4-b93c-19c03ff741b0", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--6d6ea504-cfe4-48e9-b8f7-aea4f48bed91", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--6ad82dba-c28f-4864-a099-4fefcc20ca90", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.844Z", "id": "relationship--f6c5bc2e-6b97-49bb-94ad-604388a596f0", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.844Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--57531993-1df4-4a57-8ca4-1675062c586a", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.188Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--abbedf3f-cfe6-44f2-8381-30f7b2b75455", - "modified": "2021-01-06T18:28:43.188Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d456de47-a16f-4e46-8980-e67478a12dcb", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.189Z", + "created": "2021-01-13T01:50:52.845Z", "id": "relationship--d12d4be6-2ace-4eef-8418-eac51fb31293", - "modified": "2021-01-06T18:28:43.189Z", + "modified": "2021-01-13T01:50:52.845Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--e0426691-f462-43bc-9bb1-d3085fd5d8cd", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--c8c4b97a-58b1-4ba2-82a7-dc7fe1704158", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", - "id": "relationship--cc804eea-16a5-43df-953d-1f7859bd4530", - "modified": "2021-01-06T18:28:43.190Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--c5cfa292-1a73-4d0b-b4bf-216c7ef2071c", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.190Z", + "created": "2021-01-13T01:50:52.846Z", "id": "relationship--f30bb792-333f-492a-a6a0-29db66ce7833", - "modified": "2021-01-06T18:28:43.190Z", + "modified": "2021-01-13T01:50:52.846Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--f419b9d7-b581-406d-9bcc-b5f06b7cd00e", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--9f3c58a8-930e-49b7-94a4-a50be8a97d4a", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.191Z", + "created": "2021-01-13T01:50:52.847Z", "id": "relationship--ba037fc1-7e0f-4176-a5a3-d057079a45c7", - "modified": "2021-01-06T18:28:43.191Z", + "modified": "2021-01-13T01:50:52.847Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--1ed34ac9-60db-44a6-9be4-10ad4c1de69c", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--8f0ddea9-6d53-41c7-8957-c4ddc0d9deb5", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.192Z", + "created": "2021-01-13T01:50:52.848Z", "id": "relationship--e1e18ba8-7a5a-449e-88d1-44ee15ec8ad3", - "modified": "2021-01-06T18:28:43.192Z", + "modified": "2021-01-13T01:50:52.848Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.192Z", - "id": "relationship--1a1a3bc6-3450-43cf-a627-374ab03a799c", - "modified": "2021-01-06T18:28:43.192Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--bf971882-5547-481c-b740-85b91397f4fe", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--36760326-2f2f-4c29-9cff-81c3afce8fa2", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--b06fef8d-775c-4453-9e57-235bac0f9596", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--410438fa-db90-4702-a80c-0e8970ca0cec", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--efb413c2-ad11-48d4-a30c-bdfc4e4209ae", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", + "created": "2021-01-13T01:50:52.849Z", "id": "relationship--dbac4c7e-cd4c-432a-a2f2-e69df6561446", - "modified": "2021-01-06T18:28:43.193Z", + "modified": "2021-01-13T01:50:52.849Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.193Z", - "id": "relationship--29c9e42e-fb7c-4440-8148-b47f1eec21d9", - "modified": "2021-01-06T18:28:43.193Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.194Z", - "id": "relationship--aff3941a-cc9b-4deb-a29b-3d0c049d982f", - "modified": "2021-01-06T18:28:43.194Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--a4de8aa5-f201-4fe4-b3fc-fac758e13251", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", + "created": "2021-01-13T01:50:52.851Z", "id": "relationship--d312f8e3-6926-414e-ae30-badfaeb5dd39", - "modified": "2021-01-06T18:28:43.195Z", + "modified": "2021-01-13T01:50:52.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--0f5ef12d-27ee-4013-823c-9f9c54893fc9", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--95b2dadc-6ba2-4013-b82d-12869e2bbd38", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--18b1d5f0-bfb5-4df7-b166-1b1081a356a7", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", - "id": "relationship--a93de52e-25ad-48e1-b708-8f095cee26b3", - "modified": "2021-01-06T18:28:43.195Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.195Z", + "created": "2021-01-13T01:50:52.851Z", "id": "relationship--c0a78c7a-4364-4f3d-883e-8b5b515a64e1", - "modified": "2021-01-06T18:28:43.195Z", + "modified": "2021-01-13T01:50:52.851Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.196Z", + "created": "2021-01-13T01:50:52.852Z", "id": "relationship--78715081-ea46-46d0-8bd4-468c75c2c9e6", - "modified": "2021-01-06T18:28:43.196Z", + "modified": "2021-01-13T01:50:52.852Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.196Z", - "id": "relationship--81f5ec6c-078b-4177-8987-5a6a98228e90", - "modified": "2021-01-06T18:28:43.196Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3298ce88-1628-43b1-87d9-0b5336b193d7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", - "id": "relationship--35ff655a-d124-4f67-a9be-1c6d3bcacea1", - "modified": "2021-01-06T18:28:43.197Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", - "id": "relationship--f8b0360b-17e7-44f5-bad4-0f5cd59b8f5f", - "modified": "2021-01-06T18:28:43.197Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--bf6fb1ee-f0cf-4626-9e38-6db2d5393bbd", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--63c4d23e-3b2d-4203-aeb7-2e77dd452325", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--7b8572a8-e7d9-466c-ae3e-7e858eeed7d5", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.197Z", + "created": "2021-01-13T01:50:52.853Z", "id": "relationship--3db8bbfd-52f4-450f-8e6f-d980233def34", - "modified": "2021-01-06T18:28:43.197Z", + "modified": "2021-01-13T01:50:52.853Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--7a782905-6ef4-4854-b226-fa171eea5374", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--7c050810-531b-4d1a-ac50-9600e53d9114", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--0d7af7fd-7dcd-414c-9041-bab84ada5078", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a6557c75-798f-42e4-be70-ab4502e0a3bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.198Z", - "id": "relationship--a95f4311-7772-4c8f-873f-4bb56a655f16", - "modified": "2021-01-06T18:28:43.198Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--28abec6c-4443-4b03-8206-07f2e264a6b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--e9d2abae-3004-4a66-bf21-08dd2cc73379", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--f6f4ea16-b7ef-4feb-9f3e-ec1ae467399a", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--7f1b9d43-622b-4ae4-b44d-dd5575024dc7", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", - "id": "relationship--db7d2671-298d-40b4-a025-b6fc98d281a8", - "modified": "2021-01-06T18:28:43.200Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.200Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--a498c74a-3fce-4bda-8709-9690057336e7", - "modified": "2021-01-06T18:28:43.200Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.200Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--c210fa7f-f834-43c1-b95b-511219fd2f48", - "modified": "2021-01-06T18:28:43.200Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--92ca06a0-4355-4485-a405-ed3057cd823e", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--fd1bf041-5d9a-4dec-b62c-78355bf91867", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", - "id": "relationship--e211e52b-a2d5-496c-88c5-9fc6c368d2de", - "modified": "2021-01-06T18:28:43.201Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.856Z", "id": "relationship--6f4f6289-082a-425a-9b97-ae3284287166", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.856Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", - "id": "relationship--68732f78-9d7d-4fa2-a306-4cc51f30d9ff", - "modified": "2021-01-06T18:28:43.201Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--7eb8321a-62e4-4380-98a6-2ea14eefa3c9", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--e8d883ea-f56d-4c56-b819-777a7729dcfa", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.201Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--4bda8639-882e-4ed4-98b3-6fdd38a79818", - "modified": "2021-01-06T18:28:43.201Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--faccd1b9-0ac5-44ce-a18f-9af1d56b4f83", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--69a0f355-ff87-4694-a5eb-d3123aacb378", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--d804dc61-35b8-453c-adba-95cf74119cf4", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--99aad811-60e4-42b4-93fe-671f7c30437f", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.857Z", "id": "relationship--b03bad85-6591-4c7c-9fb2-0e2c853c7020", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.857Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", + "created": "2021-01-13T01:50:52.858Z", "id": "relationship--bc367467-c5d9-4c74-9ecc-224801441d6a", - "modified": "2021-01-06T18:28:43.202Z", + "modified": "2021-01-13T01:50:52.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.202Z", - "id": "relationship--d5a6a834-1eea-401f-91b6-573fdf8209d9", - "modified": "2021-01-06T18:28:43.202Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--106c0cf6-bf73-4601-9aa8-0945c2715ec5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.203Z", + "created": "2021-01-13T01:50:52.858Z", "id": "relationship--f3b0150b-be62-4811-8181-6a94898b7b5d", - "modified": "2021-01-06T18:28:43.203Z", + "modified": "2021-01-13T01:50:52.858Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--2959d63f-73fd-46a1-abd2-109d7dcede32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", - "id": "relationship--e9c8dfaa-c489-4d94-a71a-41edff1158d4", - "modified": "2021-01-06T18:28:43.204Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.204Z", - "id": "relationship--1be41b7e-9e66-4a4f-a8d9-791982fc49ec", - "modified": "2021-01-06T18:28:43.204Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--d945795b-3da1-48c3-a817-0b153c6fcdd0", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--946193c5-947d-4867-a985-92f1fa767b00", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.859Z", "id": "relationship--ee8e1507-79f0-4108-9de1-2c946e382280", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.859Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.204Z", + "created": "2021-01-13T01:50:52.860Z", "id": "relationship--3ab892d0-2d3b-4c8f-85e2-49ea364ac10f", - "modified": "2021-01-06T18:28:43.204Z", + "modified": "2021-01-13T01:50:52.860Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--10ff21b9-5a01-4268-a1b5-3b55015f1847", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.205Z", - "id": "relationship--e86fa4d9-1a7b-4950-b7e6-c020f846e444", - "modified": "2021-01-06T18:28:43.205Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--1ef5050e-834d-4a71-beb6-09e19f1e224d", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--7cbee1b2-147e-417f-ace4-aa74124134ba", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.861Z", "id": "relationship--99b366fb-5955-49fc-9936-9854542063f4", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.861Z", "id": "relationship--5b0e49fa-170f-4750-a7a8-4b593cca2f1e", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.861Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.206Z", - "id": "relationship--d11110ba-69d8-47ab-a152-55d93ee10262", - "modified": "2021-01-06T18:28:43.206Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.206Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--8a61d65f-f954-49ec-ae4f-a262141db654", - "modified": "2021-01-06T18:28:43.206Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--85920706-ff0a-4944-9883-88740b932d35", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--d5ef8b73-a512-4c0c-8d05-ba7bc8ec2452", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--9b36f12c-0354-4d8f-81f3-0494d0304119", - "modified": "2021-01-06T18:28:43.207Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.207Z", - "id": "relationship--fa9fec0d-6cec-42c9-ba3e-eb8db96720a0", - "modified": "2021-01-06T18:28:43.207Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.207Z", + "created": "2021-01-13T01:50:52.862Z", "id": "relationship--9b231937-78ec-4376-9403-db3cb343d38f", - "modified": "2021-01-06T18:28:43.207Z", + "modified": "2021-01-13T01:50:52.862Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.208Z", - "id": "relationship--02e7e0e3-b848-4b02-b113-263d3489a70e", - "modified": "2021-01-06T18:28:43.208Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--8dea927c-c374-4ec4-848f-b06cc166db57", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.864Z", "id": "relationship--1e368ce4-5ac1-4467-810d-3a3b1a48922a", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", + "created": "2021-01-13T01:50:52.864Z", "id": "relationship--f88f5123-3450-44c3-ba1d-2d3b5e293166", - "modified": "2021-01-06T18:28:43.209Z", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--665a6c15-a71e-4384-89b2-2bdf3c469205", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--6fcc2d8f-f576-4137-9e8a-913c816fb195", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--01c9b773-1ea0-44cf-b0ac-acd08a082305", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--d198e9ca-1ea1-4828-8a78-23ea41a024db", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.209Z", - "id": "relationship--03160d4f-cbd0-409d-b858-f8c89d05d81e", - "modified": "2021-01-06T18:28:43.209Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.210Z", - "id": "relationship--bf83a299-c025-47f2-a97a-fa98899f0087", - "modified": "2021-01-06T18:28:43.210Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.210Z", - "id": "relationship--619a7a24-cfe9-48de-8d84-66c410be3cd6", - "modified": "2021-01-06T18:28:43.210Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--f42767ae-68ba-41ed-a35c-0589262e1800", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--8f08fd61-06f7-4a69-a2de-dd77059011f2", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--0088290d-af21-4c8d-85ab-b4550608cfd4", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--1c5c2c5f-039d-407c-bc75-ecf30f745b6c", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.211Z", - "id": "relationship--17636354-9485-4c44-9167-04a881668580", - "modified": "2021-01-06T18:28:43.211Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--4de7b2c9-e07e-4db7-9873-76227ced39b0", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--6bb64de8-0701-4fad-9b90-fc6d5831a136", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--130fb8cb-f4de-4200-8f6b-8b51fe1cfe76", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--e377efa2-0364-48a4-8a0c-877c2939a357", - "modified": "2021-01-06T18:28:43.212Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--bf0d8d2a-5ec9-453f-90c4-00b43d2e516c", - "modified": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.864Z", + "id": "relationship--01c9b773-1ea0-44cf-b0ac-acd08a082305", + "modified": "2021-01-13T01:50:52.864Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", + "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--3a28aeda-f45b-4da7-860c-fef3329546dc", - "modified": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.865Z", + "id": "relationship--d198e9ca-1ea1-4828-8a78-23ea41a024db", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", + "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--ad2b62fb-f6a5-4b6a-b226-66be2cadcd46", - "modified": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.865Z", + "id": "relationship--03160d4f-cbd0-409d-b858-f8c89d05d81e", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.212Z", - "id": "relationship--dff50b82-d385-4f0d-8120-172bcde1e07e", - "modified": "2021-01-06T18:28:43.212Z", + "created": "2021-01-13T01:50:52.865Z", + "id": "relationship--bf83a299-c025-47f2-a97a-fa98899f0087", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", + "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--37417c8a-08eb-4b24-91a6-9d52ba3f3f2b", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.865Z", + "id": "relationship--619a7a24-cfe9-48de-8d84-66c410be3cd6", + "modified": "2021-01-13T01:50:52.865Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", + "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", + "target_ref": "attack-pattern--51a14c76-dd3b-440b-9c20-2bf91d25a814", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--63baf76a-02e6-4d73-826b-b6b55f2e309a", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.867Z", + "id": "relationship--17636354-9485-4c44-9167-04a881668580", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--2832ae66-3641-4c1b-90dd-c07a67ac6481", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.867Z", + "id": "relationship--4de7b2c9-e07e-4db7-9873-76227ced39b0", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--255adae6-4658-4747-b6bc-a5ca6c2b32df", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.867Z", + "id": "relationship--6bb64de8-0701-4fad-9b90-fc6d5831a136", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--db7d4dfa-57c6-43f9-b0f5-d55a59fdfa5f", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.867Z", + "id": "relationship--130fb8cb-f4de-4200-8f6b-8b51fe1cfe76", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", - "id": "relationship--9f42292e-becd-4cb7-9740-9e044c956202", - "modified": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.867Z", + "id": "relationship--e377efa2-0364-48a4-8a0c-877c2939a357", + "modified": "2021-01-13T01:50:52.867Z", "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", + "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.868Z", + "id": "relationship--ad2b62fb-f6a5-4b6a-b226-66be2cadcd46", + "modified": "2021-01-13T01:50:52.868Z", + "relationship_type": "mitigates", + "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", + "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "relationship" + }, + { + "created": "2021-01-13T01:50:52.868Z", "id": "relationship--92b276c4-69c8-4fa9-b44d-766434204cfd", - "modified": "2021-01-06T18:28:43.213Z", + "modified": "2021-01-13T01:50:52.868Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.213Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--3292261a-c4bd-41fc-9b64-9d797c29c1ec", - "modified": "2021-01-06T18:28:43.213Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--52c8fa90-e50e-43d3-9c07-c864d4806bfe", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--919da082-0b49-4bfa-b303-c76fd3d1c1b6", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--1cdd1d54-8954-4314-a17d-54da02b38d6c", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--fa248d25-b911-4320-82ad-c63e36d86582", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--3bd00c69-cc87-4027-966a-732b20ec0a21", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--892f97c9-81f5-459b-8765-947b4154ab6d", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.214Z", + "created": "2021-01-13T01:50:52.869Z", "id": "relationship--a5c0ed42-0317-4d60-9086-8532022fd6f4", - "modified": "2021-01-06T18:28:43.214Z", + "modified": "2021-01-13T01:50:52.869Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--33305e0f-15f8-47ba-9b00-49bcc41b6d4e", - "modified": "2021-01-06T18:28:43.215Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--1f212481-ff39-4679-9ff6-196f8452e389", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--1121fa47-48ce-4257-b47b-fabdfeb9ef28", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--fdecfaf9-578c-4cb6-9b71-d4ffcf37e59a", - "modified": "2021-01-06T18:28:43.215Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--7f50fe87-47e8-4cf8-8600-022edcdb40e3", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--e8648f11-6b2b-4a17-bf46-e936aaef89a6", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--fdc54afa-e59e-4681-aebe-1269830fd020", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.215Z", - "id": "relationship--e0fee1df-04e0-4dc8-8d25-993f9269b00b", - "modified": "2021-01-06T18:28:43.215Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--341e222a-a6e3-4f6f-b69c-831d792b1580", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.216Z", + "created": "2021-01-13T01:50:52.870Z", "id": "relationship--7e35e318-e566-4736-a3e8-ef0bf291bc1a", - "modified": "2021-01-06T18:28:43.216Z", + "modified": "2021-01-13T01:50:52.870Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.216Z", - "id": "relationship--6635d306-0746-4c28-a95e-2835ca67fbc3", - "modified": "2021-01-06T18:28:43.216Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--60b508a1-6a5e-46b1-821a-9f7b78752abf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.216Z", - "id": "relationship--f2ee55f2-13a3-49b5-9972-2f15029c04f5", - "modified": "2021-01-06T18:28:43.216Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.217Z", - "id": "relationship--e3dc7c14-1e62-4c19-b0a7-c48072655610", - "modified": "2021-01-06T18:28:43.217Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.217Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--a78aa792-e3a9-49cc-9b1a-f1c5ce251ba7", - "modified": "2021-01-06T18:28:43.217Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.217Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--80220d1e-eafe-40f5-9385-f175c00cb929", - "modified": "2021-01-06T18:28:43.217Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", - "id": "relationship--3e209640-bd2f-4e0a-a33e-a351d1e439c6", - "modified": "2021-01-06T18:28:43.218Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e7e2fb84-92ed-4ea3-a07f-0e820896892a", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--07157080-2d64-4685-8e7e-7e80b4bd20d8", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--df97cc84-95cf-4c1a-b755-0d196da78f29", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5b6f8dae-8774-43a7-90d9-7c089d84a249", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", + "created": "2021-01-13T01:50:52.872Z", "id": "relationship--c34bd583-646b-4e12-8040-7d99a77ca3e1", - "modified": "2021-01-06T18:28:43.218Z", + "modified": "2021-01-13T01:50:52.872Z", "relationship_type": "mitigates", "source_ref": "course-of-action--543ddaf6-06db-48f1-9331-29699f856e7e", "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.218Z", - "id": "relationship--e4d12c01-09df-4ada-a077-40d57ca010f4", - "modified": "2021-01-06T18:28:43.218Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3986e7fd-a8e9-4ecb-bfc6-55920855912b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.219Z", + "created": "2021-01-13T01:50:52.873Z", "id": "relationship--9880a00a-628e-4c19-9062-87adeea8d57d", - "modified": "2021-01-06T18:28:43.219Z", + "modified": "2021-01-13T01:50:52.873Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--78fa1fab-a254-4981-860d-c7b68beab199", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--7683551a-3cb3-4035-b3ab-68a35cc70e10", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--78fadf84-7c79-4293-9ef0-6a4bb0f66c71", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--9b3a58cb-d7a3-4f8b-bf8f-0e50ea3e2254", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--a1e93c64-e612-4583-b7a8-731e29ef981e", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--0db523cb-d6fb-46b0-aab1-82138a3f2e88", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--a98ddffc-6f97-4b99-8617-edb5d7226919", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.220Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--5489d95a-1bdb-491d-83a7-7fb8a3d4463c", - "modified": "2021-01-06T18:28:43.220Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.221Z", + "created": "2021-01-13T01:50:52.874Z", "id": "relationship--74c2710a-66bd-4d8e-bf87-8e0ccc82a950", - "modified": "2021-01-06T18:28:43.221Z", + "modified": "2021-01-13T01:50:52.874Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--00f90846-cbd1-4fc5-9233-df5c2bf2a662", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--d07e76f6-35c8-442b-9a76-8a3853fd720c", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--1cd88d83-c89f-40fa-9433-564dbeb4b4e0", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--33944dfc-42ce-4faa-9822-756d718d4f56", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", - "id": "relationship--e951935f-b9a8-4f11-9de7-04574cb8ad92", - "modified": "2021-01-06T18:28:43.222Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--53181246-e009-4bbc-acde-0c7451a5ceba", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.222Z", + "created": "2021-01-13T01:50:52.876Z", "id": "relationship--b1b46518-ca98-49bb-a309-df541ffb7d0c", - "modified": "2021-01-06T18:28:43.222Z", + "modified": "2021-01-13T01:50:52.876Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.223Z", - "id": "relationship--9be306f0-b40f-414c-8de6-458702c10f0f", - "modified": "2021-01-06T18:28:43.223Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--a84e554e-1262-4572-be4a-1d576dc0d58c", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--342eaf31-6372-49a7-bc71-e3bff6ab4df8", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--8d6c17ab-fe2f-425b-b854-5c7b15dc4475", - "modified": "2021-01-06T18:28:43.224Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.224Z", - "id": "relationship--78b74b83-a7c7-459f-8afe-556480a64896", - "modified": "2021-01-06T18:28:43.224Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.224Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--da4d8e2b-c621-4bb0-853c-7788f92984c9", - "modified": "2021-01-06T18:28:43.224Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.225Z", + "created": "2021-01-13T01:50:52.878Z", "id": "relationship--6e13eb2c-bb71-4067-bc5a-f4b85f8051b3", - "modified": "2021-01-06T18:28:43.225Z", + "modified": "2021-01-13T01:50:52.878Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.225Z", - "id": "relationship--70b3f1c3-e451-48ac-bf21-b4b0c71bdcbc", - "modified": "2021-01-06T18:28:43.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.225Z", - "id": "relationship--185adffe-6ba2-4273-a016-ea6a675194ae", - "modified": "2021-01-06T18:28:43.225Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--0042c8e0-144f-4925-b9ea-11d2eda07e9e", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--b4b6aeee-e146-48dd-9bfd-486fe9d5ef2c", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.226Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--64df4585-cdd2-45f5-ba25-c9250932f330", - "modified": "2021-01-06T18:28:43.226Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--3fcae9fb-a594-4d90-b03e-66f846a0cd77", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--f02053c2-1603-4072-bc31-e474027dc136", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--677dd62b-50c7-46b7-a9ae-1cf0016459e4", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--f39c0f9d-a61e-4846-9767-ff39659753db", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", + "created": "2021-01-13T01:50:52.880Z", "id": "relationship--5e309e61-9448-47b6-a815-88367954f7ca", - "modified": "2021-01-06T18:28:43.227Z", + "modified": "2021-01-13T01:50:52.880Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.227Z", - "id": "relationship--573120db-1fc9-4cf1-986e-e72ba5e4df1e", - "modified": "2021-01-06T18:28:43.227Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.227Z", - "id": "relationship--dff4d6a4-174c-45c0-93a5-0baf828e8630", - "modified": "2021-01-06T18:28:43.227Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--e6ee2e79-92b0-40d1-aef8-61cd7bb016a9", - "modified": "2021-01-06T18:28:43.228Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--06c1e3d3-f6eb-4466-89ad-56ab1765adfe", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--60f73db9-ff96-4af7-be1e-fe42e76d1c6c", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--24308bb8-fa9b-4dc3-9851-ccb6bd498fe4", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--7a8d942f-c6fa-4bab-a9ad-faca4b22f9b2", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.228Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--54c8d65b-afcb-49af-80d1-4771e41a8e23", - "modified": "2021-01-06T18:28:43.228Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.228Z", - "id": "relationship--9623b3a7-699c-48d0-9fa6-084f416a909f", - "modified": "2021-01-06T18:28:43.228Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--7b782b8e-13b6-4795-bdcf-5f239212c816", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", + "created": "2021-01-13T01:50:52.881Z", "id": "relationship--17e86d1f-eedc-4003-9185-34f5d6b52e19", - "modified": "2021-01-06T18:28:43.229Z", + "modified": "2021-01-13T01:50:52.881Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--49a5aa02-7bd2-4b82-9353-a75187b60cdc", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--43f1889a-8025-4156-9083-9d2eb51bd833", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.229Z", - "id": "relationship--9a45776b-544d-45e9-9a12-6de91953bad4", - "modified": "2021-01-06T18:28:43.229Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--efe17a93-9e63-4578-9fbf-c8dfc165687c", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", + "created": "2021-01-13T01:50:52.882Z", "id": "relationship--72d0282b-4262-4f07-94ff-9eee8fbe4d40", - "modified": "2021-01-06T18:28:43.230Z", + "modified": "2021-01-13T01:50:52.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--e2d5805b-abde-460b-8d76-9bc9831ba50e", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", - "id": "relationship--f053ae47-5436-47cf-b56c-b1d000a28940", - "modified": "2021-01-06T18:28:43.230Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.230Z", + "created": "2021-01-13T01:50:52.882Z", "id": "relationship--955c2f5a-943a-40c5-a824-3198e6df77ae", - "modified": "2021-01-06T18:28:43.230Z", + "modified": "2021-01-13T01:50:52.882Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--e8cddee8-c8ee-44ce-887d-e23b0034df43", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--3556c095-33ff-4411-b913-c5dae06ca5c1", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--dd748a24-1f3d-4974-86eb-2d137cf69c5a", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.231Z", - "id": "relationship--9afcabd0-59e9-4978-9677-3429891cbcea", - "modified": "2021-01-06T18:28:43.231Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", + "created": "2021-01-13T01:50:52.883Z", "id": "relationship--cd022aba-adb5-4d82-b41a-9e2cd381ce15", - "modified": "2021-01-06T18:28:43.232Z", + "modified": "2021-01-13T01:50:52.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.232Z", - "id": "relationship--8ef7e7ca-7e31-4d76-8605-e4ab490d38bc", - "modified": "2021-01-06T18:28:43.232Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--2fee9321-3e71-4cf4-af24-d4d40d355b34", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", - "id": "relationship--9d4c0eae-bfa9-49f6-a734-820a8594d71b", - "modified": "2021-01-06T18:28:43.232Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.232Z", + "created": "2021-01-13T01:50:52.883Z", "id": "relationship--5e96067b-0488-4107-8ab0-a51cc4f765ad", - "modified": "2021-01-06T18:28:43.232Z", + "modified": "2021-01-13T01:50:52.883Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--10ea531d-19f8-4336-8df9-7b824cc71cc1", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--b954d500-cfd1-46b5-bae3-7c4c9695b0c9", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--0c2d00da-7742-49e7-9928-4514e5075d32", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--20dc8172-e055-4118-bbcf-e16db1faef02", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--58af3705-8740-4c68-9329-ec015a7013c2", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.233Z", - "id": "relationship--33d19ae2-946c-4f3a-b1b3-f9e9f5960c24", - "modified": "2021-01-06T18:28:43.233Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--bf96a5a3-3bce-43b7-8597-88545984c07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.234Z", + "created": "2021-01-13T01:50:52.884Z", "id": "relationship--42f1dce3-8f91-47ab-9a66-87ff2b656baa", - "modified": "2021-01-06T18:28:43.234Z", + "modified": "2021-01-13T01:50:52.884Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.235Z", - "id": "relationship--59bb170b-ac30-41c6-a96d-9a8b483d7334", - "modified": "2021-01-06T18:28:43.235Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--5a73e757-e951-4269-9f35-0bb6f5361b0a", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--7e5e57c6-7eb6-4dc2-aeb8-fbae798ccbfd", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--a5329576-ea4b-4435-9fe1-04f42fb06f5c", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--c6d8d3d0-1c0b-4b04-9b6f-2d3915c604b6", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--72ae01ac-9079-4a46-b5bc-e0a2c8100380", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--99709171-a6c6-4a0a-bd87-ae334b0a87c6", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.236Z", - "id": "relationship--6ec8417a-6142-4814-af0a-6afb14b6eb74", - "modified": "2021-01-06T18:28:43.236Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--230d1974-1dce-4940-91ca-d24c7dc9f1a0", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--66ffb502-547c-4765-97d2-3d9fec73e3d8", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.886Z", "id": "relationship--7a159cc0-5796-46dc-a1a3-cbeaf1465bd3", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.886Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--184a0a0b-fd8f-45e0-b787-049d02f5027e", - "modified": "2021-01-06T18:28:43.237Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--13309c3d-9c90-45ef-97eb-af1c87207a85", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--85349f0d-ad08-43ed-800d-854c8b84468c", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--c7a962b9-0c1d-48d3-a60d-6623b2076a85", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--867cc3d2-75d5-4443-8d0d-85fcc10bd108", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.237Z", - "id": "relationship--30523245-ac13-4ca8-bec5-106789f0d712", - "modified": "2021-01-06T18:28:43.237Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--59ae72dd-02ed-433e-9a13-5eeeec3f1003", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--d22827ac-de19-441e-9693-7058994b3210", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--87d77613-ea8f-4820-9cc9-44d0b9072dc6", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.887Z", "id": "relationship--2b9e0f24-4503-4f81-a7bf-6a03c8a7630e", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.887Z", "relationship_type": "mitigates", "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--e35f3a5c-c9a5-4c7d-9f7b-54c7248a83a0", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.238Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--a0039c37-4dd6-4684-be58-bce111457b2a", - "modified": "2021-01-06T18:28:43.238Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--1b5a08ab-4bda-4267-b6f3-515b4c4ecd39", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--f820f6d6-35e3-4d7b-96a4-d51c9df5769a", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3e7ceb25-46b9-4827-abb3-bc152d611af1", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--ef0c3bbf-9ce5-4db0-81d9-96bec1816508", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--ef34e4bb-582c-484a-9132-15ef6d4818d8", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.888Z", "id": "relationship--eb6d519a-7665-4ef9-aa90-fd58a82c0f4b", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.888Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--22fd9121-403b-4c0a-9ec7-7cd2105797f5", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--41e6a1b6-ae12-461f-9b82-39af2d542222", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cf1c2504-433f-4c4e-a1f8-91de45a0318c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.239Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--595283af-99ff-47e8-8aa1-e75a47e54954", - "modified": "2021-01-06T18:28:43.239Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--ed2e45f9-d338-4eb2-8ce5-3a2e03323bc1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.240Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--0c96f925-06b3-49a1-a47e-1ead7ce497d0", - "modified": "2021-01-06T18:28:43.240Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--70857657-bd0b-4695-ad3e-b13f92cac1b4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.240Z", + "created": "2021-01-13T01:50:52.889Z", "id": "relationship--f4c4fd20-0445-4a96-809e-5ad9567b0482", - "modified": "2021-01-06T18:28:43.240Z", + "modified": "2021-01-13T01:50:52.889Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--144e007b-e638-431d-a894-45d90c54ab90", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.241Z", - "id": "relationship--bcaf4ef9-82fd-4cac-9f90-bd18090ca6a0", - "modified": "2021-01-06T18:28:43.241Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--e9669724-a0cb-4b52-89ec-3f49357070f7", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--ebbe7bfb-d8be-4a0c-9332-2122972516d9", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--183ef7cb-8e75-451b-9e14-4833dcb3ecfe", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--4a8a71d6-de94-4e00-a40f-796250dc3e30", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.242Z", - "id": "relationship--1e8d1caf-6d0d-48f1-bfa0-bb4d2feb713f", - "modified": "2021-01-06T18:28:43.242Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--34ca3f0d-479b-432a-b01b-643d20267381", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.242Z", + "created": "2021-01-13T01:50:52.891Z", "id": "relationship--6db398c2-2cf2-4f9b-8560-36fc15eae491", - "modified": "2021-01-06T18:28:43.242Z", + "modified": "2021-01-13T01:50:52.891Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--68a0c5ed-bee2-4513-830d-5b0d650139bd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.892Z", "id": "relationship--c2072bff-ddb2-4774-88f4-27461d62bfa2", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.892Z", "id": "relationship--df69504c-c9f6-4ce1-9423-13cd576ac3a7", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.892Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--2b974437-7b4a-4e8b-9ac5-e28ceb07a459", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.244Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--270d263a-813f-45d4-94ea-0e2444d77ef4", - "modified": "2021-01-06T18:28:43.244Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--6c1333c2-26d8-4b30-bd4c-3ca9964f1199", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--b82a8522-f937-4ef2-8a38-91a1dd74fe08", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--e6af9786-b773-4b85-ac49-2c2ecf9423f0", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--6795f350-6bcf-435c-b802-9037ed71c410", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--c9947cbb-41ef-41b8-973d-de43596a60ca", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.893Z", "id": "relationship--5c01eb88-1f69-4986-9f25-5a44baaf4c59", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.893Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.894Z", "id": "relationship--4772c166-5ce6-4824-81c2-62ecece78691", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.894Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.245Z", + "created": "2021-01-13T01:50:52.894Z", "id": "relationship--afb0c94e-3ec9-4d5d-abb0-fb9a05674c13", - "modified": "2021-01-06T18:28:43.245Z", + "modified": "2021-01-13T01:50:52.894Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.246Z", - "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:43.246Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--44e64d80-33d2-4be4-85ed-303cce9ffc3c", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--5deba688-96fa-4bde-8001-fb7e230c1207", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--ea6c1a53-0e5d-4d6f-a507-3fc5572b3ea2", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.247Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--2f8a6272-f66a-488c-8113-9af44f6b119a", - "modified": "2021-01-06T18:28:43.247Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.895Z", "id": "relationship--22797600-cfbf-4b47-b627-37f88d379d63", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.895Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--3575ea4b-b0fe-4651-88c1-f29341219ebc", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", - "id": "relationship--872a7b4f-9ed5-4871-a149-1d7fd43a7d6d", - "modified": "2021-01-06T18:28:43.248Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--771f8cb6-89bc-4c0e-9c45-eae8d1ee0c3d", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--4c8334e7-0334-499a-bb1e-19744c7c81a6", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.248Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--54d6a61b-8003-44d2-a725-fc36d3112390", - "modified": "2021-01-06T18:28:43.248Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.249Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--ba3b587f-1886-4b40-8dea-3d547f242b61", - "modified": "2021-01-06T18:28:43.249Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.249Z", + "created": "2021-01-13T01:50:52.896Z", "id": "relationship--d5f0590c-8239-4b95-bfe2-7f51567ab8fb", - "modified": "2021-01-06T18:28:43.249Z", + "modified": "2021-01-13T01:50:52.896Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.251Z", - "id": "relationship--8129495d-0bee-40cc-a4e1-7ee309b360ed", - "modified": "2021-01-06T18:28:43.251Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.252Z", - "id": "relationship--e6b7e8c2-6744-4fcb-bbab-dab88c078f02", - "modified": "2021-01-06T18:28:43.252Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.252Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--6d48bdee-7311-43b5-bd34-4e68505a0cbe", - "modified": "2021-01-06T18:28:43.252Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.252Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--e49f76ef-9813-46a9-b6ec-0e5e45402bbb", - "modified": "2021-01-06T18:28:43.252Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--edb2d980-fd40-4a26-a12f-29d5cec570ee", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.253Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--1fe3d585-9fb1-4059-a41d-ef1f6dfa12b9", - "modified": "2021-01-06T18:28:43.253Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.253Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--950b1685-52e6-45ec-b5b3-72a927752382", - "modified": "2021-01-06T18:28:43.253Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", - "id": "relationship--bdfe3541-7a60-440f-a36a-4529b1bad999", - "modified": "2021-01-06T18:28:43.254Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--11f461a5-45cf-4791-aaf3-8478ebcf04ce", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--559327e7-99e1-4bd1-b829-5c6e09741015", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.254Z", + "created": "2021-01-13T01:50:52.898Z", "id": "relationship--f3a6278e-f715-4156-9108-58b4707d6b06", - "modified": "2021-01-06T18:28:43.254Z", + "modified": "2021-01-13T01:50:52.898Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--2b1fa6db-28c1-454e-86f5-1de7c7e8b870", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--c2c0f41c-ce1b-42c7-b092-0bb941f56dfc", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--20102fa2-d6be-45b3-a413-07827fd06faa", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.255Z", + "created": "2021-01-13T01:50:52.899Z", "id": "relationship--50a9a917-df48-4a1c-b845-985bfb404d1c", - "modified": "2021-01-06T18:28:43.255Z", + "modified": "2021-01-13T01:50:52.899Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--2533800d-8869-418e-937d-e632ea4f2697", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--1c64d78c-8993-4f5d-8e81-692346708941", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.257Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--c5159d19-65ef-44a3-b6a1-a62360d7c4df", - "modified": "2021-01-06T18:28:43.257Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--e45a59c1-c4c0-44fe-bbbb-fd817ae34ca9", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--fbfd1d4f-d699-49ad-84b7-4c38f78ed9e1", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--993d06cc-b071-4be4-87a0-125f0f76e06e", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--146a7ca8-bf78-4873-aa7e-bae10593250a", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.900Z", "id": "relationship--a01bd734-2f9e-49c1-ade8-cded1fad8f2a", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.900Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.258Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--941d8b0e-299f-41c4-bd3c-cb5a03ebb647", - "modified": "2021-01-06T18:28:43.258Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--91c34275-1049-4084-9e35-6d59e3489bc7", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--fe762152-3b4f-49c2-94b4-a53b421ba69c", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.259Z", + "created": "2021-01-13T01:50:52.901Z", "id": "relationship--456c74a9-5919-43bd-99b2-d13ec0652cc9", - "modified": "2021-01-06T18:28:43.259Z", + "modified": "2021-01-13T01:50:52.901Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.260Z", - "id": "relationship--3b8b6dd8-7e17-401b-922c-fc955bcb2b48", - "modified": "2021-01-06T18:28:43.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.260Z", - "id": "relationship--8ab5f062-8f12-4f38-bdf9-e3a2156e1379", - "modified": "2021-01-06T18:28:43.260Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", - "id": "relationship--72add5e5-d08f-4270-bf64-9eceda8ad597", - "modified": "2021-01-06T18:28:43.261Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.902Z", "id": "relationship--3eebfa45-7e23-49d1-889d-47983f719b87", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.902Z", "id": "relationship--929ff7c2-3bdb-42b9-b6f2-8355069ae024", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.902Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.261Z", - "id": "relationship--17aa3ad5-9b57-48db-b9e1-e07ec0d98f80", - "modified": "2021-01-06T18:28:43.261Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.261Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--0e5bd1fc-4d93-40e7-b044-9420a9d7eeed", - "modified": "2021-01-06T18:28:43.261Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--fab21101-a142-40be-bc61-e134dad19b4f", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--0a9839c1-bf42-44bb-bc58-4edc8163db59", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--c1fba6ae-5795-4d48-8976-445ab6fd1839", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--2951e069-bb5b-41d5-844d-9a2a971ac59c", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", + "created": "2021-01-13T01:50:52.903Z", "id": "relationship--d4f5a57c-df58-4719-8c3c-9dd5e62deacb", - "modified": "2021-01-06T18:28:43.262Z", + "modified": "2021-01-13T01:50:52.903Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.262Z", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.262Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--d7f9dca3-4098-42e0-a5a8-1edd58705e1e", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--6ebb8095-369f-4909-b0fb-f8cdb002ddd0", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.904Z", "id": "relationship--cf05bbf1-be54-4c38-a5dd-afd85688a192", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.904Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--b7b90694-8efd-4ac4-bc3d-c3706f510e6d", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.264Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--db5ad2f8-5492-41d1-aa25-0f3dcca15150", - "modified": "2021-01-06T18:28:43.264Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--6fb4a4d1-f03a-45ae-bcb6-f4adc47299e9", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--f06cc881-da46-44d6-a9f0-1831025b41f7", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--8535a63d-a902-4229-a522-a98c279361ad", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--97a8b79b-1cab-492b-a228-996e7ae797d0", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--b4d25008-5269-496b-9e22-62164b2894d0", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.905Z", "id": "relationship--26b214e2-4a53-4168-b908-4f6a2e71891d", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.905Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.265Z", + "created": "2021-01-13T01:50:52.906Z", "id": "relationship--a26a4368-12eb-4ec6-8591-c639cf4233c9", - "modified": "2021-01-06T18:28:43.265Z", + "modified": "2021-01-13T01:50:52.906Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.266Z", - "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:43.266Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--1ca6879a-dec4-47e0-b3da-c7e93379f730", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--80ff3df4-649f-44e7-882d-210c7384b4f5", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--ea1aba24-6f6d-48cd-9e1c-4da2cf827e1d", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0ef79586-2d5b-46c8-98db-8225cfb81ef3", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.267Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--df4e580a-93ba-473a-87b9-70edcea0ab47", - "modified": "2021-01-06T18:28:43.267Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b59638ad-0e3d-4d4c-943a-9e744a1a6a27", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--2fdfb330-4d9c-4d83-9e04-355c53bbc7f8", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--c73cb566-4481-4c02-b033-8ec6dc4dbc56", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--d9651b51-5b23-4921-ab59-747f144dde13", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.907Z", "id": "relationship--f117d9e2-6d34-41bc-a254-4015f6f70353", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.907Z", "relationship_type": "mitigates", "source_ref": "course-of-action--68c2cb97-709f-44fb-a0f9-02ec57622b47", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--feb13b39-dc45-4ef2-aea5-7e3c19b0976c", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0631d083-bc52-464e-833b-f0beb5aab2dd", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--40122ea9-da0d-4456-b38c-75176b2b5026", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e455f8d9-2bad-4827-a313-c28ef1839953", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.268Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--0edf8bf4-8c39-44a0-984e-8889e8badb99", - "modified": "2021-01-06T18:28:43.268Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.269Z", + "created": "2021-01-13T01:50:52.908Z", "id": "relationship--ac8b0306-1ecf-46e0-a3a5-502ddc51509a", - "modified": "2021-01-06T18:28:43.269Z", + "modified": "2021-01-13T01:50:52.908Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.269Z", - "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:43.269Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.270Z", + "created": "2021-01-13T01:50:52.909Z", "id": "relationship--267165e0-8a8b-4cd3-93ab-7ea2debadc7e", - "modified": "2021-01-06T18:28:43.270Z", + "modified": "2021-01-13T01:50:52.909Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.270Z", - "id": "relationship--c27a415e-6ae0-4f52-a69f-194c6cfe05fe", - "modified": "2021-01-06T18:28:43.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.270Z", - "id": "relationship--d3f1b214-c7c8-46f9-86ad-6b4890ecffb2", - "modified": "2021-01-06T18:28:43.270Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--62162b91-7cd7-45c5-95c7-28506f09d36f", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--5d21f6a8-c136-43bd-8186-f3958c1dca5c", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--dd169a7d-f803-4f91-a6ce-077a171f4f80", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--c95938df-3008-4d4d-8cff-b59239163f13", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.271Z", - "id": "relationship--4af676a0-67c5-425b-ae34-14381ea08a11", - "modified": "2021-01-06T18:28:43.271Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--adff1d81-010b-4693-90ff-84bb3c3dab5b", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.272Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--02684a4e-2117-4044-bf00-c19ac51f765c", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--a38248e6-e56a-46af-8b83-f2a9999369ff", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.272Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--d3c66141-f7f0-4c9b-a3a4-61c41ddfe43c", - "modified": "2021-01-06T18:28:43.272Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--c83dcd82-292a-47b7-a2da-67b52768e3f1", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--d064b29e-3f64-4164-9a28-0f6bddd809e0", - "modified": "2021-01-06T18:28:43.273Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--6bc4e8ea-6737-414b-8833-b5de67900241", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--de79aadf-2a0d-4b2a-93e0-3a14acf895e5", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.273Z", + "created": "2021-01-13T01:50:52.911Z", "id": "relationship--30c3e808-6aa5-48b7-a029-9901a832ba03", - "modified": "2021-01-06T18:28:43.273Z", + "modified": "2021-01-13T01:50:52.911Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.273Z", - "id": "relationship--de5e4e56-5978-4b3a-807b-74d520ea5c72", - "modified": "2021-01-06T18:28:43.273Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--da8bae22-759f-46b9-8dae-d6474fd59d1b", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf27c86-6a97-45e6-b5bb-8f255b8f1870", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", + "created": "2021-01-13T01:50:52.912Z", "id": "relationship--d8320295-42c5-4098-b22c-c79961cb5c11", - "modified": "2021-01-06T18:28:43.274Z", + "modified": "2021-01-13T01:50:52.912Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--2f6b4ed7-fef1-44ba-bcb8-1b4beb610b64", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--a90907be-21bb-4293-81d9-225061fb8ebf", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.274Z", - "id": "relationship--2c50ea91-fe10-4258-b034-edc7d155b71c", - "modified": "2021-01-06T18:28:43.274Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--3b4c2587-2937-404c-8ffa-587d63add267", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--811d7a32-4bb5-4382-8231-3c89c603633e", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--39c837e6-6289-4ac2-9091-758faca0feee", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--6a14c995-7859-4ee0-89fa-381d45ba1205", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--343a7919-f99c-4a82-a3ac-7efcb46a71cf", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.276Z", + "created": "2021-01-13T01:50:52.913Z", "id": "relationship--6a5ed004-7968-4ca2-a64b-0839485eeef5", - "modified": "2021-01-06T18:28:43.276Z", + "modified": "2021-01-13T01:50:52.913Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.277Z", + "created": "2021-01-13T01:50:52.914Z", "id": "relationship--bafe3471-15a3-46c1-8d45-f8c51fd79537", - "modified": "2021-01-06T18:28:43.277Z", + "modified": "2021-01-13T01:50:52.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b3d682b6-98f2-4fb0-aa3b-b4df007ca70a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.278Z", + "created": "2021-01-13T01:50:52.914Z", "id": "relationship--1246e341-b2bc-44dd-a4f4-9c933953690f", - "modified": "2021-01-06T18:28:43.278Z", + "modified": "2021-01-13T01:50:52.914Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--deb98323-e13f-4b0c-8d94-175379069062", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.915Z", "id": "relationship--0b071a83-769a-4949-8041-a60baf21b362", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.915Z", "id": "relationship--3c1ad469-e50a-4b95-a3a2-3da976751751", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.915Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--7ddbece2-319b-459c-ae63-d8172483d295", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--5d70aff5-ce6c-47f1-b545-4a1a27bbfed3", - "modified": "2021-01-06T18:28:43.279Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.279Z", - "id": "relationship--9ffb0125-920f-4821-9af7-cf2af4cbbce8", - "modified": "2021-01-06T18:28:43.279Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--4d233343-ade8-401c-b143-1dbf3e2055a4", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--fc52c4b1-2b55-401a-ae56-b45c21294f05", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--6af5809f-f0cb-4a4d-a400-80083a0f6521", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--096091f4-f8b0-4c8a-9939-75f6917e8f41", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--7385dfaf-6886-4229-9ecd-6fd678040830", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", - "id": "relationship--4371adfa-df38-4603-9696-e57fed241678", - "modified": "2021-01-06T18:28:43.280Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--970a3432-3237-47ad-bcca-7d8cbb217736", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.280Z", + "created": "2021-01-13T01:50:52.916Z", "id": "relationship--20780422-0bb1-40c6-98f8-175baac3d82a", - "modified": "2021-01-06T18:28:43.280Z", + "modified": "2021-01-13T01:50:52.916Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--cc3502b5-30cc-4473-ad48-42d51a6ef6d1", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.281Z", - "id": "relationship--b7d6c9b5-30cc-47ab-8250-abe6c18e3851", - "modified": "2021-01-06T18:28:43.281Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dfd7cc1d-e1d8-4394-a198-97c4cab8aa67", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--e0c9effb-9986-43bc-a174-ccbef416f51d", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--3f6e877b-a793-4e5a-ae8c-484a227d1c94", - "modified": "2021-01-06T18:28:43.282Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--b24755f1-63df-40b1-ae78-8e0809e23bd3", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.282Z", - "id": "relationship--3a056bc0-3acc-4691-a5fe-bf5d39ef14b6", - "modified": "2021-01-06T18:28:43.282Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.283Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--633612a2-7fc1-47f1-ab93-99c84bc4a584", - "modified": "2021-01-06T18:28:43.283Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.283Z", + "created": "2021-01-13T01:50:52.918Z", "id": "relationship--77fa70a5-bb9b-4b38-b135-808bac414442", - "modified": "2021-01-06T18:28:43.283Z", + "modified": "2021-01-13T01:50:52.918Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--dc31fe1e-d722-49da-8f5f-92c7b5aff534", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.284Z", + "created": "2021-01-13T01:50:52.919Z", "id": "relationship--4353dd93-3cc5-4d0e-b888-de73bdf67ad7", - "modified": "2021-01-06T18:28:43.284Z", + "modified": "2021-01-13T01:50:52.919Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.284Z", + "created": "2021-01-13T01:50:52.919Z", "id": "relationship--7dc16443-4a1a-481e-8cd0-f114ee7ee2db", - "modified": "2021-01-06T18:28:43.284Z", + "modified": "2021-01-13T01:50:52.919Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.285Z", + "created": "2021-01-13T01:50:52.920Z", "id": "relationship--d135bc50-6c52-4fc5-9994-bbabfb486164", - "modified": "2021-01-06T18:28:43.285Z", + "modified": "2021-01-13T01:50:52.920Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.285Z", - "id": "relationship--b977b261-831d-47fe-9c77-bb7cd387be1e", - "modified": "2021-01-06T18:28:43.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.285Z", - "id": "relationship--ef8b0c11-3ff9-48b4-b0bf-70830dee27e9", - "modified": "2021-01-06T18:28:43.285Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--a1b52199-c8c5-438a-9ded-656f1d0888c6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", + "created": "2021-01-13T01:50:52.921Z", "id": "relationship--1e29c34b-cd76-4b75-b2f5-be87cd41ac25", - "modified": "2021-01-06T18:28:43.286Z", + "modified": "2021-01-13T01:50:52.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.286Z", + "created": "2021-01-13T01:50:52.921Z", "id": "relationship--d1e30928-c09f-4de7-a1de-5eb83e5aa09c", - "modified": "2021-01-06T18:28:43.286Z", + "modified": "2021-01-13T01:50:52.921Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--854eb5e8-9d2f-4dac-b736-ac8839d0be4b", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--36848002-5deb-4c53-b01e-8a04351319f5", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.286Z", - "id": "relationship--8ac742b3-35c3-4783-af9b-c94d7ce038c5", - "modified": "2021-01-06T18:28:43.286Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--a62a8db3-f23a-4d8f-afd6-9dbc77e7813b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.287Z", - "id": "relationship--5363c89a-6f80-4a5d-9a5c-3cccd39976a9", - "modified": "2021-01-06T18:28:43.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.287Z", - "description": "Continuous Monitoring", - "id": "relationship--8d58226a-0b58-4f4c-80f3-d7013cebe97f", - "modified": "2021-01-06T18:28:43.287Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.288Z", - "description": "System Monitoring", - "id": "relationship--3343c37a-170a-4eb9-84be-13760aba7de6", - "modified": "2021-01-06T18:28:43.288Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.288Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.923Z", "id": "relationship--d32e3b64-645a-4ac9-9cef-08c32406cb62", - "modified": "2021-01-06T18:28:43.288Z", + "modified": "2021-01-13T01:50:52.923Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.289Z", - "description": "Continuous Monitoring", - "id": "relationship--8d37e36f-af7f-49f0-b8fc-ad83247a6db8", - "modified": "2021-01-06T18:28:43.289Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.290Z", - "description": "System Monitoring", - "id": "relationship--90cd0928-5e32-4ef7-8936-5d00d760368b", - "modified": "2021-01-06T18:28:43.290Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.291Z", - "description": "System Monitoring", - "id": "relationship--34bcd1dc-25cf-4838-a45f-b177b8bf08a8", - "modified": "2021-01-06T18:28:43.291Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--246fd3c7-f5e3-466d-8787-4c13d9e3b61c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.292Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.926Z", "id": "relationship--1bdaa66c-bf90-4628-a969-93612750c055", - "modified": "2021-01-06T18:28:43.292Z", + "modified": "2021-01-13T01:50:52.926Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.293Z", - "description": "System Monitoring", - "id": "relationship--d5f0590c-8239-4b95-bfe2-7f51567ab8fb", - "modified": "2021-01-06T18:28:43.293Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.293Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.927Z", "id": "relationship--484b6c2e-9ab6-4bc6-9a88-35ba9a921a18", - "modified": "2021-01-06T18:28:43.293Z", + "modified": "2021-01-13T01:50:52.927Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.294Z", - "description": "Continuous Monitoring", - "id": "relationship--6c789fad-0139-423c-ac9e-041ee105bb47", - "modified": "2021-01-06T18:28:43.294Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.295Z", - "description": "System Monitoring", - "id": "relationship--20102fa2-d6be-45b3-a413-07827fd06faa", - "modified": "2021-01-06T18:28:43.295Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.295Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.929Z", "id": "relationship--007da041-716d-4b28-bfa9-71117e31e16f", - "modified": "2021-01-06T18:28:43.295Z", + "modified": "2021-01-13T01:50:52.929Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.296Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.930Z", "id": "relationship--3e804053-e657-4af8-a624-6443cfb63efa", - "modified": "2021-01-06T18:28:43.296Z", + "modified": "2021-01-13T01:50:52.930Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.296Z", - "description": "System Monitoring", - "id": "relationship--456c74a9-5919-43bd-99b2-d13ec0652cc9", - "modified": "2021-01-06T18:28:43.296Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.297Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.931Z", "id": "relationship--bc593f23-784d-40f2-a11b-40a9bcda89cd", - "modified": "2021-01-06T18:28:43.297Z", + "modified": "2021-01-13T01:50:52.931Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.298Z", - "description": "Continuous Monitoring", - "id": "relationship--8082d52c-15db-47a9-b1e1-8a23dc940091", - "modified": "2021-01-06T18:28:43.298Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.299Z", - "description": "System Monitoring", - "id": "relationship--040d4851-c17f-4f51-9ba0-216695abdc10", - "modified": "2021-01-06T18:28:43.299Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.300Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.933Z", "id": "relationship--15c8bc08-5c69-49f9-8133-84dffd9ee28e", - "modified": "2021-01-06T18:28:43.300Z", + "modified": "2021-01-13T01:50:52.933Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.301Z", - "description": "Continuous Monitoring", - "id": "relationship--b84f5fdc-a960-4ca7-867a-576a195b5d42", - "modified": "2021-01-06T18:28:43.301Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.302Z", - "description": "System Monitoring", - "id": "relationship--74ec4125-df7d-4c12-9857-dcd0eef9f3a3", - "modified": "2021-01-06T18:28:43.302Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.302Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.935Z", "id": "relationship--cc73c770-48cc-49a6-8022-bfa13dcbe1d0", - "modified": "2021-01-06T18:28:43.302Z", + "modified": "2021-01-13T01:50:52.935Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.303Z", - "description": "Continuous Monitoring", - "id": "relationship--941360cc-457e-416a-9504-abf9df53a07c", - "modified": "2021-01-06T18:28:43.303Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.304Z", - "description": "System Monitoring", - "id": "relationship--3d65d248-5e3a-4fc0-9ade-cf17eb3a623b", - "modified": "2021-01-06T18:28:43.304Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.304Z", - "description": "System Monitoring", + "created": "2021-01-13T01:50:52.937Z", "id": "relationship--33fd05bd-d39c-4a15-b756-1e7ba7abdc7c", - "modified": "2021-01-06T18:28:43.304Z", + "modified": "2021-01-13T01:50:52.937Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--319a4380-c046-49db-99ea-c8bd649f40c8", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--1901de01-44f2-465d-8104-7821fc986ae0", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.305Z", - "description": "Continuous Monitoring", + "created": "2021-01-13T01:50:52.938Z", "id": "relationship--872c112f-52bb-4295-9c2d-135af1b4befe", - "modified": "2021-01-06T18:28:43.305Z", + "modified": "2021-01-13T01:50:52.938Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--a695d77b-3a8d-40d5-b315-82b7a5cecf2d", - "modified": "2021-01-06T18:28:43.306Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--f66f8070-3851-4836-adde-56abd3b32771", - "modified": "2021-01-06T18:28:43.306Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.306Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--968e17e1-ce4a-4259-98d6-d6ee240ff231", - "modified": "2021-01-06T18:28:43.306Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--685dbcaa-5bbe-4b07-bd11-f57d3ecbfb38", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.939Z", "id": "relationship--d9b16d95-5857-4d67-a1b9-8f0fc0fa1d06", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.939Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--daa293a6-e721-42a0-bb5e-dadafdff53c2", - "modified": "2021-01-06T18:28:43.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.940Z", "id": "relationship--c07d02c7-7d09-4687-aca4-8f0a39dd4fd8", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--b97f1d35-4249-4486-a6b5-ee60ccf24fab", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", + "created": "2021-01-13T01:50:52.940Z", "id": "relationship--a8ef02cf-1085-4b14-bf94-f84a843d2b47", - "modified": "2021-01-06T18:28:43.307Z", + "modified": "2021-01-13T01:50:52.940Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", "target_ref": "attack-pattern--045d0922-2310-4e60-b5e4-3302302cb3c5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.307Z", - "description": "System Monitoring, Information Validation", - "id": "relationship--53d8923c-b0ac-4525-b219-5548e517f037", - "modified": "2021-01-06T18:28:43.307Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--d83d1f44-a0de-40b0-b37e-18d876a5cd7b", - "target_ref": "attack-pattern--457c7820-d331-465a-915e-42f85500ccc4", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.308Z", - "description": "Flaw Remediation", - "id": "relationship--4772c166-5ce6-4824-81c2-62ecece78691", - "modified": "2021-01-06T18:28:43.308Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--b21c3b2d-02e6-45b1-980b-e69051040839", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.309Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.942Z", "id": "relationship--8f5913d5-e5e4-4dab-8262-d3aa0aab809a", - "modified": "2021-01-06T18:28:43.309Z", + "modified": "2021-01-13T01:50:52.942Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--92a78814-b191-47ca-909c-1ccfe3777414", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--9dfdc6d3-86a1-4484-95c8-2d9b5746346b", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--cb7c36a2-d61a-4efb-9535-08a9e20359ba", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--a9e2cea0-c805-4bf8-9e31-f5f0513a3634", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.310Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--a8b6368d-4fe9-46f8-912a-de08a9f31bdf", - "modified": "2021-01-06T18:28:43.310Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--bf147104-abf9-4221-95d1-e81585859441", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.311Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.943Z", "id": "relationship--8d5137dc-3997-4ee0-bb69-c591f1dad69c", - "modified": "2021-01-06T18:28:43.311Z", + "modified": "2021-01-13T01:50:52.943Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3d1b9d7e-3921-4d25-845a-7d9f15c0da44", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.312Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.944Z", "id": "relationship--0ddccb95-bb3c-4f0d-b7cd-f006ff0dd571", - "modified": "2021-01-06T18:28:43.312Z", + "modified": "2021-01-13T01:50:52.944Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.312Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.945Z", "id": "relationship--6105fcb9-dc1c-471a-98cf-d34c28b3714f", - "modified": "2021-01-06T18:28:43.312Z", + "modified": "2021-01-13T01:50:52.945Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--d742a578-d70e-4d0e-96a6-02a9c30204e6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.313Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.946Z", "id": "relationship--8fc260d2-724b-4f4c-90e7-f426a40a42ef", - "modified": "2021-01-06T18:28:43.313Z", + "modified": "2021-01-13T01:50:52.946Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.314Z", - "description": "Vulnerability Scanning", - "id": "relationship--ee9acb10-cf11-42b0-9462-06cf4d3d1153", - "modified": "2021-01-06T18:28:43.314Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--3f886f2a-874f-4333-b794-aa6075009b1c", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.315Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--28e9dcff-42ec-4e14-b1f7-24f276e1de11", - "modified": "2021-01-06T18:28:43.315Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.315Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--8d2ee56d-5801-4170-a828-860c66aed04f", - "modified": "2021-01-06T18:28:43.315Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.316Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.948Z", "id": "relationship--80c8cf4d-5fa8-49dc-af3c-8164684299ae", - "modified": "2021-01-06T18:28:43.316Z", + "modified": "2021-01-13T01:50:52.948Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--7e98983c-c72e-4cc7-817d-532c98cbdec3", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--8c9f9e04-c350-4da9-b1d0-719c04ae297e", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.317Z", - "description": "Unsupported System Components", + "created": "2021-01-13T01:50:52.949Z", "id": "relationship--bd3e4340-9ecc-420c-b591-b4a558a0589e", - "modified": "2021-01-06T18:28:43.317Z", + "modified": "2021-01-13T01:50:52.949Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7a457be8-53a7-495c-85a3-e1a851f81e5b", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.318Z", - "description": "Vulnerability Scanning", - "id": "relationship--cde1aa43-c993-4754-ae0c-604e92fd6ddf", - "modified": "2021-01-06T18:28:43.318Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.318Z", - "description": "Vulnerability Scanning", - "id": "relationship--5e302437-98dd-4751-80f7-63ceb77aab4d", - "modified": "2021-01-06T18:28:43.318Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.319Z", - "description": "Vulnerability Scanning", - "id": "relationship--c208c3cb-017c-424a-ad2c-19c45ea8fdee", - "modified": "2021-01-06T18:28:43.319Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--adc5eb4a-ecc4-4965-9a47-840ce208a746", - "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.319Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--98a7929a-74cc-4876-950d-0a29a934cc53", - "modified": "2021-01-06T18:28:43.319Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--afb840d0-a4a7-46cd-91ed-2c2b9193394f", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.951Z", "id": "relationship--e2b6ea4d-64c2-4f76-ad76-6758fc521e07", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.951Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--5ba9cfde-43d3-463c-b578-bf2f9a542eae", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--191cc6af-1bb2-4344-ab5f-28e496638720", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--e2a00ca3-6fa2-4d19-bb87-c44adf5c2fd9", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--bd369cd9-abb8-41ce-b5bb-fff23ee86c00", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.320Z", - "description": "User-Installed Software, Least Functionality", + "created": "2021-01-13T01:50:52.952Z", "id": "relationship--dac0ba70-8dfd-4585-8bec-5c832cb40e68", - "modified": "2021-01-06T18:28:43.320Z", + "modified": "2021-01-13T01:50:52.952Z", "relationship_type": "mitigates", "source_ref": "course-of-action--6914de04-d781-44f6-bd05-f5d046cd6786", "target_ref": "attack-pattern--3f18edba-28f4-4bb9-82c3-8aa60dcac5f7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.321Z", - "description": "Flaw Remediation", - "id": "relationship--2951e069-bb5b-41d5-844d-9a2a971ac59c", - "modified": "2021-01-06T18:28:43.321Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--9db0cf3a-a3c9-4012-8268-123b9db6fd82", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.322Z", - "description": "Flaw Remediation", - "id": "relationship--26b214e2-4a53-4168-b908-4f6a2e71891d", - "modified": "2021-01-06T18:28:43.322Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--fe926152-f431-4baf-956c-4ad3cb0bf23b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.323Z", - "description": "Flaw Remediation", - "id": "relationship--0edf8bf4-8c39-44a0-984e-8889e8badb99", - "modified": "2021-01-06T18:28:43.323Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.324Z", - "description": "Flaw Remediation", - "id": "relationship--2acacc19-1edb-421a-a885-6871027a3097", - "modified": "2021-01-06T18:28:43.324Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--f5bb433e-bdf6-4781-84bc-35e97e43be89", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.325Z", - "description": "Flaw Remediation", - "id": "relationship--b761591c-c791-4eff-8028-ad35d68f5773", - "modified": "2021-01-06T18:28:43.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.325Z", - "description": "Flaw Remediation", - "id": "relationship--818dff85-9492-4ef0-a418-25d25bc2c815", - "modified": "2021-01-06T18:28:43.325Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", - "target_ref": "attack-pattern--16ab6452-c3c1-497c-a47d-206018ca1ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.326Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.958Z", "id": "relationship--84c6e3c2-4866-4b0c-9575-8a73b23247b6", - "modified": "2021-01-06T18:28:43.326Z", + "modified": "2021-01-13T01:50:52.958Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.327Z", - "description": "Software, Firmware, and Information Integrity", + "created": "2021-01-13T01:50:52.959Z", "id": "relationship--94e21f53-52e6-42c6-a965-ed8880d114a2", - "modified": "2021-01-06T18:28:43.327Z", + "modified": "2021-01-13T01:50:52.959Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.328Z", - "description": "Baseline Configuration", + "created": "2021-01-13T01:50:52.960Z", "id": "relationship--44d43678-3519-4895-a2b4-f2fea8238ab3", - "modified": "2021-01-06T18:28:43.328Z", + "modified": "2021-01-13T01:50:52.960Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--cc89ecbd-3d33-4a41-bcca-001e702d18fd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.329Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.961Z", "id": "relationship--f02d1f41-dcd7-4b42-9ea4-ebc01ad6d4a2", - "modified": "2021-01-06T18:28:43.329Z", + "modified": "2021-01-13T01:50:52.961Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.330Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.962Z", "id": "relationship--505bcb4f-a980-4691-b693-6ee6b432c040", - "modified": "2021-01-06T18:28:43.330Z", + "modified": "2021-01-13T01:50:52.962Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.331Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.963Z", "id": "relationship--fa599f75-59fc-4c6a-94dc-5958da19c4ad", - "modified": "2021-01-06T18:28:43.331Z", + "modified": "2021-01-13T01:50:52.963Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.332Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.964Z", "id": "relationship--bf5c2cb2-6750-4a29-91fc-650cbde09ea8", - "modified": "2021-01-06T18:28:43.332Z", + "modified": "2021-01-13T01:50:52.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--8d7bd4f5-3a89-4453-9c82-2c8894d5655e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.332Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.964Z", "id": "relationship--4beb570f-e318-4dd0-899f-e367a16026e3", - "modified": "2021-01-06T18:28:43.332Z", + "modified": "2021-01-13T01:50:52.964Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.333Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.965Z", "id": "relationship--f584dd51-e3f3-4572-a889-ad26b2611b6b", - "modified": "2021-01-06T18:28:43.333Z", + "modified": "2021-01-13T01:50:52.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.334Z", - "description": "Flaw Remediation", + "created": "2021-01-13T01:50:52.965Z", "id": "relationship--e0e3e089-d0cd-4705-8004-8ac31a11f323", - "modified": "2021-01-06T18:28:43.334Z", + "modified": "2021-01-13T01:50:52.965Z", "relationship_type": "mitigates", "source_ref": "course-of-action--52067af1-103a-482b-a25d-a4d9622a806d", "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.335Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.966Z", "id": "relationship--7e30598d-8e9d-46e3-b84e-7b31eae632cf", - "modified": "2021-01-06T18:28:43.335Z", + "modified": "2021-01-13T01:50:52.966Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--a5b3ad71-d4d0-4703-b01f-820923569302", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--e69ea5ff-7b35-4e4c-87c1-6a6cc61b07fb", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.967Z", "id": "relationship--775cdfaa-28f0-47b0-a93f-1a95438f42ab", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.967Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.336Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.968Z", "id": "relationship--0daa542e-4564-4376-afab-52baf753bf28", - "modified": "2021-01-06T18:28:43.336Z", + "modified": "2021-01-13T01:50:52.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.337Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.968Z", "id": "relationship--74062e1b-2343-414b-9c30-9bbb0686ad30", - "modified": "2021-01-06T18:28:43.337Z", + "modified": "2021-01-13T01:50:52.968Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.337Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.969Z", "id": "relationship--5e45a01c-6106-47b2-bbb6-517a9b184b89", - "modified": "2021-01-06T18:28:43.337Z", + "modified": "2021-01-13T01:50:52.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.338Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.969Z", "id": "relationship--385cf347-b06a-4b9b-b665-5fdba8db94ad", - "modified": "2021-01-06T18:28:43.338Z", + "modified": "2021-01-13T01:50:52.969Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.338Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.970Z", "id": "relationship--c29bb1b6-9739-4083-8964-e1bdd9b6e293", - "modified": "2021-01-06T18:28:43.338Z", + "modified": "2021-01-13T01:50:52.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.339Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.970Z", "id": "relationship--0db7a786-f86b-494e-ae10-aa445c45bcf8", - "modified": "2021-01-06T18:28:43.339Z", + "modified": "2021-01-13T01:50:52.970Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d45a3d09-b3cf-48f4-9f0f-f521ee5cb05c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.340Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.971Z", "id": "relationship--98d4b045-bee9-4535-b366-d4125413dce5", - "modified": "2021-01-06T18:28:43.340Z", + "modified": "2021-01-13T01:50:52.971Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--51ce091f-672c-41e7-b934-c29d5e545141", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--fa8a088c-9a31-40cc-ab00-d7c5d0a0264c", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--7bccc945-23e0-4dc8-8078-f57bfd959d9d", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--432bc81f-7289-4475-97de-c3502373370b", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--e4dccee2-c7d3-4700-8718-0e29412e079e", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.341Z", - "description": "Data backup, disaster recovery, system hardening, off site backups, alternate storage", + "created": "2021-01-13T01:50:52.972Z", "id": "relationship--194c365b-d5ee-4bff-b6a1-7b40fed26492", - "modified": "2021-01-06T18:28:43.341Z", + "modified": "2021-01-13T01:50:52.972Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--7af36f8d-1e73-4d98-a001-3dffbd5e24b3", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--24632c4c-a2b7-4981-bdb1-82815922d1cb", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.342Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.973Z", "id": "relationship--b64d1c94-ccd9-4a1b-a7fa-e89510fbbbfd", - "modified": "2021-01-06T18:28:43.342Z", + "modified": "2021-01-13T01:50:52.973Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.343Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.974Z", "id": "relationship--6fbebf13-fc7e-4865-97c9-74f4a9924762", - "modified": "2021-01-06T18:28:43.343Z", + "modified": "2021-01-13T01:50:52.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.343Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.974Z", "id": "relationship--bd67c740-f9df-4ff1-a758-cbcbb93c10b3", - "modified": "2021-01-06T18:28:43.343Z", + "modified": "2021-01-13T01:50:52.974Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b80d107d-fa0d-4b60-9684-b0433e8bdba0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.975Z", "id": "relationship--12f9e7ff-7d38-40f6-a45c-77873f77a3f6", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.975Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--d734673f-f627-4c45-bceb-e76e246a6c69", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--9da2bfd7-fdfa-4867-81c7-51758bd596a1", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.344Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--a51184ab-0ff1-4ab6-bfaf-278e822be7f4", - "modified": "2021-01-06T18:28:43.344Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.345Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.976Z", "id": "relationship--49d2cece-baed-4e3d-a44b-06cb3ffe677b", - "modified": "2021-01-06T18:28:43.345Z", + "modified": "2021-01-13T01:50:52.976Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.345Z", - "description": "System Monitoring, malware", - "id": "relationship--28c1473c-ef3e-4183-bece-1ba32334603e", - "modified": "2021-01-06T18:28:43.345Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.346Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.977Z", "id": "relationship--c05ce0d2-a51b-4c3b-aaac-02ae37bfd707", - "modified": "2021-01-06T18:28:43.346Z", + "modified": "2021-01-13T01:50:52.977Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.346Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--39ecba2a-ed51-47c7-945e-8c97e8b9596f", - "modified": "2021-01-06T18:28:43.346Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--bd3c033e-0496-4f6f-9cd0-3d5ec52d0f9e", - "modified": "2021-01-06T18:28:43.347Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.978Z", "id": "relationship--ebd6af84-c9f6-427b-89c2-8af92858fd91", - "modified": "2021-01-06T18:28:43.347Z", + "modified": "2021-01-13T01:50:52.978Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.347Z", - "description": "Configuring system settings", - "id": "relationship--a3bda795-0d5e-4fa2-a956-8ab179b6787c", - "modified": "2021-01-06T18:28:43.347Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--f5d8eed6-48a9-4cdf-a3d7-d1ffa99c3d2a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.979Z", "id": "relationship--030318dc-f321-45ff-b5cf-c222e73af5c0", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.979Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.980Z", "id": "relationship--8ae6bbe7-e159-45ba-be0b-394f454c571a", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.349Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.980Z", "id": "relationship--54775a4d-4e70-4902-bb45-eb4f98def51b", - "modified": "2021-01-06T18:28:43.349Z", + "modified": "2021-01-13T01:50:52.980Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--7b2ec446-d272-4b18-b998-17011ac2eef9", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--5955f00e-19ef-4d31-83d5-5b82150307a5", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--d3f2c2e1-512f-427f-b615-b93a68e77c13", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--fbe97332-e43c-4ef2-ab30-2fd48403d24d", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.350Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--8d1257ea-70ee-4f61-a88e-41e9e9ca58c9", - "modified": "2021-01-06T18:28:43.350Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--a94d6c49-dbda-4eab-8904-2d5680e6d7cc", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--0e5d9f7e-c341-4a35-9be0-debd6a33c2f7", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.981Z", "id": "relationship--d666029d-61f0-473f-8032-d864fa58fd72", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.981Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--db3ad7bc-855f-443b-a439-6e52dcc65f39", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--52e7291c-d462-4817-b9d4-b89794d5d093", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--193b501f-b68a-4f39-964d-7882758d3439", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.351Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.982Z", "id": "relationship--234d5353-6723-4849-83e7-d06443f0725d", - "modified": "2021-01-06T18:28:43.351Z", + "modified": "2021-01-13T01:50:52.982Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--9d344b76-4b93-4869-8c77-003587a6f0f4", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--561936ef-59bb-4705-8c8b-978a4e1eed0a", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.352Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--d8e93f4c-ee67-4160-bf37-a437a8109f21", - "modified": "2021-01-06T18:28:43.352Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--c98eaca7-7110-45d7-800d-165be5c62fee", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--3274f2ca-6583-4834-8e20-b9c9afca6b8b", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--d399f6db-018e-4ad2-a5ca-a0714769d3e6", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--a407dd8d-e60a-40e9-a156-6602e2d64157", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--e341c287-d16b-424b-8c4e-de849b3a23bb", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.353Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.983Z", "id": "relationship--ed503b80-4f8b-4988-a69e-5cdad388e8be", - "modified": "2021-01-06T18:28:43.353Z", + "modified": "2021-01-13T01:50:52.983Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--eebb2099-e81f-4e2b-8820-d45ea50ed8fc", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--609b2118-e2b1-4ac8-b152-ef6466e0c460", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--3fa2db45-92a2-4e59-a83c-338c7307b4ad", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.984Z", "id": "relationship--67f75bb6-c607-414d-ad3d-ad6537f4def7", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.984Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--5909f20f-3c39-4795-be06-ef1ea40d350b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.354Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.985Z", "id": "relationship--549965f4-4fb1-417b-be9d-a010c95fc5b8", - "modified": "2021-01-06T18:28:43.354Z", + "modified": "2021-01-13T01:50:52.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0cfe31a7-81fc-472c-bc45-e2808d1066a3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.355Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.985Z", "id": "relationship--142d2dea-94d0-41a0-8c32-9179a4da0f89", - "modified": "2021-01-06T18:28:43.355Z", + "modified": "2021-01-13T01:50:52.985Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--8c41090b-aa47-4331-986b-8c9a51a91103", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--b3856c40-f961-44bc-92ee-997a1ccf136b", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--57ffa76c-75bc-4dee-8745-407db2618a6e", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.356Z", - "description": "Configuring system settings", + "created": "2021-01-13T01:50:52.986Z", "id": "relationship--5d43ca22-9803-45ff-878b-0b2715f92d33", - "modified": "2021-01-06T18:28:43.356Z", + "modified": "2021-01-13T01:50:52.986Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--cdc709a1-689f-4b77-8f19-73fe8ebc0b06", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--3c7d1c87-4b43-447e-865d-4238e45a8b26", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--7c13d27d-8534-40c5-9e43-1474148a38ca", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d3f02095-29c9-4ed2-a219-4b70f4c3a4cc", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--2cd8e40d-f31e-450f-8e5c-2fb897e03cb0", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--07d0d22e-02dc-4a8e-ae4d-c66faeee3b5a", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--04711ba0-fa05-4084-a91b-ed527bccee51", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d937d36f-c5f8-4ba2-893b-bd9d9f5571b7", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.357Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--5dcc6dbf-a9ca-4fe3-b238-71bc7b5d1f74", - "modified": "2021-01-06T18:28:43.357Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.987Z", "id": "relationship--690f17d8-9503-4ef7-89d4-3d04ef91763a", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.987Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--67ac422e-a0c9-4edc-b040-aa724ac89e51", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d5eb1226-6573-4244-80a6-ba9ba03158ae", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--e05bcebd-5e20-4ee4-861c-dac0b023fc4d", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--12ae4635-3d2c-43cd-891e-4893783e8438", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.358Z", - "description": "Data backup, disaster recovery, system hardening, off site backups", + "created": "2021-01-13T01:50:52.988Z", "id": "relationship--c09f0a44-7404-4e0a-a241-883b4adbd4ef", - "modified": "2021-01-06T18:28:43.358Z", + "modified": "2021-01-13T01:50:52.988Z", "relationship_type": "mitigates", "source_ref": "course-of-action--560dae44-130b-44b1-9b0a-13916f804584", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--9601540f-0adf-46da-aeaf-3b2eaf4e79a8", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--799141d9-83cb-40d5-91ee-38f14ca65c62", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--00133a3f-3ef5-42d5-bc4e-7563d0226303", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--4d28e528-83cf-4275-94e8-bfaef2edf0c7", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.359Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--875ee3ad-bef6-4bca-8ee2-8aab28d1e6cd", - "modified": "2021-01-06T18:28:43.359Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "Access enforcement, Least privilege", + "created": "2021-01-13T01:50:52.989Z", "id": "relationship--9f100076-30e7-4d82-8b33-0b3b54fef356", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.989Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--f694180a-c77b-425c-9dac-2ba03a258515", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.360Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--0cff7ccc-d9d3-4cd1-af75-22f1f09fa322", - "modified": "2021-01-06T18:28:43.360Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--74e4a54a-8fe3-4297-85a6-07a7fd1aad36", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--05a6c8aa-b311-417d-9c36-f35b23c0d73f", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--5945f151-b64a-40c7-993c-014f0026d432", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.990Z", "id": "relationship--779ebc54-5f3e-4b27-91c2-9914abd6445c", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.990Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--03b2e5a3-29b6-46c5-b40f-4461bd2e0913", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--0df08ef3-3fa5-45a5-aa2e-f0fa85b9ac0b", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--d93503b2-76ac-4983-b0b2-cc1ae7779377", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--fb640c43-aa6b-431e-a961-a279010424ac", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--4a7744e6-9529-43db-9ac3-74c86644af12", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--0af0ca99-357d-4ba1-805f-674fdfb7bef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.361Z", - "description": "System Monitoring, malware", + "created": "2021-01-13T01:50:52.991Z", "id": "relationship--610c8373-aeed-4e62-9c54-bf39c7ba120b", - "modified": "2021-01-06T18:28:43.361Z", + "modified": "2021-01-13T01:50:52.991Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--1988cc35-ced8-4dad-b2d1-7628488fa967", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.362Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:50:52.992Z", "id": "relationship--ec80c721-b330-4d28-93c7-40e5376ebc0d", - "modified": "2021-01-06T18:28:43.362Z", + "modified": "2021-01-13T01:50:52.992Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--731f4f55-b6d0-41d1-a7a9-072a66389aea", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.363Z", - "description": "Transmission confidentiality and integrity", + "created": "2021-01-13T01:50:52.993Z", "id": "relationship--265fdd2d-21d3-4794-b89f-95f22db15bf7", - "modified": "2021-01-06T18:28:43.363Z", + "modified": "2021-01-13T01:50:52.993Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--ca9d3402-ada3-484d-876a-d717bd6e05f2", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.364Z", - "description": "Transmission of security attributes, session authenticity", - "id": "relationship--5a7ccda9-745d-4a2f-a7c5-caf36ec2d90c", - "modified": "2021-01-06T18:28:43.364Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.365Z", - "description": "Transmission of security attributes, session authenticity", - "id": "relationship--2a426cd9-c535-4897-be14-0ed253c6f938", - "modified": "2021-01-06T18:28:43.365Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--b8902400-e6c5-4ba2-95aa-2d35b442b118", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--f2674460-31dc-403c-a79c-01e1409c2c0b", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--ff4028e3-c8e4-4005-8fa4-49baf6acd712", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--cad04f49-ac23-4d16-9ca7-45cd2f035008", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73bc094a-1bc0-49d1-9161-0aac27496090", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.367Z", - "description": "cyptographic key establishment and management, transmission of security attributes, session authenticity", - "id": "relationship--c0cabd82-1b9e-4726-a1a3-ae0982d914f3", - "modified": "2021-01-06T18:28:43.367Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", - "target_ref": "attack-pattern--bf176076-b789-408e-8cba-7275e81c0ada", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.369Z", + "created": "2021-01-13T01:50:52.996Z", "id": "relationship--cd3d0c88-9c8f-4299-b81e-0e3f0791671e", - "modified": "2021-01-06T18:28:43.369Z", + "modified": "2021-01-13T01:50:52.996Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.369Z", + "created": "2021-01-13T01:50:52.997Z", "id": "relationship--7254670f-a017-4d88-8606-d2cea6799a67", - "modified": "2021-01-06T18:28:43.369Z", + "modified": "2021-01-13T01:50:52.997Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.371Z", + "created": "2021-01-13T01:50:52.998Z", "id": "relationship--b467c1b0-2929-463b-a6fc-fee933b6ea7e", - "modified": "2021-01-06T18:28:43.371Z", + "modified": "2021-01-13T01:50:52.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.371Z", + "created": "2021-01-13T01:50:52.998Z", "id": "relationship--c3fa16d7-a8b6-4060-9d94-7ee771d6a7bf", - "modified": "2021-01-06T18:28:43.371Z", + "modified": "2021-01-13T01:50:52.998Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--2355e77c-1e18-4be0-bc89-499653288e2e", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--323ef976-1520-4b6b-85b6-9fbe95846636", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--1c127fa3-72c2-428e-bb93-332b2272e1c8", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--e6415f09-df0e-48de-9aba-928c902b7549", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.373Z", + "created": "2021-01-13T01:50:52.999Z", "id": "relationship--0cbe1a4e-521a-417d-9e51-417c118ddf25", - "modified": "2021-01-06T18:28:43.373Z", + "modified": "2021-01-13T01:50:52.999Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.374Z", + "created": "2021-01-13T01:50:53.000Z", "id": "relationship--1c948993-8591-4ed1-9cbf-8b3e5abc4471", - "modified": "2021-01-06T18:28:43.374Z", + "modified": "2021-01-13T01:50:53.000Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.375Z", + "created": "2021-01-13T01:50:53.001Z", "id": "relationship--1dc97b73-f514-4d88-a885-839e411d20f0", - "modified": "2021-01-06T18:28:43.375Z", + "modified": "2021-01-13T01:50:53.001Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.376Z", + "created": "2021-01-13T01:50:53.002Z", "id": "relationship--7684a10a-1956-42cd-afa6-66d3e1d9beb1", - "modified": "2021-01-06T18:28:43.376Z", + "modified": "2021-01-13T01:50:53.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.377Z", + "created": "2021-01-13T01:50:53.002Z", "id": "relationship--65b5067d-4dc1-42d9-b4ce-3aa39d5c26d4", - "modified": "2021-01-06T18:28:43.377Z", + "modified": "2021-01-13T01:50:53.002Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--3b744087-9945-4a6f-91e8-9dbceda417a4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.378Z", + "created": "2021-01-13T01:50:53.003Z", "id": "relationship--fae174fd-0e57-4deb-8659-ec62fea4f40a", - "modified": "2021-01-06T18:28:43.378Z", + "modified": "2021-01-13T01:50:53.003Z", "relationship_type": "mitigates", "source_ref": "course-of-action--36395f75-86ba-4e02-8875-1610fe858674", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.379Z", + "created": "2021-01-13T01:50:53.004Z", "id": "relationship--a4134892-9572-453e-ab45-807b48551d0f", - "modified": "2021-01-06T18:28:43.379Z", + "modified": "2021-01-13T01:50:53.004Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ef2b502b-a4c7-414b-a621-acb9d73bdcef", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.380Z", + "created": "2021-01-13T01:50:53.005Z", "id": "relationship--d5591ec4-ebfc-49b9-ad6f-9aa101c2ef6f", - "modified": "2021-01-06T18:28:43.380Z", + "modified": "2021-01-13T01:50:53.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.381Z", + "created": "2021-01-13T01:50:53.005Z", "id": "relationship--668ca66d-dd2c-4fa3-b6ed-123ac1526352", - "modified": "2021-01-06T18:28:43.381Z", + "modified": "2021-01-13T01:50:53.005Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.382Z", - "description": "Remote access", - "id": "relationship--8dc16c5c-46d4-47fa-83ce-046abe1a5da1", - "modified": "2021-01-06T18:28:43.382Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--eb062747-2193-45de-8fa2-e62549c37ddf", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.383Z", - "description": "Least privilege", - "id": "relationship--1bc90079-711b-4472-ac1a-b13a4fbe5f3e", - "modified": "2021-01-06T18:28:43.383Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.385Z", - "description": "Remote access, data mining protection", - "id": "relationship--6926e5eb-2fce-45cf-aee2-4379af077fbf", - "modified": "2021-01-06T18:28:43.385Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--4f9ca633-15c5-463c-9724-bdcd54fde541", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.386Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:50:53.009Z", "id": "relationship--5c54824b-deb9-4452-aebf-d2a627e2d08d", - "modified": "2021-01-06T18:28:43.386Z", + "modified": "2021-01-13T01:50:53.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.386Z", - "description": "Remote access, data mining protection", + "created": "2021-01-13T01:50:53.009Z", "id": "relationship--e8dfdadf-28bb-48bc-9122-81364747ec15", - "modified": "2021-01-06T18:28:43.386Z", + "modified": "2021-01-13T01:50:53.009Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5bb8e455-d758-423c-a52b-572851013e06", "target_ref": "attack-pattern--10d51417-ee35-4589-b1ff-b6df1c334e8d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.388Z", - "description": "Use of external information systems", + "created": "2021-01-13T01:50:53.010Z", "id": "relationship--ba5b9d09-493e-4541-bd42-732a5151aa95", - "modified": "2021-01-06T18:28:43.388Z", + "modified": "2021-01-13T01:50:53.010Z", "relationship_type": "mitigates", "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", "target_ref": "attack-pattern--d40239b3-05ff-46d8-9bdd-b46d13463ef9", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.389Z", - "description": "Boundary Protection", + "created": "2021-01-13T01:50:53.011Z", "id": "relationship--1745ace5-b314-4d35-9dda-d02af0a041b0", - "modified": "2021-01-06T18:28:43.389Z", + "modified": "2021-01-13T01:50:53.011Z", "relationship_type": "mitigates", "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", "target_ref": "attack-pattern--7f0ca133-88c4-40c6-a62f-b3083a7fbc2e", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.391Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:50:53.012Z", "id": "relationship--ecc108b7-a7ff-415d-9848-91dc1f3ffcd8", - "modified": "2021-01-06T18:28:43.391Z", + "modified": "2021-01-13T01:50:53.012Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--70e52b04-2a0c-4cea-9d18-7149f1df9dc5", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.392Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--043de1ec-031a-45d9-ae40-740a1bffcbf5", - "modified": "2021-01-06T18:28:43.392Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.393Z", - "description": "Transmission Confidentiality and Integrity", - "id": "relationship--f321179b-a8d7-4224-8d3b-62462e351610", - "modified": "2021-01-06T18:28:43.393Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", - "target_ref": "attack-pattern--cabe189c-a0e3-4965-a473-dcff00f17213", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.394Z", - "description": "Remote access", - "id": "relationship--f7d3be5d-8255-486f-82ca-c33bea6d0268", - "modified": "2021-01-06T18:28:43.394Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", - "target_ref": "attack-pattern--5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.395Z", - "id": "relationship--b9582b24-186f-461c-b84e-01b4af8d8a78", - "modified": "2021-01-06T18:28:43.395Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--f1b1a242-776e-4e8c-9e0f-950ccb4cc028", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--f8734fa4-9e96-4d1f-b5b2-cfa4a5767dab", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--27394fcb-a695-474f-aa22-66ec89d755b6", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--9f2c1c23-d1a8-4036-98c6-1fe766b042af", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--14590f4b-3010-4c59-959e-2a5274e1e41c", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--903bb9f7-149e-46fc-9465-90f31c8b2c6f", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.396Z", - "id": "relationship--af647ad8-da6c-4899-87a5-02dc14db3c1f", - "modified": "2021-01-06T18:28:43.396Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.397Z", - "id": "relationship--c3cd7894-9368-400f-be40-0f0e695b5da5", - "modified": "2021-01-06T18:28:43.397Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--73ebdb1c-cbd8-4167-b27f-3ce7d7d0a722", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.398Z", - "id": "relationship--396a7485-7c77-46a9-8562-3f5cf2811764", - "modified": "2021-01-06T18:28:43.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.398Z", - "id": "relationship--13cce897-fa60-43d2-ad05-8145a6b1e4be", - "modified": "2021-01-06T18:28:43.398Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5160ebe8-3951-488b-8844-5e54b1cc9d22", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.399Z", - "id": "relationship--6cae7608-6e02-4083-9c6b-85414a3e0a58", - "modified": "2021-01-06T18:28:43.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.399Z", - "id": "relationship--f7d5c344-7202-4477-b595-9d961e1d295f", - "modified": "2021-01-06T18:28:43.399Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.400Z", - "id": "relationship--a7b125ef-ee19-4da3-97c7-9e5f88a9c37f", - "modified": "2021-01-06T18:28:43.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.400Z", - "id": "relationship--9181e055-292c-44d0-a1c4-66be3cd0e77c", - "modified": "2021-01-06T18:28:43.400Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.401Z", - "id": "relationship--efa2faa4-2283-4c61-acc6-d0b0f4265ed5", - "modified": "2021-01-06T18:28:43.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.401Z", - "id": "relationship--29be95a5-4b1c-4bc3-a19a-d810bc58ba1a", - "modified": "2021-01-06T18:28:43.401Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--16b17f10-4c09-46ae-bb95-24100c66b945", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.402Z", - "id": "relationship--c766bbc6-6b85-42b9-9ca6-4ea076c7191b", - "modified": "2021-01-06T18:28:43.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.402Z", - "id": "relationship--0079f7f0-5d6b-4bb7-925a-02c834e1674d", - "modified": "2021-01-06T18:28:43.402Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--f63d53c5-72bb-4164-93a8-6a222ced3896", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.403Z", - "id": "relationship--2c20dc0e-2a5d-4015-9115-b0f287e6f9dc", - "modified": "2021-01-06T18:28:43.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--19bf235b-8620-4997-b5b4-94e0659ed7c3", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.403Z", - "id": "relationship--454bed22-a470-4710-8203-02a42b0baae1", - "modified": "2021-01-06T18:28:43.403Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--aaf68576-6417-4df3-aa5b-a3455a6025d2", - "target_ref": "attack-pattern--435dfb86-2697-4867-85b5-2fef496c0517", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.405Z", - "id": "relationship--f336e1ba-fdee-44d9-b884-876be1a74fd2", - "modified": "2021-01-06T18:28:43.405Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--bfba3afd-e466-4f4e-9664-f9a8f0e4d74a", - "target_ref": "attack-pattern--837f9164-50af-4ac0-8219-379d8a74cefc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.407Z", + "created": "2021-01-13T01:50:53.023Z", "id": "relationship--48aac41b-68c3-47bc-9476-bb746e768196", - "modified": "2021-01-06T18:28:43.407Z", + "modified": "2021-01-13T01:50:53.023Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--391d824f-0ef1-47a0-b0ee-c59a75e27670", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--008e270a-950b-4983-8217-f87879c639a2", - "modified": "2021-01-06T18:28:43.408Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", - "id": "relationship--2085743f-61d9-42f1-831a-ddde4020039e", - "modified": "2021-01-06T18:28:43.408Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.408Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--e164beb5-17e3-4974-a1cc-25295e55f625", - "modified": "2021-01-06T18:28:43.408Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.409Z", - "description": "Access enforcement, information flow enforcement, least privilege, system use notification", + "created": "2021-01-13T01:50:53.024Z", "id": "relationship--5c9bfaa5-d5ac-4334-b1a6-d58cc41a60ae", - "modified": "2021-01-06T18:28:43.409Z", + "modified": "2021-01-13T01:50:53.024Z", "relationship_type": "mitigates", "source_ref": "course-of-action--81647363-fba1-4364-b3a3-59922af06442", "target_ref": "attack-pattern--9fa07bef-9c81-421e-a8e5-ad4366c5a925", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.410Z", - "description": "least privilege", + "created": "2021-01-13T01:50:53.025Z", "id": "relationship--a82cf4db-3a39-49d3-8587-10ba6b1b1fe2", - "modified": "2021-01-06T18:28:43.410Z", + "modified": "2021-01-13T01:50:53.025Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--42fe883a-21ea-4cfb-b94a-78b6476dcc83", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.411Z", - "description": "Configuration settings, least functionality", - "id": "relationship--2b58a403-af67-4bb2-abf8-bf394953b17a", - "modified": "2021-01-06T18:28:43.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.411Z", - "description": "Configuration settings, least functionality", - "id": "relationship--9c24a99e-b5c4-44e4-bae0-023493b75065", - "modified": "2021-01-06T18:28:43.411Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", - "target_ref": "attack-pattern--67720091-eee3-4d2d-ae16-8264567f6f5b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.412Z", - "description": "Least privilege", - "id": "relationship--c5e685df-586c-4216-8390-5f591d426361", - "modified": "2021-01-06T18:28:43.412Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.413Z", - "description": "Identification and authentication (organizational users)", - "id": "relationship--b63f8ae7-cb94-4242-a1d4-9ad3d1cfd54a", - "modified": "2021-01-06T18:28:43.413Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--39226f88-8230-4e5e-8322-0db3dd464998", - "target_ref": "attack-pattern--120d5519-3098-4e1c-9191-2aa61232f073", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.414Z", - "description": "Configuration settings", - "id": "relationship--a1074983-5f31-4262-bd53-52d0bb0db978", - "modified": "2021-01-06T18:28:43.414Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--e624264c-033a-424d-9fd7-fc9c3bbdb03e", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.415Z", - "description": "Information flow enforcement", - "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:43.415Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.416Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:50:53.031Z", "id": "relationship--6e80ba71-e526-42fb-a0db-5d42c9aca91e", - "modified": "2021-01-06T18:28:43.416Z", + "modified": "2021-01-13T01:50:53.031Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.416Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--e6ee2e79-92b0-40d1-aef8-61cd7bb016a9", - "modified": "2021-01-06T18:28:43.416Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--70d81154-b187-45f9-8ec5-295d01255979", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.417Z", - "description": "baseline configuration, information flow enforcement", + "created": "2021-01-13T01:50:53.032Z", "id": "relationship--8128e934-8180-4ef8-af7d-3a639a0319ff", - "modified": "2021-01-06T18:28:43.417Z", + "modified": "2021-01-13T01:50:53.032Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.418Z", - "description": "baseline configuration, information flow enforcement", - "id": "relationship--54c8d65b-afcb-49af-80d1-4771e41a8e23", - "modified": "2021-01-06T18:28:43.418Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.419Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:50:53.034Z", "id": "relationship--b41df583-9cbc-49f9-b442-2755534acf26", - "modified": "2021-01-06T18:28:43.419Z", + "modified": "2021-01-13T01:50:53.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.419Z", - "description": "concurrent session control, remote access", + "created": "2021-01-13T01:50:53.034Z", "id": "relationship--942d0630-aef3-450c-9dd9-ebd74d4f9360", - "modified": "2021-01-06T18:28:43.419Z", + "modified": "2021-01-13T01:50:53.034Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.420Z", - "description": "baseline configuration", - "id": "relationship--82dbbdee-39be-4dc0-b780-a361430e6441", - "modified": "2021-01-06T18:28:43.420Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", - "target_ref": "attack-pattern--2c4d4e92-0ccf-4a97-b54c-86d662988a53", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--d735cbff-953a-477d-81ff-219f386a1b57", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--e023aae3-0115-4c6f-bf8e-9635760a4c7d", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--725d7e3e-22f4-4011-b719-21c7a7483a40", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.421Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--a6d6b055-5589-4f7a-a4cc-0fd1465e75aa", - "modified": "2021-01-06T18:28:43.421Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--3d358c78-044e-4183-8a2f-fbfb0d5f57b5", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.422Z", - "description": "least privilege, concurrent session control, permitted actions without identification or authentication, remote access", + "created": "2021-01-13T01:50:53.036Z", "id": "relationship--01870576-6b9c-494a-8fa9-c76c32dc9970", - "modified": "2021-01-06T18:28:43.422Z", + "modified": "2021-01-13T01:50:53.036Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.422Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:50:53.037Z", "id": "relationship--9d7dd46a-05e7-4f81-9806-25fc28cb7768", - "modified": "2021-01-06T18:28:43.422Z", + "modified": "2021-01-13T01:50:53.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b96621dc-594d-4b71-ad0b-1c44ddf1b927", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.423Z", - "description": "baseline configuration, access restrictions for change", + "created": "2021-01-13T01:50:53.037Z", "id": "relationship--54e2df98-c38d-4b64-ae9e-1206e0c02b2f", - "modified": "2021-01-06T18:28:43.423Z", + "modified": "2021-01-13T01:50:53.037Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.424Z", - "description": "session authenticity", + "created": "2021-01-13T01:50:53.038Z", "id": "relationship--d7aa601b-9576-41b8-8d0d-fd8d47246c42", - "modified": "2021-01-06T18:28:43.424Z", + "modified": "2021-01-13T01:50:53.038Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--59bd0dec-f8b2-4b9a-9141-37a1e6899761", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.424Z", - "description": "configuration settings", - "id": "relationship--ed7d52d1-e3c9-4390-bb3c-788e02d854e1", - "modified": "2021-01-06T18:28:43.424Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--10ffac09-e42d-4f56-ab20-db94c67d76ff", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.425Z", - "description": "User-installed software", + "created": "2021-01-13T01:50:53.040Z", "id": "relationship--f7adeb0b-1623-4d39-84a4-4146611294a6", - "modified": "2021-01-06T18:28:43.425Z", + "modified": "2021-01-13T01:50:53.040Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.426Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.041Z", "id": "relationship--a2312bd1-e507-41b9-bd22-c97a7b643c54", - "modified": "2021-01-06T18:28:43.426Z", + "modified": "2021-01-13T01:50:53.041Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.427Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.042Z", "id": "relationship--e03d2f90-fbde-45dd-901f-8a89d6588a71", - "modified": "2021-01-06T18:28:43.427Z", + "modified": "2021-01-13T01:50:53.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--8b6607c0-a0a2-4e13-8a56-01d281ae69b8", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.427Z", - "description": "software firmware and information integrity, transmission confidentiality and integrity, session authenticity", + "created": "2021-01-13T01:50:53.042Z", "id": "relationship--02d920a7-6dea-47b0-93f3-75d1c3287b59", - "modified": "2021-01-06T18:28:43.427Z", + "modified": "2021-01-13T01:50:53.042Z", "relationship_type": "mitigates", "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", "target_ref": "attack-pattern--c3c8c916-2f3c-4e71-94b2-240bdfc996f0", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.428Z", - "description": "Software usage restrictions", + "created": "2021-01-13T01:50:53.043Z", "id": "relationship--6e132068-3233-43ad-9f30-baac55e830bb", - "modified": "2021-01-06T18:28:43.428Z", + "modified": "2021-01-13T01:50:53.043Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.429Z", - "description": "Service identification and authentication", + "created": "2021-01-13T01:50:53.044Z", "id": "relationship--49406fc0-238e-409f-851e-8d7569f2787c", - "modified": "2021-01-06T18:28:43.429Z", + "modified": "2021-01-13T01:50:53.044Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--e01d240a-18c2-4e45-b2bf-a33067adc0b0", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--ab4b994d-edfc-44f1-afe9-1336e25eba81", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--d50fb65b-d272-48e9-add8-1f1f86d7b512", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.430Z", - "description": "Service identification and authentication, Secure name/address resolution service (authoritative source), software usage restrictions", + "created": "2021-01-13T01:50:53.045Z", "id": "relationship--dcb9f8d8-6131-4ac5-8dc2-a57057f23e39", - "modified": "2021-01-06T18:28:43.430Z", + "modified": "2021-01-13T01:50:53.045Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e2e3393e-e639-455e-bad8-257d5e452307", "target_ref": "attack-pattern--c615231b-f253-4f58-9d47-d5b4cbdb6839", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.431Z", - "description": "Configuration settings, least functionality, software usage restrictions", - "id": "relationship--06467222-559f-476b-9071-90286cb95df8", - "modified": "2021-01-06T18:28:43.431Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.432Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.046Z", "id": "relationship--5a834df7-fe0d-4e52-85d2-6cb912d0e9c9", - "modified": "2021-01-06T18:28:43.432Z", + "modified": "2021-01-13T01:50:53.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.432Z", - "description": "Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.046Z", "id": "relationship--0bdcbf31-1ee7-417c-be3a-81c4efb938ed", - "modified": "2021-01-06T18:28:43.432Z", + "modified": "2021-01-13T01:50:53.046Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--acd0ba37-7ba9-4cc5-ac61-796586cd856d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--87ff09e3-435c-4c69-b2b6-6a2a3e84fb6c", - "modified": "2021-01-06T18:28:43.433Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", - "id": "relationship--feab0a53-78ca-4fd8-a4df-32bbf64ed845", - "modified": "2021-01-06T18:28:43.433Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e29a6bfc-5f9d-4288-b417-870811c80713", - "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.048Z", "id": "relationship--d69af2d9-c6fc-4990-879e-801b625cab11", - "modified": "2021-01-06T18:28:43.433Z", + "modified": "2021-01-13T01:50:53.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.433Z", - "description": "least privilege, Configuration settings, least functionality, software usage restrictions", + "created": "2021-01-13T01:50:53.048Z", "id": "relationship--0f2df459-4953-4665-8bff-a4c6191364ce", - "modified": "2021-01-06T18:28:43.433Z", + "modified": "2021-01-13T01:50:53.048Z", "relationship_type": "mitigates", "source_ref": "course-of-action--ac906e9c-b052-4b5e-a3e7-ae7f41985320", "target_ref": "attack-pattern--232a7e42-cd6e-4902-8fe9-2960f529dd4d", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.435Z", - "description": "Transmission Confidentiality and Integrity", + "created": "2021-01-13T01:50:53.049Z", "id": "relationship--3650cb8f-3905-48c8-b4c4-1f25c4e789e0", - "modified": "2021-01-06T18:28:43.435Z", + "modified": "2021-01-13T01:50:53.049Z", "relationship_type": "mitigates", "source_ref": "course-of-action--06eb697f-83ca-4223-93b1-c6614b4eae1f", "target_ref": "attack-pattern--74d2a63f-3c7b-4852-92da-02d8fbab16da", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.436Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.050Z", "id": "relationship--b92f3fe5-dedd-4c74-a039-6315e70987e0", - "modified": "2021-01-06T18:28:43.436Z", + "modified": "2021-01-13T01:50:53.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.436Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.050Z", "id": "relationship--70c785d9-6093-4b98-994a-433c9da94aeb", - "modified": "2021-01-06T18:28:43.436Z", + "modified": "2021-01-13T01:50:53.050Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--03259939-0b57-482f-8eb5-87c0e0d54334", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.437Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.051Z", "id": "relationship--163468c7-ab56-459c-9493-bca43a671078", - "modified": "2021-01-06T18:28:43.437Z", + "modified": "2021-01-13T01:50:53.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--57dcbf01-d03d-4234-9d33-0054f8856053", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.437Z", - "description": "Remote Access, Least funtionality", + "created": "2021-01-13T01:50:53.051Z", "id": "relationship--7691b773-2ebb-41bf-a162-09ae041b7640", - "modified": "2021-01-06T18:28:43.437Z", + "modified": "2021-01-13T01:50:53.051Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--eb125d40-0b2d-41ac-a71a-3229241c2cd3", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.438Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:50:53.052Z", "id": "relationship--e604dede-d62d-42dd-9bd6-8672ece63576", - "modified": "2021-01-06T18:28:43.438Z", + "modified": "2021-01-13T01:50:53.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.438Z", - "description": "Least privilege, Least funtionality", + "created": "2021-01-13T01:50:53.052Z", "id": "relationship--5a7b00d1-8288-44b9-b267-31a1e3d33314", - "modified": "2021-01-06T18:28:43.438Z", + "modified": "2021-01-13T01:50:53.052Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--57340c81-c025-4189-8fa0-fc7ede51bae4", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.439Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:50:53.053Z", "id": "relationship--d40b5642-a0dd-484d-ae95-561c20a6607a", - "modified": "2021-01-06T18:28:43.439Z", + "modified": "2021-01-13T01:50:53.053Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.439Z", - "description": "Least privilege, software firmware and information integrity", - "id": "relationship--787bbfe7-c599-464e-9c79-1ec0bdef9621", - "modified": "2021-01-06T18:28:43.439Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--543fceb5-cb92-40cb-aacf-6913d4db58bc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.440Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--10b4dd67-0b1f-40c4-b3f6-afa0cf10c906", - "modified": "2021-01-06T18:28:43.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.440Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--ad9e965b-b4b8-422f-884e-174e19ded319", - "modified": "2021-01-06T18:28:43.440Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--20fb2507-d71c-455d-9b6d-6104461cf26b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.441Z", - "id": "relationship--d3ffd103-0a39-4de3-886f-9b1d050e96a6", - "modified": "2021-01-06T18:28:43.441Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--b974eb18-9291-4ef9-a8c4-30e538a2fdaf", - "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.442Z", + "created": "2021-01-13T01:50:53.055Z", "id": "relationship--03b2b31e-1af9-4ab4-9d58-56bb09f9425f", - "modified": "2021-01-06T18:28:43.442Z", + "modified": "2021-01-13T01:50:53.055Z", "relationship_type": "mitigates", "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.442Z", + "created": "2021-01-13T01:50:53.056Z", "id": "relationship--62903191-a7f6-4d4d-8169-df5fe58c1e7b", - "modified": "2021-01-06T18:28:43.442Z", + "modified": "2021-01-13T01:50:53.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--61afc315-860c-4364-825d-0d62b2e91edc", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.443Z", - "description": "Least privilege, software firmware and information integrity", + "created": "2021-01-13T01:50:53.056Z", "id": "relationship--c02b858e-8af3-423f-ad01-12cf42fd9630", - "modified": "2021-01-06T18:28:43.443Z", + "modified": "2021-01-13T01:50:53.056Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.443Z", - "description": "Least privilege, software firmware and information integrity", - "id": "relationship--b3e70027-0bd0-4f7a-9852-870e29653a9c", - "modified": "2021-01-06T18:28:43.443Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--754bd5ea-57fa-4239-86ad-15b0346fc5ad", - "target_ref": "attack-pattern--b83e166d-13d7-4b52-8677-dff90c548fd7", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--77f0a6c3-20b5-463e-a5d4-8515d647eb72", - "modified": "2021-01-06T18:28:43.444Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3ee55c44-3433-46b4-ba10-5f255e162bd6", - "modified": "2021-01-06T18:28:43.444Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.444Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.058Z", "id": "relationship--23afa071-2a8b-4420-8291-5a583f598322", - "modified": "2021-01-06T18:28:43.444Z", + "modified": "2021-01-13T01:50:53.058Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--3d333250-30e4-4a82-9edc-756c68afc529", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--0acce05a-9d20-41e1-9903-eaad25ef722a", - "modified": "2021-01-06T18:28:43.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--480bb83d-3fbd-459a-8880-10c6d2a5704d", - "modified": "2021-01-06T18:28:43.445Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.445Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.059Z", "id": "relationship--1276b13b-592d-4657-9a7d-05eff3195ea3", - "modified": "2021-01-06T18:28:43.445Z", + "modified": "2021-01-13T01:50:53.059Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--ac08589e-ee59-4935-8667-d845e38fe579", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.446Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--3497570b-6ce2-4836-97f4-2a3f25499604", - "modified": "2021-01-06T18:28:43.446Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.447Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--a5b1455d-535a-461e-8f25-eb28844cd4bd", - "modified": "2021-01-06T18:28:43.447Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.447Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.060Z", "id": "relationship--f2c0d04f-b06d-42a7-87fb-2af833937770", - "modified": "2021-01-06T18:28:43.447Z", + "modified": "2021-01-13T01:50:53.060Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--4eb28bed-d11a-4641-9863-c2ac017d910a", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--04211292-0c7e-48d8-9724-8a5a93eb6bc6", - "modified": "2021-01-06T18:28:43.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", - "id": "relationship--bec85872-5751-40ed-9a64-cd321895c690", - "modified": "2021-01-06T18:28:43.448Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.448Z", - "description": "Least privilege, Access Restrictions for Change, Least funtionality", + "created": "2021-01-13T01:50:53.061Z", "id": "relationship--0c80555c-19d0-41e0-a4dd-e9a317d54d32", - "modified": "2021-01-06T18:28:43.448Z", + "modified": "2021-01-13T01:50:53.061Z", "relationship_type": "mitigates", "source_ref": "course-of-action--b281c592-47ff-4ec5-948b-f38373b525d9", "target_ref": "attack-pattern--5372c5fe-f424-4def-bcd5-d3a8e770f07b", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.449Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--29dd461f-a0a6-4214-a26a-624b80434f2d", - "modified": "2021-01-06T18:28:43.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--07ddfe8d-5751-4592-bdc1-701455cab220", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.449Z", - "description": "Information flow enforcement, Least privilege", - "id": "relationship--9f31a663-187f-4cb6-a950-2550b1e5cf3e", - "modified": "2021-01-06T18:28:43.449Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--aedfca76-3b30-4866-b2aa-0f1d7fd1e4b6", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.450Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:50:53.062Z", "id": "relationship--3dd99046-a12e-49d9-a599-fbf6f81e6f85", - "modified": "2021-01-06T18:28:43.450Z", + "modified": "2021-01-13T01:50:53.062Z", "relationship_type": "mitigates", "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" }, { - "created": "2021-01-06T18:28:43.450Z", - "description": "Least privilege, Access Restrictions for Change", + "created": "2021-01-13T01:50:53.063Z", "id": "relationship--e0ccf41f-ff23-4843-8564-ff04e2f87572", - "modified": "2021-01-06T18:28:43.450Z", + "modified": "2021-01-13T01:50:53.063Z", "relationship_type": "mitigates", "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", "target_ref": "attack-pattern--17cc750b-e95b-4d7d-9dde-49e0de24148c", "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.451Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--8fa0a2c4-5e28-4148-99a3-90af85f15e16", - "modified": "2021-01-06T18:28:43.451Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--e38dcac4-0e94-4240-8d63-d67a27159c5e", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" - }, - { - "created": "2021-01-06T18:28:43.452Z", - "description": "Least privilege, Access Restrictions for Change", - "id": "relationship--5c9bce1c-4077-4b2d-a7f2-cfec966093eb", - "modified": "2021-01-06T18:28:43.452Z", - "relationship_type": "mitigates", - "source_ref": "course-of-action--5917a9c3-df73-459b-a4f6-cccb18dc8a96", - "target_ref": "attack-pattern--ffeb0780-356e-4261-b036-cfb6bd234335", - "type": "relationship" } ], "spec_version": "2.0", diff --git a/frameworks/nist800-53-r5/nist800-53-r5-mappings.xlsx b/frameworks/nist800-53-r5/nist800-53-r5-mappings.xlsx index c26d75216f25178b29cb2330bfc361d7f4ef5e46..6e902528c96dd68250e923f2a3ace8838c1872d8 100644 GIT binary patch literal 127679 zcmY&;bzBo()VClasKiD$jF3jUL13e#I}`+@yBnlOgF%PnsL`Vlff4>F>F(~39`VlS z`R9H97<_im?!Bk(J?DJS)p++5i}=ZtCpb?=i#fHP%cz=%pug3iKZNMdCua){H)j`j z9y1pgZXZVn)db0xn7oAG$Nya08)Z6W&ENjfs;(vQr{YQaBv&gN^i#Am(TUcXTz>h5 zHTzmAK3Akp;yUOH!4nd)m7 z-SBDQK5AQgH7=H~yNei};XS%JE|pFQ9?(V z*|l(Xv;4twev?CTk}OzZTRm^X{xPH3{eZ*I?Gp;>pEW8=&xfb!Jt%LN+x@Ui$^)7 zG5Yx{`Gk{|YiCwm`xo;Yx1+%%Eg$CtQ3UIdAC%V@&U-}vS25}Dvlt1npFGKW{p1M| zS}{HjJRUZdj+X!Xm-nA)4vmc6=R}Buj;sFoSYJB6>=g=Ws3&r_^_s6w4?k3+ivSqJ zJNSM|4iD~75F#8%!8`n-+L9@O#kq?bhA3?Bi1_|J;x^xjgnm2o`8dlnKh@gEv$Uem z#{`ghLjkKg`Sqem#ROqw`=nbW@HY{#dm%Iy=baDnz|{K{V@e*zslEF7MZIuahdgqH zPagwKIBnkk(a|(=Hl?rMq~pIP8PJKhEWjYrmtkp!)}P%t^xVxYNm-8UiqY_eIK81V zpbs8)hHa=BL05IUkiYD#rSc)s zoQHrT<;wc0k4VG7SgZ>*){16pPFME1Lr0+uZhe96pHDNFbCt=(W%1hT<5z*p`sOKKx4zrODWBtdMx9jAX{ z;NmqkIQBHfgzeVz8|5rb>!Qs26N4ksXuv~n57w0J7)6SJyjynCGyEsQ$WaxIfGU}W zn3b+CWABruM%WMOvIE72?Y{-vmSeyUTQf(#-ns8= zE&cxe!LsjlF}I9>Xy4mABuo(YoM&(*R45J4#6@exVmWJjjiX;5Pp;_{~CMPAqU zRsdFr0vmtg^e@LlugaY>B=z$Ql;*;(3FRr*vfQ`aM;%bli{wWyb=wvSQVmEjQpuME z$^Vxsr|gukqVkNg8I$mPcy^N|_<}l_iU!k~s!pCE+_v?Ewu&hs1KtJTkd-p05TbNL zkcKq4mWF>c0``vjsEySF?hGpgze;`VKNw2(9G*(X2YfLRM*ns=HVM!{8!4ikahUIF zfOVf^(yi3F6FOjZ-xL%%$?w3KaHTLoro2JG0+Zh56L?;bVTjuvu4k8979}86Ld*B! z*=aMa)TW=$3*nUBHjT(F1K!Q6o(MaRwOl6hl|!i<5|o#U~_OY%;} zNK_^7+_V5UtA)PXP=B9J)mOF|(cE7L_cl^Fr-!$*OyN}-hFpxKN$*1HWSE-nV*fi~ zN8;{$GG@jd&>6QBjsfP#QaSBvUnqZ{-mGe7ZIUqF*saR*km4M`EkIWSG%aeHQT6t&%{SzT}}kwVi4J6VM~^*2qk z{@$x0K%TG0(JgKk^#)KIKTt4^WAN?6_>FzBgST z{jxq^Y>9BHV)LeO1ZjzO*`^U$m;bk9S<|UYGoovJR{hgXvYte3^(DZXub{z0xX=yGxW*6FLbqDq!;4*}iZ$sngOAKEi3USB!y?s8#+ZS` zG1af0F_5{fA0L0U^NyRoJ3S`I!lCdV^5G zhT02>g@Mmr$>S1gL#{Uf%PSa9u-=hAA^+b1;_d8a?`~sh>EX`vKmYzG ziqyA%aHrDuv$@yTa2G6%>2(MYQd2EfPC*)odi7fR@})X=5;HNdU|?f8a&$aAd#mMh za9^<hikc>yn|wb^9(em+;~(5vxryS(bCQi{u& z)H`@~fqNSDm`jj(IAq@Vm^+_ny13|+8hfR%vvpg(+S7Ahp4nq}59_$UxIX^5{BT&6 ziCVm{YrhK;Z))vmHgu2_)3?d~%&;i>Y9(j-Ma{v9}*JiEPpGxN}WH?rOoEOx)}lCwbA?f?8WuEDQMK9NdiJ%W#dGYPo3g*S zXIC@t@O+tT3PoYov41QOC=gkiNI#+Qx#~FaQ-SjxWI0W!(D?!{@d4#MP>wpZyYj6z z=%5Se_;6p_bSvT0+cdXTlg70mR#9PHM;Xr^Zv3HEK(5wJ}Xb9ceQ-`SY<;Us! z3%}+Mcl9k&Gj~pPCWnoE-QU~@QAc()Cf!o1Pcyi2WmB(fKA>5pN*(9nhSevx2k?%) zUkiS`acXR%Xft`JmA+o4z1-?-EGHP~EFaOI-V2Gw=A!|IF-;=tva_)MfVihR%YuLcVFu$b;VXq&-sxc8={iwQW#pqtCUChz`slH4 z(=~DFvGrnd@6srj%GO|{$axS`CIx+{O_YRkFg-Lrh^G>PmmfP-3W0a)n2A4>GW0XCGz5QFdLiy z11N$o`NUDkrd(TqFuR}5179~=abbDMB$&4Cww`CSTcz2bRcaEn6=s{v+Mo#jwMI8O zwN`2(CN?f@pfeJbl+?G^*FDsMkG8+@mN_cuF)>Q@yl-gBD4Wk!XWm}SAqmIFbG%p_ zp{juEaw4YN4m`EA4t8x_ysP!=Sg>C>YSa-)N4h$E-R+eDeH?>l9eop}@fuj#P!Uu@ z+Rk}oZeKs1`uR5AmZ(21x|4}vo_<;)WBeP2wa1FT)b7Wtqn@24GL#!O6xBI@(cKu_ z$MeT4jP5duW73)}B*{GY0>|#p)HYj~*o%l%|J*V)ELy2A?m6L2ha)?=v7@Hk-1Sd? zQ5BkSRZ1PchD~R73%7*n&u^l-8~I*(c6B(&+j{22lyoB*vKPP%*+nd}drB~&;|`g< zi*oPWY5g*B;pi4^BF_oj9sH2AR;_z_PY;+Ma!=DVR9G9lgCqvSvIwhajvaE@!etQ?CPcsLArN z-fg42$Y-uGMf#H5Ahehs77O%ZtZ7yY*>G2 zO^uZRHiOGXisOgaQ5=I^4Uwz8|7~i!33=-^M(;0_k)q%pBn8W zVU-kPH;?7V=an)m`#pHfl6ZQjC)`|1mo z^04b2f{><;xqCaSu971t^mx%}C{9g~Ki~bKk;g0_ymCD%MSXNHZeotUa-j1V1dn?o znTLHneit2mkBCQ_2iL}hrTbX+Rvih&S(LP9^Zhbc?r3R%JTVR{O^CZP4>M5f@|Dat zUb!Yo0kMle&{_;UMi;g2A{W`1Z9>qRJ9J*7KwB=JRd}h((e0JQeihDviz z@@c%OMtRnJz&GJ>t`g2oY*ZRMOiD#Np7JSulB=U);7({rdH09RB@$DlqgI#uiVrXw8N3*)4uN{v4ECCYvA!lV_6 z;gCMH{@#hlxwfN>#>d|<<_|FDlT&ZaDqi+L z#GdBKiLG5SmMlmu+Nd0cO|&*vnFiFg%;y5pcjJdgVX1KU*| zBI0%*1dRZkr0|I-$kGQTgrkLM4&%(8ku}S9dakNQBhdNWdWAYVa zb@rM`pXTi|K&FhWZO9^orV`8?GB ziyZ)H&h5&R%dTWiL@#sb~eu>w=pu-O*gB;z=zq3`~F?U}*2 zYR$wI94s}KWCV?oZudNsW~t-YQ06R~v(@ZN2o6{$@_JxYqjJ8ManZb3o%a4(pvmi=ymVz)bN3hc%8%H8^TH& z>MlLoNqpxlaFLK&Fq>mdijb7NoIC(Z1&5b7LK1(v0s+e+iwEi1wboV=w1v3ATa_IqYb+ zF4dC|=N)GcfmYjxwdY(8sZQ7zuvdF^sXl}_g-o>#s^!5xUy%>4!b-w^x7z3Dvz8l# z&})uKbbJ(CyLX9zj~?bcOh~qmO5U19efE)EBW%zq_xCA49=QrD3wzyaADqh{>`>w= z+Hm%u=Qyt6xkfmS2Nxyzz>-dXB>jXj5^^h2ccs`t2%Iy?C65|*Q`Calv!zg<37@*g z7Y)nAG^(~O!mAxydibSDMkHD_Ffr2ukTM62eBWE1vw813^y_Vu`fttl001YR&gBNE1wO=f?jP|_ruO)Va2wa!%M%q zx!jS(N00UvKiB3av4w2Z+2!S}>nh7+DV5w`?N>vty3MIP6aF74X2d_hkA<(i*DSx6 zO={sW^yo#G7<&5K1nuRCT0U*ZA`Uq-e(MUJuRWy)7_j79&BBXsN;9^4%k@@0L&RpyrZW-t^%{P4`{_;VYqcG=Fx#=WT zF5)}aa%zd4C(15puUvEsXe)TjUWg#pSENCdDW9H#Zd!hSHJvPcEYmx!)Z=6k<9`F> z@UhbHmnlEhNam$Gfl1B>5c=en2jp>7u3>lKf$XxPT$a}DBn*(_p%)>4|H_JItm(I{ zUSN{_mhb3gU(xJ92)BVE|2}1m#?7YzYl;yov%TMuNR2*=<|f!>ZQ#R$;q?v+JJ(Cg z-EcrtyG=B9PE0YD8;l+~CQOK9)A*BJBJ@~*k9f6YYb3Q~vn>{D6hG~c;~;}+1}^E) zLF8J8^rdXu+e=WkSKPH@Uj^fMnYhJ^PGjm3k%;T#)OJFiwDuojd;u1b&jO}R-V8{O z<#6)tZmW|%lw0v2TdjClBVN_byvL|Rcn_T=ZrEb*0(cWWKo-M=m@ZR#X&W9C~od)PR!d6`PGAT)zt3?->5Xz%aMkwK2c+gIg71~uL( zD#3F-v-?{TGMlfLM5 zoQjS5WV=qP=2E8NsN;!*7fkt2ehp$>C&=3uRzZ9lgnbgewEG=Qh5 zdVdC9omDdplXAao{E@FkY#5bjmZ!|L#%}*Ca^|bDBqiZ|dBBy^$zo97a?sR=+uh0N z^Sx@dKg?GuGnQPx2>snkrRGLvf*-DLvyc9al&Wp$Sie_#8Z}i^|D)SThavLV>m$>h zTa*_Lq@<)|xXB1x7CvAplZQx=J+Lj9;2^2tDL1-*V1UApCJE35gl_7G#;oXT)f|aP z#wmYIBIdcr0$mjaXn8p0k z42M_Zm0&nX^Zd^rpF=K1CJCbAh$hDc$y@7SS=H;w4azkKwzriNxD2vgyobn4zKkbQyfgS z<8x&G=g3|lG5sj(k7}e5Cc~CW=CzBS-Q0Pd4Qs6p^qpS^x_}~!wAw%&T3uBe?5+Cq z-0;Pt&uaIXT00~s%AF}QK75&jAq8bpN+DmvX=Dp!=uB~~Y0cO)5@Fb)E;;$GvlQ~5 zb5Wj65yMhQp9wCTAKa73d{|~+hh_W6X4JSw_&6b*k9kcvanBU!1@HC~d2+g6cRrNS zK9sBG0j$Ky85-2Xq%q{dWD$yYttD1CJ(VS8$u%aTv&@Ayjd}*qS=fs^l$9Duh9>dv z{A&3om!5L6f@W@t>1V+{xKZuo66*;QbIh-iZZPbjH!-@SMvU+2L*Z+DtGwliVc9_` zlDC86BsOn*3i>MmOTa!_*P4^GJ|lAmE4o{NJHb6(DU`TWua@>|AI5T-qDM4GEj@PlPBn!{p6SaP!3r*TCXbjXMut%mIQ zn9Q~8Yr@k4lN1KU`-OkxYYL2~Epxu3OorN4Fr&@fnf>N*M%Av&y?PSye-Yrz=)mIcV0j(8$FC<>c})~*P5aQomJpLE)?j?vA009R7->ngn`zR zA2_&?2VvCaK1udCkUD4u?&NcO`L&7+d%Var$w0=GjGvjB#25LUEW~W}uh@vvJr#Y4 z72v7nZzQRv%MNyD6RV=3Rk)M5^GMxAZJ~d&`0pw4wp2QT!d1cHswG+muK}Xj2vWJh zbQ9e5-AU)_Xq#%KOGul_hQO58D_-kci2=`YD`E(|zfS40rwtq67l`*4?ZWPw&}Jf- zsTGl?)zE4J zP*Ut+I4>#?MCO+Q(FS%I4)U6XF$o!z$Ax3LDQ`h1XOxjN1&F90*9BtkpPsSB|Yi7)gN0_`$o9G@RLT zPdxMC37?ehZ1h%iyMpU;d6 z77Kv9rnB>DUE-3ay%hT3!4*vC4qneJGta-r$%w(pC?=b+0JVL_#b3n{6zc~n8)%f! z$?*f^_$@+k?ir|=Xkj7UTHiA-%nTYw+w-JTKMZHRWGr7?TGIbM>U z{B*0`3&u34v{{0MNDTVtO1z*EjRUet72-+G_7+;ARa~+tmseD=KfaoQbIfL{;OQms zbl2G2Ag@^P(E(|cD<{>v+^?2s+H6&AdP%L}ZH_dHEUXnO?iG*t^P3wqQoT<$r$Rh8 z*!1FApBU4yuP0@2%wL5!q>32qOH>v|ASBiT6^$m5Iu}=<6qN4#O-D z8hmL_ukjG0CV&@>hxK(EjWRR{ON>|S?n z6s-7ZIN4q@DlLyl+ED{W=iUx&UV@6=>x4!xXA^YX)*A#%lu2@4Rw?%+JCs6ebikon zR3^#nVwJ*TYPovJKE9p--!7`@d%Qd)cw4CgW=0GN{5;`^9J#?iF&7jQdyU3Cb8z)W zDxy=bZeHqa`PO7L*?h5kwS5TeqW3I#Z}i+=9{;rtkKTUk;@Yj>&BK8B2ai02j@%%j zvZ78&u4Q|FtyH$9;zsSODAzbjLwR}JXvzzs3NqX&7*SlbMkvEkngB3P1qc+}-PYrA zD;MU5?!L}bkwCdU#XmF<;DC9Nhh*GymJ?JvS-zG~jT-2D~x;DvZF6yBR2e?Kw4Q1beXGI-1e zo=+%FIq3*ION{!8+MJXOieIjdQPtG=dp<{^5u`689>)P7n zYTajqqTf20e#j4NGi^QOZxca`tmeAY;&om1SMMhCx>s2ZE|(kYozCDU_KpRv0HUFN zT4!$}Q38w)Qj4`Q-FYt1=BG4HgroS|4AfuWi}&UXrFB?0R+zgpIaoRG@fdB4(iYVk!QYmKo7!u)wekg8 zJ)pJz#_C`hEvj>)b0k^&iA~$JZ3Q+yV^wPF(Ct9GlCU&a z&%ODreR#?E;!`D)Rb;#P-od-m>Y`BaZvUobv22^{VV_Z=elQa|(er9cP;aXUDC9$% z8A&q8OKcrT;Dbb5AvgO5_U}jh+^@;>eQKf<+`=<9!&=46Lq4>dk(A~KiCI|UB*kzX z6ctT@aCrSw6*#L0geyS0U=8aEVhk-;$@cmQqnBtC-A-`@EmaC)&C>xis$M??YK|lwK{eDnG9z-^?ppA`EA- zs;3PO;Provmg%c-MZT8D=o|n2Oc^ZQDLb^N&(XtS|Ar_2{3&73hz4s|!b1qxv#FAQ z4KG&5$d5|P6$DSrN55KIEfuQrOY#;-Ir6mNtaV3i@)K|J3#1G@{jP{!s|+2~wkwx6 zrfOr9H6`UN4ki9~EgwRDucO;VN3L=kVgx^u`KKAKEDPp4LcRkL&c*p&gHI!u+SaUE z*3f;%9||B@TKo90v^wMIV+VV~o&uY!yc#SKA0!09NNevJmR6%aeQb{=JckhX2%u%SHn$Wy$^=Z%8huDozBNW3{$lrdS9kKh~d{kdu#R2a#0DZ-hHZYM6q zg&Y+{1m>4&i3T5G&IXWz{@mnb>B8is&%H*s=+n72(sTniBZ&tE%FEv-$;)C=+Rvid zm6KktY>d<;j@h7~_|30FcJvW!5{>S-hBOkaJxS=Fb99D6yzHd|QR^#E*V)}Pujlpc+qCQrvM znx8D%wUg~Ef}s{7-1b*L8AxXb?ujX*i75@8WifMoj*Yvl;hzcJz0R!{9;T|{BQ>l) zYCQ84uA&vYUMHBLz;RceU`&)>H#;}vJT886?JYC#H}ka*lY-45z6cUiJfNFh>mOwk z|E-+^ya_siE_bYsFQCsZZzFXJW3VWxIC?{L)_H#vP8bpXJ0>GdPb3 zr-|JL4k0q{#X5--U#Ha5WDm7g z3XH=6pF}6m36F8&8~-Nlp(imsS3VWf(z50Hf%e8*>jmcNYWQ$86c&AY@JHh+x}Pl# zJCmTp__K43xLQ@29`*24Oj`S2M$(xZDm_gOBfC)jFas_I2m+BWJD7t-_)-NEue^i= zBA7S)W&)_CW4zCf^x;E$4~0NQzOKL|(m+wIgSrdpp1Qe_N7IdLe;3bs*= z>)HIp2OMd9zt4@#Vq2rQS`(}=H}sfB8o1zdGM)wuAYRE0rg7!CW}0-fM?ykXYmX6@ zAVeV@!TOBA-n(}C^WL{9!j03Y-1^7XN8zBcffW6?7|hI1WCi@texO~PI7|Eq=qnUU z^>$Sduqwz)S`ha4DHG;^9>al;fL*Kv2zb6TJq4baLK?s@tTY3xHC#>!seifJej;rK zGwqD2!%G$6wn6FG;QRrBl_w1zT#2sPejQ- zR6AhB`LN>IXU*w~5~gt$B4Y88plm3X=PivO35}p&rRuJC0v{kahN#cQgR&DW2Eg4r z53@yE({7>oxiQSulKpIu`Yb`YGC%qjfuxdOI!uY(?;Mz)--mh2NSVN{UH|?C*55`5 zkVFWmO2d)h16$?|8hDmW35jv#kI9kz(*FEXS0Xyk}Q}o8CR^bG>s@%rmV( zhMG#3S%J!|dc`d++@CT5tt&+$;iSBJv5GQ|{3-c*OjCnRWE#2nY0%uBHSz=_Cr+K% z>FpPG_e&YkOBqG_Sk|ETRU+XQDef&XUnVEof zsN3aj4ClGbMh~Y5Don8Sa)Xp#M#sz<*)VK5G>2O@yq8A!B^w2bA=02Q(u7qTL9Kx~ zbKF>`njo7CQ2p(>-lSIqQmU;ghjbd-1S_^B~CD>e$-m{q5c=N~UF- z^0`YE<#$WR;&6ztc1O)te$7^|CC}n(pk}Vf=R+c1e<}!PO}vl=s~W_5DE`^w`BzRB z^Q&(9V^+8zsd=Yr{VGZJzd2gL=0DIr9NV5M$2tE9GVugewVZ2( z$9*I9Twir)h0e}%n6DlpC}aSfMrH4K6#Er5UEpxS^&zt4>#g}$c{3ztlZN)dGP1T; z8>cK|Jj=MhAcnM^06UV&IMUx12b%=T1pl6Ja6Mmk*7MFp1O>D^JlFUZ^JDL1jf7)! z|AS@`;*0D-iO%$Id;Ch%iYcB;y7M0I@~h(u%jd@LliAqI_)}=GQXlLBL*^HK$rVbH zwY1@y=%V=^Ho5qEf%V>F4=m={Ysq=C!xKw;W)RDYOrX8l3GdiCbgO9(B=&16Xzsg|6kR`&ss0XD!brs%o&{3$HRSUv}#~b)DL@(@w%*Jv?)6N5^k^xQoY9+^Z2`0yj z*X9023k3Khn9zv@UwmRl8Xp=VE67iXl&1;NWCF?CtA?lXo1H1dtEL4p;6WJh;$<;Y zsi`nh5!|wa>D(3{Hq=ss$nhZLc;otMX*i~Moeb19R>ZqnxHYd;rNbgYVUfEW$|^{j zDIglS-iu>S685}(CP4g5V6alvjL@|T@dCZhTVL1f8LU0wQ4N7n!ea-yg5Hb}&4T~g zLjKDa(%q5~h=4$zPMdZZ10(_MWAu{jdKz7wBa?n|A z*2mCvwt5Ok4ZEGqr}yHR#UobakaB1tzzeIrGcINKZ^4=gaioGGkD2_%)&kA zBuhY}W$^q&c^^mw0tlQk8bDXq6zA#Fag-(ic5~Zs=1y5$+?Q|!8a5^N%Nc;6QEYv{ zJ4TCm&p*oGTUuA@-=~=!ZsAbL@3-FtfZql9QuLmGzb4i(vgAr3bT6K$dk?mgx4lR} zqr+^kHF$uw?IK^`WW4@%5Ka+@ z3W*GC!u|(FE_c1%l3@DcWbYd>^VK+wFvpjnY?Y)O)X=+Ye37JR1ScUgSJ%53fBGO8 zY(1G}e!oB&yFh78miq?!hYJ7|myMswFP&^9Cdo9qpQDVOqqH`?vnS-uMNFVgt~KIj zSVjSHWmmS(`pKIZoi=V{f_C(xkv68ulNeQi@%p)=p9<1p>IFJdy@)4C5skR@6$JPS z@*a(jJAe5Ia`}qY)u4v-!Gtggh6oj~3PH40C+)^XVzEDN?!>l44ntw{J%urJ`QH-&tDs1{qL;j6$-gw;;c6Ec_K# zL3gF;-4F3GswF{hRKagl$71E^(bwub7G%~g+RKVEG>yu&HC4yY@d6aV@Ugy!EIryN{r!4rr!ORjF>MO zT2|FYpffvr8T5?yoJ~v}^v3!ElLCR|bU@#BL=)N#ta5$1&`wnYf*0>nJtp3liM=hNPX@@;IElpowu z4rJc46o;c~v#Jo1#QX}Y-m%S^r0QHyOj)l+8szSYT8NUa-6aRit{6QptFfg-v;^(38go?n#pg|^e z76{;B#KDS;3(Q;wkjymRdt^j=WKg{P5~i@t+*aB5uXlDZPp($)j7k?EN*CbgQ!-_w zi$0;e5ec|YP3DpfRgxlD(VWYHu+G~SX_M;o1d@Z3v4oSM)^QivzrK9A zx}o5$A4`EekeoyP$dhcL0H3m9!Wx$nUrJ?LRR>J1Ve?u!t(LsnO^(wHKSmc8|>*yY2~Yc(DqOnAxfr5bO{3pM*1G#K+} zku~~otf0mNg7xhSpNDF&4Bv!m+_5EC@`QifXXX^-zjmF771^tEMhZgfGOBcm&3m&} ziN8r&UvCPKZ3?J&;G{;o&-Lb-&&v;7Ge+&fZ$uZ1M(_JZg2YIYyLgEijG_C zulb-3X!=A39qR5VW^rSK?>D4XJ>Xwf_ zZB7D%>(qFS(E@|j9R^P61IFD^X6#WW6jZ{Trf>m4Q?+-kJ^ zSnT*Dl?!G=3=kHsbP17X3Z=C7MYq-E@40mz>iy#rjoG0dD2D*oy}EAcZ7?NRk?C)- zVs8$(>?)J*(ysjY4_6+}LHI8RKMJtMN49oye_%;5hs84Y(X@W<(mwuTFQw_Li0*?$ zKWu=9fgNXW4z(SO-I?6q`@;6-;lb}F=wy9Ot$nrGlH@yM-k1%$hV4QVnU*0tdv5}} zXS_jh$N2SRutU(8Zp$;lpX4vU%gcl)uLrd!{ig-yy{y+Q<2dHKtlk?l+1is2{O@M7}p1D}^tTce^6$&EJYX z$F$R)_aXw6*wmDGL~aIlx$>eD~9Ub z9PE%05BZVL$_3W4?DmpjX@OH=1}haXGm`Hhdof1)iDQ9u^z+>n0Cl>_%+9vt9o5{n zBpwV(tT}GUL(B^xGaR5q9`MsW;I;GTM(XIqlKs4>h{Bo22h@!OT&MmW4xrSkVePU?3%r9yC-oRj z(p%-8(?`CR#LJr@;^G%D!ae{1YV`-mkq3Wi9!h#|)Sj|oLb_kYM`DD4!?C8$p7Ek| zp4a>;RqJM_h5UL|cZJ{uoEg}YA+I_AX;!V9gBH^BDn14y(cl>%5%C!`3u_}%ZrzuA%6-(oT-taACy^YiPc1filZ>FeK%<8&Q% zk@XJA*&IS_rHG$0gQ8Sj%OoR_cV!eYWfWu4(gPmci-n)2K+k!%H*ow1#YE3u zS~I<{4)?ZAR%d!4<;pq#+WfK^XddET6scQ}hE~l;e&}r*sVUo|AA<@FM-NkF(e#u|iX-)~zTy>WS)g zv(-Z6<4c4Lgn-uHKkRcM59-iO?z*Z-9S?N+q?uIh#57#inqmo^-L{0T`WniyW4<<;ZmF`0c}+ zF8X2iHa#yWg|)BGBs;q8E4-vAu*BM`7A}*e>jQrvbRT{^(EmHP9UO#}0KrNaPXzG- zT9;{kjhW4#fB)OAe9?m!cfaj+wQq&`yK-?>ebBoy+32jBjaRipd@8KA+}{U2keAw^ z$<{le5W|h#J1=nN%y-WEnNARW@&Q96lyO2?QjXP3GcV{U9&!{vPKHc^zW@Ao#?@9g zYxPTY$-9oN-u$gzpAo7+#t`r-6)yFFroCWhUP^U|QO81W{zC7ro5fld4C7jxdRMQR zVhlG{`AXc0Q_RW1BkPvbA?&26N_d|P_Y{#LHwaKS&}qx{v`F?`KQ9tS_i2>4meB8t zvUg4I=+B(~nqBRi`y2QjUHbjKX?lfB%p5`lMWU1F84^5UHDPKZ>+E-Scu{GqG*sN% zi|Wlaip{QG2%IpS6bRQCp*Z>B=}S7K$p`17Wdd4h{*rS>M-a&IOVC(Mw1Fc6|)s>)7Fvywc z)5*IsT2&ieQi~h$GUo}srU=F_w1>+V8XBE? zf0hW1eKOYEQj{abMT(Rc3r+QjH1)rp*Al5Ruj^nJTNtgMioq>I+kd|01)#mD*~7&^lDJ5BH-jr}mTo@YS{{mAAHMr7`Wh%n!P8|{Cbi_NBn+M0&r=dyt+NVR84-YRZ3 zo{JGq$w^g>SFM{XXD(TjG`A6gBoTtDRe$=xf6U-zgyLcwa6q|TtHhBt>cjTp(Zka$ zMbn0-tWppo)w-%lLFkMU$ytJW0?Psmu4|)GM@n&iO7ZT+O&X3^#U#2a6Z$Poi`}Rs zon8z|FP7)qh3P1Q)k+DyKDqI%Vk<#gWp0ZE(3!oUGAGXrhArn?HzkH>ti&~m@TU{s05KB4VAQ=%uO>pXgbc#I`V#~3c9Pm`vKG7 zk2BXT{KJVdVGV<3^D!J72x{T5=pKK?em!Z0<_V`D9U%X4qWOG-5*`6CzbuR~aME&& z)U1e+$SC>?js7udM2oI&%EB#Q>vp7B<)>Ngnwz8d(^G+peq}drR+>C6PTwgu^wWIH z)MdKAj+3Czm}6t)N%{a)D-Tj00xJ)V**^sVyp8tRkXg}_JEeojJ^e`)ok`9>+!xVJ z(?BF$Fg@u?D^R7C{QD4t07W*=h7>eV_?5%F`S;{VxygoZu8BNhbiX${&b%^U z-S>NN%|zSWtAZV3!%5gQ5g3F97In}iKbj*p1ckgNdq$c1GBOIRXv=(urv5cW>{Zhp;srz~oV1z%DD`#JIx_--tZEb~Z-Hr-B zO+87Ia+y{&!=i&Jc61GzAz1m&ve>Yr)=$$g(C@b_6MLk6JG!vh2c~3u-tX)|JT7*( zOOi@hD>uo^hneCGoPd{q%gJsgVYx--YgvuPtLm-`+dP2`U$S!U#r7fD7rU0cX(HuU zMxAIqENnNwoq9Fik{cVE33KNCw3c;*J~KyvI+zFYi?$zs0?71yX`yMEa6@`Ms5|`5 zh#X|4eug|=loPPgx^ITcZj^L(;*1*PN6{{Lg?y93$!-v8ToTcs$m_XxFWr8X@^ zjMl1Adq#`edseh45i_mYrPM4z5PQ@LtyL@b-UPK*@w@$efB)W`oSbv+$+^$-yvB7> z=d8%8yIXu@-C{x3JgYI`cC-F@%iXn{yK5VMZ#Y3$zT|4|ub6bzACW};I@E9%e(s)W z8N(K(Zq5auG(+)^_g`XD)LPC~bIw*bR+V$y>tk$XOk-EM(BV+*dA1aNwv>)YWOs)N zg$edHw3o8~jGlVOe$M>W+;lCTs4bQdJ?$9Q_-#nN=}gn;S@)P*$Xlt?_&%NU_6YKP z1{xD7ofhMisCiT~oil=wh{S{J{JkXodr2KDd1WyCU0EkREJ9g{CDPSFOISPG=X7n_ z<4e>Jk1sa*?6!sRAbqQ7{&U%Ek%pbe)MxE7@hjuvp$KQH#c@FX;R&IUT zjUB|(h{c)4Qk9rAOghGOzm+B={14)^X{cjte3Ich{g|K$WS>%g#WQxr>{23Ado)<; zY<%qoyK0Suy@1h zFC$GiE4F~6CE3i0yMr+EMWL*zK`H~R7p|Aw6r2#Hj^!dqFJEDfy#aPe(*jK-IJBOy z9jY15g1<)$vE>B@^y&YI02M~a6ygB%0}znQ#g+;C9=j=o$f6W1js-x}AId%hnM+Z! zQhCGD?j~Uee$NN|p`L(#r)iLguK@bl1^PL;C>n_}*sQ3z^+Z912$No`$pM~e6PD_&;_r)Z%MORL>wN+0u0g|DKzQOSR81+yL#gzg8o_R@ z46<$~dbtg5L1su4mN zglH$^un>VRCRqZy_|!O=9&o=I*=^5WZ@2MPywB4%r?p5Nr(de%{ak&hh&@ah6xL3d zjL?KO-%}bN{CN~9OY&^)qtZu=FpL4Cd{?^ji)C8a8 zSQfZb4^t>s1sAItu%BMiQm&U4Jp6m}FC}vnCG+d#R4K$fzmrfi z<&+a^(e4xL<--|5dynriHO}`MbvNXCqb1qsd@Q`r7zn+sxt4fTrK2S9X%t^N@RRo- z%Ecisg-S;$N-)GF9_LA_+-(I|=}>^DK?fkG&SFUbO=C>DK^RPpqP7TUEigA|f-8$SfF$%sS0&3&&e-(-{#?CX5d!#%urPu{Whiul*FgqEVBNWchWn zn-J4;GVCfihSa6(D6?8l@AX%p0_RDYPiL6I{5re<#_X0 z@c9F2&;#k8&5^wvFkY8#Ie9ehR#q*MI@7Gbp{?%F{Xn=s(asG z;R>yssCAvFzu^yu#ks)+Z;0g{p$%@Oo{pHQ=Fd4$4?27zfTM^!@BniBlhe+)EBX`T z7Q9Uh+NL#Rw3Q-#VWKQ_L@Cz0U!Z&S(zcG|zEyzupCX+9VCKhwR= zNEVtvW+2nj^WB19fqAF`%(!7X;3MYepdgyFKuqKNbaiF}2>+0CTJS-o;%zN_C@F^b z(|MRI;t65Kis!{l-v0%@-mf7bZ|6% zk~=_K$ePT}ksnBP(9_Dp3PyDrSB-WIOW7IC;#{RC@xHzTj~+0gBZ?^Gk|_KN=v_A1{z%x)+My)0Tl#0|ldZExjknjwHAu%@i$5@O}-QM@OF5V{>oE zFYCuc2TkQTad(BU$Vu;(+KG0SIuy(rJBAUcK316hE7>d4!FD){IcdLua{_G_0*9Wd zKetEc17ZWiqcq1CodtzOv&LFsZ>c`+oAd~DWVDZXReXO>`wd(iX!}0!(R1}*4(KwV z^^1XxVj{yBWb@|m*07jI|J3un0%_dA$_Mq08>`7iBEO1tM9hFlZ+k3_3{ZF&xmH9t z`wXaj>Kmr8hInYtoa#Hz0E_SxSOn`Zfo2tSU#xxUj}x)Xy62~*J}j`~n^c(Yn-%YA zmvWX?aa2dve;GAKcw@%yQ9v$kAdQ!AO#VQ6==vWVZl$CmX56D1mxdf0_#3zhKUX$} z@6YZG=e0LWtB0#f_CiLvnC!`thw!3DW;0DBbom}tTbye#Bl%4D z7u_1GBrn~hgTvy11irU7k+w3&=w@+3P;daz1^h$5%7^}8+Fu7A8H%K=q6^&Oi?mak1BQI zfr!zLpN!GV*AISa?C|REr&Row_s6z(VkY)a^!AP`UQ2|h&0caV1!2b; zKhJ=z=pSDoiQfL>iqR6uSF%5T@Jh48C#fP9VxQbKz&y7yBbaX48$L{+LTYw=NrJ^d z>Vb2HLumc1XIamD@Mwp>T12!00H z_Ls&{G<5p;D8$R6)V`q9>b1GSvY=`ou-)zoLgi%N?uJS}-#6i)EN<$vvPyr!F0}r$ z@?kEz$qi;x&_k-Co>{)1P!(sPWXj658y$;YPsPGvM&kPR)50XaU+kVwppO9hU81$Q zakLf*{E1IarmXE=;AIaLPyZ?F!)uzZ`e9>n6H2;t!M{H?q1HYVQpt=RCZET^fP90g z)geZQ3m)Z@(@{?_1)e5`yI4~|>|q@f?TjJ8xnZ@dOzo?fjHQILRhnZ}X7}DCPA-S; zEZGn)Im@LZ~HLBIJ-U@6GK4i!mn5Ug68bR-kIQenws4J*FEwOjiX zaua?RAvG34r9KVt8lRl0dP4dyGVrkkct6g9Yo=tIM#S-Kswm4@8Re|ZHR1h9vqKZ? zmJTKS%nejb!ieyMm|I*n8tiJh*mUOcRofgt_zjfcO^U@k{Ik?@n+K$n1$iM1o&7MTBFi9I!-49n zd&`qzH!~Z;(WdL(@X`L>sPmkw{3bm=ljR`4r)y&HyFQLkStm&3_$TdPSyjTbwc(i~ zikjcMShzV_Vbkt1fjKIHnUV9ZUF-#|vYnF<(9q=Qb!g0!)F)45ugia0mR9#z(T|Ce zo(4!!1xWpBzBkDc>gn_WXlH)8Ne)9#clnSwH^3KSp$oAwL5!`Xy8fIE*zd}OpQZK7 zH*C=}>{97YDGry-%u&tEd1diHBw*?!+YzVjlXZ%(OrPp>l=E-;TW&sAq_A7@0RS@B zR5yxkHE%z`Gu_7&xaeOn0Vt;1*e=DI{)N`T)>hx>fPdotHy7?4m&9fkAWUq#wI8R= z)m1Xg-J(5u z{Gu)Kjo(wnAa*z&4gn>aMGJHghWR@j3-tTkkrso-ONW)#nzy&{Or($t?|Ycu4FfR% zhaDM}z7%Kphr`w@#Q@zzWoS#3FY1PmNMBGv!iWP)KG499H)vq3!$lEB-bhcTf~^0P z!Eb$7)ZD`Zw{x>zaMC@_{s%pG=X;!kM7bB0oECuCwoi^-stDBKns>92g@@-4=n3(G}kyBRH;)! z*^^-`5yoezVy{(E#$gL~#TuF-_KIl1D1G38sEI60%iWa)Vw{Skmxu{oBg7q@(to55 zS;vpTw-~8WLG_fr=7FHREF)l?WdPEjw_X4s{mR@*!cKdDs_r?ko{7ME4hncWer(>R zj7q?pYH-?RX>l6LraP+Y_aZCOUKv4OfnQbA{rdqu#He;|+5!zW2g5Tl_89`wGwXQ> zz%qOyWlC!=;Ko`|W38cLXATgRsgpoQ%rI}GG_6eV{=pmY{+o}M*0-V(I!t9aS2JW5 zzQnhR@hW`I2Y=3=7(+pHYf0$3Dn`L}S?a(@QNW6#*Yn;4qRF`h9GzBxky-*HZ3IRN zC_o+4Ed6gqAy-Ua0wc8pM%o9A6dH|7%O9J6nggy+GDl3w%FD=lsaWZT0-9 z^1Aczbv@lHU=lWn*V=7qiZm_Y&V1ZO?~gLC*AG`}4DAqmGK^r9R|Sz_29h{EpZ!uP zXR!(oe51etSl2-&OWlWHXXMH6!OA_Lo>nvP0Y*Qm3VeV#US&yZI6emAVR(&YfcDBPL|dswXZ$&PBTfBAT0=nvD34#? zKGi2E+=Lw$alo+pt#;BYZX8UWN$}E`sLCsHM;~DCe?%Csa$^{w5RrP%q+r`L#f;In zXlc;Wu-aAde+BX6CF67+GT-K5Q|cL`zCv=q?h!omLw+#^2sjqrtAdv-Ow^dWJPCf@ zrY=z;#;*vGV{;VECYL8|q8s!pnlvkdm%kaQ6+dB-P=bSAje0jlPkNv0*3*9=ZB9- z>bI;0>UsqSG6r*l>9s)BXt14IHsZ|8AxwZtCE*CCmGBjXNWhuebK;nJ!FjQjj9M50 zSh18Vf>2ea+HAMHcOcJ_>s^EmSL&UR+zUIO%4gSYLKM!{l71AVqAEAm-~vWAe3tMN zxF@-mP`#{XhDhi_8&TYfdg&c%*n6!}ihRr4`dQ7lBcYv+LYb6ek~5V!eX%sKNr!%x zZ zq5!p$&o*9v=~yss^e0=zI!1DrNaZkoI+f6)2_rcmF@gbvTshMba+sjJd0oKt<0H2! z=Gr4^`X&jTvXfRQ;eu}2B_1(h#sxdZk6R;EP-cLLicRyj5FSYinPmb+ImeQh_|v?X z&{6P+fSyLvva~|pyiUSAp;~p0hr{|*V12_*(_EkvV^X1x7$GVJr&rO34UWR~j+yXY zAdR8tCzhi^Cp?l={abj9TUQ$~hmJhHRA;2(`~biKz2o=y`m9mgzvFZ35V-;8I2G=D z4}kbn8%^^_QseDT->l#zSz0t%TESScS`Ms=4&X|d@eA`(O+3G>PK~ZkWp*0%n`FNL zGy*90NEjRZ{1zrZ|Wz|cz z;5~DCWwibp%azPYUZi5io(9Dgf4&Q@S11|c)#C!`^x-wP-z5@9RMrbiP}|nN7NZ)k zFf+zHp{cIi`U%9J>6ELi@v4wM+~F@XoaN%;4g_7Hlm~W02Vw@CnUD5ozDAO$tm9QQt5(7CAa<7-kR51|S&@YCb0^{b(J(W z|GqKz#W>yiQgREL?la*-nTmj$^>K}d0(E=ij%ogCP5}FFswXT)YIeNDSKNaHeN-Wk zeR3A72Ad@sB{!LNLd|{AO_WP-=uoHP02TI><|h7inJENxVxl41L5RYiHs(cDGwOf@ zD~fw8dtqSr2N5=1=n3=3U5l&D-7NgAv63Cn1bcy&L-5)XW|ZZ zDse!m3Ox+h`&=Dnchpl%y)ycmUi}p~w<5{nABvrn%acT|D{(7%{6*rpXhScU`p&j=5}Fl~ z`5qKC@Bi=-w#N=p zr|&SR zl%jnzUgM1>qkg=W3x^qaFNt3C+lLV|q4T(4I;uw(*_1)z=dMk)O&3*z@|&+o9}27R z-me@8W`zEJjV1^EbDA*d8sAzudQ|Ikj*_N9N%zX%vI9~otSE4<8`M1O-o@(zE{}Ch zbFBS>^3L=ZEP&bAOmU5mW%aFUSGAnmY7=X1WMJQ))B#gMuw!$i@mpb+2!N>mAIs}3 zkQn0Ypy?5(-9R1?-3}2Mnj<@aTI}qPyvnrZtqM9f#Do_=Y_G10Q3)a-0EDcaKq)B} ze@+I;)BqLr=k>iqnt@(%Emfpn%}`J+Y^4EgvoWNQtz@T@+upM5d@jrq^>XaZq)8^gr^TUSkSF z>a$B%rf63t`!SJMU@(;pP#Zhu24+qL%-kF409=Ov`>_&$75Dx|sry_x6B%?MLz(R7 z)Ns&+K<>B||6|AJS=wiQJbXVZ z^9WcvX#uF*#NxxQ#ZTxt1KUA^C4yt5rU3!Jc@JW{^C0)}$vIYn4lB_w?C(Ii)@Y1S z=sY7GDYfHFO8I;VW{w6k+tbSfCthILOJ-RA+sh0mOY#y1`p=U6&6&L%{f>=EUI-bn zvxBl231z-nmHybuvIjs45?JQL4#Tm8>}=Whz1z032Ftp`yuV)2TZ4UFsQ%sWpqeIl z`dzRNb48+ze-lu}_**dzH^fTX@|&tqXb;g3rXVcxp8{1=Zq7HIqz-q`aB^)Zx%QAw z1%TI;QmMIjFp;anFxU5Bmy{U@$_$3&(ZgMl1jO5r_vK3?deL&8Y+FI6)Tsu{UsOg3PD^I{)Ppz2Pqf0=O;CDk%x>1NmvDYTe? zu{v&RO>ZdfJleZfuGvanfF>^7PG4UkJ?dj1!c4ezY+dwS&dfLT1!AY1kB)k*_9)}5 z`{ijgyTxu_kVu0_q+3q|&Xg{Ct;F^&J)5SVux7?CFpv?`rdl~p_GU~MKV(ZAW z;q;A9uzSd4Rs63x3n9GIbidQ*$P~_u1bgBWTQ>oi8?x+9(3w*3ZGw|3{I7Ryqv+`> zJl6hKx2)qqUSzk}$a$U=ZJw0Ga~%p0cMfOhE$P6zgNQ#Y9N?DWhBMLA%Zuv6$Q$Xc zG?<(}`M8R!z)%j9IwecHM-M8}RT)L^v$Zy3usk!;EhjCe3T9)Mj#x@MxIYuIFT9DT zXec6X;4f|Mo=`-5X2pI~?oD76s4LWLS+L7luv2YUbm!QQng0QCnLuEimxk9~ON9Xx zrkTF-9X^Q^;yj|oIKv(35vI-BLc^AMyPSDD)z(&?-m&FOdPeDTu8gVsA0j7(1*XgD zQw!@EEr)VM=2D46&f=7%9qZ;IHhXMlMTasDnl0hRrMt)WjV*#Z>)thtS{@IFTq2B0 z*1hSY);EOj&!?=sP_A5fL7IBR?83w3VmDn?l(h>+NzZjcSn4ty`J^%&IqTqgebBtV zn3~d!HK3}cKn0rhFo63h}l;4T4Z$vQIH+D-)qQ!5eFKoGSro+?w zpy_>u7BTvk{a?=c-GuOzV$P9eogbVpu#(hR$#&CrFUz&p_Ok&>=qXCE#)z^X9~#dW z@X_vDkm>c@H=;$pxF56;$DC)cQF=X0|0hjqnc%BQ)a1H;;fNAhx+ zPu;~N`(?SgCPhkQ6D=l(rjENc);ToR4f=~~SQ~$_O)BhU3*niP7M@Rq>=;^xczkbc zSKwVEy+zVb|2VYhGerNPEeU#?1Busmkg%jJ&}Px>XsKU@u$1B2JwDa#(1f(~_4V1@ z4RXld-aK~y&*Smd#H?%b#kEn*7S22bLgO3zL8Mg}#MqD*XiISLYZ-N<2mZ##?9oQiH7X@QJ1u&kfh>#B#uJms42EoEN08f*ph_XsK4vIg8+*0 zw>LB-3p1oJF5@z@d>y`fY#0Kemyi9d{-faX*SmKEdU}vm z!eRKCT+^KHm-WK_^+N4SDims0Qi0VH6Hp5-5`g|TL@?}bBSwyo?W8-45QY85p5Yn$ zAOFS;o5}+6^;N_jzk>)PDAIECPxd3aXNZRthR+Za7gDgDtC<9((x93}eSCuYAt-L4 zds%){IO0@=BxG^)BC@BuYlWKP;_5PO7gg(gS8p0=z8PcwUk&utG~h#p;jP)6!NxRM z3eQqlx=GbUemIsIYxzC0A*IL5RMaD{ivvWeXcT3T-giq@yqcte!Y5hO zGmGO0D9Jw-gF0qC7$Kk>MP{KkFR+3 z|Btuf8%z%SN|pS&sB19vyO6tS0d*Sa)dFuBhqJwHnIW*{^I50)K;R%2 zo@06Vc9y3UOR%}u}I7v96a{UszAaLIXj+5}TWtB}k;ZRC<7_G1r1^BC)@RmLN~&1y&j#G-Ks8FTlt7^_yRs52^HHvZ!hEAcBd#n{z z_Q;OF;eIUx6v58+8r<$CUxbXPoOg;-b&5ZlWk<{3?G5+unYY_|+|d3_S}#^DH)1mg z#1K$p#>S@F1h78>A&W~}`XSSQ8^hb{voyI-np{f({Nw5vPKn z6s3IJrXN+O8SOT8W^)E!gW@FnnE!#74@NFSw_VZ#5VW!UJoPqsUNQI5b`X%dfj`52 zKR_1=_qxhE!FJIqf)A=00ZYCiN9V^Jd0BQ4kV0P@gaw0({wjnyo!m?`RzTyxXdJFm z_k4&nrg7?jxUBHq>)I*ysW|FZU!M$~r*7y{O0Pqzq~WbKyzw%Ayj#e}rn8JurZMug z(=oWl%$&X7E7N()(W&)A$~QWCBh8|t9w)(HK#e`+1N0C^cYoek!t&(t=7TC5{;r0wyKhcs7;+Y1df>`6804ec=XbFLAo8J<&-Gw zu?EM-tOse?G&MQHJmaE-q=dvN(;^_vr9`aQBkcG(%et{7s$>@rxL0bD91#ol|SX_+W`EZP}+_OA%K?BMK>|=_T5|2qSak^K^#Kss}f~k)KPG!miDy z1zSuTLt35~oNo-vv$7I}SWfTCvr0yG+60fcHuPOyc`sUdZ)3kI_fCBM;zL5sTs7xK zJ?KUKZEZdNUH92FG4@cocl>xy7&l+Nn>-6mob52Jd~vNEi~4%Jz0lGi$EQ#-T3>ta z?GL})nC1Lq6|K~f@#Tiqr=(euzrq;^;SA#~e7n^x)OBP?tf>;%jzE4|W#aDkC*1>_ z<^i)98!nUK-1lrS3XslZyShiQ#pVh(VJ$6UyUm`&?|UU)e{O05UL_EpMi36;=IvJu zUagFnGU;9`bL?NQQoL8_zf$JFUEBb-27g_kJ<5?S*jS-Pshj%(aq$-%69?C}=_<2o zv)T0Jz$M%ZPSGP=lMB{cUJ-B715+`gu(ePEAJy0mMM6X8&gSs^)JoT-PSeEo$dbIT zblckoi0f;Y2z|2X#*F;k7AV-Z)-VO}gc0vXsY-}kIsbaNcgc1=&T1J|J~X#Ha~}{$ zddO(aMgD~TCA!JdzUNqyt*(EA^NMCZdBq?R_)T*#H37zJ zcvB#7y&cQ)?>e!D)=fCQwhFzr#~_8jSGFQ_&b(V$+B7zg<_!@?N7l{1|4ZK%|6^Yt zG^XO-#Nh1_GSoM0I!S)$R2QjN^9!H64~@N}loRSi8v!WGsFNnIFK?tr-AK=4cT@(S zBvRhDEmnzHyRmdj&g-c%0F>(X4aHY*qP$K1VO{}0PJe$6_{yk_5_EJ*f|rm-DUbQMh) z)a$&J9hlj;M5IL_(im%WL!sQER8Dt3q*RW1seC>TR6yH-(RMhkL~Ht}uQUJn)r8~l zJl~*}e7l@{;QA+bx(^-gT=!q@A|8=Me1TDvi*S;5alt4IBFk4HlcTGnd73rtTGP_q(Z~6V? zO*3p9rT?pf1%uKdiif5?C=5M@QXcXTmx`T;x&z#yD1)3wfd5Wj5RG4wb%nK3FBf%vQr}C(8nEq>mx@_rZfCiLJf|<`Q`lqH&Titl5t=Xv%`Q0>o;!>q@?=_nfKYcXm0cb!= zwAX1nd*2lSv!l$_4JR$l@KOoR9Yk*pHTY;LaZcN7P}}S6SJD|U$jeLvSn8!=v0>nc z)4^X>Pc!Hyp17jT33>y8~8V2>|S)+0UAXZ&G3)OJJr37e- z!$G?#<2lIXsDu~_oz}`5M4({0caiR|@-Jdg=a_-*%Ck;`(@wR5-(`E{FGt*p1{u8K zJO-Sq0RN)?@IivDArVN*bWE5zLOreK ztJ`Du$RHQ%;l_W~NB$u7bgeCX?~w95dhS&8Atl&fN${<|qw0%Xp^$+AF zECD-Zuc(#gQ%;erZR$PIC?^gcP5dITQEq%l33&&wyz&tR!VQKW6vK`5<{>QUXMsw& z@OS%LMbt+luam!vBEsiQls&b!LwpZ< zaxZOMKEWT5t2`hd9xF=mKQ_9MuCkp#@b)~q0^jU`OOmTdlE>aH8DX9v1ABK#901y+ zRGv>w&yUd6F~Kb}=H$(0vp+um6)NH!8JqUQ>aT{ojop248U5j*__l66r+Bq5+9^elF> zVjQ>_r)s!il?OP|2O@3E07YgMfGL>%4^#Nc#H@Hnb}ym^(Qm2+Je>;>w00wQf}O?P z-#vWKyPxm%=S#RV-p-8;+j}f*3K_W~JT~Tast}7`S1qiec<<%{BzoGC|hmUV<+* z+2f5Hz`$R|0$JN|%^wJ=+;j_IZ^|6UjG@yorcKl!W9p?MJ_`|Qk0!w33$Ox-ThYl# zwFM@E0b_Y^!!J1KqQb{bJveb*g5WxtYQWiBK*=doNJ$FtH);;J7wMjh7q;2EdtV0w zWQ_)crqqocVR|Tp#y>lcW3nE0X@z!RGx(|mY7L!SKtMHS4@Cg4lVd^p3c%~64BX7K zf#pd-1fj72uJ|`F)5!$zG%-M#Q!mjyz1-xWs*@A&U{G`34yA)d$>4QLqtr{IJoGsb zD}Hi$9r*8nk}C7b(n~aOKgzqyqA;=?467%r`DFi2NBhzzJ$dMV-Xn1gcy!=~z5)77GU(yc!d~G@zx1 zWMdbB%-9O_u(u4Ltec=L^_Tb`iaIG|ET^Gg1G8*I8arCLsOn}Q_tWgG2!JU`0d`X< zW=$XJdGH1>syFDsi#PpZryhXQP)7Q`8WRoyz#*s0|Iz`YJEnL*IKiDM(g3hpWDfo? zmLVl<`SB__TCvbuTk4PJ0)?h1y;j#N%>|tR2eD|+bfy)eW|V*Pu4x~@b(>qOi@=k8 z>!t%q^)<8faKQX{xpo;OHqm##Ap{LCwvT2CE|33QxwHBdgy4I8ZvzgD)o%jNo&s8t zgat~#?rFT67i^OSFX@Ap^ocfEwoWindB$6zv*fpyP>Yc(Gpq2HzRhHRcTF=UK3eLdrJ+0rv`PGTtb zZqYz|s<&23w?(fX`uDj^+=8^kVy`FiGo#OD!Gvb+L~pGa$W9N;=9<;iXvOY#dI`Nz zkT3m?YlK)-gD>foL7|m}n68DGbD@!l?Dzr3usX}lFFk&$bGu-4bbyMVUi909Azt191fSoE1+y3sx>@j-ebASE zLoYj_zwH4&+XaT%_X(UiY(i%SiEo0f z)$-@`o7RiuFIH`MJb4TM7tfjT!J2;)y$nafH;3t4Qiv_IpH72*9=$?}yCxh$&o@S* zy#XF|DHlq*uM2n{Piy6CZQ<0r^4YbT5c#tRp3B==QKuyGaSP+i4v$<+{h+dvm*$%) z!bck~At?yfUKAjD6(EnaMkVx&9_{;E{td*==n%Rj29u`JM`vc>a?&hM=gQ<+nm^N<0glaS!4BEC0w8?OCVg# zEZIsfqYSEdKXRUf+Z}-`1Gy@#EqTEEF+y!|&aQ$Ps>A`+)-4TzgBDGL791&vgn3hM zpfJUGsyiSTdHNn7{d6lh;s!i4%7#p63b29Uc5VPetUY__{%LrS(W9P{mm=) ziHp-ciXnQVth*w94cnUqK^997*?Ozv83y&!SmiLJEI?VXpOY%Q@<|}S5dY~NynY$RTKAAp>7li1Pi~@E;Tkv0Umir5Q zQl=kyn3OWn6J@=1g}njiMG`!VX-?TuDPj$jzQ7AqbO!3w2LjG9l01uxPDjAyJWAhc z{?6V0y7m5mz?mQ(C98Ds&bnl!zL8dUCGAC#41JM|lxxoIPW29&F&H((UZ7Q2e%D}e zZOwdn4RD~lpUVaMWJ&s>BjZhYd8HN?Jg{FSus=3(*?LuVaYE|e((nGPHZuLofv4S- zM-7lk3-b)e!&3#%kQ<}{J61m!rv6ehWXRlQoHpU*Tv>AnN!Gryi0S!w=%=_$7Lu&j z&Xgge#W0r(+CKEeeO8E+)^$Dn8Dd&isT59Ij|> zv?S1lQB3vq&5s_fUR}0s`R;khoL=Z$H)YZPC{G6p`gUM)dn+*)&V`;m97m>2oTj9v z=Ff7oPrxSvJelAaAy#!5=cN81|k$+eaU>(ch;x7F4&D8?sde51LoCZSRMB)$zE z*K@sj)`X}2J3pU>QphuM`3K5?Ohh0Ln%)Z&UeWvFyn@;-PojIDZP|QJn81v)W=`w7 zi9>K+&Rq86s`;=6M$Jkgr!p}|ou=rnr+PIj*ryKG-{90a%NjkfFVWYvtNt zc;NSgKfb*yUjh|c0J*veoq2L_?ZDHDq-fg6>A^=KWvwlnOLC>`Vz+yVV5OfRV=K0C zDC1tvUB;D^rER*hh@|SNr*l3PyRx?L=_;btf4f4q6Ar44E)D{xoW8EfPIy`P($bLz zT-7*9SKCi@Kb}s)XlP7%em#(#2(a*dKu0PQb_P4-Tyt4FR(atjN0DgBt5K%WVmM{3 zv^y&4uTwPWUkh0pO3jOvp$zyE)7W2Yj0n6AnVdy8pt&?^{yy|CVfr@mGx*M*LMM}# zhIx|)hVsYn)YX-kxc#5LsOT?qy8+%_iAmWaT2{`gwm1_~q<)V*nFh)IC-vKVQHzOf zwFFeG<7Uc*&-RHOspmPb_)51IB!(|96o5sB(J8n&{+8`6{cJb3SnQ*o!Ub6-|H0E%)kx51{L zsgAeK3{`6Lc?YjLCq4pxUq>zov(X}E37H@1_8~TZc&9XW2cM$?Mtq`+lyO?leC451 zAMw)EocYOf?Wk}jCA~3GzaO$g{q)awuFq;~ulKKKT%@ux4V780dyenjkb8yxT!B}m z_@oc!{PFBz`!v^l#N@4&S+{1Pnq;e_t)px%7QS01kttZcUegtEnN4DbDDUvx3}9sS ziP85hBGa&XeUt00o~GRYNf+6tR7MD|Oe>GsIH1L=BwZa?NKTc9ev8`2n*UN!D{UW; z-LSWq9*|yKi-7@Cjg9z#&OmFZ>b*wY`VSvIQ(mB>0gOk- zPsumHV2A`)rf=an9lp?13Cs84P{X`I<<)l{Z@8pH-?xjb@fn(`Kjmgt>;Lhj$O~wF zUL)w@qX(wtK~aERr6O6mxRs?h%sc1wM6ATlU|W) zQ^g0;svB|AW;f`{3my9<^S%{UO>eF`C|DVd^$2M`qgi0m<#!A|d?hQi*f7`Gc*lTR zoSbj<@l#e$yoSsctxQ;ua9jp_-~(1@Jgs)yM(R%+&+2TM(ZzkcmUxqYQ^4WX;?cuk z`x}{6GQB3>n7uLww?*qL)6CgtY*eC8*`LG6Nx$1UPx9qw1kuPDpp(DjmuQ&7I@NDD z>-_}omtk*!YO!)xV3BRpqXwdbB!;M7GZ-lPd;Tk?m%RanvX4uW+3;NjBhpkUdhKAk zmwlb$-%}1=`1l)(JSpMTI$JrbyjiHX9Kw#T>DgXf+H{|fS-;ukG_f+ec$~znG}JHZ z_s%>>hk*SUaJ9DpmkDUHgkM60GmmeE)HI$~)LP8U-SCRcCLj7uM8#kihoVlg)e4hY zjq44tw%yrZ2s~IiV7ppaS=`jP6l*CODa0ggN_Nnz!nlW`F^D@x!%_^tQ=Z*l&#@%0 zsH)>^7N_Fk?0%Nlo*@yct9XlR+{QOdyn(a%=|`^jTWoZgdB=NdTq%zxK!ox-#mQ+( zEAUSg@p5i8aF<&PzrF`9*CtO|DLh6gwMCZXm&}NKvp^_ z^=RhA84cocPqHuycfEywn?8e+EXF+YC;8BF#AyeUS_TCi^X`ser8HCBsm&*@F;1Vb z#ClHoIvhx3KKJ*(Kl|xDGwWs9M%M&OsgAWV(Z#eoZB;4~Htv6uHSU{5w#E+4<4#$a zRn5I2F28{-We1^Ws8oq%db#0fdzyRu!KcY^(qfYoYCJAvYMMiMbJShKiMc%z%$Lft zliLFPz^MJ7njBT~%EKB+v-3x;<|6H0GjrSFHNTyvb>fMA&$gO#?I7>K;v;A#1vnrON>s72lo%@4cC-P+%DrZx=`2l;fza% ziL_mDaKsVrmB>=X3${c9g;pu!i!0u~x|9Wpv;d09EA|NE{ zvZX7;tb{kD!OC^_nzfMEhun+K=a)>O9Kl&&+xdCvJ{@lq1Wd_ZomP(X9Qq|{UuE8V zX6CA!qiXbgBC$jzJ35E@Te`PcuZb<4k?N!^J{zWA1RFkmb_4i_+_D8l7cJTf=)e8k zXSeygylABS&D-6OxZ8F-7(}PRp6F-((%`C8*(xUitP@f`G~Lg(qbWeju>76CP~Lx? zW51oh-XBYQK9;tq8ZVM1aoDrgN8JLb&$DWx8-T#2y&$8pc}_^a)abyoBZi$xslv*Z8=>ux5i0#W<)%G600`*`GbyNAG^ zE~>eoI>jM^rSMK(m`WX!Ex)IjIcbzmhxB3yI6^|OH!bf?O2D_zG5S8PA_ckR3|#SbI!L zX|18MYx5;u&bzTMxKS?Yk+J+Zf{n|f_P_~)e`_-W8d{c?ruaFulrlT+{hK=<{7$Zf z<-9MK)vuR%?s4f9-y|l_M#4D;+#{jD-@cI!H-ov2raphdTzVpjWFiS&^B9&tWsru$@Lw53(kh!H>9)nrM8eXAvd>u%Cf!niQ}>3 z^PHS_SxJ2-p3r%SOnSVSKWU{2ueCyY*>aDH=8rC;J;K(M zA32OJ3)q{@aBg%e3ljZQ;1ORwPumtnuSC7nWUMGIg*-jTITF0{#wV{m701zC3EvP*lq;iB zC2yL13Tw(mqv9Z$1TYuZ;Xb`%ea#v64r-6%VPo3Oa)LR(ii&bW8>wU{!mR^D%CQEk z@fc~z{f3wxK+sULW`8)#N+gDMnZ^OS=p}iY7ZL|J#H(3#w-=0YL z`j@I=!!`c6O8oEKx$+}jvJQS3!hA6q1ZL#1T%y~f$61FfSgPw!$CJ^K;Em7GK)$y+ z^gUQm*7qUP)ibb0JniI~wp2p~2cK4sy_T74fGYxG`}Z8v2k^hv-~a!qjq zYBE<9$GK)yqe8f%&N4-3i6j^6a!yE+%XA?*#l_ars(3mjofe0xtKjPfvEOgOwv&a zgjkPY#DMYsFq>d==~wAD=7uZAkp4#Iz#2a|3Kjj87xen`alnLoqoOZ0LBa<``Y(VV~EN8 zgeN^Ode_1B)O@ohyiZS;D-IO&9#1z?uR*8uoh>5xO{w$cK`Rg2Fg^q?S6Vi+d;THN z7veX+`FiR8T%$lfuIyux!OSM3_wI(eUB7vyo%SS;>Q8kzhHa#JgHGY>p{g<)S+gUX z*%JumyFr{kk}0LBsuNseAI7OU$zb;Vl9c8eZdi~rI$GK6) zMj)!L?do#PcLqi3rLX0d2ey7cu4xRVgW!6iu9B$O90v*_y^2Bn4y-ovd1ecme4V>L zEMzs(Z)@9@q;}nSmi;3Ycqg-RCd8-%E8d&)ddDIl@e>P(EaG6^6VU;k-;$@45ztnh z94zpbQ^w0TNZ!X17eff(&h9#xZ|KYUisb#tAJYQv^To&H%PKz*^UvH9iSGjr_<3)% z_BQt1TQytEikj&~UFTbS;lCLTtCt<^lz790%=3uqcJgPuBrf{oL8}~DdM{DNccGqt z@0Sl-HLuO67Sq471hxDFR1;4R`JX%C5>@QvPkIe9q*jM9+Izmd^pK8iK>LoU!oWU{_Rxc>Xn5c5gJ7G^yh8U~Q!KsMVmMMVE_(d>5a@rR$kgv)V~Docr*GNcbR4 zoHnw`YSFq3NaNObF$;S||8-JLWhd2VhJ@3$?Nzc)1h|Y8=-p$w&y#AecT#7>!(+$X zG@DhJfYHJ~JfPlrM8vpLkZ{%&YPe;J{e&FS=O=+TmG5LVa=CS4Pk474DWiXs)oBp0_rlUc7;(5~Ouo=?dOIoIb3;hy(XkYQ!_%1MIDF+|i8AABvM@9p`n9u^ zW=Q-*FVco^vvhIB}l!n7qB9;FcYE}}}(BvBtuF%t`Du+1fR15g5KT#(n z1#Vh#+KKu2SJ^C)*onhaN?ZNGg3b32t(cSi!OVXWWb<`J;63dJeBCE*HaXQ_|!{-ik_@NqE)ad#e$6a9u zsD5Nv+-SF=Z9h@UnV2d*Z7Sr?<8o%JplTHY1We38tG1fi z?6qVnrI`N6>o9I=#rf7DOPnwcG&D2@y!ndvShRGsvvBbF2YLOaPK2DOgL#IoBFN74 zXT9>2uj)w_SO2$eg(oaYvE-CBiCovBd#Rx@5L4L)DY&T_|M$B#W79Pve1$fo{_K<< zcmdk1!`dqfv_D|=$w9pJ{=~)E_RoeR`F|7yjTj-L!Eh4EWWJl#eiTKb4jK<7`)+%E z*#CsEOES=j>yuL{%tg`isJ-g(biR?*zC+t2A8u9Z{7v8f&|j=3!=YA|g@h%JgYUtY z4#(H$JC3bzX?1pud!HIJ`bHd_ZK8`T)r&0T0s#xtw#r4%{Ij#!SWs1}Y3lU`kWt`T z=xS$DhM}$8RF1F0nWjky8lK2e@f4ypuqA`Fr^Uw}J8P8jaFAi!kJ5zhZ!U!Nn4#2d-S8zCoV-9?gTFb0g`2-+`r zE|0L!m=HxWj1(}8q<*_xfs-o1)E;U=UO$H*D{#?)O*FvT(aTyfoq>MOu)fCRTOGso{0xU9MM?rQge!wGUiME^ahkL6Rk&5Qp%i;l(`N#ElaT-hDvg9E zSNSV!(72WaK{n3BdMer$(THz)z}OkSMA=q(D|FM?f_8yEbLHelYGKDNOpIU^5Ms!_2Gh#i?Fe(02svVV$e6vm1T=7P3fbw$=%B>bYKGHnj#UB z!)=*a+3mt++IR7|(mpnrV;*+p5zoj4K|Z{Nmun;DRN7+ZNzH#p+-tUhhu2_1W!-S$ zdB>DKr`>>G=7Q4J3HECJGn+8rYZ`c)n(bSh+*4h|WNpmBk8%<+iNbz6yx2UQBOYOM zlO6mly7+UwBFf5TsE|r^-P5nh*HonXO2n_hEy`W-aeB3ciKB88eQ`v`9MK%%Tx>~x zX)}}dhP1-G9>jY9yyJ~cjOo7MI(c&a-QL$N9hh{~ga z{4(`;WgUMK7=#8Bti!zS2#hWNyWafMt+;LZ^S>7u{ZWh(X#ycOBhC9(d;tsGPbMYQ z1f6^AJs`bxN)$!By=eqJY{ZZbHFMG`%v7OiP9f!2pjGUwQ`!GbHN4VWp#`ZsYw>fM z@hCqk!CvQ5z~1yf0iSpRGwrqrlP4BGA2Y5LMiKjr9sw0=0zSv0mBpquy!2JtbO}bf zz5S9UUKw?KZkv-Wd6tAV<1M&`0i#H7)!z0R`l;$y9PLDqkysdFhi1!5wW6u}4237Val{OYuIg;e9y++Gvc8f6eFT0OTmtFs zC7e$tU#ayurG69IA;6L#n+s0aF{*}`G`f%Y*l71UeJI##7>vjaPh-}uS2+M|JV+>b zYFHtuGAY%1iYwcm%s58=7dr(pWRMWo4ojRGAb?Cjo)xv)>@@|-DK0=-Nc;Ks!1g5m z99ZMNB|a6NB6Oks$t$0ilVgBYuDE8=@JY=Wu4p!EQ3hjF8b7*hesPwMX+6?1BXL5+ zXWLEV4Ej>xnM23(XgSJ>z+uEB5t7~HKH`_Wa@cKfZ5b;JfsXq+{Fcx9_!?y_PF1u! zr&Gu+{}L4N&2tu$WFsnp6HSIFS$wYmtV7j#azzs=jA+Q+vXt&7W~HQ&X7MLaF@*i17Cc z!p{e@qa>n0YtMUChI;3d4mvbMx-vXvr|(0+S52K&u2teo`v4m!8D5+IW`;W;hDL|%~;wc~|TG7P-uQC)Gb+7(9@0U74`BG^`UJ;JoMqI{*Q6I$(=dW4029Jq; zy!jsJLiopt&FAX;?ug+CalUd{B5q+AAFz;TN?5Je@jBBZA2T*-jB(t`g`hJph%4xR zr|9tId$+_|Ak6w}w{oD;GalQ&26R>5x#|U*T8!_Bp1bzOxW`qDH@^n+V~G&4B$$lf z)y`iuPSh|iX`Q=s@OSdK)}*rD0o0=z%I`mb>P)N@=K%x$=4gf+G+SRWSq_V&B^R4y=lGz9$RR$N4 z{aum$PZPuujABv-^l4(MYP5)=Mo8~4B{#LR;6*Pbk{g{fEmL~1ezroAh!}(Y_T@Ji zFC|Ue7eg)(0^ThZAHcG-$}sFP1^Y8nk?dD74!Omi(Qv+mx~2dbJ>!U2DsOPrO~T_g z@(EAz{;v&jGdHkA?{^#oZ#Q08Vmx4f=rFzYHwhlNDAcKsF!o<4rn|xu@1*`Ue`_rm z+aeelIj+5~`D6bNTzh+-I`}&YOLuxmbv(|zC)jb~LnU!5{|&mW<=P|pD(GM+cAL{r z7o>yD^UW37sRvjE%lRV!)hwVMWxc;Sw3(isY>HviHg%fBQLqbsH3el9O=$o=}?fEsy7fyv$bg z|BP5wbnvjbwS5&Y(alaz1To-$wNoDuDz~Z#0*V!YVh?r-pqO~sOxZ@di^)S5RU=Yi(mfj zQx13icQAN8nXen)CnrkER!z$0N`~~3vyc|5!~&Kn*;}J9-tHeCbxS_#p2E_9x6D5I zL#1l>FcY5;vbg9rN#G4enYi<&|MU)lBqn(;lfX;J;h=Y!Zzz|NAzwAJ=+NZ`Awx2I z2Fr&{C8tfG!Hk|~7G98J^(R1$SeLyp;9j+ z;fC4SecR^_xPI;Pn)mapAx(%wyU|0tK@s{xq;iBfrLeEf{y^&pjc~#<<%jt%!M7qi zxv}p=|BP5A!az@~w~G0jrSJknIfS&FnJY*>51fRADfSIAX9 zi+X^_CtJlQyYC`!CF;PB7R}o@%cbV>bgeQ6F1Sn5oJroCDa5N3CAcaN`zVfbKu{Ht zJVQ(|c?tuJ_eNX9bt zScIUh5Mr9iUl`;s3>&kKMMB5&1l_td2I!yYbVj$J6 zF{m0G-3$H_L)CZ$J z>p#9!r;@L=i*OAc=S=^KeRgW2vqxw+(xP*gM>n1}>}_mZ%yGZiO00vY)WMnU<#m#T z8Giu|=KW~aHqj9HcmD5MeCdXBY%brmS)C*b;)hem{^D~ewn-%OMZh^=?u@Z;#yY2e ztc-tHN7SUR>OmIwToQ>E)Yp%_fB>Q;wX*jbb@w~cFum*ViXmjn5VBDXS^WSgtLT!0 zzQ9?OER{1m&0~gsuTLO`={r32$2os^Q@trBdLRogl@ELi4N(-5Zu|TFfVa^cBfYX_{lB{nm^Y(Vdm z;8P_j{wl~UmQyCV*$s%Q^L*~}gc*v>1kk`$bofQ}iP;;%>Lf$O=Ing1B27d`E3yt% z<>Ofmm^}rt`O(lHvGBt`yj&A+)ixbd8lu8y-7BfL^MkE4gB>ewKgnrT3`vUq(dnYG z6=V)IV6R!tP3DRK-{FgGrf^K#7Axw%Gkmtl9nJzORe9)vtyp9T-<2s({!x8!Ofl?# zTp<`qA(t&8ha^Li(IjV2UQ|#-L!M=i?6}O7hCW9mKSEwWm zYaZ(tNZ4N{fz54_f3k~~cWV2`=iu@%UFLqL-lC$j#7K`rEj88$m%6*Q=1)=|-Uka_ z&E0vLNH?z(9QPY7Lt;t6R19+p1+(cdq$}B~v^yR_VHax3{{$v~g9pF%37KK@1JpVD z^y9WX{~Y~X)2=tA|C!AleiA~P)1L>MehQR;y*u-SK!9{!&dfJc2@gi*dqmked^-WK zG#satg0qIfa$0SJ^505e2mg$Kyr(`48LfdAtNdDXr!t)##(P!b7L+E_HZ455Hry3e zgq?1M@@>w^g}{E$csPv*(K2OB_@X0wk*)fT#fbP9pa3k^T>auUwyM? zjl>%$#GJ2J8h35`a#4xiisaQv(5j-P2XY8U%)uq2t_5o&&#e20%eV1H&A(z2 z6zRg}CC#vgu6Kiq8kkF>Lt;3QtzM%GEte}Zup<&pf586B32~COk?yu~`Ub?S*NCpG zJ|~{aFR>bN#7~KBd=y#gr8CiTX-cms1o1LLVYxWaHas3IFbPL2Np88B`3ft?=SOj9 z0Jvc2)fKeiX=LZw=+gD&s2cRWgpJ_;dj1)1NdVd&f2EeXgUEixmDEKCWGcik5yGp$ zhRjTAlb0u@8B9esh3YYrj;g=`4CY|e6#?&Ox^?t>*l~sUNKJl#G%&Rh{oE<|d$vM& z3$Ryi07d1~OYi}75_P_nFZOEN9d6!Y%DC8I5iOs{o=OBkDiA?xVokLRk%ly8jEmhs z`6c@>5oEG&Pd(WK7;H<>M`?Uw{;$ge##AcHj5eQeet}-13iyMG@OKLyowKS8`h+H( z1W~D&^};4xM}%t(Q%V5)gEByBFsl<2Sl+bC{;cToh>wL^oq3vj+=S&tR7(g=nd-^hu%27#4>Dj1Ksd87VJ1vGgOK5sl(U zHb3)ZeIvRRp7Bx#C$Bkp=zG-tMyD8KXsH|yUdd-UQyehak1W6>l#bJHhFb0S6Ws(< zmSx{5P!&r$yC;fC^rpY}?1ej%5E#i*Jfr(BT`O~`>3PQ;9s}aG@GHP*T#NTkS$Xyn zh?D?y7uE*FaYjJr9A9Nxa(~?mbH2&b2#EHN2z}Kh5{uAZq?^~GJeF4aABp-){CZ)6 zn)GNfWeDwREH4<~>OTshjMvC5Y9R@_k@18&{kXQ@*wj5Ndpo0^s2N#OOaN&X83gU2 zdXeUYI#m&u+p5qFsAd^OYW^dxWg+alR~-=pLBh8^KM69|~V+bRBeT0xh0F-?Kw&GQJoIbJ0}K(z@kf z?vRvfKbfFjT71L;YF4S~fr$ozHW@pKT4@T*;*Q{A0NF|rYxLn+#Fys>&0f@#oP)JOiMsdEaS7}EZ)gs1tg ziVYxMKx>IL=Di{85NXsF6#HDo)AUig8rXOYhNl#BIFa*9>5Lo);&Tf@)NQ8odkl?d zzCbh_|}YFS{_(2B>(y${w+0Wq%x z1X+e#u4B!uR=pdp8I6gK`-Mz>O^a>H^xI;o+hTELw2DIBp?y3(SuGCXpiTDO|Djul zz&B8q&>Kr0>!gV`4Hh-9xN&5oMnR*7io<0Pl*PWC5h07Tu8RJKWLSzlsr8v&(3@Ql zkqJhUZthY4(|p+(zPvaE#7}TI91M*|Joo_e$_4tM&jAzDyiGoH8}W_B+}jfvYW>*} z#KQ*6=3OcQhBe_ zXe)`NvsIY$SQB>|azXj|G4PiQU5oK~ig*ropM{p77qesjjI{+2)RF$I$jUs;z z=l>jDjR$N)YaT1$R1#VnbxzD$hIF!io`3HbZ^yhhPSV`&WD9$2@xG=7k*cjIdSi1A8XtuXLvAPp3UCo5*VMAmQcD(IMKDO+tR zoBNq7a2+h)h+@`9X_PTg0|#n;XRH0r?qAYhi%S0hkfKF*>!7vkUoYw0_~_jjWZ|?d z_nTWrJ*y>`+1EddU72Evb27sYBC5K9(vJMw z!y{I)DdMHH!uz~*Uj)RKPG#kPP*o;GiP-l#WKZj^@5NR`!W>#T#&x7XqNo99uzB|L zp7vcI=dXy(p_HiL4rr{Ayngy@!W2XCYNWXvgL-MB))|$qiayvOyZHE#ZiwSZv4p+o zj4rfPeX4qd)xdTts3#`r@g#t}M;t3TB=nzGYJXEJU8$f*RStI?DU~P^op@GW`qVH= zY_ycdwzl+M>RmJpQknKZ4JZ+zxS?RfFu(_MsMDEsh&iXa-nN{a69NAD#d2iq4Z#1j zp4La`DXzpPop@?Jp+~2%hdtLy2K9)db^fCvgGrx6`7Ry>}HQuT0BwiC(A@F3F|q(RqzzXjDA zggc28l#8xR4W>l7?o<7`izvy7xh`^owl0&k&v!2wqN}b=L;kHv6s&RZ8k) zGe?r`HHrWPdsg>dD`KW8rAMiDlUzfj(N%&Ib|)HH&(TmZDEuQWAJ?RSnu$}YSBwBC zob=)y37=J{K_DS*%^EpI8R<)CMJjTVON}C$O94wSc?9s~Q>-l=*Bk5#v>4Esl~L3G zMb;JH)hBBL8iwaDOhgK0yqDp5<-MEOYA|S4HbAe=V%6JV zfHy{IGqD>|B_~&*35ZM$W=+ec=`ahTh(G9T0JCd#OOP`ePA@a1@_lDD_J!aoR-6O2 z2pW1n6x{9pz^gj3tXi|P%FQge8kSuziF#f^1=*T3(JL2Bdo%UrB6MBZ&X1h3F0srL zubIB8=lM5a(AK!WRK`|)>s5|%)7clW7qPoPm-pqsA%PeK$SjSUYnLL81}&*9@&Qfl zT0U@7qT`VL_eE|lgSQttcsG~Z8u2hMLE3vkWO^vLz{3W))ErADdOS*Tb9oF@r3dP8 z3EJ0tqrOef#@05t$!FOzT1@`}049sdW-sjTtss@#y+X-s(~G-0!!-ZVrrfGiskx>^ z5na^tbUXl-5-ar0rZW}P6Mq*klE*RxOtv3(&s`*aO`ZrR*j-qi>>N)*aNLbP@blIa zyFp9jffU*2(Qp=1Te`K#MZN^Y`4M@&TiHT7V?Aay0vxaf`!o**lVQR>YNDhu3kf(k z7I}lr7+M$SvRgk{%=t7+yT(-`WC9$%f0~y8lQF^SwNTQeg#^s#_~8}ewwr|ebYhFN z?~dGti+bCDX}YkxR;CPIHQk89;b|_<(&)GEao^XfD#LmkX>vZwdvjT<9q${;-cANl z%Efr5aH&)`;UIbHk$5e^Sr`2(nME_ps4F)bUbKRr&X2mgYKKYwWj1BuYH)vi@VZ34 zO+FbAmT~0$(Ga{Sn)1XbMr`9cc*zA~aw@?H$N@2O$|sGz+ziOa|7o;vT%xKj*Q2OD z=(GzIeSC}ZmHa?j`8Op(G+aCvuUw04Tm`d~k!DQ9RjN>ptE8`u;BMUr#E!3DwA$T8Vicfx{{e8G+j zR>eThAq z(X#bF$0P$CQ)EPuhN7PTz_MP(nB*>~PD`Qr%||XT$C$=Yd0=}1*Zy$03NF5*en&;{12|s7-1GO zEz*&Z$gzQ3cc3bde zv$>gcKwYyWEaK*N-}O#H5u+M$S~z-IIB5DDwdvUl{vL}1@U;s}mWv~-c+*w^x()$j zm+Q|JZ=XpU^}H!>W?(KsHT6^`B&9_?uetopxzI>c5oe^O4juo?R6<-4rzzpQ@r zin@#XmlQ#dHLf!XR4tesZZ=-lo#rnQyThb}G3xjm2{8*%EXzv=B|*lE&gUaR@cAG!Gkw|aY}E#U zUrMOE%u|V%aI38e`I6p{cyvs}`Mixt1*W0`>q~!Y-5VSm$HvoD9{qIsPwxxMNY;^j z))8`*{8loU_Q|}Z&8+oM#DFuQ+|ydG%N6zO74=NQ{O+>0Fv`w$%`9fL$an+@SNo-u z2fMU~B3Hruh1Gi7#V3^?y|8mO>Nn4C$>=1(>5^c>bNSF#nRwV;CGi92T5K2WSizG0 zOo4pD(IQ-L*zeX%B3|O)sv2maXq^jDwv;-i;Kt%YRaz%+6-I#^=cW$l<{*~Vo2}_U z9i>b?1r)tDmg1mkrOXmv6$igTQ|#W6K*dsrmiYl(raGJaA05p;vgXzc$RJMu{MyVD zd@WG`lhLHl5(gGdLMKr_DgR(T8sNx_d^zQ;VUnzFd~5(p-N#@FBIqUq^pq#{Nvhya z`I0HFe5tMshLX@nmjAekS);y$Z0a(iAK7X@virXfvGDys)GHV~lXS_@(PS(n^2=89 z10=~@T~P@(qmu$fac^M}>d?25Wy1w!!>MPmag3C2@;&dMeLR1%k{qzpJg-9<_MDnY z&b=!j(Nch0W#l>KX1#|=p`(OJv@SS3 z#NC?pv#`A}Yz(<`#Zy+Uk3Fx_wbB4nU5EWfUMAFZe1^q(Xfpn7j3uOMf5c!uP$EA< zAZ70iJb!xy1ys*BPjIg&IFX7Lp+dZye$EJBpkk^T&M0bOes!G)sravkWqZetO<mmg*E}_r_8PQ`kkwXD44#(B>>T< z*F(&xUMb&p2RZJx z^58dwZKo*3BXuk{m^TBNKabrf8~}5)cB8hY>1Ae>8C`ld*F9LjNN*Kn2-6UwN9KKF zWQ)!fl-*o<@U}fz&lFhq$RP#tgKolSB^LOYMHIq=cB`52dG7HS%k?%3<6(9*&VixDKWU?i&%XjWJ&nKF5DcEZqyf#SWfnI*!x5Ovl zddVkO0A(yin3^~M5offz@xGHp9;;`Ak*X1{eRBzN_H~Grb@p5gz_+SL+cUPUOkniAS z_e;InRIV8$hXQ!D{X|uj87)IsxOx>q1xbH6_?v6f&dZdcMEo{*-{TEW%}z0mAh^7J1oQHs4lZ}SM{~Ss)w#8C zTP_%~p1Fh)u<~ThNf19B**jCxZKZ$y0*AN|S=Vw>iNNw?naM8};_J#7E~7|*g~md` z--RNOk`6ZCYSk%NsaPuQg)$m_Yu|5~VJt~L{fHUq=%v%payS=3cciW1Pl>L_?c%^g z(u5%DB)5#sE*IqDFN@jP0Q$j=5mLF-Ay*|?VrX_5Cl~)dhtXP)psL{A_!IXlr(6n& z@UrxtiT)+oUS(V%O5qnanp;mZ@Vz7QGzn`{s$@FY$yq=HDx?6D%_*_zKn@TGhFnIB z!Bj~sp&Tnly*-W&)FO{jI5hIwKXDBQjjGBwS(~Y&yEL`|F)6a^oZ9Ir5&cd<{Mk`z z79CLh4F)^~;IB6aJ7Nk&FxrhT<%aiaI|3kP(`;lGtdjYQp&a&Dwz9 z5yu`8K9jZe03~Mg@51gCew2R+~{L_%A7|tGV_g zjXXT;AD1C+aUFu>ZV6ulE8ox>ADahFUY&s-%3C_#r8-C3gVzA*J)?U(MyacCkO;E1 zR;P~NIK`zDG$Ph9yg?P^|sQb;VY^edSCqbPj_@PBxH zSbQPs7Ujl^NUB>*T4A*5Hk2n>S+f8=T4D+dOX+6nD0!*`^RYGR>M8wTzO)MZ2@9y1 z*$p!5CUi|I{gGlV-YXsl@MX3-GXg&H_|%}2pw__isi9w??71J6XJ4=Z_}Cl3$F@41 z0v94&D=XM&zRo4U^_X1LkRLMs!y;_FimB3q?uc1qn+lzis6*U0pG|zwaI}?J`C4^~ zB%Lo_qJV(FNPuEXrgltY!rGPf5tDk^B>JK;Kn_5yvD8Phy1?A zQDvk7q6OVqF+?5Y0gnivG2Y*D&(oItOKp)BMLHFxt8T)|%an&y0k?Zd%6~{<7C}-m zTle-0I=s#p^Jll+&DnC#)t3B2ErW!y$i%B)0-%@AqwhzV8Spfh!iUl*lEdDpSdK!% z900AdZJufZjb|;u(^w;TBKS3vsN0&-Xec_@!&=h?rces_)BcFa4236=Pv%ouX>R?@ z5WM-2RBn}OAQI<>AN{WwfbJj4G9V2T%w`B~X$P7mdu$d^n~Dwae{BWrKN?30YZM4; zti5!0XBA+HQQ*n_HN%41T9~j>({)fAyA+F~iw0uD$k6qbSvjw{zKX&|(+XLiJ<){9 zyR#Pn#)!DI17(TwRJE!fpra0cW&oA1W~YAwF`&{IVWoi6yminXyY!Bv1MjTj0Yvut zuPb)c)~CrI#=<4W!W*yLFh-K@8_T7`$%v_S&=;|<~?CceP`w|+4I-3D{Qr# zr}-?_Bip+i!{roPG=W<&!W$GqpM!h2-)mp0`~+Mz3(3On3Y8INk{dkxDRlS)#FRB5 zj+$VuPjiy6{RFSzA!bY?QOF6$`%ieCW{Q>{&-zP&%UWV`_?xl0=zU1 zge!!I_K#!e@?lR~i~7gKo+ZG zA}Bp{_iaC1uix)>LO33FMv8wgI60N;@bg^sE#HZ##CuOZTTg~ye1KCAcnMfGljI)A zR$j~fzKhnrj%N(Gi1jT5tx8(k61`aEX0M!s;bW5eBU^|x$X_cHgVGuo*11Dft$0>wc&u@;=v|q( z)kauRmb-BkZfj~a;<`VHd>3}_F+wwy5}V*;a*vGF%p_?G?m0U^6O}|xGH)ZI=7IYOQIxu~ymu>`wt{glbaB^p7CCpK5dK)BIp8*6oJb>OsyCA|q^8K?#QHAKsoOn-6f{N8Ru6L*FB<~^x z#YU;K5BEW;y|H2r(HSrEaLQAz=JxK6w^yn^HDf$|OYb_ZEbiRXTI}9?R~)ZqWJJND zr^G|!{-IYAR-L3d&DmPog+s_v8R?bL*vutV?5Pk&=;0M*$)ZrLZBCj0x(s#rh4F)> zAVFPT0GHkEO@zQp`KqM6DNcS;GCP|>{s=H|UBOruzb*6d6q83>N;7-gBfaQHuD(F% zyMeZd*X?Q~QJh6&zNpS9&Ac2VeI|>&*ZW(Wa{gCi5_<%%E}nkEB>Lf$|3`F1t~E7k zO8Bc#BpiDdag1j8qx1hbUaHE@EsL6UINnw6I%eCgMm1qN3~nX2Hv+_ zHuJe$^>61%uH~7=)rho+xqhVcaKxjmrgl;kU!~=M1vJ2o%Y%Yb+GM0gK0^QZlwPY? zr8nJ?kY*`8IvyIzZ+kB1b+&aQOT4@W(!LN0p^uqT?Q^2&V`)a7ekT+M`2q)>0GiCK zxmX{YN3=>`BmsjqyJtEC5GjDm2-b!|;C#DpI}EriXcu*p0Y3-1QBPiZbk1ZXD18?} zwB}TB)Ucu<1}4jeol2n`zGVnyYVIDk8(f>yn$P`8!dT4Tvl`j%OBp(~jy!1?y_!9o z)r@~c!tn`ULBx>`a8q&bC^PQ9O2UK5U%(ltp>7hwTlP~?9sZsLsNm?UjO9P+jUo^z zB<#x2^%t-slLi{f!tGT_&^g{u$~Xgv!A3rGW~kLK#R$c@%2|;~oC_S_6*C^_DQ_psyluBP^8%f`)-0J12p)^IUlMZeqLUpgEPr zk6%f3BQgLi`t&S~q-R(J?I}K{0G}0S`c@tL8{2ceZApHVR2c z5Ei(-$<+TiJa3H|TVt0uI2ee!yYRg6fG_Nx5gD#i%>XB7PP=u^BfZQwrS>>d~h2d}FvNDVGv%9T9XToBUVHp{h0n*KKO3LaGM{n@j%V(&&O}lnCH_5k= z8t0?zHk!@?PV%Y#bI$+Uk#RC44B;mG2U>u_Is1-x$n#jj=zwu+RCLKIyj`S6M&>RO2uvkU ztHy9@ENZ|Q^m`W~x9491gd4UHvtZ_{xBwjbqeGULSs`*0{w0o|0$qt&DwQrXfEZWY zLc+JUbDEG4NvKmIQnZ)jSYS0T+98Y`4Xud=_fPZGie`;wMO+f`0t8lKKfpH*uuA?lYn333+E<(25+yGOIUp)lT0@<>BL%V8;F%*51aFp%!0}tD3ZAi{K@2vYeJ=bx$FaKrXc-ltWx}Fo8Er=W#@&-06iRRG-tOmWT^DLz@{8HnXdx z;2beKKZ}g646lJjPFpvIzWEbK4U+_T03p~gRQ}1 zXEh1aplxr9v$s5zTzBExaEURIXSRjD=LB>=LgF{nlzx%_5Q;uLFU^M zt-#Z!qM$2NA521};P|m1Pb1a%WnOI3p&FY&~ENiCo>avg&A zK)pktJV=LrgP3E2=z<_)hnfC>qw+R+FcQ3n=PtIv%{9@1Q4%=Td~DTQ#b(s=xr}pZ z8Wct=d%U5Q{N3OIh)a$6y&daJSR&G1V(mXno}q(I-xx+$TU}DLRh;PjdM7~9uWOZ; zCTS^&a^)I!E#3X0vi8hY0P-xI9B@v%dngoRS0WAyM-K{*Y=|Vt;BaL};A(~39vCS) z$nR`1d^@qVB&F5iHUm3eK9{|K2%=Psks_3^x9tg+?%42#KeW@!!270ucngsvCJk2K7F@BRPSqHWYmKlrW#5^TH&%v~4n@Yu|Nm13FJ%E{b;ol8 zK*&>|t0b_Y`MjHGB3or58tI0*> z*Z<(5&mgt;z>@ml5>KFrq!QNugyAmaCbTeLr5eN)dh`l?WVi?1BLhX&zovj7F_824 z*v-YpKY1wJ{tr`U9TwI1g?m9o0Rib20RicdMnFY6q`Ol(2Bbr!hmaD4QR(jP8bV;` z?vkNnK)UYc`@7F`@4v@$&dlCy_pH6v`+nB5MR7uUvEDl&9nU9jLaGL!?b5LJII3L+ z=WP#d#Fs*{U&8Us?!C&Nv={YtfwxZSnUv~KoC8?d=6aVOy`-z*`^b@fBnmPtMBp(4 z7HF+(H++tnerDMNvgvVjHtPwp5=vgrkd-k$jDxIOV@q;CqcAAC{zr#~0Q?Rue*nM& zCGu@tN|-z)tb1`E;jak%A_Qrefby7)a@Aw_0IrN^ zn(=A4ZZy#6WJ+AzckfH-nN5*AX1UE)z1u8SUi;ZRlWsJR`x075uaheGqdQWDTE?Ca zX84%z^_Be7JOUK$8oIFRfGEy{u;xIM(N1yml=_`?C^C~mjQj%#_`03Zpe(bg6X=4Z zAJHsgD5f=Iaejw@RG2vg>yMBF8Vpq(Q2q|bnkgoDu||!~FjJ^)6*i9ka@_%~dR~#! zOIG7YQvoZl^j!3-y1>qac_l~mcx*m2J!CfNS93~3PY`y@!g`&RZ12aTYS8pnvPm-n zDg64P=+Sb8-hwwhKG?bMNMCAi=f$0%59ge6?l{s;8YNNv&ertkfEMHPGh@Apf2NFO z!A7O4p?J1H;+S)N6-kIm_1eA$v<_z&JV1V@LZJ|0#OsAdVrz3PKL1y?tLI83`&x3{ z6vG5T9(fNEBc)7~r}DjcJkY)QuS~ehNCQ{SzlVt0%XdJZriGk8PwG= z5uUT}0q{!uLMua|`tAA}AOd{>XbJX589)ZA?Cs>CO)pxAIatnow}DA{6z!95K5 z!l&AneBhHz5N50>M}{o?^hU^C>?p@b~y) zg9crS=-O;ZKm7XdJn|Fhx3&!_;7p(((f-s5g~C~lj(5p~P7~Mmwm99PmzR!{-EA&c zrSD6p_|s z_16e;gL{x=4rTSblk6l*v2-Xi!8_QUjEA0deO4bJp*)M?8%eAN48?41GnRs4r~Nws z7}EN1W!Hq|2#Ml1b@%y%77B{GLbgO|9Ae?1LN9l2>&&Cr7D<=T@skL+*hu+%^8m}` zs!H`n7p9{2XC+=U)=u?^%jy_w?MTEc2)?ho>CWyzczCFzr6+&(uIKeG=f4xbiisJ= z5uh|V#^~+z{t92wwRUE2zR6yaTy$Phya1U+!+-*sD#InGa!p|!sACQD3+LEASsrHd zqzb>wne{6FOI*zD%s{u=wQfD#t-u&}=<$|~+fZ;~%J$mdXiGgNsN0kBq*uE4knQZL zx#}5gyM=IrH%UB7b`P1EaBv_}Os%j9%y4C#T%rnG_iN+S+9Vm_t!W1)&!!gmx@X}u!hUDC!&{jj-Fn$5*=$=wlXRx+`fF%PBOXqS zuwGoNaok+G=V~%(6sTp7Jmx9>9`RNQixg@~`tfg%91BfU zG+q~IFa~hDpYL@V-89$FM~_|h9BrqJ@BTgPGu69ZT~zNKJCHltiuZlF%*-xD_rV$v zp|r|46F4a>BT6LTUU?=>=_XD>tD*ZY!JhZokxweGJS9E?s6*vQlb35r;utyC;U#wY z_ZP+wv5QR&SoE*tyO#ckVPoa|JzTqnb8+iIb!pjjyNYnnE{&JeQQ=PD(Y1;whxd4G znu`v^EO!DeJCt$)=&cR;87eovrF>{`^!^SMb`8hKOA{^yF*|-+(`~MDLjc$&BY!R1 zDsv!mnAn{Z=3`>6K?IIsk3z{1p(> zJ$ONLd3m_oAMG!E7QOQ)WRzaaQLACU_4TGx(rA*NKOQF}r0IBM!3*}%JE{qtUcBqD zU~O{E3*vs2D_$bD>lof*RAjO&K2c7_iX|Wli_*WOZq{_+oJR3pOhS_o>afHL7$$$AcPUQvU1qupJqv6oE$^-JP%HSmL4J=@HVV zta?fKpZ&KB{?ysmIZ!I8Uq;uzL&mSSrd(;(UvA5keYvYkh_u3Tr~!aaHP8M&1rGgM z;#8wd+zb$QVHyuiJ_z@~$semidl;N{SYT_ID=QC&p+>u5>p4b&wlY~MI4?N{f43dJ zh+->whFhcEol*ktYljx>dt=`;-u`CCt7!oj@ zdz(L+R-Y5u+;bcU~R@VpVgv&NiB2LsU*+kCQ+evDd2K_e|67n;3Hvg_i1Gq zouLF9@?Jcv{rnA|(Mp|Q1RhN&k`Ax~R`&!3}Q&s*-gId)oA3Kol=*H0zXq^ zwGLyWTvS~Ga;ubltMoh7sGn%wBlo$jjtOq$>%79?4{}BxZia(x>vGQEZ#ii2Sz6U2qZkYu7y9!#WB%3LkT~s=7Ds$D&kz&8oz`#L5>gV zsL+njG?Mui9GugWj$DBz>OKpO4ap)jkX|WO_H#RI;w|&)Rw}MrvaDNjjC!N*&65dU zW2FQ8n6Z#+x4Bmn{4g*ym&LOircKMKcNGbUJP??}Gm zbsp@v*Pkh9vL~Zf$GA-KXZNty;POV=zs~#YUs#kW2kY1$Irn5{%5P6~=6dMg@NX)C zumZc}@u8L2&R+Sn;RizpQmqyqtq`&POtJp>qKh!rJrvne@)#3B)Hw?(whzDkb1Y8t z{qz(uzWm|U=7(1V*g>p&so<7>|J}kWPSbhv=lIZ};cP&k8jCLxi;t;gDT4vX>oXV* zqPd66l}Ih4+W)w6v5gQ&^Wx3AV$aGSbS%y-N@SY$MEhyp36){ zIFPO&e8>Q{SxiY<;tW4ij>?eP-^Pu&PXN*}6DG7?Rq=5n%G4+EQZA2=Tmr3#2miZ#ymfb(VRAZXs14roeDb0fFDmdPYmG-(cL2ozeKo;Q zpfC}@Pmr7L{eY;3GYqYNlWP560m*u!RuPEg9axuHgr%LFDdWiIV8y_S=j1%#zRYsO zSNZdO!3ITImdsOorEb9-qXxnChEECS6f=hD8mQHErL0<+B)Zy$JB?kh}<6j%D(c+|UoW)k4)8?z4AK-wy=6Xf%+N+~n11|=V{ z4(O2Pj$Y*>v{Ly;N|F!4B^g!>%l_~^DNa%=R!QP6QIRZ{QtQxBXvl`@U3`o(JZ!mzN z19_hF&y~TQ2BrVTsLDPdz^(N!_TFTsyvabVCd%r>pdj1_pyKj0r&YezrYC}B2fjns zF__5x|BYY1s<)Wp*dj@;qecyrv@|uJCyN)&C$WF}0hR8!T#-$JBHv>csYc~E!yuu8 z`%A3$1Gr12`I@>KP-(?i>Jc7kj8$MzgNtJ?eLfh+(;R&cC_fQR{&V02FtW=i{Ok!*@ zWp1mhEAI8HbJBAP^-ZmxD_W&nkLdSAt7-#-G{#xqgy&f3mFvE+<;qfZ3s=QgnA3#g zy#fNnSNg;d2Q79MP@T`&BFdpF^$Gt$X?M5N>Su$+pa3RHGf(|zx_V&32R4YAA_Xxr z0-G2KBh9BXg0n>CWACf|iMcnCsb(@zul_^HLO-8MXnCi z&pnSkqfgHrY8vYb_G%AR^UQ}e*0BDlb~T#{#plP#jWf$hDlijRCA$J{87aqH*^uwD z%ajJwZob-1_?ha90f9W=Eh;u*veAqw8BRzZXHJ%MWhTf;`Ns~BE@gzi1%I?QPDX0H zI%@(rq}pA}V&9U2jP(=9K!MKP11saJ5rZOLNkK8B(95;umg{r2clT1%IT6gHJU6Wq zL4`6CPIAXvDsp5@lJ5lL4(}FGm;Z--zCxh%VO=ZePVkHPPDfiQdkq%RIr#r@2$rjH zmfvyhSah4}iwFG7#$cz_Pl6cMh5O(X5|ut1M3|P={^daD2cWGA4qYY|?U<6!30M=W zs`c)rT8#wfqjhzOee=s63iXsSGo;8$sOC&FsORQXmOKjzbY>ChymV&l1OgPvZF3Y0 z%h-?{YRmb^U8-P*bYD8fl>s!v3?id9-Wc!a&#=v}le{ciy(Tb~D zgW;2g)#mcz9to7pnA=Lf68up=flL!t;f~Q-4_9)VH{$n?Ys_f)CKlF6NB?8k;s=#SRJ zoTyLuWG*RIPC8>`;EG_Xd26#hg_eb%*u`V;uf+5^T7RaMT3|n+ad!KN#VIf;uSQxL z)kX@zGD18!Cvmg!$qJ2JHfxLz-Jc*iBGH=QLWb}Ed{`%}ZWqtO-=z^je^Wp{Q94x~ zjzc}i;AGiQ+jLtwr*sE$>~VN?KI&X=D)u0foH=hVa}=xTshp}Rb}ucDQhRQvqB3%#QZG- z$POm~k1XiWAt9GlJ$s;ZV&ZnZ9h)mWW*@)B-*q~(6nex+cW15*wLw}Ex}D9aU(68s z;_Op#(d|=ddQ;w%PjQscP`3X~T)Re^_*0_&M1xW!al5z99ge*~-Xtlt{BE3IL@SyY z7r(e8bym67KX~WYCv{U6K7qo{ZCes4c@&ZQBkl|FQc^R_>x`Nu@aubGJ zo3z_cTk?ontbL%8QGz{;S$GiLS&fB4NR2_riDK4?;_&h>aoZ&TYHZZ?Gbk2t?}pAe zujXG~-X`hqk%aJBPhR@J*53d}{c*fo)jZp_2_I!bVwl%IXt)HHl`59i%OC{hE2hJ) zdJIQ!47m?Ut5#9ZqfK-Wln_w=riN7iD=Q9EN*}lgH<$p7$j&;r;%wQJER1?I(1NWp zADbm(+Hbu7RWh}dV4ReoTEtV1FJwZJO=Y=3vjlHFWbZ?|H-F9_E@|+Fg6d1$i2!te zEi|UpFiIQ#E?>xSSNc@9=g;t^bwk~ctFk@cTh`2NW0m4y?X3lcl)d{MAH9Jt0uGFj z+>55h4&u5c&1{;brlq0dPI6f()~~z*2v4P-EGe)6kPGlUb~atpF!_`KfrS92T{UiE zifm#^C#k7RhhwicygmP%iVr=y?;*u!i7iXjElbq&>$|FNCpZSvr^1FGQ;7-0i3v#L zn813m6a)q`>%md(L2gkqNHkT~jaAo`pAhWT3$A$o3-G+p4D4M2KlBM-_KqLONv3os z8oG3Z3ETzP6!(z-FqAuNUSO__#|buHqCsiAsk8Ge&;)hllx39b|j}FKE%y; zf~NUoR?4WSn&E+^jJ|-9p>0A-fxPjqyRMzvQl|dGm-vMb(4>Q7o{nXj0CEn?@jcj< zUQr82&DKmaC_=LE**^0h29{0Id9aOZ9I+LlEs=aL#xS;>xO(?-V%g}+N&fq}lU_d8 zeAsB7%Ya0c!elOgtj$@g6$3$P@+-E1O@jo;CoT30zU(4%3cozXum?#jalyH(OlAQWPMI zKBY=0_A5yMun5b5%XeD1MRhr1muY3aB8uB_*scsuU^WmrmAlkiv1 zipHmFu=~vX$xzCzRkW zl z?fiefzAK$MI7I2q75XE_0kLzDZ;#YAVE0>@X0LX^P8nV)H^Jvf$tP1uBJIUryAXsM zi>IajWd;WRT`~G&d2PVe*JafvxboYel>$JR1}Z;C)DdF1s8n?6dg)UBre2i^0Ne#o zH8bmd-(4m#rORw*?@=Sou;Sew;0Y~QvE3reo?|wfGI1`dtkwL%NiX`7JakvW!Kd)44c?uTZBZRSMtM-E?E0!Hw(E2zMB{;~(<} zGZRw7ajR^zW~zGmqsJ(RFfvlwU6`@U(%rX=!6$v4PV+4qYt|IXPyVL%;`8fGkEBs4 zK8y5>nPsmc*CrCCUMFnEfxp$pD_$fUnWrXu@nyRQ%}QQIIXgtMOWbh}qK}^(0Hmv+ zK@6hw{|aKiKY4n1SDfjKb5^pcW&omxM37lM z5$3R>4Gl8N^)s8r|A1-UrNV(FaqW{qc(q8G$F>0Peaib0lbyz?so`RUc3ZhoiN!GI z<+Hix5OW~*wl6cd=?3);@1xb!FH zQmxE~M=s7SDUF`Bq6-7;6A^sYfdKKQuTPboy0wqR>fh5jp15}WcN}S1R?k;M%DN5k z^VmD_iPNDRl2@*Ahak^e&-)QYXe8FsIJRKUp23$oaxQG)7agG5fyc}2`Jd7w{(L)& z>~|dKZSB58j+?ffHFVtj{+V)TXbOuaSFY)vbyEB8eWahb@A{zpPPJPtAV}*oJB#-8 zo0PDYS|F}`s|r_N-)veiaw+wtgr$-a{!4w>;Av+>VFq3(?9Q<4E^f3a577-I)n*mEToDr9Aw!jCwN3W;^EJV=vE7r(*Q z%axWfhAhw^Lk39kUWhy>PDGz%)r)*;6n=Kj$cF=&;mStH!l%;go5rfe8f{w$Q2i%n z3ttLlQiMZ+ys!h;emkrB72a^mqz$*VVU*#Hxjdhmw|k{H5-#M=go2)@$%smxambMl)U zE9HtNKpu=_CV(iB$Y~{h>9^B=C=j$fi4F{A)2}>nQaHr)1Hs8-prR!1ma?BM3^b1e0BEhaJat4{o0Wv%T%ND83GAa5+`ByB&7&wR>>ux=qB#=9?H_;Hif? z-Dj&%?T+;Pr13((SP`pV*$#$9dnNqd&Ozs0bVi?r<$hBn{NN7gjk%}JW_p(jWvNj` zh$=;j9~P;xw*#_8rj%r6X#Sx?%5R&IEUwe{#CvDl{}nd)Q-z<{#AEQW^pP(=!=m5w zepzUYuR#^=ca`LPa|ZQ^%;nADc2FWi5h^AVBJWDV`k*8%5;^j-t5(FMBbpavB`f?+ z&cdk0y+ec}RewrZ_|nZuJ9oI#1bISp=#MAf|^+%$?TUoR6Vzo`8Bn z%hI*~B>m(XoJuoL%QG0Q{bbTH&rteBQfIhWXeTXU`r zLU4tuR(8J~7OXxUGXfnmF;ufQ96ckDhn)`bkZETCS=D zE3qBL@22+9mWM9@7@R`O*83@qR!F#FR=DCSOBcQssZ2f@k~e?i({r(WT$&U)nv|}^ zv-VK`O2)`1kVnN;)yKM**ba%8;cbUYwTVd;AZ}EWv zV1+NzF?kSweP1lkAZfIV$tKatNBGKy@fu{exqs7(B_#^ps4-J(%HK`w87i-A@s#8VO$5b#FJQD zi)2}gOUo|}SkiIe@lKpu34Q8cz@N(t^(K&piCcBH~Qi_P@81Uwogua^C9?IgKMt!I|e1;O@M znuJ94b8)TQ%$q&@ug;nTO=S-UU)C+Tdp$#N#TGrOrj_M#y1>}ECK{wBr24a@`iUdI zM774ek#40UF|c@a>DPtL&Q)`pgjcY=dSZC#f7MuzQHooTEMJh^op{f*WARC>AwbJ% zJP%h>p`qDJjGNqEo20qF>{Q(Lsp40oo}sVKT=CvA-%`3^Wa+;mPanzWQdfa-$p5W(YB_~;(9U-a`}>no^6MH+^3r(kvf5jqo_1@2|2zaB zwLGF?Pai`p`WxJD>L6$IhI#$oR%vlvCAcaCzR;VvUN8vd0NEcc^9wZ9fAkDzMa)U~ zu=001J87!ju1GidDia%HWp^1$#?)w8h1|wiglxw&)A^bs|59pju&>nVGkap^d}^%- zR+~OtXtxfZxbYvAgQ*OU(Cx7%sCJm0EZf+&XnSUncH&6J}XG(0R1UI@}!@e?sj<3Aw z1?4das2hEliP;Kg&<1Bp*TRa1O8MMuZ(GP;%;h=&K=WL@1GA7lqTJ?TSK+4azEjrU10(`pT!hfS0msK9slIw(Z74Z zcB10UBvyyi=$nG7X928|g{j_|dQ1G5su7Dp&}c zi$VvZ6y8U%X@Rr%?5+0`R&ujw69(%tjX=AO>;3pS&XR@w&o^ey$E+Eywc7Lsg>C&O zAFWInR_AoI^NeXVTookcgz!{DzVeN=Nh3Us}8QHZ_XcF_%4@WJ$lv?-%j! z>5@6$Zk2sOBZ6QkBc|U#KjP%Z7xHuHP@%3jxE+_(U&wdL3O!N^F{m0T)>Y3s{g=}H z=jiMC{4+zF#<^8}pM~37t#Roj&ICFVHH#0>&7gLo+h5yjrXuH_ZkGqM<`q91_4GxX zOiEjX7 z?%YP z3niybYrB-lS>`go1D!kO*(CJ%K}for>aegnZ$~)(BTWQ_Hh0cHV7$Bp#>*~sU0o3R z9qPE{#FNS)$G7}y419g2*h?%5L^%|0ouL?+aSK2VA!5uiN*!(r+)00hee~qsD*fO+ z1dXQ#Hpr8p#}VlYIMqb;xLU`|rOx}uY&)6rCQ92c1l>q>Uf@=3XU@3w7V7Aw1bd~K z|D{6-c$W%XnxrA5jj6Fq^WEj{zm4qYeHyavHgY6v;pq9I-`luDhDj2XN- z!Y5@rx8wPu{v?s&bdfPpgB)1H(jb*BDQ??#=91e-+t_jZu~qhBKtoByD`<+~$6lLWO+22D21B@3Jj4QZuye`>=~g;qrNos&hK^M?yoiJ~ ztq|tp z12gxnD*l#{_&u5Tdorh0j^@p-lJD1RFgXP0eW_1ZIqdC}HIV_FQgr13l24kG)F{|3 zVaiY+oP6F=S_fk?%(sdZWXK39Xq|Qjd+*qp93kZjV{lArm>mr;K%DeKWS5C#Nr3U{R)cx)m#8|Z1;#~5lBxI&6%v`I(*cT zcu8}5ctA6dkYLJYq1-i>gDkW^6ZJs!i0z%9Y|VaxXd8Q<9xZCE3seZqLdPwBx~r6S z>FF+n_I5Qg$1eQ@%Eg}^5(QmzCUM}9%zbo`n6g^~FLkL9T_i9M*@{#>miosZjF4sz zre(6ngMh|+miS1ehO9l4f?0k;jjb^*`6J3zt2pD1Yg~5C(hZgr)^QGag$VDMh2V~3 z{E0x}-Fhi=)r2AUgTRT}M7m`mRy+ z^2n)WpA6S#6=$*b2q?q>0Yu3#zPaT(hP34Y6Yq@5CY3T#Q>d-0L-n2ZdHgNt)$~^I zpF_Nt0Lv_^x05yE^`d=AiPfpVO7o&&@u0sTBhj7OdR#Ac!@?UoT1F)&ST}i*NI*QIBkO^@ zP7?7^0spr|IpppZa&mVsak_ha&m(lU`)JMb>-q~~3!6ZY$43z|1L)F8Hyw$dfN zi!XN6#R9UEDJ#Vx_%(q*1X#G@_4qr_+fv+yl+1a>-fDStdHmDAIIKWR-XKvLkNL$d zbpA!BgK7tE2){mt0*<|GAK1En@VxECElJ6oRP6m6&zoPjka84hBija_`|NZaCB<-b zSTnfYmvR}iGJiVm@M)&2^ro4I(N1!h!g13p?(i8k3MnDo-Uygab@YyYC=v)Ua#Fmw zSkqfnXz`X}J)~ypB=+!AgXdvmRrCE2e5H}cOo#MqB2Go8=gnU;aZLCAQ3w1mF22GQ z%Wgprd9I}Tl&LX3xdnZ)H+7#?rk56}WQ6uu2-#b*#Ock@B7K|VF7DslBxZEc@-Ren zAWL*0L4wyLa81Uz9b^b^lGN&b5wA06Im0Jp3ev0x+^0#@ekci> ze_7fCtEPZGb)BgVu5WRlh8p;yUfCREc@C^54g)l$IP-7dM)pLAIxrbsB~kb@=N_FM z(o4-Dqlwwhl2cXjKKyuee1L24Q{LcbH)jd_Zaspcy4!xd_t@V2aw%l96tdR&_T2}3 z@r%rQ;IW;(zDVAmrREn&olC)5;)uWe^LKxTRIa#RaBl z?Y1u^GpqrpDYmI*?zvm~`CIxreJ>D1C^IDr7Gz=6ykjoj#uT+*{WrgQWlaGzQK`8N zpjCVZk?M}Blirzv{#K#q^mR*vy^{NjLU$H8&nyH3o#H;NrS?Xdfq@ot#1l$euibx@ zmw;Dj=}VYj+g`JjsOisXL{!9`_`O~k_n9OzH;)-9Yt#uFUNhU{ZU7d-vF1nC1=tos z#4V3_=f+OIscV5Aa4kkgN7pTIOVSZb(y&e~#NX!N%o)=GiYHe#m#J;7v^ChwHPG5Q z(~ctTyJ1mV%UwU+V~e8xp*5BllWe$d3>K_#suZ6HSr`dcznywUC$U7=&+Q)9` z(j={_#+_s0mr1VxwEu_^1yYoxdPE1QN?Cl6w#wMU#`^Fd62CA1&DQjd2JMw3il0zd z4nLfwn1Ny9h+fG%J(LJL)8eWPRZ4;=B)!6HwBQE#3H)N()F|>%%;p zea=eT zG)@9#E&io^4&ua#%5aKqeDN_@7a$Z?)!GX#*x0Ao4j>7f=8%GMWkSW4!7*7a23iIK29vQPewNck&t7Mqx z`K&YT+Tp+Qzt?>XZ)#tv(X+V~WA1;_phGk10^80S50-f!G=vsZ&TKRL_<9XB$@aKb zer1|~y~l<4;g_}J)~DJboqQuJ6c!J^wW@ZAMz>;-Xs@YaJ?O*sqbS;2qR73`Bo#?}yif3BNB) zpqmJ;ad+uZBw{6d&z<9%lZ0~3k*p0?)77F}r~tymflL<=*h+G*Z%P8)VP1R@e=}j+ ztGql`&5AP{WR~l_tIb_pP*ORNTeDeB;Sh?0r~KnYST~{hyGT1Ol@@F2YNeENApTA< z7GXm)Cj%0dJnAt*9IHlZW@;TxUWj>is)9;J4au=cw-DHY9TR7d`*-$ER+&n^uZMU) z>~IlD{dA_qdR>6y`1x-Qd9Bjxg9SmaLV_h{@mMK=MlcXCn6ehuGp zC_22@uK)Dvus|*hYhEc_k96^APfY6tE(v$7snT*Uxxi#P=$Oe{%h8NOK)?4HmsMMt z_^U*25=sIjyqTzrp^knXq26|IEE09e*{8t0tW1rZkcDg$AcKF5IR%e{Z(c`hf;htz zxhjggndqz$HGLuW#e^Bk(V(Z-6tbTcTlbr7&UbIuYO!5Mr3gbeT%UCDI27L>$az3J z1|J-M>_fLHJ*M3vsH0a$Xv^(gCnnzJ;HHP?!vD3qWZnxl;QlomyA=+^-$FRmv@UO_ za3i-fyWEyDB!pr&65_Bz>OLrnhvZl%)j3jir#YUO`ue)dvK+X1=rJ`FVJ}`4zo)Z| z0em!Tb7n%i?f-R!6r^;8lR4u-wA)(4g&wk6(rH8KK*Po9i?eh}sksbF&C=5Ha&Aqt zw*HWDTKlH>YO%5dFyd4&;x0QUL=q2e7jDRQ7W^1BIl)Ch(^nebnRs3F`)i8{@>Js3 zv3ki~vQkRJORt2gMiz&Z{xkj)sP^mWsU)Ui_L%r&zv z0N&uW2@ZixPv|jMWG~z2Vg!e>5h-iP9Iz;b-1*0;- z*>t?ZG*Dw0@(oAzPw)Y?FBR&mk{5v8WXqE~j=KGsdTwF&*l3^||I~++Rr~#P$G>c7 z4d36CV)zJ#wY9_<$)~8Zw@mCf5Z%$Nh?-4db^CAm{4evRK7IZXZ(z)a&FP)85am2* z*-R}0bNHqt@B)VWN@zs7Gk$&6&- zq29^C#7}@N{GJ)(quQ5R_u1GTB1-bWcz=Mc(pYl2asUkyHIVjaB2+Gja@8AvKS8fm zL4>v9cb*=`ZRHx3{Mn=_ys#f*jc5frmBi6%vz%+McPE#fGyc_bqj)GST|DAc0q=ub zjd41OnnytH2jyx>HP})TT2)D`JGZ0+LFW|C?*j7OvW~z4si`|pCNB4Y9m0~ojXIdDmHVubMn&j52ertKLeP6c8mZq*IIf2D9FggP_A}EjXT62 z-B}1Kf1%Zg3x^3`*~j1Tvxv}yflAB!JC{U3Q+oZw*#h`90i#B2Ak4Yls$Q<(|?}qww zw}wlL6H_;z_#^2JPKOd>RtuGqV7>4eA|q$G47&Ts6qkFuqUfVv<%cKzm(wjx=bO_p zyDj(iLn;(UrnApxZK%Q&$YR0N6?M1PjF*cB!{?DB^GFm9V6Z56(P3C1$bBCoV|^u6 zN-%VF=Uz8^$KLh+b_dWXdEu-Iw6;4syOE8kwQALFGwn?eHh5rJZtz~EG*~-% z_H{FafZng;KcBjIYCXf{qmbVItls`rmJodLwai|S6QXj;8y*)DGzaCnv|6j5sd zwsi#^WGzHFaf;{XSNI-sWDki-T;N)fhQ$jbbbj7nD+iaikt5qk6#WbCl^ocZ(B0*m z*y4dUT1N=8BShcAJ6wUge10d#xMp^Cdpczod2p(+$aSEf2kcVCdJ^ed!m|y(#TN~2 zA4!m)fZxUr@{dz0|78lL_1&bs&*xR|y`J1fCa%srIB@+l{jPT!T@l;UrDKrLmh3gR z`wC{CXp)El!|Thl9^qY*9Du zH_hJS8#MhUrieR%zdE$!x5vCmT~LDLaY zHe|%J>ObS9a@)EccwahX&}{+z$;z!V9^0)F7h6vTTd%|YHCPpbd1gr!7kaKr(*E0} zB|()X4`(Jne6X=!`a$4X(Ww8s1W#h>Xt%Ss@_wP2vxY-+*WMcg?FtdS5C`^52lk=& zWUMW_#PH;Jkcby$Un~4Ik*0^8r-!XCYMMEiKfM<}6{Qk`JVX&!9!a*RjIY+CO78IruBBQ(xp0GLTnvtZc&vVie*O6g0dzyKMW z6wDYB-YL|Cry*7{9rAseV$kqVoutO*_dXb2b)zBm%`DCD>ic6bV-Uj1pn`dgq-|_9 zy!mCad#58ih)8Sb6d><_#6}!))jr2& zkWp64(>7vbg+MdVK`B?z>bPJdD#~yCd;WgQp-m#6CEgiMSI&daDPG@+ZB`9Ad>fm`Q z5$e7o3lKU#BZf#t>;ARj%~Il9jw2OX$@$?5MC|jM^lX|5k~SZ+H29X;zfz$x?(QyZ z=53MEu(W*-H1*C!?K0*oAj6lNtl5wD(!!9Plhfbu*Da6tja%JxA;&fl9)VPvwVLAD z6I=!Y^5ZyA{KR3gXjG==AD2n7XS%bF0)GDZ66n(7Q3P(a>huQrn2wLt>Gni5 z_2H)Zc|_b`-^-K8(alq1x5jYDS(5P(d6>vEWUBNQ?7=g1MiO`8_lfK+`CO_n_B0o2 zXhF7GM*@#wG44;BETt-x8%xyLceT5o>*nDes$G4fCTc~MdHfD)WX>N{%f3jeS1{9o zEmtK(rD`O1<_w)!iY^Y+tlw&6<`)_9bo_{3H_{@lNi2X)=ghl6u05;n=i~mc$x^85 zB_Kwq3K1k_nc_q9SJY&P4SMCrY1NB}@=1cQm^7$RAM#6sA8MeO1H&&Vnv|*EjmxFk zz?rO^UT_!4*$^Xnt83q^S!^HVYkFx=E&y!NMkNbC-;TDflx#lS9xBk>(kQSy&ya%R zuQ#&fX(o*ZtXLhRyVYti&F8Br@dOqV)9-~5YjS-9Q_x2?_zU$cX z(zsV9Q6-$G`?H+zX%|PtgKmyOGn7Uk_PHu!?@Wv z*{%1qLcH8mo9fT@-bB0)B!Ox>5g)&+-P$BYtHr&)o%z|VH8L-@A*DhMw#A|c3q`V7q?=Pen~=rZZf7!l8PlrHwrQL+Td`|`jbUkc zbK>di3Axoe*}MF;e{}NiDgJ@5U11#mL=Y$Ds*EZBcOno=#xuvI?kHCpvgnpHMm;3t ziFm+duHF46Lg*p4Ii_j2;tZ=Yex5L~YvQdIYc6|Azt;w` zPEN!s61DNNt!}ltoCZZ&xGaG}Al(WvWHUu+yf5-9gUd5Ogu{1EFAD}vKW@(Cmn%dT z{i}RN`p0Rn74TKiY_&fUYe`gkO!z!0`VXWcTKpUp+C|FPEmfIW1dcDzM}yr5!sbPZ z^wTmh+e`-@FPsl57JB!e|KkmhS?;i4v2(&>QYUg->h&P)a z?MoToE5$#*oTr&L@#hKnq^-wUR1~d8DUF^ASSEG!9~a^x>acdUX|%KoQsyswN+j1C zXciqbNh{#T#FykjXp76PO|JD~&7WiF(avOlz~?Z<`e&}*opSdtn0S5VZKCzLNFzX1 zbW>n>BYsZ7y>XLRr*ADPgt>1=H>s&PZ&td;4&ZcStAo3HY&;irRenwMK8#*WrM)r8@aV(V2J=yB)PhOI z*UDj9hYTv`cSqfHAHo^D|r?U=8QUg!+M0kJZ2ZB=3%!rZaNBvk`si zHFW+j(X7e%XR`Jn4b@||=PYs#=Iu=0nR*raiwqO>L6;SIa; ze`lJ~m0DL=j-7gS|DoxN_X3-lNg^ZjHG4Dh+gY*Rs1y2B*NwH8$1V~3GMzGyEk?Mx z-QUTYy;w6W;?%mGT5z|?Ev+lbRfV&5xBpB6M1s&t6e73lm>3~;0jB;3kCs!`5GN>Lup!q+%5n|(H% z0FZ==UX;iPT5QNKT7clrm7`4|qNUF#3sb%$eBND;qAj?ieD@`{yBk9~e0j+Icb9Z4 zE{I4ANG{SK-Ou6sd!G0GcZOwVc4y9eFT59N&=S_WeAiuFXB~n-rXKdG}rnC z2SMoFo=M7Mc6x2ClA0uXp}~qMJj1PfA_)$6M~&7XIw-#T9wcomX;T8_IaXxTkJy2m zbsSTo^lrTto6bc)L85^yA93<5oB6#qv8nbwGIDPf0JBlJow5ic8@UT{tsY4Bb__z(HcARj$I`)d{dw|;!_ zBU5>CLv|0@uh7G@uLsstUj?imd`!hB_$ZS!JM~D$F*l6XpCI*|!k0i{y*E=J+hRm8 z8?r?0x8aN5e;)VD>gL{2f_E77_22%?*ME6xfyI-EB7(lLf#^*6yXev$;ce>{=Gl(p ziSN4`_x5wwQ>m+t*`G~uT8c=H*ZfwWUps3QpSa5x7_lpco8nmAB$>*=q`@f+r1o|< z%a2bh5g4;mM{ElmR=vr&D-GxU%PY3iC^+$xcQQ857#AKSMUSD5cmy1dj1ZMt$tSD$%spD8-1GAfh$pbWO}5+tW5=<{7b8|#;9Sj zHxkUraKjRjC3s7{eRb%zo%svLYD5MbRjasD_I6b_cjJj4dE&XQA34+#mHCVnJ|e)H zvNS6)I^^_R)9M0ye={QBr%2o{D-fV4u)e+2jGXLvuj-GUE)1sh8c%%6aWd7w&sr%g zvIU=2>1W|CbiqX_I|uXN12ZK_C2KcU3d=NsNKrjFuFA;IPx`F3%s2`#O#{Ynid(E{ zq*^2TD~qr1+v*p{dM3IFy1w=O{qBS&dxm-y3!h9SCvShE@nJ^(rybc(rqop2?mkXzWh7NE1jIw>XcS=UZ5rnN zrNKZop)tKrfQ3R|ul8hGuX6SPtL+fA%upOxCl2M(ofwHKhyq0$qze!LNu?9)r4tjU zSa8(*&TzucI-3;3Q{9%)s}@*~MY=i<@|9dAcpxjaDr7Zyf|b(H=JIX9h}6iB=+%iY zj!(S%cnC8G>7z98Z}neK<`shzk<~5L$t#A86)3-Vgf)N>NsmaQg3&05Q@cz<3qKde ziY8QIkXk2OhEuF_w~#BH2zD}Am*3X1tbFaF(hRZcVM^|8px!WucEuD&2a*YASR;6z z4a{f2aFkvFs<*yP403@_YhnOCV&H2?%jj1y0uU!RPK5HgFUlu6!q%Vb7>3_PTK6>YlhT1FTBv%g zVRpZNOR*1Ectbx`P?j6H6sFB=OIBdrup~~J7?xl$Rs&8*D|T5=CW%^qL(k#tGZwH7 zWE|ZM%j42lU<`b(*lF8K@reCSP-$pBLY+pxs3X%jp!r3crXxiyyt#^Pg&OiJSl66Y zLJZngnq)E&x;L-Mh~BJF1ek0uL$XTcwd6g!xOj(dH1skEtG6gi12q1oWysh!7tQZ!=EmOvXuklEe86CP|1b*IH zgs3iYWlhq^M0^~(J;z70jB!3d8JopC0`I<2#p}&PC9K6P%qT2Jt3^hLR(~hNTCu7t zfl}2fDS_=4MF*Akc6)D_`JH)-#=I)F zAP(Y0#b|B463Bbc{X{4Z)^xESjjq@i&?re!^PIDz;QHt5kwZC<@S#=Ubi71^nF#n$ zux5VitN(wy%kfYW`YUoK;!=evp!}6nqaw(cF7qzY_B#tii}6y!TgQXQ^cRkIdUcS^ z{S>CNm{6+O?Df3oe5bwDOs%__)4xY2Pe(nW6usH2i*>izMlJQ%%_K*jhTDBjzL1hZ zL-hTh402boH`Ss28UifGRas7(9#2&eoX4=Fi!()XISloL!eHpuUY2WRrze8rcr5Ya z4DY|qpM#-0eA!Q^b8@>!R;T2Ot_iJ?&gjxw9K>*7RJ+qREIXfvdU$7`HP57s)2Awi(@6E&B(2(}6W01>yoTIJhrq4CPjVZ+!2#QB-dG*BgdY* z)kPY!zbHG@qnRA@^}3%&Kv($a;Mtu=cW?Oun+JdL2JVF5T;{6hhJ#VEKXc{s#`A!9 zIgmvy>Q%A?nBBoh^U$BeP&*!n%wK+&v+FQ%N89xEGy0+d`zt1UxjFizeK^|6uoG1m zA)LAZ8tnq_k#`P^bqBe_P~tajn7o)X<{EkR#R4}N46>cgcV{jv+70Ie=C1$DPfYBf=tcJ3^(NVQ>>m6v2UEO1 z`PSyUeJNI^K-+0xf;8D~{Npc$$51V1WS3Ye#A$d5(g?5g5*kBVNOh*eB3e8%CK5V% z0-CAId%I+9%<^j6W52@s)P!x!QpG>sD@}yjzgWZkY^wc{JUKzDisQzDT<+?SuiShT zEK1rfc<0(7NkE{Vcmg=Zfja+yX6 zr6JG?%?Xq2F>!5#smfSY;aQm`Ww=B}KO;m{rDkzQ3)$Av-li{g?p1eHJEj`ytIeUY z!ntD$+s5;_f-_gIFhuGZ33W48dU@yOl=ar5#_CZ+Tbld@Jz>8Mfbx(Wj;Dn@%Z0Gm zsuvgyuegFAU4qsJ8td!9@Pn4F@M%eS@+w&wc@f0(3S$>w6ihIh7-0Ak%e@=7P z!}xw3weRbr!C+#lT`Tkn)&Lp$0Kp>D=E8VtV|WKy?SF}+J0acm+u|QF(Q~F7YKR+Z zP;VqAF`7%H_;6>6&syv;c#LW@qZ?_68);BKAsQ<#$n;oZX!zI&ZXKGgouC-UE^~c+ z8-09B%gFbfY{q9FSjoZNCi1*RUSx5!JY>9F#`j$$6LIt1AU{FyiAJn@wsIl|cS`I^ zX|zFf*`25Ilja)jDSBqj<@+awc{B3qOQ%hupg2eh9FKHp>sNHo_48yKlinP}aIr@2 zxwU*lJ&1%~n0EeC5-XVvoyc+jXzQgC$yCD@WHe||<^?%HPdqq6Z!|r&ZU;6=_eds< zLTLYT<^<{6DyMh9%PS18XC9r0{^$Vn7N?PBP%OncD-)ZUZJfx7{^;O!`-#Lwav0Ut zuSL$Ys6eGAWrnX4AgqwQBpIaG_wC8LPG;TB4F|>fWs_u?REARJ(l356J-Le$w7#BS zS$BWZa9k>7C|{UQ*NpZ(ejkH7rFOsc);yr)%WxTDy6=W_oBw=0FcjZZ+5GmJQ`w=R zuVmSSDQCqATe68#J`&f}iM4-IGl=WdfEv`=ix@-hnffD?0#x_V4Gi$)Wg29WUNB&G zu>tvuv#gdz4!?4BqP5Cceapa`6@S{Ok8ub#A&mb>G41-aqg{VEJ3EKLqt18EzvJA! zrL0p?4^k560K~*YW%|cpqQ7iPy2^;HkK}kGK>FB_3}|9t6P$+k%)NTTe7t(_AUYl# z1Bz)60mY>ORyf(Bd;q=0bt(rU?Cp zv2ueo*QHPcUdx+(g%5X$NJYf%eyWkhy(I=4S`NO%_)Oh0+~u#kwUKyBFjkPGrdv^8 zCfotC8~)&-qj-uV3?FL^1%DEwElY}-`22ba`$1H*h#63tm3`I^OM3FSoN&Unz_wxO z5F5IjW6R=z5BDkON#(NE(ftGFfp#aqPmI#u-&@rK_CJ#W@U&&+yD+UcI*<#$-pSKHsW(&EBG$v+yI^p$QFy zo`6a4CRt~xU!%3+YKP%P^_PyBir4_zsk-anKT<$VzV7t*@$rr3ug09a%q6#yXB`Ip@n|#oisrkoAlYi> zyT@B1PEtV5Qm3Z2;D3cPx8k*bFkIK}Y|6Vuk(|V0R}4f12gV<0aX+bgLr^ir=z^WX zjqhp~BwEhDc>lBVb8*2X(gA+661NHy{kp&wZrNqKK)s=tW$Y=lQj1Poy9~7dCX~)M zSCsT9ae2+n=>X5ojMI4N95n08Q#dENIAuX}OF@PfAPP(J@7g0zy9f=p3M!5xDu^9@ zl(LCD$B;n(-gA}a*IwN_;%#H?cV)>FbC%6+wy<16nK}zqANd0nH7ZZxokS4PX)&sn zDv*N)8OP#;>A7mRxlK@gJ^GJ<=SbQE5Q+7H3a)7Vp32%hYjcHxrvL53;rod-VesxY%NqRrqJm&-5?kVFkV~F`B$+2{=?rsY{t4>eysJj-fNA>td%oua0pq2Je`?nujfcOOZ$&j*Z1F2k+T>%~Fd9kr>>_a+;}E&=Q` zbYB2L8*X3I%?Ppkeq7vInAzFtQ9S=>!cm=2jJdwqMIcak!#%YwU0`81(`kTko+f{n zVCi?eD2YXu+cTuiJU>J9-c~4Gqli4f?pQMbu6!XYXx=m=#$I3>@w%N75cbj(EJfda zWO-pBm>eWY2{v1d3^x?3uW+h3MO6*C^mTsvAjDl8u@wyu;aU!QuDX_Z^6~?NjKyi*8u#Pk{Q{C+lt|C2WPT<7 z1NTH4J}1}L{LPcC%;3~Ss6bPYAAKMM_yz~8*AL(ZJ_S*&?P6FCiGjkO9S*dViJzW= zu8MW)Z|STNG)~^Zoq!R?cN@(mh2jphwxMxYb`um3a50Ds_(~xX!keAar)1qX(QZJU|$N) zo>0lYynYUBCZ1^cN^erndu!_Vn#8@t3+{9|6Y0*94~E|}`3nM`c7&-^+~=^IlczHgN-+_N%{lHSz8#Gfy6dG9YYjE$ie=jJ zX4%H@SuByhi0aF^Zvk#5E1kaNCytGT73oS9z@1mePm-w%Wc}r=x>#U)HDO)4Qr+El z(dA4%7SIc(Rv&8qAXaY6TVWehrg8QN^tW(6=yij567t6dQ8Xper6^b_>OhcGfF!+~ zH5w0|lO8{5Bmi&wyME~Cb3CXfaan!Q*#7J)tNUd7vsuW$mz(sk&cNM6vwuo3Ve8$cSGVI{sp=GyI9ou5IDo1 zj(1X*O(If~;;?JauFbfrki@Exf1jz8iA8J0Iwjk54_i5q{$CbMZ0!@UL!kv_UCNDR z?0A#vN=%0Ak;cK)Oy=VXf?yalU3549cGL6N4xhsge=X_B=jeF;o%~ubvwFIp&?-iN zsN>16<4J7#y67$$C2`~~$!(u&6}0jUtBKX>@*(0UPySDy(Z8t@)DzO**vMn0;(ivW z^ZqUnEq8ic;gp-1qPG9DgC0++BY#RR7a%!+byD*w?(KeQkOf}Y@j0PFYN}1IAPbXdJ{Se|VEnP#`@D1SkEi^qQk~z$> zx<9GNLh?TIP+~-X9@DW(*@LKYlK_-$p;xXMB)HBaGj!|aycp4w6EdPkmGQh&>{X5E z+EG`)RN~X7zI3>=wtal^eJSf_hM&mQPGLt%G#8bamopCe&B{~Fik^1+Uu95=@uE}t z?Lb%Su|=Wpyt^_eg{g+f5gPkJy*3)(coOkdkmWFCYhvlc$al~pZ5{sS>LJ3!l&T;J zZZKlXCS7rH3`C(2>=*S~IWd-U8s*|$|90zMRAhOyNms5_v{s$$OhmXk2We3H)2B#% zV>D_O4|GBtyZj&_W_Bsb5d0U=f0yVP->{g)&wj0OU~aTa=_53Eg$@OI_C ziPowO^_4+aj(@ZWocpR<7*Sm1(O`#Jv{rTK+^Y`}h_%5_tUM0@sp~yg)bu@3iL&_Y ziQpecx{Muz{HaaswXa=%^_5K+sr*{ftvD(ZzIu{Da`3aS?T#p%vHC;Fp;msJT`|a3 zf%_z2@z^0zakbfU>2QhYs(GlnB{jVByf@&YX$M4J)!lS{Z#@mQx>V@i{lYr;BMDIF zbdE}^I%9^@elexSW*o2osHbR+nkrW6v{isM8}`eW8-k=CZJElr(gtoTb$2}-E}k-N zo$g|}uCO{e`Ar~l$ee^IVix^x;(qqfKSsjYhm@jGlq)$TlVfFdd$e4~RwrYW8yWl* zzf4byd^nK8L=^rd-gEEXAKoS@LgT4}Bm7i0GIv|A0NWzdmsQLAn;0T!+a2nSL_~9+|3^vKg}O%$z2^0W&?I*V;cs8#K{PE7xG^DI6Gi* zv=-9yT^XJ*qZ6J~pxIg$9w5$%HeUdezEs6=QR6?4HXqii;_0X8t@bFFJKfRtPRuB9 zsvCw&_!|BkEnA#8@|mue>5CB7-L}nv=;duSzRJmrF&5f zy~Yfk9vvlhM#~1~J@hkR}y;ro!Q%c{r zR_vUB@M4GGNqr#mr;pjLdApoOW2k|*X;oX5Y_Y)dt1Pl-fE9<0TAr8HC=J!!G-Y_! zZyFA!GVLI5Ip9N!TY!dExkfVYG#BrEwI@*5+vk^3R#lU&Wvu~U3}0Lf;#UsXl1w&s zp!btbbYL|FJS*pOx&MamUahW)RbCZ3Q|!JFa|H=pM=DRxvOdQp^$nj2*ac@gnv9r{ z9%VZQyBJ=z_%f_kBTWpfs`RX`^~_`D=-yxYH{EnB1T4(vtixFx1gu)@(*;8W=zUt+ zI&R!s#h-4io%1z28?ORYl;X+I7z1%XO}X(afbnS|)!5|UpZiYw^R`WL?p^FFy3%PS z?d>FTDMm$NhM)P5K?goj_N7F^+N-0Lrulz3r0#Fc`5LO#$`8$1kL+>F^xo>@pT0%s zq91Q*o%bxPB1F)GOppr#*mYRJ)3U)9Sq1d^;$CnS-yVuKztf^g?fFZleo~-YoRb z4ogX@4ic$_+3~&mNSREsK~-rkzG$ogwtFM_fXx75N-$Ox+Q&(6Wzqf|R?lA~q-WH9 zsNpU;`H0R=off}j`DO?x66}G0uyG*6LA8r;jXK|zz{}!(7Sl+47l6w5^^~Pi2pJ5C zrita-#f=FCS5Ys@huOed!1JZQ5-q}Jf(VR;b<3{BpnE9-8O}X@qrR?4Xu&s&fx-GP zki~jPowS7&#v#k7oUjlA&HHA-JN^c|O4`OcWGz!zj_%XG8=rb`06^OBt*pn3U06os z<{w+-k=4b!$>hew4;EyTi2$$Sf@pHz`90Aihr|ovj|=;SWKn&>1!h$E&M%kwSMoRG znl%*X!cN--v=f^tC+-xfwvDl$T|uA9ti<*8RhxXwnXn8f5@$GzB1K)qXdM#?MM9kr znv5WQMVzOAIDAouguTHn^|K zAC&32kw;2@NyHskbfe1_R#3}WF1mvEiAeXhg=iB4?{y%gck^L`0?-QoIrj&n45LZ(P>p{8T{x_cY0L*1M zfc2CE1ikj`l!PN-q|Q*Fc(OsFfidTrgmI~KD+<<%I^dcRU0zMo0)5b(1lR174d>Dp zx6+ncT5Rg?@d!Ka$woak86b;k+oPb*q-YcD0et*hLi6w)J?UvL&N&;g$zX*)76%30uGL1dnk0l+5O|5$6 zz0wG{sNR4n6qT6Q29e-$;J|C5YZockJ?oS@PpMl!cf!<23t&t84RLYmmAB`Ovg97v zc0f+ML^tNt^sYe0Rv-tx3ZRt#)qElFJI0{1#=;YTjB1K|(xkp%5Y)~@>#|GNjR7&9 zY|b@AGnRP1X4SCgcH4OI?!?7iEH2>kJGIF}-XTzN$S`EDD(_w(2BGUQX0w4qyo2gL z#b2w_DK^C^Hp$bz3QrpqG%mOJX<7IB%iCOmFNEEO^4*5)x>#M4*fA2Dlh{`R5I+ye z!q^e&ygl`f5Uma%&sU7XvL?B6yvkDW2+2+@y~E#l7kS2lK^d-wNYFvFNG`r0CP2;` z&M$dv&YP2h^3@GHdSmY)Wb6|5Odfi*5h|-0rI{ zH<=0WJwB&SU;P{3^B-}iPuyL6a1A|&T!p49g6X7kg9YQE^tv_jTw_IUzcQ8Fe_6Ir zZ>WBZVbJSIquj_ubB(!tJJNUgw^oP1g^ze}k8@G^fr}~*)Y^S?(%mJVaQ39TT46_2lFOKQO z7?fc(b5dNB^_Tc>m}vGe%kq8_7A-F02-V~D@`W_lw1t_;?gRVB0*F24Mfr#Dk$X_< z$AlMzA|`+O4NC4Ah(FuQ`_!#j8>4;4H-8PH1)k{G9hogS+*s&?GbJ%0uZq}cVy zv`|}=1Vq*UwIkOxfdz<0h*?qmO(UJ z8>t}TGUnR~Bg9&Xy(C(b_tyZO@Qi$h{jzX){4_1?cfC~d3?uGD;zU3IRSBw|4zaeyYlTa^jLjMc3PqJnS0bBb!YTU#yT%B+9?!0LL;#N7?=wRFqIw@B z)^9(cuQj@`rdeT<(Yf1czNq+t!{ z4q4OqzXm^7hr*A(xp=%WSgP4o90{U zgF2&@d5J3){MWZPb?&km7EX`fei`3 z5Y-K^X@fP+;KGxXBjs@H7&M7cH=C5BAw*n6?Ll7!vykUwK9Ve34Ss)m$F-#fIU5;XERDys2Tc!4mGh|viW_wdCL#fswE1>XEBa3XU?oFpw!Nc z3l~-3BoPW7ix6AGBH!e6;j^eNQ|2T_ai^QJfF0?ua50(iFjm=R&5`_v=DV7LN7d9L z441oSX}wH?QW6Xrrys~BKsANkJ%XM1ZB*Y2HcMQ%+~}1N5!}I-#zVv+43X zFVMipnm0lWXg356p4@h1CmZG4c@^j#HwPbPLrkHyU-bBhs{UYp14aK`{?{xKz7<{T z$7{oWYCwzaKX!bx6}xr3G@ai&*x8OzN!YzvV0Qdg2}#a`J(aI+zWX(aK^eU2?VE5K z1J2JLc!^z=rua{+y!>^@CMki|g}n45a&F>TRNM3a!|hI(H3=_>lhK3o*tYmKJ+E97 zBP&kNf*y#jhqhdrk>{Bnt>#dJ9b)kprYrD(UmA=!jIy;uMvpzp3$bVY@*!*oO?rE!n zbZ=%TC=J#V3en`J6SxSigf(TTlv1Ideok~Db#I=2WNfc)6y>cQappad9|ol93REJh zhz|r~UD*9y)SEIK@Bqut7wg$%{Kx~k*i78{1HI%DfuseYw-jwZO(iX3tQ|V_ohCE* zP#3(An#BR94V3c3O6gA764N}_X6CHokhIZo1HJxFU?$Gg71hMVjtAxh=hWoqf&OSr zot>6eLVD$9k0&6#i!KkW7WQ=17W^_Le>-l;O{ILJR^rgjYiy01Eq2%W>hIw#`r6cS z0jpSHxMvQ1bLsd1`hKF_`TFp})$j22iETq$%e;mZV896^dkBSA;ixl?q>)3azj6i^ z?BsOQ?&ffi2t~m@%Ub3Yc#c z4qpuRXu76YVqX!4P#3(69)i3IEaS6yw|FP%)nOv&i~w>w+5+L|=JgnBVA=TrlFWjk zk+08q${975L=~jdm#ukR`%ZbePy`XFg6tNA9FTBonGNX#*UyZ@O9F?3D=$0d7mzn! zZhv>EkG$`JK{PC(idz!rQv~kWU?pKyqL|=X%4jjr%fFnOP#Fv@TY|;VR7yv&a>yq9 z_pT21B`}`}JWkDLTLaXU(wVFrstK;m_bg6Q6G-7>nP4?G zR}Cc(r`E7hP54&{p_G)%l#RW|9Tg#byq}3BxaR+mhH>i0K{l?(e{dk*-z4x$Q0dF?H+=bX{W%>b)@7NE1PYj~(0;ycxcP<9> z+h6}V^>X;Gx9MOa3MCndn8Ysrh{1n@>z)ejpvwX}P)xFyo`~z=g6m=OOQyxtaLhp% zwle_UNuucM%J}@{ca-A(iK=~NvLZ2k38M$%{|g}gH|ad1YS??8z9wOwoT}i9qfpnE zDS&3S>w@zhNdG&qOY#nbV=P#A74(KKsLALG(9r~msL&!l3oXKw*Kq~jtWhwp2;<6T7_I%&;wZAhc{|Mw( zpk0k!enRicZHJe%A2y%3_Su-~by-xs-5cL0z)QVz516^hZyPCYXJV;kj4Ybp9&9L& zSqoSb_h1?(*1R6u)Newaw8~t`Ypt@SLCr!OhA1+>oGB0F8_Uk zr{$AZ2t3|=Jl@2Vc{3SWrUMm6;EOG3KPhZbmr(1Ucu5!76c^a^Xlsc8REeCtdZ{7W zJC-8RoY{rTpEs+UL+YFF*$_DSugIGn(m-meIWGz=`bGX3>Cu@q#+fvBRU|j-;xp~G z8vxrVD6I{V{rKT2;O;f~(t8p^693e}yszB}A6P-jTVZLik-_oDD)<~K_-k?U={v7k zpZy*L8mImotuJ0(1(B7#1wgV3!A>kJfr6iD7Cb&F}ANXqH~+ z@Ql!A?@3;t#I8`8@CDG0(2vodCiUC887hc$Y!9S4{~0Ra9!<9=emj)^{P%)TmOF`? zuX(g!xZ~q>)68GbHCgY?>eOtMr+iA%T`lhH3Tx{8YD2mHOlY`Gm@1&;jS1bem5}w> zKee(1n~!osWull&h*v@~fW!vNBQpIcXXD@hwZidr3f%`t6W%l*a#>#eQ zqtw(NO?J3YK7KeE(NfW1onqg$SF)WRcT%2w981T&x7BW`dQ2+iFG%y)jA;*^Z7kzq zDraY8=cHn9n1HWVCxmWT_Svkkv!8X8OK z#ck@f5h_Ash16@>(3e~B9Bi}s%AjA{km}NCfRGo0DcMZGB z#KWh$2niurHnjvIIE_;`we=^SAls(a8&Q5$Q`~dhpE&ax5 zK)HZmB3GkgyjZ7&mHHFlmykyS#!XSZ*2tNGZG6>>B-shh(^tKwQnGVITEMHAD5>aB zmVV?T(eHuN)_yjWR)c?Gf=SFEF` zRmQDAtQIBuj&&GZ%cbupC@2T2*{C{L;Nl4$6#426S!6tAN4}da?fqn6qh8U-7dP!a znUiUMr-rSVe>R#AKtmNzOLU-Q4D?qnedmir_3=%2irnm8m#0j^qy6DZqqO} zhY}_G#a?A!Q>^6LYED$XMStF&dpV)aX8u!mT$>(cUyIlR?(&GIC3+mzX6|P&Hop>l zhVtT9nQ(7zvl=bt5`8qeDH-d!Uj&lRC(ISIo)+->zhSf{@p}%$$wlae%J-|KbG%E` z{FXyFk$pax+?HqqnHZFU#9cD+fG`O2yCUF<5xu;}ZKh!vy-DG_O1^GV?s=)Oxcz^F zw}LdCayxkx!Q`r7GYQTeR^|^)39^F~@q4b~DIbKC`lRydWE}td=WO}sx*`y5a!IG% zt?XIHa4eHawL(MBTuFCNJ{p`sCx>sZ-ty#V^Y_|C-It zHYe?Wj>eT%K)wsWh!g^=VQX)O4@LJbF7G2sk6{xRXQ<~fSfi{CAns!QdD`3c#fOb1 zc!mrC{Xl}-c*p0Q;HoYU@xF(sB!EqYo_V~8!Ge%fhXHzxY}0#aK$Ci6aZOU8FncR@ zcttI0%{rrA2yh56KsMn^5J;%IIs4EQeMKJ25jF$hdJj?ozZFbrq!cMwFLR%^*HAAmuulx9CQb!B!ou`2>eqd5(!9K?bZNE#hee|h6e)bdXoiq1JC?g|f7-7YHw zm%}p9aX}LCPauTxGzDLym%f)Kg~9tN@%8M5VhtCegF`qFImeExovnW-7xk$j#v#3H zvKy|i&(dvKme(@0pvbJVNvBnfXVr_Xl16DBbEKF53j>OtjG(g+QLLfq^@MW}^R4Ai z0oowd{T27|j7X>7$EbmM0`We_L<^Atkn7W@bSM51Z!k@NslGce=hU>Q{zZdxo-!a3 zyx7VWVu5v)i@>J1!jotG`{a^qf?Es6jSiLUvJWj7J*eOVivyhwUd~*K6Y@%V8Hv~N zuV$ItRL2x@L2m&!cDa{xS%hmZOr>2N8HewPOc`XC8_%SYKI%h~Sg=Pes#p6H6Ael!h|~ z@BT+M7eOSYFR-+^q(&0C$dpjO<^a(0M#Y#{l>ePPC8A}U5*#!>*;XWWuVz&~*bTPH zU-ZB=HJs2@CYRcn!yRskVEL)N>v8f+Ws?>ar9lYa)u_Cqg1I}=cP#3MzZzwg0bc_@ zqGg&N92*n>!GEd;0ZBz5oOF>@h!7qwFp}#6FL8mpJ;7EcmRij318$#1dc$S#H6vlm zsJCyT(ir`b3LyYB@kKJZhdcy?3-k>C9Hiutxq6#`0YK1ieX6_2$!(1ax`1N*5a3L% zj1n$@jnK%4){kpQYmqmc2zJL7L}33anI^f&fK3fQYX&XBDgb@8}IY%Y)mm`(lMl>{A5?gpe(R z4M0s;rqw8OH7Xx<*23xs_>s*6op0V6aSeey4pYNEqWIOYy@v`&!?y{Ip)GyIsOpB0 z`UaURO8-02l`()9q@GMy>X4PcNUm&Dk4aC~ut;+-1h3U)0_E)|DdTBMqp zz%o__aDD5q%mhhR6szZPN;>4WG015F=yQ5K*q%4DqGzB{_)1)gG}+^f;uZd$y$kEr z2qa}p0Itd~BT7L(GXxVFkA6iLAQ>ZwI}U}fWIh{m;e`$*-Lva5#5MBKhuh zORonGZ6e<@3*~q<4Ofjwa2~;hT1N-RE(cqt;h|*3%t`$_W0;mGM4Rs(>zwr5GL-}q z&NPbe8Ee}>s3hd$-_qWm>en{2n{2A{zy5~F2YUr}DKMD_GGWmQU zQkUq>zSvP!{KeF#A;}P3XXrl*_p6}G4U0ea0aCf`BDJ($0)9mGnR9<4`@dgnjzopC|659bfk=_H}jw zUPkZ?2BK2fzH|IZ>l*6fumd6fxnpJ_$lu$)qrJkzW{h z(^e-DPKSCrx%Rb&gmF=N2^1}^DPuTkl!xk;nr7(X_bK~QBkoosSR`+eZ=Q=YS0|B7 z4-kD{{eRofiT~Sersc`SBBGNq(kgwN{AH?N z_kw@f9|J+o-4U@`;(L(t;Lu&qgpH>vlJD4j)jW2wy8NCo@iTIji^Dl7p~N~}m~q4BXBF)gU?+&ALe71eTcmpdxXax@_HWQ}(artGHj z%VGp4RDwXQH5ludD_!W6Lhn|O?z~IiH7ymFo|blr<}6R8TO$PvbL{XDrL! zLJ^0MdGJo=Rh?RL&pP^|`g;u51d(?3+MC-lUT019ar8PeSV8=0RYLkye^u9ta-bXR z6ijS-6T^>s3BPR>tRBz$_*WAKrk#laRp*(-$lGtJ_)V*yVbS$&?Iwn^Ok>#vl589K z$L6Xw-%@ewS3&ZB71-0lgkB%SG!nwfZT4cK+;KVU&(#O1wj4>*>;U881*fU0%MV{> zADC!!j#n#YY^`j0(jHjcMGL6vEhXJUw)e#hQE@;Uku>y$nGteiKc z0l{6x$zqpTFmychlHO$?ECoKc0%pYzqB!bwbJ@0r6WWKR-qm$9HwRBSf;_I`r%fim zi*W^UkbTyKV0}|Yl{qQ2c#+>~=lmZ9XUb%XsV95tI5Rjw7{ukKboELdwg*dZd6&4i zpY+f_K5eUBf0eBzfwZB+wrrydmEQE`aQ9o5ltePKzEvmzb3OCL+5FaC=dVV5mX&I4 zMTj)4rFft%LDBwLJ;86 zGqnT{I%;|B9|E-|p?eA2;V(LnslW$Wfpd=}9m9NR<=V1d-hDUk@qS?=X(6VK>o}j9 zGKM!vtO&0sx^a%%(?3lX8e*=c0!()*Q&OJKE;$CdH9htv z#gMzoPZ$6}CN`gx(@59;P;}?q_2HTc#4{b@MueFmi{Kpm5=KBkn~>)2L?+Bxk70B=b!c@vE>bVj+@$_54Zh7B z(dOdE*DqcYm|EvepmZ;Z1T2`6QT!su`AA=uq#fBEvkT-nV2UWE@<^KvnHaO3ND-Tq2*1E#&}t7GNUL* znO7LKh-j!f8{I>=tmy}+uBpbI!fgk*Blr0KRiAc&aVfo@=#ub;{G*>7NX|B;y_T5UofXSTELhRSIS{~p z^}sHPf7Vj;%9;1tIa}{>pK_*1@)NJuBY(xtrjFg{WWLDiaxO{K2!j{17p?|WyV@lX(VT0sPuM%~SLXWYq-ZQBayM@VU&3nYNhaB%6yI5%G^ zD|^k~!)@Nf*XXgQ!}{WP)-y~~S|-8~ze3=b8 z0QbFkXwS8gvSDtLxb}q3d5KO^*hJsvsAEO9G@+zNY?@j($^u1uzU*Rxz zB9;myW%AFydn&@&+%QvpZdXuTLc@$&(i|#|AFNfMDEi(TiGH%-1oW4|N{{ zGlNxSO4B@sSazZX#XS2u=mX(SZ7nXW#}D9ana=Z1Q8$eXM)m>i3qJc369@foL&~Mc zAh0ori^9s+-W_y1LnOI^rjPDiwCzbHp_-w*nqi-0G*j$zu?-vG1jZin^6T-7eAc+h zwB7st7NOR0*=RUFno%s%PVKYt7Qg>zm?W?+`Hju+d)lr!)1skn?9Tn(4PL9=76^MF z+IjNZdB}X27AfChEh=PyCFdFKdmqn$j{if`c?VMY{{LU1j3^^pva`uNW+i)-aqOMF z9h>ZIvK<_0I9bQudmrIA$}A(B5D~KZUEZJX@8A16=ic`L_V7cQcul%FBn#C zgWqW!-jM2lZb6NW%y;qRimzIYJya1}N2&N^qf)ln3|$o7ehGjcAYQ=+zd+vU!Z^f> z`L`wvj#9nP-+5!%4Aym1V5h*>5v$^5`2Ln(a_Dkln>)u13A-4?80RnorkOK@E86)9 zkHNfoSsmA1^CqNFD-}|xo;vj68s&ke-jPTP&C!v;ZlqaZY15V-8{Cx2vRH1BfTZE% z>PTV@(<}xd99{L_`LI;vEtes|b0r`5CYY@_-)NwHT0$Brw5e`AZK3vt7eYYe?`@GPl| zQ$f8bp-Yc?YZj;+Gy`;A0o!vw#+^xJU#E11_8dc59hS4MMfZR?xot-LautUj1p2;k zFnBwh3JOL2Y#8|7foZSb;CNHu zdc^c^X~C*=XuDy;^&%~2#z#AC1u~%@qJ{@no;pm%w{xMIpu3I99R!HGz#ro z%#xBg7u*sXtRFs2fdFX3usC&!T$ZE<24?5gK`b27$0xcu3cO1dD{=OSu<$JLaA!wEuA=v(wK*$CJE9( zs^N8fUwNbM(1qN+YadNsuT419>-oTTsfLu-Cd@|oRpoJMK&K?4GDGt_w`0Adnb740d&wc;*6YyF%ejF~iEzo5X@>Zz`R;h!(rU$C9NA zRT9zJ&jYU=on=M04M&Uv1dnX5o{mfb@Mh1@pTn8HL3fh!gKDuVX)tq|EqDh+T-2T1 zoRK@~Jnl3GoFu4tdK$%9#v4#UcQE@bh40r+TvHJgO5@|Hl!89K@h5&151mQyOTt_K zIe&Q`eA}glVB(4Dz$WDYOEQf|xOyDrTGGQCEWwk9S;L#Pu#qE?_eFZvJZ&X9t#Ow- zLVw-E`lhLT|M9ln(9v}1B<N%M<;eDee{r0N2PI0ve#=^amX5j zm(8fUzJW z7M#ic>BvXZ*mU;<}49GUj_G znyx+a-{!qf>O>$?5p^094jnJ~mJvS56MpOO5Ly1Y)laKZmG21g57s*;xo`7--c*W? zI2`Q?=aP+^yWz)m6)uTVK84dIG~G`j|L-t6mjh2OYT7w@7_|!K1a)tzmKrNlbCp z+BlCCW$b^)8I1(T@slTq{oxOmm7CW(#zD&G1{7QVq~KI9P)S zbi(ym<=_Yx{@exE`P`-O8Er85bHBcj|5x2xD`ixeG*7vlyGsQyPcw(c}aN~koS}Jj29&+ z?BbAjKEs9Y;KR)1xroMb)Yuv7;ui@j*R3Qt7YcB#u!7_mNJ7Dv$?vLX^c1%fEjYTw z90I`~o}c`R3ZonVT%Z8!r8kc;Y+pF$NMTVP7MemyEIQWQWv=Roo3Yt=V+DPdSiw7( zji{Hsjs_sy9P5$*SFzBDqhGu8sT0xv2+(}W#~XyI^2me<8&ynu5LWkqn-s}MaDlwT zE(vaSy~?j{KA@_?G3J2@7U~6SA;ze(>C}s@t%Jl_6`u)SE54l`$9EL^KHd_nd`b7c z$l02$nvyU@1AMTkY%1eVqGO%}-`Vh;wf{ZF)lPVx49d8<))Kg=*3!A4DaBps)uLQy zRD>J~U|*SUAl9yLAg^8ZdL5;a78-+V3QH;}_eKf~!4uK7#0nP!>28U3`RC&sNi+b~ zV|0Hl{RgEjc}?+0C`qMA8CS65ZN+DyX>o5L%UwKc2e&H}P-q?Q$pXZW8)w@P^6zff znXF9XuHU*RG9ErguN(!D+8QggMCu98EjUa80}eENZT|sypNde`@d9Pals@H1XYG%I zb{I_|JFI5>E0SW}VwIO%&jz97PjYkt%(X^Gx==nFBqAMB|B3XO?dUr}yJ1Z( z@F&Jik*rOTw;i|8DL7iZR=YsAAk~Mk^D(-{1j!FC{|UD2z33(fOF1K4eAc$VYD>!I zuN>KsGQ-Oiph@d-u_jzN%Kwr*uO|pVNcA?yq=N=Tl>n?|ClX@Km=U59$OuH&F{?_bRdQ0O^08AfIsT&jEC8=yXEZV0!VFab;D*9G>duY+Os6 z*&^&1+I@D+#y*k-8o_m8|3D6Vk2M&s0s(|5!;c83>XqG3O$VQvmXspXS%M3$xBq3h zD;&G-2Lz_3Tt67nQo?;(1L)sSG9f&Wj5ml*;wwnvTat_-J7NPoQr-KE@+Il9FT9I> zJS+LZa%oGg^uW?YP4#+&l$WcnwcK&Ft-m~R*BS=J`V)WGe3bexs1+Q)BD?vP-26ON z$li0VlEOHD3G$$4$K2-MRrrY4P*<2!I7UzN6-@Ij33!9wyx>IMg&h@@>U_*nb$xqU zc#&=PF~lQrj)Ze70|0lo)f`S zW9eeG2U&*Dg$W6&Sh>g0xbcS#FT(is%Pm4NpfJs$cB3EWG@v9D%;?x08}5F zpQ@uI%Wjt#lwnWeBJeG0o>1p8VJ+98j_0Ow;mSFyDN>o_??dM3`Fmjd7cL52&&e-Q z9p#YfY|_T7`GizwFMrKgiD9E+i@jR)x6MW(GA*T|7p}l3k?rd*@;q_?Mm9vG)<_!k zEuly!Ya1`FZ27|!seh%%Fxd}Iq$4KEmN=8VNN?iPgo^?bjoBdKud%mCc>V+oQ6N3jpRjQq+9R zNPP8i*$lILB4r~7vpZa+Qj>^b4K=9_332lAGhvk}kKK6>K+0A3cmND2aBNy|^|8x$ zW{<@5Mvmr~!so!Ha}xwnR<*J7o{U6O%5R+9HFi$YHa}O|fraTmAn~*mz4}gJiLfX}q{g{?P0JsVDm--d2Zd{xbMa$nVWszyuia$Sw_ zytGzta4yW$^xRr%;rG2kFpmPFF2}&C%T}|? zR=c31rngs(R~U1jq0&t(A@cnjlYME&;l>A9&cmd0P6a!n_Roks1`A?253gOa3QbB< zq!KDK6u)yT8U$8tWRsutvty(AS9T#lu`g}cBMHo_xHRa62R@sQmwIIWo8tbbgaD*j zgoq5N<)edT-!i2v4a*#z;vT(iN}wct7N60IZ$KeKBDks@%J_Lobc@cG&P0K5RCHGFKqy@c9oq4=8?pXmN2pS)!tBD3hKd9HfYwVI((adK!pgic7 znY)@bG2sY!3!}*1N7PFitW>kvq>v~n{1GnKBuGahan#Dp|wwF+X zD;01Oz)5R-w@fV)84wGID0mD>JjHE8H{U?)c<#Zw9mJ(m$flx-sH&Z3T}Yp zw|PX}=a`O^1P$8hF=tgG(8_z9Nbvh!QitCKB0hsc+`E+bS&v5jBywN1KrjNq(?RoB z`LCHs3a;h)HY+{qo+~_?6HnCqf2WI|5!8BQ*E4yIQi3aS7)0jO%HNkNjx#-IcHvtJ zBn|f`uKXAwue6TK)pRv`g))bh_Ha+uFwJL9RX#CTaZ*R#@cBkOSNo;sklx9-^*)8J zzYcb2#xf+Ywu3)NG&D8Vjr*Dv(|4-dp1%LrJI0JtpJU*ER!iUTq@HvX)+;>(HPBv5U2MPLI>vik_ta z2anh1-f{`Y(VYb?AP!Uu^0e`j#hVJ4H)o&a`0VUB}t({2#g2z{9bvET+vO;B;Dd(8zr011{}`H>fP|eVg+f z4<=yN@iX_Ar|+frKi73QFZCP81>`!(V6YbM+Y}|7e32)ZyiWOs@TMt&e;VhjixbW` z+b=qvmdq#n_1qQSE5^^P?&Kyf@_At2?6bajul*^}e6qwxd|}`W(gniphA;SM4JDl2 zlIz9Uk{r6!alJ-&1by*HlDT00x+s~B=7MaKm!Hu3C3DFyq%ds993a^bU5~##Y>-#c zvvq63TfTcs5QH`kB*AG+D*nn+-MRR?w&g+aGq0kZF(fQM1oKnw;$Z#9(D2crYYSxO z*Tt5nZ_ozuf>eTAGFqH%a$7JhG~Y`OK)ZT4m@#^b(Wg$)w4|eVZm*7OvW-wXMGtT? zlEFCty5FH(D_Oa!K9Osf=@I+bb0vV|OSAka(Lu8o(+ zOoploFf8Ya3oYHwsg=XfQb=MHI6<`{otZ<3bx_7#*5KA_4Z-6?AT_7cA1`{DQ6i4k zKe_f{rj*9eriownqF2fYCf!xr=$APgEPCGxa{)!eXJ>d|0+;d2)+m#>pEPoV_^iPz z*TPt#mp!u)oQ?{sbZ%V1*5~P(V8X`feHVs4xC8sKVF)Zb3>_DW5OaiQm4f6yqTeX+ zj!rk54Gn3*uU#!X+oXPG#L*)~>D#N2?Sbwurq;n7 z#v$hBcu>gn;qGm9SetVhfk(n=LbocEcxXP^=-S(Kg-OT2vp=N7el^2I{>v&78x;`DYkN9Q@D z*YWnOdf!lw0ocjhvI~yDn%SjKjq%S4wUM3qSkYfpb&g(0jE3Jf&e((v_G2z3P_@tr zz=hU+y7`J<1tp{^O#LT1AvD*tZf+hj^h$dW-9%vum$TUUI`*@{&|*WdQH5?ck~2e4 zZEk@#QzfuxwwNiD7I$q&fH}AAd+=F(^ZDPaOF0**t1B^SsYgU$49(3|_M)t99yYYU zE{3Eq+Qj?1vh(fIKhVGFA|qDvl}l>1*diCJx^9+eyuJ3gpzmo&{OLuuOPJQ{B2&hH{;(_qm;Q$|fnl$G*>BMe0_NiK{)fj5{XeJS2ui1%tht*BG&PYj-Hl-XDkr ziw1$s=JFodiZawE-l2r8!mf#W`n9i5s9-dzud$BX)kHk z9?Wo~o?Gng~GaGBMd)~ zn{nA#n+ysr_2;HP2H)as1WfAzMm4=tm7acCEb3Z#mI#)UPdX8HxRzA>4^36ijJW?P zWWBdQx8mWa-BQEQ3g3nkk1$}kGdfi_jJQYNSnN&Wf@&`S2v(=H;1{+L zq_Ii0mhj^SCcEZl%`3tJ$}%L25kcx>u`dOd;LNBxO}vaOphdlUo0E?{rWkCU%T-3Y z5kgF%koBNWUh{4)KBw$Pb5db3Y=N1jW;Q`*0*u8XQ{Y3oVx4XR(aWU|R~&-?)`f-N z=tKnGvVeZT)6E&z7UIHFrKPvm{vc>qB)1;EDaRwSZe&W3CwUqFNFQrp0x5>AB6iMI zv0LZ++6_!gI%p zlL?MwCG)duudDeTEKR>5Dx^ zmBn=~+1YLBzIcVPq4bBM@C-_f%Zli4 zpkpZ9uNA08LTluX(xrM!JQ-!s^u%MU-U0Dq5dTZ3ff2I5o8aEdsE6{@D+UQIt>gkB z7%g`~QxVY!(ftK6?I}8iDI9*KAa^0R&OXG4PB@Hvm)G2iTd(Y;ZXz7)NTk>vt}{+8 zta+HXswRy@h{hrQr{G53fkpkb!j`qx5V4nxqUrk3G2Ds>-83q2!@VKYx^v)$n`~Gm zE?MDGvuZY~+y)ojh=B3zpq>+!id1p9S}}N7Y2?tX-KpzCD7n}zlE2_GPxL%yzHw-x z=+o+8z4!On%|xSrh&a?`v`5glwJvy|q6!|kTiF*s5$yeoNIzeno}q^H!m%J&bnsg?qOJ@8_vs!BFtABAsg{eL)15N zizgM!XL+W4*b=Nz%+dceD@hXQCP?0>76v?LGSvEX8_@$X{Eejhj!6HyK^ZF?YQQ%& z=ncItKC|GMC9};?^+QJ14VGDbC6iz&=Kra2cCkok(tTjUWwofsPc??-U&FQbg?_@* zr!%CNB}ifYNfFQ(t^jS)QD;|cA~1~3s2d%e-c5;N*h|w0pk1rY>^w46G7gs?G~%*x zIe$fph0nvSM#D>H`9G8Dw?38>Gy#zSRc5DUJ1=*%Vh&&oJ1nRFsZC1KiB7N69-KZ_ zdPTG6;*V~`7vr*m$0z7T$JA-}P9Lwoq5(I15M&efPJ33Ipv8F5L4Er9nwXRYG%(#F z({!X+W4Sr?!Ln?;QmoySjP+%^3I&i=hMzz;e-ZdJ8gQDT;w!>|l)WOxKLYrErNlRN ze#x77*{9zP&;&Wa*OQBtN_de>s#KSShXkeLid)+0CbaL`+&o`)G*8t}%=(tX zytLFUzVHkX8W-E|{BF`7#x3JbF%@ZrM>OTnclh1bW&Agxa<-W+)s@UmXB_7UcsITu ziJo)q54H5|&w0tX{M(usUh2EZGB)vmPdsAIB%fT=7;$@-eu;U+F5Fb-}l* zZbY+&dZ`MrNtY}rO>993D>iYJjgp#sPdrr;`iRUnxrlm8P{%aJA#Z_!)i#&tBC} zYh2Ygn*3=Gx|&Z4x$<0HJN7!R{Unv!RNrU(Bd>_maF9!Wa?vc$t3uO5;8{WnQ>X-& zEihdWv0;&){_rYKw_5XM^^$C{ovLE^>$Yi>Y~Ccj7G_@aYg8;ZJwqu{6tz|w?cuLi(0<`@7f1Xa%zP!hRQbGN=CMcJ1{C+Op}n*3M$KUl80J+iaIp=aY$P()y&)Ytd2j0b8C(FcMIqM z4#ojqvtWfKnfl<;HeUarjzm1jf~|V-W;_6mgy?*;!X{2yy0?imzN3s14|Hd%{PACl z-v70@wuv;nJ6H|Pd}oWEvL0zLcWuaB4&2eot%$yQDJ%51N&8E8seMiyHO#e@^yL<^ z=x{LQNKihBjEiEc=j%n#i{-6;t=m5}eP_-Xkd~lK1W+ibGEN>G$^EN z{9?jBk)ddM@Ncq`YT&@u;t|A+uv{MB)KlA0pRWfUs= zf=@rxaOoTq^s5gOZu)TxWw)n?B014U4@`Y>;@W>eM z|GwxFaZu0PzJyL;+BM4r0(plbuI1<3?u}0+XOj(_doZ*DudbERQ8d)kK{1RwV#>bs z%FeaoLg@|Txdz&+g1+yiOm>51Fftw4(3ZZ^!?nw!zCFY0=78Tm74?1oB}31uaR0nC znu8kz^{B^*LxugUcT&WE;jgvtUj|2hom*P<=vHNx;n88?b8#JqF2sn?S;Tp1uYlS~ zlJp<)6>oQZXukG~pH!6Q_U-9LZJTb?tPMTOBeyN~{Pfv#SGqSrUQE#Gsa~&!6E%FO zHXaQ2rhsYlY*ldi!?obwa5&7fYi;3c^GnCMA_qnfWJ0vlwZ^;-cksD!SkI24gYPF> z--SWAN7Liae5kmg;$a+pI^p3?OW#kmEiWNDc;FuPi*I3MGoq)%dNvd{ygqrR z6Qm*&-a2c~0BR84WjNpDJ%&p$)e!oO9(nubXyK-f2PnHR=!%95S-M&sK{Pf|dtFgu zJx0PdwKweCOZtAA9 z6&3QtqByAPEJ|hj%kW^?(8oN`kNkbE#S9A1#<@JH4hwcIvG$zs__{R1Y;w2a0JYUn z@}*&=U__TxaVUJui0BHpDsySK19{Ma^h{tI=C$UKt4Uzzn=GN?X2kCx!+23fGw~yt z_%q}=$RzWrQls9bD`E^u6tWb3TrRpPZ6<1VV2{G^UZpLdx=Y-!g4+l7^Y6 zhMAy8KK3e~^Q!XNFxzIMe$nV*TF1gB0Pv@4(jk?#~V)CapQ9NvU@{iRKZi0Vdv=u46ue05HH`*uEW3>~FYGTGQo6jPHyf7ZG-Ui*NV#Zwlj$ik;kKjZ6aa|p5574q<#Rpk zdsOTgAM!lo@q-eG9yp3dV*W(zL}uNo6;~Bn|2SRUaUyohut?A5CMMkj1Qm_g70Ti& zHo3AH%u#l`z`)B}i27G^4ITSe?MZHpNdghu)c0x4fDc4r%|9Azr=VJZY}CtXBy+&9 zsc=q^z!ZJaCPh*sCFw8J{7WhQBVe);6p;0ZQiD)FhfnXGHYty|OBl1~mBlfA0{EAo z*LZ?WN?^iC6kVdHJyEhN>aN;*$S$|eS6NcVwG0&(n{V{CH)gLZBQozRdk*{o)<8)_ zr#8Qc1>+`E#k;hdX_+gfMh?9^O?7bmjKL03#3-w;l3$wsc8@?*F&JmFU0oGDzn*u6M7=JY#`Z%>eGQKEX8)@<`?#m zJ2}L9pYO|J{bc_v*DB~zJY|XN$jdL1zvaXg;e9?N%bu32jSir)9>$3ky8IoCCOs)d zo=*&_GHLi&aftkg)#I(sStm0*=eu|Xgwo1APA{h1g*gLx3~Z(v+G)#7C@=A<{3$!#dguiNH?XN z=tNEzo!x3^p+a2q*&~uROYj2Dh&!bm=Cs=)BH5MC8b)#66w{|CEVdNqlm%2udQJr; zqJzT(7Qp#~X?{e3x18{4k2Ec$WQVdWY5uW+Q3gZOgVL!>se4yMNwBUtQiEiS83%x(p5_e#JOCsqEk+ z;_%5*jW+9+^|V##EK8E}-mSem#?dHI?a7?pdUfndB+Zs#ZH81|ikOXdEjVe_FsEhQ z=oAe=-M^QMQX!*@Mdu z1D7um|KMh!I#HwiiBWM7-vgD{KRz_E?K76l@s9%^=zLa>tL`~AatLx++LFQ)P^DDn z^ySP|Y#r0wTNQ7==s)DXE1(m9G-J-`m;Ww)vNgfts;Ph4|GUatK1Y{yE6-qUj*m2m>K?^9c$L5zWIi<)Ue<_=kLv%4&U2j zo5t=2`Kg_bY#5*LHu%>**Eh1D?yw0HPRf$N81dep(=pV>c8xOo?R7eg_wDA*PWygoqoczo-1ExgHn3jP4_0vW)tcT*0;jt{x<5y%A&qwQJkv`J!6Yb zc?Wg;!ST3uK_Wm(4RHz8=6L*sv1C$3Z;QMHosB55lp(JE>^Pl_L|A{3JV2!dOggCf z^im6}v|krnip9L-yBYEQKVYP$VH@jhwECB@s<<~$3Q?C|+E^hkM$btV$kvi4I%R+L zj+1ebC}iw~4mNC>`BfWbwd|!SqY_prv5sUM*rVUF#U-(Ze(E)*Gt58!NGj}q1D#5> zeq9>+V6?`buxh+o_FC~Je2)_pe@?&ntp4he)PEcnPHb83a{fi67)F%Ba14{urwGF%?KLy2qs%P-`tn3|e8 zQ1}JHQ9NzsTBsgNw9s~_A@OHh@9CJn`4Jf_MzblkiYGrP2<*UMI|k_*cgsThKLrO36+`00OO_gK?R z#DIo~g$!}!XZz`*zWjL^N5;=$$~yGqb{3u-(X?B%aG}BkYm7wy9%tP$FT*+sUf{hUl2jE_d10p zb|=2~8P)fK*Opj0N5+4m%4c-xS_=dMgZh+iqb-7ki8I1&PMHE>fYq|_jrF(;M-h7h z#fdjczLuO_(fAyHfB4$D(`}ZfZoRuna1&7EH0ej|0;YM*!+B*~Vwn5~QuYhK0l9=E zmj`_Ru2Xa`iS|;|@jw>%3VPF`q9HC``3`CtBL%LaQEV+rT(K6&TG77ecD^$( zljTO`)==6aL%L+xjAzjN6AtD;!jR7Ev>vO4#4tJR3bHM$F2z{UbE3ErWNkG^A`EF& z*$1sa?S4L1;nuF%(sy<^Q9%)eCq9(9tGZ54!Q%=aSk%a2TGRBq!FRcGw&BOTzvD-_ zRk(b5?(lG4rZP%&#juXtc_Yl)>ViZ#sgDI?WG^~DCMj?kT#nsxZ+i*O!yvFH;kMoA z1}KU(9P~d${WmkUUcyjd{46+-0E?=xaKqb6FSkzRH#N`}TM$~=tUndk8$?Ma}>&KzfIFD>io(Q?%fZ2wU(E6`W zHO_>E2W7}L&$a4~_P zZE7fx@Igv%E(d)4bW@7g={kIS?3pO6(y6lFjhIaHz!#cGV|-Ab{-FN3Ru{f{0-`1~ zR)KE?lqj1kUU?nbM1SBze&G9NMI)?$?M8?ISY}(c=ewW3-RqEEb?oH@La#=i8PRx- zE`Xb8cizT$@#9~^+Oy-CJ##!}*vg$RCc4oW$j-OHKZsx7_8r+*GM+z>jn$4tw9$>! z@%?SW7sL7+9ZH*iG*z2kJiC?t~2j(?@BGrs~VM8#){-KL8 zLvFm8Hq@0tY4BYe{OKUX7m&3p_Dg;Con!YN((*_NrBo?VM|>GLM_;qPndPk$#N@5Bj?=j&WQ6f}rwb z!;!dG#8(?;^G;(GYgFxhxz6}(N;8!0Lfob~a#&`3SlIlq*Ccf=e{^G(R0mbS1>IxihFH6`ETHi9Uq0O=hwpWJ65kKXx;D%P)_ z*nPUYRGHx)&Y+)%BxQLjk-mdd$p79tV~|(H_p1{a$7fiAs(6$xDdoANmBcpe!Hb2n zM*g~U(K*Abo;w)Qn5x2O1d}0dWO4pZJD$7F5Xu+_RZ%Ei>VN+zn{A<>0G!hOB6yYA z;%=SMsS%?bvBJQLfwfG8=vu-~SCiin$W`3Pnuhj|C@!k69Fvw?Swg)@?v-W@LMp+y zl^Fo-*HTzizvBclVRl|bm_ErqlzMEXSG|#k7+b>nVKf2fHuyY4I!!*xNl=z&66r7h zz3&P_VGv{f$|8K3VjqOs6W=0JzKL=u)i!~oqREuJ$IqqG=Dcod7-2iO6dFfF7zMnJe_AQtkJ4Kd^00VEp)9`K9yHda*ml2#p$D zf{xQN!GOlvF;{6`s@jAp)ArL$%Zl^7m>+2D?c_} zB`*W}2a?}zX&p(OKF#M*;Qf;Ml>8Nj{h^ddbqd{&N9)erC8A1fGkq-%zr!;Qx_z*XwMllt?-H_ey zpGKJD6Vv;m5>zY`s%dNxBJ!a61s4{}zbM$Jm}5mDm-$9GX$}`&w@^*=50w9L!kK($ z1VVxzGnqxYHuyTx&}O{}XK&Uf$UTPeA@;s%(1C8*E8~M&Q-0xv+ss_WT_@SA$dl`6 zAQ7K45`oQI^ax1q&XA15x)PluPx&8`l9Ki@aMQ7FG_#O3F5j-tXg z`jA*m)!go2@2*eOLP~ zh!R=vzB_CeJT4Hi!v5ku4-9M`W znqYSp5`S+laDq`5`u2lKeZRy?b(-goKCL&4U+ymC9{}iO*{u+2{ZbDD8_u$7H3VKn z_Bjh$-06i2-?QdV@Pigd z8l2i_z3UU!qlv}pS~3$0OCgi8Jv}g_9lw$0|NK^nee4qu-#%1*RzS4<{aAi%A&F@- zn3rK-@!~@dT`#SE1x1^01T^2+C2jbPH2&u&eJ7&u3uGZpGqy=-S7ba<$HPqBw_~TF zp)h**pQBnWBgYT5wBLJQX+CSD!0b6m$YF157t_@+ZGlJB54S4OW=7U;eg6s>#v$az z91`JyY{XLjC%(rgkYw*7OM!{X{;d-@uL71iS63b*lghXKE~I$n(y6WK=cP}B-!ICL z7^+>LN0tH^mHO%TY-=G)XGK)|RK}BX7gfNRg=qRIY^5(KW+$cH=gKFLW=`v))# zI6C~2p^Q6IYDZftF_b(Xl)tE^E`jZo%O%!6lv3wz$(Q227eE{}YS8;I5wZ-X?jIWJ z3^T~hHi9FTf+Mq7m|Io;^dR;Eq98#sx$LTskn<#aZg@iE&$1~cF|>cI;XOxHh94uf z>1N&s5h_380u8z#(={T1!Ou6Zk!0`G9=)~7^W=Cul{HL@57@0pIM~3K+f zU1al)_-lOSaU+YzNOhlcNtA0kR2-c(3lc-Q=^&W9oave3vGuj(<>p+`FGh7eE4Iga zu?oD6anp+nhi=seBxcbEiQ1>=V^4a;XUS>Z;23x<{|xC^zcUA_aRsW`ydhZ&hmgaG z(JZ%2K%R+4cz{g0R6m?o)UDVaRK+Rdd1~(g^t=TIUvU?uNLcRGimd*7i!>3C=&YFm zPW`uF8e<=6m9c7-G53}y9$m+1e7GjK5vY{&o6fEvMQ1QQ`?%eooYf94JXvetWUDX9 zw~9=KBqRv*Gaa72Z84sIFf+T+(>1s4DtUg@Icw>o=HN2~m?#N|9%%=ExRj7w!k^Lg zT!D<)5LA0Ph>{;&9bd}bsFmN#)ZWY7GtH!d-1gEw6Fefwp(9-V=^T>l^G8-oywX#g zI1@*$-*|}-aR<(_j-wgCwD#aePYJ~p=~l~G59{tOx}zPpmvqipb#+N4XfvcAD5Uyzu`Hc|FarC7dL0!_wK{v3 z&$wwi9$7&D({La~a1H_Uz&etq3+G1k)NyYZWmGrc(iI{{#=W^y0vCP&zDXwQ8vEGN z@v=Auy!B>@)cmcb96(EL%M`Rf(SPT9xBd9_)1`~`xqp{q>tmA(6{UB@#~kqO@y8j( zpeppGl=L?T`jlUIRwXGIRXt`)%vBsKU^IiO2$U|F0g=D4z#3n7To$vXEP_q#JF`PZ zdadfoEmE^cA##5*Gz*n&-}pV@a?Z~}QU_(Jr%{tRDPz;DCe<_FVI22!DAax1zT z`7Q2ZZ@uFliKNJR;Z#RZ8ZR0`nWeD3+opPIcHhi)`3t1tfyyB$6A$oTC$vl2^z9h% z@cm^DT#tz=+C11!|E2)(o&&0`u7TGn`VLh4R_Sh%T2kbLBo(q=#4Wmze&Hul=arek z2K^WJSiiL=zPa-qu4A$PCp%iE)G(Y6S(T*5s)+qHYcRG{uCg3s4uS2=wRG^l`}s$X zDR}oPyPWz8@|x!&O@R3R^(tc0<7KaMrM@+=tK*2HGd6TcV;8YgpN+Kl4-qA^GJyd+i7QtK_eXBfXEeB-xjozg&~WMU%J+-&#knOlbez+&%JQ zh>f{TRpnm2xFPXPT@OL}wiMYv5!c`Kn_daG#?7F&d*DIga_?|Hw`O#i=;&llW0@t} zX)TpB_bLP-sI4AuMdEkDBr1bzh2;%xWPTib_o@{?5fI8TCQq*?HeDKY8 z$)K{7_Q~GYB&>_rlmk(WL(s|ZG~j4iDXRTFr?Jv<1tFF~DTZNusgw2@BLLFFcMAgo z&iYx#S}q(LIt1oZ#RPQ2`7X+0&*&AgVR;AQm^=#}0owFHoXg--&%heVJP+Txnb9vk zzl>PD%U*hs*m4SyBl3V-wS~fryNC{lbPglclybb&lA1S7EUso8=q}0Bo4ykG_?fb{ zmA`C%8$ozG>6n8-&@D_aom7e6rki!j(yvUU6?!5@+UePQn`$3OnrT_7U@2r$JleQC zG8H8ABAqE;as{cXesL!$^-u|avy|e|{m7G1PGTg|MVuG=fiq9LTvJf&Mh37xYBxj+k^8=M-^Uv-nRT6U{g_ROA@ zl=Fx3=Uey()|mcb!Xi$8?o3urSW@u_WpGdSQICV^ z2;JSu+TH4m;tC_Uj#-^;Hn}mErD@Q`9oF?q4G@Y-XyC_WyP4L!imgnq=nh_#}%TQ?X0L{(&yK2C?g?k zQbI#&l-IDEo6#Yr!q0N$4sl-&mE~~OEm@kpknN3ue?F3$EpcVeg7=sYg#E=vkEb-$z0B}k+HO?t*x!xVvJv=fKX<<8T^9tYzLfP=XuWv>Qb1)cbq- zd75kZ_V+hRbW_^@A74-(El9pS2^Q(7FL{y(E^1mV=`cNVEzx5bbRF*6``~U`4)*p} z%AYF&xqDC^_>#O53T|5MJZW)DUrgxu7cU;)fx2pMKCL^iF{7$xM~~w60}%EK16qZ+ zcQ#gN*XCxrxdP+m`rMoc$I!DK_pX=C3pDctu_>@*&bE87w>@+}i-mlpA5U8S{@V3& zbAiU(XgS7BgZ*5mRq<lFaPkkC8W`ANc<$0R!{jzC{raM&30EITCaW@78g!w%F?`A2 zbFaU-XWYKX+bMS4)1Y}AkuqkCiuLJ=^$7xBE!oZ&Q~|yoB@`d9##BSfZmh~~jLupY zBwx!N2R6IQRC47t{bepTb8jlEmpcfsY>&vM)N$9n5s0y9p7q%tZ?lh)b*Tp5N@z-% ztvDtTAs(7cNQAJ`hO|+)p&FuqT`Qke(+qLiIQRPGvbDJta=vW#;3~0nW9S1u&JRSW z$IfeSk1nguCjCF}+5;Q>UcacaDsAR{uJ(#vMJxzcP6_uqAJv#HlL6T$?3CfB!_g`BU2ISuLiep72?V<$3^bzr?CUTA>`Waz|$ zd%8i-N=F{F*N1vj|39+cG9aq%4fjS65D*ZAAqSN1Mj9+SMY=<}8<7-nXat4^5h>~J zh9QKZrAvkq2|>Eg;`zVle0e|2r@be3%-U<+_jUcQ;58~Ex>Y&<@F+XIucf64KZ98} ze|Of!dXVM3rfy@2rqABg1Jipi6VaN1UwI3W+T{eIZF5kWeeULM8!IHsFka#VZpM}U zMH>Z#RAh%Vh}DZO3}Gc>+HtN{XwoHJqWclYKX-phAkcgmEvAuWA81FNZ5$HK9M&Cn zsKXu1H$@@udX_Z$8)W%#XIESk-5YVId(@&uP;bqV`p$`@0;F8)UCvNZZTZY%lqf8& z-<%Mj?-DP|(~X`gfd{fNVSxAa^6l@K&4;BYr()ht>7=Y?UR zT&ZhO#uN2>>=p^{ zY*a2&A^$&>;;;3cUYEYJg2k0%$}{GnM{ZiG*#_SWgi9*owRA%3Ra_a4(Bo?W_~$np zt%dX6nGNb_&$hmeQ`yN75|5c%`?EuDRv5<#N{!RvVRGkCzk9O84aYO)svp@_(K-&2 zi&S%(8%FX)W~rpQKC^&rO^zSg8hkV#u=cT1SD}2ep#l%$q3!#(K6rqABf0K+-!CIj z#LwEjIsHW76h!Z!xEL#BM9lUY$PSeDspQl7K-3}BO!9!!A2)jceGYWWM6BSF`g9Y%U9j0tLn>Bj(Tl7ElB^SBU<`mIR|P5xc;*Tml_Xvl#_m`&BV1URSPtuyox! zP>KDAqn&YSzH-5WqMdfeJ#Bf8Qzy{%%rOMq#ibN>`W=&0n`qB0zCn9dLQ9XjAdImE z2f~k2d%M{nMyt4@_D|q=f{$Q0b>sK-7dFmGV$4_i({1>7X_q9IRJ}f2MPak+Sl8MS z4`|=AwEsF8+;zOP@bmJXY}cigJ&?+e|B|^^jnzePxSf0M;d0n5_gbYQ3{07E-`zmn zK3g4wY41JHh*bBC5vItKc8a{zwit*VV16lbi(NAPvxf4nMRc@#ynq0 zbok1;M<5F{RG#69FNa@$3DW85Dp~yeJVn>eEd^RNBd@ztL;8wx`AYNGYU;aN^5HW& zm^8=0oFL9?-OC_;I5c8LUU~;L2m^=DNNK0PL#q7x#Jj~hzO@@7W)qoNr3;^VyEa+V zG|$cTSE%5mvI#7^xDgpHQA8VbedI$C@KFV!9eC-t5Qyp8D2%kOq)xL6Zyw7?)kxbO;v^=)TH)%TelO20kmw){Ys;NF)rVjE0? zmF>L!;|9U_b62J=vSNTUE;zzKHe7ZBHAD%#h33?S&4l+cdiqb`T~xm3wv^Aqu4cx* zSSI_U^Zk>khRvXgkD-a2WqLHHH63u?+xUQ%z-x=zX35s~KklJ_hSE(d#%(9|ND3!~ z(FdgEdHXlA&j9I2m*ocL2y_{chYdvZ-5?RAkS?ubcD4y7LaU#rl zUoR;b(cII?OVfbyH+RZ(7`3a`{J;q|dpy2#v46cujq_z^2&DX!xQN=p2BdYwl**Es zrrEds_idx%Hk+O5FLzfwexDp(*t&T8E-x#U$qScQzW_k^?8DYatiK8Rw)0kx8&bTy zZyV75z~A%wWjfZ?Pwb7jokva=53Ljq!-~va;E9T55oB^l$-VHBGvQ{en1-M!maC4y zk+h?FPpyemD0lc__mpChqe2i}2S&iGXo5OXO9{qWHP1K>6{X?rgsR<4;o8<=FKi zM}UaRMQ1_T!+1~^Ub{Vzl)NJxn3lZA?x3Ccr^^S5iqC3qZ(EWLi>h$Z3B zhd`M`KUKjz}c86hs)QppFX*Au(fO57ikpL#p>jv94O} zICs1d{q@=TIdYBq(V%X~?7dVTi>namfRNle74ZO!qWzyKP9z&U?c2PltfKCH85{2$ zS7zFNEE(UbAQudl4U(@{IX*$dZ16yZ4^*Tdg0U%OhrRGh9L6kb&F8GM9p?xVsPcY9 z9|*pPYS2Un=_9q}H?}8&NRV)J+FrJDd7@i{P`8~WpXQ4?(`Bj!yt||hqJX)@qqStO zNO~2Mt&g!)|&6SWyM3 zB-}`e@eq8{ln*?;eN4DYP?Vs;0p-}Y6juM?4a+nVPNW219y9R<*K+&V%@Q<1P@#u1 zu{DwBx+`w~2oFRX*k;Yz5Hg6r(C~XAl3@#15oAke$6+g149#Zpz;&BT!12;aQ)Pn5 zM62h>tdHOS_@`N61XBTk1cETo>ojqr5Wp8=B5?thQUY?=&)*w zPO6`~$NajG%yjEiW+T~%fk#x$Gq#IFvcdtnf?T>8H zwiL!=U2^2M>Lol@5+%dL#kx%)S`py;KSqzD-ZQ_cxl_~}e^mS#ZFvE+Uub zerzTk>8M`KQy^7MomLA^tJN5;WvKhEYf~pb-<5H)uP{Hwp=-wOU{`41@!bCX5ZmB0 zR>PF)FJ|&vY3m#Amv~PN`vQn^2je&l%f3&nXWR&{f{4gxs>$Tq@s+Nr_jqMa75Il) z$v2NS)8gM|*&P~$J92K>l99vfEuEPf1%vVQ+}*f(MRpsXsV2@mi!b$L!l}$tN^?*d z5C(~*!#X3i@2e1XiT1U@a$%enI^jG40xRw>v?6S>1X?3p9qmaM#&j*etzTaCl2qaDM6{ z@=biSlfar%y#4T`aDl``RoOGuq<$_&U5DVOaXqVIuJ7FPdquXxllW`jmvz*|=WE$u z$DrvW*JjK_f;l&$HYsigzHH8N7}9Y_l#Z*=Jne$Z6RYS^ZbTJOY#tTNa%h{ebC!;C zl(rnF@b8uO8FZmikNA*E4FL;`%6nVWUSC^Kz)2fNuni%? zn79hhZI~8;c`*UtkP>W@*bm@)nl^jV;x2+iBm6e{;DV@F%}#L`eq(be9=DJD{?E(E zvFN{R{`$Xbj$*wodfDDZcqo!^#ghfjdBUeqk?Zp{o)QI0t7GE35e+@n%)efu2*AX#B=-e%07uL2p+GQ z^Nv?eytWIQZ%Z4Lrgc(yvvlsvw@1a4*AXvJIHZ!FL0U(~f%n}jZ5{Mg^(F@zFG7e_ zbN92A0BNekYD`y4P%$}Bp|~hftR9DjMrs8kjf4%UOZX*MZOD}ouKxYcevgg9+RjKF zFiMFOYNbqMDG<~aflvCbr9?q573iv71&+IFJRTf3i{g)>Zfz^}INIkTh2XTN@!W8g zG3|UVlTpwP7Q@|or5EEZmAj6M^%l7`P2$YutlZfmhg0faiX}wMrzf7Y6#Z;VD`k}m zS9rBG+r$V=3@Ei8OY#QO`{&F5=*sXH3HtZ=l8ZTojKwsu4W!x+Y156Vk~G45k{1=7 zup5;5#tEp|rsPQNx~!<#;)GX$a8zX*4}Nfp3Cj>vAEsQ79yJ_x$;XL+65Dtxy&^N4sKS6Ul@|65o}UYc`zs1g#En z8EeMpDesK8kxLNibU1+Tm#!e^hc_^RakN};B^DtZe}lkc2SM3nSuR{Z>8Y!x6m;!Y zjiXE%qAA%azw;Id;2|5*dw?aWvZn6YO%J)uzo-NVOeDw7WO!cC5>p{1ufH~2wT~y^ zI`AHzUJ7Sra9L;j^RITu2+&Pvw0mqEZ^{%cx&@LTny@Uc47;CtmBO2!9Y|AHjz=ZL zfQ5?PuhiJ3vX#*mEnA~v2d5ARRLT#B$9=AlcZ0{@t$xMQZcz{{+vWYOor{r0cL*?s zplALBz;b9X-%ZTQeyi4nQTkc$Lw@`LLY>6I@AKTFVgGq>JO7*UpBHr*qnW`?Mj$6tlK9YlSX{`yHq zFQj`-)W+4&SBOytxFAq~gh;E_yG%&kJ0)+vjcR7S1N)JHix+U^9oT*vyS!qZ>0T2P zvcBc^E+VeDc=y`UNd;wcFOp4hR@(4@MiY6xySW)SW@?&QQxS8t7FhXF!~;qFY28zb zlR&sY%!iE;umvD52Y6q?>^#P6MUR*kPD6-J+n7sCT;5Gw49DGc94J=*z0GV-+4Em? za*F-SaJj4L!ryC=tq|nE9bFvj6od#%=hWhvF&ie&N$KVlRfG#GbpA<9wp1l% zdxG8(GO+$rh5m9)E0ZcI^T$k*j|TWO^#ie*Q8^E94Q`1d<_Wbkb%tJ{LhwNEWn1?y z5hW=~#+`(5lLBh9^b?ymDPqn$lolE4dt3eo+~rg0m&=NTV}ma%Lf+23jTNJ$U@m)f z2kymjixpm(;J;z?a#sE=u8z)nUD!v;iWNSOw)iB0IJ8mr^F9>NHcIz|w6n^C@?Pco zu&PUl_D(S84Ie6nU+vyl@&o(iRKaoL^!$)d`=SI_TU)c9!!sozFkDsN{9(1anH00P z{rpVuvo()NRK`7WJIX+CBi=*0(56T$Sm&AG=aS;;3B>V(Od(u18LN(rISMeDFtpJK zcJ;&dB~& z6ug+5_*x=KB(r+L^Vobm9c=P=t8%;T={^2L!sdZ-7n0~yj6|zKhb_k43`Y^D3vT>w zr+wU7uSsm-quvBmz$NG+*8dOmX^RFR3H~t_Ykc^Ms-YNRiJ;>4}N}6Es3( z{Vy&5Qv0oL5V2;VQjY5>UyVl8YpH9XD%TxM_=;^Zym#-e`3}z`8d)(Z`^0hHc$a7< zL;H(%VGP@Hg;>`{#r%xGGA85)6Dh8n9(M=r+&msNpP)i2Wnv!7XI60Hjw?Q4P7<@( zVl?<#*589^MvoWCSR99cHe(1B*aD3NQ8Y)bBX=~IZuEEwNYut;lR;NY0BptG*yT;l z0owNNQkg9+`a44nNP(079Li zd+of30@yI$X!W+rE1vGVCz^6kqqk~dH&Mppo2Pu0A4OHwJ(V;*mGqr&frth5_kp}NaGa6^=y9vViaGO& zIajw$$Pem2=BAqN`Dtno7(KjUtWS>>I-S^v5H0Q=OaiCkU^kfjVD-+gts;DnktU#W zt{n28%u{s#de^%tsyd;+C_^K*488|O-b_PG!@K$D^n+)^a{#5cBy7=tvhA#iF zf}y=EMUl%c)$lPi!B5c%WA4p`EmZ}hU4u2F%KAf}uJFsl1!1@N9+6V)U#5^*8WY87 z=P`N2fc#NN3Y|Yfqz9ETiRSzQX^U28giqFrpfGy)mTs?yr_A)8Md!Fa+FpK*ULdD- zch8fccrTXcyu@f}6YRq_%4o6j$Y=NT8$U(9dC5fo=7~82nh3LDM)e#Tm!Gaf2c%@h zj5X*}aw`zG3;=P9iDKh-&ac{fpeSgNs8PmtH4Bj)MvD@}?*M+)`<7J>W?B{Z4fS+M zZ@xy-Z$4L502AuEAdzARH>o3|DG6dei>xY}1DM^tpB0DlB=`1^mmA1?@&(gUV z0f$5Y{2g}DVp~S)FkqRQT);{fv)K-oC z4kE#)CnxKBCKe|*k6jM7{k3yJnZ^2zrHJ`}FNIEE)vIwfRvS(4dOF$R_q=idW+^br z;y^S?@TNHTyXL^X1Az=)b;@CGp)7*i%B}lX`+ptErs{=+%kJ`^@P%k8XghXC8x%lP z6qLfatssuSfcBt%*YWmzKOnIBiHHNQg}HgYFRM;qVfTWqjbp8+i8xZ&Y$G<30lDFO zA=Q$yHIV;h1uTXt$(ez z7dghnL7v|SLBno=0gG%Ipi8J1Z5fQC_pg!<0@Nc8HED@VPvcmXqkW4pTH~J>y8oFS z)Aq5gs9h3zaItie5;3~Y0swcA-aH@N4=U|1^Q+y%3*psFzDL-yAF)}TpW<;Ar_K?a zVV~9q>qZls6j~~uJ$w`sa*r7w-%UaL7p>?NsilWPU|zQ1O3rg(Vyp}RJpp66TiM31 z{c4#D-JCND-++PC{?h`39`wOa`Sn-^E_gLqux!EcQOcgtN8A=>-U(@7Hpu&ntKY=j z*;{{mF|e-K;0GrYnB#YwIz|iBGqw2<0~Liz6OgU!bt=NX?5$KZXz3Xgmm&<| zyyhFRi49UCw|XA}E5CM(DE4hvXT`OOS`d1lHrDQ-ae7S zpgT4Bh5@wuX<#WyhgRbb#Z-(iN?)w2MfxY7)SpLZhghN^-M4yM0S>;(G4v{B^3xyy znP}e%-}62U6!MPsNN6`Ah?u8AB+&35v=lcFG}u_}`0u$hJ!+W+b{QRzwR@(oY@Wy` z<=5D%>u}Pi-GBXOKVY6!yKSVHq``B1rD>n{iaLBJqKgho56NoH`}n0;vHDB)ywbOj zHIsP)nT2`JijO^-aRO@*AH-f6KqIE)rMLUFyj`*Bt(5jmlp|~CY~<4Tc*g-sBKNz; z0GaboYL@?Tolc&#PTQ4oGPFK)qts~W6um!bYLQt}rE>lUUlOOIfBO}4gPzmhzXVd- z$M2vyeI6W5fZ$=+qVVMP^om)gdnJM4!{ruX)Q3ZGIy7Clb0g|;LcWV$6(`(GhH^`- zhF$K0z+eMXjABKpT}8%2N2yXrh^mv56HPfzfRBgZ;v(mgQ$VH(-g1c!PWjIYuC|B3 z82iOqUa&g@i+Yj+V`0TA^Qc(+$N7XS!aQk zgNdrY6|ruc%LT9Y_HG;w9NR^|(0}kdGmibe>{Ktb--``u1P_UFOru$otxA$Lz% ztWzZ-tl0wK0J%2^ywk^v2Ep&^JI5Sxsym%7_)*=R<9sj(Yo|4e8Su910nnR;&v*7)jC_n}PsO7$4m1#H z5a*u5N5W+cmVsjK<;hLc36EGiSX~MB?}QL&Eu{xCmh00u|J5RIJd}N*8`Fx1+w$Qg zZ6qQvClHHv+E11d>X!U>nd6H?Jz{#rztz2+Mmi=Ye>3dV+NaE9Ok+nCTI&5Hh*u9f zJgvC7-HmE(pw zarsBQCRVa)X7<_wPEQ;Tcyj*jqX?{_eA9}l+Xr0Mn4FHi?q8MDKvIpABE-Uz_ab$4NY~XX)rVn| zE4sl)B~ShPrDPWHy6^rhx&S|B%rjwXHL2j6XN7<8_Ldj5nGS?Ny5>o)ZM@sg#V?vB zAGMw9g`cUO^@0fOp|UU*e?&56Ex|Hnt`q)2!mSALlMDf_{}kG7F5CNMFMOsS8S8cT zQ@C;IOnl22WBRk++9` z3alavrl;*B3$5=Yd3tkUv>q#-pnzSMV7h=RI#2B-J#~_40N56I+B3F-o9-CCsQX@U zQz%}Ar7fk&Kq#76hy%RqS+5iNudwo2vnBN6tu!nMCO;rz+vW(=^7`UDlU;B#)#-d$ zoJzTKuM;^zcV3X!QPFAl-2x zoF^diW24owqqdh<I-N{7x@Ex53LKou32&DiTj>S}GW8WQ^?Rl4 zyXA6u&51AsHb_QOL@tR2K64nxxT`=K9dT2r_!GOJq{~g?RSq-!3L1YZlJ(zV9T65Y9ge< z^~0Yp(1Y_Vf{V^~y?;o+7skhx$H%prHR^&mJ%PQCtfY(T*AemJADYRIRxFGjJj3qFCxjaD8)%XWp&e*#VB%09si>{G`>6wxTPxVmpCaX|cy)&wubn&@6Y~Y!zPq-%?8P-}G{o zYCf-9+~0050eR$&GuKa+4GV=^{Gb2YgDS9H8U6+tOmvmLf6}hxJbcZ^%l+o%qTJ6F zLX@y8!Jmv97nOk4Uj}Q(W=46hn-gogv-(`tsORodE+=ITrUz#I5K}D&-x3-QUh(w; z|BmzK&set$_6M6t?a%LPLK>38x~B)hI}jp&S2Ir3KTdPqH&U?QqT)5xZUeBpGJl-L(Gu4B=c!Y}2t3B70lxL1;krnOR< zP3@xk`7Q=I|3eO+7VGKJVnRLlGRKmm_R)k9WSlX7{ETg#UNVJdy`M0XrY9f@(bHmrs9UZ z(le(1i306x{yI!n!+zy*Y)>{ge!>s4JyVQ1hstBPADJPpue$FF)6kTY^-Qje_f5?g zEjK<3!#-~OhP#C7uHwcOQ65^kA)1uN(N>i_S`lZJOi)5M<`VI1pk1pmo-Xb&KD86( zMpdb0BQ*7lpvI?Qm{k=nv5C{VPl(N9@e*Su`+pPlKj6v#oVgUF`+m;P2#^z7D@$_K z&M6!t3Z_1w;q52oD2rHHLF*m4rNfwc>RC(DEb2?ZbQh3d28=Te-)0(N#jo~kS-omq z@eI$!>|zjY)f=J^!=5GQ(Ql2?Sf#Ii*|Iv8MATK4(uU zLBLqSYu^d$l=|;%-#)#9Fmm#}gO+J2Y8Q7~Rj?2-|ICdC8ttO*@Ak6)j8@6m>OKYy z$A;^B?BoW#ARpZBb;|kH;I3_}eoKm^O1fCuMrIyB2gVAn{5=Fj@JsPBQ=-YJs4zCN zF_AD)rII+NDTFeRZazSts(E0?BomT|_nSHdiaRBTY3GbhcZy~JcRdZvbp~S1YTr6i zE1Kaff8n`5`%-`RVx-QDrvi)(uOr-yfl#qyyoItQGddkz23`5-mQl*YqgBswYBN}< z;CL71Is*A`rI9*(;Ze6HM}Jy4(YuA$X~8>cRWfY4k8fgP=x=1=;JipE8X;$Ui0NKW zu{L&9ad+_yDtYmE_U9@Y1+ZsY%pC|BAYAEB!Lxe-q9%p_pwTlDwXuUfQ8{(~B-xvY|`4R7uVP%btW za%b9V@y2Ns0F4G0sO(jLLK%>8yLKq2{)L(zWL|8|x>R4|e-~9MP0XL_RmP`xEYj)x z8qwGnWROPTS9pymzTWJ91fYk-TPH_u0cUmIhey}O5N;vk>E_*ynw<-fHswdXW3g6^ zVq8<-m^(vJ%78CngEh*ot-m^iXElU~|3k~r*z&*Dw-axaw*U;xmrHYZdKe;E9ZJg5lSV zW9hH+sHi!{oc%3cp@Y~cKCtn9y9WagE`~aFVtx4Q{Ft~0$GOZv&9mI_G8MW^;AWpE zQnyk}D(u>e0M@MzWPN2>!Co=0Nt)d@|r zE6F|$3j;*UuIwB5{VDu1q8t7Qxhzudd&yO^tfzvHoTG$;m^B}}^?u*T5)vu0!c_d6 zXX@$FjR@2C1JV#(ekDl<-E+ovWBH?N^}~t&rH)XpLrTUfb++aP4KtAG&YF1VuC&9r zQuJrObgXV_y?i)LJ~9D@tS8O;q4?AX{K|jmH)vA3zCkvOl!OwzYD76I6Ov|n+Izdh zvh3ACz78Fp2J4|S#jICRAA7>yXqS3l}LP~QVBSGyqBH2+0u_nD}TFSIcBB`N*AB9N<>G3jzn z^&+6pBg}wVx{N;O&5RjC$1{MBpYY+b_$M)K>d;zKN8=@idPW`x1QL^mj(%zfNgbX#x?rh zN)R-_QjZxpaSg9TIbRFeSf#x6;kF!a_0p zvPC9q)KhndI8}WR+2uasNp8#?T^<`y*hjRSD+at;NxN?XvMj|Xj0BI+5|WI4|GOWU+w<$cf08IJ(yTLk(o^jP2`xe_a^hmi!v2x zSq<;mCOqwH&5&J~A9Csb2i(4r;6Xya;lpO^DaftU#p&VH5gj{{rBP8AlsY|6*hf0M z3cKzQ0$si8GgRRh-8LXG&)vWuphy(}5ftL0_qKH^ba&ln8U&Iu_LlwW;tF?^!dn8_Ys0pq@f<%~WcWUnY#4W0dNPVbV9deLWZ# zIjUKETmimN-Oe%Uk;DOr--%@Y$OqxWBPfBe95%Ju@3Yp}dI_23%lKy?i29kuaQ5zg z_nV8Auqs&JXH$gVLkcY(7IT&Cs8oKI5nIq@)~9}ReYQ@?zcDDt#M#0T5tYoh`OD)w zibc~!L!*+*PxVyk$CbsLYV&S^4Zo>sZwV$qH{A!UUNo^aXSk~{o9hhRb64^$-$;FW zv5kk@#lMp?2H)1UW~0A9{o`t+kv1)?ZUjy+ju>@_>^gGj6PAGE%9a23n&aQyEttBM zuS1Z_H|tNu7+m1-!fe{#yX|OXxSX`wIhSZM_I*m9szf~95J22Yg{^=&dnHLXuRl4n z%*O;8oj$Wnwb#gu?z!x+91R2!VF^NnFbc6LUI7nHXRM@LdFzdA5gyI_;(O-lI=^@_ zctOCF19-&FdBic^o{YoJCJ4dqAe%^LJK94;bf)7Mf*&CNCAtCk(;)@0I9r*3;+Yst zPLDqAf;Cj89xhX_5k){_M=j!Yg3eA=!dp<$8J3-)b<7}8)>ly0w@t&+i%M;Pn6pN5QBh6w2ucVU!m>E?vN#i|h~+-=uEI@_`f{_Q zcRfpL1?0&ATq$IO+NMHK*EumyJzmFno%Vi0@B!ve3*%YcP z(BZE>u+=)xTnZB(N|u?sXtfZEP;EP#4%cCFfdztyeUJjeA}FK&j13az8@-rn+E(|N zi(BT0_W53!x6cAUBR!c&z}&(T?MP6&uCbj2eL-l(gwCxFXT~&prIEsvcQJJ-vl~Op z7i1pC&z&Ga-|~*s*?-rE>Bk2|H?fhFXtmuK>{~&kU-DiS4^khLaJkI^2}>xKWxPAk zqq^s9YkITcC^NV)2*)8pIYvu-9?rFrPTFF`SXwF zQ)|&5VoDY9Ogc7~{6XTz?vFBtI}{)`Q!klzmom2)fIM8m)|9jjKa+k*)27UX$dck+ z*IsF=N*4h|N$x|fh==1LM3zV#dL=z;T?~rS4~qGZOJ8BI7Y32qK2aqH>@L#~T|BO4 z+HQ}(o$g&84aSU%@pWR$2-ZyU`4+k}~;c%1H8 zo||{<5gud&LjP&YpBKY}b$*AU$5uuulbb>#-MX%L64rNk+V#?mp^{&u!_Sz&djR>d z>kf$qdVp=?*R~d!gm9o>WW&*_>u2YC;Kk&;p}I!c-k0?kjmtQNr(6rgrCC8hyY%h# zx0fFiIff%Ho?0beG>V8J%9BvqeX0&CQRh`r@^~d?J`biWd>ktXMvC(`CnGk;iuo+5 z%Lh_wN7*7^)`k(AGTV<@^l*(zOHVo@`7BY~13CkArR22no)lT>HQlGSTOVpsACA%h zPs@&PgR>>#@TpPqVdH^lRC!XbHhZz(k?RYhY3y9;`d@7EFlWQ~%}?8EEqZK5r5wj& zRQIJnVgXvfK*ZKli{!0FRx$DNq%YciWam7@#%tZ`5NqkuOIK&BbugA~2p%v>M!ilxtN7fbTP=#(F+v@> zc>bq$4=>+$Su@D&9e{W%A3kXL5ITarwDLassD-Jmqc85esyQQGO}^j#xz>(NjNSb< z86V@v#>*f%+>ekQSkTVtJNAwxXiZ?(g5x)7h<`MeND4e9y?27M^i_N7612LoUBU5_ zG{heoOX|0fl-e2Fd|CU&;t!H_1e12Te+0vOB#?+r4lo$&9ZJ63HCh1c!!Tp|o^tt; zUDI9>8^9SZxAa9!x7Ka0ZmYG)uo>rY?2d_1OZ!$s$m@SI2@vwjHxUfktA*i*>o2&I!VH!3xVG#8S3gsA2 znl_OKUo{Dqo~^cSMQ6 zg5)DhnF0_~?bQ=Mrm_P{f3|Bi``$Yuq3iMc;(M_0#&Q`(L?CTCt6+;2g_nn>qC9V1(%sqeDV1( zkw~trmyf@0^R%c?8j%T!$GpZTWY-N##GBMav_J&|!5lGDpjl;p7$=OESSCY294SGU z|0T-G+kd{Kt)v{nt#vtxTK{`jUqrn|-L=FjNSamjH!!;H?8rVe8!90|T+3I^Jo(JA z-085Dt9AdJFYJ898fF}r9+-qO_TFHyUTB&GOnKLYyfetB} z^kyV?kz$$q);KORs`Y#pw07I6>9}yrH6||WA_jcZ83pHZ(Vy{3|%z&qB z4&t~j>Q0RWpJWLuI#!?bS*H@Giv?OkNmhV?#%ellCdXLJc53}uFWJWbn0`39Hn+=k z?>Ri5n#V2U9Uv~O-hS|^)nDF=#ZLReMCa($hiTBU&C~cIZQ*MQ^{<{VLhfGtmK3oS z3((6<-*uYUTio2j%5{KnRKmxfA@cC)Rg&awz?yk*9MTJdordbKt^QP0tA*zrRX^Rc zB6o3Bx}eyg5%KJZa}Cg6UMzQnjA(gnvwz)ku71%p`?Z0h1vJS||AA290@S-d6}cIr z9MB6vxob+2>u;v=M4J^#K)to3?V;>I%s-JlpWZFCy}y4h#s==I=ivqJWiMQ~yyH;) z=iKT#^B+s?!(Pt-YMUp^%o9?3HIgWT@IIxh&)yssotkwo=?swGE28i0Kl439jEHxJ zRr51|^bTNyhQbLH8*ei_)3-K+PyGS}%2t;b2A6?k<4hNC2Lk}ZRuX#!5vmfMa?VS5 z+d3JEjC_gw>wFo|B0;%HN|MQMLYS*JE{C81qX(8L>RjE^D|$KZrM!E3Z% zULEroddQaZmbS~N$LQ5M;ooXXcpY`gUDTC;7FLC1R_9!(B~z<;9y{YME8x!`etVN< z4mfKZfKT?e;?b*A-6iAF>k9iM26RisT{js?d|}13h7vzhz@Z|=3HCCK$+#_xtmWK` z_G3a)>x!%aPvk_Cv%~;)m^%?V;-fXqQh5(7(A| z@wpCrJJEm9W_go{CDe-_Loa2b!HiGfM!DK0G1L7+y+{W zQ{rHuzjC5P(Z6p$bp{Uv&Z&x84;hI8f2_K28k9}cv(E*mT_JW+vh zbLDY!t+w^Yp$+G9o9%@>RztaN{9mL1jU?UqHOMaKEe5G0LoO7{PCtm2HTX9;>*j)( z=Zq!SquPC85UxB3*J?Vu2#8VEkODHwV>tiKpa0v5C|c_$^nNNg2eRym6h+JtqOYA; zrJX3qBx0`6kn&@|{+`Ba6=eyV;LMxgBrV8c3_v21uPWi8nr^}lN9x1mt@#zTWMlyk z=C_RRSF)wDXyw5pG=CK4X#TLtseQz5TFNl>yXp(^0SEZ^N9I<&cV)RqI+>T)OY`T2 zBDUwZX1<=z?<&8k#`RFpu?rV$$}f1Gq4V}r-rAD3=G!Zh=RdCg9jsp1#y{?i1V9JJ zfB-xL+;E6N|5x})@EB%oAKm=rJOl2@w^kPX*2md)25F7JOE2q^uxn_f77Q@wh) zuuHy%;tvTFN2^=AhHI?wZPm5wmFG8K`&UnmU(U(rMwk()M+nE|KLk6`aqfN7a*dT+ zraAqGrt-F$;5O9=#ekh1>cDQ1ES;z~R1YB|kHZ6%8{zTQdT8t7oE;=Z-2s-Y*)menZ|R0( z(p*^>VPcfbBcW|e;mup{ zt0#);4k%l$QN&iJL4FXe9i{(Vx6nj2EM9&WhxI4>N}{c1&m=CrN(+#dFAzD&QoTuB zpnc`>6w`CgKou;gKtqLWVtUK+16axJ(5j=jCW|AA$z(DX68-=w=N^xKU?cIV7p%<7 z?Ke%9wjJdx0abBsw5AJHcUXe+crOSTc<6pm|CnLdac93$;X)@=GGBa$CE@)H<1Ub9 z9FE2WUzrYdXS*c+Y`{%!gWp0}63(5T7P=!7S)%a6^7v2MD;FtU>3kGR@)Mvy zq_gjZF9?BcYmOhY^&CeG0zLbs=Iae*P6f=!VmcpNp|RnZE7L`UX-J|#7jEodlOvLY z994y<8zqo$P~KGQrv!>6d5lxu==3jp!>IVQc%GQ6Y*D4)97h9)nRX$p)>X>eMQ}eg zUSw(i=v`~$e7U1z%;LGJINCxk6Nr_kxk|t3*x zHbue6fkZh)^OD5*wa)?;X1NI)VIrl`U&&x|VXq)|tdSlD5MES*bdTf z@)E$k8fDXt0&^C!o;~+93OGk!ULjL}e^;n3&VhXarT@v?LDM}s4-FdqhM#AD%-RYe!$)}F`;tFMIg}|F*SZW`~&_LqSrHl*Rh}kSMW^q37{6{}`y=ilh zJh^Dqv9({L=c5NTZtMqUolFXQ0lRgl^^rpJuc(9_H?kyEn!B4hOT&i; zNcx|t52yW3Wl})MLRNuLD6>DQ&}^eTy?Irc33l2p)fS7M3!wVBIe;c^ z#2C+BZ}&q&X)YqYwzs!_6z~3_q}2pL9p42?ncCE0M9gC#e{AnHiM9F$_jY@Eng8|b zeC9-tRp8HTjcAP`na1=|Z>D63h@ZCgVt+nK#aCNC%)#S~*~Mk(X4bOGG9gRjWy>dt zylP@l*v+Lpdf4#RC|r0Cu00M>bC`?{H0ve&`Sfixybz0V_5C^IJ>$QMC1>wVePD?z zm-=V)aZ`a5ucU5D#)Nkjdz+_7hEg-Qt&={Ht}X7)W-S1E&k&j?F(zw^%FvkoRICC2=pOSn#ZlWMty{1pqBXt~#lf zKH7Of?R`t`L63X=^5QCMO{jN}4ZCJZk4Kdd0#0AxG$jR9I(QN-#QrthC75Z0BrWA& zETczJATPAG!Sd*n7L@njk)_n`v%Ulv?cQf`M>*g6rS5KmZ5p(Cs9!s0>GA4Jbr8r4V9kt)4`tgH9Ikf3#;L)Ge}93C>9sr5%kXBJ7$PD8!b z{imWzOHY?d;__9bH$jQoKZwc+Z*MsBs|#mQgOWt9DVf;NpLCmF^1uG9Q>!lIwQV7o zhs~Kymq22ml)zZ`pL#yO5_J{t9UW+h!kY`D&*JP&XMGlE%t#|77jh&DHmC zsYitkmhw27^kjS_<$qBEfQ2RMRie^WU+r3+_GS+NH_l4d}%HRGWxkXRx343M1YsWjO6q!<#Pipc< ztxSbY8wO*knlNM9uF)B#EB!$hrv1B+iy}5r(${!g^(mD_6IODpK6TMh;(}nb zBNwVL+Y3w_ZtXy-rjKkBZeOFaj6Mvg0b{vZUeWQvF;CQe2lQdqcHDFw(yYnF>zJ+#1G_F!b z5|(!Vz}k8jjCvQM)t-$^lj&%{)STc$j~KLs$il+$#}QaPh_D=g!PFnTg}`EXvv(e0 z_xG2(_4JckJ2l9_gChSIsW^gnX15#EY(tA0v`$cNo^pR5KV!8^&N&9m_1y)l>8cu- zEbn>r|9oO$+cAMn!7`xn$a=gGP%zQjzRiglKve|g3MluFeDfnIA-U-_>_B-Lh(D+} zZK@qyQ+#h1x8NNwDkZ+BL|P+(?OXV^A>=ho7Jobk>xku3n3ad{lRLM^6s^QEbQhXL zkW87U7(IZ3Jn9MiKXqLPR8v{d4uaBqZ_<$E)XaBtO-aY5#&g9HDGxy$eb7v+}z@EG`SK{Km z_}Ya^Fh!i+m;xA;Sdvy*k|JrTW#k}Bo4ap-bA*#3oC&ir3>vXc!sSlFh+Ycfa%&U*0c{|7 zwCNbUX8D8Sz(nJ~M8M%H4P2#D8=ZFw#OaKE$D%t8*-x7gr$D@^Y}6wWw!lD@D=BVN z{e>_pFuQp61jL_B+HFiK{1_Yg z+p7{IEmL`w4SSWn7XqB*5wk}Fpwo}8@dQ<%dV90Sd$aeJrNx$P^PQ}78?t4kXoK=( zgj~VGuFM|1Z#2pkND1rS3$BgcV=-~%|Gd@p#3JQ=*X{MAVV;){?bA3Sg!`1=oQg(R zL1;klBEMQej__UEDLiomha0|eLv^*x+n!N$Gs>mpM|9r2QMX1Lr2Umi?|V_!^rO2Q zhtW*ByhEOhB{X}I&R(B;DhuVG3k8pyWM7CCE1N*e7h{z9mQ?bu-7RcjkRQx^G=^n> zCsoimx0dL|A3t4%(5*GDq{y1|dAHP7F^%%}d6IIe+sGTsrCjAEjuco$z*CrQvnaj6G2>YY0pB?tZpc0lP)w{5y!-M{e9i1E@^L~vqLO<~eIUgv2=3f*$rfVV6IPW^Ws{3u4fK zzd+PKg=UutNk6DgtA|ImR3hRSol$nyBj`(LyEb%KZv)A?@ttELGQK5DKKOp_1Vg9b zJra#r7(J{CU_`Gj$0}IZEP&=l)&#&&Y}eV!P zVKoW6Tv2R$;=_j5hn!r@Ck3NRRZ#pe6hG9KlTIh;O;BwhTjaIXBzP)h4bAbzz!mvG z2N9xZ1Gphp8;FCgyAWTq_!&tJ^F^BJAm$YQ^iO0@A&gke)-Xaz1Y-dGKoA|r@;oc9 zdN2PwgSty-!hQ72mr4*taK1)xz5t~KwZZcJfJ`Tpy!D9530l6*=v8kq|9CO~qLddH zSU+nA_Y^iS!Tn&;GEq+4(M~iWmvd+Wy^bVP-Nc)3RmU}K7^FBa?4slM(VE9(0es&` zUP=HZ3yqL^weR3ywz-?>b2s&`j&UzB1zujtGXf5&CseAT#2yArs|HQ0?uoUZB;>hI z)~32)MPF8*?o+HyD7zL2Qw;+%MX*T1jhhl8h@mbI52?+d{R;mY4x??Zwld#5CV}u) zM21mD+kTw&RohjA^Y`YnDNk^o$SRwUKxkLApna(!AwIGaDt~>i(EnvPu;w8r&^Enq zJSbCR<|%%Zbm-Hmdqhf^3C@P~K_BBYGU5%XCW0s)c-gT}w82JJH`3~1P~$2&cX)S` zi2d!4ZtCTs{+Lgi?nkrz-HWdvSJierWTp$S9Gf*x>JI(A!9PP?kbCr9>6oGeowd7= zf)16>P_R3)ekYnf=f;zS0w=fJ20hq_+WLzo*o;YhZS-_@a=M1;EeabhJG+T=;F}Gq z7FdF5JbN_9T)D;O>D_p_9pB&$%dPf65z_N&w~?KDvOhTAN!}bXb_6?=`AM6A*=to7 zWkMywu?dBN7yGBi+GAv%M2VG4Hg>1vU4Wuj*nvsK3q-Z^M$&2@d{9@pGEj2a(CwTAayj+DSfgsU)Fi93X03K_So!szZ-IZW(2 zu|U799JzbClD5{Dp)OSvvbOdvqQ)0dUv15D#A% zwD>1)sJUNg80yS*>o~Mp{oZh$`BZ3RmkNs2X5>_MmpGxMD^i870!CMH{P`2%OS!QE zUeVMJ109ID8UAN&oi}EbQcZfIh@tfl@lvC@1AcyIi;Jzx$iO@%Fvf^wNwSwpoK|!$ zFD4E`ULVw`PE@Z#TLGi37^LQq3_rNg93>dpR|0Cne=Fh{I{$v=e(=IL^@+vCkK&uN z+wIy(>725eP-%maa{TcqCN2bPuzt#gK z*LCI5I8(a+f=J73iv&koPl-@p!q+M|UMN-%?inzr9WZ6o4^Vkt3w_8=oo`RezkBbuXP-=0Bm?nc}G z9qsmmK#D-_F!}Nl?u8c(&>7=sR@WhhGvQfR37`tH33Inp2IO6s3P!NXCaZo$O%*5> zpYLRq+dzVMk&*s(L$3~szK?7)Wq8k?#Ju<2Phq=jW2Y?f+}f{mc5CMmyX@?{^A|I< zI6B$h*TP%qB0O)o>+_Iwc9@YSxLR+JZl;y-h^0{iPVV!OcPKl8J-bCzTi)M-Fy zL6c|bhf_;w8+%dnZs?ZbJ|$=E$9Z*!Se$>`ZPZE8^)l1X@Nk3H@A27qIEu^yt;_<4 zMtkqR+5C7FCQosP?iCIQ$X`r@GQ})Ih~kXmP=EGqVa(gUA{60Z=f}b1uI~C1C3OFr1aGb&Ob! zi<$}UV?T{NS?nbvtov#o#J*}n|9a8SXWh?d1tQavm`*gO-PBuXL~T*|F!C`8+OVVT z8!x*OMuWf^HTwrgYyUqu&JHijXE1rSq|fXz3L6vvQ07(uED6i`Oo>(^hE&GtrWD(c{#_j^aydi9Ae> z;zw-)mDeaGy5yUNih~~)t3ik^C|9uO!R8#NxVM%+FIwBH6>4TWhTRp~-6>*M7db-L z5lhWZ6n;|gk8^O5JFhHefBdikvcsQ-9u~)K1DmF6jIpbGblY9S96DzQ`#K@#qIz2R z1au$}hzK->5`x)c159f#fk1(zAP_n5Ho#TX$2ZW`&POD`&2`oY>y8y8JE!mE5StRW zf1|=?MXG1jeTznH#@T2QUT_@#7in)ldAPTe`#!y3yj90{ja@k5ndCK z5v)49;a;?Pn@_XLrOoD?aKejR!?wnTBKu+Se$h$|F1`FgeL&D4EhZ{u>biWT!^)|n z!;@q)hT785G^O+ww)WfKA$%n?h|AjUBo9JZdOJ9ILs~@ z$Mhd3EOKxfFq`^3;-NF!%=(h75<`FXk#)rPxH8E{tprZmER`RvJ<`b9t}t-pp)lJU zy3M)7@SWhY!OpXiFOG^3S&*$EtTY7$LyEboZba?e2e@_ zKi&t56?)$GUsw=(Md)5MT|!79B>8nZ$-G^1pk)(v#OPs2t}Ij1-)N#gCHEkzMTpuX$736O){{Z<^Y z`FEb@Qp@AG>mF)WVOz(EuPzcL{tkiCdw0 zn@d$cRFHi7kPU{#7$$`fRY}%5|G1>l%$MqfNmn*g`P(@T`Jpwgu#QXGEy1lXh^iYRH9w z;q--hRyN$f1+8mxTEBq@0)YWRDgSg}e-CdL8xIecUoM=SHhZ^Mj4av`If(z>Jwj9a zx|DV|FF{<%Y(;H{iPqAfm(=t`X1QRJ>@&8XUt|xBi{dEh$GFZK`%d_B(6sA0fw)bI zn!|e^B1t>5r=5wxJ3h{)HP$)@Rq#3i}n20g)ctrn=9QD`wR-N)TUIXbR-Cu%^?1g`iz<$QCrtMcZ90G?&2`76ACi+PyX#z_x|IE4=a(E?(cs(85j+PV8$8U}jW z`I!H*q*{Y_fF)7=$P&1RX!TqO%eN4?_cfeD>=0GAk@FIpaUsuIVOUC1S=lyiF^U_S zb`hOVrGD|X=wKSbuK$?k5}fd^4Lf&$+Duv@FU5qBYSlw;(k1J<06M{dOS<&rY%9)f zF-ACH`qAYJ#aYA+H5UXg?Mvx^U?r0xqD_KZYgP{2b6(2EFZYKcUQQvBY>eZs^NL*e z8H)BG)OhQ7oYVHcSuLExd8f6!FIUld3pDTv5PtE29}jIOv_Gk|#YS}lf{d5FWMIO~ z)PIJh>yj-|ju7Nmqs@!Qudg646Nq_ZOi8SQmHb-$Auq^iuXy;J%qeHez(3@Q{+IQ> z#Ghwb$9K!Gh0EWQK?(1mhX7}e){J$8a4U|vKFW`X)v=~54e^CQ%b2u^49}IpOy^o`v zov)ARAI*Pq`F%<87o#w|tLu3GUSRwV!0)5>-=v3|c>f&3e<%EX6#ScTe(R6l{HMGA yPW-!%|4n=w_XqL+TOJ-jLZdXrM|cLqg!68sHBA{(N>aS95i8cH=N} zc4qf>uvbnH!9)ZDq+f?!x>_ZAB_ZOI8s8dm{oZjTeU@sJ4D1%{O?0GmB9UFkuwvP) z#Cad7mAFOw1@{dhaZHPfak(RTx^=0!&l{oLabQh%X`Xjoklf(CS+rx_J7o!(K}K-fU7xz@a7Hh|F5pO zldHvl^es*9we9D`iZm^~%VToU!(|w=FfS)UVYNT9{M^hNi*Ig67w{;kpY3Sh8p1LE zy8kuK?h4~kT($6)U{S*;zV5h4vIod$S^tJMZ)iV*u}E>F5Ld;mBNF5tfBGO#9Sgxu z(0eyV#$fi3xVVi8n_b}*_(%T}pn_hGLXPPY&yh{j`FtW$P=5&gCxR@JhN>!4@m=a! z$Fk_eh*e8$jS$_`ED9mY^h%VaZ?agT1NM5%wZ)BY$S8}ln*U7`aACW&BWO`9MwX~? zG{$}Yu~8#c%j?3y^?9!c-Pq}<_od&Pkcao_q4gjB{{<$~CUdGjWR@y#22I56J! z9PZW@4i^7=1^)+{V*^9CKLP}Sr}dNGRyPiqgM1+^P55p$p36;{;m0ae5kS3od!NtA z;Xyree1MTO?Bg%W9ofRjZ2OPnGIG0n0zQ`~?2x@kXv&56rzMW%`Oa33wZFPtbU+DC z((?MVpBSY|Cd~#mZ~6rSe&gfyuY|^;DS8u(%p3hRB;x?hA2cnm>V(_a7m~<*{uE%s zW-UIcrEcJ4O5L1#@YB90@fr2ZDybVI8T_S4o%Ovmom)UVYYP+M!ccw zjGfo&OhWWv?W8w$_ql3Re_ixo^`!fu4FltIon6U3k+r1k)}b#RVe^jo4D}m5XV3Z3 zX{0n0<_C`yvL%YnRSBary%WJ`;LG3u^1RJ7X&R5LYi`n8oHzWiDJ3=kdWn{pzkOe( zjgsakn48te(6WX?uH`~$23G2yuhTn!mvH;$27DN|O9`^6Mkqh-%%1rA~XBgY# zChL{0f9DZpJuU3}^7cN57lSc1H8d0Z=LIKVF^{P5q7$0h-LC?f?FvW|;f^pKzP zO!`0e?uCw6KDPx%&T-qbCEUu*5-V)uGL(z$bMc@SXX&GNh3nYnS4HuNR#0+byghHH z6y5Rl#^6sI{GnDC>WA<;^@qQ&`Y!aRU=Vx2MCob!l}O=qD?cc}s&^*Va81_H5cXIH z{S{4scWlJ6Y%HLn#?7k28~nc9R6xA*G{-9_0Z?uAWvo5nD?rCMDT4_Z>X zn;8TYt{O(2RVYWWgsg@H4CJ?{3Ze=9x}PNVn*y(pqNDU8gR=$DG}@iWb^N*z?= zA#kv-p<|P6{nWN_&PMR}^QZR(sA2W$h!+~#pTLHLNUTXk{z`E&d(OM*My6X+U$&OZ zESeqbnY~CIXf*`;Y%=hzs)yGs8hW)UCbSJNzIEG*G!d#yyy({s}vd`S1|{dDo{{96upM`+jd%2=u{@Md-E!SSn*yi$(O01&}l1`(7> zjzUDtwXJsYB?$!|VJzjh^ciC4=Q8r(j0eoF3#@i#!tq*B!5|s7ut*h?X?i?@m~U8b zX^367PEWtudc`d~u!T5;YjJ&^BOaED?iJy7m0HxIzpVSifEls8sWsL~*3IxqvESD* z_dVn5vdOGS6S0WwWpUw?b9AJ&je{^7Gpl?3(%#KZ&x zt0CPT^{V&uIYLc-=ONVDPxH$qH>-cK{Aa5TNkxFoaiL zPO-oB!4fu(V|x((KL_#-9tf~7V#oTmAii17pnF5|KL_IF*fd~WQ0Se1kVxiu_v1)@%j-$`fawcQ zkFl|`)tqYV{Kd_KZ{yw7kB+R@o88kt>&Gtx6En9|I?F-l&!#W#+&-pVbvmzY`bdYb z_s{8`Yby2CORgXCn~CN+#e!~Yo==IN)gQT=o)cf}44zvEURVBH?WW&9EsVW-U*Alu z=Q>bUcT}3&7kQs`NzOFPsuD+Z)%HL0P{^Mw&(G%O?_-f%H+Vik` zb$rmD-}5eD!Pl@Wd&Q(SFz@xI^`Or1`5DxmQNs{)KLdF&v}@Qug{#+oA9ZZHeiQVZ zuWFTT-DUEA{&ivh;k5R}RWQGn=(2jgnmFhousJYmtmpaVA|c?!-0JILm3aQ))%Es2 z%MX6*1_2$+QylKT+Qxwy%CEaEEMoVH9M}_q8-6#fa~H1Qt|j>w572tO#a)riZY&Xn z_36{nj5_nn)%vT}Sk)Y)@wu|AGOhahdkQl3lW#{>cYaNk1@j4VmrXvlBJTZ{;MXi8 z<@J_4W0P?wtLo|ejy6@tb!^i1lk_2vjl>_mH%+E7AfMV*S?Q~P&uY#dJE?nhnVCcZo_%%{)5MVekSjH!X~#fqXLYXlcfgIqhye z$e^z3a6a~6%lD#Z>Bm?tRoQ9P{C)XI^(IUjyAli^C?8DG|F|7Sg3|+Y9s(bwLf{g= zkG!_$vX?KD?vxKaH5w4Df9{(b0){7pekQC0Tu5xon$q%b4iQF4Kbb|%i5j`yPpKwJ934Uj83_{Y?b2a zHAs}`j;uw+sUkIJ#Z!iy`j(g@@uQcsv#V8WFL4hQ+_^RCM0NcKm>~BBvdK&dw7>+W zH90C-7t^jL=9zWrhKy%wn%#rW{eK@1uWg@4a@f}DUR^Hn1Gw`|38R$kwG-{yzDe`} zb-y>+oZ4mcrM}5-!-;XB-y9ivxv~Vm3IrI|_P6Q1YS3iDJg?*Ui5uB zz`|DfteDlRSYB=_LvXr$t}44&4Qe^@Wqk4S2U9I4{<_f;fxo80);nebw}k5N6v;6d z7o_W)%WP>&JU7_lA32hJU0xn$jv7gXzSG&B+7&CqU1_iwj z^s6OqUEtrzyx5e$#O-h62>+u+SJSUoGYm|U+8mgB!0lRjidDq1u0oSk2x^Uv=~}kb zpIu6qp{OEe`i3Tr6pOuY(xCx7H%uVt*}+YUQeV-Pg3~x-ki&~Js-Q`Iw-o5Nk1qug zQ3!HZ@!t?ck`&Nkr-B-Vw@(tRxJVuK&<}U_ zk%%$$Df|VM3TVvF&w~f?>rUS>4vwk|a0n4eL|#_5;!LVw5;5y`v`?qa`upxTsVY${ z!5-AH9)gHsT3>f;4TV+et8NDp@rDk-TEk>JsSGSP3fbB!R;D}dDJy(%p2*9lTqfMEe)lrm9RrA)qsPv-J_-f-?}(PF8wHB8L2QK2ocz zsh9ydf}ZuPTJp}U>T(+o-f)^`eP~mtpvfR96r>c6H-n&kB)y9DjsbxMHom?c^fHEoWgaxk3o7SbSrqqqQ0! zGglge1d0h3Dyj^{V17PkRPcEmJE-ie&+EABjp~aE7V@v$L}w0cjy~)8V@WZ$yr3@f z)Q7~{2!z^W|CGI=Kc3$$*j$d++B*)M9PTeTVXdMJJS!~NWGt0e)8r-8IKYG(<6pQj z0#}IDL|8aEL+`Me@p`q;BM7>;hvfRX&=gXxbeO=88dtwq2Zuxy5LNKfRZj8D%$o#Lq^7`ln-M$Hhr0z2b^}) zHW_Qwn8wH|TkDg3hZhPr$rHq{xIgffplTZ;=;E-{U17eRV~h2DY^*5vXJARpZety~ zKgN4E8CL0l%7Thd#Y3R<{b>JqB+uk(28fuTDmQfCGRudWx&<}NlXT&U&0XtW+?Nrf zqWOD!(10$I^Jl!kRlvnmlPSmYd}f(gOk`(9{oX1%c$s{F;mX-|Ic#_XrmR-zoJFV> zWQuT|D&sQ1oQtrKlF-)uHq|cQvsJDcSEJsv%ln~q-!&I6$hIr%ncuOm-FvdHU+v^D zFVNkB9C3=7;@x!EaC0J&*2?lWPL)2!^=+w|SjPt(gwvD+?7iM?E_qA_(Hfx)OXk`2 zbjg5H0+xhaG=Vbr&({L36eR;dI~p(Yu@4nJ^-K=wJG$)I!bf)F3_WVpph;F223r^t|zzIIG@y z!U*bLOrV_6k{OsdN~qLV$G#z)6R)g@X(vLeJEegh7H<1it&2T^{0$@z%742q83a@q zIF+UM=#=jM@ct=^wb}iJO!}6D=I?vO1_Y5fBNZDnx?z0T?@44wn3W+K@`U)>$mDOC z8-0=61E*=BR{sQPt#wqw0(N+yIx1*)tc>=OxOBQI2Gr+QsB+ZDTiY-n*Qu;%1h27h z<-L&YtdE#<>UrW>bJL$p-(#ojxb74Jt4n`wzO|RerB7EfV2Zv7pJq!#d4$*iMASnN z*0pl0;IT4tgOr_h(!(Jn&~N6!CXm;-yjSdfmDgNRmNC)m)j*gmrL3DN5q3%#;qa97 zPvS8xitt&!tO0qv^TZ|Buh%+GwL8Y}bI#jxyBmd!#WXJFlpk?z7WLgEZo)RA+`T?6 z;k~}7^|qPtE$_J6y}ecf46lEhf~KD7D6+-;U6=k`|$q zqgv--T6?=TL}L8`=iFL1SgGbQ1FCdom3U~(FCp{nA(TyLXJ@wo=sX$<1)I{a;OZ~Z zMq<0htiiH}`Ih^df8oaYp~nDKt$~j+30JDE-d9#(P7{X)u^UikOIgxF!xo7f`(2y2 z-L`f;BldnXVD3R|ZZq8$Y`Qk^{Vv;oa=t(Kq&i>Sy^tJnjSGI#NL8hZKUKrpNEG)P4B$Sv7xQ z8iQChad^rqG-%?05JEW1Vkk=PTB9*H@p_aW6=+<_lN!}4p2|Rf>!{&}T7|(>e~&Vo z@927&{(js|>Nrz}1Qa2NMAHMlI?J#f$7nd=JnoioLcmuI5i$7!_-@L{LSarsKC@>W zb-Q02er~y3IU^%WhA6=!oQ+fbXxQncgduK!M}6R+cPKeI6!vqqt7#%_#I}6}x#?~Y zR4=EsM9;(SK<*O_8(DX%`#0ku>h(A>cXhEpu-us1 zeLYf7ea4{o)yntsfwv7Mako{<#{wKW!m6I-TlY-M(WC-J0+ACO1Eqk6|($Hi{`>kt^|xA?T52ns`tH`cQlZ z-{{2*LVD`Kzx22?j#9~H2p_dVqG$PT2HLiWSbcW>nS?{y#%e9QonsXp8k$Ou3Mz^4duF`;8&lJnoajR^+85c8(br zD9p(tEfX+{9xE-GMqh6~N0Y9VfgUKS6zMyZ%)(LPgcOxcmW}V$4&&0;xvpNQpt3km zZzK87O+tG5YohqXfcywdH`$}%9DOO|T0Y@R`hf7QIcHFgCsu=9x)_i0X{$680J zw8zHZs~&_IlsLDd^4iuS$iP;Ith5qXVm<+n)#$wVxn4g~c7GdBz%recN1}x)rcD$P z{*b&=@OJzO2#vi{Ip4kbk}MQ-J`!4$UwwFQ`)sKdo2aQrITA1P-O7dkQopG{7cFS+ zOJ_PMnEoZaWOH3@e~qZrFPlYuv^r^MS9`If4i!>^N=qt|lRSi_=AgdVT4}wbj|lw5 z7E(ill77X6Lch|IBvBl#tGoPKzCUjV4gq@VjpNN z=;guV@YnU(_d6{dpZK~p%=U_kWj%MuP`i>xl(4QYs0GvK9ELmiayb^eu%ouHx7no@ zThvzTKNhKGm;XJta6EMox-rHX*H#}{Ik)cTLR{)(cyEdAvLI?8w3Wvi3|xMOjiez% z9^Id-b9G`}@9f+kP3~l-mJ`+re})J33bvZT#5^!tr+?{D;ve39O|we96tR$&SV>sh z9+Q^NG?IzSNZtTgS_(AOSvKuKH{0;L2y>!?i54U4-a>p&!ZI=+ksq`0q*8h*c1&CV zVNfVZyDbS=gjEvjd(kHhkSnxTE|z%cgNREvoi1CC3z1YSGgk8~LgO#Q)R^x|h6`t7Z zrY-f)D8J^gwYyS*Rh9wg23cvu(&Ji+*rMbva5D|hj8A>fyAX6?6rf<83rp%YReM4 z@XYpHd1n(2hYsSnV7ePT#M4eQ!1 zqv`(j!;Gu8u~7QKwe<0N{~sy~T3RN}x@|cn)t`Xxc;CF84$(kWuar8kOjtk(Gglcg zh%b9&MrQ0lr=c9F`sM966j=)>8p~JKYv9Zb7mV|Ltk?Gh+M=dYGn>R108oogcLP-R z+4?&D&#y-#IZE}_+ix9mK2WsbudEk9?k~-t{RS*TBZY;}MTb)q&h+xAaE_}$y`f2~dj%Sd zCZTy6evK1|!vJQw2g@&u9870FJ4LN%VWbST9iB0UyRn z7eD;7e+#>k#s#xZRpZAo5E6Dv<+Ir85JbxojxFIqNi!k7NRqkMJj|76EDu_N-%I3q zSZv0J;nu<1zf5uAkE!1s09!oxz@V((5+CXu`|3!UJhAs8 zy?UbDN0z|QeH%JRAF%UsVos^S}5Dt-w5OdN{8C%p``7fJiX)!vK#(l5`PwdD~w8oZguANf&!5> zNM9QT?pd)t^i`9n1&mF}^^rd3V1{HQ7e?GVB0mtvJgDiRN%0^v9Vp!uCH$cDfC(%~ z!t(9ket7p)yzPxt&AvJ!T@K#%K@jZf2YQ3r8o{2M61w^-Zi9|k)TKp|TK*?Ssk#a| zrHN2Ltc3)5an=XumjLKnfrH>|BH<6)EFQ2c0w~p-e24%GFNlNXjAnj@#AhY-Z?u2i znXJ-8(4BhiQ&hhO_f-*;67n&w@Ygj$-sG;W73^vo6|58}K+Y@0j^pGyr~ zb`KpR31!-G3i=rexLFAL0Z*Y2oTp+_es%|BF(Q3$K*Vq{ z;Z@GbSIZigQO5}pjQ|E=VZ=5Dg)cBo4hSi=ajf++V9}=zn`(aHEdRp$;Ky-NG(^QL z6S(AP)@Rj9?SyPxc^L(8ULm7(9PG{t;yUTYaliY`5WAG)d+vJ4ZnX9+bPq8ys+GAr zczyU!NsfX?D5zCMQg_DozJ&0%iEJMm3A3eypr6^Mgzm8Kzb8Z(frv{s9Al`PGoDDq zTd)Qj)b%Aa{ASU@!YvRP64U5yDWkLm1-sx`MD&9-$P+HO5a<+eb#!>F+^EZ#VkXEm zc{crWq}9y|;`&f9@bVBT&7_nD#A(3i8F3jIK>Qs#2nN4piO~myX!Rq>$i^~3O%$+< zCeLR`mLzxWdVT#%fDdd^hugQe)Q@ND(cuj^NCQ-9ma zEDSp%| z%2;_Wt=%awN36)ZxACHX-o-lXWzpW0b-ldCWN}?AKm9i`@IGIQ`4wN;n0M^>cb}sO zIJDx%MU*$D*Z$BboWr$2rP6>cMa$=)Mk{SA?|v5x{?)fey2XXsIG5qPY`Yj<2oMsk z0MPOhQ~`tiB+*PQ$wk@mqZf7Q?FRv2$D{;E$z%}nOQraRGvmQw<}8c#2=oOn5DYta z(Ox1KP+2$wo|q-aB(@+IeHRwZaC^0B3f}%){&q*YBr+$_+;C7YgVlUzD6Y{sQrcP< zy9I*wn;jD)S{|E*>X!tmxmiuzlwNO&bokihGK zA1gWGJsE+bj6os`tIt-d26|FXrj6HzT}H}vbycmVqRrJ@nB1RhGH8-49_o;vJHjj) z+&s}BF^k^0<(fyn3n6)GN8?LtG)qt1F~&K-Oz*{r(mkn)nnc zW_z(?tYq6Nkz;?7zKfx}rMqkn*Mggl3X7ZEP~1&_qH1jPmYXbJ;)T1d@UY5WicNn8 zEf0-JVRF!uq*uhGx*Rk*2?QG>QD98~Fe^iK_sdrE{}FL`j{8auSLl}jD8EBpq$CH} zXwlKn6&9PovnAmHG=;AGiVZB<&<@tPb{i>^0byDn^z-56tFiaW!$N=ySq@(_T7ku~ zBhcWyMna5`K{IMzbJ_R#1F5+V&1N=>nbsdX%sXoGl|~pyVej#}d---Kz-977x@~uK z_74~t4D{sa=&A2@I2R3A4Q;Vnn7_t=WlYw%cfQ`9pR^z3#7F$tV-D%B2AD*pXLEkm zI%52i%&&a^xn^pqK5UK1QBBC#JzBDj&y}-YjvSmIKsye_H#ND_GKjCLqE^akflLQu zfR~GEq{mAnl+;5xBF~xC%Uf^z*pzZ;k}MK#04gUl zA}#v6qS{3OH6EU5vg-{JWH8Cf5KVZS;%6WllnyJ>bMe!sK1Pl4PvT0X2WaP59;lqe zh=}Nq1+|N)1MjIY3PpNV@^U1CGr*HeGNQQdsGMksc<7h~wd9?Mcr+WyOuA1XODwmW zN@n3vioY`sDVcTSu6}#r6bo5x@awlA~bn|7{bo0;vIZR0{NkYQ(O zsFgs~)RZ3rF>e5>-Gdv3KpkSn`uLg(QU2(ZnC=){A2v_zaU{ipYE=V{syY7~3*)J4 zjycKYtc87OXjj+{e^oHmVHeA`f+s94d62!+rv%-dw=T3|NJ!7L7(=>EduVPO$}ELT zlUK+%Io5_)v~u$4-2bIXx2_ckrZQ)gsN0ksB}q6M&Wr-Bs7!}r6;+&kiXPVquf!*N$LAoliy(bk*jD461$B9TO%P@Xh`rH9Kz1f~$|i#)Ra$J!}O_F^dLF zd?PrtQNU0a_d5UZ@lV=Nc#t7&iDudsdv1DeXZhT zK2j)$)jU`lH|Z9XCA404X)6ET=Xd#??yZgmwR9d?H5(`ewHrtMeYJZwGOj9jlz zPv2r zt&kKbow!GZp8t)7nxA1`U1TR4w-JjBbTM%lTK0Khqg+NFwdcNpgY8#azFu|JC%7-; zB(9EDekHho3^xB(-%u}pxZlds0YG@aqjUQChRx^QPaMFhI~FjnKdQijmgOioo-R7pIRt=6x`q9<0r6Yknr(LIABYR zazB`V>NZ}DXkXAA6`9OMOFt2`!UdcEtZ!HkN4gw4SR)=cF?G2a?f`8}QJ5Kf!Mx+- zVBkSFwQl3Fh|&dJwk|%X%1}DHJxyMrrpr{)WA8%q>+B|!!LRWOnK;2DJ0w|&UU zK=lkbD@Yo}rLnrFDVsoq3R)s0%(gyC0n$uO8=m%}f}@f?2ciig0l*dp6%Cot;;Z8q zwD9`{-O(OTA68UaQxOOKi=6YQ3^4la;v~%F-qV8kpQ$PMRo+vQym9wP6c$I*Gl;{I zFw)A}`R(x`W>u~ce=|wM>Wrog>x{R>-bJa~_&0o>x}#kx_n-ZxF%or&M6C{JEU_+m z`C?q$yN%By8WwcpMDX$ft#^W6a1`LnB@$nJc^t#B($(GKjtgUiy$>AUlu{zSu(OZZ z8uI_%ha29-KS^|w+Or4R^!Xxm+<-PrhOT;lcBoSZ7__unYA8A8$%*7p@BK z6WlfeaVA@M^odorf zeHlzZAw$D=2!137@5$eVO+~$jpE1R zJU;kx{OuDaWAY;!$wo{g$c!y*$jmw-@q*cfyTc zdoCk<-~SfBlS8twqpP4?X4BIV*`bqSGDbl)w51t@-6=3gm6n`w_jEfx3U9>pPgxV&)-~R(D zOT2;#%KCop5jl>~=g~SbK|Bs1{_NK@At(zy_fCYG|B$;`o-xjlmf9ISntrb{0gpV2 zOZPPN?{jp+GekE*|47c0pKoS~`KHtanJ{PhTl^wtC+=mSq~?L~wfRGVeg~L6wiP)e zZx7xHiAo*p#<9Xu)O!X`RN*3bB5e4y65g74m%vNY{qtNB$L#FlP$qi5B#xM;Z4_7VEiGZJF zNpp+6QAblecy%N4?WkQp*pj24E|0H9GQm*NEwlJ|?;%QMsg2^ely0;km%>aw_E-j)FxKep$=z6BCi;@b3uQtFV_B;w{i zOZQrUp`G@M!@Y(?)nRt^wW)#JanJcj4m=9Si$B*5-#~-ba%zyia8|Iy3gDv)l{}qv z4(-zT0F4YD`v8e?jP73ouKz?SMLF~#8MHuJm1ujRtt343Lr9Gt@y~z-0 zfJH%I73wYys|;Jyf2FK%a3&et5HXQQz6pSP*GaGCdCPs+^)4}kSuvUQ1?V?(LM#^Y2#CLNtNVUy ztYIDr0n6z4&xhA|Bz6e4)lkq>yE-d_SIzod*hTsyi;mO^imXfM2x|R;$9f5mF=U## z%O-}uu*fwTt+5kjN7&RasPv~ zmT~L{q}AdP5XBdSf4jcH7gR_+(KnUHU)?JPoD3%~bC#IhBA52QWkR<(aCmU}$PJh- z_=VV=Cg~mU-myO#J7r8Q<&0iRrUhx3^fP@@w<6>7jsqcLc|4 zZH@M@vzgLVm0c(_E< z=EU>mwMYt5;h*H-W^?kWKVeTx-}3*++B3ef@^jb_Z)y;T^7yP2KA-HuEqg`y8d6mM zh`Y8I)#*?Zs!oWZF>DwOzpyp~jkD*M!hR#X zHi^*CEZnt0HSuRabu#YRo!7W-Uc&E@zJVncpBMM(of77wqK)4^L%!bwJZb%3rm3@C zC5fq6L}7f>D=od3!x*xdJ84yleob#KrmMQkKW9(Dmt2(oawXHWkSK4z5!93_L(d6% zAWB_id~s2X+>RkE>RJx>SwG&p_#y{tbvF1jTu4pLk7w5I=7<3qe5azfjh#q|dtpsS zEURcJh+XpJLmqv1@3@ji)3MoReJWtK<|XXQGGq??0gB5=fWT7T%F)sYw3K2dWW1z- zh`dJ{;^jCxIDJ2u6-S}>Oocg+Kv-oHFFZm2{5z9_t|T!pD~ieIFeO=4Vhs0k{K7NN zb?}LNs*B~WMadc>Oy|_$F{e<3yuZnui;Ga_)6ql!iI(F}H3OHbCS9^b3YYHbDUc6U z{BYmp0TZj0xCQMB%dQazEbcawBl@;yVv3$SQPyUo&?6;#eq@Ijziww|^qu7H6F2Nf z{r8^M0mW;0|9)Ujy-pOBA|lhBlsrYmp)U|~!LXTKiEtom#B?5x(L_&mXF46j5_CI%xi>IGH+|25GwVnZTp zWMc6ZeP8!j z@{pl;)#D>Y+rsFumZFrmy{u(cBV*#-f$zh4EMyK=$+tD6Nl=Xk1ehk)lQOTy`qt;ubNb(|5}Jh8O#p>(SS~Z3QXg^nlA)56;;s_da4y zWLmp!2)+0Un0AoS zL{~E^yw+(vg!wAm9|}l@`A89$E-sj`8L?~yHatC#9p7Nt-yC816}%I9lBUTS-oZkE zrSN0ahu!q3Cv&Ufyw5(v=@>p|Q0w*`wpsW{viOCj00OeEr>ygJ>G4elso>O@sp~eL|=djddnxYbZ$<7TaQ0^F}^ipPC}k5 z6S{R&r`gJ%9e*5HN_t)QL@&aJ5a&L?KC@L~ik%akaQSa)d+RheNx)@~Q}S0?xH8|A ze7)y5hs!wPIX{p1(8F;u2&fM?cS9TtubhshoT~zy9LK|JUq<8L4OGt_XWkBfj;lVL z{RmZjvp%YaoQ05#i|N_h4+mGbCMyxiQ~htzowfM!$BR4K5kLomj7Z>DT+zu5#@Y|9 z2_AlZ6?+>+$XY1;0p6*<1qq?dr&0mswA0HSjcA~vC`G(I15sIxg$ozANCiP5MDXil zn4u;aaTUi(q$s07dc@eiB+XzwKJCi_dbU8YLZ8N-9skcXVjeEnR@CR%8C5%I z!&@nmF-?-`07#t3<9+%3{q}{_+=Gp%ab5WdB+FI3y#E%F<0-h?bBPr>4;#VhuUq6B z$nwwhu<`W5(L5C^)dk##t6%%etvh}z2kzGGyhn<% zfe)O9qaaQWaid%an9dF_mvx@&=1d@LLKP)KIV4%Xetx&dl@*SdDlfT zp3QRL89Qn5skhyxW}8azJ#uNM+qZ90H00WIe*MJX^W_+|ZHaSgU-m8jPM~Q!A`vo( zmPrrZh_YwY+b=X_S$$IYmN@hA(4+ZIpeuZdY2{Yd1K(3Z%zuvwzYg95edo(;iJ)xU z)+3SIaWn$KWsX0?d>D49r^dz;wQ+SsfDEQY;J(XhJn}QcWllc>K5UEul_p!=ExV)oWCeU=Hu>COZw!}N6)%Tef$fohT1 z%>*0>3{29q=opn-Xdv<^iK|VWh%>aWmt=sMa>gBXq#67cSMr8%U9j2@3;-s2qMl$B zA~?WRgK~~nkS2&cGu#xc_JolXtr!%gB$$o}Hn+WKC-^t(u8|F)wvUnU4nV*^NnC*& zV5Y5l%5@(%!7O@JA?Bw}qzw+Nz7h0{Gr14D@2M?E1w@^Cvs|(|vOZHAg(3vH{n}%d zbMr0Ecf$a1mjRl1b2OoA8{#VwZ#jSBbAV5VNi)~lcJ1M9OTk_%qzt#vwNvpsnU7*> zX(-}%Ncn>!y%U7jQ06cpc8D74?PTlg;`_tZ!iwpr;e{91qvW$e%6F6I@ce(p4HeWM zP%`5pB26f&)qNO7*><^JEmwyprmxFqOolYA5dA8 zd3wI61d4%5`c{y0zX|oO>vTWP7)Zmi*fd=OPL;d}r=wg^TU(RvC3rXd(kTZk*= zGXP?h@v+@s^T>*RQZnbakFf3~L2C>8EwPwWxcrQ|qluDNe|!_UGeG`c)Avym5zIcwh4{j*ArQ08)X? z=mXnH_Ml3KXAqrzXmX<`Rf%LDqxLvRd^Dq*?7l9cmRyc~gC?#|@h0=^cPcjy+-PdE zs5XOxHs@wtazv`m2^dmC35RjI(&oZ*rJmgeS3bKB%uH55DLdGB_IxE zU_IpSaccaqfAHME`F?Qt;JHyvNg!NOj~D|SP^Cf1%c*U~`U|M&O}2G59l#(A*~!6z zT}3PSXe~%bJh^2IXH;0k|#mWr@g0R&k_F+t9bpB>fnk zrX~b2prkV&$F$$dMj^Qn&;Jzoag>K1wBmO21~T~c_dDwBePJcsSa~JT7Jwc#Y6x!T`Lz=2<7jH9B zJVy~%LLtcDXEnD~@sdt;dS9zYSO3ciFnxwIOD}eX0%w^Dt^#V;j8w%h7w{iREQ|O+ zpDrrU_;uh)aG|XC^&3#KV3?tebX)>JO214M0@x%1Y3p;BsgNn)B7H?^orY2y)5v>g zih>*^G)lS64{8dpCVA~R*P#R=G&0^(@b8&5nt99zo75i-MfsHRu*2-*=9+ZR>2FRvE@|QuZeTi%b{My%5@~Z!IseqPpF&&&-f-3Prc5lxMu&B> z59r0nE#Ko0c~Dk}tmsa-9wT#4Kz4 z*iJ+LMc<0`uCbxF2nWtHQX_8CJV|4b*I}RzfjQdwW9FqToTYky`IOw$ucHa~aIqQn zr_4rwdGBp0y>wh~z#Ex36t#pw^CaaAE{cH^n{;9r^~GF&iuMR87j%EC{JNm-{43HG zNeTgjvK-h({$u~`WXdQh5A^)ZMx^9}zpEN$m~UUoK2sT1rIj~Dmam``3fTM#Wbg0sQm8=h+^CT^R!lJaIoF2 zPbTGe_2IXD#P!H2jLy%nM7zKZU9iX1tBaGC)+)-`3CZBfAoYwA%>d>k%e3K9 z2u}hmB#PAaU2on(2HPT+g{+N0)HHIsZCI;kEC2?7JG7()r1-@TlU-7+0NUp?@>-IOMWU8MMXX2A zI*44#j40iTsrI+GQaS@E)cWYZhaWNmV(QMAJ7QGTTYQqw7Js0CK`PSs!Ou3b(~@yW|v6O(!KExq=>BlP|=m-b^i9> z(-?0=xi@T=$Am^Ruwp#1Mmoo6O7;Q25GMQ?A$ZrvyU&6tCC>cX5#5L)D2Ck7jPlI> zK=ag8Jx>*wG42?|@vOm4+f@U`t71XlDye2eKuCR3q#b72VFSWESyEf`&S&bhJN(SW z%Zu5b)jaT26!?EoM4^|f2qq#o3P55pk5?Sj7y))so=Xo!J{NVKTJvwJ*H#XDdZsieVm(_cVP9mZcy~b+MBO(z*vU=|l-FM&L_wSxNbMKv< zJ9Ex+p7Tsl$a!&KP>@BJM^}!>Xs!Z*vU0j9_Ig8bk3?YAA8$l&wUfHPSuevvqi{_) zqx&}LT+I1h;*wvv9!RtFJ%ptwy{AD;IOA9vJl|zD&@m3Vv>C2ydSjQBRMd(&IWg7) zm6k9qo?=mxe27J3Jqh7--@L*HMng?@9J;(Xm6LRK(V|qGO197{8%h5OVEe8&)D+60 z%kQ9hlAbSIlvXd&_f616oU82pGR8rn=5$}@g7mofeKvJbl4)kg$#4!e!0x)|;HD7j zyo1sb%mFt0>SdFQ zGZ-@3(>OtsPg&Yv8cYq&(lzWX$t0B7wZ~EtpD8P+nquQOgrC6ArRZq)sIO*U7iTzY zr_*`w6&EB+`2&C>!xXhxzZ$mIY$9IGz-YKF`hniW%2Yb-1Gs%Xx0;~H-Y>n?G1C5% zw`>vyBl3LOW;#~jkb&2D=mP=r77cm2I}*xwwGH$~VybQYQ%nVbZIOspG{!rM5Q)%B%$G7dN}H!4 zaL}dzq6#h?4amV3)_>y8CNVZB&!$bMeGg195P|1~@r+56;sj6Ad4-zu(yU|H?sMXl zDCpPmPoUU$Miahj29v!sJ}ZCNvP*|y?$PQ2`XscXIo^o`$h=UVC4(M$aqTqS0BVAP zAiSKq%zvNLKeB_TrC#*2<;an&xk`fmIe-^KBH+k>M9t3SPtL)s@Vr7BqyCi2o@pf4 z7+U>o1q72cU2!MwKSAXdF6gzUxT{g%I4H_ho=C)>Qa~lVRqh}W$b^uA{y86BT~k5_ za*FahPiW#9$e}deqWDO}orI{UOtm0UnC=#r+b#YcgBpAMDJhiQ`vD#jQL^)>&^VJ| z@@x6sA!GA%O%aqX6^z#V@uPM&jF(0{Mhc4P#+QfNs=gJ)Bppr>KBk$bv+rk% z5o@6Q3>`UxT2!_=WW?~vRROdMRKwP_cTHS&$~Je_Y@PzW#bt7=*#n{&gvD^iKY)lO zhI}#?=Y(J~DWg6_X?_C?e#0}zm`!GJWHvre%9Q4}Wz8xX6KWXC43FgpfQZ?Lc{(hv z!K@3nRiP*h{{$~hT@iW-u%sXo+II2o2xgPF)P3u4$*FS5wj*{4Uadi1yb1cY-eqWX zi8p6dQnXWviLszMPNj8Mm7?(3C)5i9!6U?2(?v*U;;VBGxBi=t z53gnIujT?xJQ7#k^KTC-*#4!3ec_BT4WnPQ2d)ppKWcx7*>r=hnd@)wrhKC{{3Osh zga`VUD&^k$MZfZvp^Nl*%kN0+hR1;+9&3MlUj~W~Lfaq6AkAep7wFw!TecYNk*`tO&1x#M$-Hc~R*Gh?6RI#vWuiYnWaZ&{uPUqVYYk!^n zkiUh05L*C=w&dnY`8-m8*H)?DN(qi!a*#TuJFc&T4xSa~)B5neF&I0ng#-#dAlgJX z>lui-@ui$6p!db8I9ooW#Evx=NxP8B6xwI!RQ1P|=ezUYe@SVM89i5wNAHS1kY!Cb zQ{f91jt+cOef24I|4KL`^+i{f_RFIO6Wd zXYf#u=yK2&z^ENG`39bUal*1QP~{kg&h=VB=$8+o2w{>xZ6~VK#*8U1w~Ti^AJGnC zLxERO6rXZ^m?b3$mO^32$*781Y<9&NRr;)~cfSxnJz1ryG|GLZyuM%d@!x9px(#uE zeD<;mh4vV$&5$@FqW4~BVg$&AD*u=a{AegxdL?_gfSmc*`?Jw5&B^3nj^4FGN5Mvo zR#VqCi(-fw8aYOQv8iIGwrh!@YTmI9RXq!1T^a#M+9ikL3xWQspbT!+s1PQ+U@dd&F{V+mGl0_j?Y6#r+^ZFPjftp(58wS|u_ z5}!%SOEECISmW%8?n*+okM6>rMrVQ}>Ec*e^^@G8{KW-3T*zPw6=(T|Tin-H_Uq;v zuwk$Fj0EyguPeE{<93$Qb&G8Cp)9uNz9pxMuodI(N{06%^O4<+>L@ZC{at{+(M(s} zdOxk6lfUP|e97U=>3BQLhAH|Ph+)R?dbsO1qqFa$bD$LPTvap6Vw7PBvuiF~P+a_Y zKEg}vr$XNEo^#_aVWyD?Lry(u6T6mDCJrH#m<(bOd|$BksfJX+H^t)o3*q3NyIUtO zPu4Wio@AMo(=<|i((eqD3|!wY3VnGIr_sYMdXnQAn<;$qp9Nb&H}~Nm`N=$1)-~FL zfG@9N)t#U}9zFGna5@=#OcUbWZT#IoEv zxWbe$L(ai=rj!dQW9X(?To zRYXj@ko+`(gyWv+cRl!8O{8rTV3Gq&Zh%Qr-X1U|a*HTvv+vBILoHhwe{DFB7{K24 zHv2vWPp@+iYWUE|PKQfkvo{dbO2!yIriaV+64G&Et7&H?tGF`SfHQ!QyNdb82 zomCsM{*xTi`dI_ixD%Whs$BXQO{4lX`x-s-{nCg zvL#eyK1vhh4r5?d=;we>K-Zli@tGB8xqvn~7#IV4F14G1ObT zSeOmC)Q^a++o=09tDa!l9YHOO<%cvykSz}8o59PF9J-tnwO9-J&rMt6On%T=gnd6V z%w+0|?)hTDXqq0P08>(7$3_{%7OP3pEM;u2=<~N@-8Z7fiD8lq9uw|r1||s!#D#9r zQjkFG;|+%5zRkWhRrJ+WvYVH5Zp5vt-o3$YYDd^{=)CLpq`JUKG3Fd(sD9oSf|ez{2FMIW-$!{qz-&<6OWfgl zgDxRv@ABfpA%F>{tzNyZZE846eqGn~31!xn*AjrsgF=tmr1gOVQz6D>x83uzX(iSX4ZIH8;)KC(hKX}OFc4i8WIwpo&O0#;`; zi?f{{f3m`a$P8lps-HqgU69~K=?J(6nY%s!Kyw^}brWCB+7TR)>LbJDxQmpccxh7k zU5vQOk~{$N2&*@x4pb>hJs^pY?tbV)Y!4FSBu}%7qmXdCrzv_E@{~&ntsY=TNS9EN zddv=>6tWr(JdYw-d5EzV5R@E3e5%}3ejQ)JFZlp=9!e@UVI@JEJtkjWZ>~C1o-t2{VR&f-r)mtk9oR)xCaH1P+W8>7$(L z)ht=6#4{uE3VuC z-SfsS)b09S*yZZFIo0*>uZRdw65^56sG}hzzF^MdWH~}dZ9F0#n856?r5pu1TAYHD z30SOi37U)aqagZGItG$dU#DPn-B@GmEn`{Tl!NTIq^xfBDdBE3wC39@qpVTbKnQZ` zz9^U$#6&tT+3y&MKLGT{aUt47SzKJl5#_KQ5yMCR5D3ui+?9*$P=u#$U%Vh>Lk^Jc z+t(obwdhWoz`wMCrC#zUolD3=uR!Z2yV^CmRoBAcF0Anxb>D#>lfhZ4@(N|btc6-a zfHV5t)bI}>3N)RB`FEjDCz>eLo>6%UjG)lr$A?1s!EIRMd*HqUZz7nDpzVaYngIflj%db_6EgJh6vh?21U?JI6+H3SD7$Zn~ zNXeQBhx2(ir5u0}vC+ogQ6T%8s7?-#{>8@2{M6~o)RZ5UZr5=EFMWKPE}K3t3^j*`UR9!@H=IIywaIk}uhF-3M4DS#wFtSyi5C zw5079LO^{E^xd9!Kt@r~bx`I@QUT`Y$2vMMkE-c;9Mt0vki;YB$vP{+z|7{Frzz)} zqX7|l{nXwS@r30?r!*YlOD3`ib6#0<0hvzezx>A1C;YS}GOc7tSZB0J00S_M!z_n- zoCF3qh=kA_S{fgSE!E;tx8h`lC!bJKk(1V7O!e|_W#OUUixOU;GCd(3A95MDwVz*K zXWiC_j&8Hv=~DSd$ZHT|a;A5mFONBR0s}19<0|L9wR6K+I`ODT39{cGVo<7)lWl+} z-cFM`wYwtBJBVF{2#adVM`~l!dU>k;e@bcm|CC}Jy4Ohnz&gZ99?WDyFG&PlIl(x~ z15ZWCLF^DD+TTfh%858BYyf=!P(eppLlSr$O-B)%xcUZzlDuB2DPO=iY^+y*Pe(8) zE6V-@@eloYw6z3PZPsIKRxi(setQXl_EpD2h_%6!QUC2$546?zzEkVAn*0sFy}AVB ze<=KGU;+{+br!!_GER2Gz|0lT-^A7*$PD6S7<5{t0)SBJ{-Lmr9Gtd2KR9E+s+Dc| zK!_Y>1HAr{nn4Oh3d)JU<=!B62@?IomMdlWkIzdIWGt|X(km_K#n&H54B|2%2GVbO z*E^~D>8HTDnC}a7@x4D6n`W1ZEiZwDxHW%)TlrcAN+$nT z1z%A(y@>0zw*1VX+>;7=F)?u$^7<(i5owf*C4x}#bPKQk%zW^O@3ppfWw1>w22+;3zOtk+k@-jfA0QCmE|G1aa`co1AHjb(2*8)+ACLTa zY>+}q-5js;ZQ%~^I>tKmw&BI#i50O`L-A&+;MxERQXYRxpW0^!yRv;o9VI7wHG2(s z@0=rD%MSq{QHR>tm}ukwfH8|khRQp>lCrVc3abl%=e2W3 zLb2nELLjUdWi*v2+G0%l-dLXGjs#D~r~A-?ouzNjM2J0r4l`sJxiT8Qf8w>6h*2B+ zEK2I*%=F&wfrKmheo1uzlk+onP)k$dT?lgE7dhPYd|>!jT(hUxTx<|N_V5sFhx5K6 zLL#D4{)*j`)i%>RW7^#)py9jHTV(_GKsKKJ$DW>vycXK`Ao&{+Zwy-BVHtftfTurF zgxYCm_TuEXny_Hfsr-{P_svjEKrK<^O3Gc#Z8&m#2+y^z?AG!G_t<2 zk02N)Q;Ni|Q_^&d2>!qwB0ACW|L!07vNy@inTaj4GzNARXBhASK(SK1*8l?&Fz_+5 zWtDz_jm0G*?ZWlot>z>0Oc-W)E%x=-JU#$e=Q99Y)KNm$#giTruP46@`~f|mS(z{##$`2iLhVzRnmIb3 zQ68I;&@z4q<`pdkidrzePOyE-M z*Q9K)bO$!_iUH##+pBEgL^nGNU8UWFGqv2Wvza@meBS0Q3yc6qM0Sog*DIY6l*E*U z;U8E?V~6aoixoCtickPkBvS1p8Ccv);^sN5xIEG#9~I@v1EZk$O@be+@)nLw+*oQR z$<&!&`I9NIuFv(viPA3^1UzGkCwKeEb?ItGqk(i=2pJGiJ1mr{!7?nQ{h2q5ggc`} zAIu2Q(I$+f`|yIL8e$rSBLGYbC+k~EVgf`5?JL2g{qZ8)`Dk&G9w+jCbD;%0VDcU^<>^4CAd**EQ;H zE#Z%kw+rwhqAf`J3-}stH|P>R2g-_9N4yYa+^ZA%Ndh}#$77w9AW*Y2rc$0Wwl(v3 zD!lddipE05A@T$(OG=lp_Ew&i5ODOdEZ;t=N518!NVPkYrr^uVc{XvO=FT&IkmTY~ zzC!wl+W6zlMA{p%k!JIv+GrMT^wY28g_vHHS!Evk>)HGVE(4EDnS%fVpq1@n%~<6w z54%e8;}D0klRkb&aU31RD_imYm#;Ifh5NrRFV0+DD@27=);yQx_q#dJG^tVZ2c%oX ztuChKEf}ztC(sw4-&yl3F>$9GONogeVr}AD3locLPV*}{wq_cuIf$}7w)ebg0$r!knfOiRO(+pO^W9Kr+9(g-_RC=Ibg-CCsx(QAT$hFeRA9d!TY-QR_xas z_hAMBI|vkIwKRz)GX?0FGKyc7yHrdhp&R)$+_+T*%VRz<2{a=)l%~GD7vODHDrNxK z+`=EWx?xKnOiTf`J0KtG2>yRk#Mnu||1IQ7IoJSzH--Ka8XAco7>sYoWe68roO(bS zh?ZI1dyfct@i{s>Y^9Hn#aJtVj=)(PRE`XwgIaj204CDtY=2ZAG0PYDEH%OEgKrHC zqwqA&ii28+8#5mfr5oy;xM^)qot*;pL;MpvO*tiPf?L`#4-i?%ofus$=QgMC2_@Gt z5#u^EvR%!K@`!+V_nV-;WU!`fq(7Phl_73iMVLHfZ=FR@C`Ai?MA97=Rp~`@`Luy* z_F`!IV&3VznC&R-5h;NKlmaUkC61#PTIc3!rmN_rx>GNv(UoI&^Dv`@h46pdObp`-E1XSsm)YCQeEe&Vgr$EX<1sOT)O`LgqwC%RwfjDlyt1+V@J{n9!rZ!~=NVU)VdbyWO_Dfln4J@3lfqG_Ub zt>p!v#Q8hRvWze=sK_@E=8jH53Wq{XL_BG-~(ToJY`YXG=)++~wv@ zh;?h4A|($_Ivz_dnC(fHCB+J!2g!+$YtI_CUgsnf+PB7SmRxvv6Gi?S{uQ0#$%()< z0q#oEC^Hzd+bCSCqOnu_(jU|$x;RXUNfGBl;AR*N?hTCQP+@lag*iXP%xWGkj;&jY z59bFb4Cu7dmmWCK1L?(4c{+fUCOnEB#GZ~jwYzqeFIs$bKHRs3x4+`b8N_x%qLYe% ziaolcb_2}rVpS^oDz)D7V@qy&$Td>A=Z*c19!RICCE8RU!n}OIP0kk_Cz34p%~XVp zcT#&SXZ=~1a_U3uFG%zx(94Gh6D`1IaZD4pe*SPM36^)DGKl*q@ZbCT$bhGhgZoWi zb$|cI^OV0TxgLoQe;F(P=c}j-nyYO69J6{9Tz#xfYjlstaex{BkUsJguiXT*`v1CH zIe(ay1j{*q561G}No8L5ev`VYMALt7QoBEG{n;<2R0He{MEEbsXQzdDw~_RZs$i+3 z;O_o!S?h%h`w;RT$Eq{-RihD|)*qBe@+iB^W&E7()c~uU8(>z}iz^Ps{=^T&S!X`) z@&-J1M2(RZ_Yc)3d`YEwR<7KzMBO2jrNVRdj6?~Uc^8qiUExE8H-R3-1xQSIV1NPY zQCB)IHv7%KROZOPjBxh*-HFL!?fWQDPq1JTN4Jvv*n~HaA;K6w5-#vK! zX={aZ)XW75D9e`_5*B-eF8<@2**Y z#zNr&)l+iCx7D*y=dR>~4Rl=%6Eg1y@a1pI3u#a5WOH~7oZuy3JfEf?D}txZ0{im> zmH)TKM3%BEZ>7bYEs8%MHJ)ft7-0sqvMD&v=W=_aJRIyBKOkIm;|JKGy50z4WFTLX zl~USJ8H=%Y0Ha66XKQxHbA(QQUQk4KK|N3A$SjbjC#2=m%H8s0{A^W1Lo2Xu%~j^I zhFO*Laj(HgqvWO%7t=@Jh~hj8ph*M|S7ul!#C60Q&Jh3U0}q+IQhQ*L%cDTZ38|DP$v=S zkv3Ay<_8(%hi@#8MqPOqA`DN?$N{XiGVeurc7Zcb=4eBGTf7xkZUau;4>TAU0XSNl zAUR|Tij{R(2R0UIcv1oe8kFQ!heOsE7dW-|5)&sv!0uVLb8xO zE2dLk(17N#tnCo?H?w4(@&F{G+RA~U&DFKrUxQ<*Cj#3n4XI?&C8Z*-1fI{Dkp75b zU!&BOvDA2V7v$5Kscnr*o-wv!$=^`sA;WzWcX_~7)|rV~u^TNFd99;2$DpDEz|MrA ze{UYTt1~f3To1s0AD^x^ssXM=S1<2iz?gxZCGacgf)`!JX`y zhTFHcM;?Vz|M7iR$8tn4%=5F!rrmQ7a=PpG|bgLV@`pMGtqOOU! zpJq*;DN8BYaU7nOC2esg=ZFL0Sk+=&Zp*vJwrRG1J#`^0j;%rOv86YS~odr*4!l=C?^MSb80<6Dn3D zVmd*f?k;R<&2{oj#fZwkR`*=fwJ0|_RridgYeS-h4Cj-QBIoqAigMLfg9#CqWf&@e zFbZJm+DIt|GDLzd_P`+N2Lwm2+bW!=K$IPHPq5lZE}U#Az?Bvl&o*A30nzF^Y^3~2R>dM; zI{*CA^(LT$Ez{OsvDj=k`MWwaSHw34b@(ODt{wP_Oa6nGj~?LK-WIe}ETSs~Q!cQ6 z8^Ut+&HAcC>+$ZK&VW!rzS1m4lp1-#ipstrhQ8GCLd}19U-FPfd)^<%$iFVnHMmd3 zUEoiG(;VTki3$x6Bcr>oPtVO&x3``Mv6x+Z&o2Cyo0)pz!kO$Kr*H%(>qKyF@RVnEv8) zdKFF8PF*zUeX4vVetmVSGXv=SYP06ldh9-%Sj}2b#(+ZG>KCR=;3`(&Dl7RP`1QXI ztU4ii^}n3xLuL%0BTmrFQ`9e%9I*d*30`R`4}^c=laqclHoUvS|LiZC2e64cU_Y2m zpaHh)0_iiPx8iwDE`h@%iu3_mXWpCx!I;h(7*eSXx>UH(IKiPS;^0V8Vp%7IGONmq z09>UuXlC9*<07Z7GR~U<%aq84yQ#z6gXCacK#^SBkVw!kPLZ4pk(UCJj2xO( z5w9rbpR0-D0x0_AlDSe+gx5p329FuIZ_debUDarC?i77Y!0#robuX^6Nqr3OIz zehkV1aE)Oj@U-pcK$x<$ni;|M#7K*>0H#1c(JvmHDnOU8mFgn~@O9r2h+ckbmKp&W zAu;cTioA8CD{Lk@)eLfqw#1G<@kuU`iv7=U4~WDKCmMl&vy#Q`d&I8uH`>fT<9ar= zyJ1kf@6dGxuI4ER)Q}<9%kJ{;VcUD3Zg%nHIz)KonSd;FMKHrepRpH*nt0f`Eu)Bw z3J|igSQ8AeL!HJLeP`dfIrA^)NcMCPFBeAdNyvW;;8FU z1Qn;AI1Ukyb+H0MAdz)7u4aZR5k{!}FB@-_p6)hV56N!-I6qRRmaNM8r3cw@IzOm+ z^F09v-RExhLG@ep#biSto&XNbG1a7}>?)~`v8}+pT7g)}3ZOU`6b^xp#~dG8Cc!eq z#StU1)-k}ZB8&roW8+dhWf3E9$iZW+4`zUe0K9=QN7UQ(`ZTc? z2g0GP@c`b@R~#6@V`k{) z`OXT*XR81%#{mLCv2|87;e0bjKO>6*Dq@k|1 zKrn6}Q(YbHDKd!5RZIT7k#Z~w5Zw8&cg&`7&k32y&5&%}G=%@9ri1QCIFoV1l!@5) zOq1&mpo2Jl^=wz~3<_X(Yg^c&=)d#PFfuDL9=$D2Wlx3uFUOn*0@C{B6K)i!<*)G* ze+#exW#p>>Jo4*-y~#TVgZwy%&!pA@98uH^CiUkjQUfNh@yLtE6z_QvsnfJ_*(nt~ zZ%y+ElSk|yWohZ;fa0sQAPheqOEv__IDLC0RyI0%KIC@zf$i2zk*xG%jq%;~01c=O zXF!gextRfxDJ7F3fXz1*iYsh`W=i-i#c|iky>}t)f}(deqo_1ATFk`WL-J42&qust zOTvaweLaq|$p-Zh9mz%}+SL3&=79}&E?C?i*aU-+N=~=!%`Uk+CkgV%ofnc+Uy7>RjBj6%fF%y0cNRG~|7fuXnpC2th@3OHotZBZDZlHLwzW#C3tvkR| zby=ARp@A>*sZjZ@-AEPq_>@(mBmcMPq5Mnkw@So=^faU&pc>`3M&D}(sviDIc=n=V zb%fSMq`!CR^5?W^SfP}I%7EdU^o~#2+?0i%b25pSXE4$p4(g2=ny?WbCfZ4UK#+O= z`^=x6UnkeQuN49&JT|tt2Di9UE%_ng{Pwp->$Be(Md6R+AC=@aOB~LWcGf(|{jDdD z8S>Ej2KUj?KZ~YWr%$SeHDy`T;{ib`VUL=+ z4U0#~RCtDK(_}caw+yt+>a6#}EsgX$`U-{n0kv*KXjE%4Q4n!C5mcs;v`WJ> z(GpAMx@?_P`w8n%(%xxnU|INZvZi9d&2~#A=+dj*Ms>Vw=a+eoSXtbbx6C!^1eL6N zdA}@vMZY%utp!=tea{M5#jWg2rK&1V2Ij1GzS6oW`%1EFPNyj>y;`GIjQ=BZw^o}e zr-T-#hTFz++>j_9z`W=A_4~QY6PCLa;j$Ku&x&J7gq2+2L9g>+ZCi!6F#WH=r%Cr^ zxnevC=Nz=dK`lJt_aWFio-cxhqrIOkv17lR0DAv=F7?7l#^c_CA#y_;QDdJS9<7}i z9;-OqK@3mJ>lMD83Dx!;UljQlPzRn4p$(q9<_{u???fr_qP;ciZlj6iw~DxnLQvRs zk_TkV^Ezp(bt|k^VW|8{vE*pKUpNe&KElbYNmX-YLS?zSpHX`FriaJv#;|iu`z>NT z$%AFib3AFT)h)DEHo@|e-DKAvJEKBZsD~BN`mDXy9v%8%b-GgPR5xlosJ{p%UCKrvrxt%2OPGF*$NYD}P?TsoPIohh&6Un*aS3;GBdp{mJ9FQEc(IDEczD zTR&+~|FTA4x8v|DM+(b3<>sfD(u}`ciI+az`gw!TE^EqnJ8*LaAWM&=R%qmd`ACXA zv2#&o7O}mKlGgpGxF9|^#(%SQ(BuaTk!pKMXQB}-wScL8KdLeab~K|b`&6gY;vZMS zAU9Dj{Le&li#D6u#y z!gQqi3w;f^`Z4ZS;P*;rq)%VL6MmbyT{X;LQKN2v zSb|37iaM!3?>>FW;lplzw{s3VBef^wbTZ?N?z71{l^g2Z{#yI#0-ml#X51zt|I$r4 zU`G~BG#x~_(*09p!Qdg=KZ*nLHZi~Hctev$9?05&y&$5WSpxgFgWwH;#zB-DP`4Wn zJ4sK&4BiKeal`Jf`~wEpI}d7dbJrI-<#XE(uAgiO>t{&aIrExxSw8y81P^^U7A986 zzO;SfTs%GP{l4eHTQRq5m5kbQQd${?-j{w_XI`?gSBE=Q0nFl#VrxIrHmm&Vv!{bX zaTMxyoPdnyhbY_aX;DiNOz^4iv46E#TkqPiY)}PX*0z$v|0II$MqlQ!%9(#nBoHZ_ z!F(S5xw_;VLtFJ(;ZRt~Ie(VWb>e4j> zCQm9Ob?(MTbt9#}l*hdDqbq$f;q}MmYtvvF9?wHFo+OQDxQ8cGk$-TRS$qM}^LaiI z*-(K3ItWcV%PacVWdBNQZ4&YNq-i210lkUha_dj@LkZ&;3wL=PZ)I#34Qn25 zlN8!zGQ^%X$)i!4Uxy~IPCzN3TYflD_^som>3XpI{yt^sw}l8^R#I~3qMcv?{Xvwy zq`PJo1t9jNIVOJw4Rg&$Wk`~~h8WN9O#2lrH!^Ymv z4yPU82QQ~2DQ2;p*R^SG^Ri{&&+(LJh3b}S*5*9}0+k(_HTJ(4)kYmGIkSMAg~yNHbid&?fT|S9zL=WKx`S2j zX7Y3pqwxGdNRkJZ`Xg@!5P}-H#}pr;J6?&6U}+%6O_lJRT3+drykmSo$A{IX{V|ms zj%qQkwtR&Ir^gYa#tW>9DQkM&A>Y;K(+UGF{vKDn+ns^tLRVi7lHZ7y*uM9&n?Za# zAb1x=;(>H_x6ZYpOqw;!Jxb*4w=+*`sb-2hA76`|JfG2KnaUMhkkO4QL2yPH@vCuj zftri;U(Xt*9z|RC->6g;-1r;~AC?d*=9_Anuk;;65yQAER)oC!n=8^8peuzlVjVos zM--&Z;wu#}?Lm;mmQSeP%)PP{?5!u?`RMvf(m-naq}M)LM6!@$l;g@&y+1oUQ1J+G6OzT zb{Z&xa*JzgyV%q|>zWT%F!{pe1%I4Tbs^*N%sRAPM5AU5=tK9wt5iz2{rA5Tv8}yg zQ-95q!;VI|i?$d(QGVTLalW*?A4L>p{jUx7B}A`o>dqldB&aim?XaPLpojRO0mg8nro z3Y6S%pjD%IXwDK*9*|f8-m~(~H^eDSahpS1n_}~FYfmJ43Pja&`oi!yW7>o1?fNHB zzhehvDU{Q{=AC>>`faC7b$c2lQt_|8VVIL~nG1P$P~F%PU*Z8iO)c4>$|8Baz~>>{ zYql8A>xjF|P)oxN#chX|=-JTpTL*>9Cbq+}xWjsZ!66)yEvA*Q4arttO}KhMcLbbz zNAyTKu*8 zX;0;Skm%9F)<(-Ju{zGxfBZ!HV~$ORhWYfer%VF8>doL23Yqk@%RZ4^`q1)$%QIMKVRbz|&&o*Kzq$Q<@yUJV zFEjkrOfzmOmr8&0!m@2{P470=y976j#me2XnMHu!lP!c-+;KeXbLqdqMYl6s7Tu*c zo@m}?5SB%Z4bAE%S7b1o*%J=#Fh%@CIBk$Jryp4lQ7J5MMx7079@#La`nI^SG_kCkDyhJ8Gw@Du#K(yr6)kA3FN3@b zlaJM$OHNQ)y7eGi(|#*cIBn`1cGY)pu|BTLOs=ghXwdJ{9rN*XDvV%7NoA@rL+L50 zIRhi&QN8%csub<%^ZGw8Df2UY&MsZ7YX+CoJNNco+71RC>D{FUS0k8JgE=*A|+ z3pE3c*VIkZ;_Jy=Ph2sIOd2dpoT`BC)zhcZ`HZkThUCo-8)f(IzIh%n5~|ZumRJ;| z9M*E-(NO+fb2so{p`t1Kd6Ug8r(ECu{}W`I>K9(#RtvrNbeVJTj{@~50@^j+LVNLi z`~~%#sUMkNtl@c+X}_-)2^aVsJBT^Tb2jl=q(VlOZw#a09$TpEK`n+gqet?udu(GT zd=Sk^k}@35{H_yc>SJJf%G~6l`|Jb1TZ^#FZraogkFl2_EUe;<<_pE@PeTKSKO1qD zjZ%B=KP->L?R$AR{A(-~md^GZQdwW&YEDq@(Vp$ib!%vCqjT`7o?1B~pl@O-HjF;q zAmu5ev#X3iSyH>J{UE5%=NM47)FbKnO29-8Z)dgCIOAt`9w!!{u^KXd!0nRH)ofPM zDsQs+$5Jmi&#S;>97far?kxH^EaN5^1W_faeLk$|C69&Gfx?t zpD4)fc0iR`UXJP7{q#-;(3Kd=h6iV~$^%4P4%#x|*hA6p6}5jHh3V$#7KS70L`jfJ zueeGKIdo*`Uzr5^*UJuk_L14f{7+%KP%>Sc(tvqZPty%E(h-*-R}q2IPOzB*wqg^3 zq^&ms$uD$BOi=#ya4q)Ma=(q_${w2O_av((JktcS)5&Zlg!@9g0Y9N|>^2xl5CwZk zWY>v|OUdf#$+fHAQvqLJJ2ts8zjvP5IPIE^d(%<*Z2^3#c4(a#QnP|^XAR=WB)t^6 zseHA4SZYZxE|rEarA{Wp|~8{*_P=GKo^WX`5rIx4m*m<=auek}DnlkJsKN zKU&@RV6O!6dtVUP_<^bfLRy?M7?93EKS1`0!*!655#O*&ub_{Jo&R)@>#a*~4%k#@ zGPh#Cc2v4Y;0FWyw4NS@us0o6}G$v z^ivZs1JMY;k_vJudY=c^NfjKTKjR&>Cd6#^aU*jaXjm1iT(O7^!QV%tZHlyu3+$}o zCts^jG(E`HqsO7Z$)XQ|a-f-f*U6g2Nv7$U=%xLg62#Cx+J2U}tIi`FrFbPjk5}(; zHd;I+LtOYIZF_Td{dnV?D>c}1pU5VFNO?fGNS!QY>*%FP(~Xa}ZHVft%a`@mp&k2Q zpTG9FcJS`Fs5^J44s+(L{Jwp@d!Z%z!hJy1*|qd1*+^vsIW@L6iXT3i4ptUMZ|IK3 z-FBYuXR`Wsy8;Iow(R}cYmW3&oMhY%YdU}D{&3#?*80{{#ZWFcQuY=Xc+hx*x;UnN zpkq|8v9XTUIad9jr+l$z&TR3|C(JQPld+=xjq|DjSATp2 z`3p@7YMTP9>)PvlkYdIAosOd4%-keb`Kx(=AR`UMi$c%D#|0Z#wb#y|p{n;gLYwI= z1Kdl&t~XN|VdnDoloE~y*k{t%NG8PJ+lWFd`+%Sj=TeHRez5$Q5yfrZ4V`BE&|P@m zGUL$EEt)gKlk3u{9QQmFcBkXKo^m-Fd$Vla(z!>T!pRRDu4zlH{^IGbWnE!T>DdL= zawko9P~(qbb~sqxlBT{Iysca8yD*_Y7@Ails@fP@zF2#^b$U_zJnUDl<#M#VJv|ep znjX}F`)_GhkvNTsz&a0ivsrm33{+oO`4f@a@oeFy{*7JrZSdg>dw56wSFP5#kX5zR zBM_s(nNi&*Sqj_P$NkXwTKcA_x<1a6Ii?y%)!=keI((@2b8h4yc+kK2Enq49H^($+ zs~V^rt3gOV!t4!5a6lZ2p*w&4-^E{IZ?~55IVb-Rfas2YUKss;{vhP5bFQMb_j5+% z2$1ar@^Legk2&8qA4O7KM-W6 z4Krz@PPc`xu2varOxDryTQ&km19^6y53%5A=cA6?Fo7ZAl@Z32uwb_pJwHHQIbrnl z+vmY?b~Qeeaca*d@(~ousLTeMlr2$0!^kqVlWW3CuT6gxc`$I-;7s(n`l7M+-KEiy zgBbSj$&77ft9!8F9ZFgPlWywt1l^*jTkq5cmbN)|2}hmf3uT$NTF;++5Ka@gBpCrt zUl?cile(8tH+JDhiNl05-_CI}GhlxTcoL3WJR;J`4k)Ukc+Wdg0U^W_k~;TXa`G6$XAyZv zFOl$q$@R*~{gF$*;u|;Hq8EEJZ5>Bjr>n@ok9RT}LVEba%l}5}HBsLY$f(l~w`oe6 zeSl{p5WowljT-Z&n&fr8!2XxeX#AME+o}gW z<4irxP8*}@lYjr&ebI_gF(>mSZ8xoMe_bH_g=U_pE7)EcscL_7=p7nzU&^~V?H~8u zid~1+xhGiWO`E2KS<$b_bcYFLX#-n-%TCE;=j>M$FZ>#{OWtsxdm4FYE_E>D8|vEe z>n8B8$F53*Q7zp)U)OcFk?pNFS4M@k!}E@wL@UZ(T9hheVRhQv0?%vc0d1yI8lQ=& zLqkpzLzAW?EayoI=}1oHZ<^`#u>OVPu+DjHdh>5LJgdv9q%1d*c8t>NcK})vBWANr zs}neV%%qio$9W2`9CG6c(6ra-0NdS#`%*7r{{6$~k;ysG+gSofMA+glMZNZt!cPgN z{dRIEl240)YCxwgln}0k<#(GX0uC_=bz`CbtV+y`-j*;BM^Ny0E3tjn)9yW|MAX;pI^AiC3=QZ5!S!K`6mlnD0W z(*_E5m1gp=&k!_9#Sz=8aNMR5<=}^gI}bucd@jPsy*o;gP*6ibtAmMk7c-~??Xn+heOUlP#YydPZ? z2PVt}=fxizkh00I`g-5~)zBKBZ7UT4+wCVm&lBH`Hs4s4Ff%j95wZ5isiT4~5bCQousTxLBP5M5^rj-KI_V+X*iP;>E0M7>lo_Yz zVB~`WkJ<1%pc z-HV4$qW}Bsx;#{>desFH&djG%`E8*!zdVN0}CG zXo6-OVZ}ds^+J@8!rw=D_%}uVuuz_DCt}jrWw}mTeF^o=5)FT3`-5`C_E#pj`?%G> zWbHqdcLIlG3h&^iWZgAl9$9u=#IC(+Ibix}Qb zroo+PzI-5w!`(bhy1WYLJ6`#_z8Xoai)S_$RFfV&v_zC6O+S<$*>Rapb{E=_GL}+%Yisl^Az*&$qqs4ejV><8n%;<|4zm8i**zL*n+jumL+>)J zyYy_(jJ^FoWD&iLuw+r3vE9`>D^%{jdJP&MJ}Fx{~r2dv#*-XH$<}NGsVA5|c}CLG3~C9GiF-rT4t* zkwIKda2erEOh{DwHE__^`M2|9Wy9Wb9)5KmNT-I~&|vGTN;du*RR8(B#XY~(jOECX zP*e~fv)W!1a!DeH>5}z&`-CdCj$HZ3ZxL#5p_^SdNwY!0O#Y!wI4yB@X8Fepb+;T)&Nci6-d1wPCd;*<;cKHxIC_ z#>k(2c=~a;v%>^74{KP#C(1`X136pcZ)U{ht5PG}%lhTyN+6&b>v3`w2K47rB7dWo z1y$-{DbBB3R}Ej9zND~v|A&&3Y$dPI*b?3xd4K*>?&jutwzUYLWB5+zBQ9R&9(+J)#NYmLWRE| z@Wl8NXmNFqjHq?z7p4i=3?6`DC-?FBY0}QRH7V3E!VC1^?p@)t-w+6Ry1KxM&wZ>* z-+h~r$rEePz`QK^cQ5Wk2KO4~XSpp^E*B(K8^@PG4pd-D=acf=?w;gNe7r9lA(ruC z!b;*-g}DZVFx}f;xBHW~?$TNpIsV%9NGXk2ATxtxI*kAIsQRGN2PBZ(hc{Uq8`a!5 zYX|npYXYdmgwBxHm!K`K{um3eLiJlc$OCr z9WW*E-7wj~etcuR%n^Qgb3bzIZ8CuvU)43n|6ZSZ0N;i3sTCp2(oNJ!%RQ5fr+Y!! zKC6No_4_VLe<`?Q#+!jT(-{BdAI2IoI)?N$7S9}+NOl}p#k7sCQdW#NNg&efeY`fM zpcNr5BbEYXuf`O2CA=`8U7qIp@;#TuSFAZ6q#{gP;HOewS&ZRFFxoGFTgqKjfVZQ* z7~`awCn^pnKWet`b08_G(W6&;l0aKE2L1gUIn_ypBEu(FB5wwR{mW0^KS-T;2$s+o z*|JMUJ99`+mh49yFooQN~ktPA}9ot-H7 z#n771ZAZuXhephHZ)59eRp)Lk$LQs!MenZ36-%0{%_Q1eGfDeon`6V4M4Rl4&aEir zgNfN9Ve|Byk&u_kTs&@F!+%%3Vj>daT$chlPvY1=Ji#OX{6uJ+W=p-Vk=K^kjq~Q! z_vXL7e~&9}kyW<3%Hr#Cqx&x1$M>e0&)*Ax4!EjnH2NC*LcVMP(adxwL_n0GoXa2Z z2>6>>ak3hiGeXLe@jtoHKR-miR(172wRy<%KGF=rbK9PXb`ayC6oPKPo$W5)^mZ)X z`0j10O~-X{shs`%B)0RoY^XM6?k%?6BfwZdra(Tnij4PpQZz8!j7ZI_-B<`vF_g_# z0?S5yJoQa6$rpl}Ly`wJw%{xEk=!JWET?HHHXphs=*w|W+5M}zct@>_J5S@Hzb)M~ zwO$>0goK74eIIPS91K%<)k>YR+4VTyrz9&m$%&^xS&K1^@i!AhH&prYm;5xeCB&9M z7nGqWSY!X}4IxB}9QH_jQ!m!>7|dzkcX(H~&8BRK7#`)6|NTXX3yuo^+ro*@{>8!5 z82kcNbHxw&%Uxg&DybD};tv$HixBp)ZI{at+jiFopWa z``Ev%47C?2uAJp;x&B??j^7EiOJ*31laC_#*s#zX%veUNac^uGBjsK*UrEL*s?Bp~ zEQbEkYw)Z=Z|=3{CgS(jWCij{a@DR1Ojm5|$z8}$dbMr&sYIkOpY)N5%K+#G99u2K zyJ%qpdzwA(s&4>Jjrfdm;H5i9in_5*M8Z8YMrygz3J~*Y*V`$dwSs#$M`-u z4pNT`uEtLFE}wq<9(H=#I^3EP7xAa+2TnE)q-L5=+xQ75#)*0>yC&Y_ywcLLd`PhS zVBGC(r)Tn*5dO0Y*f$}6>#Sc#{>CHwIZ=}&0Zi~H=lU_X*PVt$G%Y}B4Gr*L>uI4w zZ|Hv{tKjkr=@E;4Ewj4P0$Pa$bUbir&FH>dQaqS$Gj{3ePoF$d7()s;&;Gk)v<`Yh z3Zcv8`w4-eoc4h+W_gM|hs8 zo05r!r4O-jf`@sgzn1QDfc7J_7yqRq$C-E(f}K*!WJ(+m%})l>_@GR*RllG=;*sOg zJPP)QX=PF+R*2Ro0|tC!;@}@~3QUE8=eAa$U=v_njo!stXL;YB5KcG6Nb}$;n(E47 z9O~s?V197Is)<~P0B=?7TV68a@>KS<+|j|-wn)j`b*?bwREA16W@D5x>w5-g&q;h z!O88viJ0dGgVT%z>5C*vTclQyqx|&DxKFGbMp478W;!B{!_3S)ypSvWj31V^x_Cwo zD4O;QM3j^4)TT-OP+Ln|r*qp_$o9{=u6PBj3r-r5$el;++uI-?$Cmy%7?cgL=1ypN6Yf(MpzaI`>e24x73YuM*iB_E zHy5g|k{cFd>r{UK5Nly>1FWSp z((#{79m)5`ENJ%BWs0JtzJ9eXQ&70Fy;fZybKbyC>d$WU?-*8;&UPUVBpD zoZxx~YALDSMwG1b@c7mD?Cor))4P#6+*-Lj(c=`n7OU7g0?2kuuU=?-kc^u&{TH#f zc|6hE8SyRg(d*)^hOqcOnNq&o$THuKD1nEL$s#&uPv{6Azcj5B!Z_@Gyosql4PU?X z?Rn~5Z7I}W((@@hXVK_s%frF8+)uxivQkRlE$$PT-HF*KFt5+C1m;%O6|iRvfI z0P28)m3@3O8vWViXIn-L+1eMj7ehJH9sPFg*hyl@U;h4fm71dH_4L4=_ufyeg~AqI zKWLlyUUMJB$nD#XJYRptrRKb#}J5cDA7)^UMboYZD7tTs4~B{MS8h?lA0663F)OCLO7+*x1 zubVI+gMg{dgS)U%n+ENsc-&y&pVyLCW12?X)TFdVVb|FT{gi+_Za9AN6kduh8uB+> zOxLpD8Pz|p|v*8OHB{^(%Bdmq*@pBh^qc~H(fDkJ(qPMgM!BpX?HlL ziFk3D!i43+gKST6OI&Q3L-5JoL)9&Wot~@H@ZQz1Pvs_otWIf+TyDAF)q0t;sgooV zm664=ucv39%&$u>nXf>M`u%ER<5$@OxP~@kN4>5F9&0Xy05*N8fxNtC*%^3Qp4+X- z*wK`n^P7%GtRME;n|!ub-TBC-I3g`g!cKs?ps6$wmuzSMY#w^{40#++yAj*%_pk31Q9 zN=UB!*gS~>fNfkP~RG`sq=?u}0d@fo!t2lPfxiRctZ_I^%+4MJKp{;Pu?$jV~dYjFrqvo4y6#d3cNEMy{ z+w?Rzu6p$xpV!nIdvzDGt)ek z@M^++4o)fXvk}0tMjrd{Y(&VAmYP-!5pSI>(&%2P`FVm0!Qwn)i|Q-$LBE5YG+7Zu zvisuP8E4y^gHl_ZkktZ@k^O8yR-~C?rHNBs3ywFeU~ZpuWqsIr%(Zl5xE?j5=)l`{1kNpt69&vCzFQ3hA6PcAOGH3Spex zh(=XYyDlpQu)3dLd|eCoyX;rc>Sy!gnFn|tBnQFm*H8q(tntl}NWU&8JHlUzv*L8~Y$|RA%nWLB=i?$Jm*(U4ZPUOIE^>)^=|jNueg*t@ z$J(S<+A#R!AJBdgciL30yhDP_elMGq@!lT!ZsiFMZr?y*V||jI9_VdJ1S`mkFH^VNqa<#?=;1vESy!Nm&@4P*iB_%tee}eR>@*S|}w2ht63!p_7 zmv8dBqGnFz3+}dIGsb&?{}3+M|@0U(!H+A3@yi(D*^K7 zCsP^2P^oz2u_+ZzMsU4}uf@7R;Msu#;l8+_*5Z%CRAV@{Be8c$zcrr}OP7Z~*_~=e ze2`3q%lMkw*?2471CI2AJ7B=E>jbH#OGs+DZQ-0Lzs&_7RDDfw^eIlg9Wqc_fcR}Sf80VVeaWAo^F4StGj*ua&N!IEWovr zVDOBJR2O*<1{PEwxoEYcDn7bds5;UA!-RVh2Ux)N1O|x7hp`>n{hJ zc2jlx{@`Y$nI^~)g?sx(&IS zSsUJmPq)SqOJmbyVAD!(oW+-81U=<=Mc1pW7!QYwF6QR-c>yif#-jhy!-=in%Ul96jK0`J(dm(&~V&cB0POTr^`5vW3^T4S_iaj{fWX z2?tO&F9bfkP`{E>6Oe)|=#4}k{!=En9PTxIX^S)_u^qS}d0^?KM5yir=20Js+`G^t z=-x1`-*&|AxL54JxfDKL`2hZ`#weIJTqRH&;Dpy_6=lEWxEgx5`mg{LS=|LLQimK16?@jrfVx8TbTEO21ng=QQ>&J|qbf z@(c&n2m1E(3AMq8R2ew1wRqQCw(B4d*247lQ2qicR2Fu^miY&wUnp#-*WKj`i+CX2 zEt5nV+t}!u7eNN=Gs-~T^7rwKbT?8s+;{eWeYV!Zv!MX`3e?Nj^A^JKkbfdF#S$Ia ziL@K41Y%tW)oYTBjky}T!>5hep_fljgPqyW&lMBDyD8kpL>!As6dS1BT2X_8Hdg}V zSoRyIy1-(Lj`QU;zeSBKMUtI5$Fc7!tfqs;oM=1J@iO>&nQ&sfSJlG2T5i}kMtQWx z%)nFOsX-{>gF-R!m~rSnZzYs6W;I#D$VbNIYKKgl=N!!B37S{|4YQQt5McT4ea4au z=lg4CWEeRRDeffzH5eGV$eKlK`wmPH2s%6gTWsd%iT#OraSwN=G`E`+7G)NQ{mR38 z>KXEtQ@W8kZfV{%C~hgcCsru~8Ta$%fZT}nmM{H4laD(kj(}g94vtRxlUp2>|0Hq+ zJ^%Jy94h8&%IE9N^}+i3yJ|mvoHnDS_1QZkUCnYBDN#svxv3z_&~17gIiWYS%Q+g_UPAFfqa9|De0StoFrP<|*CbTAIe_tVga9s}Z~!L{+iyXdn8Omvxb&fvzt zyl%RTC+3g+iHAbp(TO^%xx!k%HK!WniyO$vQH{fD<3j?TfrHE6*mPM_dH=Q$^7YBp zS|czh>xKS&j+9de@$HOpM2Uoe$%XUr6){K{aF5OzOsrwb_WEc*@g58sQGoRa9l|Nf%ntFI>H4ENn$I>jGf=1S@B3|V+{#e7qZF+ zM<0^#sy@e(07gFq>nHY1$(G22-sBr5YR;1E`x~tbV*Gn^UC&AFhM&BL##)M;lh*K{ zt3*JhT)vt57s-OoS`(nWWrH*)Tff2D_?EA2Fi_!FXk@&zkMob!^Rnt{D4FGQAA@yw zsvBXUM>Wvo-audQKB`Hmx(`KKBuUa)z@KG7OP?d9ebgmnef}Kc%=j_R;fZ-QqT0R&?k{$;jp6fE!medi{lt3HGFJVTC`@oxMb1;Ua|Tof5-eD{?dle9=h zQ>p!ii4kLm?x3`n*cY=vpSaR+%2!@E^>T(>H*vWzHC&2yhdx;0ZbdaCaFujrVXL?7lH~P*JnI0iEsT)i_Vw>^9(vHeFae#yEO{`+gPyO`La8CmvP|xX@gH2n6qR;VGBFCANkbU-s(P4s69 zHh-gZrUgGosbrYnW^29BI~`p~N)D#XXdQkg!#wAc|D(suTEf8qN2(c$j$kzOa6 z%Ap7O$W*V#O;&{}BTv;qCd|=5qeO<&?qKZ|J2-hYDb?<(zGKV4bStO%h=zIWExY{> zCo|EFy})RCD&8Aa)*hWSJA zh>^M@BqwOqNS$S$vK#(2`oUrNu;AmnWgBfw?+PYvZ5_xp#rb)z<6^p+#Ah7AuTcUL zzb}w>FFt|I{T_E*voE=5;_QCyaIW;;7`dvc4vucO{_X7$OnF1j^uS;mmTa}L)@EJI zTy$EL0(U>$TuzQviePMb)@XJ!yn;KPY;Sla;e^ooq^RNhD)FcZK_LKFnniE(BQDQ9 z)I85yT*HU^M7*HQ;B`M~eD~(knz)}2!I$d0<6_2b=crT4)f=a%?|oaI(2rns|AIS7 z_nq3j*4;Wq?T!0@Ijvq?+BLLg-HR#|{M`RBmaw+h$ZvitmzDx%J7MVj$$w4mo{V2U z$|M~`5rAeSeUyo`S>BAr%ff zeg1Uk4#oq;ereJ*&dg8R@PYYQZ+m^F(90q>-q!p2bOo^USwbrU4Cb)d%GSE6~ zeH^1V)(OVWh5H4Z83eL?_)NIELW+b6dn5UI9(aYZUg5qDSH@ZFbM-~=Ya(v*%a-2n z4u5NOxR%6Xo#W<3LJ(EDz;ngc@-=W;ZKQ7Q8zP|e+Cb?K2-vUxVsM@{JCfW=sfvI3 zLdbD-Oyr$Gb>9!rOxJ4|WzQP+K+SD^_^opQZLsVVuCbO25ATJi-IKT^0f@~ zNx`Q4Kqzat%u5+u{4l6crj7%_QkS2^Urk(Or+CaqkB7@R$taVaEcKA?oz0QCW#oWf zT+C77SO&F9U0km({*j{j1kW+TCLpjYTPdRbV92c2Wn|b+aUb_U0f^92s{#?!8+p)> znl5h_EuwGu9Qn2}_y?9OSS49Y1NJBjImNdemMLdYy2fx99~Rm1!YyYoH6#ZZ{r=_~ z>#y%nw+BzhoOqPkenVz9u7u5kSL%;&PuL-~=iCyrS5VHYnmdql*YAy$-e^%S$ffSc zgJ>!7R5{gO8?lbJu*i1HFFsu(wz^0qr;m4PZ$6)g_WO!)pZc_428MigZM*8f*wUyu z>zJv~mfx<&T}4*xOmHdP1lV+&!eTS$$Ek{?Mis_aObd`AY8CEEwbaQBzn}Ch}mKYc(?9lit0>bfinzfG`NZMQKFMyA$`|4Fd5aq~lNzia`XHghTbMbqeq%WWOH5LMa&AxixScb}C$*d%?6cb~;U|f|aO>1urq;`)_L<4Q&{tgx-_v*AA>n4*Bm{m0cxm zj`P>Q<0GTWA1C0LrU9AY@R-(5N((<97}B1uq;N6?$uelMfh=WVv~`wq=M zp(I!o(H||oa%ytvBkr)tFvok~vWn|p2yxeihjD7+QfFhUWcmC0Z=Bz2;Cam$KkI^0 z#m}!^hQ0TVtqE?F+*4!MN?Dk?nE2?pbp0{>dSR|p!gcZH%P+tZHDk$}ZP-_c^L?VH zDc{1qNLs-l;T0?i4|gjTN`TU9tuoCIuL&0X+u`80+n_2IJL}RIW;@7Mm-TpRfTbd} zUnn(kQoxG=$1&Bz#fZv#aC>-i8})Osv5`6DR+QzQhzqEvn!@=-`0pNlce3mxd)H&FF=OgX8uP@=^DbR<*&fqixUNAnuAW)(Fd6nz=PQSYgdY=g^K7K3#x zi>-tx=3~uk__T0i_Q5M*#l|UcndDCxRPrbN(KqIOY87<1aLv_Js?HuLK_U`drz0R$ z_Z_?r7fL9#B#qQB|9FL#lm?w}`BDVtuzC8WCyjd869HORaF11G+RkO@8BpFforcqY zOh%{LDPVyjqaxmzFTM_Ct{iW zC0xBG$ZtDtaiUeDqFHP7`e+toR^%odv?S@eqjYxc;z#UnGjLXIZEDB;WFz1uvHWp1ONQR$ySaL6zT8@qIR@4QG1M80BE6lC~e>$sU+Eo+{>X< zc(ZQTn+&1*c)L*~LqETXf_Q8Ox}{&gqOE!))-{%ilxEj$I1N@bXOuw|dRSGkYiTuH z`!+w@hGKv+$m>cd$x}^s8Ncvmu@M%WMJ`S@aCPJ*x7;!M_?e27Xb5voG&Flynqm$z zwi$pZ@>xST`vhe{`rN)0#W^9A#h?3CsLQ~~?}gMYqIm#IGs@srfEEFug~XVQaJ8{EQL3 zeIH@V?Mqp#MP8x|NT@%EfZS~ipM_q$1L=N}q-x5uV1iALp_Ygg8tOtUMDywl4Vv`p zHzL`qW}%fyNV(MA&!?H&TgF4v;7{)h#>j?v=oHd*Kt4HE$rBiY(6wS zIZmVP%BEkjEo2Zc_sn@3{D6jm5L!uKLP=}TZ`&Z_syc(FCIRgY)FaKS?S1FE!RT7s z1M#L^R4B$@1@QzZ*q59^sxPRE5uGm-oe%i0?uQzT$`C@1r_^EK8_f|GDDMUvG=#q- z-4YQyWq6@u_;{hf%^!RVh@5#hSe--em84sMfIui+I=bgVJYUD5=p>|kHHUiw$IK6u zVu6NjJ%Iy`VO0D;$wb!y1)k}QuqXf)Dui4k z(@j7ja)v`X@}&E}j0KzkSJwyUtmV^C8j>UYwpJiIn}t^uf&D}V@&1%y?EYzp@rlHJ zZ-J@AJq|B)l?+G=sEd4HG`$}B9467=%{L{K!+;V%Z`?=da{FfFiUI zKAhMp+B8b&=X-oCDkzGoRReVbQx9wZyzESsW@(GRx8IKykinm1+DJ*86#(0o=jxC{*t?3ac^nPK>rmM)7phk^FjH(GDkbqky zM**ENYJa2D@_mMYqccsfC25+WNiqWll%S7GX3_2w^)_4u*ZK7_56IBTl~Rboo0BWw z{^d`f!Q_AQzW*b+@ue@{dnE)MC{lRJqA62js<8MVOC{x!dLvhZ(IDdMj=+DGvEMJ- zCp@wdl_`;rzS|zJ=pt~)j;rGiX{7YhFH0Dx$aq#bz<=~Qm$u9hM_GUo*7AnpX?csS zia`f{`qengnt?M9n@kW`3<<<5HDjJe3o3R69J8rEs3EX~&MMl@$(B%*0}a`SIp$#X z!uq~(@Ub@Hf6Fu6*F9Ic4wVPS4<9hs@b%%1_B3SF78*Je3ajy+H=a#JgL{BsAOZA0 z3Eo(yQt$ZB)^uVA8JIhzc{NP1K66&cj5+IO^O%@dZ3UfEj*m9c7&4;?SaE*g?|^#2 zBbuKm>Ix0rb;@Z$>QBIE%@Nl4Y*Y>fxmtQB9>`C;Kt272j0W_(kqh(`m`_Ia=3J8b z%f6RA8|p4Jq|%MUOQrZH2p_@#^}4GS1nI>a?Y=VX^AR0LjJ?S^VcW6!f?$*_*X5M<#g(bDq32BBFRbWEP6~9iY>lS)Kq_y`SsB0_(#7 zwqs@;@KxEsNJoo~@}FGqvNNIXNl5S=T>+^(Pp6-crWohg=BEm&l5DQ>BE*0(Vg-yI zn!(gr`)*bRJaVX>+^)cp4(_Tz$h?9Uq*`|Pe- zq+0k*nIt~0c42+ux~6e|;POxQtFcA3d5#xtZPNY2;QJ2C0%e^3eTkTjz5T7_6S5AB zoh0@d0c4om)wS$YQ|IJ}r#GVj#zWO1f(~~rfI0#+TWrU;h&uV>ve4*;+wYy%|D)z! z?=ER1Za-h;fxi1-DN!y+op|O3hXy}GdgFIKMiVjq7}XW5I(NCU25CFbmFLJCbDe$> zA}b!^JzPDBJiN*NKDzBDA9gC(7#icPx={s$(Ibb`Uz(!sa<~#}&o|;1x*PoVS2pV6 z7nC5qXg+~+Z5+B>-C@>_4$^?FXU)gz&skrd{F#KU6p@{-U(WQ?p3N=v?mGp=%_;h@ z_w|yChPnN~e!rAl#_dnY^SqjGX~LSCo+^2dleEjE9+_2qd}ve&{%hxbuv!J(@}0@x zw(7g0A&(6gDpX^>d>h0~f>5h}h~Cr9 zP${=v2DZ1}f}0@7&<}Hq<^@~XN>|~P9W*jqy=w6ZR)m`>ifc`wF+(3!*C1CHE%5y# zMoYIdcYyr3$2?KUwI+Cca^#Fe?5X{Kz`LN@e!)3%_qo}V23NOyOPXPok5L|c(Y9y4Kzll%B(6 z%rc_V4H|Qv1KU6N+FSmS^GoNIrbW{+j#tFVzle2(>HF*#RpGsQ{`J842ohWo>W z5?K~k-mcWnf+50tLk_e5?qns(hpkJ0_@b%HsS_@Jm$%^yoxc_cmOWr98Sk^}ru0Qp zNzOI!>GqOj&?D0TnbKJ8K=6T3K0nErD^IS!yec{8({D>2rtVXkv9< z4{M_rd^|}D@5@nGOfLVbHwX>U;Y-TUfANnWlaUygxl%5cveiKNPcI{mIc;xziIXEn zeD77br}bCf<{X~VOs7mw%TH?{CG#g|Dmz|2~Q27FqtMc0Fg->LwA?iG0<3t8_Nndc3>4)ah`x zwN(Q_uv@phdN#Z~l2(j@K7EEfiKK+z3pO#SGb5t5IlFJC8~>I}tpA`&j8^ecO(N%A zc$DR@M#;w5cIETI@3lj{W?|EhT(BR?$(FVT^d}#J-vSWj&ZZR&;&Q&S<7Z&3(_YsG z$SuXf4tUwLhxr?r4)C$$;Za8s?-RmnRJJa*Ji?Tx{w+^b{oNg1)mPsIxy1wjWvR(G zlJa}WV;DpE zy^2Jl@7BgEs{BVps#|C34ElglS!EO2GOU!fIU^z?+>Arw6$X;p$){DDNOPRh`o9=G zn@;;yIBs@NO*tXw=F7*2z49fSOmiIGj(Xf_WFKwb=q;UZN^##Wk+S6yP zA(Mg;N>lrcq8S9Xb?)4S4&EUzrfqqd{cF9<8jRqZ7WM4C8gw*i`ue(h7zdN;4r`r2 zO|AcWct+R*GKu{6dVH40*oVZBTJP0f2`_P{Kg*%i;KCYuaufJt34irPnERUaB+>F> zu|8XV^q;B%Nw2*7A4>^9L2H5`00a07@#%w~fo2C5Wwxjxxd#-&`6B(bk|j2!|DCPR zvPbv1zsif=tvZ%GOugR`ik~wyO(`}6dy`0SGT2$fbLx4y4-2^r-(4DxJjLnBnCI4} z2Qj5R(iEWj3_Bz6?{$dObpm^;?^aXhdw~B%&>v5@t{x8F>3|i$_opyJue(*K6x%%c zq}qBkDaDUuwT!cq5Xt^0{}J~8Nq2YWP_~TdC1QS(cT0Vn;B<6 zp5VlFX6spI*^;UZaEn6Da=ES%QyAgsw_i)8(<#_*#?;^Nfig^pjN|A1&-h@C(HzfhhJns$>UPNEMloy|Ku zvPF?3>Q4>zT9rPynd!NhycbQrWF>kSk2vSPk7wT z`UfVyfAeo^@*ujk&gZ0aq@aD5+d)G6t-3rBKMoV;XpVa23+v`B_9y;-39^sA{p^c0%*#+JG@RFXnGv87Xo79Qhj?>j8oL8p|Ex!#Cm*ews9`?N zIUY(zKAafPp&!oq(C_c#DzHFac13P9T$-QkAIM1H|B5^T5vs~kkQZJ-_q?koR@*d2 z4qil|0hjUlfl2cH;p{eXo(I8LVl^dsjOIg1 z>JkT&$4{-1ViVq~;Y!qlN-KV^>;k$dxQOahSG@=*8hF#TDo18x!dY$NJa@C-&_E41 zl%E0)<<|j2WFFvlKyr3tPkNwtnk?~X=#rHnS3SA30Lc@{3MsV;`ED#|sLLtJf5BxD zO&0HD4P1sXMcDAt7u$r0oA{ataEtPjatB0bRm?ep$u&lb?RYm{+J)RR*)aaUBH!qx z$~lMsi5x`TAmHZpftRMG6gsy1qFS_%T|h5BtqmJ$yIW>Dhg%NY$d%j&y{OAKPn_I5 zedxHA8v)o6&5HUR{ZjP7{l{QR2VsAbwBBuX=apOy64Lgjzf`iJ-?_I={x&6J2e5a1Cu!X^Urk=;7y(Fa2% zY3yb;A>6P`zyW#BVo<%(^TcLoGsJg&2qp8@>zl|s(KWOQtU&1ro%0%uYW)Z$6QUUA z12xvGc=B#OM7X@oD%Jn1c$Ab#3JTD1fV-F)?V*@$;Vi>H_&0b>I-L#BB zrpovQh;?GbaMq%nya}MXnMyPP-zj8#O_CApRu+Pc!YD#vO}=uWB0DKxllX$Ro|gop zH1-VO4?;a(6NU743)wELd$;=kaD=1+~+p65#-#pN4Ff}a~m7D`tN zAuJh|Unw*4@rWQyxqOYE=7g9$&Ec@h8xnZ&&!vovZaja84`^N#(7Y)7q2dmxqQ!5q zOC`luCK_4d*vo#cPHL+@!Hs9Pb5BnP*Z!`@W!=syKyD+xE-qXvv6%ERVL%h^xSk1j zvCV%i*=mQKu6wG$onI=ZP$zJ%P;mV47aGvCE%=lA2=D+sGxDw%MA#0TE)@J|xB(E@ zfa?Ll6;G8(EUjT$4nphs!~>=T%m>fh8Uk2f8#5$iF&#RPHN;Mav}nGko%}h^m>(`v z*@pRL<*IEJ30*Y*4Sjjc1+FWF@&LS#Iet^bU%K3J%YoE4=m^;d9#C`fGwEa|Tz;Aa z_<5Q{VGfM%Z8BZe*bYgK$36aD5?lsE0@eVL_#vzX_7Zx0GL#G$We!dPj9TPjezoW+ zEo=k!73%$3B$T>m{8*wZ_cfHlyIX|T+n6-AAv=gkZ7)UObo+xF!YF_F(v$(ct$P$Paba z;{R(gs{YP6=KVhv39=PN#83!;4;o^=CmYU&ls&gWFxV^`xiO#v1k84WcZ}`$IB^FX468&C;_iis1N(%96Np$vWL5GGi zIeIr)CuO^M^Szcsh;vs_7Dsv;Iji};vGg&rIg|ZAOnrGgl;8V)h%94Yhh!ZZ#x|5C zW#7i6>`Ss_hG;c}5ZMQVG1d`D_7I_@EM*;Q*%Ctbq%a{nztj8k`n_J?f6sBAXP#%w zIrn|t*LB@M_au|D%!T_x^vv{)m0dwJbo-WC48s0&XMB9yD768bFV`8;-sKwoVvkST zwcx$fk;eJS^(y+BS;`C-Zkal0A7h#Z$#}7DUP;)Qmr4PDpEoGl#brCBE>HpP9Fr7< zZNu_-ww}dxpJjrMo{cSAL?F8DO4)J+dhnlaAT0rQCo0A-B&3e5xt+I zvyt;U9p~nC0@2pU8P8dxC2^8P8YGyg%y6F4&Tt-VFjE-9P+QWFf#iZ5`6oceox%6+ zT$QcV-c?={D{{Tn`1=n*L>pIn?`>ian_<-lrM@o7B6G8^Fdw{rFN_-sKzK%6o(^L= zvPhm>qe6{%0FC{DT9l)BMkF~sWEpgmA;D4HTE-d4_~)1`@NfDS-pltQ+A_h&4Z%kJRpKTh)#Ab zgv|l%V=_h5n=zfFG}4`&pO72VN_kea?gp`>z#}*?ju9LMmVTJpfsQLJt{A%uU7tau zbr9xw`yi~nz^Y3nKS3n6l~VPBqz;0!&vfL! z=rmuH)@3L(9UX}eO`_v-g+{(uYeeg?>y2YoU}k7+Nz7dqJ+%a z*UsdX zxOt~e0cCbL(!hLi#qQC#MG?#tTgJZpXDyKCde>=CzP^4xhYoj-txjF@TX`k_J%zOp zde@X+)Pbn3UQFrjc`?@`IXO`TIa<`8hoO4?{`XMQR>rZ%K3nAF>M$dIsfZM;rkZP; zECQM>y1f&v6CCwzDet4x*y3E1G`;J_DVQlV6)~s7B+>uuBuiB!TqkxsVut@sP}Qzm zav{MW9fi<+mumN+SQZ*5>apdLITsLEwW~)ggy^KB7qJCf zZV&>8;1RZ*}SVEAwbawUSg>5_6g5q#Mu9+lRVrL3W;|xb za{SR(NsodbEtu|CR&2Uru8}7rVcd}UawkZ0bus^wc@7@yG1TH|S=iDEEPf{q_&p%! zQ$q;NFKa~RWU|c2y&5*CFFM_d8tbyAMZy&5MQAA2=t_sRN)D3jS3cXBE;_sS5#rgC zF8JWSbO-xQzZ(RzB@~0OEbND+|*+@sz#1wNsnb}D+lM>9q1)m})2{0ju zAeT3#KpS~+e)pn&WF}%F2jEM7LJs>N#w4BCqW{A`a*U-F5%l{aO{6Ty5K%mDB z*T;ZM42l2Ti~D58z%6`6>SG`W)aDBEBX|wfd*uV#YA|DWPGPeudk*ndW>gUm#k0|R z`W)0w8%2bOYGhm1i0Vi4rV^xxH5xB2-BRQ*V zW%94xt?B7AX6+vuPlm+^%Rc&z`S}?h52s{=deiKnq*y7!kA6F+@v2FzZXK@v@j85< z@AuG0Z>{Io3VfU;`O@j5urFo`NK1}sablGgfCkYEk z=EZW=1hwNQ=lA#G{ytBiYFUvLpdQ@#R9lFSm-qn#OGtf94bK~I7L>35VKxk|#?74c z`Lb`2eSDbpD8V3T0EL}7$48J1xi;T|h;RthsT5M08oje;!1ue|qMKO(Xrf@U85l*6 z#=C91&UMSS4z>KUrHEk1=4zjp#(8*^@Rkzj@=HiT;qomx{FYQov&Bvp&yJivps(G|CnQ&&)b#D$ou{fh4?}jBk6it|YByvy z+uT@3SfH*vs7M-fF^T>X4wk9{Pnu{c)+F{V)Dx}dvzQR`v%B<=F;41|nO$VzWfmos zI{`OKY$py(48>9i;!iQ6vnV9-4Z+hS+8y$VaZB)t7Ue94XxP3#6bv^DaGHe_L;Ko(q+Zupj0G)F#B3`{W^=tK(-OS`enBQgSz zC8GmI&4$5W2K&*!p*PVPh34+FP7 z>!yyIU2Ytu2^FHx11q^)=Gn~{dVwS2g}pg-C0yvW>Eou!!*>C%E;;&D2OPC-7Z=h$ z4N&n!uAXgO3X#FvIv^?9tLEd&LSC8w%yt@sHe4V1?EQR3NlBD4Ejm+33jA;~i*xCu zAWId-v-DIgks^7``1eflA89%w^2}q!*{uwSHjw-q&wi7eKcF#&gW+IENq7J_VA%oH zk!#f34oti^z75Z)WU z`&^#C?nK0sPF2t^=m;2%VrszyqFo+jcXV5>F)pw*S z4yME9mYzwGMsw%0C}XN`Y6~GK6zr_n!^oX^m?hVI`Ilrh{}r`R6^pK$1s2aa6{GPz z0)x>?^Mq(l^)lD_EOLKpub#|;3+sRGb&u-cZpIUb@Q106jMc!JU>|d zM^85PHT&kL+ZzZwzYD`3^J5S#$YM#}n{3T@KYu$gJ?}-nKHN=WrO0!5AHIvKgZHRbhJD%h=-w)6{qk0!f-)0dEYhY^}Qrk*NrtRPt49hTPwR^Lknr<6wb(1 zG(PkAUBg)B@0o*GBMBhdc^Uv*x-_d!n5L%(+!Pj&?_2kE*)S4LAZQ4}eu}zwXHQEb zpuVCW4_w-IHL7+c5)BPcCvbTamFDiVP1qq9z!CUCF@*{ibqXaAR0XkG%uLF&tk>+2 zgW6^*AMoA}TsGDWJu&42XWyHP#_P6;9NyqemzNv<{7w;lL-YFAgP^N|(7P(#XLu~4 zO&&YjBj18cw&6D(+}K#t^~8Q2kkL7%rq{LxiC4@P^YC?}Jbb70^7(RVS4qD0b2f`; z+oHWRSS#CnY9a)B#i(OMIY*xCQ;X`S+0_((>D)qmgSHntwdqQExTp9sXZdy)G2i^g9TYB5A4yVAo_nC5FkUVQq)5^0IU zj8|FpH=Ly;hWuzh6p0^w|NHM@lXRrl6)6bC{<>){mWQ$Ug_GeaQ*7NSo5rTe)|Y!2 z$H&Hmqx7*Xgf)y)CPbT_87(yO41Io_EAnD%&Z77&dg1N>AWy`0>tfo%z*{ z(-YFrf;QdhtQMZ-x2mkAQW)mT*FBOaJy>V#*aW8Z zjHG>%qT&MwFdu!uR?)IZAc-q6F; zWHkTu>2Un5_cVj)y62K;9wnY=|4F~}$whobph71R0WBcngbC0GEywTEgnP#zW6k)MT{#^*551EjVpZ?t^(&~$hUY?yW z<>8o83C?EPwm-Wp)Z~esczut>X{MI zNg_yU;#}VuEp9qp-TgD*M2r_4x-K>uRT+SlT#)B)S1jHR@5Kh`$a|xs3atdDs-BA; zRd6`s3+0%OO$fX4chPYgJHEEdIT6A|19hHwoPf|wZ-*-jred#eOfNd+IY%p$ zt@MMa$}8qX*9Qx_VEF0XA5jR$8yyZ}5y|4g8ahO9TJp_-4RpvKgPhXC$nkB> zlSl1c)x>2J&Z!dxqD~LH96_8@qbL7$tgmSpV^7&BV00dA!3Py0_+7{5ZbrVp;D#l< zfB)oB&8KRj35v6+EGqeNJq87e`ZF_wSuQcE`%<}BICmPdp(}>7`68mFDkghiL5%-#7r@Pp3z~R4Msh)<*!60zuR{GnbjCOi>S4Db0WSR z;|Lx-kD8JA;3k-80l{!PU>b9A0!1%4)sXYgg`s>ZMM}^_E2^A2L7xCq=9(w45$f$u zMgPO(qQ$LuETHsIUtvTDp-|-&4?X!Nzv}l%WDm+v)OzPGnEGOglm)-!Nd||&@Pz_L zP&JFYR|~K=+b&J;^|}dpl``?Al3+uLGEEBr!^6US0ETzz&a*<8omn?1X~|%d8SDR4 zrk`Nxx=L3c5oPlb>&X9EyYEx8N&)GWVIhK5%=u`G^Sdk*E9$>V|B_%J_O5)_HhdV_ zT{0JROTfFkg%)BDuy;pAKke1rN&yWy#CmN$Q;N5t@U&Gc-qsG;4YDPHO%uxDP^13$ zTSp^jUZa)0u&+-cu3+2hHF;U8fz7r#qt;>4nWZwQG^C3HCxC$b9M) z3-rob;l*XEYD}Ver)rPlY+4%nEb!-4n00I%J-DUe1-&^;y^bUVM8Wcz=gX&9`18~P zD|a(ML^@oOmZP-J4HG{~E3%8kqFE5NM=bp1YI~Ktb*;n5F%X|CVhF^?uP|P~^DP1@ ztLl4wW9@M%_N{rR{|8a7&uIiz@P7hMp+{d2b`9k=5;U5&=#w8;V_HB!6VJJ{+`h=J zE(pb`peQuWSHx!>OyX+ASk&|B^!f+Fycf{YrVJp0yiY{*vN%?gmKi{4KZ;PiHv2Dk zBAn0KF$CPnB2qnoaOwbrGch|(?oWq+aW*gxs@PyWseSs(>Z`Z7q7+y}f}y%3Z-)RL zlOBD;HT{C@{4+L4?&v^R-+c`)2|X|?oQ8qs8KP~F-~Yv}~ zBxKq@3W^4J9O18!YZih~EU>$Q{};Nkfsh`V zCa9Og-xYrUD0TnpJxKZS+}tmlD5)<_BF)g_9N0%Z9x}8@2zp_y20H4}6}c26{|nm! zrRFs+a<>5J32GoTZP{YnW`TU6-Txz*=(A}|NranpaLe6||8VXp0rIYcTdQL*(=ivQ z=sxM5uX$OM7N#HnUi2%wc&x zHkYJc%=xBsk^iEvImY>NvlpF#EEvlW%i7PREQ~ZwI0bJn5A|gLe-EW&jX0ZV_B#i_2sc|c4Y>N|a;ZJjYU(_{ zbnhsNx1v{Ke5Zw3|Dbu$jWb;bmY^NchGFe*?th-McECe2GA8! zS>LF8Dz^!nLj4hQ-lrrY%ox|*5EZCzVGglfUc$&DyY3yg(l(LeyGp@DVs9!Ze*doH z^yp#)oMfnyy@y_rxG6afk#;DxnYiok@;DYV6$aS32+Bz%XLPWz$Uk0mqx0Ie|BU%k zroUVN7%&n_p-?c;>EIT;4=RS2HS=`jRr`**=c2Q@pItfAwGyqq z=5m&vJnR!GL13R%Tha0gTFr(te)47WG!-s}m-ic6hW}jrWRZ?EweLt0FpxY)HZ78& zcuFN$!EWNBc|}a2&k=L7mjq(b3nY7HTozKolu71^D-#7}C@q_PG^d}KtRsyBMN6xB zo>EFd!3|F`{3FU8CY!xIr;?cbvDkaZJYC7m>T70l$;kwBPq-WMtbKds8*H0;Y%48- z{d8Dr`%K^(?CpmdgSGQ3q2-m&`j@7wt4W+)G9gKF5>A#~-|6b};Z^#*Px=(fwSj?-QxwbcvNj2q|(WJx*7oIX#_xe zu#4oZEX5$gv;U@ZrabIfWH+!u^4PcQaq1uBG4i>N4e4_JzSv456V-a89*K zB;fhjw4H;|vCgNCvXa|YqOl2Zv!XNC4{Uf1X>}C&ZZQ3$uPm>PKx|8Vkw1UT+LkDC z4FFaQFmx-XnPWrTLc1cTf6NMD1fVK~ok_1!rGNxvQ}r$-M=7UQ`Q1*xfMN8x6!b;n zkkcC)OLm0p0&0=}dT<6rqCXPYM#cJ zhg+3w*}b`UeUXztQhg)Pd&N60Nb(&~f0eFlG$6D0*J-2XAF zTBSJq;0Zwsgjg)^8I$+-7ykzC?@ykvSxQ1_K+}9tRVU;ta2Cq4=M7{gwta5ouH98a`zpvNtw<((lv?uuO=6D`4%_dWYp)4 zJH18~RXd={x&>2*lmsPKr^DYe_LPy@wO4x3p&2!m7WUVz1`DfEQI0pbX8p-5cQb3o zoi(pN`2N@b?*l|xyu-NlmsiB=y0m^iP&OYM7BsNQT>n+(WW%4Z`Jy~fUHC0>b~lgc zXY)*_!vG}%x$SkPyg)5qq0{IuV9KmWg)o)2E7-e{eO5}?NR zMVa*4UzYc7Jy&1TXY)aE-Q`C-4c>e{^s;h*V1J-Yj9vod>}^ zmL3H67MF?I5=w_#mz!^TSW_}f7!}4raMOgj8VODn;55n|pQ~JSmCVaKgT2Je#hHbU z2b@rw+2~si#m*;cWiX0Xk^Cp%6k-p0#|<&&6>#!-?6N|@2YTHyT|+H{fG}b>M>h%>S-ue#BU;tQ}|2^#{6FeUI3*HhR!_!vxA(Ex) z;Qo}Qe{qosa6ub!-==Q&Oa@L1{q|$eO?{WE)dR<*Tb?xy|L);wn5|_BY(|y(?|l_m zQgw2xQP{TUMZSTzjPfbZ9*eQWS7m$Kwe|;mOd1_KUNrqCp{Ur$3a!&^IN0ob>bNN@MxlbDgu!1^Y0 zz3TBAd%WuY*zn$76?xI?(P34Da)mhiMTbyW1ku8tPH*a9MeD;g5zEGAbg7=5KI%2?{>9eS8t;Mt0Uh@t&wtsH#N~drREM2x| z+8rpnt%(-V!q|X&DgRQBd;t3JajDy~sD}=l1Dwj@Ia}rhiP@y$D#lhQ&QPe!d2HGc zclojh*mlyY^nqWxk=UQ(ZSkwiU(GrZ81U7Rzo zk=0K|>&am2I3sQFZ^c~;-TZ7$xOQtCosX*hbsE;)91qCoVfQ|cs zN4}um8j^!@7qi}B7Nuu8=#7oC%PQB56x4UD;JV4-@ioG-N1(vw@At;#S>+sC2M*`Gie7J$#RO)xyM%V8g zf6gBdCOQ-eJlN3{F?6KL52hnwZ?v%j8j-1e%`fuPO$>##9)eS9Ju=FkAx)o-^#&Iw zQcdsa07WxDb_q&2SwykJ=P|1r@FK;m9lP-_fF<`?RcPz89seO1G6-G{K4$(G50uc>clt9w*P3tgg(pqm zKYTs7r7Q@&uR?ts!CCnV^C9e8zS7TFV$jy#*MI%`L~f}dzucUC#URmd2kZ+S;jf~{ z-8hT4?KX^{2?S);jy$hnLlH>_K$}Shgh{tP5hoR7!_C=!3jt~tI3a=658vu#?=8Cx z5B`K+`K+Bp9>azX(nEksB}HWqxb-#j7pCQbxH&!?uQk{%4gn(6M|?Q1-1Y~`IkIGj zTI!@U{-h&}8_?XGSfDkdv+v0LX}$8}J0aZvqKjqV<=@=yJT`RC`yX|)NZ`(apO8Ln zKS>>=6rb9&r+mDBqdiQepm&1vnZ#d;ye7WUw^w3#;Lx_5^W}hQAUhX-zUlQz&fFr5 zAIOZHIo-BxH>CM1(BKXWNc@fp%nkT*yky=czJ2#%cP`$hga6J!w}5`|JJJ|<22hV4 zFzw5Aszo;5oD(tz)uF_sDEp~$$p{U(*-f)s(Fqb21jP6bjz!-hi$n!kL@{_vo_$qq zH{e5Y*n@FCePmXZq8>NSusABaY)Cf{eH~e4*TK$YAXz92y$;e4G65g;lDiY{)RVXRLTAq$t!?kfp+zg+F4Eq55jMZ_f~ zYOij*_ij`>z5S~Gxxd>HJ*zBKqCAzJwdx&cDDcw;G!!T@V9Zi#xZH-lee{}DmMmMI z`kHlJ`K0*KgX?yY3+Nt*ipL)9sUC2Gp0+`H+qLtniOxEFe_UH=%EF~`JwP$qbo8JH zOhwzZXQ+#kb_>~AYJPdTMz~*L7eWLnBmC{U&^LIsq*Ic$c@n{1THB^G6uE?Xr_xvT zEiZ+tU);v6sD{CO{=ul#!4aD+#-*NNT%g>#ZDz=mQw@uN?E1@SPfACenrC}3jYC9! zo4d0T8Zy(qUANzS9Mc*aa`Yr{cVZ^=(Z>4fs#l%4{B4L;x80$=bZdgySQAY|uwixt zfXn~9FyPCwosHhqIOa<->kzvh9DhpusPqJ%D|zGwTOYz(FDobXg0XZ&s(h31NzTzo z8c)*~>CbOk#0pvbJg_&Fu1Pnuuhyw7OMV?$#A}ziVApe9rL&E7IUpK)CWqjrvGA8G z(2|o0eW{AW6ci+GBEiB%NL`jMvUqt`R!;!x7e|8l5^H?9RSQV3_)Wg2%!7yn}7(Ymef;!|LKiF0mFQus*i38garb$4bPx{fHk zh*gJ-Z76Wk1l6C20?LeHI-bQTO~-pl71LC$r_N4~zWSg0e&_E4rO9?wAd8683(+P| zb$*wJLpON6&QW`$uJw(%rL8_sIcj+Yz}CZs8@!9lP1Ri{pWjj$syRC3VxF0~D^Ml@ zG_WLx%1Ps9(oO1{sR|9qEt-?FsdLjm($CdK9PAsaCvfwBb0Z zs2w(Zd$tw!q;G8Wy>Ar6K5pH$6woqZ+(1~x2R>Q6dT5gcCAg4LedUV}ng zSfH6YiTokkyxglB}q_;`kj5j2nc!e1mA?VLsdup@0N6;k^`= z{;zzj9iII~P3BZ=fl%kJL<-7K$~yQFqd3`s0c?Dh30G3zkkmlu;np}J%3Z=b*nm+S zZr_y+u;~gFAFkIG*{*WNa{0*`!JG;b(Cc=Yc`WLM75YU+*J81W@T*d=2f^1FCBneP z@G!H>rf~uQ;l>O>Ik<6{rY4QF;33HD#cKu#M&i~w*WjD+=Wdi76bo!lC zR8X`~kl)H&?$|=#tsm(Wi%?J6(P$O>e3GqXx`CKyf z%pOh#hlnj`*%(#s}K?LqxgmXY^_S zFh{LnQFXneuX!gwdB!LoarAhdj&t-A#`s!G?XX_ZnBohj#@ic}$2T#X18qr60BVv0 zmL0{79+}1`r)qXH0#%SKo-MXBilp6kdX}04&)As1<1-u4PVbi$-Y*M6i7MS#)q>0R zjGUwC1RVedT_7N6Dsutl6%$1*Be`zXVKxn6YcNo)Vce44m1q-pjU?h^}B)TANulS zj+gH-V|qpWYmuur)80n#>@6KVQ-u17`dcyX;di}*8Xq2a4*7lGx*Jr2yRRDhW1#yp zpir>mme@~xxQ^V`UZrl8eH8KjKQys#Z&!o17q4hJkV9%wdpbu44^M#ITNLab5imMR zW7ET(g$&R^=y)$;b1B|kd*~;_-swztC}I{GwT!<{0X} zU0{8_ji@Uj^omz%gJZt-3^5bUu6DedY11KDQH_uM29+)zUnOxe;cVEA9g9w7hr&%{ zeNxVcD6vX7g?9CVU)QNNR;Btg_m9$G6=*95ES5>X2fq`l&@PUMb#QpT71jpZ|FFwX zMqs~I6Q=j$@y_CWuEzRi%k;@6o8gYvhQ?BqdXY`vP9{HY#BfAp53q}8{5VzLQKWp< zG7}p-z$8u+(RG?ZJzrX1ev}(mcv;%KL#by+kVoG!9!h+3U~doc4W}$<=)A04KIl?& zhdL9&@t>TL@j7NJ$M~+z(2W>HQ)mlfZYfE0mOBIOLacdrX%=~X`hePF(V@_@^H35G zjG;jEa)%9Y7kXQK1&Cp)*U$`3^C)O-F{?cYKo8kz7!K zc8V512yeq^e1xV~Be3h$gk0-zW0d26)$^0FJ-*?}*`N{=20HWLn8cwE?J~vK)$_T* zb1>cTcH2uy1{3$0B*N%Jfwi+-{T_Y2FSkfi?t{n`o)*dKgq``dnKss^n!#R07o9;9M%0_L}!xj%&k%0ma z-7P=5m!2Q1Et)VY)h+N#`?~*FYoEcFo-gFb%EFgnA*Gj`RxKEnx;uK~F#*F7{!OO? zwfqFXuQl=H(3u>_VEf&*6P0v<9O2vD!oA*(AL0j2$v_9g-=Il3>dW#-`B2 zqWSA)6J~Xw-Twfv7SjL$E@+cJ=p`|zrhfO%^d-+Va3P}&*hZp!Q)3KgWhLed*xUHu zwpc4}uRIcYH!0`z`~Aq)Y)_frw!xWA(=a2EzNZi^4XgnZBI#f4kB_D5m*>Zr!6%^h z*Z05L-$e~9J=3nm7Yk7PQwBiB6hZCEz4ON{$!3ef*Mqm&B%GYPB*EFH+A13)+&Fe{ z%RmF_=S!{7AOt*uxk2V@rwEyjU;!%GtV1NH+Wu6?hJIT!g*U$Hz;ht_OD-tbeOjD; zI@EQd!14`Xrs>jlkY<4OWRhWavC)%IRWs=g0H_O{N(L1{T2SgPp0V}Y^z@MyU1)F5 zWuj0;l-z*dSP@U2przWck=jb3wUOGrtbS*)LwGEuYg&W1?Nx|%p4I7F?48*jQPG+`{Co^r- zhq_)Amj76U(o?%o3ul-C={{iT{)UY+AwFEYclz^X@-= zdh3sz!h(TVM56B4A6k+ClQE#Cn*b_4A1?6>%a{@j=sfVNw+4v#0!#@2wk*MyTS^qR zB%zh!en|1L#u}rdp%nN<9%ShmW>Xtm z*|VEp^T{ck2AqwLZS@>YM^kALJ`S3BjkxU6lTP)!qaLZqH)r#=!Bs55$&Cjm_X3fr z88_~B1#9LG#ctYJ(NinSKZ+y#9Y}c%z7zu|jh8Q$hr1&42~T5Qh|)ax7svg6J*O|e zH{RELJ3rOj2(vIkQH?lIW2YI!ozctH)P2fAV6@8Sb(8S z=9Wn`CeTK*tscW=BG}gQx&-L!Kd-2MYj0QpI_+ecK&8rPhzv8x+oQ7oEK(&5rZo|8 zEQ&$Ydb5g+)w`%2RM)g)wZ`K@+4NSI_<>LUwa4h=QLX;=2X+wcCx-R zgC|gBeyU-&tQ1FjCRqX49@d*X?5y6ve1P6gCQZQL&b`=;+PaiTY0osIZRvCAh?{s@ zEYeiR?AEs=m%a zGZ(0jqG1W<*Boax%lsVG`D$cQBtc&b+{C0^uBo z!#Q#O5ig{mZoikCcS>@8!o?LtNxJ=2Vdt0#V|QUTK6lU8I596D@CNIZ%bQBE`pxk8& zuWN@*Ze|rG04#ptdVeNxWan2J)e3B0)``Y>?!+rlYVoQazVIv=C%W{g*jMN&ss|HHyH1HmAsEnjrP8B9w*P?86{0_MNOSUlonn71B|Gpk<hwYi6VUQsUN;K zztv;EGWb#bz8m#+UHuV#Xgwgalw9nAz&_`w?;Xqp=e#M4xT*L$JOU-n`ux) z=Z^tX&E4X1^jH4g4LXoauCGS=RP=U}W(+GLg$nX->^;(u+5j(TDJk>EhX1ySkz7im z!@~-Cg0lG0Fh9`KS^i<&Vv>B>!yT}#+VKTRTbibN&DaFZb%2rrvWHp^V&)I!fb9%0 z#aWuBEaFnj=}q5ieC;{h9KW~2Il4f7zpp3y8g1&ez`+=6jK9)`L4*B&o|F60pVcFT zvD`+A#t|EfIQgppOO1+^1=p4ixLHKNDTSJ0q)X|XLX9YiO9`4UT6_`TrZ3WVA)vG{ zz1~zfv@|MN`z;~L?#92^{hg+_|9Z8lL~FX#Q8kMM4HcBYH0M*LS;^m1q8B#d>1aE_ z;0U@655u^{Pdgq6^%QjoPWY(-LOBJkiZu6}RcKPQu&KkWf{!Kuye_Ml^GEj((W`T8$tXGQch$EC?7j#KCH~=Km%MmKuJ$Qq#A4E$ODe z2tfrY0B+ZSoc#s`@Xdgl&_JirtnS?0WQ;@t#3*Yg{vYYgltG;0IVYiXM5V4er+8wx z2HTudT-(a*kcZm+f+Dd#NlE_4Z_pAcM5&`U5b>i&LWmYpf)B@|NJ)7W-KoR86q`lS zI|pe{{ewa9`}L*3-6WB#N~DP&e^pYvjfIYxmBeZKNajE^dp0)PKXu;y-NiAC;9!UI zQ=PWgjnTD*0x_q5o``kCJf63CcX0%Bez2qYA_0Hp^}j|`=g)J^i3qJ-;`GFd4|Zs2 zfbo}@(?Ai7;95Gv_y5P6RSCxKYuqd~Cu;{e1!1u)2_*k@_sg;p$>&2p!NuVtBr3?x z&zcZIQyU`cZaY9DYpIsv_=0&b8cGDU9w6iA<7PA@5;y; z(-sxodO?k4u=`{|LM}bPW^9mjpt}h}ER{W?F7#)<2B&A|sz^8zj(3)l*UyMmf3)M) zuYTZ7^GL?pq_D;45>LVW0L_tddb$l8F8DDI(m`+}_o-+A+w$Bf7e_(YHH2{prifwEW$`kv^@;>3;e2 z<}e;%uh6q?`pjY8Ct32o{hr|y2NJ_N{@Kj;K`#y$$95-n+rM}HnY`_NPVIW%y{9{4 z3)Io^3nPbDqf1k1Ht5rJ>g!wO^yF<^?kcpt8d~crT#oU-k@i|KGBeVCsB;1 zPF+0g{3k43@9&9V$Q`q9@ij&hX+L+pn)3Rm^4`R-PE(?d=K5JH10MOeE|p*M*^e$> z&UkyLH8+RVsef9|RwQrXg4K4_!nLtKH(Tl#c&AtI?q=WdxI6u)bIs3VHOBTz|FiZB zRvXXSWj#O2ZVr8&CG1=~-J|Gmy8a2D*3>xVAV5lL_+!e7|Jrhuf3b$h`R2_L-jKtH zC(gSr`1iXhMbP?3FN;my>6qMUDJYVxJtv)@ zh}-XoX``+GJs;TUaQhNl)0CHE7_;z;kdpAt)-;^5)Q+qEnNMFfCY$#))@Y%myZq{{ zx5W7WI(+%Nk9dpTqPgl2EGT{O)+FxIO zQ8?nkr)7zXLykU~rwCWc`_(5|UTwZ=xR{BWZzSJ@<5lTj@zM=hp;U$p!5sCWOSVzb?4IAuzsYj;}LjpTVGpBoO&N_c=vp)F%E zCME@+M52N5gD9s7>5_voutL-#8wL8;X8-U_ zW8df{L~8FD!+@b@;;FN9mbx$>#(6|*Pn~Qu!vzW(M$N84?wq*}plQHL&Y^s@fOfICYal*+4q8?uz=EL9El=-{HVz`uSNQ|k* z-rwb8NnLcf=mZ0^npX}mmK8C#=vQ3I&(6fn`7I|Cc!|olWpPD!M!X#Cc*t^uwA(ZW z=BMA7ree|`XS-S^*W7twGt%;cqUc&4$y5?ITXOw{WGi?n*Wyl3SX9JCjS%xb+A*8rz{dcw8^36XA= zhNYVY#6>!nkOt{oKmLJ0xs7C~4VNol1+x~0DJd*AQX4!J0u z=OV`l@8+l0f0tk~mR3XfAvbTx__FX>otmGothk9SV3Xph?IS%p8lRzRzTwzoO%kF$ zSeYag&>|v_l!abOubv$gr4QkAWs+8#g)2{K^x|MZ%v8|fuwMRob^0tqEfHE9=fmLE z590m4zzdK7yZ}FatOFL9~GGjKP|#6MYqe`#s!Iq-*FM?ss7j z9PNo+!=Soob|;^7)qXROw@s@~m2bxshsmWZ}Z+Tr87 z4;uZ3|MSvpe*JP}<}(i4cuYA&Z34cbv(^0wZ+nOSW7k{;Fr8EdbJxJ9MHE=>ZvNCn z{InK8f}maj|OTpL;<8&$+uhVDdC@!Ig*5; zpL(ftJ;H!UsG;)(>~o1C5XDSBa%_UIXoF0+Cs05OW$zRVlMBUQY|51JI3BTUD*?&_O=RQnPiE*LwOB zW*hVp!4sqs4n?0zE}e*;qr}>tAWCNT$5~Y((zant_r~l1-|h2AAe!pP1f8$&aYhvm z3DGuE6B%1?g#`5s^*}?DM~R{kedC|-;4m}=Eh}X-VT-t?o}a^z zfk9*eCJtumm*Px@P+fY5=6By3=TZ5Q#;f<7Et*}3-QmacNWkCq9v4ybtx$89%E)x% zxkNFKd0L`rSKs56YYA&ZtzK;mNDmkB=TqqX-}H#oEW=8;J_iSz0$WNJkkLZ*-a;hy zH%+Sp$YI5hKZdd&2Gi|@7lxzBC0I*Uh!>={9$t8gS88bsO(l)(Y z9FE}H6FgAj7&Vw~8=NEzZ99dEGxc(-HaFJ8gAlLdCu;L1*{+ov>z-<=3Ig+oskvI6 z)bO_J_m9AaC8A(6L0MOp14$1{N>ILdW<)htw6BCZ9uVXWW@!GfOkybgDSAkOo=C!k zT)8clgOY5GXcvig%zX%i)jEfS>50HiSL8=eLLklZBX7DeSwc^Br#|385?_i~*btK) zy-LzzPpT!VOjb6DoVK3Hd{j9^V@C8?7e^J%Zi5vGy!uO2(DRb_Qg{s3y$=QbgWLj@ z+v4+y@RAH%xgc0Mpiggf37oIZPY)|_*sVB|BY{OylzkI{e7}R|m2}sxA~qt$x-!MK zy?_!MVnK+W(0=mKCEM;d7yngyD#52b$#SF;Uqr1oQjNewR5D5$y-+A>ccTt?9{L+! z)FPClT>=rAs3f$t+Emaoz?SP({?sM;pM8cS`#ftkHrBf9SGoUU_Ucw$MN#N1*eEzbKc zeX>}7TpsM?CkY6pPN%$O&U>`lb{%CiD7ND4S8|r_ln~D#7Q9*_uKNPS#~Wr>ppF;F z(#5GXA}3bb`eZ};%X8NihDZyUt0h+VEayf(5;(D&9)%xNJ47bNe%lGw7bN}kje*gT@TKVE>z%z5E z+mq22qg&mG8pHPszqd7E5IX1`uYD5RW`0&J{9EPUOrn|=C)rhL=`2{#nB%xp19i`R z)@z}jakZL>GTBRGc`X*ck|J4y&pMZp1h{V(MY`HJk)P=gn6>H|oXiWMuX|`io_{Lzk-&?01uW0^gexUi_$E$Me z--{WdSnLe}*9YGDpM6^bv`6IbpIwbfw=N8@-Bq>NRT^p?t@pXVGD?!W)zB4i8qTVv z>NXd#k5&2WulIv*dz1giXm?;30H@!p?=B?TOA@P75-MSmG&`8M>g-T8ZYLZ+&cb=+?&67A9Q+LJ+a<;F<8D>H0X z2Ov1w6SN_oy4F0KRYg@uXxU+(Bwb7pRd;%pqk@|zs#zSk5JpoI zy%w@UTa$uCgvkD7EYoI}aW|)?SL0A<@Pm>`6&*uDW5Zjouw%6v57*;Q5Q6FG|#u)*tmB%_M-J=M(ZXaNlrriA%v@wE0d|VL7rW^2mTU zx=Fj3^|g97rZ6c+gC3fU;7%Ukcooe%49>OzUDf>xfZU68T6A6TPZKxkwBe(;rOYl~?I%T-FE@uoX%>-zoKIooX73B1Fq?Wd1@6a>Ox zm)es%7CoexE0UGX)_4%!H!3f70l)M24r;Dxu`S!VSUh|wncBZZ1{U6r?A?5;xG0jf z58N2}h6B`0J9si%JVjtY-FXnM_N+jQEsAd9Ew?z3*u<^Hm5f>RRNQ*ka}!cK7y$*9 z@&zqpC3?$eWs`_X1%_{+m*f8#*ef+^I)22M?#j1mOxKe1(6k)*|M|i#w!r3yUO0O? za_ZddoCE-^ub?i>|nwTQs?RSdzqyBQaOTkqcxO zxsV0kb>@E9EVw}1c?p)bpW4qv2^0qd#linq+#aIut@TMWTM}N{3P;@IKwopJBV9QC zIz9BiJR8VOL4Ebm&y^41=yj9aitN7y7@(;+I@`8F?l7-qj( ziZ;iEqU#ZBkDH7WE&_Phr9Libf_MXXe}Rq?E?k|o_A6PPD(Q|AWJY6;g58TPUZe)_ zgB{#)TiM->I9lxxRk+aC#W18xv2W*~{uhP;%XHM&L4Bs2MP~jX7P&)T19@(({bt}9 zlrbKalm{0Uv0gnj3mzc;0HH~8RKJ(9z{plK22`%Rz8PQ~vtV~&DY`(tE<0p08`bp% zruCJd%f~uNY&sg_HyyoTb-^UMK)${|Xfhkrm4L~i`J9ls;Gv*x%ErEG%7!ps^!fgV zJGE8N-l4HLw6QPg2nedQN|$Oh8@p?DT!a8Zf7-hL+_eZt$ApXx1kB?RF+z4S?dBPA&=iMz!XK+K)_ki4Lj`Dj>YbS+~ zdbhS^1n&&~ditQrJfcAMrCW2;watG$=~Db_ubsxN;@XOCKLXL`P_fsfD=h9~vCuBk zJPQodlfTEIgpyN1EXeb&m<89YmpOuC_$Y!41t7IH48vQl0GBRTa4WgKqumcdL^%}h zRev)|!Z2RFKVGZY?F-({?hgV&6A|o)ya@Kjm7ohEAD!j{$j@`jPXTk+LbxqX2uVDs zJ@IG5f!fG5@3w;ve@OT);9PTgL|(e~Iwe~8&)vpYodkqYCj!FF)Ca9jO#uVM*)a_Y zN{bV}KJZS+q_j$4ocTwE+z)H(sB+`L ze8$T-OM^ z9K!;SkTTg|r9bEgpJ19DlQ5Q-PA7YT%iB`xpNXVO2ZqmCNx<4~s~;#at|7BiynxdOq7Q_%uFse!ukH|o3QTq8Q5v~nWeS^g7OTUsP(V}{+ilPME-Cv<@6ro zET)qIj$M$xg@GyG^I8eSv!E4v&bmNFf=0>s7fBw^r2_Z7g$FPuHf4csiK%QorCN}O z@*~;qElf_U=i6!wS!7yi;qU6Y>y?XGH0@ik!%Yu^=F4Ct*3pcrg9_rF_@U=4GP1JeDQgg4M zms`l{9#8FU%03ACdh+0F7+`70SZd&6fX(cgO4d+sTYr_ za#!yyMrU018GmUln{OsWc2vv;nDR$d8yDv2R)( zW!K-iwM6}ov3TD$A}ennMf3(GmR^g2X4E?7cIJ$*JzOv*c=OrA#I~f=gX5va8nT`b zF;ZVsd&Dj5d7HZEHi}ql9HGS2(%?SDSI_&|i6@y}UFw1Eo zTs{u{l}4r4A`WpK=-#e~S64|freF2VXW6cu9rTUeNl@(>e)WR!vN^E_|ZF< z{5y-xK6E{Dhi1d8?8NqD=IhlFo}gQ>GWKx(;6P^WG~eRaui9R+u6L?WD)|fAF_Wa8?<-OCI%~VnglcR7RkC?8^$+S(JvC{SxWl zE;Vuh+B7bJtJ)vsq1}%0Ns^~Oeta?jo$brhZ~r@S&F^>g?RD2(i~Mq|Zz~dC z`&F5g-(UJneRL{^{ob#>qvI;k+S;1LN?_UbzAEvF`QEbo^g~O}?Kb{(Gj|FmIX7xD zne8@IZ8}zNu4LMwp!b9A8~*i`H#-lu3Li4DZr=bVR;FCJqvgUIh~KBw!G85%&m*j> z6u{3reOzjPEPvC;)2SuPw~ptT%wiD!?xueYpo8C@61`%*Gf%bV5;nRNa|K*ZX5@ei zG(XxZsb(fXJ~%9v)L~7GC}jS*0y@?nD{=(`ij!Geh?C*_V{T~e_`LhDbd{>7JQ(7t zIAXHRwrR0VelPe+Sm}%H<)G)|l_}XQ1e=qQ_4xN?AJ;_QY&V9T_iK?t9pa;q&As4bb3+S9eec(IuNvjQCCCoJ8DC2*@^xATZkTEShBr4J@iXptqTyaDZr*V+iexTO4x3X&R+7h;tkAR(0`N(ND5p%UNO*X-I+qy+v`e>! z-p#Zr_V|wZ=Ak}eHAt$$NcQQoD2R!ox-;Ai(rX@ILcd-1S9Ehd9XwdApV+jdlho)G>qVG0pd zQZ3hQ!h7sv&Iput2(r{$WM5(J==k4`UBkboII$-u9uB`S;+g|1O3hJjf{~XicYQ=@?~66jQR7b zOmA0zJND<+ciBZTr&}paYHA#IxBxO7|HsFVBt6QWO}L4&DCVF-U(d`hAOfu!AT1ub z@>7q_j{W;Ws9HWOQC3g;)!2s!Yeq`aquRl}d@&s-d%bk&SOYb`=orjI`%aV{EJ`-U z8Zrd4!PcSoT(dG#g3x0EO-F;5e)xYi$rqLzdcmR)gP0-GDWc5h(MCHaW%A+@Cu=i8 zpFf<4cqY+=D=CX|3#9N_MJhX@iWtKEwBNdQp>&GC`AHKCLLq~{ZA4sT*Hg#SKe*3ta8nU8@%7E~+kg|3alcYv7DUf|n~2wL(@lmgd; z?M=pZ;0q>IN45!HnoyWDVOL?rmu}NXK1^_krCM{`X28A_q&bVvz5Sh-%G!tTW9G?O z#0WEYps0CjKw!t_61!5#XYY>^UbJ={hKCc)2S1`_n=1r7^Wh8O=;@%OeovNl_74Zm z*BCn2vc>4<=Si7WJJ`9Lpb)lFFB&)`SEU)c6|gS=NzdV{S|&tkCXO_yaFQS1G#D(vUoH-wb;ZcVfLc zY2fzfN3I!OSpD$|i2x%V!QXc_Y>@&O&{x*YWZdoKuNZW7Z-%!>l|xVdj2$SQPs8{V zK$Bc+Up`*Y8x=1c)+KfKT3j`dP4L*bo4@(P+~M3asCRe9J;Y2ftU)T+M+`gy2hzN$ zbVHvQVePFmn7@a$c;CoaNKijDR4Xy7Pkz<)Tsr#FeFaE@4N4W)oWk!s*%;@hu%#YT zQ&sblmQw7YW@3A-{!v-2OneT-VxA4NGL)y!nwX?|A{`Q*NU}j0!YFM1<`Ok^th0AmjMZ=#aCUU-c;zS&aPR$A_VVDWuWRDW z@qBRI?$*0>X?Qvkz1fOu8DF5B7X+3apy7 zXJjS~Kp_%S4i*!?$+IdQUdekA$=Y@9#*Ov=#)GEkeAfoAVj!;z=FZuFsiFg zbC^^m>9Zk&obGp+d^r3Opf%gWMoG8QGI>>f<)Ap(o0uxH@=QOpZR+$DT@M%-3i3yB zn0$U`2hRyR&u%`}6+<@A2&+@PV&0ox=7`ilF8*+&z8O;AKh$vE+{eLrCOH(Ma7Q_L6eL{-@Yb7wMB8@^fF~CJBs?5XI>{R9UZqWhwg*_ zdlYuRbM|fyxV5Xl^U)Q|A_Vl2qw>V~d*A#ja0r&3hLGZY{%BQMcP9ukQ?XSZ;6nq) z+gepU9Vwf{LMHms513U-l+fQhHlDAcsZ?3_NFj)a^d)4KCGeR95H02B70$yipsYoP zYY!nr(*vikvQ|Hecp}3y;~&qU1w7SgZZ}Xhg^ts@_yiR?6LsOuS?Vpb3-7%xolusb!d}!WM-q;;$!1HI?lU}CpLd3eB`%qnAM=y6CCs(|5T`lUwafQdGfF|YGKo;23}I1--cshlvy$#ON+_^QBeqf17{ z26AIA%8*O{Y<4YBmhWe%!wB3Eg>KGAejZR9DEz1b43^!EZksyJwk<{Vd1!z|j(LPV;FU$<$3_bnu@ytG^BSsF zm1PC_v$QRS1<)($Aylhg2OZT*AFB?6osjZ30hVC06(*`A#{fFX`RJaZCp7j11zE4@ zl9K+*PcZ+jOX^$@bp(DCjdKQTdAWvUBY+0Mc1-5G8#09a=;Wa9VAXpmsvtli{rd}* zz%czrGnQAZ&yUH3-9EH7f(RDcha*fLzZ7czvqjph=0qA2{BPp-=DKS;R5nJ2@CDSP z|HPMP@0e_uWl#|YOE0okbrT*uYGuv3KDgS+xYD5IH2#C;8HbW~FYh{VaA=H6fg5Qf zRQaVFtD9~_tes~(RQb`AD)hSr$GKJ%oafDEWSrX-s8(`Z9EBI{S))Su^9A>_h%?8= zptmPu6>|K_<)805r=KxvT*xQ~Xs}S|lHErEeilvk;ZPS3BCFx;Z2M>--nhCyO6#=@ z9B~NJch>1ev}z;S_P^rhJ+$sw7U>d;lvpCK=Ige&(Aq32H*f%coH9rGj6 z?u|@-O5AJ6t4Gk8z;I8wIhdxLYU|(}>&hh8_6AC9gKdrRgzW1r4>j#9pUXza4JLs~mRvZONJ8iMX!J>1u)sG8 zzUKTZetvXQ=GruMkhE8I zv>tk-T=I}|eGpgNsK7Sixlupz0aQ~;8vl3FzVNY3=;tBI5{*3Ft{4S)a9*dm+eZHF z{M)W12^^&nG9qY{O_o1%Lp_qHsp;!Ss|9QYCN2~H{2jISg#KeF+k!B zQPJ4Nd@Lf{Nl~`Q;NGVB@-TDYsa;tQIY&C86>VJsX9SQQ8~{Wh*^MndbHK!ozSBLC z{C*H>5?LIdtnrDI;;kif5hCO8xdV@A{4#nJCZ7yn0aS~d$S8v>1}qEY(*AUb2cIy5 zJ1Ef@^Wmx@yd6pfpsK=~`oMZ3yq(K9Y~&?eVJQh0y8c<7>(bB$$^=i!QmBOEiO91Z z7i&!CNSK6jh9?ug9K{EK0*QhAj00@9A(fXQ$zf!jjOrJO=yMC8GNJK$S=Zq09hY^I z0Q%I!U+;b8^DW)((SA30abG=Q{s90qfhKFiSHxE|ztSiFt5u+h#mMrI*N>w5sx*)L zB06SRG=Dmf3+t?-%@&ql7Ocy*ec-b0^`IIV{Yh>mjz`@-5q(B?X7jgZD3o2@+M2)W zaS|;2QdxuEf31$YG^wBu@i>@uC4BoXps^1SvQCA6=!^Ke87IJ z@lAU(+E{%C_}5z0h}+`1-?|K04<-kWu%holy#5fJdt|W*gh&3%;Dph?U+?)`!D8WD zcR{kMv5(_IddX;@>w3yumptCi+2Ki$h?l8@cOAkp&sMiMfgFT+I;I_aI3 z?WV&*8`lDxSFN)@izjN|40pC2R5OUbh|6K~lKDka8aC0`df;1n&O{F~6K?{K?i2(i ze##gUOls95P3`7?ln$gpu*iJxJHG%x4L!4&N9rU4qVt0&}d zRY1B9-}=e33HmL~!T!%37dNE_A2D66Zt?OLlG$}jNd<%yALzo@*K3wy{bC2<25;j!v>2A<5~X5_ssn6e+e84w%A5wPK(L{er-UkULI9r?Y|b) z_jD(`M{*`mOONp=TfC&&8GCXxTxr}(BnWjiAv&TAS}RQcZ`RCz+rl< z_aNP-s3N>y9C&6?&k6k!>gy>kWlJo?|K;k>hv4^HScEm=D_eio;1}K!fiZa@r+;tu zZtM=>S8feW^w9_7VTOhyiB3_o-KEa^vu9IR+^>;dr)$bMgsmZub_!X8Et|+JX*bSW z7(=`>1Kyr*{nfgrm->iX^r?vIPn9emOgYv<G5OW51D2g8XoWLk@F#SF@k0jkTM)Tdl; zP3l`VH6WWQA00A}t)7_KB$4JOM?d?7uH@*L$>rvbclBQnOPoB7ewrh@IhIxH_-KVu z45#4zw3~xVRF#!3nUl+A+Y^sD=?_=-2htx>|F|A&_;2$CR)&UNW;6PI>_>^I2Hdq5 z{A7+JsB5bmNjvU}+__}18M<+)$+q6t_TcfcguIq$v&-fmxyuarcfI>#eWSMK=B>}v z)#~8xm1FZlTSSA-)OGb)vEG+M7hH{9%2k)!A{EvBlCy&Km@ALL`zF8E+mMT@yEe47 zz?bFsk3R3P#InAATl~uo#!p93L=CtiBUX@8`0tx8!^ZL@zZ6M+p>o$6V5QLGa!y1| zFjLq`$#C3eZD?d~@VRA^zr7Y0=+ajc9p3R!vbbs99+iDDF8ku`H8L95nFgt92fU2l zJ{>!CD&lu8DsMtL_B8)`PVc-{p%&S637%NgcrmW=;w}GhbnQ`!F+Fszi?w7T?B}A* zi*cJ515T8Q#(!(ROJ{|cphxkA(>FU6Pq=~X%J~hJS3&trqZg}kSyds60?W$_r}fg- z%$@n~G-s_J>|a-O!FgVv>jJ+=lx#zPLonr6JBur^%jk6qBCI4a9C;y*cc$)D55`}U zt};v^acJs*R=;0qHX?|QQy*LQKGSVEEcj|kJjkiMFvuy;m8>kfQpVBqgJavh+@DA0 zDv6OxX99Uy;tb@!Q9b+eSkXd@>__ag&5eS(h3=+xM-GT0r=TQaembA$tpFnNNm$7B z%*u}4)%?%yxKXOQZ(^*&XCgN-Shz7T)aeXnulSv%N3c^x7cf+hOTV@zrLL(~BOp|~yON`7?;GZ1_a zXCDz&%Ch9og56ycX?Fe#U{ zx*CGpY9H5~1CvXb|6jd8{v7h<0ct-bd_Z8602%;Sob0qE;;m?_yt)q^=O4duVkDP1MJFKPZMTV4nq;_Fr?+FGS@^nZJ!)#^&a?JQI znSVBZDW4kJp5xo)2~2Mel6pwpM+Ck{S(>ftEzpZm{A72IN45S`1T9@HwdAZO<~sn* z6zc;!C#b#k7=kGyi=e;}46jHT({7SCDnu;!@1z&J9j|t@=cv38rz6lsp(xt>RFPNm zceCoJyTBvZzZJa&TJQ=j`*s|vHj=x8c0^SAY!j(A4oX}Zp(F34PTlZEtM;!datV9 z_sqM#E%?N{dcN{T=FJFPwKSswRF0-A7e;2i2R~1j?-j?#|rer)+3*`RPJ6n z{mu{R6Mh@M!uqv*WS@^ZiNiSyHNjzlCu*1+S|aBOcbULb&A34c|JWi8#jm`uc{YZvbG*q=yK8^$HilJPU(A_gNzPI zht0v)#0B5%{;E<5QS}puKYkj_oI}33^&iN}S%ZvHxA1yY{qV(c-uT^mJt)a_D%mWhE3*- zWB)Vgh*%wCZdYCEC|WT(aNV=DU%@?YsAFj&o~13@{XUu5 zfz{%}g(jg)%)wJJ3Uc=CLSRya+DorVi!y)5?MX`aqv&KLBEKI>5+B7lC*l~7oxn~T zXQWXi{uCjDAo9+~>ZI}LGikC-f98Ml&UrAfOc&*Vv;=qso&DeJ*>jekIPjyVy7-%m zD%Q;Fu{Ln*nVnWoM53oQTU|N9j4$1{!@2(mhw;MTE6?X_*BauNzI$^*67xHy7;a{c zX`6J3o3U5pPJ2@>MPDi3fP=>Az@-H5@;4zkTceM4imCH@FA{-POJNv>6Vc;07&_o5 zq#{cr?pb_i6cEd)0DScgj``2rbUswZ_ywPN9}U{ocAnjDHg9;;q+&B!|66vxVS+0! zfJxJB`nxtV)>*l@)Ix-O`795`@9spwBX4<}-=QXYfXk{EK8dB{d)lk`6`&ZThI)70 zLisBQ^DzU{kW9eY#P1^n0l)UzW6$7ipVGITanT_H8viWU1jv)bl($BAw2P;5dn<*& zBjh~JUZ`3Q`H`d#trNK#rO${%^vo65SGC9Y*&AIBau*|pVQaFBnaxa>K9-(`uCntM zRS9=TP8w{u|2pfsCoTzqo(R(&Cj>k37P^vNQ*Vzl>J&rsdK2}yO&WVbOb~?Cec4HF?;kZ^vqdmofcJ_VWk--r1`? z3S`JaMKh~&$1hls`s#t2Yj@+;xh1^s?JpJ|xAm|L@_dLn9rwD?eZsz<#i&`0V=Flv zM%(cX&Di#D-ttTF@|V?CfJ`YuJ^M8vha30w05g@p{iS&O%W4S&c_*FvL_Au;^-tIF zx9X{Utg2$Hs#QER`7(mmPm^T$-Nc88&H9uuV;=)6O#`dG#(dD*Cn4jBU?<||mjSs- z1{X|QW@h_R!8AGKPAS~Pl8EUC;hmBq54_}(EH$ky`$*wp6sEOY!@wHYkWZA>(AT~> z`)}_zOWYZr+)>2K3(-!LachkEYgKH0Ado|aS%kf{z=PlU)h`9bz6!Pt`Aq^eFRE@P z-mc14FFZOxFPziFj%Ud%Kq#p;pHP`_i}ke^<#MiSPnFWR0k~9#sz;eQ_U^_LeCrv; zFkDI+b@)>R?%k+4>K^>V=F0!@X6FoXwm%UqF;5hnSC#m>3(dD~I>&Qv7Ni>OAq{Su zxh)+axqC@sN$UKO!80?Kxd#q7>Rtf|^@vPNt)hb`xysx&*WI)jxT9X+I2|uG%Q&B4 zg>h8*f)>rNotD$|0+@hv>QzYe^lD7Z>E-@i6Y8!h#@!6)hBB__5Jamtpz-ZrkuPo3 zwE1Fp_%HBcoFJM(=n)`mZg+9;uFoypw}i^T29eI(5|h6Is10h4!@xdZLfCh%e;K6a zY-v?v(0QPZ=pD2zt)V4;xdhnStf!O! z-xl8A&v(8VjNPj48MkacxeFEpzbBw4tf9B^7&>HTg9vB*cgn&~{37Y@6E`*L1Acu= z9Vl{>rEmOR57x5vB=|B16)mK`iCl;mx*1_Z$PEL)0gLUZrBRylu6;!RqVxMv-re6nj)xhfMczetF(XU3zZ)Oiu|1U(S;=K+ z!m$KxcsgWi@^nW~>y{)BgbOx=Hudst2wGCbRqlk+Jo~8W^if6zG;q#M*>8<@>ixGO zonkz}&m1tYY;V86$u0MK{yM~QvlF5DQH?ZcBhVj`JRFZ-c=YUK$hT8$l+$GR%Tw3- z*`tRe3671gc3+>@xSm%>7?a(v4Mms`SDC!5{}Xc}9_YT|=MO=dg%68?@0y=F}| zvyOn3-6Mg^X^P>ECDc98vyHzHk949QKloOgpp49C2al-6VrmWu-nxaTN9z+7egK#) zM?*_{QocxiTfVBA`4d~F6Qv)%{K2tD4rg5eC`{4=_1t=m@9#gZ!Swy$Ie)YV&cLk0 zh5&W6$EUHY*W1pV&)-CFU2@aEBlD{xeDTFwQaJB*NUyidlc(m4iwx36k43W?n_o<+ z2Yr7&a@K|(H4dYVE8ktlADr@L^Xupwc5-Q!#}RP7XeQFT&3%8(c>G$$?{Mm>r*GbQ z<6pZ_>S+&k-kxItfRRoU@5SszNZq9;>W?xM$c6|99G-T2S5~Pj|DXca{Ef$nLAAZU zzN!fhjsL!ee@M!+LHlFP8B-eBCy#TVxTwGk%ZuaypYBn0Sq(Yq>tNHgqSsYp4YeBK z%0?R5K5KOf0K>(HC@gu?n4*HJH~2TDQGzfy-9LM|KY%+^3~*npQ-1i@0wlBTS%WN>+r#HNolHF%TzJ6Fm@)4$hR7pt`l(PZ--Iq6 zp_25(FoZ27jet-b4hYxpCB?;ifAPjV;&>Rrwx7w5O`bx-lO@DjO5~5h!IyafhEJkQ zzw1JGWu?7Ke%E}*{5hXJciKBwPs_Cx=%Y{>ru2QIBqY}4^*UTh5B^TX@C#H;Px`0tUrm0d^9&1z7*Mup#R3%3orN9&mRQCy2y;=es2DIhPk$VEM1=DWurwA?V$d|iU zM1+uiF#(g%;!qmwF`kG{@Bc7H!;-9<2f`UFKJk*i^+l4NP3TdV4IQ6Nf1Ns_;u!!C zj;>^VzX%uTNmdZM<#-rLsQ_v*ywSyR-iq29N#n+{JlxWj8bscsg$Chk>ztl(9xaOb-{b{h>dkW-H8Fv4foga@}Q@g1qB z?~%1+zs?Am*=#NUvfhe19pc!NMP&1tY=7X(jOH*z_!<`zK_|s}QC3!F4_!3a!?$)%pWm2Y)cxAlChZ+JVudYG z=z1!VoE}t!#(Gyni2ChKm~Q|1V<3WIs%!c0i%su_d$sYeiK%-bm^kvcYdq1LGR*+UlfPFejg!5^auvs`;3aLuH6t#?#&51T@*xpi(6jV}Rw;FKCcd4krP z&_09!Rw}9I#|OT6UBdFF8M4VjK}C$U_%5NC)mi_JYaeTtI~;;!S*GSitijd%e!Go+ zSF!m@ZQ6q>;q69Q!WWlaGxuATcL_!AEW91La5fGO&GE+nmLR8C%wBKG-p4;iJjNFl zisO@sE1Rbv0uFwFH7ChiJD-{HrmfL{W@T`Iees4TFbEy03|9vxO$9zaap2#su7em_ zBbd}Rxtm38PES>=$^v|R3RttBHs$Z9M)=x0-=wMgeh3Lam;YGfd9&KIs>V@BPGk2n z9DPK^MjH@YoyokO%=_(W9yTk57FIQ*rs$rapKn>x(LgHlK?{as^<51Gev;Pt`~%sn zfbI6RUAvIl($_besT}68I>8aNWP|P%n@FmiWHRlXru(Ewe~C^LzB!qqKgo#oljyWmS^Z9$Rd9XaKQE z0;e*&w|wtBp!r9x1uqg&C?BS0rJQ^)C@K!9Wz#i%DTpd?IU`+9LUrNX-t#Vgevf$} zw~4sk%-g^F(TsRN9QPGRkK~G!zr&mq3avm3Ew@`+?TyUdTn^q3jY@`P48~n?!Y0}U zNv2ThUCPaFiIZ=05f`6RhzOJB%as!2{v78I&2+k@AGpif1Kx{djzxywx)dN>tyKOi z7{!dbPd-OK{6TX&N8f>^*qdGJg+n?S3T?}I2ou?v4p~3hS*eMEn3g-SthsPVAmdB2Mo?VDt+R7rD*B#DV@|XylR(s(bqIm0$t;(eoFF8 zzooUM#lPvjUsq1f3!&)bBO~vGsV4#->lV<#`7fM zoq;D8!k{&yjQ7xBo#MebPG{%-G{=A30Z2F|LKWgxRzU^;IaX+-2o<8Oql?beM(CQ7 z2uUm!OiX!;F7o-@iIKK3$f505&9}rl=?9K+|m#t&K0{SHSpNWd`iB-j)iq2mJed zdTOx#T`oC-?0)>|_BLt)UK7}4K;v4vCa$k}Va30nTjB%PpLmw;2n$8C6F@}On|^*x zhMidT`J9o*jQ%xA<&0Wc=_AG{3{5Os3kyl+Z+5Z(xq)G~dRIT9nrj$^#%Q8;U~1O? z-LL*B1ptdIe(LtQWb;ujIP3E{*l3NhF^>mi)6~p;uDXwR{%nuwS6r5a2*!snEuX4! z6qo?x+xUV=niCOX{8vEG^lU*O`0SW2uhM`lsySqeC zX#|myl1_=CnHjoc5D+B5d_XzUTLU-+S+e`7)c$oU`{n`#gI+>sd?6 zige1QZSOu`Nx|; zqcu2b2|tl>ld*X~>M#MyMv@C*D|CwP0pi^={G;q=BC&;(%3TkK13-wCCTxxJp?gU7 zZW{){f98=`NUGemaXbO^r*R2ezmd~DD~$mPhR zdmrKW@Sa^*^nYu5RlRI6CIZ7Q2tvk9>i~?2=>tt!uUO1jE~UN`RkHUF4E5f8c8-@K z-M~0D+_7qejq`@mlx2`=gkB`kNqZ)cEC`rIlvqs%*)Wn2Ao8?vDuLKI{YJ0 zz1u%*Nr^+4ioPbrH*rxzj-}6`xIsxIxbVaOVC2gfbtr~S=2M-?;M3nD8zudcyuxBC zeT;N=xS4|UnpE1<1h`RcM$((UkX==JLuL}M1psVCsNc@B?M6`&?3u{Ce*327H|KJb z5@$1p7AN75OD@IDC0iD3MvW8K{Z1cWjch7d#6-!XS`+_8Dr>_lNBN+~2k$GMmL z;}p#z9sP-k=7P5lE1xV%x8h!!nIzW1oIxe(DM<#I&tdfIP5?#{%-|JJ6LYb(dl+KQjP!Z^7ZtFrbWl*Wk z__(OEJQoT>`%ZdyVP=-gp(@S$`x-K^ko1@>Nw;pp__e%(80s_lv1Ip_s{h83jl2X)A1Gi9;_;zE5t2=^mrs2=r$>*Apb1e300KcGl;$id&yhO zfWv}yLLTFRW0EzO6L`w9!J2i*oc>hRZDxZwm{Vi0m#20DSohH_N5nO=DtSsokiQzd3nhjhR-HiMa!hy z0J3`=ho0P`v1;Raj?88>9#FPf7XHQ6{&k>zoU&+;!oxJ|a5Tlcf2Kp@yJLN*$_kgR z?U6+$fugnAd;!@wG}4ptn3<5P4qK}jgzT{&2Vqdma>jEOP>BknioH3UA*IOJ?&z%Y zGv8##a-5Eqk9CYErBT`tnWW1w@U{TmO{TC`9T!}*L9shbYVcUJN#eDjjhg_Qj~oXt zpp#pbUmcIXCr&>&)ndvP{sk%_^wT!{b9>6$YZ1NXMF0hEOtc? z*UEm$`9d$sNs8^E$#5P(1M0z2vleDSd?DNgm%J zeVWMo_iBsPHo$J9>9tl#d>prZuI-kjNFx_`{kWg2C90rvkirhjy{i|~W$Di;Q~DuW zNY1@F&4{7hu8?q?!49<`0fowX%X+;e!O5Aq2=W&ln>aJvR-5&tK2}a$Ti9fGSnP<5W z#M-9_(5d9Sb3sEW4j%VCP2gle_6aDP{!u7)G34USvYu7e_?21rm0}7IGORU7QN7WM z1fX4upJezs6S`jvyMnLh{fX+8*cnFH^zWrS_J9(D9bkB#<^@sp3128H2Q{BNxa865%JqF46{pJu2GO^{vpQqYOm~~YZQ|N(EWJ)g6wyHO_aON37s8Io8dvOpkoJwxM zlrx=_T5dT4Y;bP~xR}j8ou}MdyhM2|_OL^Pn&oP( zf0Q}w;g&enM*eQqZ6T6se{<$YtM_2f{{7`CaxC^Ke<5DuK#2k(+;HtUpB?&}Yqtl; zhT$}_Zfzdyt*-5@ZXMpOj`sKWZ!$!4Kg?gN(H&`{di=5C`AeXM^wRsJKhs$r!RJRk zT!65{n+g9A{?p zS3GU6%wtHpc(rd+@-Nd#)2Vv}rZ@#}HBX?GMra@Gq~q;El~i zI-ZL90l|*mWE>sx-t+4!NmpJx?k5$9e}?PW%#fDIzEXZhijRtn$o7Px`@4;bpNdqE zqOy;Ex6u(q{RMabr?7+_O2W3g0px!$)L6Fmr#KcK!#kE|x)J3q^+h@kipliB8W_9pMSMblqLtZ}HLW`-+okyAzpz+QI@0eqGn%eX7N7Gng#L<}nK9usG$`unvBm z<|8M#s5C78UVt%}(f32Hw0-gw}*_>Fz78LT}DOk~SH%YX`|j#rl& zFE2Sg{*rp_M{>{vu{g`|4Pg~g@>k?bAZjJOx>CRk!uGhC61g^U&RDdyOy&1M?Ds+B zSNs1PfLTZb6XE&6PtCGMOHa6^Cz%st4p8lm;I|TMFi6F+CODoh{r_9?sk9qX@-LE# z?T8iFfstV^2qO321NRZKQN3{~mAaraC}lbO?*#JKsfpf2sHwvRs~MfT^0I^kQ6-7Y znxVy&A_3qnCFBk_dZ+VIdhylOH2v;W9x8YbjC#?k4NJ-Ygp=zA+*RJWM(#Q1LxK$3 zL-}(=346tEWX*h)=5F&8y-N@MUA~kdWi;qh0#FkL(5TAgi5)#Y9n4m5w$}z9*TQ%IV%UzAp(q+ZC#5al=Y&0@DBBC+_aoP z7o+KF@oum4HnrP4^}nJ8q!?=i6)YE9m^NTC2`irC?{@|32E#^GE0Si+WU7EMrG`jiz{{eKNnO6~jEENw4tjlkx3kxj?fy$<*L^-(|a ztpvxZ+iCX!rgZb6<@htv3VpJ@lva7|=;}LLmJ8|ImgQe7fn29LGTV6Wta#B{MlAe; zBu}LsE`h>m`L&BfcuM08r3Y7o44|Q?{n8aU=wh`FHImhaa8<#HYftzkb^Eiv_rrC9 zya0}KZ1uYdNu-RwiPp>gg-0le|DUcP zJPzQX2ZI~7m^zDVh@ZpzYlm8SKLcen9J~9FhAoCQ6(1r>M5-F%{>6qXWju+OPI}|r zkfjgdgZ1F+-dV&|Nm3Ff?;GlS3w>t3{})$1{vIheEQ}`Y-ebJt)y$P|5z0&;w+$x} zhmR znm*iZ6gbQ{4IHM3sO&30=0EFY+0M3$q8yKBdlG4fa($1trszKsV^Io{n1>+8_`q4y zYBG;@D2t9LH8Jh^u#KcZENKU8&^PE zYyQ`ExxUNOG*~CqfKNS$)PX+1)cs3}?)4X_NLXLH`g%nJFND;gN2dt#8 zk@4q%-ZY3uS1Ht@;!FX+8EfnV46iTXdCSbwB}D9B8OlSJ zz4Pnq4S_dexB4SMuPt-QznTbm>KZ2_X|n@xUU3(L8O)Qc&wNTZX4WnPBJpB&GB17$ z@XTq#3+ATZr!*S*T?IC;ZN`OwylzAF#r`#3?gQ23Z%ssJY7cckpH^Q1h!Kdad3TmO zJ}>rY+-SAklC}j~ud$I?tZ|OXd*^ba*dkw~6HzL>y{$jrUq9LON$Q(z0gkVLKqlr; z00+0xu__0gnR$?Sl%4GLhP`wqK?0v9ZC$Q4t;a>$okb9`-dn4XiApV`8n_V`3g#5V zKhFytpX!SBK}2RS6tIuVfAzv*G1Kfv=rNV~ zVHD7mPzJ?|6fKY@aPrQf7)%kVq8`F>Y{Obt$Q%g$;x?+9-=oE105p10Y^SVM9uMI3 zwZ=R-A>TdVLh5dkc-4aIF;!_dDBh&u^1^B_?9Oy$72|Dq2EpNWNpCDLxXr@|G}qGt z{|{Z!XW|~&YaTtdst|)iIASFv2}uc6NlBj_0Qb!f0BB{b{jxEEJ(<0)XQZk={CN?# z(6`=G8pyv>n$dbpV**(`6+M--SD~$;Z1?w|2XA1-P>P&pY9%ylLcrQ!-|F^b@*Fh1 zwZRoqq~V43dTKr=`7_)c9mbd?6IK*&lm{#D8oErc-8$P^ z&8`nZ79IwfkDXV8vSiIAA>-j>4+-s2m|yUz>~TNMg;V@$+gakV$g#SKwiS7r&8>`< z>=oUTS`9=%FLm%D-dQrg@&Ejs6H}{_0~VgO9LegOXg@FJm2b9_og|_dh4(5fykUF(^ebKfdhhEJd>(WE0?&d5FyDP zki4Ts0tj&I%)?7=G_C~5b;Cl4Z);BNhuV@b)bxzMXGIj<=7+}$0INq=hKpicGT$O)5)C=vrL4}ES(HwOC43TLR+xsmXM>p(io3M-K3J+mi z{%Q=At9aCs!o`N}Ez24j)fneDjo5N<^d=V@)O48sWpdNvury~qwf?GkG(mQM_O3H) z>-ZL*bCK8YZLVsD<5S^eo1|2&o@o$JN!BP0&NlEdLN1(EAkGbYi?RVA%>Z!=?50|M zlm!r-@F2iqM9XMU6+>+;!Ol3=9#A(T_r}_;z!>x4&ekK{JK5f$)qa{uK$a%z#J4dr zZjSZxKa`n!8d-foip!}8q<*rg_`8#0^s;FAmPxGaV_yys_}yh=uo?e_+CA|eFpGUX zT*bdERRB-VQD^K@M1xeO4=(~_=@h`N`C9tO+)!p(`9b?<#l6vW66X*j<1xn%Xp+#uBp66x7zbxKuCPu?q*bJ~>Kk>Z( z^lcNH%jkzR-^}!A3;^u+83MIM*=&Gf$L>8c9jBL7CA5MW_i{+B{HG7?7a-8y`NKvF zXL0`JI+T$=dphP_nW|??p_sZr=-3lGtf zb9ukvGPo1%NaSVDGrukcIbwiYY-ak%_|?fZtH}~mERip}A(Mh*4NtJ#|L04dY_b<=w$Ui8(KnR8EcfGyEU|h+_sxdCl$w0Q z`;AN5Yye~)0eupC4Cz68jK9lopvvl$VYqRm$FDG7M{$_4l`C>-0t&hx3$6MjyzFzgYwX+|Kw)ZzTFPzmqk2236{Xc3}pEV~g6)oOx zH&iDs38CsNJRi&4Cun|H*T{vtcHAESkL$G!9NMp&t`6Gf$6_9eJkFTq=0AK+-S2Oz zz7OaKYzetPK^}QBJ~rLj*}!mhDZ@&@q~SKY|CN{Evu?a+rKnmD9h~>)rzL#8`l5se z>Ho!1Fgm{;tSZ6dmr&FlP@PX?vCWW-?DzkwSq~+K`XArvU9`gdk!#H{~5BpmW z-4*cu)6=CDlvuv#FHznwywTdTke@#86#9AOz-@Q~DAQeC;Rw_~b*6eT(~nGtR4y8- zhZ4|wGWTL6Da7X2pJmpy{ShSLB<&ILDA6pUqu)_ z=a3~4*AKg>zEEc~KrvL9mY1G$jux`pAj&Cenbz>d0HRODzuEbbm(k4Q8$pIX)j=`P zQ5i-rI%HW`F*-odb9E2B-PH2wVZiGzW~xyrFx&1-Fai@?SLcQd&olVEo(6nx?*pF$gt*)+JANngeLm<&+FaYmhUDBV=+s4u&JxH?b$Q0N`E%EcYjy zU6Db?(z_j7daNmZzUF7tQE(n&VdKM?)&&YK}xDm3XhEMQ(?JOz3lK1mtwDWnITtUhPtlHoVW zzbBx1)I&UiXgQVmzei9H}Yu+FKV`HcwgNG|=L2m&?xuTREPY zH-YN>kycxf<&4F*O5-OOLoq+lGQC&U)0wy==>|qLo?J?G#>*qtp$mXb!3Q+yR7NFK zXBiKpz6Wzs#^IBLw;`z^@G=fbth5FOjfBIPjP-{N}U$%Q|qHw6F4cYiURxOowD`$}kQ z>-n%n%FHBLJI0WjyV8$SV(f|9rf*%hcm0sm{js~Hf16FRZkg5YS-;DnUN@NQzL^PW zm1e_ojDUJ-GDA(ty7(bHk)V`|My)|GS`Dy2m;|;*qYV}O-vNiRE*$KOxEd{AD4k25 zeTC8rdJpXBUoTzm30UtMkPV;sM6Gh^s%e>(I^M+Re?Q+%3me#9)MllnHxQNxc{rJi zc(71CFG8y4I68v!o6NZ>Y3-HowLlF`xK8f;q-+N9P-%MaKXk154Xl%?Od`d(wo3g$ zKovPVtpT9dMVJt6YN4Y@H*Dq{RYl|)4K^)vEd7}OopT4e!~LEZq4$PDq@NqJ+^&y{ z@HAEokQqbYU~oluyfxO?!ZDR&L4g&%^$nfAYiMa(zJG06;P@dT{~HtVPGZ_IL8=lu z3Jdp(`g}oWZa8yI`%eIcGi2j^&#}p9FLqW+c*5XN%g^hLoUWfR4`x75RZ~!`%)jco zkw$yA?yKw9Sn~CO|(y6 z)$NvF7naJ(_m`8fdJ~=;{9h*2_1)4PUZ;1Ix+NYcL~2${=J>;ZuolAAaM+wTfdpy< za%qP&IIY$l3L5g>7*FDgsG5?75V-J5Fl^TEURL4A`XZ_kdA>dBswh`q-_dN z=vDon&0y_?7OM#)`{<9SWhjAaFsa^fN9I4XVc*WK#s3ck--WrJhY2zF#0Z1s3cqf* zhc}B~yr`x2ta%~2i~u4nT#B;A!V^^V;?#=d+04wrRwU|v?zVEGM?CE0LXl{EEAMb* zZ|vs(x)u~#*(^mfHjFBEpa*kjG){@PX=LK9Y$a%AoKFEITBQ{+0L7fB%3fTMJ40+u zJV-Ya&*mf0>bnNe?6E{h%c{t$9hLpysCfV( z!~*>;lKzJV6T6<;8Yw5$o9}IV=NXf+QnPQT{+A3_T=`eN`vsE~mjhY@$PgT?79AOt z26qr=q&W$pqMtZiCPzO>{tH zL(YM=2hjXo3aI{}W{6-}OXu9}gP0BoJBo>WT*zOW-<+AZexSOOX45=^paI8b25AQh z)p5~;&HrIJmCYkDU#5>DWwlF|{`U}p?Gq2*Uita~<-YT$=B=6O^YZW2xf+8J$-q1- z_Py0Fs9Ci$)m>TQUD$ZPj0qVEBXm^j1gY2YJ-~%<$_?il18ci{cyYV;wedpWsCs?t zDf`11DSxkte#1GO?itUFjM;+`j?2aZiZn!R4fh$JbcUGJ^;83chm#Y@ zM-u!F3J^sQ&t@f*n?a{k*h^c4FwGyj&}FXOTH0x?D%WWZh;ND67>ba>pu1FrkC(NC z<$A`wwJZit;OVxw<+NdB3EAmJZ+<;C6+@<3g2-%?@5Z%w`k;~b;eI0UMfKas#Kiu0 z4}rst_nZG!$c1KN`L^VV-Yh7}Ww!A+pKCYI#ryph$YADPv~DhIP41BglvA(`%}1|_ zYV7ZYZ6aU$`xu1Z#&Ma{yhSTvVQn=*kM23#l({h|@3{{U4@cGh)tr6uLGo|!C9z?- zz0RdlLjR&9cjgEa#gWD{qr~i`;H*2+8|T%}RMVB2bUezvlObBFi`Qu;;Br!D!kdj4 zQssctw!AvK+c^5FJa2H3ujyTrO|#j2@%uj;>iNMyTf^Og;-XG#dcz%vnvJy8#3j1N z5=I@i$0{7SG)DS3sm*bgfR|cZW}k#f(W^qxpJvJ_#R3<5MhQz|80qZXjGWO3GeH56DOz+deD)v?i-XA;{*9c)wW zSOaW}&aBkg4RuM&o6vZTau6Menl-Ey>V@q+AFZAwZ@2V3)_54Oz_MnlWL*|e0kSG= zd_62V!eLJhEz4`j7O6PO;_=FGsZ^w?07E-~WRx<5OZspRl!{W4U!1NHtyQ@LwK_9S?>hvdJ|5ud z03f1hynNzrks#x@AfG7Xb2bb@Bv15@5)$u`jgLvv*DQZiIYk6$R$XxdFqufNNCSXO z0Y~7|h;T38o8j4eBg`CNZfBaktKDgx4*@c|j``y2qNNRMFcm}>fl`j&r1hH%*8)-==Te=7%6 zY}SW@OriYpH&S7FXzZPfn1Q+sV=I#)! zsbyI=d|DxNgQfhGV)%xbfivthSAW*J~P>MhWd)@p)CZpE$T| z4~_`R$%}xcxK80PpeZgJEYsXZteE)_nv}OE2P-S^o7m8P1k%sME2!gHE~|AwIVm>e z%a2sz5)d222pG|qHa;8EH+TB-;rlBy`zQyOe}l+bBrPr+3e*B*IxT4nTrP!uKiYeK z7vG2?-+UfI^M}N15DEZ(l->zuLzwU$k)SLcy8HN34F!UaV6|9f{yr03uUqyxV%7iE zBM62~WKj=Ni%#@paAf!@!&{5EJr`gs^)Dur)8Jj2M;aswERl;xh239!SH=#gGo{`v zx6bxM9sqi`Gzlb4Y8VY*qD#Ghk0D(v{ARgkHU=`>triGj`h$~%`3DE!79~M({|Uzq zUNZJtHMV+$P?z!U+NCGIBUf1WOfHYjW_=U`FAV9Vwcfm@ih&8ew-;Bo5s z6v*u9xD=tEC=l$v1l%dbF3IJHC&p5lW|!`?UjUCFksU{Yeo+lldCIU{w`f3ejT9Ff zWs$-PL@j9_lN^TPXPb4!PA(u{6q!`LXU6mT*nn4iU*Y-kU|h1WMhLy#(5t=58pd?i0nw4Ay;oPJy9*T~ zudd*DYzEJvnLvi#mt9b#ZD|kx%G70}Vnjlb2RH+i{Fg7Kn>o3XnQ5Ilysz>-HTA9x zVZ(-?;%WFt$aF5wSjd)>wrT#gy|^~Q+?}s*)T1N~u#w|eL3I9?*`JR?>oC;2+GECJ zlfO^@@|o?aXGR>Bc5X0GgN08{P(ia)9mXB&i!xn|8x(~lp(gYI@lL$YgE&}VWRgDP zUeND@@4i>!M?W1JMAtk&@b|t2?r-vGYxmpfa=@8L3*TmaSw%yuQav4u3KGXBLq^iwyNsQ!(LSl<}4{ ziPY=6^O3h9EPPNF#6&BAC8RtMF2{_OEir{(fGe0`9?# zE8)Pxc>do8FK^t}Qdrp@w9uLP&|&^z%_Uw5dcM_kAHWKZ{tK zMN%J32`*-w-oXjf3Ud^Y0~4fe#*G^+uV$!1Vel`IAeKGhcsy zD`tYA;XQg<9I=rU1>pT_TJ1;{k$)P%vK}b6cyXZ1l|wIvybn=}y1fQ64HhCY@9#V| zSJ_ZaYA{?C@-7c%NafpM5_F&-bf1ikCFE7qFn>w>F+lEIc%iXO#!Ji2vK`d+v{Rto zG52>LF}m;?1s^R4a9VzD6@?k?smq$pi1~)zV^>6a}`Y2(dIzGZpgiF<@-oB?IIk9%+mbbv><`_MnNb41lH`KEX`t&zrzO z^OCjVZH%58A3q!jMs9u&5VH%f8SVhyR{|VSO5ee_RnL#aRQOC|Bp$RC)YkUV0lv60 zE|n3sy^4tA-h=JQOwsRt$gZ;PcmSV)x*^W95l+a@BTIoA3yp>LMmdZe>iuRy)tt1bVOAcS>jtp{1a+xnFmUTr zDObY;7jwTPD4w_MQ5Sp7&@n|hy0=lPf#YTHfR&|E}al<$e(Z^@Ix zLy0qJ1E-ANSI@nm;^QDuGOt8_qr07pV5!#mW`ak!)s4q7pNi7p&7!O`V2_~_s;W;V zdkX!`QFS68&X2rd_V`&^zJa5KFK+!Za`4{n(yeu=19#Cr=*A1Vo3*Kt?3>V_(WA8f zcy6rk!{GAE<}_JDP|&tOIM8iJPpHhoL1|UBx1}|Kn8Tr)5ulxd)eA zKhLnRi@oilFe}EyQJZMy%edRh)v?o{cFQHQHlSej`-1K}1%Aztu_I9b`=M?qN&oAi z?zZ5BLBj=eU!moWLV3&DczZFM?4-5VCT6E`4veR2kR4()F&}Bn{V&hrH}M9tlQc+R zlLs979HlI|0n&D{PJ&-;3&bUios-7i8a<;NQ^BTNbN{x(f7@KgVHVS@;ODt<8-pX)r?0t%O8Bmfl;h3kWPb?oM`5c7(pN7SGYOXiKi{s1!%*IJ!BF@wz*Gqo_qpB zNx3;4fbSii(FPZLh$NK%lGHgpPAxJ4Y}b#hHNTqpdUPwr$T)PDjMKc2#OVmH2ZfI4-5Xs{n4(7u&TH{Fj#bM-3K=o($BgaXxGKRAS*UG3*Y%-j#lp#irTE<*e-g?9cPF_Gn^I6>A`-zUNUG@-~- zMvgPvFLmWdp}bXo`0H`&+849!HiQ+^L_vG1Xo$aAUd|Ixv1hR>>vZOc7)*v zPe?M(C!eEu)iW^@kLnpeV(cYpFEU+ji$h zb)2C553XI?<1F$GgeT}SYh0n{GvfI{-v{Z;q^5O);tlC4WkZHWD0ir9c%AM|$E7UF zU+4!;*&Az@*~Cn|G6NYXXv0!vTu0cKB6vJUrYIA1u%A3f`C_TBVP+Cw8CB@}g$PG^ ze$G3!jVXnqD^n_1L~cnH(I{&qx6?{rZN=#DOZx%vdCySHjI`lNmnIRyjJ+Hn;J_Hq%%q*%;4Z zfZKt4%dx3P5zOT&K_VU&F-(H(_lF{}pZS`H%HLYg&`d+(yLSW@nR;^3TahN^0*O5D&b2&!RW6Hs zssaMfcbhl*bGfO|p+6yRefG{7e!qQnWFCEQl&;=WeNXb;Lq*bX<05rF$y7Et8UBzH zQw&!4ja8s7pjrTEfMDyWput*+_8NzwV#~v)k>d;e?`UVISI;CUwQVIOBlMl#uVJhDP1Ry$|)x`L2=|5cygUvqZh=U#@Q(!!}0Jk#H|;j zT#e@_VKmX^Weuqb^aA8x+Ez+)_WfF)6oKvP%<~S_IbF7 znNoo`O&uGj1dYZ@GGgdou`y9fgct+IPdZz-L5xyI94Qtp2LkX(SxV692X^+48qy3= zT1f0vnkvV45i+hj|H=kp4NyqU^4XCe#m^-gx)%q@Y*u;p2;Wtj4p6^4N5*`Me>$9B z{Jg22gf(3Xm%|iensz-Q-1F^gJ5h3DSfq0Gfn8(*ZDxQ+iqiLfJzV_vW{?4z=fuGc zntbe$5@8KEy01f^UTAw?p7nQ0h<#$ZOi4B00*cI1h|^nK!|SmUU$HSNB|ob%2m*RM z`Doty_ah0WM;jXEa0{>%{-)&;1j_|rBpkwnR)g|}(Zz6Vx!)41uFK6-A0J;j0k?g43n&*V7eqf22_ou>S9 z==klHXqjSXl~V(RE{p3<2p?{l-MMy@GzCBMO;%;|@3&!A^ty1}q;lxBOu)o9K`S)1>#pcnzv8KARg)EDVj-tOtRG zk-ByaA*Mp&px{NQy8UvSBEILSI#+TIh*jPkc;+_2a&URj{Ym6 z;jFMQCdE)RjuIDPmtEuL3M`v=P+RcF zLko(=>>23e_x*9# z$b}(f4Y^zwl=I|VhX^e*h68;xD%qm4kvqZ&GLXDi;vHeVh1LOm^4l>M=O$1dzsc4M zp@Oy+&2bBa?im>8B3L_oU;0SI|pFKRRqg%d@18W*b$rLfpizM`GobQmxmWF&8p) zf1c6(k(zw}q(a$LOKjvGcW{;@Gawni+4kq;fx=JLWO{=eFXG#d^!ply1^>m?I?%t@ zEu_`^e*_Ml}(b8qI$ z?|bmrLHPE=UV4PT@(e4Ge-&m~zA21BOuWfUF`IzMjY2p0O6b{s#s zSi7Z#BI}OA`_XFVqD7PI7u_NTWW^3Hpv=167of1IiDV0lx$`srILf=fmLB;eN)^*O zIteRWI^6L_BbH%*EE^cYZVku1*WqX~l?G9G;g>H!q(;(%6Ed!uy#jR;574Viz zJPebJ&s9iw?r^Mq&7^%`Oy*QH%534RUu>b0majxEkNk%Mq(CS}1Yi+G9L9HZ&`4&# zfyQ55i=qO~g}1AAqhH`)XAW*JXO6ijtegh2{1szZ!Ak33r}LIb1y4`Ah{c+7A%P1J zHSAaFj_)tJtcZS~y`xwSBFaS7bD1(vTb@ZPz+Dx#b!EF8hD5}8(@p79i-0$Kq(6>N zFIBL(7RFJ4u-b>*?FEIdbww;%Gs=-&$azJC<>YV07{`Eq#i8tb?W}_PdZDiEE^Jyb z<;YK}^Vx`;>EB(kj#>kXLlzV#f2|TRK6g1^ia7A4uZ!tK)jqGn44akQ8va4(H*X(N z;p#~JZb+E8gLFb2B4S`=Z<0lOyG8VIUvph909fW5|i@YK7+%Q>Lb`4$(B^%7#R zRm(zqQUZ`0kvUed$H!zZYo7HVA|WZby7u247gHkX{6_Lqa}V;FkE2m$V9qbPnTp!|w_G2J%Nz_i{|v4dua*U)?&J6sDE) zj`6kc$S}$oBEcnZBDB&W(JWm=6J$4Z3$!E{RUe}*UZfki^6aHfqBpA*HcqzTnYyvF4uhC-%{(%QaHA^NB3QW?YgnQ6gt<2 zn^Wmbz>daFr;eWcNfOnBFV!ec99i$hgvs1@WD-gV^$G%`qAQPH&REcPNRjLFN zvvKLP^0=IuM@~Jkr^-mH=P;T%MpGtmBTe*TaVp!Hvj&&Ni}>1_Jsl!lwlwA4wKwJcFx9)Bj#Mr0BaSvz4C?R6(PJ>G7^{FI$13K; ziBpZXC^Dd?Bq~r831=BDFo`@=0skBmtWHmM921Orc(AXZK)JiVKQlCr)X|{HgPmfev5Fm~0?kfL6-bS+AwC z7dNYYd-d6f(kJtyY=P8*=0~+jhKFxuU0d|Mj+`H59GcXv-ZpJM1O?QH>{n%c!D)qZ z4v6QViVbq!8L#KQYfWV;EY}Ns$FZrL36HPWbCR!Y*s}a${WI|Lb}Zms4str(=?;~h zGH5sK&arhnb3IEpTAlcJJ@0Vv9&jvp+_m|WN1Rwa^VoWC*k05boIZ9@-*{bhI$@FY z6$BpO-?cw`-{upR_88ca)A16Bq2_E*?{coEDV(^)j70>;9HpXV+%LtWSRF3){k1ZS zlLFuIXV^w@(`MO<5UUi3Z?DC&=KD-BLO8gl3h4H^nH1keFnnUJu{lfD6WLNO5I2Pi z{y#K*byyqS6K?V1F2OBmfD+s(?u0@q?p}&pad!>w4xyzu#adj76pBM}FH)qq-~E2~ z-segF*~#qgIh&m`^UgbS1hp-K@?$e_JRBg+W(E{?{dVAK>KS{!;*@O)K8CBws+Yq? z6@zj1*#tHuyfVWuAe2#y>acXF=<5_A%vMlC?pX)yKwV^$pXEXRcqoeEE6tFDT2qQLuLP zHX&Jk=n$FM+e#{8*tyqZ;Qf+CV-U}if7_Gg^LuBWmWp?c=5Ogx&QBC}UnIO)KoSsP zbDiBT`n_4c5VRf9p%wZqGTjYl2do{UP&HTNtbxD`aPQTHxB%ec`YXbhp;Wp}yaYy^ zvSDQ3Uv;)MTFnS~KiJ~bA+)F(lj8NBz8P*gr5rOmC^V?RS_=tVI9 z!16oPskTy^9JIvBxLMuNa(?~B0xLYcOW>vb!+J@2k37{HVIR@nX9httR~TcA)3__) zL4iq)vscj4-riyE=hAX_9vMwB&mK9>tvJC>_DHZv^6)yc=QX`OY=gJ%P%~~eUH;$w z3jOp*T4{oF^6QwxS-M#=1@IPZh{+^t8iz(zO+R z>$*dzB7IW%vm7hzYXaP5QShr3!z`5KgW2Y+YC*{Dqf@rMb;HzP%UBV!27h(~fbEp| zJg2-*4(u|tHUM=t#hjuE6rZ9Q*84bY#0korE#ObQd<<+E@qohj)4o8%i3J$)7Ggt) zJqJ(a^56ToNlA!nf<`@5ASi@XstO4Ur-k)C@9Ptw{#tvW&Ra?4U4i_u_o6tA6pSi^ z5n1t`Fk4)MZ_K|1?56YK)QQ z^PD@SAgM3%eenX6;BoeeC_|Xo*0Gzhh?()Rpu3*#!RWq+oV>Act!u52P_Oyt(Hi%B z*O7@ft*O6(@t2yG+$H^;pLhTCbgvm_@L6x3R)&Skv^NP#{v@FVTR_oXuSm$VE$q_y zyVl>`MSc`2mso*x%^6M>`Tl~ZYE;nX!+i-vf{d={Y_^f7ob-og7;` zQoT*P5DA*8_0vcMCH%A^sV90v9sNJN#2ox9X1rIMjs%+71_;^0lPe~EMl+~ah#?wT zY^HWtcdPIzvPX?-p@-bofknr%+8+}l(P3P&OZC;Z=z=7xWjDK zGgY#P^SSFKt)V{9{{5}Y+lGEjp6pe?>kwAXEEKNywT1%Qf$yigk+H?uDnGFXZsn?Z z!)$*xWDVftT5HR{DwWCL)vTQvBd`KmwTWc^1vEp_9a%+DDr4U(pmCxU&}vGX*Uc5P z%XYJ9)6D2M^6md?Y}~urnEsb;uSr)sWggQwheB0H@0O@d;xb6&P~hm~)oOAS#2$PX zc+GYRo!#G>6@{D;sqKm&I>0|JOAz-%9-@97-?i{YvBdxN^MB?e{CD&$n_R(oHo1-N zkyG7K`O*K4^~&ME<)!oC&%kt}yk`{%6TY~}s7!;7gHLpMR~nk$t{dIlN~8GGZeP1I z;uI24^m5Or|wAfyIi%=$3AT=bB#U<2U_>9!S^Hd;d?3Dh)a# z{)y!F_5Ipq0}j~C7%~^VeUyh0iu)N+L+@1mRjlzhm}2lvxrr?DpT72qo-8F!$>S$A zq_Fj|PSy2CK{KD~#(ifQ@~_|Sbx5RDh`tB^I4$OfoP~^m#j6`v-IewNCT^XQ%B#jj zF`@p}e5(HR?lE|W)tS^&A5Gmlm!|DLHMXIGBoiXRlhbysU~C8R4fBM@-t!d}@mYNy ztw#{o)nbyO6G zb`fLeVw^w-?L?|A|Ce?R6;;pQ)2$=0R%Hr`yhyH-eQ#EUD zoqnO9dX_! zk_CDx@uR#TlHze6R$zYe+19x96QNJ+eXJy$a90tQMur)XvkWjhm^&TdQ7slp>zjCs zjBqbYH$JjTxy>-j^T&w$Jsl6LMD0j?RvYDH4d~G8{IkGN(d&E6>)9%$VULRb?}}&CXU4C)fgTFto!{y_gIAAfli(k{0&Fc9|G2R z5{o>zGS)%$bySEl*7Z!4@UVYb|5CZVPy?guUj>`*Xl#W3MT3E^-Rn$#^geG#>`MEW zircodHji$sY(hj2^UYjrLb$dWbfD>oQx@CsZX!C=87cypE#w;E&V7xb3zkO5A~pFn z_7b)!m#l^bv#s7nxYum|C$K?!dt*c)4;<&eMevc?&xnxQ&)`ebfAA;m)Hg^GZm}>& zAw&7u-S;Lqr{l}6=6q)6=y?FE%(dcyU}T`wr?RlxULko-BA%==Z^acZ3hNm9mE4`m z%d02h7pYohc$Tl2_E$d3S))0~n0}}yjZ52Iv46Rd(k>~UQWD$aQ)XRDWKD#K*-$p{ zn$bsz@u&|WVb7pYQ^~o)s^t%qr$dANvvU2u{JiFslbY zqXZ?1^F&3=S3l8n>+QfLFK2`a)s11WQQ?wAa*`tEXf}`v;KRU5!-7BYsT^^2Dv&Y6vlB+?i@ z*#UG2kxCh?X9#V^U)8#E)2CzE9{^MyD^0@-J|1w9Hjgnm?2zC=b(vjhDnlLO%8BIY zRXgce`~TfbM3!bu%F{?iqJTGy*B9UeZ-;r3IoA@XH}4(``X+yzmTHY}6phgc6pzsu z@)nh7gv91h=={%6pro?UX4P5gv?M&oqZwnW5s0ph5Qj>7x&ZiinN}$AsViH|t+3;u zOgSo3bS#f9UU7~nsl64)R5;I)7PBN(h;Lj9Q4~E>ysSk$?HxS-Q;LXksZj&Ui2wxT zKY-Hm0qJcoG3rR>NqDg2MS|E{rqZ;?-q6Zg0z}}agSgz!=N;t<_252|8T*Bs!EJ)C z7qWC$o$+rdffj$%;;MOgv{ZGXro(SOWvHTRd3z84JhrWMPJEgpFOH&lc02f#Vy;Sz zZ>YB^pN?Y)^Nz!MWsWpx)7Dk3u*VOv0F5YDu&Lj`DdjhJ(s16uyrs(M3*=TBFDnNQ zM$7~tGN2Ka3Lt0^1%6Ufmg zdJ27I%xW)$d$rfHYNZ8pV+wcYXEg9@h2dmW&k=`6$_a--V-F5#D9Qe&p8<>rH4R4| zX8T3A%>9e5wzKuV6~WZN#E_ga!5iqy*ZIwq=4cU?0y%e%V;X~W#{PZSs{ZK?h?aHc zIDXike&m}aqrqys1FMV4l&W`j#s5J-AB!{$lOt#Bi+n_Npcj8OqpTYGV>q&HipC9c zBGVjz!$#1xKbwm0fy102Bj9iuy3YF|FQ|b#$Yv~^Pq?@t72K!lS^pu7`5>MY*E5k6 zw|P1xEoRV2WF%Fo#0nKYOo0LnB?=fy)aL%H5twBSHHHd>78H5VY6|!lfPo1E%bj_! zSzqzKyQ(2jNsAALf})GY^}t$tz*me$83Z5O+DmTe*AI=w)oT@|wdW8<&u;y@2bRb*CQK*WUSokeK> zCZ0vavpLgVgN{etd>HW-_hy2EM5_`erygn183dbL9SnRH&yG^a`^PxLSh)svC~@;#6vrjU+ehEAxoSLR0|w{&r>`=5srLlZ^0HReq9Kfv1P0Pm^}~g}8NzK_3AwppTd(dk0q1%6wnFeVb>Bo{jNG)Ivq}mtU^Th%c!?k^u0OQ*v9Cu5Fn#pIOgrU^>X9AD<3UG&WC=P@W{c>iC{oDR~Iq zI?We{#PE$r$W>448ctd1E}dLi6tpMzXcwbuz90viw=Teu$UO%~;@bO1Mrp23gRLKQ z*v^QNSd^(euDIo4$*nGw|J1nk{+h~KT!Y-cT~@glKijCh`4 zHX{BrR(WJ}T?MDTgs4%|3d zyqBx$hO?@0oJTE`2@Ii@GWiXRB`o!fZb|vEnep)>r^-DL%zr8h3c&ItJ_FVjKW^6M zO=SmMaFHzVYnx$`m!5;Mk?qT|gEZb8j?hi^^p3)$cWsXG@uj?#_5wJ`nQo1{xt@gBA z)v7!PH5b6lE?fNx75y+kT@M4U67K-s%H;6Bt7imhkS+-#O2+lnwKDb8>%Z*(7zwYy zDvYdFQlQU`{{Z;XO^DGiO$*B&F4lS4143o>{cWz8RCO;|!l-Ag2X}*e>GET796y~3 zEI?e}elPtkW3j^@9_|5RM&a=CV1~w5ozmKgzDogzxRbUK#;G;@M)w3k7i^hmm)^aD zx>cQ`+li)1r`$|1uPZ>*bQf{V8I93XYf&OC;I}HIJVAiHTr&eaQfU@TiWzHZ4deSa z!!zYrg@t|ag?H$VgBCUsJpJ(=ARF!Z79FTvRWHUq8kX~saLi-(* zvMP;6`$F(|jR#d6ev5J7C4N`X$2GHZ?gJo2i_ibOa|dQGcZ>^+ zq%c=6V4MGx5MNl~GT3ElG(j+;-gGq(tP+==)BF^#NO>y4 zpaR=d+}KQ+-nd%uf!&Nlc5pKY%7`Bo%$6$Bpvu#|TBpg= zcFwA@=FsA#vY}s)Rfa6|*+6uM9g#g{2RCLqEGV<}`Ol1b*<$MZY;e2)t_R2=bSwUU z7;MQTTLc-wU_(FoV99D|+894D6~X4Ysc&`op$~Sw^JMHqtOHgLA)+4;2_!*gV$)iw zBFe;_W(FxZJZ`;Txk`p_P=TxL$eM~93qcL+(^mN9D8Nhv8Z6uZpW#R;2Ky@?jaK#` z{|E#7sYE1r{DgNQI3gi6>#BMIcg(WlPg@DV(D-}MXX9G`?c|hBiYsw&3&3`1;&Q06 zzw(dVc7*o@VR5Z1v2Y$;0EFpH#r2JEuxDUw&E(+*f3!1R@z+YyS`6=cLRHckdRH?sVo>UQ98;oPt zgC0bAJlH~fGxjR&lRS#;oew@m>+T|b_{I?m-s)9D$3RT)Dox$&{ir%*FvwuYHZdYf zm|t>&41fd^mDW}PRa>EkyfQku@q-U64V4{SiVfsP=?=cR(|ONUNe|PPYGctBsYQT0 zp`IJ# zND%;yGtsNFumb!ooh@!Mj8P0Js-{$s3b_2{ z;Bg1AW4DFP05g9%oSVPA;FGi^H&e>Thj{D^VOKL0bi5h%X$FVoY4dg0Flwvcyzewx z=<%K!X@X^;djPteUOX3Sddz&-GxqMOt_fdIdaDw9^G0zjYK$aQ36wU&lGW$|C{?Y@T~iIECVN)ohogC7 zC#Xxd-fHFq2H1vfcn33#Jf~+WAa%@g59*mUq}dOIKCe=dP!F2eT~2A^{41^4M~cj8 zYv;^{TS-#0Q4Xqs-Fom6{JX4PkEEH`=s0wHL(=*?EzSAJ5Zh#UGZDMvRoKv7sBG2{ zK0;cVKo_bEJP#qf)vcaK4@Q;m@nm;C&1fnXX?375qJ#K0e9zUkq>clfBCD%kLlebj zF(}@M?y-`Ar>LrV3vgw$gS35of#ZFA!>q*2G3cES8v1|F z)*c;rwl06Ti5$&Dt)RDmwrrK^tZrIZ9hZ8umwiIpe^uYEqfvgx(ef>q4oe0?m9pV& zRL|e>qCT})UtiIvW*1+ajo@a)cSAvW08soP%E`G0y`qo3FRg$mxU%*S6@}_k6Yk#r z(7(Tj$E#T4l z(IuBb!ob+rnH<2K;+*X~9iSrn>{tt0Ou4qyFBk$3n{Vp7x&9+FZz_oHMoRDt2!Tp2 zNbrtYNr!CmSYrn--**zKMzSFqqf-)N%-7UZt3`-IMxLZl_Y~!c^6A>xfn2B8OwJ>r z=g`SG053~@rQ7H&SUxX6HDc&tuXLs^WYmXeF}Cqy(^PVaib5`a{kqjy$$DYTKFN;Z z-VGVf`2iXJqW4Sq{bcdR6B%yKiCiLP(OaS%c+)Srm}ZK&(b-#v0Qc|rmttM_fUC_t zakh--G*mJe6Q_YoOrAiQ@uS*H>fA8uWOc(CL@iRWU3dL{@qWXNFvDj=Uhl)D$PlA% zp=De2++LNU_|cxiRioQC^vCr3@f?@$c-x`abKf~*6Gij*HN7Mnb0IbpL2KN#HP`PM zJOX#yG@WBybpTF(~#voNv4;}^%GE^UjZCU~fP_<=;B zP&~FYZPA{cBIYf(I^MWqw=?uaCI7jZ=nI-f5hP8J7>UY}w0Ocjn}v945AbsGR?$tE zCk&r}KeAcxEb7jLJ92)tnAEOO8JLXL%%)6OQ+=WJ<3))QDgh!UMGc(*(KyIJ z`)h+TYE2bc3)tm1nw5a<>|?zZGO%plm@mpY+$0bxl0XyLddb7<`sZ(l36MSKqIu12fUu;>`8MZ`a_kT`jX(0)4BO1>XsTIbSGQTbuE2X$zy#-H){-9XQ>S#%=3gS9Tho++R667fJ`wes!&uD(~WU&Fq<06ljIcd|SoM z?f7@s^&sx|bvdbX(bxr9BClxyG5zGGoccH_;dr8_srqbK!l~m+nZyx&|O0$?pd8ij9ukDDc9yJWKW@G z`|z`b`&8&&^8@wa+kI5d<;z583&`YJKg{;B@{QT5wkdq~=fCrv$9=LBNvAm>I?3@> zh}4%ZNMM`M>QfJQkuAQV_*~=E@Y_F*H|j_NlR{{YKMvlPL#Xd__-{KU9nbVkRSR|5 z!RvMZg$-rqD7xgFk+>aM{I}d*dS6uxzG8J%{ku>lTD!>QcS20xW%A!XdFr*Q7_?$( zR&2#kfCuIB_#F{`@6v2-e>Ilf9$L7&=9)=%w(5Oo6Fw`X6rM|&Dt?O@6`6DTE!V>i zG2NcQe_Z3K*QjF9$l>%;Z!_N}bq>eVAPGLWQi{i;tIVT2(1lsjFZ7uuf#RU)m^qd2wdEH!Fr=j0R09SKCOUc{<)tUz}Q05_|4Tj{kmU4Z2O5ogKJqIb2!$R|)jY_&c<+Ch#Ca zh5xvC8PSn({6#l0aj47ttHRZq-&Ak$_<_%Z2I$adE9K;AJt)f<@-=R;rhaxdiY8&J zFcsfbY4jau1MAgZkUnO0WML^_b%)mYvJ3 zbhZc2;XQP==}X?-{yiG@4H$F#M)5B%iiSJD{>$6(Dbp@b<>m2h9!bcv&M!QPLjDTG z(zSnwVcXuX`?3zh3Ei%0?srR4Har<|e{pM()`3;7W#0`zkZ*4FZEE*zdTjN- zaPV|>#grE+_3mY0woiUv&2Ft^_clsK#n<-fwV%?+5>F(Gv&lpO_qY_dZSDN$!^_#T zb05>ZB2GM*z?8ob=6M3;&=QXWE;V9l!)`-;^e*4jw9f1Kyhio8{jPT4w)V$>!}vxw z)qXeCK#1%lz3TXc_vrGR=tTilU3;OrkE;ibe~sOLN#T`C3pxgXPa+vDIQ2#-w!ET7 zr-tR+(|Ss`^!O{Mh=R=j&-e};tvOu<{kYjXydnFoWVy^Xm}P_hrRm(u=UZ1>-gl#* zg@ms|ODi2GwjA~Y8P%(Aji67(@WCfpPychrvc3-_QK|tdaGydJWA20MF1=3PpV#Dv zH_MAkwZGXqH0&w6wM)t7M<1U*TvdKI{Z+4A87ulXDLtvJ;Yp9iRETO{kjff`&6Bmg zPRW}EmlZgLwj|@ywfDiz??t6|i)`efJ;!!w;oRRhY^rPC;)Mep%p?g$?o>Vfw;anj z9ec^$>zNmdmGPrR51rGU@2(!dh)Q}1PK^qj^=fAbOVL@P=vEroN`=|V8Xv`>37!jl zY`?TC6dL8}z$naj&M;lc9TIMuYHZ#(Y$c5$#uPLI2vn|S1P7QOHNklz?2GbB$R*e>YpPZbCftmAT zgSyPy@hq))Xxm+{Vf8WcbM9k-`4$JKQy+4X&aY3UD5DXUrIy{LbZ?TK8V4FfvO?YR zl5=IIY)i%|(aW~XU#+v_iy2Y=(&a6J>GZ*+@bRzqdTEYLhIxp^O38U6!7r#=-54|2!({CF+32^N z&jpH)xDPy%(sNEaW_6~_V-&$$hUuJ+|49xRpWs3oKbZ%F0|gfC`jaK!CD-^A!@96IXz`EzP#PLT7Tq?P9dsfYc| z0iF)f%_iM^#7WC1?w{{gG(`V$`_}_MhN}F2KcnBr;8^>pDU6P1-zv5v$i$%|`?Ik2 z&x3zs{^R2kJ}STRR)XmJn|RA_ZQ0tV@VRf=+zARM1*-7;Z*Vdi&p8;Dp~rENc2NpT zr#5#G_xgJxhi%RKTbmBs^UWL0yGWM(9W7hja@TL-Lhe{5Q&Zj}XcIq1-K*+T-%Tx+ zj#H|b+fLAUVDV3_d*94bcInjj-BVz-q?@Lx__+Yjjfoy{IDk|(fPDBUAfcA9B@ssmn$WClEm;}A8`4{-X5vX z`CnhiFiBBdP^@hXxgHc%dPU+D!dZGn3dJvX*R%cP!aW-_wzamezquWOOYsfJkYPJi zYh6!#djfVR-@C{x4Eh-49?B(yU>zZExOc{1F$4AU1|pO6S+-6+89s;5;V~ z{uusYQ8QCRETU<#!JMfE5NEj@pSChExE%F>CT|5e0=qX=G^(%lHhIu`1R)M8Ss|P` zhXi|nVg-wc@jm|eWszvQlpXaiWc4Q#NEbjE+aDCA@b%i!J;oTAvQ5U$QpNb*bWU}E zz$gHz^nIFC|BqTNl)D{*l(AR4H(UjT?1d*Q(QsZMv>Nz9XNhAFkM8l40Sq!48+LJ@ zBvnP0f42}Fp^VG(B1Nk8WwoR(Py8E)snK60Lvb<5fVjGjFpTsdJ{{B3vPR8jBEC